diff --git a/THIRD_PARTY.md b/THIRD_PARTY.md index fdcb0d5e4..c23f0ec4d 100644 --- a/THIRD_PARTY.md +++ b/THIRD_PARTY.md @@ -60,15 +60,22 @@ License summary: smart-coin language, written for this project because no usable public grammar exists; its source and corpus tests live in `tools/tree-sitter-chialisp/`. -- Seven further grammars (`arkts`, `assembly`, `cfml`, - `cfscript`, `dotenv`, `pine`, `qml`) are self-maintained forks that retain - their original upstream authors' licenses — see the manifest for per-grammar - provenance. `arkts` is a first-party derivative of +- Nine further grammars (`arkts`, `assembly`, `cfml`, + `cfscript`, `dotenv`, `javascript`, `pine`, `qml`, `tsx`) are self-maintained + forks that retain their original upstream authors' licenses — see the manifest + for per-grammar provenance. `arkts` is a first-party derivative of [tree-sitter/tree-sitter-typescript](https://github.com/tree-sitter/tree-sitter-typescript) (MIT, (c) 2017 Max Brunsfeld; on the [tree-sitter-javascript](https://github.com/tree-sitter/tree-sitter-javascript) base, MIT, (c) 2014 Max Brunsfeld) with (c) 2026 DeusData ArkTS additions; - its grammar source lives in `tools/tree-sitter-arkts/`. + its grammar source lives in `tools/tree-sitter-arkts/`. `javascript` + ([tree-sitter/tree-sitter-javascript](https://github.com/tree-sitter/tree-sitter-javascript), + MIT, (c) 2014 Max Brunsfeld) and `tsx` + ([tree-sitter/tree-sitter-typescript](https://github.com/tree-sitter/tree-sitter-typescript)'s + `tsx` dialect, MIT, (c) 2017 Max Brunsfeld, on the same javascript base) are + the upstream grammars with one (c) 2026 DeusData patch that lets a lone `&` + appear in JSX strings and text; their grammar sources live in + `tools/tree-sitter-javascript/` and `tools/tree-sitter-tsx/`. ### tree-sitter-plsql diff --git a/internal/cbm/vendored/grammars/MANIFEST.md b/internal/cbm/vendored/grammars/MANIFEST.md index 74322763e..067b2e23a 100644 --- a/internal/cbm/vendored/grammars/MANIFEST.md +++ b/internal/cbm/vendored/grammars/MANIFEST.md @@ -9,8 +9,9 @@ The grammars were originally vendored as bare `parser.c`+`scanner.c` with **no r ## Summary -- Grammars: **162** — vendored-from-upstream: **143**, first-party/self-maintained: **14**, registry-disagreement: **5** (nim removed 2026-06-12; objectscript_udl + objectscript_routine added 2026-06-24; mojo added 2026-07-01; arkts added 2026-08-26; plsql added 2026-08-27; chialisp added 2026-08-28 — see notes below) -- ABI distribution: **9×** ABI-13 **79×** ABI-14 **74×** ABI-15 (runtime ceiling is ABI 15; never vendor ABI 16 without a runtime upgrade) +- Grammars: **162** — vendored-from-upstream: **141**, first-party/self-maintained: **16**, registry-disagreement: **5** (nim removed 2026-06-12; objectscript_udl + objectscript_routine added 2026-06-24; mojo added 2026-07-01; arkts added 2026-08-26; plsql added 2026-08-27; chialisp added 2026-08-28; javascript + tsx became self-maintained forks 2026-09-25 — see notes below) +- ABI distribution: **9×** ABI-13 **78×** ABI-14 **75×** ABI-15 (runtime ceiling is ABI 15; never vendor ABI 16 without a runtime upgrade) + — recounted from the tree 2026-09-25 after the tsx fork was regenerated with tree-sitter-cli 0.25.10, moving `tsx` from ABI 14 to ABI 15 (was `9×/79×/74×`). — recounted from the tree 2026-08-30 after the perl v1.2.1 refresh moved `perl` from ABI 14 to ABI 15 (was `9×/80×/73×`). Neither side of the rebase had this right: main's line was correct for main, and this branch still carried the pre-2026-08-28 `7×/84×/65×`. Regenerate, never increment. — recounted from the tree 2026-08-28. This line had drifted: it read `7×/86×/65×`, which sums to 158 against 161 vendored grammars, so it was wrong before Chialisp was added and incrementing it would have carried the error forward. Regenerate with: `grep -h '#define LANGUAGE_VERSION' internal/cbm/vendored/grammars/*/parser.c | sort | uniq -c` @@ -32,6 +33,7 @@ The grammars were originally vendored as bare `parser.c`+`scanner.c` with **no r - **objectscript_udl / objectscript_routine** (added 2026-06-24): vendored from [intersystems/tree-sitter-objectscript](https://github.com/intersystems/tree-sitter-objectscript) @ `a7ffcdf` — MIT, the InterSystems-official grammars (a niche vendor language, hence `vendor-maintained`, not in nvim-treesitter/Helix). **Re-vendor note:** each `scanner.c`'s upstream `#include "../../common/scanner.h"` is repointed to a per-directory `objectscript_common.h` (a verbatim copy of upstream `common/scanner.h`), because this repo's shared `vendored/common/scanner.h` belongs to the cfml/fsharp grammars and differs. The generated `parser.c`/`scanner.c` are otherwise byte-for-byte upstream — on re-vendor, re-apply only that single include rename. **Local modification (2026-07-16):** in `objectscript_common.h`, two loop counters `uint8_t i` were widened to `int i` (the `reverse_marker` scan and the `html_marker_buffer` reversal) to clear CodeQL `cpp/comparison-with-wider-type` — a false positive in practice (both lengths are hard-bounded by `MARKER_BUFFER_MAX_LEN = 30`, so `uint8_t` could never wrap), fixed for cleanliness. On re-vendor, re-apply this widening too (or upstream it at intersystems/tree-sitter-objectscript). - **mojo** (added 2026-07-01): vendored from [lsh/tree-sitter-mojo](https://github.com/lsh/tree-sitter-mojo) @ `33193a99afe6` — MIT, ABI 15. Helix tracks `lsh/tree-sitter-mojo` as its Mojo grammar source, but the Helix-pinned commit (`3d7c53b8038f`) no longer resolves in the upstream repository after a force-push, so this vendor uses current upstream `main` rather than the stale registry SHA. Security review covered only the vendored C surface (`parser.c`, `scanner.c`, `tree_sitter/*.h`) plus upstream license/provenance metadata; no package manager hooks, workflow files, prompt/agent instruction files, or generated lockfiles were vendored. - **arkts** (added 2026-08-26): **first-party derivative** — a fork of [tree-sitter/tree-sitter-typescript](https://github.com/tree-sitter/tree-sitter-typescript)'s `typescript` dialect pinned @ `75b3874edb2d` (v0.23.2, the same commit our vendored typescript/tsx come from), on the tree-sitter-javascript base @ `3a837b6f3658` (v0.23.1, the version upstream's own package-lock pins), extended with ArkTS/ArkUI syntax (`@Component struct` declarations, UI-DSL trailing-closure calls with post-block attribute chains, decorated function declarations, `import lazy`, `@Extend`/`@Styles` leading-dot attribute chains, anonymous `stateStyles` style blocks). Grammar source + corpus tests live in `tools/tree-sitter-arkts/`; regenerate with `npx tree-sitter-cli@0.25.10 generate` (ABI 15). **External scanner:** `scanner.c` is a symbol-rename trampoline; `_common_scanner.h` is byte-identical (same SHA-256) to the reviewed `typescript/_common_scanner.h` already shipped. **LICENSE:** tree-sitter-typescript's MIT text **verbatim and byte-identical** (© 2017 Max Brunsfeld) — which is what MIT requires of a derivative work, and what lets the provenance audit byte-verify it against upstream rather than take a note on trust. The fork is registered in the audit's `FORKS` map. Our own copyright for the ArkTS additions, and the tree-sitter-javascript attribution (© 2014 Max Brunsfeld), live with the SOURCE in `tools/tree-sitter-arkts/grammar.js` and in `THIRD_PARTY.md`, which is what ships in the release archives. +- **javascript + tsx** (forked 2026-09-25, #1736): **self-maintained forks** of the pins we already vendored — [tree-sitter/tree-sitter-javascript](https://github.com/tree-sitter/tree-sitter-javascript) @ `58404d8cf191` and [tree-sitter/tree-sitter-typescript](https://github.com/tree-sitter/tree-sitter-typescript)'s `tsx` dialect @ `75b3874edb2d` (javascript base @ `3a837b6f3658`, the version upstream's package-lock pins, as for arkts). **Why:** upstream accepts a `&` inside a JSX string only before a space/digit or as a complete character reference, and never inside JSX text, so a plain URL query (`href="…?a=1&b=2"`, Google Fonts `&display=swap`) or `

Tom & Jerry

` produced an ERROR node — a `parse_partial` flag, plus false USAGE edges from identifiers the error recovery pulled out of the URL (on vercel/next.js `examples/`: 45 of 92 flagged files, 115 false cross-example USAGE edges). **The change** is one patch, `tools/tree-sitter-javascript/patches/jsx-lone-ampersand.patch`, applied to both javascript bases: a lone `&` that does not begin a complete `html_character_reference` is a one-character token (lexical precedence -1, so `&`/`&` still lex as references) aliased to the EXISTING `string_fragment` / `jsx_text` nodes, and the string-fragment regexes stop before a `&` that directly precedes the closing quote. Node types are unchanged (same type/named set; `node-types.json` only gains an empty `fields` map on those two entries). Without the patch both directories regenerate upstream exactly (javascript: byte-identical `parser.c` apart from the generator-version comment; tsx: identical state/symbol counts, ABI 14 → 15 from the newer CLI). **External scanners** are unchanged: `javascript/scanner.c` and `tsx/scanner.c` + `_common_scanner.h` stay the reviewed upstream bytes. Regenerate with `npx tree-sitter-cli@0.25.10 generate` in `tools/tree-sitter-{javascript,tsx}/` (ABI 15) and copy `src/parser.c` (tsx: also `src/tree_sitter/*.h`) here. **On an upstream bump:** re-fetch the new pins, re-apply the patch, regenerate, re-run `test/corpus/jsx_ampersand.txt` — and drop the fork if upstream fixes it. **LICENSE:** upstream's MIT text byte-identical (registered in the audit's `FORKS` map); our copyright for the patch lives in the fork `grammar.js` headers and `THIRD_PARTY.md`. - **plsql** (added 2026-08-27): vendored from [AndreasMaierDe/tree-sitter-plsql](https://github.com/AndreasMaierDe/tree-sitter-plsql) @ `28aebef209be` (full: `28aebef209be57169600e1aa41ca1431cc6c916f`, upstream tip; repo dormant since 2023-02) — MIT, ABI 14, **no external scanner** (`EXTERNAL_TOKEN_COUNT 0`). Not listed in nvim-treesitter/Helix (`community-niche`, an individual-maintained grammar); provenance verified directly against upstream (pin = `git ls-remote` HEAD; vendored `parser.c` byte-identical to the pinned clone apart from the include-quote local patch below; 0 non-ASCII bytes; 0 dangerous calls). Security review covered only the vendored C surface (`parser.c`, `tree_sitter/parser.h`) plus upstream license/provenance metadata; no package manager hooks, workflow files, prompt/agent instruction files, or generated lockfiles were vendored. Known upstream limitation: `CREATE TYPE ... AS OBJECT` currently yields ERROR nodes (pinned by `plsql_create_type_as_object_limitation` in `tests/test_extraction.c` + `tests/fixtures/plsql/create_type_as_object_limitation.tps`). Originally contributed as PR #1033 by Oğuz (@ouzsrcm); re-vendored from upstream per vendoring policy with the PR's language wiring distilled on top. - **chialisp** (added 2026-08-28): **first-party** — authored in this repository, not vendored from anywhere. Grammar source + corpus tests live in `tools/tree-sitter-chialisp/`; regenerate with `npx tree-sitter-cli@0.25.10 generate --abi 14` and copy `src/parser.c` + `src/tree_sitter/*.h` here. ABI 14, **no external scanner** (`EXTERNAL_TOKEN_COUNT 0`), 0 non-ASCII bytes. It is a deliberately GENERIC s-expression grammar (`source_file`/`list`/`symbol`/`string`/`number`/`hex`/`dot`/`comment`) modelling the clvm_tools reader rather than the Chialisp form vocabulary: `mod`/`defun`/`defconstant`/`include` are ordinary head symbols, and which lists are definitions is decided in `internal/cbm/extract_defs.c`, so a dialect that adds a form does not need a regenerated parser. Written because the only public grammar (`Quexington/tree-sitter-chialisp`) cannot parse the language: it required CRLF to terminate a comment (`/;.*\r\n/`) while real files are LF, rejected the `.` in `(include foo.clib)`, and accepted only a primitive after `(defconstant NAME …)` — each of which desynchronised the rest of the file. Acceptance gate: all five `chia-blockchain@main` reference files parse with **zero ERROR and zero MISSING nodes**. **LICENSE:** the project's own LICENSE, byte-identical to the repository root — no third-party copyright is carried, because there is no third party. @@ -151,7 +153,6 @@ row instead. | ini | 15 | justinmk/tree-sitter-ini | `e4018b517613` | VERIFIED-BOTH | ✅ | | ispc | 14 | tree-sitter-grammars/tree-sitter-ispc | `9b2f9aec2106` | VERIFIED-NVIM | ✅ | | java | 14 | tree-sitter/tree-sitter-java | `e10607b45ff7` | VERIFIED-BOTH | ✅ | -| javascript | 15 | tree-sitter/tree-sitter-javascript | `58404d8cf191` | VERIFIED-BOTH | ✅ | | jsdoc | 15 | tree-sitter/tree-sitter-jsdoc | `658d18dcdddb` | VERIFIED-BOTH | ✅ | | json | 14 | tree-sitter/tree-sitter-json | `001c28d7a298` | VERIFIED-BOTH | ✅ | | json5 | 15 | Joakker/tree-sitter-json5 | `aa630ef48903` | VERIFIED-BOTH | ✅ | @@ -225,7 +226,6 @@ row instead. | thrift | 14 | tree-sitter-grammars/tree-sitter-thrift | `68fd0d80943a` | VERIFIED-BOTH | ✅ | | tlaplus | 14 | tlaplus-community/tree-sitter-tlaplus | `add40814fda3` | VERIFIED-BOTH | ✅ | | toml | 14 | tree-sitter-grammars/tree-sitter-toml | `64b56832c2cf` | MISMATCH | ✅ | -| tsx | 14 | tree-sitter/tree-sitter-typescript | `75b3874edb2d` | VERIFIED-BOTH | ✅ | | typescript | 14 | tree-sitter/tree-sitter-typescript | `75b3874edb2d` | VERIFIED-BOTH | ✅ | | typst | 14 | uben0/tree-sitter-typst | `46cf4ded12ee` | VERIFIED-BOTH | ✅ | | verilog | 14 | tree-sitter/tree-sitter-verilog | `4457145e795b` | VERIFIED-HELIX | ✅ | @@ -264,6 +264,8 @@ upstream author (correctly retained). The table now records the true origin. | grammar | cur ABI | original upstream | license | |---|:---:|---|---| | arkts | 15 | **self-maintained fork** of tree-sitter/tree-sitter-typescript @ `75b3874edb2d` (v0.23.2; javascript base @ `3a837b6f3658` v0.23.1); grammar source in `tools/tree-sitter-arkts/` | MIT, (c) 2017 Max Brunsfeld — byte-identical to upstream; ArkTS additions (c) 2026 DeusData, see grammar.js + THIRD_PARTY.md | +| javascript | 15 | **self-maintained fork** of tree-sitter/tree-sitter-javascript @ `58404d8cf191` (the previously vendored pin, VERIFIED-BOTH) + the JSX lone-ampersand patch (#1736); grammar source in `tools/tree-sitter-javascript/` | MIT, (c) 2014 Max Brunsfeld — byte-identical to upstream; patch (c) 2026 DeusData, see grammar.js + THIRD_PARTY.md | +| tsx | 15 | **self-maintained fork** of tree-sitter/tree-sitter-typescript's `tsx` dialect @ `75b3874edb2d` (v0.23.2, the previously vendored pin, VERIFIED-BOTH; javascript base @ `3a837b6f3658` v0.23.1) + the same JSX lone-ampersand patch (#1736); grammar source in `tools/tree-sitter-tsx/` | MIT, (c) 2017 Max Brunsfeld — byte-identical to upstream; patch (c) 2026 DeusData, see grammar.js + THIRD_PARTY.md | | assembly | 14 | RubixDev/tree-sitter-assembly (**repo deleted from GitHub** — our retained MIT copy, (c) 2023 RubixDev, is the surviving grant) | MIT | | cfml | 15 | cfmleditor/tree-sitter-cfml | MIT, (c) 2014 Gareth Edwards & Gavin Baumanis — byte-identical | | cfscript | 15 | cfmleditor/tree-sitter-cfml | MIT, same — byte-identical | diff --git a/internal/cbm/vendored/grammars/javascript/parser.c b/internal/cbm/vendored/grammars/javascript/parser.c index e78628eca..e65556d04 100644 --- a/internal/cbm/vendored/grammars/javascript/parser.c +++ b/internal/cbm/vendored/grammars/javascript/parser.c @@ -1,4 +1,4 @@ -/* Automatically @generated by tree-sitter v0.25.8 */ +/* Automatically @generated by tree-sitter v0.25.10 */ #include "tree_sitter/parser.h" @@ -7,11 +7,11 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 1870 +#define STATE_COUNT 1873 #define LARGE_STATE_COUNT 387 -#define SYMBOL_COUNT 261 +#define SYMBOL_COUNT 265 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 134 +#define TOKEN_COUNT 136 #define EXTERNAL_TOKEN_COUNT 8 #define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -73,217 +73,221 @@ enum ts_symbol_identifiers { 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, + anon_sym_AMP = 54, + anon_sym_AMP2 = 55, + anon_sym_class = 56, + anon_sym_extends = 57, + anon_sym_async = 58, + anon_sym_function = 59, + anon_sym_EQ_GT = 60, + sym_optional_chain = 61, + anon_sym_new = 62, + anon_sym_PLUS_EQ = 63, + anon_sym_DASH_EQ = 64, + anon_sym_STAR_EQ = 65, + anon_sym_SLASH_EQ = 66, + anon_sym_PERCENT_EQ = 67, + anon_sym_CARET_EQ = 68, + anon_sym_AMP_EQ = 69, + anon_sym_PIPE_EQ = 70, + anon_sym_GT_GT_EQ = 71, + anon_sym_GT_GT_GT_EQ = 72, + anon_sym_LT_LT_EQ = 73, + anon_sym_STAR_STAR_EQ = 74, + anon_sym_AMP_AMP_EQ = 75, + anon_sym_PIPE_PIPE_EQ = 76, + anon_sym_QMARK_QMARK_EQ = 77, + anon_sym_DOT_DOT_DOT = 78, + anon_sym_AMP_AMP = 79, + anon_sym_PIPE_PIPE = 80, + anon_sym_GT_GT = 81, + anon_sym_GT_GT_GT = 82, + anon_sym_LT_LT = 83, + anon_sym_AMP3 = 84, + anon_sym_CARET = 85, + anon_sym_PIPE = 86, + anon_sym_PLUS = 87, + anon_sym_DASH = 88, + anon_sym_SLASH = 89, + anon_sym_PERCENT = 90, + anon_sym_STAR_STAR = 91, + anon_sym_LT_EQ = 92, + anon_sym_EQ_EQ = 93, + anon_sym_EQ_EQ_EQ = 94, + anon_sym_BANG_EQ = 95, + anon_sym_BANG_EQ_EQ = 96, + anon_sym_GT_EQ = 97, + anon_sym_QMARK_QMARK = 98, + anon_sym_instanceof = 99, + anon_sym_BANG = 100, + anon_sym_TILDE = 101, + anon_sym_typeof = 102, + anon_sym_void = 103, + anon_sym_delete = 104, + anon_sym_PLUS_PLUS = 105, + anon_sym_DASH_DASH = 106, + sym_unescaped_double_string_fragment = 107, + sym_unescaped_single_string_fragment = 108, + sym_escape_sequence = 109, + sym_comment = 110, + anon_sym_BQUOTE = 111, + anon_sym_DOLLAR_LBRACE = 112, + anon_sym_SLASH2 = 113, + sym_regex_pattern = 114, + sym_regex_flags = 115, + sym_number = 116, + sym_private_property_identifier = 117, + anon_sym_target = 118, + anon_sym_meta = 119, + sym_this = 120, + sym_super = 121, + sym_true = 122, + sym_false = 123, + sym_null = 124, + sym_undefined = 125, + anon_sym_AT = 126, + anon_sym_static = 127, + aux_sym_method_definition_token1 = 128, + anon_sym_get = 129, + anon_sym_set = 130, + sym__automatic_semicolon = 131, + sym__template_chars = 132, + sym__ternary_qmark = 133, + sym_html_comment = 134, + sym_jsx_text = 135, + sym_program = 136, + sym_export_statement = 137, + sym_namespace_export = 138, + sym_export_clause = 139, + sym_export_specifier = 140, + sym__module_export_name = 141, + sym_declaration = 142, + sym_import = 143, + sym_import_statement = 144, + sym_import_clause = 145, + sym__from_clause = 146, + sym_namespace_import = 147, + sym_named_imports = 148, + sym_import_specifier = 149, + sym_import_attribute = 150, + sym_statement = 151, + sym_expression_statement = 152, + sym_variable_declaration = 153, + sym_lexical_declaration = 154, + sym_using_declaration = 155, + sym_variable_declarator = 156, + sym_statement_block = 157, + sym_else_clause = 158, + sym_if_statement = 159, + sym_switch_statement = 160, + sym_for_statement = 161, + sym_for_in_statement = 162, + sym__for_header = 163, + sym_while_statement = 164, + sym_do_statement = 165, + sym_try_statement = 166, + sym_with_statement = 167, + sym_break_statement = 168, + sym_continue_statement = 169, + sym_debugger_statement = 170, + sym_return_statement = 171, + sym_throw_statement = 172, + sym_empty_statement = 173, + sym_labeled_statement = 174, + sym_switch_body = 175, + sym_switch_case = 176, + sym_switch_default = 177, + sym_catch_clause = 178, + sym_finally_clause = 179, + sym_parenthesized_expression = 180, + sym_expression = 181, + sym_primary_expression = 182, + sym_yield_expression = 183, + sym_object = 184, + sym_object_pattern = 185, + sym_assignment_pattern = 186, + sym_object_assignment_pattern = 187, + sym_array = 188, + sym_array_pattern = 189, + sym_jsx_element = 190, + sym_jsx_expression = 191, + sym_jsx_opening_element = 192, + sym_nested_identifier = 193, + sym_jsx_namespace_name = 194, + sym_jsx_closing_element = 195, + sym_jsx_self_closing_element = 196, + sym_jsx_attribute = 197, + sym__jsx_string = 198, + sym__jsx_lone_ampersand = 199, + sym__jsx_string_lone_ampersand = 200, + sym_class = 201, + sym_class_declaration = 202, + sym_class_heritage = 203, + sym_function_expression = 204, + sym_function_declaration = 205, + sym_generator_function = 206, + sym_generator_function_declaration = 207, + sym_arrow_function = 208, + sym_call_expression = 209, + sym_new_expression = 210, + sym_await_expression = 211, + sym_member_expression = 212, + sym_subscript_expression = 213, + sym_assignment_expression = 214, + sym__augmented_assignment_lhs = 215, + sym_augmented_assignment_expression = 216, + sym__initializer = 217, + sym__destructuring_pattern = 218, + sym_spread_element = 219, + sym_ternary_expression = 220, + sym_binary_expression = 221, + sym_unary_expression = 222, + sym_update_expression = 223, + sym_sequence_expression = 224, + sym_string = 225, + sym_template_string = 226, + sym_template_substitution = 227, + sym_regex = 228, + sym_meta_property = 229, + sym_arguments = 230, + sym_decorator = 231, + sym_decorator_member_expression = 232, + sym_decorator_call_expression = 233, + sym_class_body = 234, + sym_field_definition = 235, + sym_formal_parameters = 236, + sym_class_static_block = 237, + sym_pattern = 238, + sym_rest_pattern = 239, + sym_method_definition = 240, + sym_pair = 241, + sym_pair_pattern = 242, + sym__property_name = 243, + sym_computed_property_name = 244, + aux_sym_program_repeat1 = 245, + aux_sym_export_statement_repeat1 = 246, + aux_sym_export_clause_repeat1 = 247, + aux_sym_named_imports_repeat1 = 248, + aux_sym_variable_declaration_repeat1 = 249, + aux_sym_switch_body_repeat1 = 250, + aux_sym_object_repeat1 = 251, + aux_sym_object_pattern_repeat1 = 252, + aux_sym_array_repeat1 = 253, + aux_sym_array_pattern_repeat1 = 254, + aux_sym_jsx_element_repeat1 = 255, + aux_sym_jsx_opening_element_repeat1 = 256, + aux_sym__jsx_string_repeat1 = 257, + aux_sym__jsx_string_repeat2 = 258, + aux_sym_sequence_expression_repeat1 = 259, + aux_sym_string_repeat1 = 260, + aux_sym_string_repeat2 = 261, + aux_sym_template_string_repeat1 = 262, + aux_sym_class_body_repeat1 = 263, + aux_sym_formal_parameters_repeat1 = 264, + alias_sym_property_identifier = 265, + alias_sym_shorthand_property_identifier = 266, + alias_sym_shorthand_property_identifier_pattern = 267, + alias_sym_statement_identifier = 268, }; static const char * const ts_symbol_names[] = { @@ -341,6 +345,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_SQUOTE] = "'", [sym_unescaped_double_jsx_string_fragment] = "string_fragment", [sym_unescaped_single_jsx_string_fragment] = "string_fragment", + [anon_sym_AMP] = "&", + [anon_sym_AMP2] = "&", [anon_sym_class] = "class", [anon_sym_extends] = "extends", [anon_sym_async] = "async", @@ -369,7 +375,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_GT_GT] = ">>", [anon_sym_GT_GT_GT] = ">>>", [anon_sym_LT_LT] = "<<", - [anon_sym_AMP] = "&", + [anon_sym_AMP3] = "&", [anon_sym_CARET] = "^", [anon_sym_PIPE] = "|", [anon_sym_PLUS] = "+", @@ -484,6 +490,8 @@ static const char * const ts_symbol_names[] = { [sym_jsx_self_closing_element] = "jsx_self_closing_element", [sym_jsx_attribute] = "jsx_attribute", [sym__jsx_string] = "string", + [sym__jsx_lone_ampersand] = "jsx_text", + [sym__jsx_string_lone_ampersand] = "string_fragment", [sym_class] = "class", [sym_class_declaration] = "class_declaration", [sym_class_heritage] = "class_heritage", @@ -609,6 +617,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_SQUOTE] = anon_sym_SQUOTE, [sym_unescaped_double_jsx_string_fragment] = sym__template_chars, [sym_unescaped_single_jsx_string_fragment] = sym__template_chars, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_AMP2] = anon_sym_AMP, [anon_sym_class] = anon_sym_class, [anon_sym_extends] = anon_sym_extends, [anon_sym_async] = anon_sym_async, @@ -637,7 +647,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_GT_GT] = anon_sym_GT_GT, [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_AMP3] = anon_sym_AMP, [anon_sym_CARET] = anon_sym_CARET, [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_PLUS] = anon_sym_PLUS, @@ -752,6 +762,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_jsx_self_closing_element] = sym_jsx_self_closing_element, [sym_jsx_attribute] = sym_jsx_attribute, [sym__jsx_string] = sym_string, + [sym__jsx_lone_ampersand] = sym_jsx_text, + [sym__jsx_string_lone_ampersand] = sym__template_chars, [sym_class] = sym_class, [sym_class_declaration] = sym_class_declaration, [sym_class_heritage] = sym_class_heritage, @@ -1039,6 +1051,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP2] = { + .visible = true, + .named = false, + }, [anon_sym_class] = { .visible = true, .named = false, @@ -1151,7 +1171,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_AMP] = { + [anon_sym_AMP3] = { .visible = true, .named = false, }, @@ -1615,6 +1635,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__jsx_lone_ampersand] = { + .visible = true, + .named = true, + }, + [sym__jsx_string_lone_ampersand] = { + .visible = true, + .named = true, + }, [sym_class] = { .visible = true, .named = true, @@ -3362,7 +3390,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [853] = 632, [854] = 648, [855] = 826, - [856] = 828, + [856] = 856, [857] = 857, [858] = 841, [859] = 847, @@ -3370,93 +3398,93 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [861] = 850, [862] = 862, [863] = 863, - [864] = 842, - [865] = 828, - [866] = 857, - [867] = 847, - [868] = 828, - [869] = 857, + [864] = 828, + [865] = 857, + [866] = 847, + [867] = 828, + [868] = 857, + [869] = 828, [870] = 828, - [871] = 828, - [872] = 872, - [873] = 862, - [874] = 874, - [875] = 857, - [876] = 831, - [877] = 832, - [878] = 840, + [871] = 871, + [872] = 862, + [873] = 873, + [874] = 830, + [875] = 831, + [876] = 840, + [877] = 857, + [878] = 878, [879] = 879, [880] = 880, - [881] = 881, - [882] = 874, - [883] = 883, + [881] = 873, + [882] = 882, + [883] = 842, [884] = 863, - [885] = 883, - [886] = 886, - [887] = 660, - [888] = 598, + [885] = 882, + [886] = 828, + [887] = 672, + [888] = 590, [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, + [890] = 598, + [891] = 891, + [892] = 656, + [893] = 658, + [894] = 653, + [895] = 660, + [896] = 661, + [897] = 662, + [898] = 669, + [899] = 671, + [900] = 672, + [901] = 673, + [902] = 674, + [903] = 675, + [904] = 676, + [905] = 677, + [906] = 678, + [907] = 679, + [908] = 680, + [909] = 667, + [910] = 654, + [911] = 664, + [912] = 666, + [913] = 668, + [914] = 655, [915] = 915, [916] = 916, - [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] = 656, - [943] = 658, - [944] = 653, - [945] = 660, - [946] = 661, - [947] = 662, - [948] = 669, - [949] = 671, - [950] = 672, + [917] = 917, + [918] = 590, + [919] = 663, + [920] = 656, + [921] = 658, + [922] = 653, + [923] = 660, + [924] = 661, + [925] = 662, + [926] = 663, + [927] = 671, + [928] = 672, + [929] = 673, + [930] = 674, + [931] = 675, + [932] = 676, + [933] = 677, + [934] = 678, + [935] = 679, + [936] = 680, + [937] = 667, + [938] = 654, + [939] = 664, + [940] = 666, + [941] = 668, + [942] = 655, + [943] = 656, + [944] = 658, + [945] = 653, + [946] = 660, + [947] = 661, + [948] = 662, + [949] = 669, + [950] = 671, [951] = 673, [952] = 674, [953] = 675, @@ -3473,50 +3501,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [964] = 655, [965] = 827, [966] = 663, - [967] = 661, + [967] = 669, [968] = 968, [969] = 969, - [970] = 968, - [971] = 971, + [970] = 970, + [971] = 968, [972] = 968, - [973] = 968, + [973] = 826, [974] = 968, - [975] = 975, - [976] = 975, - [977] = 968, - [978] = 826, + [975] = 968, + [976] = 968, + [977] = 977, + [978] = 970, [979] = 979, [980] = 979, [981] = 981, [982] = 982, [983] = 983, - [984] = 982, + [984] = 984, [985] = 985, [986] = 986, - [987] = 986, + [987] = 984, [988] = 982, - [989] = 989, - [990] = 983, - [991] = 983, + [989] = 986, + [990] = 982, + [991] = 984, [992] = 992, [993] = 993, [994] = 994, - [995] = 993, - [996] = 994, - [997] = 993, + [995] = 994, + [996] = 993, + [997] = 994, [998] = 994, [999] = 993, - [1000] = 994, - [1001] = 994, - [1002] = 993, + [1000] = 993, + [1001] = 993, + [1002] = 994, [1003] = 993, [1004] = 994, [1005] = 1005, [1006] = 1005, [1007] = 1005, [1008] = 1005, - [1009] = 1009, - [1010] = 1005, + [1009] = 1005, + [1010] = 1010, [1011] = 1005, [1012] = 1012, [1013] = 1013, @@ -3547,15 +3575,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1038] = 1038, [1039] = 1039, [1040] = 1040, - [1041] = 1041, - [1042] = 88, + [1041] = 88, + [1042] = 1042, [1043] = 1043, [1044] = 1044, [1045] = 1045, [1046] = 1046, - [1047] = 91, + [1047] = 1047, [1048] = 1048, - [1049] = 1049, + [1049] = 91, [1050] = 1050, [1051] = 1051, [1052] = 1052, @@ -3569,81 +3597,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 1063, + [1063] = 1059, [1064] = 1064, [1065] = 1065, [1066] = 1066, - [1067] = 1038, + [1067] = 1067, [1068] = 1068, [1069] = 1069, [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, + [1071] = 89, + [1072] = 87, + [1073] = 1024, [1074] = 1074, - [1075] = 87, - [1076] = 1018, + [1075] = 1075, + [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1017, - [1080] = 1080, + [1079] = 1079, + [1080] = 1024, [1081] = 1081, - [1082] = 1026, - [1083] = 1026, - [1084] = 1072, - [1085] = 89, + [1082] = 1082, + [1083] = 1017, + [1084] = 1076, + [1085] = 1026, [1086] = 1086, - [1087] = 1086, - [1088] = 1030, + [1087] = 1087, + [1088] = 1088, [1089] = 1089, - [1090] = 1032, - [1091] = 1033, + [1090] = 1090, + [1091] = 1086, [1092] = 1092, [1093] = 1093, [1094] = 1094, [1095] = 1095, - [1096] = 1096, + [1096] = 1032, [1097] = 1097, [1098] = 1098, - [1099] = 1029, - [1100] = 634, - [1101] = 1101, - [1102] = 1031, + [1099] = 1036, + [1100] = 1028, + [1101] = 601, + [1102] = 1094, [1103] = 1103, - [1104] = 1029, - [1105] = 1089, + [1104] = 634, + [1105] = 638, [1106] = 1106, - [1107] = 1107, - [1108] = 1103, - [1109] = 1098, - [1110] = 1101, - [1111] = 1111, - [1112] = 1111, - [1113] = 1092, - [1114] = 1093, - [1115] = 1095, - [1116] = 1096, - [1117] = 1107, - [1118] = 601, - [1119] = 638, + [1107] = 1031, + [1108] = 1033, + [1109] = 1089, + [1110] = 1032, + [1111] = 1106, + [1112] = 1095, + [1113] = 1097, + [1114] = 1098, + [1115] = 1115, + [1116] = 1103, + [1117] = 1092, + [1118] = 1093, + [1119] = 1115, [1120] = 1120, [1121] = 1121, [1122] = 1122, [1123] = 1123, - [1124] = 1120, + [1124] = 1124, [1125] = 1125, [1126] = 1126, [1127] = 1127, [1128] = 1128, - [1129] = 1123, - [1130] = 1125, - [1131] = 1122, - [1132] = 1132, - [1133] = 1126, - [1134] = 1121, + [1129] = 1122, + [1130] = 1123, + [1131] = 1128, + [1132] = 1120, + [1133] = 1125, + [1134] = 1126, [1135] = 1127, - [1136] = 1128, - [1137] = 1132, + [1136] = 1124, + [1137] = 1121, [1138] = 1138, [1139] = 1138, [1140] = 1138, @@ -3652,51 +3680,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1143] = 1138, [1144] = 1144, [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, + [1146] = 1145, + [1147] = 1144, + [1148] = 1145, + [1149] = 1144, + [1150] = 1145, + [1151] = 1144, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1154, + [1156] = 1154, + [1157] = 1154, [1158] = 1158, - [1159] = 1158, - [1160] = 1160, - [1161] = 1157, - [1162] = 1158, + [1159] = 1159, + [1160] = 1158, + [1161] = 1159, + [1162] = 1159, [1163] = 1158, - [1164] = 1157, - [1165] = 1157, + [1164] = 1158, + [1165] = 1159, [1166] = 1166, [1167] = 1167, [1168] = 1168, [1169] = 1169, [1170] = 1170, - [1171] = 1171, + [1171] = 1170, [1172] = 1172, [1173] = 1173, - [1174] = 1174, - [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, + [1174] = 1167, + [1175] = 1168, + [1176] = 1173, + [1177] = 1172, + [1178] = 1173, + [1179] = 1167, + [1180] = 1168, + [1181] = 1172, + [1182] = 1173, + [1183] = 1167, + [1184] = 1168, + [1185] = 1172, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1170, + [1190] = 1170, [1191] = 1191, [1192] = 1192, [1193] = 1193, @@ -3710,209 +3738,209 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1201] = 1201, [1202] = 1202, [1203] = 1203, - [1204] = 1204, + [1204] = 1202, [1205] = 1205, [1206] = 1206, [1207] = 1207, [1208] = 1208, [1209] = 1209, - [1210] = 1210, - [1211] = 1210, - [1212] = 1210, + [1210] = 1202, + [1211] = 1202, + [1212] = 1212, [1213] = 1213, - [1214] = 1210, + [1214] = 1214, [1215] = 1215, [1216] = 1216, - [1217] = 1210, + [1217] = 1217, [1218] = 1218, - [1219] = 1219, - [1220] = 1210, + [1219] = 1202, + [1220] = 1202, [1221] = 1221, [1222] = 1222, [1223] = 1223, [1224] = 1224, - [1225] = 1225, + [1225] = 592, [1226] = 1226, [1227] = 1227, [1228] = 1228, [1229] = 1229, - [1230] = 1230, + [1230] = 640, [1231] = 1231, - [1232] = 1232, + [1232] = 1208, [1233] = 1233, - [1234] = 1222, - [1235] = 640, - [1236] = 1236, - [1237] = 614, - [1238] = 1206, - [1239] = 1239, - [1240] = 1240, + [1234] = 1234, + [1235] = 1235, + [1236] = 1222, + [1237] = 1237, + [1238] = 614, + [1239] = 608, + [1240] = 1234, [1241] = 1241, - [1242] = 1229, + [1242] = 1242, [1243] = 1243, - [1244] = 1240, + [1244] = 1244, [1245] = 1245, [1246] = 1246, - [1247] = 1218, - [1248] = 1207, - [1249] = 1219, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1252, + [1252] = 1221, [1253] = 1253, [1254] = 1254, - [1255] = 608, - [1256] = 593, + [1255] = 1255, + [1256] = 1214, [1257] = 1257, - [1258] = 610, - [1259] = 611, + [1258] = 1258, + [1259] = 610, [1260] = 1260, - [1261] = 1261, + [1261] = 611, [1262] = 1262, - [1263] = 621, - [1264] = 622, - [1265] = 623, - [1266] = 1266, + [1263] = 1263, + [1264] = 1223, + [1265] = 621, + [1266] = 622, [1267] = 1267, - [1268] = 1261, + [1268] = 623, [1269] = 624, - [1270] = 592, - [1271] = 1271, + [1270] = 1270, + [1271] = 1250, [1272] = 1272, [1273] = 1273, - [1274] = 614, - [1275] = 593, - [1276] = 1276, + [1274] = 1274, + [1275] = 1275, + [1276] = 593, [1277] = 1277, [1278] = 1278, [1279] = 1279, [1280] = 1280, - [1281] = 610, + [1281] = 1281, [1282] = 1282, [1283] = 1283, [1284] = 1284, [1285] = 1285, - [1286] = 1284, - [1287] = 1287, - [1288] = 1260, - [1289] = 1273, - [1290] = 611, + [1286] = 1286, + [1287] = 1275, + [1288] = 1277, + [1289] = 1289, + [1290] = 1289, [1291] = 1291, - [1292] = 1292, + [1292] = 1277, [1293] = 1293, - [1294] = 621, - [1295] = 1279, - [1296] = 1262, - [1297] = 1297, - [1298] = 1271, - [1299] = 622, - [1300] = 623, - [1301] = 1301, - [1302] = 624, - [1303] = 1260, + [1294] = 1294, + [1295] = 1295, + [1296] = 1285, + [1297] = 1243, + [1298] = 1285, + [1299] = 608, + [1300] = 1300, + [1301] = 614, + [1302] = 1302, + [1303] = 593, [1304] = 1304, - [1305] = 1305, - [1306] = 1267, - [1307] = 1282, - [1308] = 592, - [1309] = 1309, - [1310] = 1293, - [1311] = 1311, - [1312] = 608, - [1313] = 1279, - [1314] = 1266, - [1315] = 1279, - [1316] = 640, + [1305] = 610, + [1306] = 611, + [1307] = 621, + [1308] = 622, + [1309] = 623, + [1310] = 624, + [1311] = 592, + [1312] = 1295, + [1313] = 1277, + [1314] = 1278, + [1315] = 1302, + [1316] = 1304, [1317] = 1317, - [1318] = 1260, - [1319] = 1287, + [1318] = 1317, + [1319] = 1280, [1320] = 1320, [1321] = 1321, - [1322] = 1322, + [1322] = 1284, [1323] = 1323, - [1324] = 1253, - [1325] = 1325, - [1326] = 1326, + [1324] = 1324, + [1325] = 1285, + [1326] = 640, [1327] = 1327, [1328] = 1328, [1329] = 1329, [1330] = 1330, [1331] = 1331, - [1332] = 1330, - [1333] = 1326, - [1334] = 1331, + [1332] = 1327, + [1333] = 1333, + [1334] = 1334, [1335] = 1335, [1336] = 1336, - [1337] = 1337, + [1337] = 1328, [1338] = 1338, - [1339] = 1330, - [1340] = 1251, + [1339] = 1339, + [1340] = 1272, [1341] = 1341, [1342] = 1342, - [1343] = 1322, - [1344] = 1204, - [1345] = 1345, - [1346] = 1227, + [1343] = 1331, + [1344] = 1344, + [1345] = 1224, + [1346] = 1335, [1347] = 1347, [1348] = 1348, - [1349] = 1328, - [1350] = 1328, - [1351] = 1329, - [1352] = 1329, + [1349] = 1349, + [1350] = 1330, + [1351] = 1351, + [1352] = 1334, [1353] = 1353, [1354] = 1354, [1355] = 1355, - [1356] = 1356, - [1357] = 1330, + [1356] = 1327, + [1357] = 1338, [1358] = 1358, - [1359] = 1359, + [1359] = 1329, [1360] = 1360, - [1361] = 1328, - [1362] = 1362, - [1363] = 1329, - [1364] = 1331, + [1361] = 1361, + [1362] = 1339, + [1363] = 1241, + [1364] = 1364, [1365] = 1365, - [1366] = 1241, - [1367] = 1353, - [1368] = 1362, - [1369] = 1331, - [1370] = 1370, - [1371] = 1371, + [1366] = 1366, + [1367] = 1367, + [1368] = 1368, + [1369] = 1339, + [1370] = 1334, + [1371] = 1344, [1372] = 1372, - [1373] = 1345, - [1374] = 1336, + [1373] = 1373, + [1374] = 1366, [1375] = 1375, [1376] = 1376, - [1377] = 1377, + [1377] = 1365, [1378] = 1378, - [1379] = 1224, - [1380] = 1380, + [1379] = 1327, + [1380] = 1320, [1381] = 1381, - [1382] = 1347, + [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1378, - [1387] = 1376, - [1388] = 1381, - [1389] = 1389, + [1386] = 1386, + [1387] = 1342, + [1388] = 1388, + [1389] = 1331, [1390] = 1390, - [1391] = 1391, - [1392] = 1360, - [1393] = 1323, - [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, + [1391] = 1334, + [1392] = 1390, + [1393] = 1339, + [1394] = 1333, + [1395] = 1213, + [1396] = 1386, + [1397] = 1273, + [1398] = 1373, + [1399] = 1331, [1400] = 1400, [1401] = 1401, [1402] = 1402, - [1403] = 411, + [1403] = 1403, [1404] = 1404, [1405] = 1405, - [1406] = 1402, + [1406] = 1406, [1407] = 1407, [1408] = 1408, [1409] = 1409, @@ -3926,121 +3954,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1417] = 1417, [1418] = 1418, [1419] = 1419, - [1420] = 1416, - [1421] = 1421, + [1420] = 1420, + [1421] = 1409, [1422] = 1422, [1423] = 1423, [1424] = 1424, - [1425] = 1425, - [1426] = 1426, + [1425] = 1419, + [1426] = 1420, [1427] = 1427, - [1428] = 1424, - [1429] = 1429, + [1428] = 1428, + [1429] = 1415, [1430] = 1430, [1431] = 1431, [1432] = 1432, - [1433] = 1433, + [1433] = 1416, [1434] = 1434, - [1435] = 1435, + [1435] = 1427, [1436] = 1436, - [1437] = 1405, - [1438] = 1432, + [1437] = 1427, + [1438] = 1438, [1439] = 1439, [1440] = 1440, - [1441] = 1422, - [1442] = 1442, + [1441] = 1441, + [1442] = 1428, [1443] = 1443, - [1444] = 1424, - [1445] = 1432, + [1444] = 1444, + [1445] = 1445, [1446] = 1446, [1447] = 1447, - [1448] = 1448, + [1448] = 1438, [1449] = 1449, [1450] = 1450, - [1451] = 1430, - [1452] = 1419, - [1453] = 1453, + [1451] = 1424, + [1452] = 1415, + [1453] = 1413, [1454] = 1454, - [1455] = 1436, - [1456] = 1456, - [1457] = 1454, - [1458] = 1402, - [1459] = 1459, - [1460] = 1460, - [1461] = 1449, + [1455] = 1416, + [1456] = 1434, + [1457] = 1457, + [1458] = 1458, + [1459] = 1458, + [1460] = 1444, + [1461] = 1461, [1462] = 1462, - [1463] = 1463, - [1464] = 1418, - [1465] = 1436, - [1466] = 1466, - [1467] = 1422, + [1463] = 1410, + [1464] = 1412, + [1465] = 1402, + [1466] = 1418, + [1467] = 1467, [1468] = 1468, [1469] = 1469, [1470] = 1470, - [1471] = 1399, - [1472] = 1472, - [1473] = 1401, - [1474] = 1474, - [1475] = 1475, - [1476] = 1466, + [1471] = 1422, + [1472] = 1436, + [1473] = 1409, + [1474] = 1411, + [1475] = 1467, + [1476] = 1422, [1477] = 1477, - [1478] = 1404, - [1479] = 1462, - [1480] = 1405, - [1481] = 1472, - [1482] = 1482, - [1483] = 1429, - [1484] = 1413, - [1485] = 1460, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1449, + [1482] = 1450, + [1483] = 1419, + [1484] = 1420, + [1485] = 1427, [1486] = 1486, - [1487] = 1418, - [1488] = 1488, + [1487] = 1487, + [1488] = 1428, [1489] = 1489, - [1490] = 1450, - [1491] = 1409, - [1492] = 1400, - [1493] = 1493, - [1494] = 1411, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 1404, + [1494] = 1406, [1495] = 1495, - [1496] = 1424, + [1496] = 1496, [1497] = 1497, - [1498] = 1440, - [1499] = 1449, - [1500] = 1500, + [1498] = 1498, + [1499] = 1499, + [1500] = 1495, [1501] = 1501, - [1502] = 1502, + [1502] = 411, [1503] = 1503, [1504] = 1504, [1505] = 1505, [1506] = 1506, - [1507] = 1503, + [1507] = 1507, [1508] = 1508, - [1509] = 1504, + [1509] = 1509, [1510] = 1510, - [1511] = 1511, + [1511] = 616, [1512] = 1512, [1513] = 1513, - [1514] = 1514, - [1515] = 1515, + [1514] = 617, + [1515] = 1510, [1516] = 1516, - [1517] = 1517, + [1517] = 1512, [1518] = 1518, [1519] = 1519, [1520] = 1520, - [1521] = 616, - [1522] = 617, - [1523] = 1506, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, [1524] = 1524, [1525] = 1525, [1526] = 1526, - [1527] = 1511, + [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 1512, + [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, @@ -4052,21 +4080,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1543] = 1543, [1544] = 1544, [1545] = 1545, - [1546] = 1546, + [1546] = 1353, [1547] = 1547, - [1548] = 1389, - [1549] = 1511, - [1550] = 1512, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, [1551] = 1551, [1552] = 1552, - [1553] = 1553, + [1553] = 1508, [1554] = 1554, - [1555] = 1519, + [1555] = 1555, [1556] = 1556, - [1557] = 1542, + [1557] = 1557, [1558] = 1558, [1559] = 1559, - [1560] = 1560, + [1560] = 1522, [1561] = 1561, [1562] = 1562, [1563] = 1563, @@ -4077,70 +4105,70 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1568] = 1568, [1569] = 1569, [1570] = 1570, - [1571] = 1571, + [1571] = 1535, [1572] = 1572, - [1573] = 1501, - [1574] = 1502, + [1573] = 1573, + [1574] = 1574, [1575] = 1575, [1576] = 1576, [1577] = 1577, - [1578] = 1578, + [1578] = 1525, [1579] = 1579, - [1580] = 1580, - [1581] = 1581, + [1580] = 1564, + [1581] = 1572, [1582] = 1582, - [1583] = 1529, - [1584] = 1539, - [1585] = 1540, - [1586] = 1518, + [1583] = 1582, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, [1587] = 1587, [1588] = 1588, [1589] = 1589, [1590] = 1590, - [1591] = 1591, - [1592] = 1592, - [1593] = 1552, - [1594] = 1559, - [1595] = 1561, - [1596] = 1562, - [1597] = 1565, - [1598] = 1568, + [1591] = 1555, + [1592] = 1558, + [1593] = 1559, + [1594] = 1561, + [1595] = 1563, + [1596] = 1565, + [1597] = 1566, + [1598] = 1567, [1599] = 1569, - [1600] = 1570, - [1601] = 1572, + [1600] = 1573, + [1601] = 1574, [1602] = 1575, - [1603] = 1576, - [1604] = 1577, + [1603] = 1603, + [1604] = 1604, [1605] = 1605, - [1606] = 1606, - [1607] = 1537, - [1608] = 1551, + [1606] = 1579, + [1607] = 1607, + [1608] = 1608, [1609] = 1609, [1610] = 1610, [1611] = 1611, [1612] = 1612, - [1613] = 1613, - [1614] = 1614, - [1615] = 1558, - [1616] = 1564, - [1617] = 1571, - [1618] = 1578, - [1619] = 1579, + [1613] = 1584, + [1614] = 1585, + [1615] = 1615, + [1616] = 1518, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, [1620] = 1620, - [1621] = 1589, - [1622] = 1622, + [1621] = 639, + [1622] = 1603, [1623] = 1623, [1624] = 1624, - [1625] = 1625, + [1625] = 1521, [1626] = 1626, - [1627] = 1605, - [1628] = 1622, - [1629] = 1623, + [1627] = 1627, + [1628] = 1524, + [1629] = 1629, [1630] = 1630, [1631] = 1631, - [1632] = 1624, + [1632] = 1632, [1633] = 1633, - [1634] = 1634, + [1634] = 1619, [1635] = 1635, [1636] = 1636, [1637] = 1637, @@ -4148,122 +4176,122 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1642, - [1643] = 1524, - [1644] = 1515, - [1645] = 1530, + [1642] = 1533, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, [1646] = 1646, [1647] = 1647, [1648] = 1648, [1649] = 1649, - [1650] = 1650, - [1651] = 1651, - [1652] = 1652, + [1650] = 1633, + [1651] = 1644, + [1652] = 1503, [1653] = 1653, [1654] = 1654, [1655] = 1655, - [1656] = 1554, - [1657] = 1517, - [1658] = 1658, - [1659] = 1659, + [1656] = 1656, + [1657] = 1657, + [1658] = 1528, + [1659] = 1539, [1660] = 1660, [1661] = 1661, [1662] = 1662, - [1663] = 1560, + [1663] = 1663, [1664] = 1664, - [1665] = 1531, - [1666] = 1666, + [1665] = 1665, + [1666] = 1510, [1667] = 1667, - [1668] = 1520, - [1669] = 1669, - [1670] = 1563, - [1671] = 1532, - [1672] = 1533, - [1673] = 1673, - [1674] = 1674, - [1675] = 1536, - [1676] = 1676, - [1677] = 1677, + [1668] = 1510, + [1669] = 1512, + [1670] = 1670, + [1671] = 1570, + [1672] = 1672, + [1673] = 1664, + [1674] = 1618, + [1675] = 1551, + [1676] = 1615, + [1677] = 1577, [1678] = 1678, - [1679] = 1626, - [1680] = 1680, - [1681] = 1681, + [1679] = 1505, + [1680] = 1513, + [1681] = 1520, [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1685, - [1686] = 1686, - [1687] = 1687, - [1688] = 1688, - [1689] = 1689, - [1690] = 1556, - [1691] = 1646, + [1683] = 1536, + [1684] = 1549, + [1685] = 1556, + [1686] = 1512, + [1687] = 1562, + [1688] = 1568, + [1689] = 1576, + [1690] = 1586, + [1691] = 1691, [1692] = 1692, - [1693] = 1647, - [1694] = 1580, - [1695] = 1695, - [1696] = 1566, - [1697] = 1535, + [1693] = 1587, + [1694] = 1623, + [1695] = 1624, + [1696] = 1696, + [1697] = 1626, [1698] = 1698, [1699] = 1699, [1700] = 1700, - [1701] = 1650, - [1702] = 1702, - [1703] = 1703, - [1704] = 1630, - [1705] = 1631, - [1706] = 1633, - [1707] = 1634, + [1701] = 1663, + [1702] = 1696, + [1703] = 1698, + [1704] = 1699, + [1705] = 1700, + [1706] = 1706, + [1707] = 1706, [1708] = 1708, - [1709] = 1587, - [1710] = 1553, - [1711] = 1635, - [1712] = 1609, - [1713] = 1588, - [1714] = 1567, - [1715] = 1610, + [1709] = 1550, + [1710] = 1710, + [1711] = 1607, + [1712] = 1712, + [1713] = 1713, + [1714] = 1714, + [1715] = 1715, [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, + [1717] = 1627, + [1718] = 1608, + [1719] = 1609, + [1720] = 1708, + [1721] = 1721, + [1722] = 1710, + [1723] = 1712, + [1724] = 1656, + [1725] = 1725, + [1726] = 1653, + [1727] = 1655, + [1728] = 1678, + [1729] = 1682, + [1730] = 1721, [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, + [1733] = 1637, + [1734] = 1588, + [1735] = 1735, + [1736] = 1557, + [1737] = 1737, + [1738] = 1713, + [1739] = 1610, + [1740] = 1611, + [1741] = 1741, + [1742] = 1612, + [1743] = 1743, + [1744] = 1714, + [1745] = 1715, + [1746] = 1638, + [1747] = 1716, [1748] = 1748, [1749] = 1749, - [1750] = 1748, + [1750] = 1657, [1751] = 1751, [1752] = 1752, [1753] = 1753, [1754] = 1754, [1755] = 1755, [1756] = 1756, - [1757] = 1757, + [1757] = 1756, [1758] = 1758, [1759] = 1759, [1760] = 1760, @@ -4272,110 +4300,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1763] = 1763, [1764] = 1764, [1765] = 1765, - [1766] = 1766, - [1767] = 1342, + [1766] = 1752, + [1767] = 1759, [1768] = 1768, [1769] = 1769, [1770] = 1770, - [1771] = 1756, + [1771] = 1771, [1772] = 1772, [1773] = 1773, - [1774] = 1774, + [1774] = 1764, [1775] = 1775, - [1776] = 1762, - [1777] = 1756, - [1778] = 1763, - [1779] = 1763, - [1780] = 1768, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1769, + [1776] = 1752, + [1777] = 1777, + [1778] = 1778, + [1779] = 1773, + [1780] = 1780, + [1781] = 1780, + [1782] = 1769, + [1783] = 1764, + [1784] = 1752, + [1785] = 1773, [1786] = 1786, - [1787] = 1770, - [1788] = 1788, + [1787] = 1787, + [1788] = 1759, [1789] = 1789, - [1790] = 1762, + [1790] = 1756, [1791] = 1791, [1792] = 1792, [1793] = 1793, - [1794] = 1758, - [1795] = 1764, + [1794] = 1794, + [1795] = 1795, [1796] = 1796, - [1797] = 1797, - [1798] = 1756, + [1797] = 1792, + [1798] = 1798, [1799] = 1799, [1800] = 1800, - [1801] = 1801, - [1802] = 1762, - [1803] = 1763, + [1801] = 1780, + [1802] = 1802, + [1803] = 1378, [1804] = 1804, - [1805] = 1805, - [1806] = 1806, + [1805] = 1762, + [1806] = 1769, [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, + [1808] = 1808, + [1809] = 1809, + [1810] = 1810, + [1811] = 1786, + [1812] = 1812, + [1813] = 1764, + [1814] = 1796, + [1815] = 1815, + [1816] = 1773, + [1817] = 1817, + [1818] = 1818, + [1819] = 1792, + [1820] = 1772, + [1821] = 1765, + [1822] = 1822, + [1823] = 1780, + [1824] = 1824, + [1825] = 1762, + [1826] = 1769, + [1827] = 1827, + [1828] = 1764, + [1829] = 1752, + [1830] = 1773, [1831] = 1831, - [1832] = 1769, - [1833] = 1833, - [1834] = 1782, + [1832] = 1832, + [1833] = 1769, + [1834] = 1834, [1835] = 1835, - [1836] = 1836, - [1837] = 1837, - [1838] = 1831, - [1839] = 1839, - [1840] = 1840, - [1841] = 1749, - [1842] = 1842, - [1843] = 1789, + [1836] = 1759, + [1837] = 1773, + [1838] = 1834, + [1839] = 1798, + [1840] = 1796, + [1841] = 1762, + [1842] = 1764, + [1843] = 1780, [1844] = 1844, - [1845] = 1765, - [1846] = 1799, + [1845] = 1845, + [1846] = 1846, [1847] = 1847, [1848] = 1848, - [1849] = 1763, - [1850] = 1850, - [1851] = 1768, - [1852] = 1835, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1781, - [1857] = 1762, + [1849] = 1822, + [1850] = 1796, + [1851] = 1851, + [1852] = 1852, + [1853] = 1846, + [1854] = 1769, + [1855] = 1845, + [1856] = 1792, + [1857] = 1857, [1858] = 1858, - [1859] = 1782, - [1860] = 1860, - [1861] = 1799, + [1859] = 1859, + [1860] = 1762, + [1861] = 1756, [1862] = 1862, [1863] = 1863, - [1864] = 1864, - [1865] = 1754, - [1866] = 1866, - [1867] = 1858, - [1868] = 1847, - [1869] = 1781, + [1864] = 1835, + [1865] = 1865, + [1866] = 1780, + [1867] = 1762, + [1868] = 1754, + [1869] = 1869, + [1870] = 1810, + [1871] = 1818, + [1872] = 1752, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -4489,646 +4520,652 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(126); + if (eof) ADVANCE(125); ADVANCE_MAP( - '!', 226, - '"', 159, + '!', 229, + '"', 158, '#', 4, - '$', 273, - '%', 214, - '&', 201, - '\'', 160, - '(', 134, - ')', 136, - '*', 129, - '+', 208, - ',', 132, - '-', 210, - '.', 155, - '/', 253, - '0', 258, - ':', 137, - ';', 135, - '<', 147, - '=', 140, - '>', 151, - '?', 28, - '@', 277, - '[', 142, - '\\', 80, - ']', 143, - '^', 204, - '`', 251, - 's', 271, - '{', 131, - '|', 205, - '}', 133, - '~', 227, + '$', 276, + '%', 217, + '&', 203, + '\'', 159, + '(', 133, + ')', 135, + '*', 128, + '+', 211, + ',', 131, + '-', 213, + '.', 154, + '/', 256, + '0', 261, + ':', 136, + ';', 134, + '<', 146, + '=', 139, + '>', 150, + '?', 27, + '@', 280, + '[', 141, + '\\', 79, + ']', 142, + '^', 207, + '`', 254, + 's', 274, + '{', 130, + '|', 208, + '}', 132, + '~', 230, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(123); - if (lookahead > '@') ADVANCE(275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(122); + if (lookahead > '@') ADVANCE(278); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(278); + if (lookahead == '\n') ADVANCE(281); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(1); END_STATE(); case 2: - if (lookahead == '\n') SKIP(33); - if (lookahead == '/') ADVANCE(21); - if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(122); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(254); - if (lookahead != 0) ADVANCE(255); + if (lookahead == '\n') SKIP(32); + if (lookahead == '/') ADVANCE(20); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(121); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(257); + if (lookahead != 0) ADVANCE(258); END_STATE(); case 3: ADVANCE_MAP( - '!', 226, - '"', 159, - '#', 75, - '%', 214, - '&', 201, - '\'', 160, - '(', 134, - ')', 136, - '*', 129, - '+', 208, - ',', 132, - '-', 210, - '.', 156, - '/', 212, - '0', 258, - ':', 137, - ';', 135, - '<', 148, - '=', 140, - '>', 151, - '?', 28, - '@', 277, - '[', 142, - '\\', 82, - ']', 143, - '^', 204, - '`', 251, - '{', 131, - '|', 205, - '}', 133, - '~', 227, + '!', 229, + '"', 158, + '#', 74, + '%', 217, + '&', 204, + '\'', 159, + '(', 133, + ')', 135, + '*', 128, + '+', 211, + ',', 131, + '-', 213, + '.', 155, + '/', 215, + '0', 261, + ':', 136, + ';', 134, + '<', 147, + '=', 139, + '>', 150, + '?', 27, + '@', 280, + '[', 141, + '\\', 81, + ']', 142, + '^', 207, + '`', 254, + '{', 130, + '|', 208, + '}', 132, + '~', 230, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); - if (lookahead > '#') ADVANCE(275); + if (lookahead > '#') ADVANCE(278); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(127); - if (lookahead == '\\') ADVANCE(81); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(276); + if (lookahead == '!') ADVANCE(126); + if (lookahead == '\\') ADVANCE(80); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(279); END_STATE(); case 5: ADVANCE_MAP( - '!', 225, - '"', 159, - '#', 75, - '\'', 160, - '(', 134, - '*', 128, - '+', 207, - ',', 132, - '-', 209, - '.', 27, - '/', 211, - '0', 258, - ';', 135, - '<', 145, - '@', 277, - '[', 142, - '\\', 82, - '`', 251, - 's', 271, - '{', 131, - '}', 133, - '~', 227, + '!', 228, + '"', 158, + '#', 74, + '\'', 159, + '(', 133, + '*', 127, + '+', 210, + ',', 131, + '-', 212, + '.', 26, + '/', 214, + '0', 261, + ';', 134, + '<', 144, + '@', 280, + '[', 141, + '\\', 81, + '`', 254, + 's', 274, + '{', 130, + '}', 132, + '~', 230, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(275); + (lookahead < '{' || '~' < lookahead)) ADVANCE(278); END_STATE(); case 6: ADVANCE_MAP( - '!', 225, - '"', 159, - '#', 75, - '\'', 160, - '(', 134, - '+', 207, - '-', 209, - '.', 156, - '/', 211, - '0', 258, - ':', 137, - '<', 145, - '>', 150, - '@', 277, - '[', 142, - '\\', 82, - '`', 251, - '{', 131, - '~', 227, + '!', 228, + '"', 158, + '#', 74, + '\'', 159, + '(', 133, + '+', 210, + '-', 212, + '.', 155, + '/', 214, + '0', 261, + ':', 136, + '<', 144, + '>', 149, + '@', 280, + '[', 141, + '\\', 81, + '`', 254, + '{', 130, + '~', 230, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(275); + (lookahead < '{' || '~' < lookahead)) ADVANCE(278); END_STATE(); case 7: ADVANCE_MAP( - '!', 73, - '%', 213, - '&', 202, - '(', 134, - ')', 136, - '*', 130, - '+', 207, - ',', 132, - '-', 209, - '.', 154, - '/', 211, - ':', 137, - ';', 135, - '<', 149, - '=', 74, - '>', 152, - '?', 29, - '[', 142, - '\\', 82, - ']', 143, - '^', 203, - '`', 251, - '{', 131, - '|', 206, - '}', 133, + '!', 72, + '%', 216, + '&', 205, + '(', 133, + ')', 135, + '*', 129, + '+', 210, + ',', 131, + '-', 212, + '.', 153, + '/', 214, + ':', 136, + ';', 134, + '<', 148, + '=', 73, + '>', 151, + '?', 28, + '[', 141, + '\\', 81, + ']', 142, + '^', 206, + '`', 254, + '{', 130, + '|', 209, + '}', 132, ); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(256); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(259); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '`' || '~' < lookahead)) ADVANCE(275); + (lookahead < '`' || '~' < lookahead)) ADVANCE(278); END_STATE(); case 8: ADVANCE_MAP( - '!', 73, - '%', 213, - '&', 202, - '(', 134, - ')', 136, - '*', 130, - '+', 207, - ',', 132, - '-', 209, - '.', 154, - '/', 211, - ':', 137, - ';', 135, - '<', 149, - '=', 74, - '>', 152, - '?', 29, - '[', 142, - '\\', 82, - ']', 143, - '^', 203, - '`', 251, - '{', 131, - '|', 206, - '}', 133, + '!', 72, + '%', 216, + '&', 205, + '(', 133, + ')', 135, + '*', 129, + '+', 210, + ',', 131, + '-', 212, + '.', 153, + '/', 214, + ':', 136, + ';', 134, + '<', 148, + '=', 73, + '>', 151, + '?', 28, + '[', 141, + '\\', 81, + ']', 142, + '^', 206, + '`', 254, + '{', 130, + '|', 209, + '}', 132, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(275); + (lookahead < '{' || '~' < lookahead)) ADVANCE(278); END_STATE(); case 9: ADVANCE_MAP( - '"', 159, - '#', 75, - '&', 13, - '\'', 160, - '(', 134, - '*', 128, - '.', 156, - '/', 21, - '0', 258, - '<', 146, - '@', 277, - '[', 142, - '\\', 82, - 's', 271, - '{', 131, + '"', 158, + '#', 74, + '&', 172, + '\'', 159, + '(', 133, + '*', 127, + '.', 155, + '/', 20, + '0', 261, + '<', 145, + '@', 280, + '[', 141, + '\\', 81, + 's', 274, + '{', 130, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(275); + (lookahead < '{' || '~' < lookahead)) ADVANCE(278); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(159); - if (lookahead == '&') ADVANCE(14); - if (lookahead == '/') ADVANCE(162); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(161); - if (lookahead != 0) ADVANCE(163); + if (lookahead == '"') ADVANCE(158); + if (lookahead == '&') ADVANCE(173); + if (lookahead == '/') ADVANCE(160); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(162); + if (lookahead != 0) ADVANCE(161); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(159); - if (lookahead == '/') ADVANCE(21); + if (lookahead == '"') ADVANCE(158); + if (lookahead == '/') ADVANCE(20); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(159); - if (lookahead == '/') ADVANCE(230); - if (lookahead == '\\') ADVANCE(83); + if (lookahead == '"') ADVANCE(158); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '\\') ADVANCE(82); if (lookahead == '\n' || lookahead == '\r') SKIP(11); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(233); - if (lookahead != 0) ADVANCE(235); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(236); + if (lookahead != 0) ADVANCE(238); END_STATE(); case 13: - if (lookahead == '#') ADVANCE(94); + if (lookahead == '#') ADVANCE(93); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#') ADVANCE(161); END_STATE(); case 14: - if (lookahead == '#') ADVANCE(94); + if (lookahead == '#') ADVANCE(93); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); - if (lookahead != 0) ADVANCE(163); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(167); END_STATE(); case 15: - if (lookahead == '#') ADVANCE(94); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); - if (lookahead != 0) ADVANCE(169); + if (lookahead == '$') ADVANCE(83); + if (lookahead == '/') ADVANCE(20); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == '`') ADVANCE(254); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); END_STATE(); case 16: - if (lookahead == '$') ADVANCE(84); - if (lookahead == '/') ADVANCE(21); - if (lookahead == '\\') ADVANCE(83); - if (lookahead == '`') ADVANCE(251); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(17); + if (lookahead == '$') ADVANCE(83); + if (lookahead == '/') ADVANCE(20); + if (lookahead == '`') ADVANCE(254); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); END_STATE(); case 17: - if (lookahead == '$') ADVANCE(84); - if (lookahead == '/') ADVANCE(21); - if (lookahead == '`') ADVANCE(251); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(17); + if (lookahead == '&') ADVANCE(174); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '/') ADVANCE(166); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(168); + if (lookahead != 0) ADVANCE(167); END_STATE(); case 18: - if (lookahead == '&') ADVANCE(15); - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '/') ADVANCE(168); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(167); - if (lookahead != 0) ADVANCE(169); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '/') ADVANCE(20); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(18); END_STATE(); case 19: - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '/') ADVANCE(21); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '/') ADVANCE(239); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == '\n' || + lookahead == '\r') SKIP(18); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(242); + if (lookahead != 0) ADVANCE(244); END_STATE(); case 20: - if (lookahead == '\'') ADVANCE(160); - if (lookahead == '/') ADVANCE(236); - if (lookahead == '\\') ADVANCE(83); - if (lookahead == '\n' || - lookahead == '\r') SKIP(19); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(239); - if (lookahead != 0) ADVANCE(241); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(253); END_STATE(); case 21: - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(250); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '>') ADVANCE(157); END_STATE(); case 22: - if (lookahead == '*') ADVANCE(24); + if (lookahead == '*') ADVANCE(22); if (lookahead == '/') ADVANCE(250); - if (lookahead == '>') ADVANCE(158); + if (lookahead != 0) ADVANCE(23); END_STATE(); case 23: - if (lookahead == '*') ADVANCE(23); - if (lookahead == '/') ADVANCE(247); - if (lookahead != 0) ADVANCE(24); + if (lookahead == '*') ADVANCE(22); + if (lookahead != 0) ADVANCE(23); END_STATE(); case 24: - if (lookahead == '*') ADVANCE(23); - if (lookahead != 0) ADVANCE(24); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '"' || + lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(23); + if (lookahead != 0) ADVANCE(164); END_STATE(); case 25: - if (lookahead == '*') ADVANCE(164); + if (lookahead == '*') ADVANCE(169); if (lookahead == '#' || + lookahead == '\'' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); - if (lookahead != 0) ADVANCE(165); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(23); + if (lookahead != 0) ADVANCE(170); END_STATE(); case 26: - if (lookahead == '*') ADVANCE(170); - if (lookahead == '#' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); - if (lookahead != 0) ADVANCE(171); + if (lookahead == '.') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); END_STATE(); case 27: - if (lookahead == '.') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if (lookahead == '.') ADVANCE(176); + if (lookahead == '?') ADVANCE(227); END_STATE(); case 28: - if (lookahead == '.') ADVANCE(174); - if (lookahead == '?') ADVANCE(224); + if (lookahead == '.') ADVANCE(176); + if (lookahead == '?') ADVANCE(226); END_STATE(); case 29: - if (lookahead == '.') ADVANCE(174); - if (lookahead == '?') ADVANCE(223); + if (lookahead == '.') ADVANCE(192); END_STATE(); case 30: - if (lookahead == '.') ADVANCE(190); - END_STATE(); - case 31: - if (lookahead == '.') ADVANCE(154); - if (lookahead == '/') ADVANCE(22); - if (lookahead == ':') ADVANCE(137); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(150); - if (lookahead == '\\') ADVANCE(82); - if (lookahead == '{') ADVANCE(131); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(31); + if (lookahead == '.') ADVANCE(153); + if (lookahead == '/') ADVANCE(21); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '=') ADVANCE(137); + if (lookahead == '>') ADVANCE(149); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == '{') ADVANCE(130); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(30); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); - if (lookahead > '~') ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); + if (lookahead > '~') ADVANCE(278); + END_STATE(); + case 31: + if (lookahead == '/') ADVANCE(256); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(32); END_STATE(); case 32: - if (lookahead == '/') ADVANCE(253); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); + if (lookahead == '/') ADVANCE(20); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(32); END_STATE(); case 33: - if (lookahead == '/') ADVANCE(21); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); + if (lookahead == ';') ADVANCE(143); END_STATE(); case 34: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); END_STATE(); case 35: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34); END_STATE(); case 36: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); END_STATE(); case 37: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); END_STATE(); case 38: - if (lookahead == ';') ADVANCE(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(33); END_STATE(); case 39: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(34); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); END_STATE(); case 40: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); END_STATE(); case 41: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); END_STATE(); case 42: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); END_STATE(); case 43: - if (lookahead == ';') ADVANCE(144); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); END_STATE(); case 44: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); END_STATE(); case 45: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); END_STATE(); case 46: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); END_STATE(); case 47: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); END_STATE(); case 48: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 49: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 50: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 51: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 52: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(51); END_STATE(); case 53: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(52); END_STATE(); case 54: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); END_STATE(); case 55: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); END_STATE(); case 56: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); END_STATE(); case 57: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); END_STATE(); case 58: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 59: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 60: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); END_STATE(); case 61: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); END_STATE(); case 62: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); case 63: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); END_STATE(); case 64: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 65: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); case 66: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65); END_STATE(); case 67: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 68: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67); END_STATE(); case 69: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 70: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69); END_STATE(); case 71: - if (lookahead == ';') ADVANCE(144); + if (lookahead == ';') ADVANCE(143); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); END_STATE(); case 72: - if (lookahead == ';') ADVANCE(144); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + if (lookahead == '=') ADVANCE(223); END_STATE(); case 73: - if (lookahead == '=') ADVANCE(220); + if (lookahead == '=') ADVANCE(221); END_STATE(); case 74: - if (lookahead == '=') ADVANCE(218); + if (lookahead == '\\') ADVANCE(80); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(279); END_STATE(); case 75: - if (lookahead == '\\') ADVANCE(81); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(276); + if (lookahead == '\\') ADVANCE(120); + if (lookahead == ']') ADVANCE(258); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(75); END_STATE(); case 76: - if (lookahead == '\\') ADVANCE(121); - if (lookahead == ']') ADVANCE(255); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(76); + if (lookahead == 'e') ADVANCE(78); END_STATE(); case 77: - if (lookahead == 'e') ADVANCE(79); + if (lookahead == 'g') ADVANCE(76); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(77); END_STATE(); case 78: - if (lookahead == 'g') ADVANCE(77); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(78); + if (lookahead == 't') ADVANCE(1); END_STATE(); case 79: - if (lookahead == 't') ADVANCE(1); + if (lookahead == 'u') ADVANCE(84); + if (lookahead == 'x') ADVANCE(110); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(249); + if (lookahead != 0) ADVANCE(245); END_STATE(); case 80: if (lookahead == 'u') ADVANCE(85); - if (lookahead == 'x') ADVANCE(111); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(246); - if (lookahead != 0) ADVANCE(242); END_STATE(); case 81: if (lookahead == 'u') ADVANCE(86); END_STATE(); case 82: if (lookahead == 'u') ADVANCE(87); + if (lookahead == 'x') ADVANCE(110); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(249); + if (lookahead != 0) ADVANCE(245); END_STATE(); case 83: - if (lookahead == 'u') ADVANCE(88); - if (lookahead == 'x') ADVANCE(111); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(246); - if (lookahead != 0) ADVANCE(242); + if (lookahead == '{') ADVANCE(255); END_STATE(); case 84: - if (lookahead == '{') ADVANCE(252); + if (lookahead == '{') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 85: - if (lookahead == '{') ADVANCE(105); + if (lookahead == '{') ADVANCE(108); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); @@ -5140,144 +5177,143 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 87: - if (lookahead == '{') ADVANCE(110); + if (lookahead == '{') ADVANCE(111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); END_STATE(); case 88: - if (lookahead == '{') ADVANCE(112); + if (lookahead == '}') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(108); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); END_STATE(); case 89: - if (lookahead == '}') ADVANCE(275); + if (lookahead == '}') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); END_STATE(); case 90: - if (lookahead == '}') ADVANCE(276); + if (lookahead == '}') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); END_STATE(); case 91: - if (lookahead == '}') ADVANCE(242); + if (lookahead == '}') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 92: - if (lookahead == '}') ADVANCE(243); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); + if (lookahead == '+' || + lookahead == '-') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); END_STATE(); case 93: - if (lookahead == '+' || - lookahead == '-') ADVANCE(100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); END_STATE(); case 94: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + if (lookahead == '0' || + lookahead == '1') ADVANCE(264); END_STATE(); case 95: - if (lookahead == '0' || - lookahead == '1') ADVANCE(261); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(265); END_STATE(); case 96: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); END_STATE(); case 97: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); END_STATE(); case 98: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); END_STATE(); case 99: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); END_STATE(); case 100: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(278); END_STATE(); case 101: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(279); END_STATE(); case 102: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); END_STATE(); case 103: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(242); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(266); END_STATE(); case 104: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 105: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(246); END_STATE(); case 106: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 107: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); END_STATE(); case 108: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); END_STATE(); case 109: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); END_STATE(); case 110: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); END_STATE(); case 111: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); END_STATE(); case 112: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); END_STATE(); case 113: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); END_STATE(); case 114: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(100); END_STATE(); case 115: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); END_STATE(); case 116: if (('0' <= lookahead && lookahead <= '9') || @@ -5290,932 +5326,957 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); case 118: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(161); END_STATE(); case 119: if (lookahead != 0 && lookahead != '#' && + lookahead != '\'' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(163); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(167); END_STATE(); case 120: if (lookahead != 0 && - lookahead != '#' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(169); + lookahead != '\n') ADVANCE(75); END_STATE(); case 121: if (lookahead != 0 && - lookahead != '\n') ADVANCE(76); + lookahead != '\n') ADVANCE(258); END_STATE(); case 122: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(255); + if (eof) ADVANCE(125); + ADVANCE_MAP( + '!', 229, + '"', 158, + '#', 4, + '$', 276, + '%', 217, + '&', 203, + '\'', 159, + '(', 133, + ')', 135, + '*', 128, + '+', 211, + ',', 131, + '-', 213, + '.', 154, + '/', 215, + '0', 261, + ':', 136, + ';', 134, + '<', 146, + '=', 139, + '>', 150, + '?', 27, + '@', 280, + '[', 141, + '\\', 81, + ']', 142, + '^', 207, + '`', 254, + 's', 274, + '{', 130, + '|', 208, + '}', 132, + '~', 230, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(122); + if (lookahead > '@') ADVANCE(278); END_STATE(); case 123: - if (eof) ADVANCE(126); + if (eof) ADVANCE(125); ADVANCE_MAP( - '!', 226, - '"', 159, - '#', 4, - '$', 273, - '%', 214, - '&', 201, - '\'', 160, - '(', 134, - ')', 136, + '!', 229, + '"', 158, + '#', 74, + '%', 216, + '&', 205, + '\'', 159, + '(', 133, + ')', 135, '*', 129, - '+', 208, - ',', 132, - '-', 210, + '+', 210, + ',', 131, + '-', 212, '.', 155, - '/', 212, - '0', 258, - ':', 137, - ';', 135, - '<', 147, - '=', 140, + '/', 214, + '0', 261, + ':', 136, + ';', 134, + '<', 148, + '=', 138, '>', 151, '?', 28, - '@', 277, - '[', 142, - '\\', 82, - ']', 143, - '^', 204, - '`', 251, - 's', 271, - '{', 131, - '|', 205, - '}', 133, - '~', 227, + '@', 280, + '[', 141, + '\\', 81, + ']', 142, + '^', 206, + '`', 254, + '{', 130, + '|', 209, + '}', 132, + '~', 230, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(123); - if (lookahead > '@') ADVANCE(275); + if (lookahead > '#') ADVANCE(278); END_STATE(); case 124: - if (eof) ADVANCE(126); - ADVANCE_MAP( - '!', 226, - '"', 159, - '#', 75, - '%', 213, - '&', 202, - '\'', 160, - '(', 134, - ')', 136, - '*', 130, - '+', 207, - ',', 132, - '-', 209, - '.', 156, - '/', 211, - '0', 258, - ':', 137, - ';', 135, - '<', 149, - '=', 139, - '>', 152, - '?', 29, - '@', 277, - '[', 142, - '\\', 82, - ']', 143, - '^', 203, - '`', 251, - '{', 131, - '|', 206, - '}', 133, - '~', 227, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(124); - if (lookahead > '#') ADVANCE(275); - END_STATE(); - case 125: - if (eof) ADVANCE(126); + if (eof) ADVANCE(125); ADVANCE_MAP( - '!', 225, - '"', 159, + '!', 228, + '"', 158, '#', 4, - '\'', 160, - '(', 134, - ')', 136, - '*', 128, - '+', 207, - ',', 132, - '-', 209, - '.', 27, - '/', 211, - '0', 258, - ':', 137, - ';', 135, - '<', 145, - '=', 141, - '>', 150, - '@', 277, - '[', 142, - '\\', 82, - ']', 143, - '`', 251, - '{', 131, - '}', 133, - '~', 227, + '\'', 159, + '(', 133, + ')', 135, + '*', 127, + '+', 210, + ',', 131, + '-', 212, + '.', 26, + '/', 214, + '0', 261, + ':', 136, + ';', 134, + '<', 144, + '=', 140, + '>', 149, + '@', 280, + '[', 141, + '\\', 81, + ']', 142, + '`', 254, + '{', 130, + '}', 132, + '~', 230, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(125); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(124); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(275); + (lookahead < '{' || '~' < lookahead)) ADVANCE(278); END_STATE(); - case 126: + case 125: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 127: + case 126: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(127); + lookahead != '\n') ADVANCE(126); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 128: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(219); + if (lookahead == '=') ADVANCE(179); END_STATE(); case 129: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(216); - if (lookahead == '=') ADVANCE(177); + if (lookahead == '*') ADVANCE(218); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 138: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(221); END_STATE(); case 139: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(218); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(175); END_STATE(); case 140: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(173); + if (lookahead == '>') ADVANCE(175); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(sym_html_character_reference); END_STATE(); case 144: - ACCEPT_TOKEN(sym_html_character_reference); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 145: ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(156); END_STATE(); case 146: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(157); + if (lookahead == '/') ADVANCE(156); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(220); END_STATE(); case 147: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(157); - if (lookahead == '<') ADVANCE(200); - if (lookahead == '=') ADVANCE(217); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(220); END_STATE(); case 148: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(200); - if (lookahead == '=') ADVANCE(217); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(220); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(199); - if (lookahead == '=') ADVANCE(217); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 150: ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(197); END_STATE(); case 151: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(195); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(198); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(196); - END_STATE(); - case 153: ACCEPT_TOKEN(sym_jsx_identifier); if (lookahead == '$' || lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 154: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); END_STATE(); case 155: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_LT_SLASH); + ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_SLASH_GT); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(118); + if (lookahead == '*') ADVANCE(164); + if (lookahead == '/') ADVANCE(165); + if (lookahead != 0 && + lookahead != '"') ADVANCE(161); END_STATE(); case 161: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(14); - if (lookahead == '/') ADVANCE(162); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(161); + if (lookahead == '&') ADVANCE(118); if (lookahead != 0 && - lookahead != '"') ADVANCE(163); + lookahead != '"') ADVANCE(161); END_STATE(); case 162: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(119); - if (lookahead == '*') ADVANCE(165); - if (lookahead == '/') ADVANCE(166); + if (lookahead == '&') ADVANCE(13); + if (lookahead == '/') ADVANCE(160); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(162); if (lookahead != 0 && - lookahead != '"') ADVANCE(163); + lookahead != '"') ADVANCE(161); END_STATE(); case 163: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(119); + if (lookahead == '&') ADVANCE(24); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '/') ADVANCE(161); if (lookahead != 0 && - lookahead != '"') ADVANCE(163); + lookahead != '"') ADVANCE(164); END_STATE(); case 164: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(25); - if (lookahead == '*') ADVANCE(164); - if (lookahead == '/') ADVANCE(163); + if (lookahead == '&') ADVANCE(24); + if (lookahead == '*') ADVANCE(163); if (lookahead != 0 && - lookahead != '"') ADVANCE(165); + lookahead != '"') ADVANCE(164); END_STATE(); case 165: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(25); - if (lookahead == '*') ADVANCE(164); + if (lookahead == '&') ADVANCE(251); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(161); if (lookahead != 0 && lookahead != '"') ADVANCE(165); END_STATE(); case 166: - ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(248); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(163); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(119); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '/') ADVANCE(171); if (lookahead != 0 && - lookahead != '"') ADVANCE(166); + lookahead != '&' && + lookahead != '\'') ADVANCE(167); END_STATE(); case 167: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(15); - if (lookahead == '/') ADVANCE(168); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(167); + if (lookahead == '&') ADVANCE(119); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(169); + lookahead != '\'') ADVANCE(167); END_STATE(); case 168: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '*') ADVANCE(171); - if (lookahead == '/') ADVANCE(172); + if (lookahead == '&') ADVANCE(14); + if (lookahead == '/') ADVANCE(166); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(168); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(169); + lookahead != '\'') ADVANCE(167); END_STATE(); case 169: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(120); + if (lookahead == '&') ADVANCE(25); + if (lookahead == '*') ADVANCE(169); + if (lookahead == '/') ADVANCE(167); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(169); + lookahead != '\'') ADVANCE(170); END_STATE(); case 170: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(26); - if (lookahead == '*') ADVANCE(170); - if (lookahead == '/') ADVANCE(169); + if (lookahead == '&') ADVANCE(25); + if (lookahead == '*') ADVANCE(169); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(171); + lookahead != '\'') ADVANCE(170); END_STATE(); case 171: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(26); - if (lookahead == '*') ADVANCE(170); - if (lookahead != 0 && - lookahead != '&' && - lookahead != '\'') ADVANCE(171); - END_STATE(); - case 172: - ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(249); + if (lookahead == '&') ADVANCE(252); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(169); + lookahead == 0x2029) ADVANCE(167); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(172); + lookahead != '\'') ADVANCE(171); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '#') ADVANCE(93); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_AMP2); + if (lookahead == '#') ADVANCE(93); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#') ADVANCE(161); END_STATE(); case 174: - ACCEPT_TOKEN(sym_optional_chain); + ACCEPT_TOKEN(anon_sym_AMP2); + if (lookahead == '#') ADVANCE(93); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(167); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(sym_optional_chain); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(189); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(183); - if (lookahead == '>') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(185); + if (lookahead == '>') ADVANCE(200); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(199); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(186); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(192); - if (lookahead == '=') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(187); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_AMP3); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_AMP3); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '=') ADVANCE(183); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(182); - if (lookahead == '|') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_AMP3); + if (lookahead == '&') ADVANCE(193); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(228); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(182); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(228); - if (lookahead == '=') ADVANCE(175); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(184); + if (lookahead == '|') ADVANCE(196); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(229); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(195); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(229); - if (lookahead == '=') ADVANCE(176); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(231); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(250); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(231); + if (lookahead == '=') ADVANCE(177); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(250); - if (lookahead == '=') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(232); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '=') ADVANCE(178); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(179); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(253); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '=') ADVANCE(180); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(181); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(188); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(221); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(222); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(224); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(191); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 229: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(223); END_STATE(); case 230: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 232: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 233: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(232); - if (lookahead == '/') ADVANCE(234); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '/') ADVANCE(237); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(238); END_STATE(); - case 231: + case 234: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(231); - if (lookahead == '/') ADVANCE(235); + if (lookahead == '*') ADVANCE(234); + if (lookahead == '/') ADVANCE(238); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(232); + lookahead != '\\') ADVANCE(235); END_STATE(); - case 232: + case 235: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(231); + if (lookahead == '*') ADVANCE(234); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(232); + lookahead != '\\') ADVANCE(235); END_STATE(); - case 233: + case 236: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(230); + if (lookahead == '/') ADVANCE(233); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(233); + lookahead != '\r') ADVANCE(236); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(238); END_STATE(); - case 234: + case 237: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(235); + lookahead == 0x2029) ADVANCE(238); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(234); + lookahead != '\\') ADVANCE(237); END_STATE(); - case 235: + case 238: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(235); + lookahead != '\\') ADVANCE(238); END_STATE(); - case 236: + case 239: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(238); - if (lookahead == '/') ADVANCE(240); + if (lookahead == '*') ADVANCE(241); + if (lookahead == '/') ADVANCE(243); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(241); + lookahead != '\\') ADVANCE(244); END_STATE(); - case 237: + case 240: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(237); - if (lookahead == '/') ADVANCE(241); + if (lookahead == '*') ADVANCE(240); + if (lookahead == '/') ADVANCE(244); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(238); + lookahead != '\\') ADVANCE(241); END_STATE(); - case 238: + case 241: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(237); + if (lookahead == '*') ADVANCE(240); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(238); + lookahead != '\\') ADVANCE(241); END_STATE(); - case 239: + case 242: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(236); + if (lookahead == '/') ADVANCE(239); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(239); + lookahead != '\r') ADVANCE(242); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(241); + lookahead != '\\') ADVANCE(244); END_STATE(); - case 240: + case 243: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(241); + lookahead == 0x2029) ADVANCE(244); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(240); + lookahead != '\\') ADVANCE(243); END_STATE(); - case 241: + case 244: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(241); + lookahead != '\\') ADVANCE(244); END_STATE(); - case 242: + case 245: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 243: + case 246: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(82); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + if (lookahead == '\\') ADVANCE(81); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); END_STATE(); - case 244: + case 247: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(242); + lookahead == 0x2029) ADVANCE(245); END_STATE(); - case 245: + case 248: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(242); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(245); END_STATE(); - case 246: + case 249: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(245); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(248); END_STATE(); - case 247: + case 250: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 248: + case 251: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(163); - if (lookahead == '#' || + lookahead == 0x2029) ADVANCE(161); + if (lookahead == '"' || + lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); - if (lookahead != 0) ADVANCE(166); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); + if (lookahead != 0) ADVANCE(165); END_STATE(); - case 249: + case 252: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(169); + lookahead == 0x2029) ADVANCE(167); if (lookahead == '#' || + lookahead == '\'' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(250); - if (lookahead != 0) ADVANCE(172); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); + if (lookahead != 0) ADVANCE(171); END_STATE(); - case 250: + case 253: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != 0x2028 && - lookahead != 0x2029) ADVANCE(250); + lookahead != 0x2029) ADVANCE(253); END_STATE(); - case 251: + case 254: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 252: + case 255: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 253: + case 256: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 254: + case 257: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(33); - if (lookahead == '/') ADVANCE(21); - if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(122); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(254); - if (lookahead != 0) ADVANCE(255); + if (lookahead == '\n') SKIP(32); + if (lookahead == '/') ADVANCE(20); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(121); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(257); + if (lookahead != 0) ADVANCE(258); END_STATE(); - case 255: + case 258: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(122); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(121); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(255); + lookahead != '/') ADVANCE(258); END_STATE(); - case 256: + case 259: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(82); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(256); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + if (lookahead == '\\') ADVANCE(81); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(259); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); END_STATE(); - case 257: + case 260: ACCEPT_TOKEN(sym_number); END_STATE(); - case 258: + case 261: ACCEPT_TOKEN(sym_number); ADVANCE_MAP( - '.', 266, - '0', 260, - '_', 99, - 'n', 257, - 'B', 95, - 'b', 95, - 'E', 93, - 'e', 93, - 'O', 96, - 'o', 96, - 'X', 104, - 'x', 104, + '.', 269, + '0', 263, + '_', 98, + 'n', 260, + 'B', 94, + 'b', 94, + 'E', 92, + 'e', 92, + 'O', 95, + 'o', 95, + 'X', 103, + 'x', 103, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); END_STATE(); - case 259: + case 262: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(266); - if (lookahead == '_') ADVANCE(97); - if (lookahead == 'n') ADVANCE(257); + if (lookahead == '.') ADVANCE(269); + if (lookahead == '_') ADVANCE(96); + if (lookahead == 'n') ADVANCE(260); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + lookahead == 'e') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); END_STATE(); - case 260: + case 263: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(99); - if (lookahead == 'n') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(260); + if (lookahead == '_') ADVANCE(98); + if (lookahead == 'n') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); END_STATE(); - case 261: + case 264: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(95); - if (lookahead == 'n') ADVANCE(257); + if (lookahead == '_') ADVANCE(94); + if (lookahead == 'n') ADVANCE(260); if (lookahead == '0' || - lookahead == '1') ADVANCE(261); + lookahead == '1') ADVANCE(264); END_STATE(); - case 262: + case 265: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(96); - if (lookahead == 'n') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(262); + if (lookahead == '_') ADVANCE(95); + if (lookahead == 'n') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(265); END_STATE(); - case 263: + case 266: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(104); - if (lookahead == 'n') ADVANCE(257); + if (lookahead == '_') ADVANCE(103); + if (lookahead == 'n') ADVANCE(260); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(266); END_STATE(); - case 264: + case 267: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(98); + if (lookahead == '_') ADVANCE(97); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + lookahead == 'e') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); END_STATE(); - case 265: + case 268: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); + if (lookahead == '_') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); END_STATE(); - case 266: + case 269: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + lookahead == 'e') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); END_STATE(); - case 267: + case 270: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(153); - if (lookahead == '\\') ADVANCE(82); + if (lookahead == '-') ADVANCE(152); + if (lookahead == '\\') ADVANCE(81); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(267); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); - END_STATE(); - case 268: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(82); - if (lookahead == 'a') ADVANCE(272); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); - END_STATE(); - case 269: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(82); - if (lookahead == 'c') ADVANCE(274); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); - END_STATE(); - case 270: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(82); - if (lookahead == 'i') ADVANCE(269); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); END_STATE(); case 271: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(82); - if (lookahead == 't') ADVANCE(268); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == 'a') ADVANCE(275); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); END_STATE(); case 272: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(82); - if (lookahead == 't') ADVANCE(270); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == 'c') ADVANCE(277); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); END_STATE(); case 273: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(82); - if (lookahead == '{') ADVANCE(252); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == 'i') ADVANCE(272); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); END_STATE(); case 274: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(82); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(78); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == 't') ADVANCE(271); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); END_STATE(); case 275: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(82); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(275); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == 't') ADVANCE(273); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); END_STATE(); case 276: - ACCEPT_TOKEN(sym_private_property_identifier); + ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(81); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(276); + if (lookahead == '{') ADVANCE(255); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(81); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(77); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); END_STATE(); case 278: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(81); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 279: + ACCEPT_TOKEN(sym_private_property_identifier); + if (lookahead == '\\') ADVANCE(80); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(279); + END_STATE(); + case 280: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 281: ACCEPT_TOKEN(aux_sym_method_definition_token1); - if (lookahead == '\n') ADVANCE(278); + if (lookahead == '\n') ADVANCE(281); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(1); END_STATE(); @@ -6886,7 +6947,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1] = {.lex_state = 124, .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}, @@ -6894,28 +6955,28 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [9] = {.lex_state = 124, .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}, + [11] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [12] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [13] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [14] = {.lex_state = 124, .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}, + [17] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [18] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [19] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [20] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [21] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [22] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [23] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [24] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [25] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [26] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [27] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [28] = {.lex_state = 124, .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}, + [30] = {.lex_state = 124, .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}, @@ -6925,38 +6986,38 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [40] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [41] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [42] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [43] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [44] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [45] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [46] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [47] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [48] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [49] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [50] = {.lex_state = 124, .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}, + [52] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [53] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [54] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [55] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [56] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [57] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [58] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [59] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [60] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [61] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [62] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [63] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [64] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [65] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [66] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [67] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [68] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [69] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [70] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [71] = {.lex_state = 124, .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}, @@ -6965,283 +7026,283 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [80] = {.lex_state = 123, .external_lex_state = 4, .reserved_word_set_id = 2}, + [81] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 2}, + [82] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 2}, + [83] = {.lex_state = 123, .external_lex_state = 4, .reserved_word_set_id = 2}, + [84] = {.lex_state = 123, .external_lex_state = 4, .reserved_word_set_id = 2}, + [85] = {.lex_state = 123, .external_lex_state = 4, .reserved_word_set_id = 2}, + [86] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [87] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [88] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [89] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [90] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [91] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [92] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [93] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [94] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [95] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [96] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [97] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [98] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [99] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [100] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [101] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [102] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [103] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [104] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [105] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [106] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [107] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [108] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [109] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [110] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [111] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [112] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [113] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 1}, + [114] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [115] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [116] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [117] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [118] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [119] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [120] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [121] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [122] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [123] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [124] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [125] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [126] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [127] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [128] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [129] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [130] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [131] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [132] = {.lex_state = 124, .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}, + [135] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [136] = {.lex_state = 124, .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}, + [138] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [139] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [140] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [141] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [142] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 7}, + [143] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [144] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [145] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [146] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [147] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [148] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [149] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [150] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [151] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [152] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [153] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [154] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [155] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [156] = {.lex_state = 124, .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}, + [158] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [159] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [160] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [161] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [162] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [163] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [164] = {.lex_state = 124, .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}, + [167] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [168] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [169] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [170] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [171] = {.lex_state = 124, .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}, + [173] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [174] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [175] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [176] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [177] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [178] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [179] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [180] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [181] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [182] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [183] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [184] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [185] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [186] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [187] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [188] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [189] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [190] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [191] = {.lex_state = 124, .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}, + [193] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [194] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [195] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [196] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [197] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [198] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [199] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [200] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [201] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [202] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [203] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [204] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [205] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [206] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [207] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [208] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [209] = {.lex_state = 124, .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}, + [211] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [212] = {.lex_state = 124, .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}, + [214] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [215] = {.lex_state = 124, .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}, + [217] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [218] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [219] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [220] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [221] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [222] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [223] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [224] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [225] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [226] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [227] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [228] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [229] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [230] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [231] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [232] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [233] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [234] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [235] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [236] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [237] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [238] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [239] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [240] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [241] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [242] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [243] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [244] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [245] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [246] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [247] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [248] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [249] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [250] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [251] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [252] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [253] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [254] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [255] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [256] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [257] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [258] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [259] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [260] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [261] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [262] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [263] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [264] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [265] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [266] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [267] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [268] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [269] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [270] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [271] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [272] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [273] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [274] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [275] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [276] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [277] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [278] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [279] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [280] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [281] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [282] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [283] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [284] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [285] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [286] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [287] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [288] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [289] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [290] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [291] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [292] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [293] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [294] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [295] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [296] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [297] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [298] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [299] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [300] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [301] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [302] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [303] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [304] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [305] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [306] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [307] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [308] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [309] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [310] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [311] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [312] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [313] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [314] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [315] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [316] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [317] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [318] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [319] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [320] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [321] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [322] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [323] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [324] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [325] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [326] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [327] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [328] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [329] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [330] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [331] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [332] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [333] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [334] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [335] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [336] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [337] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [338] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [339] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [340] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [341] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [342] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [343] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [344] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [345] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [346] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [347] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [348] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [349] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [350] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [351] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [352] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [353] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [354] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [355] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [356] = {.lex_state = 124, .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}, @@ -7254,125 +7315,125 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [369] = {.lex_state = 124, .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}, + [374] = {.lex_state = 124, .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}, + [381] = {.lex_state = 124, .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}, + [384] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 10}, + [385] = {.lex_state = 124, .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}, + [389] = {.lex_state = 124, .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}, + [391] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [392] = {.lex_state = 124, .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}, + [394] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [395] = {.lex_state = 124, .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}, + [398] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [399] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [400] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [401] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 11}, + [402] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [403] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [404] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [405] = {.lex_state = 124, .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}, + [407] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 11}, + [408] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [409] = {.lex_state = 124, .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}, + [411] = {.lex_state = 124, .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}, + [413] = {.lex_state = 124, .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}, + [415] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [416] = {.lex_state = 124, .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}, + [418] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [419] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [420] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [421] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [422] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [423] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [424] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [425] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [426] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [427] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [428] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [429] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [430] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [431] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [432] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [433] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [434] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [435] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [436] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [437] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [438] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [439] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [440] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [441] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [442] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [443] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [444] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [445] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [446] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [447] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [448] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [449] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [450] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [451] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [452] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [453] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [454] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [455] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [456] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [457] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [458] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [459] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [460] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [461] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [462] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [463] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [464] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [465] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [466] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [467] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [468] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [469] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [470] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [471] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [472] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [473] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [474] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [475] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [476] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [477] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [478] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [479] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [480] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [481] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [482] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [483] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [484] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [485] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [486] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [487] = {.lex_state = 124, .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}, @@ -7391,26 +7452,26 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [506] = {.lex_state = 124, .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}, + [508] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [509] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [510] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [511] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [512] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [513] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [514] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [515] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [516] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [517] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [518] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [519] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [520] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [521] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [522] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [523] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [524] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [525] = {.lex_state = 124, .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}, @@ -7466,475 +7527,475 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 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 = 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}, + [581] = {.lex_state = 123, .external_lex_state = 4}, + [582] = {.lex_state = 123, .external_lex_state = 3}, + [583] = {.lex_state = 123, .external_lex_state = 4}, + [584] = {.lex_state = 123, .external_lex_state = 3}, + [585] = {.lex_state = 123, .external_lex_state = 4}, + [586] = {.lex_state = 123, .external_lex_state = 3}, + [587] = {.lex_state = 123, .external_lex_state = 4}, + [588] = {.lex_state = 123, .external_lex_state = 4}, + [589] = {.lex_state = 123, .external_lex_state = 4}, + [590] = {.lex_state = 123, .external_lex_state = 4}, + [591] = {.lex_state = 123, .external_lex_state = 4}, + [592] = {.lex_state = 123, .external_lex_state = 4}, + [593] = {.lex_state = 123, .external_lex_state = 4}, + [594] = {.lex_state = 123, .external_lex_state = 4}, + [595] = {.lex_state = 123, .external_lex_state = 4}, + [596] = {.lex_state = 123, .external_lex_state = 4}, + [597] = {.lex_state = 123, .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 = 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}, - [611] = {.lex_state = 124, .external_lex_state = 4}, - [612] = {.lex_state = 124, .external_lex_state = 4}, - [613] = {.lex_state = 124, .external_lex_state = 4}, - [614] = {.lex_state = 124, .external_lex_state = 4}, - [615] = {.lex_state = 124, .external_lex_state = 4}, - [616] = {.lex_state = 124, .external_lex_state = 4}, - [617] = {.lex_state = 124, .external_lex_state = 4}, - [618] = {.lex_state = 124, .external_lex_state = 4}, - [619] = {.lex_state = 124, .external_lex_state = 4}, - [620] = {.lex_state = 124, .external_lex_state = 4}, - [621] = {.lex_state = 124, .external_lex_state = 4}, - [622] = {.lex_state = 124, .external_lex_state = 4}, - [623] = {.lex_state = 124, .external_lex_state = 4}, - [624] = {.lex_state = 124, .external_lex_state = 4}, - [625] = {.lex_state = 124, .external_lex_state = 4}, - [626] = {.lex_state = 124, .external_lex_state = 4}, - [627] = {.lex_state = 124, .external_lex_state = 4}, - [628] = {.lex_state = 124, .external_lex_state = 4}, - [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 = 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}, - [636] = {.lex_state = 124, .external_lex_state = 4}, - [637] = {.lex_state = 124, .external_lex_state = 4}, - [638] = {.lex_state = 124, .external_lex_state = 4}, - [639] = {.lex_state = 124, .external_lex_state = 4}, - [640] = {.lex_state = 124, .external_lex_state = 4}, - [641] = {.lex_state = 124, .external_lex_state = 4}, - [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 = 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}, - [649] = {.lex_state = 124, .external_lex_state = 4}, - [650] = {.lex_state = 124, .external_lex_state = 4}, - [651] = {.lex_state = 124, .external_lex_state = 4}, - [652] = {.lex_state = 124, .external_lex_state = 4}, - [653] = {.lex_state = 124, .external_lex_state = 4}, - [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 = 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}, - [661] = {.lex_state = 124, .external_lex_state = 4}, - [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 = 124, .external_lex_state = 4}, - [666] = {.lex_state = 124, .external_lex_state = 4}, - [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 = 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}, - [675] = {.lex_state = 124, .external_lex_state = 4}, - [676] = {.lex_state = 124, .external_lex_state = 4}, - [677] = {.lex_state = 124, .external_lex_state = 4}, - [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 = 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 = 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}, + [599] = {.lex_state = 123, .external_lex_state = 4}, + [600] = {.lex_state = 123, .external_lex_state = 4}, + [601] = {.lex_state = 123, .external_lex_state = 4}, + [602] = {.lex_state = 123, .external_lex_state = 4}, + [603] = {.lex_state = 123, .external_lex_state = 4}, + [604] = {.lex_state = 123, .external_lex_state = 4}, + [605] = {.lex_state = 123, .external_lex_state = 4}, + [606] = {.lex_state = 123, .external_lex_state = 4}, + [607] = {.lex_state = 123, .external_lex_state = 4}, + [608] = {.lex_state = 123, .external_lex_state = 4}, + [609] = {.lex_state = 123, .external_lex_state = 4}, + [610] = {.lex_state = 123, .external_lex_state = 4}, + [611] = {.lex_state = 123, .external_lex_state = 4}, + [612] = {.lex_state = 123, .external_lex_state = 4}, + [613] = {.lex_state = 123, .external_lex_state = 4}, + [614] = {.lex_state = 123, .external_lex_state = 4}, + [615] = {.lex_state = 123, .external_lex_state = 4}, + [616] = {.lex_state = 123, .external_lex_state = 4}, + [617] = {.lex_state = 123, .external_lex_state = 4}, + [618] = {.lex_state = 123, .external_lex_state = 4}, + [619] = {.lex_state = 123, .external_lex_state = 4}, + [620] = {.lex_state = 123, .external_lex_state = 4}, + [621] = {.lex_state = 123, .external_lex_state = 4}, + [622] = {.lex_state = 123, .external_lex_state = 4}, + [623] = {.lex_state = 123, .external_lex_state = 4}, + [624] = {.lex_state = 123, .external_lex_state = 4}, + [625] = {.lex_state = 123, .external_lex_state = 4}, + [626] = {.lex_state = 123, .external_lex_state = 4}, + [627] = {.lex_state = 123, .external_lex_state = 4}, + [628] = {.lex_state = 123, .external_lex_state = 4}, + [629] = {.lex_state = 123, .external_lex_state = 4}, + [630] = {.lex_state = 123, .external_lex_state = 4}, + [631] = {.lex_state = 123, .external_lex_state = 4}, + [632] = {.lex_state = 123, .external_lex_state = 4}, + [633] = {.lex_state = 123, .external_lex_state = 4}, + [634] = {.lex_state = 123, .external_lex_state = 4}, + [635] = {.lex_state = 123, .external_lex_state = 4}, + [636] = {.lex_state = 123, .external_lex_state = 4}, + [637] = {.lex_state = 123, .external_lex_state = 4}, + [638] = {.lex_state = 123, .external_lex_state = 4}, + [639] = {.lex_state = 123, .external_lex_state = 4}, + [640] = {.lex_state = 123, .external_lex_state = 4}, + [641] = {.lex_state = 123, .external_lex_state = 4}, + [642] = {.lex_state = 123, .external_lex_state = 4}, + [643] = {.lex_state = 123, .external_lex_state = 4}, + [644] = {.lex_state = 123, .external_lex_state = 4}, + [645] = {.lex_state = 123, .external_lex_state = 4}, + [646] = {.lex_state = 123, .external_lex_state = 4}, + [647] = {.lex_state = 123, .external_lex_state = 4}, + [648] = {.lex_state = 123, .external_lex_state = 4}, + [649] = {.lex_state = 123, .external_lex_state = 4}, + [650] = {.lex_state = 123, .external_lex_state = 4}, + [651] = {.lex_state = 123, .external_lex_state = 4}, + [652] = {.lex_state = 123, .external_lex_state = 4}, + [653] = {.lex_state = 123, .external_lex_state = 4}, + [654] = {.lex_state = 123, .external_lex_state = 4}, + [655] = {.lex_state = 123, .external_lex_state = 4}, + [656] = {.lex_state = 123, .external_lex_state = 4}, + [657] = {.lex_state = 123, .external_lex_state = 3}, + [658] = {.lex_state = 123, .external_lex_state = 4}, + [659] = {.lex_state = 123, .external_lex_state = 4}, + [660] = {.lex_state = 123, .external_lex_state = 4}, + [661] = {.lex_state = 123, .external_lex_state = 4}, + [662] = {.lex_state = 123, .external_lex_state = 4}, + [663] = {.lex_state = 123, .external_lex_state = 4}, + [664] = {.lex_state = 123, .external_lex_state = 4}, + [665] = {.lex_state = 123, .external_lex_state = 4}, + [666] = {.lex_state = 123, .external_lex_state = 4}, + [667] = {.lex_state = 123, .external_lex_state = 4}, + [668] = {.lex_state = 123, .external_lex_state = 4}, + [669] = {.lex_state = 123, .external_lex_state = 4}, + [670] = {.lex_state = 123, .external_lex_state = 4}, + [671] = {.lex_state = 123, .external_lex_state = 4}, + [672] = {.lex_state = 123, .external_lex_state = 4}, + [673] = {.lex_state = 123, .external_lex_state = 4}, + [674] = {.lex_state = 123, .external_lex_state = 4}, + [675] = {.lex_state = 123, .external_lex_state = 4}, + [676] = {.lex_state = 123, .external_lex_state = 4}, + [677] = {.lex_state = 123, .external_lex_state = 4}, + [678] = {.lex_state = 123, .external_lex_state = 4}, + [679] = {.lex_state = 123, .external_lex_state = 4}, + [680] = {.lex_state = 123, .external_lex_state = 4}, + [681] = {.lex_state = 123, .external_lex_state = 3}, + [682] = {.lex_state = 123, .external_lex_state = 3}, + [683] = {.lex_state = 123, .external_lex_state = 3}, + [684] = {.lex_state = 123, .external_lex_state = 3}, + [685] = {.lex_state = 123, .external_lex_state = 3}, + [686] = {.lex_state = 123, .external_lex_state = 3}, + [687] = {.lex_state = 123, .external_lex_state = 3}, + [688] = {.lex_state = 123, .external_lex_state = 3}, + [689] = {.lex_state = 123, .external_lex_state = 3}, + [690] = {.lex_state = 123, .external_lex_state = 4}, + [691] = {.lex_state = 123, .external_lex_state = 3}, + [692] = {.lex_state = 123, .external_lex_state = 3}, + [693] = {.lex_state = 123, .external_lex_state = 3}, + [694] = {.lex_state = 123, .external_lex_state = 3}, + [695] = {.lex_state = 123, .external_lex_state = 3}, + [696] = {.lex_state = 123, .external_lex_state = 3}, + [697] = {.lex_state = 123, .external_lex_state = 3}, + [698] = {.lex_state = 123, .external_lex_state = 3}, + [699] = {.lex_state = 123, .external_lex_state = 3}, + [700] = {.lex_state = 123, .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 = 3}, - [733] = {.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 = 3}, - [737] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 3}, - [744] = {.lex_state = 124, .external_lex_state = 3}, - [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}, - [753] = {.lex_state = 124, .external_lex_state = 3}, - [754] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 3}, - [759] = {.lex_state = 124, .external_lex_state = 3}, - [760] = {.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 = 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}, - [769] = {.lex_state = 124, .external_lex_state = 3}, - [770] = {.lex_state = 124, .external_lex_state = 3}, - [771] = {.lex_state = 124, .external_lex_state = 3}, - [772] = {.lex_state = 124, .external_lex_state = 3}, - [773] = {.lex_state = 124, .external_lex_state = 3}, - [774] = {.lex_state = 124, .external_lex_state = 3}, - [775] = {.lex_state = 124, .external_lex_state = 3}, - [776] = {.lex_state = 124, .external_lex_state = 3}, - [777] = {.lex_state = 124, .external_lex_state = 3}, - [778] = {.lex_state = 124, .external_lex_state = 3}, - [779] = {.lex_state = 124, .external_lex_state = 3}, - [780] = {.lex_state = 124, .external_lex_state = 3}, - [781] = {.lex_state = 124, .external_lex_state = 3}, - [782] = {.lex_state = 124, .external_lex_state = 3}, - [783] = {.lex_state = 124, .external_lex_state = 3}, - [784] = {.lex_state = 124, .external_lex_state = 3}, - [785] = {.lex_state = 124, .external_lex_state = 3}, - [786] = {.lex_state = 124, .external_lex_state = 3}, - [787] = {.lex_state = 124, .external_lex_state = 3}, - [788] = {.lex_state = 124, .external_lex_state = 3}, - [789] = {.lex_state = 124, .external_lex_state = 3}, - [790] = {.lex_state = 124, .external_lex_state = 3}, - [791] = {.lex_state = 124, .external_lex_state = 3}, - [792] = {.lex_state = 124, .external_lex_state = 3}, - [793] = {.lex_state = 124, .external_lex_state = 3}, - [794] = {.lex_state = 124, .external_lex_state = 3}, + [702] = {.lex_state = 123, .external_lex_state = 3}, + [703] = {.lex_state = 123, .external_lex_state = 3}, + [704] = {.lex_state = 123, .external_lex_state = 3}, + [705] = {.lex_state = 123, .external_lex_state = 3}, + [706] = {.lex_state = 123, .external_lex_state = 3}, + [707] = {.lex_state = 123, .external_lex_state = 3}, + [708] = {.lex_state = 123, .external_lex_state = 3}, + [709] = {.lex_state = 123, .external_lex_state = 3}, + [710] = {.lex_state = 123, .external_lex_state = 3}, + [711] = {.lex_state = 123, .external_lex_state = 3}, + [712] = {.lex_state = 123, .external_lex_state = 3}, + [713] = {.lex_state = 123, .external_lex_state = 3}, + [714] = {.lex_state = 123, .external_lex_state = 3}, + [715] = {.lex_state = 123, .external_lex_state = 3}, + [716] = {.lex_state = 123, .external_lex_state = 3}, + [717] = {.lex_state = 123, .external_lex_state = 3}, + [718] = {.lex_state = 123, .external_lex_state = 3}, + [719] = {.lex_state = 123, .external_lex_state = 3}, + [720] = {.lex_state = 123, .external_lex_state = 3}, + [721] = {.lex_state = 123, .external_lex_state = 3}, + [722] = {.lex_state = 123, .external_lex_state = 3}, + [723] = {.lex_state = 123, .external_lex_state = 3}, + [724] = {.lex_state = 123, .external_lex_state = 3}, + [725] = {.lex_state = 123, .external_lex_state = 3}, + [726] = {.lex_state = 123, .external_lex_state = 3}, + [727] = {.lex_state = 123, .external_lex_state = 3}, + [728] = {.lex_state = 123, .external_lex_state = 3}, + [729] = {.lex_state = 123, .external_lex_state = 3}, + [730] = {.lex_state = 123, .external_lex_state = 4}, + [731] = {.lex_state = 123, .external_lex_state = 4}, + [732] = {.lex_state = 123, .external_lex_state = 3}, + [733] = {.lex_state = 123, .external_lex_state = 4}, + [734] = {.lex_state = 123, .external_lex_state = 3}, + [735] = {.lex_state = 123, .external_lex_state = 3}, + [736] = {.lex_state = 123, .external_lex_state = 3}, + [737] = {.lex_state = 123, .external_lex_state = 3}, + [738] = {.lex_state = 123, .external_lex_state = 3}, + [739] = {.lex_state = 123, .external_lex_state = 3}, + [740] = {.lex_state = 123, .external_lex_state = 3}, + [741] = {.lex_state = 123, .external_lex_state = 3}, + [742] = {.lex_state = 123, .external_lex_state = 3}, + [743] = {.lex_state = 123, .external_lex_state = 3}, + [744] = {.lex_state = 123, .external_lex_state = 3}, + [745] = {.lex_state = 123, .external_lex_state = 3}, + [746] = {.lex_state = 123, .external_lex_state = 3}, + [747] = {.lex_state = 123, .external_lex_state = 3}, + [748] = {.lex_state = 123, .external_lex_state = 3}, + [749] = {.lex_state = 123, .external_lex_state = 3}, + [750] = {.lex_state = 123, .external_lex_state = 3}, + [751] = {.lex_state = 123, .external_lex_state = 3}, + [752] = {.lex_state = 123, .external_lex_state = 3}, + [753] = {.lex_state = 123, .external_lex_state = 3}, + [754] = {.lex_state = 123, .external_lex_state = 3}, + [755] = {.lex_state = 123, .external_lex_state = 3}, + [756] = {.lex_state = 123, .external_lex_state = 3}, + [757] = {.lex_state = 123, .external_lex_state = 3}, + [758] = {.lex_state = 123, .external_lex_state = 3}, + [759] = {.lex_state = 123, .external_lex_state = 3}, + [760] = {.lex_state = 123, .external_lex_state = 3}, + [761] = {.lex_state = 123, .external_lex_state = 4}, + [762] = {.lex_state = 123, .external_lex_state = 3}, + [763] = {.lex_state = 123, .external_lex_state = 3}, + [764] = {.lex_state = 123, .external_lex_state = 3}, + [765] = {.lex_state = 123, .external_lex_state = 4}, + [766] = {.lex_state = 123, .external_lex_state = 3}, + [767] = {.lex_state = 123, .external_lex_state = 3}, + [768] = {.lex_state = 123, .external_lex_state = 3}, + [769] = {.lex_state = 123, .external_lex_state = 3}, + [770] = {.lex_state = 123, .external_lex_state = 3}, + [771] = {.lex_state = 123, .external_lex_state = 3}, + [772] = {.lex_state = 123, .external_lex_state = 3}, + [773] = {.lex_state = 123, .external_lex_state = 3}, + [774] = {.lex_state = 123, .external_lex_state = 3}, + [775] = {.lex_state = 123, .external_lex_state = 3}, + [776] = {.lex_state = 123, .external_lex_state = 3}, + [777] = {.lex_state = 123, .external_lex_state = 3}, + [778] = {.lex_state = 123, .external_lex_state = 3}, + [779] = {.lex_state = 123, .external_lex_state = 3}, + [780] = {.lex_state = 123, .external_lex_state = 3}, + [781] = {.lex_state = 123, .external_lex_state = 3}, + [782] = {.lex_state = 123, .external_lex_state = 3}, + [783] = {.lex_state = 123, .external_lex_state = 3}, + [784] = {.lex_state = 123, .external_lex_state = 3}, + [785] = {.lex_state = 123, .external_lex_state = 3}, + [786] = {.lex_state = 123, .external_lex_state = 3}, + [787] = {.lex_state = 123, .external_lex_state = 3}, + [788] = {.lex_state = 123, .external_lex_state = 3}, + [789] = {.lex_state = 123, .external_lex_state = 3}, + [790] = {.lex_state = 123, .external_lex_state = 3}, + [791] = {.lex_state = 123, .external_lex_state = 3}, + [792] = {.lex_state = 123, .external_lex_state = 3}, + [793] = {.lex_state = 123, .external_lex_state = 3}, + [794] = {.lex_state = 123, .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}, - [799] = {.lex_state = 124, .external_lex_state = 3}, - [800] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 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}, - [808] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 4}, - [813] = {.lex_state = 124, .external_lex_state = 3}, - [814] = {.lex_state = 124, .external_lex_state = 3}, - [815] = {.lex_state = 124, .external_lex_state = 3}, - [816] = {.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 = 4}, - [820] = {.lex_state = 124, .external_lex_state = 4}, - [821] = {.lex_state = 124, .external_lex_state = 3}, - [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 = 124, .external_lex_state = 3}, - [827] = {.lex_state = 124, .external_lex_state = 4}, + [796] = {.lex_state = 123, .external_lex_state = 3}, + [797] = {.lex_state = 123, .external_lex_state = 3}, + [798] = {.lex_state = 123, .external_lex_state = 3}, + [799] = {.lex_state = 123, .external_lex_state = 3}, + [800] = {.lex_state = 123, .external_lex_state = 3}, + [801] = {.lex_state = 123, .external_lex_state = 3}, + [802] = {.lex_state = 123, .external_lex_state = 3}, + [803] = {.lex_state = 123, .external_lex_state = 3}, + [804] = {.lex_state = 123, .external_lex_state = 4}, + [805] = {.lex_state = 123, .external_lex_state = 3}, + [806] = {.lex_state = 123, .external_lex_state = 3}, + [807] = {.lex_state = 123, .external_lex_state = 3}, + [808] = {.lex_state = 123, .external_lex_state = 3}, + [809] = {.lex_state = 123, .external_lex_state = 3}, + [810] = {.lex_state = 123, .external_lex_state = 3}, + [811] = {.lex_state = 123, .external_lex_state = 3}, + [812] = {.lex_state = 123, .external_lex_state = 4}, + [813] = {.lex_state = 123, .external_lex_state = 3}, + [814] = {.lex_state = 123, .external_lex_state = 3}, + [815] = {.lex_state = 123, .external_lex_state = 3}, + [816] = {.lex_state = 123, .external_lex_state = 3}, + [817] = {.lex_state = 123, .external_lex_state = 4}, + [818] = {.lex_state = 123, .external_lex_state = 3}, + [819] = {.lex_state = 123, .external_lex_state = 4}, + [820] = {.lex_state = 123, .external_lex_state = 4}, + [821] = {.lex_state = 123, .external_lex_state = 3}, + [822] = {.lex_state = 123, .external_lex_state = 3}, + [823] = {.lex_state = 123, .external_lex_state = 3}, + [824] = {.lex_state = 123, .external_lex_state = 4}, + [825] = {.lex_state = 123, .external_lex_state = 4}, + [826] = {.lex_state = 123, .external_lex_state = 3}, + [827] = {.lex_state = 123, .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 = 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 = 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 = 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}, + [829] = {.lex_state = 123, .external_lex_state = 4}, + [830] = {.lex_state = 123, .external_lex_state = 4}, + [831] = {.lex_state = 123, .external_lex_state = 4}, + [832] = {.lex_state = 123, .external_lex_state = 4}, + [833] = {.lex_state = 123, .external_lex_state = 4}, + [834] = {.lex_state = 123, .external_lex_state = 4}, + [835] = {.lex_state = 123, .external_lex_state = 4}, + [836] = {.lex_state = 123, .external_lex_state = 4}, + [837] = {.lex_state = 123, .external_lex_state = 4}, + [838] = {.lex_state = 123, .external_lex_state = 4}, + [839] = {.lex_state = 123, .external_lex_state = 4}, + [840] = {.lex_state = 123, .external_lex_state = 4}, + [841] = {.lex_state = 123, .external_lex_state = 4}, + [842] = {.lex_state = 123, .external_lex_state = 4}, + [843] = {.lex_state = 123, .external_lex_state = 4}, + [844] = {.lex_state = 123, .external_lex_state = 4}, + [845] = {.lex_state = 123, .external_lex_state = 4}, + [846] = {.lex_state = 123, .external_lex_state = 4}, + [847] = {.lex_state = 123, .external_lex_state = 4}, + [848] = {.lex_state = 123, .external_lex_state = 3}, + [849] = {.lex_state = 123, .external_lex_state = 4}, + [850] = {.lex_state = 123, .external_lex_state = 4}, + [851] = {.lex_state = 123, .external_lex_state = 4}, + [852] = {.lex_state = 123, .external_lex_state = 4}, + [853] = {.lex_state = 123, .external_lex_state = 4}, + [854] = {.lex_state = 123, .external_lex_state = 4}, + [855] = {.lex_state = 123, .external_lex_state = 3}, + [856] = {.lex_state = 123, .external_lex_state = 4}, + [857] = {.lex_state = 123, .external_lex_state = 4}, + [858] = {.lex_state = 123, .external_lex_state = 4}, + [859] = {.lex_state = 123, .external_lex_state = 4}, + [860] = {.lex_state = 123, .external_lex_state = 4}, + [861] = {.lex_state = 123, .external_lex_state = 4}, + [862] = {.lex_state = 123, .external_lex_state = 4}, + [863] = {.lex_state = 123, .external_lex_state = 4}, + [864] = {.lex_state = 5, .external_lex_state = 2}, + [865] = {.lex_state = 123, .external_lex_state = 4}, + [866] = {.lex_state = 123, .external_lex_state = 4}, + [867] = {.lex_state = 5, .external_lex_state = 2}, + [868] = {.lex_state = 123, .external_lex_state = 4}, + [869] = {.lex_state = 5, .external_lex_state = 2}, [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}, + [871] = {.lex_state = 123, .external_lex_state = 4}, + [872] = {.lex_state = 123, .external_lex_state = 4}, + [873] = {.lex_state = 123, .external_lex_state = 4}, + [874] = {.lex_state = 123, .external_lex_state = 4}, + [875] = {.lex_state = 123, .external_lex_state = 4}, + [876] = {.lex_state = 123, .external_lex_state = 4}, + [877] = {.lex_state = 123, .external_lex_state = 4}, + [878] = {.lex_state = 123, .external_lex_state = 4}, + [879] = {.lex_state = 123, .external_lex_state = 4}, + [880] = {.lex_state = 123, .external_lex_state = 4}, + [881] = {.lex_state = 123, .external_lex_state = 4}, + [882] = {.lex_state = 123, .external_lex_state = 4}, + [883] = {.lex_state = 123, .external_lex_state = 4}, + [884] = {.lex_state = 123, .external_lex_state = 4}, + [885] = {.lex_state = 123, .external_lex_state = 4}, + [886] = {.lex_state = 5, .external_lex_state = 2}, + [887] = {.lex_state = 123, .external_lex_state = 4}, + [888] = {.lex_state = 123, .external_lex_state = 4}, + [889] = {.lex_state = 123, .external_lex_state = 4}, + [890] = {.lex_state = 7, .external_lex_state = 4}, + [891] = {.lex_state = 123, .external_lex_state = 3}, + [892] = {.lex_state = 123, .external_lex_state = 4}, + [893] = {.lex_state = 123, .external_lex_state = 4}, + [894] = {.lex_state = 123, .external_lex_state = 4}, + [895] = {.lex_state = 123, .external_lex_state = 4}, + [896] = {.lex_state = 123, .external_lex_state = 4}, + [897] = {.lex_state = 123, .external_lex_state = 4}, + [898] = {.lex_state = 123, .external_lex_state = 4}, + [899] = {.lex_state = 123, .external_lex_state = 4}, + [900] = {.lex_state = 123, .external_lex_state = 4}, + [901] = {.lex_state = 123, .external_lex_state = 4}, + [902] = {.lex_state = 123, .external_lex_state = 4}, + [903] = {.lex_state = 123, .external_lex_state = 4}, + [904] = {.lex_state = 123, .external_lex_state = 4}, + [905] = {.lex_state = 123, .external_lex_state = 4}, + [906] = {.lex_state = 123, .external_lex_state = 4}, + [907] = {.lex_state = 123, .external_lex_state = 4}, + [908] = {.lex_state = 123, .external_lex_state = 4}, + [909] = {.lex_state = 123, .external_lex_state = 4}, + [910] = {.lex_state = 123, .external_lex_state = 4}, + [911] = {.lex_state = 123, .external_lex_state = 4}, + [912] = {.lex_state = 123, .external_lex_state = 4}, + [913] = {.lex_state = 123, .external_lex_state = 4}, + [914] = {.lex_state = 123, .external_lex_state = 4}, + [915] = {.lex_state = 123, .external_lex_state = 3}, + [916] = {.lex_state = 123, .external_lex_state = 4}, + [917] = {.lex_state = 123, .external_lex_state = 4}, + [918] = {.lex_state = 123, .external_lex_state = 4}, + [919] = {.lex_state = 123, .external_lex_state = 4}, + [920] = {.lex_state = 123, .external_lex_state = 4}, + [921] = {.lex_state = 123, .external_lex_state = 4}, + [922] = {.lex_state = 123, .external_lex_state = 4}, + [923] = {.lex_state = 123, .external_lex_state = 4}, + [924] = {.lex_state = 123, .external_lex_state = 4}, + [925] = {.lex_state = 123, .external_lex_state = 4}, + [926] = {.lex_state = 123, .external_lex_state = 4}, + [927] = {.lex_state = 123, .external_lex_state = 4}, + [928] = {.lex_state = 123, .external_lex_state = 4}, + [929] = {.lex_state = 123, .external_lex_state = 4}, + [930] = {.lex_state = 123, .external_lex_state = 4}, + [931] = {.lex_state = 123, .external_lex_state = 4}, + [932] = {.lex_state = 123, .external_lex_state = 4}, + [933] = {.lex_state = 123, .external_lex_state = 4}, + [934] = {.lex_state = 123, .external_lex_state = 4}, + [935] = {.lex_state = 123, .external_lex_state = 4}, + [936] = {.lex_state = 123, .external_lex_state = 4}, + [937] = {.lex_state = 123, .external_lex_state = 4}, + [938] = {.lex_state = 123, .external_lex_state = 4}, + [939] = {.lex_state = 123, .external_lex_state = 4}, + [940] = {.lex_state = 123, .external_lex_state = 4}, + [941] = {.lex_state = 123, .external_lex_state = 4}, + [942] = {.lex_state = 123, .external_lex_state = 4}, + [943] = {.lex_state = 123, .external_lex_state = 4}, + [944] = {.lex_state = 123, .external_lex_state = 4}, + [945] = {.lex_state = 123, .external_lex_state = 4}, + [946] = {.lex_state = 123, .external_lex_state = 4}, + [947] = {.lex_state = 123, .external_lex_state = 4}, + [948] = {.lex_state = 123, .external_lex_state = 4}, + [949] = {.lex_state = 123, .external_lex_state = 4}, + [950] = {.lex_state = 123, .external_lex_state = 4}, + [951] = {.lex_state = 123, .external_lex_state = 4}, + [952] = {.lex_state = 123, .external_lex_state = 4}, + [953] = {.lex_state = 123, .external_lex_state = 4}, + [954] = {.lex_state = 123, .external_lex_state = 4}, + [955] = {.lex_state = 123, .external_lex_state = 4}, + [956] = {.lex_state = 123, .external_lex_state = 4}, + [957] = {.lex_state = 123, .external_lex_state = 4}, + [958] = {.lex_state = 123, .external_lex_state = 4}, + [959] = {.lex_state = 123, .external_lex_state = 4}, + [960] = {.lex_state = 123, .external_lex_state = 4}, + [961] = {.lex_state = 123, .external_lex_state = 4}, + [962] = {.lex_state = 123, .external_lex_state = 4}, + [963] = {.lex_state = 123, .external_lex_state = 4}, + [964] = {.lex_state = 123, .external_lex_state = 4}, + [965] = {.lex_state = 123, .external_lex_state = 4}, + [966] = {.lex_state = 123, .external_lex_state = 4}, + [967] = {.lex_state = 123, .external_lex_state = 4}, + [968] = {.lex_state = 123, .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}, + [970] = {.lex_state = 123, .external_lex_state = 4}, + [971] = {.lex_state = 123, .external_lex_state = 4}, + [972] = {.lex_state = 123, .external_lex_state = 4}, + [973] = {.lex_state = 123, .external_lex_state = 4}, + [974] = {.lex_state = 123, .external_lex_state = 4}, + [975] = {.lex_state = 123, .external_lex_state = 4}, + [976] = {.lex_state = 123, .external_lex_state = 4}, + [977] = {.lex_state = 123, .external_lex_state = 4}, + [978] = {.lex_state = 123, .external_lex_state = 4}, + [979] = {.lex_state = 123, .external_lex_state = 4}, + [980] = {.lex_state = 123, .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}, + [986] = {.lex_state = 124, .external_lex_state = 2}, + [987] = {.lex_state = 5, .external_lex_state = 2}, [988] = {.lex_state = 5, .external_lex_state = 2}, - [989] = {.lex_state = 5, .external_lex_state = 2}, + [989] = {.lex_state = 124, .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}, - [995] = {.lex_state = 125, .external_lex_state = 2}, - [996] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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 = 125, .external_lex_state = 2}, - [1005] = {.lex_state = 125, .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 = 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 = 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 = 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 = 5}, - [1023] = {.lex_state = 125, .external_lex_state = 5}, - [1024] = {.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 = 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}, + [992] = {.lex_state = 124, .external_lex_state = 2}, + [993] = {.lex_state = 124, .external_lex_state = 2}, + [994] = {.lex_state = 124, .external_lex_state = 2}, + [995] = {.lex_state = 124, .external_lex_state = 2}, + [996] = {.lex_state = 124, .external_lex_state = 2}, + [997] = {.lex_state = 124, .external_lex_state = 2}, + [998] = {.lex_state = 124, .external_lex_state = 2}, + [999] = {.lex_state = 124, .external_lex_state = 2}, + [1000] = {.lex_state = 124, .external_lex_state = 2}, + [1001] = {.lex_state = 124, .external_lex_state = 2}, + [1002] = {.lex_state = 124, .external_lex_state = 2}, + [1003] = {.lex_state = 124, .external_lex_state = 2}, + [1004] = {.lex_state = 124, .external_lex_state = 2}, + [1005] = {.lex_state = 124, .external_lex_state = 2}, + [1006] = {.lex_state = 124, .external_lex_state = 2}, + [1007] = {.lex_state = 124, .external_lex_state = 2}, + [1008] = {.lex_state = 124, .external_lex_state = 2}, + [1009] = {.lex_state = 124, .external_lex_state = 2}, + [1010] = {.lex_state = 124, .external_lex_state = 5}, + [1011] = {.lex_state = 124, .external_lex_state = 2}, + [1012] = {.lex_state = 124, .external_lex_state = 2}, + [1013] = {.lex_state = 124, .external_lex_state = 2}, + [1014] = {.lex_state = 124, .external_lex_state = 2}, + [1015] = {.lex_state = 5, .external_lex_state = 2}, + [1016] = {.lex_state = 124, .external_lex_state = 2}, + [1017] = {.lex_state = 124, .external_lex_state = 5}, + [1018] = {.lex_state = 124, .external_lex_state = 2}, + [1019] = {.lex_state = 124, .external_lex_state = 5}, + [1020] = {.lex_state = 124, .external_lex_state = 2}, + [1021] = {.lex_state = 124, .external_lex_state = 2}, + [1022] = {.lex_state = 124, .external_lex_state = 2}, + [1023] = {.lex_state = 5, .external_lex_state = 2}, + [1024] = {.lex_state = 124, .external_lex_state = 5}, + [1025] = {.lex_state = 124, .external_lex_state = 5}, + [1026] = {.lex_state = 124, .external_lex_state = 5}, + [1027] = {.lex_state = 5, .external_lex_state = 2}, + [1028] = {.lex_state = 124, .external_lex_state = 5}, + [1029] = {.lex_state = 124, .external_lex_state = 2}, + [1030] = {.lex_state = 124, .external_lex_state = 2}, + [1031] = {.lex_state = 124, .external_lex_state = 5}, + [1032] = {.lex_state = 124, .external_lex_state = 5}, + [1033] = {.lex_state = 124, .external_lex_state = 5}, + [1034] = {.lex_state = 124, .external_lex_state = 5}, + [1035] = {.lex_state = 9, .external_lex_state = 2}, + [1036] = {.lex_state = 124, .external_lex_state = 5}, [1037] = {.lex_state = 5, .external_lex_state = 2}, - [1038] = {.lex_state = 125, .external_lex_state = 2}, - [1039] = {.lex_state = 5, .external_lex_state = 2}, + [1038] = {.lex_state = 5, .external_lex_state = 2}, + [1039] = {.lex_state = 9, .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}, + [1041] = {.lex_state = 5, .external_lex_state = 5}, + [1042] = {.lex_state = 5, .external_lex_state = 2}, + [1043] = {.lex_state = 5, .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}, + [1047] = {.lex_state = 5, .external_lex_state = 2}, [1048] = {.lex_state = 5, .external_lex_state = 2}, - [1049] = {.lex_state = 5, .external_lex_state = 2}, + [1049] = {.lex_state = 5, .external_lex_state = 5}, [1050] = {.lex_state = 5, .external_lex_state = 2}, [1051] = {.lex_state = 5, .external_lex_state = 2}, [1052] = {.lex_state = 5, .external_lex_state = 2}, @@ -7944,817 +8005,820 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [1059] = {.lex_state = 124, .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}, + [1063] = {.lex_state = 124, .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}, + [1067] = {.lex_state = 5, .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}, + [1072] = {.lex_state = 5, .external_lex_state = 2}, + [1073] = {.lex_state = 124, .external_lex_state = 2}, + [1074] = {.lex_state = 124, .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}, + [1076] = {.lex_state = 124, .external_lex_state = 2}, + [1077] = {.lex_state = 5, .external_lex_state = 2}, [1078] = {.lex_state = 5, .external_lex_state = 2}, - [1079] = {.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 = 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 = 2}, - [1093] = {.lex_state = 125, .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 = 5, .external_lex_state = 2}, - [1098] = {.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 = 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 = 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 = 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 = 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 = 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 = 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 = 125, .external_lex_state = 2}, - [1133] = {.lex_state = 125, .external_lex_state = 2}, - [1134] = {.lex_state = 125, .external_lex_state = 2}, - [1135] = {.lex_state = 125, .external_lex_state = 2}, - [1136] = {.lex_state = 125, .external_lex_state = 2}, - [1137] = {.lex_state = 125, .external_lex_state = 2}, + [1079] = {.lex_state = 5, .external_lex_state = 2}, + [1080] = {.lex_state = 124, .external_lex_state = 2}, + [1081] = {.lex_state = 124, .external_lex_state = 2}, + [1082] = {.lex_state = 5, .external_lex_state = 2}, + [1083] = {.lex_state = 124, .external_lex_state = 2}, + [1084] = {.lex_state = 124, .external_lex_state = 2}, + [1085] = {.lex_state = 124, .external_lex_state = 2}, + [1086] = {.lex_state = 124, .external_lex_state = 2}, + [1087] = {.lex_state = 5, .external_lex_state = 2}, + [1088] = {.lex_state = 5, .external_lex_state = 2}, + [1089] = {.lex_state = 124, .external_lex_state = 2}, + [1090] = {.lex_state = 5, .external_lex_state = 2}, + [1091] = {.lex_state = 124, .external_lex_state = 2}, + [1092] = {.lex_state = 124, .external_lex_state = 2}, + [1093] = {.lex_state = 124, .external_lex_state = 2}, + [1094] = {.lex_state = 124, .external_lex_state = 2}, + [1095] = {.lex_state = 124, .external_lex_state = 2}, + [1096] = {.lex_state = 124, .external_lex_state = 2}, + [1097] = {.lex_state = 124, .external_lex_state = 2}, + [1098] = {.lex_state = 124, .external_lex_state = 2}, + [1099] = {.lex_state = 124, .external_lex_state = 2}, + [1100] = {.lex_state = 124, .external_lex_state = 2}, + [1101] = {.lex_state = 5, .external_lex_state = 2}, + [1102] = {.lex_state = 124, .external_lex_state = 2}, + [1103] = {.lex_state = 124, .external_lex_state = 2}, + [1104] = {.lex_state = 5, .external_lex_state = 2}, + [1105] = {.lex_state = 5, .external_lex_state = 2}, + [1106] = {.lex_state = 124, .external_lex_state = 2}, + [1107] = {.lex_state = 124, .external_lex_state = 2}, + [1108] = {.lex_state = 124, .external_lex_state = 2}, + [1109] = {.lex_state = 124, .external_lex_state = 2}, + [1110] = {.lex_state = 124, .external_lex_state = 2}, + [1111] = {.lex_state = 124, .external_lex_state = 2}, + [1112] = {.lex_state = 124, .external_lex_state = 2}, + [1113] = {.lex_state = 124, .external_lex_state = 2}, + [1114] = {.lex_state = 124, .external_lex_state = 2}, + [1115] = {.lex_state = 124, .external_lex_state = 2}, + [1116] = {.lex_state = 124, .external_lex_state = 2}, + [1117] = {.lex_state = 124, .external_lex_state = 2}, + [1118] = {.lex_state = 124, .external_lex_state = 2}, + [1119] = {.lex_state = 124, .external_lex_state = 2}, + [1120] = {.lex_state = 124, .external_lex_state = 2}, + [1121] = {.lex_state = 124, .external_lex_state = 2}, + [1122] = {.lex_state = 124, .external_lex_state = 2}, + [1123] = {.lex_state = 124, .external_lex_state = 2}, + [1124] = {.lex_state = 124, .external_lex_state = 2}, + [1125] = {.lex_state = 124, .external_lex_state = 2}, + [1126] = {.lex_state = 124, .external_lex_state = 2}, + [1127] = {.lex_state = 124, .external_lex_state = 2}, + [1128] = {.lex_state = 124, .external_lex_state = 2}, + [1129] = {.lex_state = 124, .external_lex_state = 2}, + [1130] = {.lex_state = 124, .external_lex_state = 2}, + [1131] = {.lex_state = 124, .external_lex_state = 2}, + [1132] = {.lex_state = 124, .external_lex_state = 2}, + [1133] = {.lex_state = 124, .external_lex_state = 2}, + [1134] = {.lex_state = 124, .external_lex_state = 2}, + [1135] = {.lex_state = 124, .external_lex_state = 2}, + [1136] = {.lex_state = 124, .external_lex_state = 2}, + [1137] = {.lex_state = 124, .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}, + [1144] = {.lex_state = 9, .external_lex_state = 6}, + [1145] = {.lex_state = 9, .external_lex_state = 6}, [1146] = {.lex_state = 9, .external_lex_state = 6}, - [1147] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1147] = {.lex_state = 9, .external_lex_state = 6}, [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 = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1152] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1151] = {.lex_state = 9, .external_lex_state = 6}, + [1152] = {.lex_state = 3, .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 = 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 = 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 = 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 = 5}, - [1209] = {.lex_state = 125, .external_lex_state = 5}, - [1210] = {.lex_state = 125, .external_lex_state = 2}, - [1211] = {.lex_state = 125, .external_lex_state = 2}, - [1212] = {.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 = 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, .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 = 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 = 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 = 16, .external_lex_state = 7}, - [1245] = {.lex_state = 125, .external_lex_state = 5}, - [1246] = {.lex_state = 125, .external_lex_state = 2}, - [1247] = {.lex_state = 125, .external_lex_state = 5}, - [1248] = {.lex_state = 125, .external_lex_state = 5}, - [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 = 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 = 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}, + [1154] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1155] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1156] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1157] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1158] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1159] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1160] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1161] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1162] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1163] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1164] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1165] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1166] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1167] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1168] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1169] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1170] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1171] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1172] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1173] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1174] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1175] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1176] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1177] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1178] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1179] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1180] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1181] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1182] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1183] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1184] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1185] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1186] = {.lex_state = 124, .external_lex_state = 2}, + [1187] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1188] = {.lex_state = 124, .external_lex_state = 2}, + [1189] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1190] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1191] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1192] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1193] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1194] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1195] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1196] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1197] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1198] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1199] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1200] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1201] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1202] = {.lex_state = 124, .external_lex_state = 2}, + [1203] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1204] = {.lex_state = 124, .external_lex_state = 2}, + [1205] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1206] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1207] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1208] = {.lex_state = 124, .external_lex_state = 2}, + [1209] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1210] = {.lex_state = 124, .external_lex_state = 2}, + [1211] = {.lex_state = 124, .external_lex_state = 2}, + [1212] = {.lex_state = 124, .external_lex_state = 5}, + [1213] = {.lex_state = 124, .external_lex_state = 2}, + [1214] = {.lex_state = 124, .external_lex_state = 2}, + [1215] = {.lex_state = 124, .external_lex_state = 5}, + [1216] = {.lex_state = 124, .external_lex_state = 5}, + [1217] = {.lex_state = 124, .external_lex_state = 5}, + [1218] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1219] = {.lex_state = 124, .external_lex_state = 2}, + [1220] = {.lex_state = 124, .external_lex_state = 2}, + [1221] = {.lex_state = 124, .external_lex_state = 2}, + [1222] = {.lex_state = 124, .external_lex_state = 2}, + [1223] = {.lex_state = 124, .external_lex_state = 2}, + [1224] = {.lex_state = 124, .external_lex_state = 2}, + [1225] = {.lex_state = 9, .external_lex_state = 6}, + [1226] = {.lex_state = 10, .external_lex_state = 2}, + [1227] = {.lex_state = 17, .external_lex_state = 2}, + [1228] = {.lex_state = 9, .external_lex_state = 6}, + [1229] = {.lex_state = 124, .external_lex_state = 5}, + [1230] = {.lex_state = 124, .external_lex_state = 2}, + [1231] = {.lex_state = 9, .external_lex_state = 6}, + [1232] = {.lex_state = 124, .external_lex_state = 5}, + [1233] = {.lex_state = 124, .external_lex_state = 2}, + [1234] = {.lex_state = 15, .external_lex_state = 7}, + [1235] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1236] = {.lex_state = 124, .external_lex_state = 5}, + [1237] = {.lex_state = 15, .external_lex_state = 7}, + [1238] = {.lex_state = 124, .external_lex_state = 2}, + [1239] = {.lex_state = 9, .external_lex_state = 6}, + [1240] = {.lex_state = 15, .external_lex_state = 7}, + [1241] = {.lex_state = 124, .external_lex_state = 5}, + [1242] = {.lex_state = 9, .external_lex_state = 6}, + [1243] = {.lex_state = 9, .external_lex_state = 6}, + [1244] = {.lex_state = 9, .external_lex_state = 6}, + [1245] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1246] = {.lex_state = 9, .external_lex_state = 6}, + [1247] = {.lex_state = 9, .external_lex_state = 6}, + [1248] = {.lex_state = 124, .external_lex_state = 5}, + [1249] = {.lex_state = 9, .external_lex_state = 6}, + [1250] = {.lex_state = 15, .external_lex_state = 7}, + [1251] = {.lex_state = 10, .external_lex_state = 2}, + [1252] = {.lex_state = 124, .external_lex_state = 5}, + [1253] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1254] = {.lex_state = 124, .external_lex_state = 5}, + [1255] = {.lex_state = 124, .external_lex_state = 2}, + [1256] = {.lex_state = 124, .external_lex_state = 5}, + [1257] = {.lex_state = 10, .external_lex_state = 2}, + [1258] = {.lex_state = 17, .external_lex_state = 2}, + [1259] = {.lex_state = 9, .external_lex_state = 6}, + [1260] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1261] = {.lex_state = 9, .external_lex_state = 6}, + [1262] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1263] = {.lex_state = 17, .external_lex_state = 2}, + [1264] = {.lex_state = 124, .external_lex_state = 5}, + [1265] = {.lex_state = 9, .external_lex_state = 6}, [1266] = {.lex_state = 9, .external_lex_state = 6}, - [1267] = {.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}, + [1267] = {.lex_state = 124, .external_lex_state = 2}, + [1268] = {.lex_state = 9, .external_lex_state = 6}, + [1269] = {.lex_state = 9, .external_lex_state = 6}, + [1270] = {.lex_state = 124, .external_lex_state = 5}, + [1271] = {.lex_state = 15, .external_lex_state = 7}, + [1272] = {.lex_state = 124, .external_lex_state = 5}, + [1273] = {.lex_state = 124, .external_lex_state = 5}, + [1274] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, [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 = 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 = 9, .external_lex_state = 6}, - [1282] = {.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, .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 = 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 = 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, .reserved_word_set_id = 1}, - [1324] = {.lex_state = 125, .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}, + [1276] = {.lex_state = 9, .external_lex_state = 6}, + [1277] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1278] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1279] = {.lex_state = 124, .external_lex_state = 5}, + [1280] = {.lex_state = 124, .external_lex_state = 2}, + [1281] = {.lex_state = 124, .external_lex_state = 5}, + [1282] = {.lex_state = 124, .external_lex_state = 2}, + [1283] = {.lex_state = 124, .external_lex_state = 5}, + [1284] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1285] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1286] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1287] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1288] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1289] = {.lex_state = 124, .external_lex_state = 2}, + [1290] = {.lex_state = 124, .external_lex_state = 2}, + [1291] = {.lex_state = 124, .external_lex_state = 5}, + [1292] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1293] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1294] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1295] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1296] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1297] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1298] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1299] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1300] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1301] = {.lex_state = 124, .external_lex_state = 5}, + [1302] = {.lex_state = 124, .external_lex_state = 2}, + [1303] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1304] = {.lex_state = 124, .external_lex_state = 2}, + [1305] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1306] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1307] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1308] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1309] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1310] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1311] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1312] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1313] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1314] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1315] = {.lex_state = 124, .external_lex_state = 2}, + [1316] = {.lex_state = 124, .external_lex_state = 2}, + [1317] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1318] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1319] = {.lex_state = 124, .external_lex_state = 2}, + [1320] = {.lex_state = 124, .external_lex_state = 2}, + [1321] = {.lex_state = 124, .external_lex_state = 2}, + [1322] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1323] = {.lex_state = 124, .external_lex_state = 2}, + [1324] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1325] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1326] = {.lex_state = 124, .external_lex_state = 5}, + [1327] = {.lex_state = 12, .external_lex_state = 8}, + [1328] = {.lex_state = 124, .external_lex_state = 2}, + [1329] = {.lex_state = 124, .external_lex_state = 2}, + [1330] = {.lex_state = 124, .external_lex_state = 2}, + [1331] = {.lex_state = 12, .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 = 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 = 5}, - [1345] = {.lex_state = 125, .external_lex_state = 2}, - [1346] = {.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 = 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 = 2}, - [1361] = {.lex_state = 12, .external_lex_state = 8}, - [1362] = {.lex_state = 125, .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 = 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 = 5}, - [1373] = {.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, .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 = 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 = 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 = 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 = 3, .external_lex_state = 2}, - [1405] = {.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 = 5}, - [1416] = {.lex_state = 125, .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 = 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 = 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 = 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 = 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 = 6, .external_lex_state = 2}, - [1445] = {.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 = 2}, - [1449] = {.lex_state = 125, .external_lex_state = 2}, - [1450] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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 = 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 = 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, .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 = 2}, - [1477] = {.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 = 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}, - [1486] = {.lex_state = 125, .external_lex_state = 2}, - [1487] = {.lex_state = 125, .external_lex_state = 2}, - [1488] = {.lex_state = 125, .external_lex_state = 2}, - [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, .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 = 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 = 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 = 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}, + [1333] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1334] = {.lex_state = 19, .external_lex_state = 8}, + [1335] = {.lex_state = 124, .external_lex_state = 2}, + [1336] = {.lex_state = 124, .external_lex_state = 2}, + [1337] = {.lex_state = 124, .external_lex_state = 2}, + [1338] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1339] = {.lex_state = 19, .external_lex_state = 8}, + [1340] = {.lex_state = 124, .external_lex_state = 2}, + [1341] = {.lex_state = 124, .external_lex_state = 2}, + [1342] = {.lex_state = 124, .external_lex_state = 2}, + [1343] = {.lex_state = 12, .external_lex_state = 8}, + [1344] = {.lex_state = 124, .external_lex_state = 2}, + [1345] = {.lex_state = 124, .external_lex_state = 5}, + [1346] = {.lex_state = 124, .external_lex_state = 2}, + [1347] = {.lex_state = 12, .external_lex_state = 8}, + [1348] = {.lex_state = 19, .external_lex_state = 8}, + [1349] = {.lex_state = 124, .external_lex_state = 5}, + [1350] = {.lex_state = 124, .external_lex_state = 2}, + [1351] = {.lex_state = 124, .external_lex_state = 5}, + [1352] = {.lex_state = 19, .external_lex_state = 8}, + [1353] = {.lex_state = 124, .external_lex_state = 5}, + [1354] = {.lex_state = 124, .external_lex_state = 2}, + [1355] = {.lex_state = 124, .external_lex_state = 2}, + [1356] = {.lex_state = 12, .external_lex_state = 8}, + [1357] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1358] = {.lex_state = 124, .external_lex_state = 5}, + [1359] = {.lex_state = 124, .external_lex_state = 2}, + [1360] = {.lex_state = 124, .external_lex_state = 2}, + [1361] = {.lex_state = 124, .external_lex_state = 5}, + [1362] = {.lex_state = 19, .external_lex_state = 8}, + [1363] = {.lex_state = 124, .external_lex_state = 2}, + [1364] = {.lex_state = 124, .external_lex_state = 2}, + [1365] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1366] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1367] = {.lex_state = 124, .external_lex_state = 2}, + [1368] = {.lex_state = 124, .external_lex_state = 5}, + [1369] = {.lex_state = 19, .external_lex_state = 8}, + [1370] = {.lex_state = 19, .external_lex_state = 8}, + [1371] = {.lex_state = 124, .external_lex_state = 2}, + [1372] = {.lex_state = 124, .external_lex_state = 5}, + [1373] = {.lex_state = 124, .external_lex_state = 2}, + [1374] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1375] = {.lex_state = 124, .external_lex_state = 5}, + [1376] = {.lex_state = 124, .external_lex_state = 5}, + [1377] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1378] = {.lex_state = 124, .external_lex_state = 5}, + [1379] = {.lex_state = 12, .external_lex_state = 8}, + [1380] = {.lex_state = 124, .external_lex_state = 2}, + [1381] = {.lex_state = 124, .external_lex_state = 2}, + [1382] = {.lex_state = 124, .external_lex_state = 5}, + [1383] = {.lex_state = 124, .external_lex_state = 2}, + [1384] = {.lex_state = 15, .external_lex_state = 7}, + [1385] = {.lex_state = 124, .external_lex_state = 5}, + [1386] = {.lex_state = 3, .external_lex_state = 2}, + [1387] = {.lex_state = 124, .external_lex_state = 2}, + [1388] = {.lex_state = 124, .external_lex_state = 2}, + [1389] = {.lex_state = 12, .external_lex_state = 8}, + [1390] = {.lex_state = 17, .external_lex_state = 2}, + [1391] = {.lex_state = 19, .external_lex_state = 8}, + [1392] = {.lex_state = 10, .external_lex_state = 2}, + [1393] = {.lex_state = 19, .external_lex_state = 8}, + [1394] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1395] = {.lex_state = 124, .external_lex_state = 5}, + [1396] = {.lex_state = 3, .external_lex_state = 2}, + [1397] = {.lex_state = 124, .external_lex_state = 2}, + [1398] = {.lex_state = 124, .external_lex_state = 2}, + [1399] = {.lex_state = 12, .external_lex_state = 8}, + [1400] = {.lex_state = 124, .external_lex_state = 5}, + [1401] = {.lex_state = 124, .external_lex_state = 5}, + [1402] = {.lex_state = 124, .external_lex_state = 2}, + [1403] = {.lex_state = 124, .external_lex_state = 2}, + [1404] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1405] = {.lex_state = 124, .external_lex_state = 5}, + [1406] = {.lex_state = 124, .external_lex_state = 2}, + [1407] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1408] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1409] = {.lex_state = 124, .external_lex_state = 2}, + [1410] = {.lex_state = 124, .external_lex_state = 2}, + [1411] = {.lex_state = 124, .external_lex_state = 2}, + [1412] = {.lex_state = 124, .external_lex_state = 2}, + [1413] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1414] = {.lex_state = 124, .external_lex_state = 2}, + [1415] = {.lex_state = 124, .external_lex_state = 2}, + [1416] = {.lex_state = 124, .external_lex_state = 2}, + [1417] = {.lex_state = 124, .external_lex_state = 2}, + [1418] = {.lex_state = 124, .external_lex_state = 2}, + [1419] = {.lex_state = 124, .external_lex_state = 2}, + [1420] = {.lex_state = 124, .external_lex_state = 2}, + [1421] = {.lex_state = 124, .external_lex_state = 2}, + [1422] = {.lex_state = 124, .external_lex_state = 2}, + [1423] = {.lex_state = 124, .external_lex_state = 2}, + [1424] = {.lex_state = 124, .external_lex_state = 2}, + [1425] = {.lex_state = 124, .external_lex_state = 2}, + [1426] = {.lex_state = 124, .external_lex_state = 2}, + [1427] = {.lex_state = 6, .external_lex_state = 2}, + [1428] = {.lex_state = 124, .external_lex_state = 2}, + [1429] = {.lex_state = 124, .external_lex_state = 2}, + [1430] = {.lex_state = 124, .external_lex_state = 2}, + [1431] = {.lex_state = 124, .external_lex_state = 2}, + [1432] = {.lex_state = 124, .external_lex_state = 5}, + [1433] = {.lex_state = 124, .external_lex_state = 2}, + [1434] = {.lex_state = 124, .external_lex_state = 2}, + [1435] = {.lex_state = 6, .external_lex_state = 2}, + [1436] = {.lex_state = 124, .external_lex_state = 2}, + [1437] = {.lex_state = 6, .external_lex_state = 2}, + [1438] = {.lex_state = 124, .external_lex_state = 2}, + [1439] = {.lex_state = 124, .external_lex_state = 2}, + [1440] = {.lex_state = 124, .external_lex_state = 2}, + [1441] = {.lex_state = 124, .external_lex_state = 2}, + [1442] = {.lex_state = 124, .external_lex_state = 2}, + [1443] = {.lex_state = 124, .external_lex_state = 5}, + [1444] = {.lex_state = 3, .external_lex_state = 2}, + [1445] = {.lex_state = 124, .external_lex_state = 5}, + [1446] = {.lex_state = 124, .external_lex_state = 2}, + [1447] = {.lex_state = 124, .external_lex_state = 2}, + [1448] = {.lex_state = 124, .external_lex_state = 2}, + [1449] = {.lex_state = 124, .external_lex_state = 2}, + [1450] = {.lex_state = 124, .external_lex_state = 2}, + [1451] = {.lex_state = 124, .external_lex_state = 2}, + [1452] = {.lex_state = 124, .external_lex_state = 2}, + [1453] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1454] = {.lex_state = 124, .external_lex_state = 2}, + [1455] = {.lex_state = 124, .external_lex_state = 2}, + [1456] = {.lex_state = 124, .external_lex_state = 2}, + [1457] = {.lex_state = 124, .external_lex_state = 2}, + [1458] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1459] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1460] = {.lex_state = 3, .external_lex_state = 2}, + [1461] = {.lex_state = 124, .external_lex_state = 2}, + [1462] = {.lex_state = 124, .external_lex_state = 5}, + [1463] = {.lex_state = 124, .external_lex_state = 2}, + [1464] = {.lex_state = 124, .external_lex_state = 2}, + [1465] = {.lex_state = 124, .external_lex_state = 2}, + [1466] = {.lex_state = 124, .external_lex_state = 2}, + [1467] = {.lex_state = 124, .external_lex_state = 2}, + [1468] = {.lex_state = 124, .external_lex_state = 2}, + [1469] = {.lex_state = 124, .external_lex_state = 5}, + [1470] = {.lex_state = 124, .external_lex_state = 2}, + [1471] = {.lex_state = 124, .external_lex_state = 2}, + [1472] = {.lex_state = 124, .external_lex_state = 2}, + [1473] = {.lex_state = 124, .external_lex_state = 2}, + [1474] = {.lex_state = 124, .external_lex_state = 2}, + [1475] = {.lex_state = 124, .external_lex_state = 2}, + [1476] = {.lex_state = 124, .external_lex_state = 2}, + [1477] = {.lex_state = 124, .external_lex_state = 5}, + [1478] = {.lex_state = 124, .external_lex_state = 2}, + [1479] = {.lex_state = 124, .external_lex_state = 5}, + [1480] = {.lex_state = 124, .external_lex_state = 5}, + [1481] = {.lex_state = 124, .external_lex_state = 2}, + [1482] = {.lex_state = 124, .external_lex_state = 2}, + [1483] = {.lex_state = 124, .external_lex_state = 2}, + [1484] = {.lex_state = 124, .external_lex_state = 2}, + [1485] = {.lex_state = 6, .external_lex_state = 2}, + [1486] = {.lex_state = 124, .external_lex_state = 2}, + [1487] = {.lex_state = 124, .external_lex_state = 2}, + [1488] = {.lex_state = 124, .external_lex_state = 2}, + [1489] = {.lex_state = 124, .external_lex_state = 2}, + [1490] = {.lex_state = 124, .external_lex_state = 5}, + [1491] = {.lex_state = 124, .external_lex_state = 2}, + [1492] = {.lex_state = 124, .external_lex_state = 2}, + [1493] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1494] = {.lex_state = 124, .external_lex_state = 2}, + [1495] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1496] = {.lex_state = 124, .external_lex_state = 2}, + [1497] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1498] = {.lex_state = 124, .external_lex_state = 5}, + [1499] = {.lex_state = 124, .external_lex_state = 5}, + [1500] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1501] = {.lex_state = 124, .external_lex_state = 2}, + [1502] = {.lex_state = 124, .external_lex_state = 2}, + [1503] = {.lex_state = 124, .external_lex_state = 2}, + [1504] = {.lex_state = 124, .external_lex_state = 5}, + [1505] = {.lex_state = 124, .external_lex_state = 2}, + [1506] = {.lex_state = 124, .external_lex_state = 5}, + [1507] = {.lex_state = 124, .external_lex_state = 5}, + [1508] = {.lex_state = 124, .external_lex_state = 2}, + [1509] = {.lex_state = 124, .external_lex_state = 2}, + [1510] = {.lex_state = 124, .external_lex_state = 2}, + [1511] = {.lex_state = 124, .external_lex_state = 5}, [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}, - [1517] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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 = 5}, - [1527] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 6, .external_lex_state = 2}, - [1535] = {.lex_state = 125, .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 = 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 = 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 = 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}, - [1554] = {.lex_state = 125, .external_lex_state = 2}, - [1555] = {.lex_state = 125, .external_lex_state = 2}, - [1556] = {.lex_state = 125, .external_lex_state = 2}, - [1557] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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 = 2}, - [1569] = {.lex_state = 125, .external_lex_state = 2}, - [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}, - [1574] = {.lex_state = 125, .external_lex_state = 2}, - [1575] = {.lex_state = 125, .external_lex_state = 2}, - [1576] = {.lex_state = 125, .external_lex_state = 2}, - [1577] = {.lex_state = 125, .external_lex_state = 2}, - [1578] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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}, - [1586] = {.lex_state = 125, .external_lex_state = 2}, - [1587] = {.lex_state = 125, .external_lex_state = 2}, - [1588] = {.lex_state = 125, .external_lex_state = 2}, - [1589] = {.lex_state = 125, .external_lex_state = 2}, - [1590] = {.lex_state = 125, .external_lex_state = 2}, - [1591] = {.lex_state = 125, .external_lex_state = 2}, - [1592] = {.lex_state = 125, .external_lex_state = 2}, - [1593] = {.lex_state = 125, .external_lex_state = 2}, - [1594] = {.lex_state = 125, .external_lex_state = 2}, - [1595] = {.lex_state = 125, .external_lex_state = 2}, - [1596] = {.lex_state = 125, .external_lex_state = 2}, - [1597] = {.lex_state = 125, .external_lex_state = 2}, - [1598] = {.lex_state = 125, .external_lex_state = 2}, - [1599] = {.lex_state = 125, .external_lex_state = 2}, - [1600] = {.lex_state = 125, .external_lex_state = 2}, - [1601] = {.lex_state = 125, .external_lex_state = 2}, - [1602] = {.lex_state = 125, .external_lex_state = 2}, - [1603] = {.lex_state = 125, .external_lex_state = 2}, - [1604] = {.lex_state = 125, .external_lex_state = 2}, - [1605] = {.lex_state = 125, .external_lex_state = 2}, - [1606] = {.lex_state = 125, .external_lex_state = 2}, - [1607] = {.lex_state = 125, .external_lex_state = 2}, - [1608] = {.lex_state = 125, .external_lex_state = 2}, - [1609] = {.lex_state = 125, .external_lex_state = 2}, - [1610] = {.lex_state = 125, .external_lex_state = 2}, - [1611] = {.lex_state = 125, .external_lex_state = 2}, - [1612] = {.lex_state = 125, .external_lex_state = 2}, - [1613] = {.lex_state = 125, .external_lex_state = 2}, - [1614] = {.lex_state = 125, .external_lex_state = 2}, - [1615] = {.lex_state = 125, .external_lex_state = 2}, - [1616] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 5}, - [1621] = {.lex_state = 125, .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}, - [1626] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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 = 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}, - [1640] = {.lex_state = 125, .external_lex_state = 2}, - [1641] = {.lex_state = 125, .external_lex_state = 2}, - [1642] = {.lex_state = 125, .external_lex_state = 2}, - [1643] = {.lex_state = 125, .external_lex_state = 2}, - [1644] = {.lex_state = 125, .external_lex_state = 2}, - [1645] = {.lex_state = 125, .external_lex_state = 2}, - [1646] = {.lex_state = 125, .external_lex_state = 2}, - [1647] = {.lex_state = 125, .external_lex_state = 2}, - [1648] = {.lex_state = 125, .external_lex_state = 2}, - [1649] = {.lex_state = 125, .external_lex_state = 2}, - [1650] = {.lex_state = 125, .external_lex_state = 2}, - [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, .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 = 5}, - [1663] = {.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 = 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 = 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 = 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 = 5}, - [1686] = {.lex_state = 125, .external_lex_state = 5}, - [1687] = {.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 = 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 = 5}, - [1696] = {.lex_state = 125, .external_lex_state = 2}, - [1697] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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}, - [1706] = {.lex_state = 125, .external_lex_state = 2}, - [1707] = {.lex_state = 125, .external_lex_state = 2}, - [1708] = {.lex_state = 125, .external_lex_state = 2}, - [1709] = {.lex_state = 125, .external_lex_state = 2}, - [1710] = {.lex_state = 125, .external_lex_state = 2}, - [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 = 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}, - [1718] = {.lex_state = 125, .external_lex_state = 2}, - [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}, + [1513] = {.lex_state = 124, .external_lex_state = 2}, + [1514] = {.lex_state = 124, .external_lex_state = 5}, + [1515] = {.lex_state = 124, .external_lex_state = 2}, + [1516] = {.lex_state = 124, .external_lex_state = 2}, + [1517] = {.lex_state = 6, .external_lex_state = 2}, + [1518] = {.lex_state = 124, .external_lex_state = 2}, + [1519] = {.lex_state = 124, .external_lex_state = 2}, + [1520] = {.lex_state = 124, .external_lex_state = 2}, + [1521] = {.lex_state = 124, .external_lex_state = 2}, + [1522] = {.lex_state = 124, .external_lex_state = 2}, + [1523] = {.lex_state = 124, .external_lex_state = 5}, + [1524] = {.lex_state = 124, .external_lex_state = 2}, + [1525] = {.lex_state = 124, .external_lex_state = 2}, + [1526] = {.lex_state = 124, .external_lex_state = 2}, + [1527] = {.lex_state = 124, .external_lex_state = 2}, + [1528] = {.lex_state = 124, .external_lex_state = 2}, + [1529] = {.lex_state = 124, .external_lex_state = 2}, + [1530] = {.lex_state = 124, .external_lex_state = 2}, + [1531] = {.lex_state = 124, .external_lex_state = 5}, + [1532] = {.lex_state = 124, .external_lex_state = 2}, + [1533] = {.lex_state = 124, .external_lex_state = 2}, + [1534] = {.lex_state = 124, .external_lex_state = 2}, + [1535] = {.lex_state = 124, .external_lex_state = 2}, + [1536] = {.lex_state = 124, .external_lex_state = 2}, + [1537] = {.lex_state = 124, .external_lex_state = 5}, + [1538] = {.lex_state = 124, .external_lex_state = 2}, + [1539] = {.lex_state = 124, .external_lex_state = 2}, + [1540] = {.lex_state = 124, .external_lex_state = 2}, + [1541] = {.lex_state = 124, .external_lex_state = 2}, + [1542] = {.lex_state = 124, .external_lex_state = 2}, + [1543] = {.lex_state = 124, .external_lex_state = 2}, + [1544] = {.lex_state = 124, .external_lex_state = 2}, + [1545] = {.lex_state = 124, .external_lex_state = 2}, + [1546] = {.lex_state = 124, .external_lex_state = 2}, + [1547] = {.lex_state = 124, .external_lex_state = 2}, + [1548] = {.lex_state = 124, .external_lex_state = 2}, + [1549] = {.lex_state = 124, .external_lex_state = 2}, + [1550] = {.lex_state = 124, .external_lex_state = 2}, + [1551] = {.lex_state = 124, .external_lex_state = 2}, + [1552] = {.lex_state = 124, .external_lex_state = 2}, + [1553] = {.lex_state = 124, .external_lex_state = 2}, + [1554] = {.lex_state = 124, .external_lex_state = 5}, + [1555] = {.lex_state = 124, .external_lex_state = 2}, + [1556] = {.lex_state = 124, .external_lex_state = 2}, + [1557] = {.lex_state = 124, .external_lex_state = 2}, + [1558] = {.lex_state = 124, .external_lex_state = 2}, + [1559] = {.lex_state = 124, .external_lex_state = 2}, + [1560] = {.lex_state = 124, .external_lex_state = 2}, + [1561] = {.lex_state = 124, .external_lex_state = 2}, + [1562] = {.lex_state = 124, .external_lex_state = 2}, + [1563] = {.lex_state = 124, .external_lex_state = 2}, + [1564] = {.lex_state = 124, .external_lex_state = 2}, + [1565] = {.lex_state = 124, .external_lex_state = 2}, + [1566] = {.lex_state = 124, .external_lex_state = 2}, + [1567] = {.lex_state = 124, .external_lex_state = 2}, + [1568] = {.lex_state = 124, .external_lex_state = 2}, + [1569] = {.lex_state = 124, .external_lex_state = 2}, + [1570] = {.lex_state = 124, .external_lex_state = 2}, + [1571] = {.lex_state = 124, .external_lex_state = 2}, + [1572] = {.lex_state = 124, .external_lex_state = 2}, + [1573] = {.lex_state = 124, .external_lex_state = 2}, + [1574] = {.lex_state = 124, .external_lex_state = 2}, + [1575] = {.lex_state = 124, .external_lex_state = 2}, + [1576] = {.lex_state = 124, .external_lex_state = 2}, + [1577] = {.lex_state = 124, .external_lex_state = 2}, + [1578] = {.lex_state = 124, .external_lex_state = 2}, + [1579] = {.lex_state = 124, .external_lex_state = 2}, + [1580] = {.lex_state = 124, .external_lex_state = 2}, + [1581] = {.lex_state = 124, .external_lex_state = 2}, + [1582] = {.lex_state = 124, .external_lex_state = 2}, + [1583] = {.lex_state = 124, .external_lex_state = 2}, + [1584] = {.lex_state = 124, .external_lex_state = 2}, + [1585] = {.lex_state = 124, .external_lex_state = 2}, + [1586] = {.lex_state = 124, .external_lex_state = 2}, + [1587] = {.lex_state = 124, .external_lex_state = 2}, + [1588] = {.lex_state = 124, .external_lex_state = 2}, + [1589] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1590] = {.lex_state = 124, .external_lex_state = 2}, + [1591] = {.lex_state = 124, .external_lex_state = 2}, + [1592] = {.lex_state = 124, .external_lex_state = 2}, + [1593] = {.lex_state = 124, .external_lex_state = 2}, + [1594] = {.lex_state = 124, .external_lex_state = 2}, + [1595] = {.lex_state = 124, .external_lex_state = 2}, + [1596] = {.lex_state = 124, .external_lex_state = 2}, + [1597] = {.lex_state = 124, .external_lex_state = 2}, + [1598] = {.lex_state = 124, .external_lex_state = 2}, + [1599] = {.lex_state = 124, .external_lex_state = 2}, + [1600] = {.lex_state = 124, .external_lex_state = 2}, + [1601] = {.lex_state = 124, .external_lex_state = 2}, + [1602] = {.lex_state = 124, .external_lex_state = 2}, + [1603] = {.lex_state = 124, .external_lex_state = 2}, + [1604] = {.lex_state = 124, .external_lex_state = 2}, + [1605] = {.lex_state = 124, .external_lex_state = 2}, + [1606] = {.lex_state = 124, .external_lex_state = 2}, + [1607] = {.lex_state = 124, .external_lex_state = 2}, + [1608] = {.lex_state = 124, .external_lex_state = 2}, + [1609] = {.lex_state = 124, .external_lex_state = 2}, + [1610] = {.lex_state = 124, .external_lex_state = 2}, + [1611] = {.lex_state = 124, .external_lex_state = 2}, + [1612] = {.lex_state = 124, .external_lex_state = 2}, + [1613] = {.lex_state = 124, .external_lex_state = 2}, + [1614] = {.lex_state = 124, .external_lex_state = 2}, + [1615] = {.lex_state = 124, .external_lex_state = 2}, + [1616] = {.lex_state = 124, .external_lex_state = 2}, + [1617] = {.lex_state = 124, .external_lex_state = 5}, + [1618] = {.lex_state = 124, .external_lex_state = 2}, + [1619] = {.lex_state = 124, .external_lex_state = 2}, + [1620] = {.lex_state = 124, .external_lex_state = 5}, + [1621] = {.lex_state = 124, .external_lex_state = 5}, + [1622] = {.lex_state = 124, .external_lex_state = 2}, + [1623] = {.lex_state = 124, .external_lex_state = 2}, + [1624] = {.lex_state = 124, .external_lex_state = 2}, + [1625] = {.lex_state = 124, .external_lex_state = 2}, + [1626] = {.lex_state = 124, .external_lex_state = 2}, + [1627] = {.lex_state = 124, .external_lex_state = 2}, + [1628] = {.lex_state = 124, .external_lex_state = 2}, + [1629] = {.lex_state = 124, .external_lex_state = 5}, + [1630] = {.lex_state = 124, .external_lex_state = 2}, + [1631] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1632] = {.lex_state = 124, .external_lex_state = 2}, + [1633] = {.lex_state = 124, .external_lex_state = 2}, + [1634] = {.lex_state = 124, .external_lex_state = 2}, + [1635] = {.lex_state = 124, .external_lex_state = 2}, + [1636] = {.lex_state = 124, .external_lex_state = 2}, + [1637] = {.lex_state = 124, .external_lex_state = 2}, + [1638] = {.lex_state = 124, .external_lex_state = 2}, + [1639] = {.lex_state = 124, .external_lex_state = 2}, + [1640] = {.lex_state = 124, .external_lex_state = 2}, + [1641] = {.lex_state = 124, .external_lex_state = 2}, + [1642] = {.lex_state = 124, .external_lex_state = 2}, + [1643] = {.lex_state = 124, .external_lex_state = 2}, + [1644] = {.lex_state = 124, .external_lex_state = 2}, + [1645] = {.lex_state = 124, .external_lex_state = 5}, + [1646] = {.lex_state = 124, .external_lex_state = 2}, + [1647] = {.lex_state = 124, .external_lex_state = 2}, + [1648] = {.lex_state = 124, .external_lex_state = 5}, + [1649] = {.lex_state = 124, .external_lex_state = 2}, + [1650] = {.lex_state = 124, .external_lex_state = 2}, + [1651] = {.lex_state = 124, .external_lex_state = 2}, + [1652] = {.lex_state = 124, .external_lex_state = 2}, + [1653] = {.lex_state = 124, .external_lex_state = 2}, + [1654] = {.lex_state = 124, .external_lex_state = 2}, + [1655] = {.lex_state = 124, .external_lex_state = 2}, + [1656] = {.lex_state = 124, .external_lex_state = 2}, + [1657] = {.lex_state = 124, .external_lex_state = 2}, + [1658] = {.lex_state = 124, .external_lex_state = 2}, + [1659] = {.lex_state = 124, .external_lex_state = 2}, + [1660] = {.lex_state = 124, .external_lex_state = 2}, + [1661] = {.lex_state = 124, .external_lex_state = 5}, + [1662] = {.lex_state = 124, .external_lex_state = 5}, + [1663] = {.lex_state = 124, .external_lex_state = 2}, + [1664] = {.lex_state = 124, .external_lex_state = 2}, + [1665] = {.lex_state = 124, .external_lex_state = 5}, + [1666] = {.lex_state = 124, .external_lex_state = 2}, + [1667] = {.lex_state = 124, .external_lex_state = 2}, + [1668] = {.lex_state = 124, .external_lex_state = 2}, + [1669] = {.lex_state = 6, .external_lex_state = 2}, + [1670] = {.lex_state = 124, .external_lex_state = 5}, + [1671] = {.lex_state = 124, .external_lex_state = 2}, + [1672] = {.lex_state = 124, .external_lex_state = 5}, + [1673] = {.lex_state = 124, .external_lex_state = 2}, + [1674] = {.lex_state = 124, .external_lex_state = 2}, + [1675] = {.lex_state = 124, .external_lex_state = 2}, + [1676] = {.lex_state = 124, .external_lex_state = 2}, + [1677] = {.lex_state = 124, .external_lex_state = 2}, + [1678] = {.lex_state = 124, .external_lex_state = 2}, + [1679] = {.lex_state = 124, .external_lex_state = 2}, + [1680] = {.lex_state = 124, .external_lex_state = 2}, + [1681] = {.lex_state = 124, .external_lex_state = 2}, + [1682] = {.lex_state = 124, .external_lex_state = 2}, + [1683] = {.lex_state = 124, .external_lex_state = 2}, + [1684] = {.lex_state = 124, .external_lex_state = 2}, + [1685] = {.lex_state = 124, .external_lex_state = 2}, + [1686] = {.lex_state = 6, .external_lex_state = 2}, + [1687] = {.lex_state = 124, .external_lex_state = 2}, + [1688] = {.lex_state = 124, .external_lex_state = 2}, + [1689] = {.lex_state = 124, .external_lex_state = 2}, + [1690] = {.lex_state = 124, .external_lex_state = 2}, + [1691] = {.lex_state = 124, .external_lex_state = 2}, + [1692] = {.lex_state = 124, .external_lex_state = 2}, + [1693] = {.lex_state = 124, .external_lex_state = 2}, + [1694] = {.lex_state = 124, .external_lex_state = 2}, + [1695] = {.lex_state = 124, .external_lex_state = 2}, + [1696] = {.lex_state = 124, .external_lex_state = 2}, + [1697] = {.lex_state = 124, .external_lex_state = 2}, + [1698] = {.lex_state = 124, .external_lex_state = 2}, + [1699] = {.lex_state = 124, .external_lex_state = 2}, + [1700] = {.lex_state = 124, .external_lex_state = 2}, + [1701] = {.lex_state = 124, .external_lex_state = 2}, + [1702] = {.lex_state = 124, .external_lex_state = 2}, + [1703] = {.lex_state = 124, .external_lex_state = 2}, + [1704] = {.lex_state = 124, .external_lex_state = 2}, + [1705] = {.lex_state = 124, .external_lex_state = 2}, + [1706] = {.lex_state = 124, .external_lex_state = 2}, + [1707] = {.lex_state = 124, .external_lex_state = 2}, + [1708] = {.lex_state = 124, .external_lex_state = 2}, + [1709] = {.lex_state = 124, .external_lex_state = 2}, + [1710] = {.lex_state = 124, .external_lex_state = 2}, + [1711] = {.lex_state = 124, .external_lex_state = 2}, + [1712] = {.lex_state = 124, .external_lex_state = 2}, + [1713] = {.lex_state = 124, .external_lex_state = 2}, + [1714] = {.lex_state = 124, .external_lex_state = 2}, + [1715] = {.lex_state = 124, .external_lex_state = 2}, + [1716] = {.lex_state = 124, .external_lex_state = 2}, + [1717] = {.lex_state = 124, .external_lex_state = 2}, + [1718] = {.lex_state = 124, .external_lex_state = 2}, + [1719] = {.lex_state = 124, .external_lex_state = 2}, + [1720] = {.lex_state = 124, .external_lex_state = 2}, + [1721] = {.lex_state = 124, .external_lex_state = 2}, + [1722] = {.lex_state = 124, .external_lex_state = 2}, + [1723] = {.lex_state = 124, .external_lex_state = 2}, + [1724] = {.lex_state = 124, .external_lex_state = 2}, + [1725] = {.lex_state = 124, .external_lex_state = 2}, + [1726] = {.lex_state = 124, .external_lex_state = 2}, + [1727] = {.lex_state = 124, .external_lex_state = 2}, + [1728] = {.lex_state = 124, .external_lex_state = 2}, + [1729] = {.lex_state = 124, .external_lex_state = 2}, + [1730] = {.lex_state = 124, .external_lex_state = 2}, + [1731] = {.lex_state = 124, .external_lex_state = 2}, + [1732] = {.lex_state = 124, .external_lex_state = 2}, + [1733] = {.lex_state = 124, .external_lex_state = 2}, + [1734] = {.lex_state = 124, .external_lex_state = 2}, + [1735] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1736] = {.lex_state = 124, .external_lex_state = 2}, + [1737] = {.lex_state = 124, .external_lex_state = 2}, + [1738] = {.lex_state = 124, .external_lex_state = 2}, + [1739] = {.lex_state = 124, .external_lex_state = 2}, + [1740] = {.lex_state = 124, .external_lex_state = 2}, + [1741] = {.lex_state = 124, .external_lex_state = 2}, + [1742] = {.lex_state = 124, .external_lex_state = 2}, + [1743] = {.lex_state = 124, .external_lex_state = 2}, + [1744] = {.lex_state = 124, .external_lex_state = 2}, + [1745] = {.lex_state = 124, .external_lex_state = 2}, + [1746] = {.lex_state = 124, .external_lex_state = 2}, + [1747] = {.lex_state = 124, .external_lex_state = 2}, + [1748] = {.lex_state = 124, .external_lex_state = 5}, + [1749] = {.lex_state = 124, .external_lex_state = 5}, + [1750] = {.lex_state = 124, .external_lex_state = 2}, + [1751] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1752] = {.lex_state = 124, .external_lex_state = 2}, + [1753] = {.lex_state = 124, .external_lex_state = 2}, + [1754] = {.lex_state = 124, .external_lex_state = 2}, + [1755] = {.lex_state = 124, .external_lex_state = 2}, + [1756] = {.lex_state = 124, .external_lex_state = 2}, + [1757] = {.lex_state = 124, .external_lex_state = 2}, + [1758] = {.lex_state = 124, .external_lex_state = 2}, + [1759] = {.lex_state = 2, .external_lex_state = 9}, + [1760] = {.lex_state = 124, .external_lex_state = 2}, + [1761] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1762] = {.lex_state = 124, .external_lex_state = 2}, + [1763] = {.lex_state = 124, .external_lex_state = 2}, + [1764] = {.lex_state = 124, .external_lex_state = 2}, + [1765] = {.lex_state = 124, .external_lex_state = 2}, + [1766] = {.lex_state = 124, .external_lex_state = 2}, + [1767] = {.lex_state = 2, .external_lex_state = 9}, + [1768] = {.lex_state = 124, .external_lex_state = 2}, + [1769] = {.lex_state = 124, .external_lex_state = 2}, + [1770] = {.lex_state = 124, .external_lex_state = 2}, + [1771] = {.lex_state = 124, .external_lex_state = 2}, + [1772] = {.lex_state = 124, .external_lex_state = 2}, + [1773] = {.lex_state = 124, .external_lex_state = 2}, + [1774] = {.lex_state = 124, .external_lex_state = 2}, + [1775] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1776] = {.lex_state = 124, .external_lex_state = 2}, + [1777] = {.lex_state = 124, .external_lex_state = 2}, + [1778] = {.lex_state = 124, .external_lex_state = 2}, + [1779] = {.lex_state = 124, .external_lex_state = 2}, + [1780] = {.lex_state = 124, .external_lex_state = 2}, + [1781] = {.lex_state = 124, .external_lex_state = 2}, + [1782] = {.lex_state = 124, .external_lex_state = 2}, + [1783] = {.lex_state = 124, .external_lex_state = 2}, + [1784] = {.lex_state = 124, .external_lex_state = 2}, + [1785] = {.lex_state = 124, .external_lex_state = 2}, + [1786] = {.lex_state = 124, .external_lex_state = 2}, + [1787] = {.lex_state = 124, .external_lex_state = 2}, + [1788] = {.lex_state = 2, .external_lex_state = 9}, + [1789] = {.lex_state = 124, .external_lex_state = 2}, + [1790] = {.lex_state = 124, .external_lex_state = 2}, + [1791] = {.lex_state = 124, .external_lex_state = 2}, + [1792] = {.lex_state = 31, .external_lex_state = 2}, + [1793] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1794] = {.lex_state = 124, .external_lex_state = 2}, + [1795] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1796] = {.lex_state = 124, .external_lex_state = 2}, + [1797] = {.lex_state = 31, .external_lex_state = 2}, + [1798] = {.lex_state = 124, .external_lex_state = 2}, + [1799] = {.lex_state = 124, .external_lex_state = 2}, + [1800] = {.lex_state = 124, .external_lex_state = 2}, + [1801] = {.lex_state = 124, .external_lex_state = 2}, + [1802] = {.lex_state = 124, .external_lex_state = 2}, + [1803] = {.lex_state = 124, .external_lex_state = 2}, + [1804] = {.lex_state = 124, .external_lex_state = 2}, + [1805] = {.lex_state = 124, .external_lex_state = 2}, + [1806] = {.lex_state = 124, .external_lex_state = 2}, + [1807] = {.lex_state = 124, .external_lex_state = 2}, + [1808] = {.lex_state = 124, .external_lex_state = 2}, + [1809] = {.lex_state = 124, .external_lex_state = 2}, + [1810] = {.lex_state = 124, .external_lex_state = 2}, + [1811] = {.lex_state = 124, .external_lex_state = 2}, + [1812] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1813] = {.lex_state = 124, .external_lex_state = 2}, + [1814] = {.lex_state = 124, .external_lex_state = 2}, + [1815] = {.lex_state = 124, .external_lex_state = 2}, + [1816] = {.lex_state = 124, .external_lex_state = 2}, + [1817] = {.lex_state = 124, .external_lex_state = 2}, + [1818] = {.lex_state = 124, .external_lex_state = 2}, + [1819] = {.lex_state = 31, .external_lex_state = 2}, + [1820] = {.lex_state = 124, .external_lex_state = 2}, + [1821] = {.lex_state = 124, .external_lex_state = 2}, + [1822] = {.lex_state = 124, .external_lex_state = 2}, + [1823] = {.lex_state = 124, .external_lex_state = 2}, + [1824] = {.lex_state = 124, .external_lex_state = 2}, + [1825] = {.lex_state = 124, .external_lex_state = 2}, + [1826] = {.lex_state = 124, .external_lex_state = 2}, + [1827] = {.lex_state = 124, .external_lex_state = 2}, + [1828] = {.lex_state = 124, .external_lex_state = 2}, + [1829] = {.lex_state = 124, .external_lex_state = 2}, + [1830] = {.lex_state = 124, .external_lex_state = 2}, + [1831] = {.lex_state = 124, .external_lex_state = 2}, + [1832] = {.lex_state = 124, .external_lex_state = 2}, + [1833] = {.lex_state = 124, .external_lex_state = 2}, + [1834] = {.lex_state = 124, .external_lex_state = 2}, + [1835] = {.lex_state = 124, .external_lex_state = 2}, + [1836] = {.lex_state = 2, .external_lex_state = 9}, + [1837] = {.lex_state = 124, .external_lex_state = 2}, + [1838] = {.lex_state = 124, .external_lex_state = 2}, + [1839] = {.lex_state = 124, .external_lex_state = 2}, + [1840] = {.lex_state = 124, .external_lex_state = 2}, + [1841] = {.lex_state = 124, .external_lex_state = 2}, + [1842] = {.lex_state = 124, .external_lex_state = 2}, + [1843] = {.lex_state = 124, .external_lex_state = 2}, + [1844] = {.lex_state = 124, .external_lex_state = 2}, + [1845] = {.lex_state = 124, .external_lex_state = 2}, + [1846] = {.lex_state = 124, .external_lex_state = 2}, + [1847] = {.lex_state = 124, .external_lex_state = 2}, + [1848] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1849] = {.lex_state = 124, .external_lex_state = 2}, + [1850] = {.lex_state = 124, .external_lex_state = 2}, + [1851] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1852] = {.lex_state = 124, .external_lex_state = 2}, + [1853] = {.lex_state = 124, .external_lex_state = 2}, + [1854] = {.lex_state = 124, .external_lex_state = 2}, + [1855] = {.lex_state = 124, .external_lex_state = 2}, + [1856] = {.lex_state = 31, .external_lex_state = 2}, + [1857] = {.lex_state = 124, .external_lex_state = 2}, + [1858] = {.lex_state = 124, .external_lex_state = 2}, + [1859] = {.lex_state = 124, .external_lex_state = 2}, + [1860] = {.lex_state = 124, .external_lex_state = 2}, + [1861] = {.lex_state = 124, .external_lex_state = 2}, + [1862] = {.lex_state = 124, .external_lex_state = 2}, + [1863] = {.lex_state = 124, .external_lex_state = 2}, + [1864] = {.lex_state = 124, .external_lex_state = 2}, + [1865] = {.lex_state = 124, .external_lex_state = 2}, + [1866] = {.lex_state = 124, .external_lex_state = 2}, + [1867] = {.lex_state = 124, .external_lex_state = 2}, + [1868] = {.lex_state = 124, .external_lex_state = 2}, + [1869] = {.lex_state = 124, .external_lex_state = 2}, + [1870] = {.lex_state = 124, .external_lex_state = 2}, + [1871] = {.lex_state = 124, .external_lex_state = 2}, + [1872] = {.lex_state = 124, .external_lex_state = 2}, }; static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { @@ -9061,6 +9125,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_SLASH] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_AMP2] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_extends] = ACTIONS(1), [anon_sym_async] = ACTIONS(1), @@ -9074,22 +9140,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(1), [anon_sym_PERCENT_EQ] = ACTIONS(1), [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), [anon_sym_PIPE_EQ] = ACTIONS(1), [anon_sym_GT_GT_EQ] = ACTIONS(1), [anon_sym_GT_GT_GT_EQ] = ACTIONS(1), [anon_sym_LT_LT_EQ] = ACTIONS(1), [anon_sym_STAR_STAR_EQ] = ACTIONS(1), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1), [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_GT_GT_GT] = ACTIONS(1), [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), + [anon_sym_AMP3] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), @@ -9139,10 +9202,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_jsx_text] = ACTIONS(1), }, [STATE(1)] = { - [sym_program] = STATE(1786), + [sym_program] = STATE(1758), [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(20), [sym_expression_statement] = STATE(471), @@ -9170,11 +9233,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -9189,22 +9252,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -9268,7 +9331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(2)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(18), [sym_expression_statement] = STATE(471), @@ -9296,12 +9359,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_object_pattern] = STATE(1799), + [sym_object_assignment_pattern] = STATE(1424), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1853), + [sym_array_pattern] = STATE(1799), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -9316,31 +9379,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1853), - [sym_spread_element] = STATE(1406), + [sym__destructuring_pattern] = STATE(1799), + [sym_spread_element] = STATE(1429), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [sym_rest_pattern] = STATE(1424), + [sym_method_definition] = STATE(1429), + [sym_pair] = STATE(1429), + [sym_pair_pattern] = STATE(1424), + [sym__property_name] = STATE(1431), + [sym_computed_property_name] = STATE(1431), [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), + [aux_sym_export_statement_repeat1] = STATE(1015), + [aux_sym_object_repeat1] = STATE(1433), + [aux_sym_object_pattern_repeat1] = STATE(1434), [sym_identifier] = ACTIONS(97), [anon_sym_export] = ACTIONS(99), [anon_sym_STAR] = ACTIONS(101), @@ -9407,7 +9470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(3)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(18), [sym_expression_statement] = STATE(471), @@ -9435,12 +9498,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_object_pattern] = STATE(1799), + [sym_object_assignment_pattern] = STATE(1424), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1853), + [sym_array_pattern] = STATE(1799), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -9455,31 +9518,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1853), - [sym_spread_element] = STATE(1406), + [sym__destructuring_pattern] = STATE(1799), + [sym_spread_element] = STATE(1429), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [sym_rest_pattern] = STATE(1424), + [sym_method_definition] = STATE(1429), + [sym_pair] = STATE(1429), + [sym_pair_pattern] = STATE(1424), + [sym__property_name] = STATE(1431), + [sym_computed_property_name] = STATE(1431), [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), + [aux_sym_export_statement_repeat1] = STATE(1015), + [aux_sym_object_repeat1] = STATE(1433), + [aux_sym_object_pattern_repeat1] = STATE(1434), [sym_identifier] = ACTIONS(97), [anon_sym_export] = ACTIONS(99), [anon_sym_STAR] = ACTIONS(101), @@ -9546,7 +9609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(4)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(22), [sym_expression_statement] = STATE(471), @@ -9574,12 +9637,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_object_pattern] = STATE(1799), + [sym_object_assignment_pattern] = STATE(1424), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1853), + [sym_array_pattern] = STATE(1799), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -9594,31 +9657,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1853), - [sym_spread_element] = STATE(1406), + [sym__destructuring_pattern] = STATE(1799), + [sym_spread_element] = STATE(1429), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [sym_rest_pattern] = STATE(1424), + [sym_method_definition] = STATE(1429), + [sym_pair] = STATE(1429), + [sym_pair_pattern] = STATE(1424), + [sym__property_name] = STATE(1431), + [sym_computed_property_name] = STATE(1431), [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), + [aux_sym_export_statement_repeat1] = STATE(1015), + [aux_sym_object_repeat1] = STATE(1433), + [aux_sym_object_pattern_repeat1] = STATE(1434), [sym_identifier] = ACTIONS(97), [anon_sym_export] = ACTIONS(99), [anon_sym_STAR] = ACTIONS(101), @@ -9685,7 +9748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(5)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(24), [sym_expression_statement] = STATE(471), @@ -9713,12 +9776,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_object_pattern] = STATE(1799), + [sym_object_assignment_pattern] = STATE(1424), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1853), + [sym_array_pattern] = STATE(1799), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -9733,31 +9796,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1853), - [sym_spread_element] = STATE(1458), + [sym__destructuring_pattern] = STATE(1799), + [sym_spread_element] = STATE(1452), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [sym_rest_pattern] = STATE(1424), + [sym_method_definition] = STATE(1452), + [sym_pair] = STATE(1452), + [sym_pair_pattern] = STATE(1424), + [sym__property_name] = STATE(1431), + [sym_computed_property_name] = STATE(1431), [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), + [aux_sym_export_statement_repeat1] = STATE(1015), + [aux_sym_object_repeat1] = STATE(1455), + [aux_sym_object_pattern_repeat1] = STATE(1434), [sym_identifier] = ACTIONS(131), [anon_sym_export] = ACTIONS(133), [anon_sym_STAR] = ACTIONS(101), @@ -9824,7 +9887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(6)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(24), [sym_expression_statement] = STATE(471), @@ -9852,12 +9915,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_object_pattern] = STATE(1799), + [sym_object_assignment_pattern] = STATE(1424), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1853), + [sym_array_pattern] = STATE(1799), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -9872,31 +9935,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1853), - [sym_spread_element] = STATE(1458), + [sym__destructuring_pattern] = STATE(1799), + [sym_spread_element] = STATE(1452), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [sym_rest_pattern] = STATE(1424), + [sym_method_definition] = STATE(1452), + [sym_pair] = STATE(1452), + [sym_pair_pattern] = STATE(1424), + [sym__property_name] = STATE(1431), + [sym_computed_property_name] = STATE(1431), [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), + [aux_sym_export_statement_repeat1] = STATE(1015), + [aux_sym_object_repeat1] = STATE(1455), + [aux_sym_object_pattern_repeat1] = STATE(1434), [sym_identifier] = ACTIONS(147), [anon_sym_export] = ACTIONS(149), [anon_sym_STAR] = ACTIONS(101), @@ -9961,17 +10024,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(7)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -9983,9 +10046,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -9994,11 +10057,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), @@ -10047,7 +10110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(204), @@ -10089,17 +10152,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(8)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -10111,9 +10174,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -10122,11 +10185,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), @@ -10175,7 +10238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(204), @@ -10219,7 +10282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(9)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), [sym_expression_statement] = STATE(471), @@ -10247,11 +10310,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -10266,22 +10329,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [ts_builtin_sym_end] = ACTIONS(218), [sym_identifier] = ACTIONS(220), [anon_sym_export] = ACTIONS(223), @@ -10345,17 +10408,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(10)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -10367,9 +10430,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -10378,11 +10441,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), @@ -10431,7 +10494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(204), @@ -10475,7 +10538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(11)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(12), [sym_expression_statement] = STATE(471), @@ -10503,11 +10566,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -10522,22 +10585,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(353), @@ -10602,7 +10665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(12)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), [sym_expression_statement] = STATE(471), @@ -10630,11 +10693,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -10649,22 +10712,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(357), @@ -10729,7 +10792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(13)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), [sym_expression_statement] = STATE(471), @@ -10757,11 +10820,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -10776,22 +10839,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(361), @@ -10856,7 +10919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(14)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(13), [sym_expression_statement] = STATE(471), @@ -10884,11 +10947,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -10903,22 +10966,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(365), @@ -10981,17 +11044,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(15)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -11005,7 +11068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -11014,9 +11077,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(165), @@ -11066,7 +11129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(406), @@ -11107,17 +11170,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(16)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -11131,7 +11194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -11140,9 +11203,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(165), @@ -11192,7 +11255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(449), @@ -11235,7 +11298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(17)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(21), [sym_expression_statement] = STATE(471), @@ -11263,11 +11326,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -11282,22 +11345,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [ts_builtin_sym_end] = ACTIONS(463), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -11360,7 +11423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(18)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), [sym_expression_statement] = STATE(471), @@ -11388,11 +11451,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -11407,22 +11470,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -11485,7 +11548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(19)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(18), [sym_expression_statement] = STATE(471), @@ -11513,11 +11576,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -11532,22 +11595,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -11610,7 +11673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(20)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), [sym_expression_statement] = STATE(471), @@ -11638,11 +11701,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -11657,22 +11720,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [ts_builtin_sym_end] = ACTIONS(463), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -11735,7 +11798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(21)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), [sym_expression_statement] = STATE(471), @@ -11763,11 +11826,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -11782,22 +11845,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [ts_builtin_sym_end] = ACTIONS(469), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -11860,7 +11923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(22)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), [sym_expression_statement] = STATE(471), @@ -11888,11 +11951,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -11907,22 +11970,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -11985,7 +12048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(23)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(22), [sym_expression_statement] = STATE(471), @@ -12013,11 +12076,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -12032,22 +12095,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12110,7 +12173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(24)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), [sym_expression_statement] = STATE(471), @@ -12138,11 +12201,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -12157,22 +12220,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12235,7 +12298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(25)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(24), [sym_expression_statement] = STATE(471), @@ -12263,11 +12326,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -12282,22 +12345,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12360,7 +12423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(26)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), [sym_expression_statement] = STATE(471), @@ -12388,11 +12451,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -12407,22 +12470,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12485,7 +12548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(27)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(26), [sym_expression_statement] = STATE(471), @@ -12513,11 +12576,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -12532,22 +12595,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12610,7 +12673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(28)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(30), [sym_expression_statement] = STATE(471), @@ -12638,11 +12701,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -12657,22 +12720,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12733,17 +12796,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(29)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -12755,9 +12818,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -12766,9 +12829,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), @@ -12816,7 +12879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(204), @@ -12860,7 +12923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(30)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), [sym_expression_statement] = STATE(471), @@ -12888,11 +12951,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -12907,22 +12970,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1267), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12983,17 +13046,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(31)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -13005,9 +13068,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -13016,9 +13079,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), @@ -13066,7 +13129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(204), @@ -13108,17 +13171,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(32)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -13132,7 +13195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -13141,9 +13204,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(165), @@ -13191,7 +13254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(449), @@ -13232,17 +13295,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(33)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -13256,7 +13319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -13265,9 +13328,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(165), @@ -13314,7 +13377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(449), @@ -13356,17 +13419,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(34)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -13380,7 +13443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -13389,9 +13452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(165), @@ -13439,7 +13502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(406), @@ -13480,17 +13543,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(35)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -13504,7 +13567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -13513,9 +13576,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(165), @@ -13562,7 +13625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(449), @@ -13604,17 +13667,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(36)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -13628,7 +13691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -13637,9 +13700,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(165), @@ -13687,7 +13750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(449), @@ -13728,17 +13791,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(37)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -13750,9 +13813,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -13761,9 +13824,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), @@ -13810,7 +13873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(204), @@ -13852,17 +13915,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(38)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -13876,7 +13939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -13885,9 +13948,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(165), @@ -13935,7 +13998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(406), @@ -13976,17 +14039,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(39)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -14000,7 +14063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -14009,9 +14072,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_STAR] = ACTIONS(165), @@ -14058,7 +14121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(534), @@ -14102,9 +14165,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(40)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), - [sym_statement] = STATE(1403), + [sym_statement] = STATE(1502), [sym_expression_statement] = STATE(471), [sym_variable_declaration] = STATE(419), [sym_lexical_declaration] = STATE(419), @@ -14130,11 +14193,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -14149,21 +14212,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -14225,9 +14288,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(41)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), - [sym_statement] = STATE(1755), + [sym_statement] = STATE(1862), [sym_expression_statement] = STATE(471), [sym_variable_declaration] = STATE(419), [sym_lexical_declaration] = STATE(419), @@ -14253,11 +14316,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -14272,21 +14335,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -14348,7 +14411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(42)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(424), [sym_expression_statement] = STATE(471), @@ -14376,11 +14439,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -14395,21 +14458,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14471,7 +14534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(43)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(448), [sym_expression_statement] = STATE(471), @@ -14499,11 +14562,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -14518,21 +14581,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14594,7 +14657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(44)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(463), [sym_expression_statement] = STATE(471), @@ -14622,11 +14685,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -14641,21 +14704,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14717,7 +14780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(45)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(464), [sym_expression_statement] = STATE(471), @@ -14745,11 +14808,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -14764,21 +14827,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14840,7 +14903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(46)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(466), [sym_expression_statement] = STATE(471), @@ -14868,11 +14931,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -14887,21 +14950,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14963,7 +15026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(47)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(479), [sym_expression_statement] = STATE(471), @@ -14991,11 +15054,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -15010,21 +15073,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15086,7 +15149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(48)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(480), [sym_expression_statement] = STATE(471), @@ -15114,11 +15177,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -15133,21 +15196,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15209,7 +15272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(49)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(481), [sym_expression_statement] = STATE(471), @@ -15237,11 +15300,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -15256,21 +15319,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15332,7 +15395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(50)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(483), [sym_expression_statement] = STATE(471), @@ -15360,11 +15423,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -15379,21 +15442,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15453,17 +15516,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(51)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -15477,7 +15540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -15486,9 +15549,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(165), @@ -15535,7 +15598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(406), @@ -15578,7 +15641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(52)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(452), [sym_expression_statement] = STATE(471), @@ -15606,11 +15669,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -15625,21 +15688,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -15701,7 +15764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(53)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(444), [sym_expression_statement] = STATE(471), @@ -15729,11 +15792,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -15748,21 +15811,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15824,7 +15887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(54)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(473), [sym_expression_statement] = STATE(471), @@ -15852,11 +15915,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -15871,21 +15934,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -15947,7 +16010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(55)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(429), [sym_expression_statement] = STATE(471), @@ -15975,11 +16038,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -15994,21 +16057,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -16070,7 +16133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(56)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(432), [sym_expression_statement] = STATE(471), @@ -16098,11 +16161,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -16117,21 +16180,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -16193,7 +16256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(57)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(411), [sym_expression_statement] = STATE(471), @@ -16221,11 +16284,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -16240,21 +16303,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -16316,7 +16379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(58)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(444), [sym_expression_statement] = STATE(471), @@ -16344,11 +16407,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -16363,21 +16426,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -16439,7 +16502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(59)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(424), [sym_expression_statement] = STATE(471), @@ -16467,11 +16530,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -16486,21 +16549,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -16562,7 +16625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(60)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(448), [sym_expression_statement] = STATE(471), @@ -16590,11 +16653,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -16609,21 +16672,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -16685,7 +16748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(61)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(463), [sym_expression_statement] = STATE(471), @@ -16713,11 +16776,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -16732,21 +16795,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -16808,7 +16871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(62)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(464), [sym_expression_statement] = STATE(471), @@ -16836,11 +16899,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -16855,21 +16918,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -16931,7 +16994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(63)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(466), [sym_expression_statement] = STATE(471), @@ -16959,11 +17022,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -16978,21 +17041,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -17054,7 +17117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(64)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(479), [sym_expression_statement] = STATE(471), @@ -17082,11 +17145,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -17101,21 +17164,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -17177,7 +17240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(65)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(480), [sym_expression_statement] = STATE(471), @@ -17205,11 +17268,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -17224,21 +17287,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -17300,7 +17363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(66)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(481), [sym_expression_statement] = STATE(471), @@ -17328,11 +17391,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -17347,21 +17410,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -17423,7 +17486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(67)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(483), [sym_expression_statement] = STATE(471), @@ -17451,11 +17514,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -17470,21 +17533,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(555), @@ -17546,7 +17609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(68)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(452), [sym_expression_statement] = STATE(471), @@ -17574,11 +17637,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -17593,21 +17656,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -17669,7 +17732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(69)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(429), [sym_expression_statement] = STATE(471), @@ -17697,11 +17760,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -17716,21 +17779,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -17792,7 +17855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(70)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(432), [sym_expression_statement] = STATE(471), @@ -17820,11 +17883,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -17839,21 +17902,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -17915,7 +17978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(71)] = { [sym_export_statement] = STATE(471), [sym_declaration] = STATE(471), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [sym_import_statement] = STATE(471), [sym_statement] = STATE(473), [sym_expression_statement] = STATE(471), @@ -17943,11 +18006,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -17962,21 +18025,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1749), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -18036,17 +18099,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(72)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -18058,9 +18121,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -18069,9 +18132,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(165), @@ -18117,7 +18180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(204), @@ -18159,17 +18222,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(73)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -18183,7 +18246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -18192,9 +18255,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(165), @@ -18240,7 +18303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(449), @@ -18281,17 +18344,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(74)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -18305,7 +18368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -18314,9 +18377,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(165), @@ -18362,7 +18425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(406), @@ -18403,17 +18466,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(75)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -18427,7 +18490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -18436,9 +18499,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(165), @@ -18483,7 +18546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(449), @@ -18524,17 +18587,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(76)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -18548,7 +18611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -18557,9 +18620,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(165), @@ -18604,7 +18667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(449), @@ -18645,17 +18708,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(77)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -18667,9 +18730,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -18678,9 +18741,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_STAR] = ACTIONS(165), @@ -18725,7 +18788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(596), @@ -18766,17 +18829,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(78)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -18788,9 +18851,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -18799,9 +18862,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_STAR] = ACTIONS(165), @@ -18845,7 +18908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(632), @@ -18886,17 +18949,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(79)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -18910,7 +18973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -18919,9 +18982,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(165), @@ -18965,7 +19028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(449), @@ -19006,17 +19069,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(80)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -19030,7 +19093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -19039,9 +19102,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(646), @@ -19074,7 +19137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(652), [anon_sym_CARET] = ACTIONS(648), [anon_sym_PIPE] = ACTIONS(652), [anon_sym_PLUS] = ACTIONS(412), @@ -19115,17 +19178,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(81)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -19137,9 +19200,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -19148,9 +19211,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_STAR] = ACTIONS(664), @@ -19180,7 +19243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(652), [anon_sym_CARET] = ACTIONS(648), [anon_sym_PIPE] = ACTIONS(652), [anon_sym_PLUS] = ACTIONS(75), @@ -19222,17 +19285,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(82)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -19246,7 +19309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -19255,9 +19318,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_STAR] = ACTIONS(668), @@ -19287,7 +19350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(652), [anon_sym_CARET] = ACTIONS(648), [anon_sym_PIPE] = ACTIONS(652), [anon_sym_PLUS] = ACTIONS(540), @@ -19329,17 +19392,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(83)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(913), + [sym_expression] = STATE(926), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -19351,9 +19414,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -19362,9 +19425,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_STAR] = ACTIONS(674), @@ -19392,7 +19455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(652), [anon_sym_CARET] = ACTIONS(648), [anon_sym_PIPE] = ACTIONS(652), [anon_sym_PLUS] = ACTIONS(602), @@ -19433,17 +19496,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(84)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -19457,7 +19520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -19466,9 +19529,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_STAR] = ACTIONS(682), @@ -19496,7 +19559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(652), [anon_sym_CARET] = ACTIONS(648), [anon_sym_PIPE] = ACTIONS(652), [anon_sym_PLUS] = ACTIONS(452), @@ -19537,17 +19600,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(85)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(918), + [sym_expression] = STATE(919), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -19559,9 +19622,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -19570,9 +19633,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_STAR] = ACTIONS(686), @@ -19599,7 +19662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(652), [anon_sym_CARET] = ACTIONS(648), [anon_sym_PIPE] = ACTIONS(652), [anon_sym_PLUS] = ACTIONS(635), @@ -19689,7 +19752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(692), [anon_sym_CARET] = ACTIONS(690), [anon_sym_PIPE] = ACTIONS(692), [anon_sym_PLUS] = ACTIONS(692), @@ -19780,7 +19843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(696), [anon_sym_CARET] = ACTIONS(694), [anon_sym_PIPE] = ACTIONS(696), [anon_sym_PLUS] = ACTIONS(696), @@ -19871,7 +19934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(696), [anon_sym_CARET] = ACTIONS(694), [anon_sym_PIPE] = ACTIONS(696), [anon_sym_PLUS] = ACTIONS(696), @@ -19962,7 +20025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(702), [anon_sym_CARET] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(702), [anon_sym_PLUS] = ACTIONS(702), @@ -20053,7 +20116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(706), [anon_sym_CARET] = ACTIONS(704), [anon_sym_PIPE] = ACTIONS(706), [anon_sym_PLUS] = ACTIONS(706), @@ -20144,7 +20207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(710), [anon_sym_CARET] = ACTIONS(708), [anon_sym_PIPE] = ACTIONS(710), [anon_sym_PLUS] = ACTIONS(710), @@ -20235,7 +20298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(714), [anon_sym_CARET] = ACTIONS(716), [anon_sym_PIPE] = ACTIONS(714), [anon_sym_PLUS] = ACTIONS(710), @@ -20325,7 +20388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(726), [anon_sym_CARET] = ACTIONS(728), [anon_sym_PIPE] = ACTIONS(726), [anon_sym_PLUS] = ACTIONS(724), @@ -20415,7 +20478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(736), [anon_sym_CARET] = ACTIONS(738), [anon_sym_PIPE] = ACTIONS(736), [anon_sym_PLUS] = ACTIONS(734), @@ -20505,7 +20568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(746), [anon_sym_CARET] = ACTIONS(748), [anon_sym_PIPE] = ACTIONS(746), [anon_sym_PLUS] = ACTIONS(744), @@ -20595,7 +20658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(756), [anon_sym_CARET] = ACTIONS(758), [anon_sym_PIPE] = ACTIONS(756), [anon_sym_PLUS] = ACTIONS(754), @@ -20685,7 +20748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(766), [anon_sym_CARET] = ACTIONS(768), [anon_sym_PIPE] = ACTIONS(766), [anon_sym_PLUS] = ACTIONS(764), @@ -20775,7 +20838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(776), [anon_sym_CARET] = ACTIONS(778), [anon_sym_PIPE] = ACTIONS(776), [anon_sym_PLUS] = ACTIONS(774), @@ -20865,7 +20928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(786), [anon_sym_CARET] = ACTIONS(788), [anon_sym_PIPE] = ACTIONS(786), [anon_sym_PLUS] = ACTIONS(784), @@ -20955,7 +21018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(796), [anon_sym_CARET] = ACTIONS(798), [anon_sym_PIPE] = ACTIONS(796), [anon_sym_PLUS] = ACTIONS(794), @@ -20998,20 +21061,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(101)] = { [sym_declaration] = STATE(469), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_expression] = STATE(915), [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -21026,9 +21089,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -21037,9 +21100,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1329), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -21087,20 +21150,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(102)] = { [sym_declaration] = STATE(451), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_expression] = STATE(891), [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -21115,9 +21178,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -21126,9 +21189,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1359), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -21176,20 +21239,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(103)] = { [sym_declaration] = STATE(451), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_expression] = STATE(891), [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -21204,9 +21267,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -21215,9 +21278,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1329), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -21265,20 +21328,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(104)] = { [sym_declaration] = STATE(469), - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_expression] = STATE(915), [sym_primary_expression] = STATE(686), [sym_yield_expression] = STATE(746), [sym_object] = STATE(740), - [sym_object_pattern] = STATE(1790), + [sym_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_class_declaration] = STATE(419), @@ -21293,9 +21356,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -21304,9 +21367,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1359), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -21353,18 +21416,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(105)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1410), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -21378,8 +21441,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1280), + [sym_spread_element] = STATE(1464), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -21388,13 +21451,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1465), + [aux_sym_array_pattern_repeat1] = STATE(1418), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -21441,18 +21504,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(106)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1410), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -21466,8 +21529,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1280), + [sym_spread_element] = STATE(1464), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -21476,13 +21539,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1465), + [aux_sym_array_pattern_repeat1] = STATE(1418), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -21529,18 +21592,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(107)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(872), + [sym_expression] = STATE(871), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1410), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -21554,8 +21617,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1280), + [sym_spread_element] = STATE(1412), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -21564,13 +21627,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1402), + [aux_sym_array_pattern_repeat1] = STATE(1418), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -21617,18 +21680,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(108)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1410), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -21642,8 +21705,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1280), + [sym_spread_element] = STATE(1464), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -21652,13 +21715,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1465), + [aux_sym_array_pattern_repeat1] = STATE(1418), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -21705,18 +21768,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(109)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1410), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -21730,8 +21793,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1280), + [sym_spread_element] = STATE(1464), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -21740,13 +21803,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1465), + [aux_sym_array_pattern_repeat1] = STATE(1418), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -21793,18 +21856,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(110)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1410), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -21818,8 +21881,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1280), + [sym_spread_element] = STATE(1464), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -21828,13 +21891,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1465), + [aux_sym_array_pattern_repeat1] = STATE(1418), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -21881,18 +21944,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(111)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1410), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -21906,8 +21969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1280), + [sym_spread_element] = STATE(1412), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -21916,13 +21979,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1402), + [aux_sym_array_pattern_repeat1] = STATE(1418), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -21969,7 +22032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(112)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_variable_declaration] = STATE(141), [sym_lexical_declaration] = STATE(141), [sym_empty_statement] = STATE(141), @@ -21978,11 +22041,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1481), + [sym_object_pattern] = STATE(1406), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1481), + [sym_array_pattern] = STATE(1406), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -21996,19 +22059,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1481), + [sym__destructuring_pattern] = STATE(1406), [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_sequence_expression] = STATE(1818), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(836), [anon_sym_export] = ACTIONS(838), [anon_sym_LBRACE] = ACTIONS(840), @@ -22056,17 +22119,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(113)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(880), + [sym_expression] = STATE(879), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22080,20 +22143,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__initializer] = STATE(1405), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1771), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -22143,20 +22206,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(114)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_expression] = STATE(883), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1481), + [sym_object_pattern] = STATE(1406), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1481), + [sym_array_pattern] = STATE(1406), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22170,19 +22233,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1481), + [sym__destructuring_pattern] = STATE(1406), [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_sequence_expression] = STATE(1871), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(836), [anon_sym_export] = ACTIONS(838), [anon_sym_LBRACE] = ACTIONS(840), @@ -22230,18 +22293,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(115)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1319), + [sym_assignment_pattern] = STATE(1410), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), + [sym_array_pattern] = STATE(1319), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22255,7 +22318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), + [sym__destructuring_pattern] = STATE(1319), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -22264,12 +22327,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_pattern_repeat1] = STATE(1418), [sym_identifier] = ACTIONS(867), [anon_sym_export] = ACTIONS(869), [anon_sym_LBRACE] = ACTIONS(871), @@ -22316,18 +22379,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(116)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(975), + [sym_expression] = STATE(970), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1410), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22341,7 +22404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), + [sym__destructuring_pattern] = STATE(1280), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -22350,12 +22413,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_pattern_repeat1] = STATE(1418), [sym_identifier] = ACTIONS(887), [anon_sym_export] = ACTIONS(889), [anon_sym_LBRACE] = ACTIONS(891), @@ -22402,18 +22465,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(117)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1509), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22427,8 +22490,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1280), + [sym_spread_element] = STATE(1439), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -22437,11 +22500,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1441), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -22488,18 +22551,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(118)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1319), + [sym_assignment_pattern] = STATE(1463), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), + [sym_array_pattern] = STATE(1319), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22513,7 +22576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), + [sym__destructuring_pattern] = STATE(1319), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -22522,12 +22585,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1371), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_pattern_repeat1] = STATE(1466), [sym_identifier] = ACTIONS(867), [anon_sym_export] = ACTIONS(869), [anon_sym_LBRACE] = ACTIONS(871), @@ -22574,18 +22637,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(119)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(875), + [sym_expression] = STATE(877), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1468), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22599,21 +22662,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), + [sym__destructuring_pattern] = STATE(1280), [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_sequence_expression] = STATE(1840), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1354), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -22659,18 +22722,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(120)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(866), + [sym_expression] = STATE(865), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1468), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22684,21 +22747,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), + [sym__destructuring_pattern] = STATE(1280), [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_sequence_expression] = STATE(1796), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1354), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -22744,18 +22807,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(121)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1319), + [sym_assignment_pattern] = STATE(1509), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), + [sym_array_pattern] = STATE(1319), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22769,7 +22832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), + [sym__destructuring_pattern] = STATE(1319), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -22778,11 +22841,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1441), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(867), [anon_sym_export] = ACTIONS(869), [anon_sym_LBRACE] = ACTIONS(871), @@ -22829,17 +22892,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(122)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(867), + [sym_expression] = STATE(866), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22853,8 +22916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1825), + [sym_spread_element] = STATE(1425), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -22863,10 +22926,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1426), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -22913,17 +22976,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(123)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -22937,8 +23000,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1825), + [sym_spread_element] = STATE(1419), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -22947,10 +23010,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1420), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -22997,18 +23060,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(124)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1319), + [sym_assignment_pattern] = STATE(1743), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), + [sym_array_pattern] = STATE(1319), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -23022,7 +23085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), + [sym__destructuring_pattern] = STATE(1319), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -23031,11 +23094,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1501), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(867), [anon_sym_export] = ACTIONS(869), [anon_sym_LBRACE] = ACTIONS(871), @@ -23081,17 +23144,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(125)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -23105,8 +23168,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1825), + [sym_spread_element] = STATE(1483), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -23115,10 +23178,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1484), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -23165,18 +23228,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(126)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1319), + [sym_assignment_pattern] = STATE(1468), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), + [sym_array_pattern] = STATE(1319), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -23190,7 +23253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), + [sym__destructuring_pattern] = STATE(1319), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -23199,11 +23262,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1354), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(867), [anon_sym_export] = ACTIONS(869), [anon_sym_LBRACE] = ACTIONS(871), @@ -23249,17 +23312,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(127)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -23273,8 +23336,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1825), + [sym_spread_element] = STATE(1439), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -23283,9 +23346,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -23333,18 +23396,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(128)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1319), + [sym_assignment_pattern] = STATE(1743), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), + [sym_array_pattern] = STATE(1319), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -23358,7 +23421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), + [sym__destructuring_pattern] = STATE(1319), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -23367,11 +23430,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1501), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(867), [anon_sym_export] = ACTIONS(869), [anon_sym_LBRACE] = ACTIONS(871), @@ -23417,17 +23480,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(129)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -23441,20 +23504,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1825), + [sym_spread_element] = STATE(1810), [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_sequence_expression] = STATE(1810), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -23500,18 +23563,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(130)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1319), + [sym_assignment_pattern] = STATE(1692), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), + [sym_array_pattern] = STATE(1319), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -23525,7 +23588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), + [sym__destructuring_pattern] = STATE(1319), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -23534,11 +23597,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1403), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(867), [anon_sym_export] = ACTIONS(869), [anon_sym_LBRACE] = ACTIONS(871), @@ -23583,17 +23646,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(131)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -23607,20 +23670,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__destructuring_pattern] = STATE(1825), + [sym_spread_element] = STATE(1870), [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_sequence_expression] = STATE(1870), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -23666,18 +23729,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(132)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(941), + [sym_expression] = STATE(889), [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_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1692), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1282), + [sym_array_pattern] = STATE(1280), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -23691,7 +23754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1282), + [sym__destructuring_pattern] = STATE(1280), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -23700,11 +23763,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1403), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(810), [anon_sym_export] = ACTIONS(812), [anon_sym_LBRACE] = ACTIONS(434), @@ -23749,8 +23812,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(133)] = { - [sym_namespace_export] = STATE(1692), - [sym_export_clause] = STATE(1358), + [sym_namespace_export] = STATE(1630), + [sym_export_clause] = STATE(1382), [sym_declaration] = STATE(433), [sym_variable_declaration] = STATE(419), [sym_lexical_declaration] = STATE(419), @@ -23758,10 +23821,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_decorator] = STATE(1087), + [aux_sym_export_statement_repeat1] = STATE(1383), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [anon_sym_STAR] = ACTIONS(930), [anon_sym_default] = ACTIONS(932), [anon_sym_LBRACE] = ACTIONS(934), @@ -23806,7 +23869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -23832,8 +23895,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(134)] = { - [sym_namespace_export] = STATE(1692), - [sym_export_clause] = STATE(1358), + [sym_namespace_export] = STATE(1630), + [sym_export_clause] = STATE(1382), [sym_declaration] = STATE(433), [sym_variable_declaration] = STATE(419), [sym_lexical_declaration] = STATE(419), @@ -23841,10 +23904,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_decorator] = STATE(1087), + [aux_sym_export_statement_repeat1] = STATE(1383), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), [anon_sym_STAR] = ACTIONS(930), [anon_sym_default] = ACTIONS(932), [anon_sym_LBRACE] = ACTIONS(934), @@ -23889,7 +23952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -23915,18 +23978,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(135)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1319), + [sym_assignment_pattern] = STATE(1743), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1307), + [sym_array_pattern] = STATE(1319), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -23940,7 +24003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1307), + [sym__destructuring_pattern] = STATE(1319), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -23949,11 +24012,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1501), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(867), [anon_sym_export] = ACTIONS(869), [anon_sym_LBRACE] = ACTIONS(871), @@ -23998,17 +24061,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(136)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(880), + [sym_expression] = STATE(879), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -24022,19 +24085,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1771), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -24081,8 +24144,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(137)] = { - [sym_namespace_export] = STATE(1692), - [sym_export_clause] = STATE(1358), + [sym_namespace_export] = STATE(1630), + [sym_export_clause] = STATE(1382), [sym_declaration] = STATE(433), [sym_variable_declaration] = STATE(419), [sym_lexical_declaration] = STATE(419), @@ -24090,10 +24153,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_decorator] = STATE(1087), + [aux_sym_export_statement_repeat1] = STATE(1383), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [anon_sym_STAR] = ACTIONS(930), [anon_sym_default] = ACTIONS(932), [anon_sym_LBRACE] = ACTIONS(934), @@ -24138,7 +24201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -24164,18 +24227,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(138)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -24189,19 +24252,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1855), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -24246,18 +24309,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(139)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_empty_statement] = STATE(150), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(883), + [sym_expression] = STATE(882), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -24271,19 +24334,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -24328,17 +24391,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(140)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1494), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1472), + [sym_array_pattern] = STATE(1494), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -24352,7 +24415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1472), + [sym__destructuring_pattern] = STATE(1494), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -24361,9 +24424,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(955), [anon_sym_export] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(840), @@ -24410,18 +24473,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(141)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -24435,19 +24498,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1853), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -24492,17 +24555,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(142)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -24514,21 +24577,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1645), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -24574,18 +24637,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(143)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -24599,19 +24662,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1846), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -24656,17 +24719,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(144)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(882), + [sym_expression] = STATE(881), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -24680,19 +24743,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -24737,17 +24800,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(145)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -24761,19 +24824,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1822), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -24818,17 +24881,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(146)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(876), + [sym_expression] = STATE(874), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -24842,19 +24905,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -24899,17 +24962,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(147)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(874), + [sym_expression] = STATE(873), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -24923,19 +24986,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1798), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -24980,17 +25043,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(148)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(878), + [sym_expression] = STATE(876), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25004,19 +25067,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1849), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -25061,17 +25124,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(149)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(831), + [sym_expression] = STATE(830), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25085,19 +25148,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -25142,17 +25205,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(150)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(832), + [sym_expression] = STATE(831), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25166,19 +25229,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1834), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -25223,17 +25286,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(151)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(877), + [sym_expression] = STATE(875), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25247,19 +25310,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -25304,18 +25367,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(152)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25329,7 +25392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -25338,9 +25401,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(987), @@ -25384,18 +25447,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(153)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(628), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(910), + [sym_expression] = STATE(912), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25407,9 +25470,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -25418,9 +25481,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(989), @@ -25464,18 +25527,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(154)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(629), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(911), + [sym_expression] = STATE(913), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25487,9 +25550,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -25498,9 +25561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(989), @@ -25544,17 +25607,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(155)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(880), + [sym_expression] = STATE(879), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25568,19 +25631,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1771), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -25624,17 +25687,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(156)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(836), + [sym_expression] = STATE(835), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25648,19 +25711,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1832), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -25704,17 +25767,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(157)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25728,7 +25791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -25737,9 +25800,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -25784,17 +25847,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(158)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(886), + [sym_expression] = STATE(836), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25808,19 +25871,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1791), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -25864,18 +25927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(159)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -25887,9 +25950,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -25898,9 +25961,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(993), @@ -25944,17 +26007,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(160)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(881), + [sym_expression] = STATE(880), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -25968,19 +26031,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1827), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -26024,17 +26087,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(161)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(873), + [sym_expression] = STATE(872), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -26048,19 +26111,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1820), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -26104,17 +26167,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(162)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -26128,19 +26191,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1865), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -26184,17 +26247,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(163)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -26208,19 +26271,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -26264,18 +26327,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(164)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -26289,7 +26352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -26298,9 +26361,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(987), @@ -26344,17 +26407,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(165)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -26368,7 +26431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -26377,9 +26440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(995), [anon_sym_export] = ACTIONS(997), [anon_sym_LBRACE] = ACTIONS(434), @@ -26424,8 +26487,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(166)] = { - [sym_namespace_export] = STATE(1692), - [sym_export_clause] = STATE(1358), + [sym_namespace_export] = STATE(1630), + [sym_export_clause] = STATE(1382), [sym_declaration] = STATE(433), [sym_variable_declaration] = STATE(419), [sym_lexical_declaration] = STATE(419), @@ -26433,8 +26496,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_decorator] = STATE(1087), + [aux_sym_export_statement_repeat1] = STATE(1383), [anon_sym_STAR] = ACTIONS(930), [anon_sym_default] = ACTIONS(932), [anon_sym_LBRACE] = ACTIONS(934), @@ -26478,7 +26541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -26504,18 +26567,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(167)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -26527,9 +26590,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -26538,9 +26601,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(993), @@ -26584,18 +26647,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(168)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -26609,7 +26672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -26618,9 +26681,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(987), @@ -26664,18 +26727,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(169)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -26689,7 +26752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -26698,9 +26761,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(987), @@ -26744,17 +26807,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(170)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -26768,19 +26831,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -26824,17 +26887,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(171)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(833), + [sym_expression] = STATE(832), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -26848,19 +26911,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1770), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -26904,8 +26967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(172)] = { - [sym_namespace_export] = STATE(1692), - [sym_export_clause] = STATE(1358), + [sym_namespace_export] = STATE(1630), + [sym_export_clause] = STATE(1382), [sym_declaration] = STATE(433), [sym_variable_declaration] = STATE(419), [sym_lexical_declaration] = STATE(419), @@ -26913,8 +26976,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_decorator] = STATE(1087), + [aux_sym_export_statement_repeat1] = STATE(1383), [anon_sym_STAR] = ACTIONS(930), [anon_sym_default] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(934), @@ -26958,7 +27021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -26984,18 +27047,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(173)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -27007,9 +27070,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -27018,9 +27081,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(993), @@ -27064,17 +27127,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(174)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -27086,21 +27149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [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_sequence_expression] = STATE(1537), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -27144,18 +27207,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(175)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -27169,7 +27232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -27178,9 +27241,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(987), @@ -27224,18 +27287,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(176)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -27249,7 +27312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -27258,9 +27321,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(993), @@ -27304,18 +27367,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(177)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -27327,9 +27390,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -27338,9 +27401,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(993), @@ -27384,17 +27447,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(178)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(869), + [sym_expression] = STATE(868), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -27408,19 +27471,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1814), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -27464,18 +27527,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(179)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -27489,7 +27552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -27498,9 +27561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(987), @@ -27544,18 +27607,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(180)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -27569,7 +27632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -27578,9 +27641,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(993), @@ -27624,17 +27687,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(181)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -27648,19 +27711,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -27704,18 +27767,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(182)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -27729,7 +27792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -27738,9 +27801,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(993), @@ -27784,17 +27847,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(183)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(834), + [sym_expression] = STATE(833), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -27808,19 +27871,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1787), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -27864,18 +27927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(184)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -27889,7 +27952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -27898,9 +27961,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(993), @@ -27944,18 +28007,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(185)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -27969,7 +28032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -27978,9 +28041,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(993), @@ -28024,18 +28087,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(186)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -28049,7 +28112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -28058,9 +28121,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(993), @@ -28104,17 +28167,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(187)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -28128,19 +28191,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1772), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -28184,18 +28247,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(188)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -28207,9 +28270,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -28218,9 +28281,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(993), @@ -28264,17 +28327,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(189)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -28288,19 +28351,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1754), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -28344,17 +28407,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(190)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(835), + [sym_expression] = STATE(834), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -28368,19 +28431,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -28424,17 +28487,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(191)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(879), + [sym_expression] = STATE(878), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -28448,19 +28511,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1763), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -28504,17 +28567,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(192)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1841), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -28528,7 +28591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -28537,9 +28600,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(1005), [anon_sym_export] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(167), @@ -28584,17 +28647,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(193)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(830), + [sym_expression] = STATE(829), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -28608,19 +28671,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1824), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -28664,18 +28727,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(194)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(630), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(920), + [sym_expression] = STATE(921), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -28689,7 +28752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -28698,9 +28761,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(989), @@ -28744,17 +28807,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(195)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -28768,19 +28831,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -28824,18 +28887,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(196)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(600), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(967), + [sym_expression] = STATE(924), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -28849,7 +28912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -28858,9 +28921,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(989), @@ -28904,18 +28967,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(197)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(613), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(936), + [sym_expression] = STATE(938), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -28929,7 +28992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -28938,9 +29001,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(989), @@ -28984,18 +29047,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(198)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(626), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(937), + [sym_expression] = STATE(939), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29009,7 +29072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29018,9 +29081,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(989), @@ -29064,18 +29127,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(199)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(628), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(938), + [sym_expression] = STATE(940), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29089,7 +29152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29098,9 +29161,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(989), @@ -29144,18 +29207,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(200)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(629), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(939), + [sym_expression] = STATE(941), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29169,7 +29232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29178,9 +29241,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(989), @@ -29224,17 +29287,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(201)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29248,19 +29311,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1869), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -29304,17 +29367,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(202)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29328,19 +29391,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1815), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -29384,18 +29447,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(203)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(630), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(943), + [sym_expression] = STATE(944), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29407,9 +29470,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29418,9 +29481,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(989), @@ -29464,18 +29527,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(204)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(600), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(946), + [sym_expression] = STATE(947), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29487,9 +29550,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29498,9 +29561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(989), @@ -29544,18 +29607,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(205)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29567,9 +29630,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29578,9 +29641,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(989), @@ -29624,18 +29687,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(206)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29647,9 +29710,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29658,9 +29721,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(989), @@ -29704,18 +29767,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(207)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29727,9 +29790,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29738,9 +29801,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(989), @@ -29784,18 +29847,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(208)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29807,9 +29870,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29818,9 +29881,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(989), @@ -29864,18 +29927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(209)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(630), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(891), + [sym_expression] = STATE(893), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29887,9 +29950,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29898,9 +29961,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(989), @@ -29944,17 +30007,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(210)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -29968,7 +30031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -29977,9 +30040,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(1017), [anon_sym_export] = ACTIONS(1019), [anon_sym_LBRACE] = ACTIONS(373), @@ -30024,17 +30087,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(211)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -30048,19 +30111,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_sequence_expression] = STATE(1809), [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -30104,18 +30167,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(212)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(600), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(894), + [sym_expression] = STATE(896), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -30127,9 +30190,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -30138,9 +30201,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(989), @@ -30184,17 +30247,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(213)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1841), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -30208,7 +30271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -30217,9 +30280,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(1025), [anon_sym_export] = ACTIONS(1027), [anon_sym_LBRACE] = ACTIONS(167), @@ -30264,18 +30327,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(214)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(613), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(908), + [sym_expression] = STATE(910), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -30287,9 +30350,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -30298,9 +30361,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(989), @@ -30344,18 +30407,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(215)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_statement_block] = STATE(626), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(909), + [sym_expression] = STATE(911), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -30367,9 +30430,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -30378,9 +30441,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(989), @@ -30424,17 +30487,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(216)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -30448,7 +30511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -30457,9 +30520,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(1033), [anon_sym_export] = ACTIONS(1035), [anon_sym_LBRACE] = ACTIONS(434), @@ -30504,18 +30567,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(217)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -30527,9 +30590,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -30538,9 +30601,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(993), @@ -30584,17 +30647,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(218)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(829), + [sym_expression] = STATE(856), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -30608,19 +30671,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [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_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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -30664,17 +30727,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(219)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -30686,9 +30749,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -30697,9 +30760,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -30743,17 +30806,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(220)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -30767,7 +30830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -30776,9 +30839,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -30822,17 +30885,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(221)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(915), + [sym_expression] = STATE(916), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -30846,7 +30909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -30855,9 +30918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -30901,17 +30964,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(222)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(916), + [sym_expression] = STATE(917), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -30925,7 +30988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -30934,9 +30997,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -30980,17 +31043,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(223)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1320), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1253), + [sym_array_pattern] = STATE(1320), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -31004,7 +31067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1253), + [sym__destructuring_pattern] = STATE(1320), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -31013,9 +31076,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(1041), [anon_sym_export] = ACTIONS(1043), [anon_sym_LBRACE] = ACTIONS(871), @@ -31059,17 +31122,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(224)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -31081,9 +31144,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -31092,9 +31155,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -31138,17 +31201,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(225)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -31160,9 +31223,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -31171,9 +31234,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -31217,17 +31280,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(226)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -31239,9 +31302,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -31250,9 +31313,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -31296,17 +31359,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(227)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(941), + [sym_expression] = STATE(889), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -31320,7 +31383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -31329,9 +31392,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -31375,17 +31438,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(228)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -31397,9 +31460,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -31408,9 +31471,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -31454,17 +31517,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(229)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -31476,9 +31539,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -31487,9 +31550,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -31533,17 +31596,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(230)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(971), + [sym_expression] = STATE(977), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -31555,9 +31618,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -31566,9 +31629,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -31612,17 +31675,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(231)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -31634,9 +31697,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -31645,9 +31708,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -31691,17 +31754,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(232)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -31715,7 +31778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -31724,9 +31787,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -31770,17 +31833,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(233)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -31792,9 +31855,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -31803,9 +31866,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -31849,17 +31912,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(234)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -31871,9 +31934,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -31882,9 +31945,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -31928,17 +31991,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(235)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -31950,9 +32013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -31961,9 +32024,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -32007,17 +32070,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(236)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -32029,9 +32092,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -32040,9 +32103,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -32086,17 +32149,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(237)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -32108,9 +32171,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -32119,9 +32182,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -32165,17 +32228,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(238)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -32187,9 +32250,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -32198,9 +32261,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -32244,17 +32307,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(239)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -32266,9 +32329,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -32277,9 +32340,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -32323,17 +32386,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(240)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -32345,9 +32408,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -32356,9 +32419,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -32402,17 +32465,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(241)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -32424,9 +32487,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -32435,9 +32498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -32481,17 +32544,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(242)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -32503,9 +32566,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -32514,9 +32577,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -32560,17 +32623,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(243)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -32582,9 +32645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -32593,9 +32656,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -32639,17 +32702,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(244)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -32663,7 +32726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -32672,9 +32735,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -32718,17 +32781,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(245)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -32742,7 +32805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -32751,9 +32814,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -32797,17 +32860,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(246)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -32821,7 +32884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -32830,9 +32893,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -32876,17 +32939,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(247)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -32898,9 +32961,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -32909,9 +32972,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -32955,17 +33018,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(248)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -32979,7 +33042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -32988,9 +33051,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33034,17 +33097,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(249)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33058,7 +33121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33067,9 +33130,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33113,17 +33176,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(250)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33137,7 +33200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33146,9 +33209,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33192,17 +33255,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(251)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33216,7 +33279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33225,9 +33288,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33271,17 +33334,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(252)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33295,7 +33358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33304,9 +33367,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33350,17 +33413,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(253)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33374,7 +33437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33383,9 +33446,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33429,17 +33492,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(254)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33453,7 +33516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33462,9 +33525,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33508,17 +33571,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(255)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33532,7 +33595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33541,9 +33604,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33587,17 +33650,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(256)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33611,7 +33674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33620,9 +33683,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33666,17 +33729,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(257)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33690,7 +33753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33699,9 +33762,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33745,17 +33808,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(258)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33769,7 +33832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33778,9 +33841,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33824,17 +33887,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(259)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33848,7 +33911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33857,9 +33920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33903,17 +33966,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(260)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -33927,7 +33990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -33936,9 +33999,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -33982,17 +34045,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(261)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -34006,7 +34069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -34015,9 +34078,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -34061,17 +34124,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(262)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -34085,7 +34148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -34094,9 +34157,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -34140,17 +34203,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(263)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -34164,7 +34227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -34173,9 +34236,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -34219,17 +34282,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(264)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -34241,9 +34304,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -34252,9 +34315,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -34298,17 +34361,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(265)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1380), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1324), + [sym_array_pattern] = STATE(1380), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -34322,7 +34385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1324), + [sym__destructuring_pattern] = STATE(1380), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -34331,9 +34394,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(1051), [anon_sym_export] = ACTIONS(1053), [anon_sym_LBRACE] = ACTIONS(434), @@ -34377,17 +34440,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(266)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(978), + [sym_expression] = STATE(973), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -34399,9 +34462,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -34410,9 +34473,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -34456,17 +34519,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(267)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -34480,7 +34543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -34489,9 +34552,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -34535,17 +34598,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(268)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -34557,9 +34620,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -34568,9 +34631,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -34614,17 +34677,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(269)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(975), + [sym_expression] = STATE(970), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -34638,7 +34701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -34647,9 +34710,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -34693,17 +34756,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(270)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -34715,9 +34778,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -34726,9 +34789,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -34772,17 +34835,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(271)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -34794,9 +34857,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -34805,9 +34868,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -34851,17 +34914,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(272)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -34875,7 +34938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -34884,9 +34947,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -34930,17 +34993,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(273)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1867), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1790), + [sym_array_pattern] = STATE(1867), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -34952,9 +35015,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(552), [sym_subscript_expression] = STATE(552), [sym_assignment_expression] = STATE(746), - [sym__augmented_assignment_lhs] = STATE(1140), + [sym__augmented_assignment_lhs] = STATE(1141), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1790), + [sym__destructuring_pattern] = STATE(1867), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -34963,9 +35026,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(161), [anon_sym_export] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(167), @@ -35009,17 +35072,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(274)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35031,9 +35094,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35042,9 +35105,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35088,17 +35151,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(275)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35110,9 +35173,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35121,9 +35184,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35167,17 +35230,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(276)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(890), + [sym_expression] = STATE(892), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35189,9 +35252,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35200,9 +35263,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35246,17 +35309,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(277)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35270,7 +35333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35279,9 +35342,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -35325,17 +35388,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(278)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(893), + [sym_expression] = STATE(895), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35347,9 +35410,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35358,9 +35421,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35404,17 +35467,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(279)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(895), + [sym_expression] = STATE(897), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35426,9 +35489,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35437,9 +35500,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35483,17 +35546,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(280)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(896), + [sym_expression] = STATE(898), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35505,9 +35568,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35516,9 +35579,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35562,17 +35625,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(281)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(897), + [sym_expression] = STATE(899), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35584,9 +35647,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35595,9 +35658,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35641,17 +35704,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(282)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(898), + [sym_expression] = STATE(900), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35663,9 +35726,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35674,9 +35737,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35720,17 +35783,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(283)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(899), + [sym_expression] = STATE(901), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35742,9 +35805,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35753,9 +35816,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35799,17 +35862,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(284)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(900), + [sym_expression] = STATE(902), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35821,9 +35884,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35832,9 +35895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35878,17 +35941,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(285)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(901), + [sym_expression] = STATE(903), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35900,9 +35963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35911,9 +35974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -35957,17 +36020,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(286)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(902), + [sym_expression] = STATE(904), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -35979,9 +36042,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -35990,9 +36053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -36036,17 +36099,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(287)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(903), + [sym_expression] = STATE(905), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -36058,9 +36121,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -36069,9 +36132,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -36115,17 +36178,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(288)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(904), + [sym_expression] = STATE(906), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -36137,9 +36200,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -36148,9 +36211,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -36194,17 +36257,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(289)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(905), + [sym_expression] = STATE(907), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -36216,9 +36279,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -36227,9 +36290,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -36273,17 +36336,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(290)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(906), + [sym_expression] = STATE(908), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -36295,9 +36358,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -36306,9 +36369,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -36352,17 +36415,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(291)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(907), + [sym_expression] = STATE(909), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -36374,9 +36437,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -36385,9 +36448,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -36431,17 +36494,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(292)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(912), + [sym_expression] = STATE(914), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -36453,9 +36516,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -36464,9 +36527,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -36510,17 +36573,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(293)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -36534,7 +36597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -36543,9 +36606,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -36589,17 +36652,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(294)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -36613,7 +36676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -36622,9 +36685,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -36668,17 +36731,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(295)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -36692,7 +36755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -36701,9 +36764,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -36747,17 +36810,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(296)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -36771,7 +36834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -36780,9 +36843,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -36826,17 +36889,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(297)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -36850,7 +36913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -36859,9 +36922,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -36905,17 +36968,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(298)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -36929,7 +36992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -36938,9 +37001,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -36984,17 +37047,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(299)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(972), + [sym_expression] = STATE(976), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -37008,7 +37071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -37017,9 +37080,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -37063,17 +37126,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(300)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37087,7 +37150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37096,9 +37159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37142,17 +37205,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(301)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37166,7 +37229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37175,9 +37238,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37221,17 +37284,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(302)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37245,7 +37308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37254,9 +37317,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37300,17 +37363,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(303)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37324,7 +37387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37333,9 +37396,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37379,17 +37442,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(304)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37403,7 +37466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37412,9 +37475,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37458,17 +37521,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(305)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37482,7 +37545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37491,9 +37554,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37537,17 +37600,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(306)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37561,7 +37624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37570,9 +37633,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37616,17 +37679,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(307)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37640,7 +37703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37649,9 +37712,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37695,17 +37758,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(308)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37719,7 +37782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37728,9 +37791,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37774,17 +37837,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(309)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37798,7 +37861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37807,9 +37870,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37853,17 +37916,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(310)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37877,7 +37940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37886,9 +37949,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -37932,17 +37995,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(311)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -37956,7 +38019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -37965,9 +38028,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -38011,17 +38074,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(312)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(507), - [sym_expression] = STATE(976), + [sym_expression] = STATE(978), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1815), + [sym_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38035,7 +38098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38044,9 +38107,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -38090,17 +38153,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(313)] = { - [sym_import] = STATE(1326), + [sym_import] = STATE(1386), [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_object_pattern] = STATE(1805), [sym_array] = STATE(740), - [sym_array_pattern] = STATE(1802), + [sym_array_pattern] = STATE(1805), [sym_jsx_element] = STATE(746), - [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_opening_element] = STATE(1144), [sym_jsx_self_closing_element] = STATE(746), [sym_class] = STATE(740), [sym_function_expression] = STATE(740), @@ -38114,7 +38177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(746), [sym__augmented_assignment_lhs] = STATE(1143), [sym_augmented_assignment_expression] = STATE(746), - [sym__destructuring_pattern] = STATE(1802), + [sym__destructuring_pattern] = STATE(1805), [sym_ternary_expression] = STATE(746), [sym_binary_expression] = STATE(746), [sym_unary_expression] = STATE(746), @@ -38123,9 +38186,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), [sym_identifier] = ACTIONS(520), [anon_sym_export] = ACTIONS(522), [anon_sym_LBRACE] = ACTIONS(167), @@ -38169,17 +38232,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(314)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1825), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1815), + [sym_array_pattern] = STATE(1825), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38193,7 +38256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1139), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1815), + [sym__destructuring_pattern] = STATE(1825), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38202,9 +38265,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(369), [anon_sym_export] = ACTIONS(371), [anon_sym_LBRACE] = ACTIONS(373), @@ -38248,17 +38311,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(315)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38272,7 +38335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38281,9 +38344,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -38327,17 +38390,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(316)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38351,7 +38414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38360,9 +38423,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -38406,17 +38469,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(317)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(919), + [sym_expression] = STATE(920), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38430,7 +38493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38439,9 +38502,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -38485,17 +38548,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(318)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(921), + [sym_expression] = STATE(922), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38509,7 +38572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38518,9 +38581,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -38564,17 +38627,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(319)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(887), + [sym_expression] = STATE(923), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38588,7 +38651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38597,9 +38660,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -38643,17 +38706,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(320)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(923), + [sym_expression] = STATE(925), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38667,7 +38730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38676,9 +38739,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -38722,17 +38785,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(321)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(924), + [sym_expression] = STATE(967), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38746,7 +38809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38755,9 +38818,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -38801,17 +38864,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(322)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(925), + [sym_expression] = STATE(927), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38825,7 +38888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38834,9 +38897,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -38880,17 +38943,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(323)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(926), + [sym_expression] = STATE(928), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38904,7 +38967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38913,9 +38976,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -38959,17 +39022,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(324)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(927), + [sym_expression] = STATE(929), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -38983,7 +39046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -38992,9 +39055,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39038,17 +39101,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(325)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(928), + [sym_expression] = STATE(930), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39062,7 +39125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39071,9 +39134,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39117,17 +39180,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(326)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(929), + [sym_expression] = STATE(931), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39141,7 +39204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39150,9 +39213,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39196,17 +39259,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(327)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(930), + [sym_expression] = STATE(932), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39220,7 +39283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39229,9 +39292,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39275,17 +39338,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(328)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(931), + [sym_expression] = STATE(933), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39299,7 +39362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39308,9 +39371,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39354,17 +39417,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(329)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(932), + [sym_expression] = STATE(934), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39378,7 +39441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39387,9 +39450,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39433,17 +39496,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(330)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(933), + [sym_expression] = STATE(935), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39457,7 +39520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39466,9 +39529,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39512,17 +39575,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(331)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(934), + [sym_expression] = STATE(936), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39536,7 +39599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39545,9 +39608,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39591,17 +39654,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(332)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(935), + [sym_expression] = STATE(937), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39615,7 +39678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39624,9 +39687,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39670,17 +39733,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(333)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(940), + [sym_expression] = STATE(942), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39694,7 +39757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39703,9 +39766,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39749,17 +39812,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(334)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(973), + [sym_expression] = STATE(971), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39773,7 +39836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39782,9 +39845,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -39828,17 +39891,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(335)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39850,9 +39913,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39861,9 +39924,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -39907,17 +39970,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(336)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -39929,9 +39992,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -39940,9 +40003,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -39986,17 +40049,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(337)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(942), + [sym_expression] = STATE(943), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40008,9 +40071,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40019,9 +40082,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40065,17 +40128,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(338)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(944), + [sym_expression] = STATE(945), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40087,9 +40150,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40098,9 +40161,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40144,17 +40207,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(339)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(945), + [sym_expression] = STATE(946), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40166,9 +40229,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40177,9 +40240,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40223,17 +40286,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(340)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(947), + [sym_expression] = STATE(948), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40245,9 +40308,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40256,9 +40319,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40302,17 +40365,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(341)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(948), + [sym_expression] = STATE(949), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40324,9 +40387,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40335,9 +40398,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40381,17 +40444,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(342)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(949), + [sym_expression] = STATE(950), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40403,9 +40466,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40414,9 +40477,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40460,17 +40523,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(343)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(579), - [sym_expression] = STATE(950), + [sym_expression] = STATE(887), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1857), + [sym_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40482,9 +40545,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40493,9 +40556,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40539,17 +40602,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(344)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40561,9 +40624,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40572,9 +40635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40618,17 +40681,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(345)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40640,9 +40703,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40651,9 +40714,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40697,17 +40760,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(346)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40719,9 +40782,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40730,9 +40793,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40776,17 +40839,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(347)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40798,9 +40861,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40809,9 +40872,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40855,17 +40918,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(348)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40877,9 +40940,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40888,9 +40951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -40934,17 +40997,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(349)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -40956,9 +41019,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -40967,9 +41030,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -41013,17 +41076,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(350)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -41035,9 +41098,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -41046,9 +41109,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -41092,17 +41155,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(351)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -41114,9 +41177,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -41125,9 +41188,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -41171,17 +41234,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(352)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -41193,9 +41256,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -41204,9 +41267,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -41250,17 +41313,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(353)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [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_object_pattern] = STATE(1860), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1857), + [sym_array_pattern] = STATE(1860), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -41272,9 +41335,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(579), [sym_subscript_expression] = STATE(579), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1141), + [sym__augmented_assignment_lhs] = STATE(1142), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1857), + [sym__destructuring_pattern] = STATE(1860), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -41283,9 +41346,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(582), [anon_sym_export] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(434), @@ -41329,17 +41392,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(354)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(970), + [sym_expression] = STATE(972), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -41353,7 +41416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -41362,9 +41425,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -41408,17 +41471,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(355)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(498), - [sym_expression] = STATE(977), + [sym_expression] = STATE(975), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1762), + [sym_object_pattern] = STATE(1841), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1762), + [sym_array_pattern] = STATE(1841), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -41432,7 +41495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(602), [sym__augmented_assignment_lhs] = STATE(1138), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1762), + [sym__destructuring_pattern] = STATE(1841), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -41441,9 +41504,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(430), [anon_sym_export] = ACTIONS(432), [anon_sym_LBRACE] = ACTIONS(434), @@ -41487,17 +41550,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(356)] = { - [sym_import] = STATE(1333), + [sym_import] = STATE(1396), [sym_parenthesized_expression] = STATE(578), - [sym_expression] = STATE(892), + [sym_expression] = STATE(894), [sym_primary_expression] = STATE(589), [sym_yield_expression] = STATE(602), [sym_object] = STATE(646), - [sym_object_pattern] = STATE(1776), + [sym_object_pattern] = STATE(1762), [sym_array] = STATE(646), - [sym_array_pattern] = STATE(1776), + [sym_array_pattern] = STATE(1762), [sym_jsx_element] = STATE(602), - [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_opening_element] = STATE(1151), [sym_jsx_self_closing_element] = STATE(602), [sym_class] = STATE(646), [sym_function_expression] = STATE(646), @@ -41509,9 +41572,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_member_expression] = STATE(578), [sym_subscript_expression] = STATE(578), [sym_assignment_expression] = STATE(602), - [sym__augmented_assignment_lhs] = STATE(1142), + [sym__augmented_assignment_lhs] = STATE(1140), [sym_augmented_assignment_expression] = STATE(602), - [sym__destructuring_pattern] = STATE(1776), + [sym__destructuring_pattern] = STATE(1762), [sym_ternary_expression] = STATE(602), [sym_binary_expression] = STATE(602), [sym_unary_expression] = STATE(602), @@ -41520,9 +41583,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), [sym_identifier] = ACTIONS(613), [anon_sym_export] = ACTIONS(615), [anon_sym_LBRACE] = ACTIONS(434), @@ -41566,12 +41629,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1709), + [sym_formal_parameters] = STATE(1837), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(1063), [anon_sym_STAR] = ACTIONS(1065), @@ -41614,7 +41677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -41644,12 +41707,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1709), + [sym_formal_parameters] = STATE(1837), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(1063), [anon_sym_STAR] = ACTIONS(1065), @@ -41692,7 +41755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -41722,12 +41785,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1709), + [sym_formal_parameters] = STATE(1837), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(1063), [anon_sym_STAR] = ACTIONS(1065), @@ -41770,7 +41833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -41800,11 +41863,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1085), [anon_sym_export] = ACTIONS(1085), [anon_sym_STAR] = ACTIONS(165), @@ -41846,7 +41909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -41876,11 +41939,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1085), [anon_sym_export] = ACTIONS(1085), [anon_sym_STAR] = ACTIONS(1065), @@ -41922,7 +41985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -41952,11 +42015,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1085), [anon_sym_export] = ACTIONS(1085), [anon_sym_STAR] = ACTIONS(165), @@ -41998,7 +42061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42028,11 +42091,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1085), [anon_sym_export] = ACTIONS(1085), [anon_sym_STAR] = ACTIONS(1065), @@ -42074,7 +42137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42104,11 +42167,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1085), [anon_sym_export] = ACTIONS(1085), [anon_sym_STAR] = ACTIONS(1065), @@ -42150,7 +42213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42180,11 +42243,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_string] = STATE(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1085), [anon_sym_export] = ACTIONS(1085), [anon_sym_STAR] = ACTIONS(165), @@ -42226,7 +42289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42256,7 +42319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(366)] = { - [sym_formal_parameters] = STATE(1859), + [sym_formal_parameters] = STATE(1779), [sym_identifier] = ACTIONS(1091), [anon_sym_export] = ACTIONS(1093), [anon_sym_STAR] = ACTIONS(165), @@ -42299,7 +42362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42326,7 +42389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(367)] = { - [sym_formal_parameters] = STATE(1859), + [sym_formal_parameters] = STATE(1779), [sym_identifier] = ACTIONS(1091), [anon_sym_export] = ACTIONS(1093), [anon_sym_STAR] = ACTIONS(165), @@ -42369,7 +42432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42396,12 +42459,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_variable_declarator] = STATE(1361), + [sym_object_pattern] = STATE(1291), + [sym_array_pattern] = STATE(1291), + [sym__destructuring_pattern] = STATE(1291), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1100), [anon_sym_STAR] = ACTIONS(165), [anon_sym_LBRACE] = ACTIONS(1102), @@ -42439,7 +42502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42532,12 +42595,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_variable_declarator] = STATE(1361), + [sym_object_pattern] = STATE(1291), + [sym_array_pattern] = STATE(1291), + [sym__destructuring_pattern] = STATE(1291), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1100), [anon_sym_STAR] = ACTIONS(165), [anon_sym_LBRACE] = ACTIONS(1102), @@ -42575,7 +42638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42600,7 +42663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(371)] = { - [sym_formal_parameters] = STATE(1834), + [sym_formal_parameters] = STATE(1837), [sym_identifier] = ACTIONS(1110), [anon_sym_export] = ACTIONS(1112), [anon_sym_STAR] = ACTIONS(165), @@ -42640,7 +42703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42668,7 +42731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(372)] = { - [sym_formal_parameters] = STATE(1834), + [sym_formal_parameters] = STATE(1837), [sym_identifier] = ACTIONS(1110), [anon_sym_export] = ACTIONS(1112), [anon_sym_STAR] = ACTIONS(165), @@ -42708,7 +42771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42736,7 +42799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(373)] = { - [sym_formal_parameters] = STATE(1813), + [sym_formal_parameters] = STATE(1816), [sym_identifier] = ACTIONS(1116), [anon_sym_export] = ACTIONS(1118), [anon_sym_STAR] = ACTIONS(165), @@ -42776,7 +42839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42872,7 +42935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(375)] = { - [sym_formal_parameters] = STATE(1834), + [sym_formal_parameters] = STATE(1837), [sym_identifier] = ACTIONS(1110), [anon_sym_export] = ACTIONS(1112), [anon_sym_STAR] = ACTIONS(165), @@ -42912,7 +42975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -42940,7 +43003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(376)] = { - [sym_formal_parameters] = STATE(1834), + [sym_formal_parameters] = STATE(1837), [sym_identifier] = ACTIONS(1110), [anon_sym_export] = ACTIONS(1112), [anon_sym_STAR] = ACTIONS(165), @@ -42980,7 +43043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -43008,7 +43071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(377)] = { - [sym_formal_parameters] = STATE(1813), + [sym_formal_parameters] = STATE(1816), [sym_identifier] = ACTIONS(1116), [anon_sym_export] = ACTIONS(1118), [anon_sym_STAR] = ACTIONS(165), @@ -43048,7 +43111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -43076,7 +43139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(378)] = { - [sym_formal_parameters] = STATE(1824), + [sym_formal_parameters] = STATE(1830), [sym_identifier] = ACTIONS(1122), [anon_sym_export] = ACTIONS(1124), [anon_sym_STAR] = ACTIONS(165), @@ -43117,7 +43180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -43144,7 +43207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(379)] = { - [sym_formal_parameters] = STATE(1859), + [sym_formal_parameters] = STATE(1779), [sym_identifier] = ACTIONS(1091), [anon_sym_export] = ACTIONS(1093), [anon_sym_STAR] = ACTIONS(165), @@ -43185,7 +43248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -43212,12 +43275,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_variable_declarator] = STATE(1361), + [sym_object_pattern] = STATE(1291), + [sym_array_pattern] = STATE(1291), + [sym__destructuring_pattern] = STATE(1291), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), [sym_identifier] = ACTIONS(1100), [anon_sym_STAR] = ACTIONS(165), [anon_sym_LBRACE] = ACTIONS(1102), @@ -43255,7 +43318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -43348,7 +43411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(382)] = { - [sym_formal_parameters] = STATE(1824), + [sym_formal_parameters] = STATE(1830), [sym_identifier] = ACTIONS(1122), [anon_sym_export] = ACTIONS(1124), [anon_sym_STAR] = ACTIONS(165), @@ -43389,7 +43452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -43416,7 +43479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(383)] = { - [sym_formal_parameters] = STATE(1859), + [sym_formal_parameters] = STATE(1779), [sym_identifier] = ACTIONS(1091), [anon_sym_export] = ACTIONS(1093), [anon_sym_STAR] = ACTIONS(165), @@ -43456,7 +43519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -43617,7 +43680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [STATE(386)] = { - [sym_formal_parameters] = STATE(1859), + [sym_formal_parameters] = STATE(1779), [sym_identifier] = ACTIONS(1091), [anon_sym_export] = ACTIONS(1093), [anon_sym_STAR] = ACTIONS(165), @@ -43657,7 +43720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_AMP3] = ACTIONS(165), [anon_sym_CARET] = ACTIONS(165), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(165), @@ -43701,7 +43764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1098), 1, anon_sym_function, - STATE(1859), 1, + STATE(1779), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, @@ -43752,7 +43815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -43775,7 +43838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1120), 1, anon_sym_function, - STATE(1834), 1, + STATE(1837), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, @@ -43828,7 +43891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -43921,7 +43984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1110), 1, sym_identifier, - STATE(1834), 1, + STATE(1837), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, @@ -43974,7 +44037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -44132,7 +44195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1138), 1, sym_identifier, - STATE(1821), 1, + STATE(1773), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, @@ -44184,7 +44247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -44347,12 +44410,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(1385), 1, + STATE(1361), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1291), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -44397,7 +44460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -44424,12 +44487,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(1385), 1, + STATE(1361), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1291), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -44474,7 +44537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -45036,7 +45099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1138), 1, sym_identifier, - STATE(1821), 1, + STATE(1773), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, @@ -45088,7 +45151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -45314,7 +45377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1122), 1, sym_identifier, - STATE(1824), 1, + STATE(1830), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, @@ -45366,7 +45429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -45458,7 +45521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1168), 1, sym_identifier, - STATE(1782), 1, + STATE(1785), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, @@ -45510,7 +45573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -45601,7 +45664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1168), 1, sym_identifier, - STATE(1782), 1, + STATE(1785), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, @@ -45653,7 +45716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -45816,7 +45879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1122), 1, sym_identifier, - STATE(1824), 1, + STATE(1830), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, @@ -45866,7 +45929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -50514,12 +50577,12 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1424), 1, anon_sym_of, - STATE(1385), 1, + STATE(1361), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1202), 3, + STATE(1216), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -50562,7 +50625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -50587,12 +50650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(1385), 1, + STATE(1361), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1291), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -50636,7 +50699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -50659,10 +50722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1435), 1, anon_sym_EQ_GT, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -50708,7 +50771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -50734,7 +50797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -50793,10 +50856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1435), 1, anon_sym_EQ_GT, - STATE(1452), 1, - aux_sym_object_pattern_repeat1, - STATE(1487), 1, + STATE(1409), 1, aux_sym_object_repeat1, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -50842,7 +50905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -50868,7 +50931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -50931,7 +50994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -50994,7 +51057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51057,7 +51120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51120,7 +51183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51200,7 +51263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51244,10 +51307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1435), 1, anon_sym_EQ_GT, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -51293,7 +51356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51319,7 +51382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51421,7 +51484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51486,7 +51549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51551,7 +51614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51616,7 +51679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51645,7 +51708,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1469), 3, + STATE(1499), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -51686,7 +51749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -51811,7 +51874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -52935,7 +52998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53032,7 +53095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53094,7 +53157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53157,7 +53220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53220,7 +53283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53284,7 +53347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53348,7 +53411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53412,7 +53475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53438,7 +53501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53536,7 +53599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53600,7 +53663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53663,7 +53726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53689,7 +53752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53787,7 +53850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53851,7 +53914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53915,7 +53978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -53979,7 +54042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54042,7 +54105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54105,7 +54168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54131,7 +54194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54228,7 +54291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54254,7 +54317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54314,7 +54377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54412,7 +54475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54475,7 +54538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54501,7 +54564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54596,7 +54659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54660,7 +54723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54723,7 +54786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54787,7 +54850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54849,7 +54912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54911,7 +54974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -54973,7 +55036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55036,7 +55099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55097,7 +55160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55160,7 +55223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55221,7 +55284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55284,7 +55347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55346,7 +55409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55406,7 +55469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55466,7 +55529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55526,7 +55589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55586,7 +55649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55646,7 +55709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55706,7 +55769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55766,7 +55829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55827,7 +55890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55887,7 +55950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -55949,7 +56012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -56011,7 +56074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -56071,7 +56134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -56131,7 +56194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -56189,7 +56252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -56247,7 +56310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -56307,7 +56370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -56342,7 +56405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56388,7 +56451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56443,7 +56506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56490,7 +56553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56541,7 +56604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56589,7 +56652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56649,7 +56712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56703,7 +56766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56754,7 +56817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56799,7 +56862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56856,7 +56919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56899,7 +56962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56946,7 +57009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -56993,7 +57056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57040,7 +57103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57087,7 +57150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57134,7 +57197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57183,7 +57246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57229,7 +57292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57276,7 +57339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57323,7 +57386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57370,7 +57433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57424,7 +57487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57466,7 +57529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57513,7 +57576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57560,7 +57623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57607,7 +57670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57654,7 +57717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57701,7 +57764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57748,7 +57811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57795,7 +57858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57842,7 +57905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57889,7 +57952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57936,7 +57999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -57983,7 +58046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58030,7 +58093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58077,7 +58140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58124,7 +58187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58171,7 +58234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58218,7 +58281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58265,7 +58328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58312,7 +58375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58359,7 +58422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58406,7 +58469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58453,7 +58516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58500,7 +58563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58547,7 +58610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58594,7 +58657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58641,7 +58704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58688,7 +58751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58735,7 +58798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58789,7 +58852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58831,7 +58894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58878,7 +58941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58925,7 +58988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -58972,7 +59035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59019,7 +59082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59066,7 +59129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59113,7 +59176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59160,7 +59223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59207,7 +59270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59254,7 +59317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59301,7 +59364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59348,7 +59411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59395,7 +59458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59442,7 +59505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59489,7 +59552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59543,7 +59606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59585,7 +59648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59632,7 +59695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59679,7 +59742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59728,7 +59791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -59779,7 +59842,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -59847,7 +59910,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -59915,7 +59978,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -59983,7 +60046,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -60059,7 +60122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -60104,7 +60167,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -60168,7 +60231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -60219,7 +60282,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -60287,7 +60350,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -60375,7 +60438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -60413,7 +60476,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -60481,7 +60544,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -60545,7 +60608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -60596,7 +60659,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -60664,7 +60727,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -60732,7 +60795,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -60809,7 +60872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -60849,7 +60912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -60896,7 +60959,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -60962,7 +61025,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -61045,7 +61108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -61108,7 +61171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(1830), 2, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, ACTIONS(1782), 3, anon_sym_in, @@ -61143,7 +61206,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1800), 1, anon_sym_PERCENT, ACTIONS(1802), 1, @@ -61206,7 +61269,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1800), 1, @@ -61287,7 +61350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61338,7 +61401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61407,7 +61470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, ACTIONS(1830), 4, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -61442,7 +61505,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -61510,7 +61573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61556,7 +61619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61601,7 +61664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61649,7 +61712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61694,7 +61757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61748,7 +61811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61788,7 +61851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61835,7 +61898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61879,7 +61942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -61930,7 +61993,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -62001,7 +62064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62054,7 +62117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62099,7 +62162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62142,7 +62205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62199,7 +62262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62243,7 +62306,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -62303,7 +62366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62353,7 +62416,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -62413,7 +62476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62457,7 +62520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62503,7 +62566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62551,7 +62614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62598,7 +62661,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -62684,7 +62747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -62729,7 +62792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62765,7 +62828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -62811,7 +62874,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -62875,7 +62938,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -62956,7 +63019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -62999,7 +63062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, ACTIONS(1830), 2, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, ACTIONS(1840), 2, anon_sym_PLUS_PLUS, @@ -63052,7 +63115,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1862), 1, anon_sym_PERCENT, ACTIONS(1864), 1, @@ -63113,7 +63176,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1862), 1, @@ -63190,7 +63253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -63239,7 +63302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -63306,7 +63369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, ACTIONS(1830), 4, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -63339,7 +63402,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -63403,7 +63466,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -63469,7 +63532,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -63535,7 +63598,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -63595,7 +63658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -63645,7 +63708,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -63711,7 +63774,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -63777,7 +63840,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -63842,7 +63905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -63889,7 +63952,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -63975,7 +64038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -64011,7 +64074,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -64071,7 +64134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64121,7 +64184,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -64188,7 +64251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64234,7 +64297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64273,7 +64336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64324,7 +64387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64363,7 +64426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64407,7 +64470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64451,7 +64514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64495,7 +64558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64539,7 +64602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64583,7 +64646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64627,7 +64690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64671,7 +64734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64715,7 +64778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64759,7 +64822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64803,7 +64866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64847,7 +64910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64891,7 +64954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64935,7 +64998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -64979,7 +65042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65038,7 +65101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65074,7 +65137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65120,7 +65183,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -65185,7 +65248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65230,7 +65293,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -65289,7 +65352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65333,7 +65396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65399,7 +65462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -65431,7 +65494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65475,7 +65538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65519,7 +65582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65574,7 +65637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, ACTIONS(1830), 2, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, ACTIONS(1840), 2, anon_sym_PLUS_PLUS, @@ -65630,7 +65693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65675,7 +65738,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -65739,7 +65802,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1898), 1, anon_sym_PERCENT, ACTIONS(1900), 1, @@ -65796,7 +65859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65847,7 +65910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65886,7 +65949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65930,7 +65993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -65979,7 +66042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66026,7 +66089,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -66086,7 +66149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66132,7 +66195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66175,7 +66238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66219,7 +66282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66268,7 +66331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66313,7 +66376,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1898), 1, @@ -66390,7 +66453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66439,7 +66502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66506,7 +66569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, ACTIONS(1830), 4, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -66533,7 +66596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66583,7 +66646,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -66641,7 +66704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66690,7 +66753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66731,7 +66794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66775,7 +66838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66819,7 +66882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66863,7 +66926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -66913,7 +66976,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -66973,7 +67036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67017,7 +67080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67061,7 +67124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67111,7 +67174,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -67177,7 +67240,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -67239,7 +67302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67282,7 +67345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67329,7 +67392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67377,7 +67440,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -67437,7 +67500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67486,7 +67549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67532,7 +67595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67573,7 +67636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67617,7 +67680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67667,7 +67730,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -67733,7 +67796,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -67800,7 +67863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67839,7 +67902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67889,7 +67952,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -67949,7 +68012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -67999,7 +68062,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -68065,7 +68128,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -68125,7 +68188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -68175,7 +68238,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -68240,7 +68303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -68287,7 +68350,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -68354,7 +68417,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -68419,7 +68482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -68464,7 +68527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -68510,7 +68573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -68557,7 +68620,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -68574,7 +68637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(797), 1, sym_arguments, - STATE(1379), 1, + STATE(1345), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -68624,7 +68687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -68668,7 +68731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -68715,7 +68778,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -68782,7 +68845,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -68799,7 +68862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(797), 1, sym_arguments, - STATE(1379), 1, + STATE(1345), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -68849,7 +68912,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -68866,7 +68929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(797), 1, sym_arguments, - STATE(1379), 1, + STATE(1345), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -68916,7 +68979,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -68981,7 +69044,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69046,7 +69109,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_GT_GT, ACTIONS(1854), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1856), 1, anon_sym_CARET, ACTIONS(1858), 1, @@ -69111,7 +69174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -69167,14 +69230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(1979), 1, anon_sym_static, - STATE(1019), 1, + STATE(1023), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1476), 1, - aux_sym_object_pattern_repeat1, - STATE(1499), 1, + STATE(1433), 1, aux_sym_object_repeat1, + STATE(1434), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -69184,19 +69247,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1981), 2, anon_sym_get, anon_sym_set, - STATE(1406), 3, + STATE(1424), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1429), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1407), 3, + STATE(1431), 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, + STATE(1804), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -69221,7 +69284,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69287,7 +69350,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69353,7 +69416,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69419,7 +69482,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69485,7 +69548,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69551,7 +69614,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69617,7 +69680,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69683,7 +69746,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69749,7 +69812,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69815,7 +69878,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69881,7 +69944,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -69947,7 +70010,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70015,7 +70078,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70032,7 +70095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(637), 1, sym_arguments, - STATE(1483), 1, + STATE(1449), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -70079,7 +70142,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70145,7 +70208,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70211,7 +70274,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70277,7 +70340,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70341,7 +70404,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70409,7 +70472,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70426,7 +70489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(637), 1, sym_arguments, - STATE(1465), 1, + STATE(1442), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -70473,7 +70536,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -70537,7 +70600,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70603,7 +70666,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70669,7 +70732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -70714,7 +70777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -70759,7 +70822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -70804,7 +70867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -70849,7 +70912,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -70897,70 +70960,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [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(2029), 1, - anon_sym_RBRACE, - 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(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, + [31213] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -70976,7 +70976,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -70991,7 +70991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2037), 1, + ACTIONS(2027), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -71026,9 +71026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31393] = 27, - ACTIONS(910), 1, - anon_sym_COMMA, + [31306] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -71044,7 +71042,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71057,12 +71055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(2039), 1, - anon_sym_RBRACK, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2029), 1, + anon_sym_RPAREN, STATE(637), 1, sym_arguments, - STATE(1429), 1, - aux_sym_array_repeat1, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -71092,7 +71092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31486] = 27, + [31399] = 27, ACTIONS(910), 1, anon_sym_COMMA, ACTIONS(1567), 1, @@ -71110,7 +71110,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71123,11 +71123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(2041), 1, - anon_sym_RPAREN, + ACTIONS(2031), 1, + anon_sym_RBRACK, STATE(637), 1, sym_arguments, - STATE(1455), 1, + STATE(1481), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -71158,7 +71158,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31579] = 27, + [31492] = 27, + ACTIONS(910), 1, + anon_sym_COMMA, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -71174,7 +71176,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71187,14 +71189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1983), 1, - anon_sym_COMMA, - ACTIONS(2043), 1, - anon_sym_RBRACK, + ACTIONS(2033), 1, + anon_sym_RPAREN, STATE(637), 1, sym_arguments, - STATE(1224), 1, - aux_sym_sequence_expression_repeat1, + STATE(1488), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -71224,7 +71224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31672] = 27, + [31585] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -71240,7 +71240,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71255,8 +71255,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2045), 1, - anon_sym_RBRACE, + ACTIONS(2035), 1, + anon_sym_RBRACK, STATE(637), 1, sym_arguments, STATE(1224), 1, @@ -71290,7 +71290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31765] = 27, + [31678] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -71306,7 +71306,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71321,8 +71321,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2047), 1, - anon_sym_RBRACK, + ACTIONS(2037), 1, + anon_sym_RBRACE, STATE(637), 1, sym_arguments, STATE(1224), 1, @@ -71356,7 +71356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31858] = 27, + [31771] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -71372,7 +71372,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71387,8 +71387,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2049), 1, - anon_sym_SEMI, + ACTIONS(2039), 1, + anon_sym_RBRACK, STATE(637), 1, sym_arguments, STATE(1224), 1, @@ -71422,7 +71422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31951] = 27, + [31864] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -71438,7 +71438,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71453,7 +71453,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2051), 1, + ACTIONS(2041), 1, anon_sym_SEMI, STATE(637), 1, sym_arguments, @@ -71488,7 +71488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32044] = 24, + [31957] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -71507,51 +71507,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1973), 1, anon_sym_LBRACK, - ACTIONS(2055), 1, + ACTIONS(2045), 1, anon_sym_RBRACE, - ACTIONS(2057), 1, + ACTIONS(2047), 1, anon_sym_async, - ACTIONS(2059), 1, + ACTIONS(2049), 1, anon_sym_static, - STATE(1019), 1, + STATE(1023), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1461), 1, - aux_sym_object_repeat1, - STATE(1476), 1, + STATE(1434), 1, aux_sym_object_pattern_repeat1, + STATE(1455), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(1977), 2, sym_number, sym_private_property_identifier, - ACTIONS(2061), 2, + ACTIONS(2051), 2, anon_sym_get, anon_sym_set, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1454), 3, + STATE(1424), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1458), 3, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1452), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1788), 3, + STATE(1804), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2053), 4, + ACTIONS(2043), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [32131] = 27, + [32044] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -71567,7 +71567,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71582,7 +71582,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2063), 1, + ACTIONS(2053), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -71617,7 +71617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32224] = 27, + [32137] = 27, ACTIONS(910), 1, anon_sym_COMMA, ACTIONS(1567), 1, @@ -71635,7 +71635,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71648,11 +71648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(2065), 1, + ACTIONS(2055), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, - STATE(1436), 1, + STATE(1428), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -71683,7 +71683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32317] = 24, + [32230] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -71702,51 +71702,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1973), 1, anon_sym_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2059), 1, anon_sym_RBRACE, - ACTIONS(2071), 1, + ACTIONS(2061), 1, anon_sym_async, - ACTIONS(2073), 1, + ACTIONS(2063), 1, anon_sym_static, - STATE(1019), 1, + STATE(1023), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1461), 1, - aux_sym_object_repeat1, - STATE(1476), 1, + STATE(1434), 1, aux_sym_object_pattern_repeat1, + STATE(1455), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(1977), 2, sym_number, sym_private_property_identifier, - ACTIONS(2075), 2, + ACTIONS(2065), 2, anon_sym_get, anon_sym_set, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1454), 3, + STATE(1424), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1458), 3, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1452), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1788), 3, + STATE(1804), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2067), 4, + ACTIONS(2057), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [32404] = 27, + [32317] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -71762,7 +71762,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71777,7 +71777,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2077), 1, + ACTIONS(2067), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -71812,7 +71812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32497] = 24, + [32410] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -71831,51 +71831,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1973), 1, anon_sym_LBRACK, - ACTIONS(2081), 1, + ACTIONS(2071), 1, anon_sym_RBRACE, - ACTIONS(2083), 1, + ACTIONS(2073), 1, anon_sym_async, - ACTIONS(2085), 1, + ACTIONS(2075), 1, anon_sym_static, - STATE(1019), 1, + STATE(1023), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1461), 1, - aux_sym_object_repeat1, - STATE(1476), 1, + STATE(1434), 1, aux_sym_object_pattern_repeat1, + STATE(1455), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(1977), 2, sym_number, sym_private_property_identifier, - ACTIONS(2087), 2, + ACTIONS(2077), 2, anon_sym_get, anon_sym_set, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1454), 3, + STATE(1424), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1458), 3, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1452), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1788), 3, + STATE(1804), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2079), 4, + ACTIONS(2069), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [32584] = 24, + [32497] = 24, ACTIONS(93), 1, anon_sym_AT, ACTIONS(101), 1, @@ -71894,51 +71894,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1973), 1, anon_sym_LBRACK, - ACTIONS(2091), 1, + ACTIONS(2081), 1, anon_sym_RBRACE, - ACTIONS(2093), 1, + ACTIONS(2083), 1, anon_sym_async, - ACTIONS(2095), 1, + ACTIONS(2085), 1, anon_sym_static, - STATE(1019), 1, + STATE(1023), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1461), 1, - aux_sym_object_repeat1, - STATE(1476), 1, + STATE(1434), 1, aux_sym_object_pattern_repeat1, + STATE(1455), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(1977), 2, sym_number, sym_private_property_identifier, - ACTIONS(2097), 2, + ACTIONS(2087), 2, anon_sym_get, anon_sym_set, - STATE(1407), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1454), 3, + STATE(1424), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1458), 3, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1452), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1788), 3, + STATE(1804), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2089), 4, + ACTIONS(2079), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [32671] = 27, + [32584] = 27, ACTIONS(910), 1, anon_sym_COMMA, ACTIONS(1567), 1, @@ -71956,7 +71956,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -71969,11 +71969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(2099), 1, + ACTIONS(2089), 1, anon_sym_RBRACK, STATE(637), 1, sym_arguments, - STATE(1483), 1, + STATE(1449), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -72004,7 +72004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32764] = 27, + [32677] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72020,7 +72020,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72035,7 +72035,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2101), 1, + ACTIONS(2091), 1, anon_sym_RBRACK, STATE(637), 1, sym_arguments, @@ -72070,7 +72070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32857] = 27, + [32770] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72086,7 +72086,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72101,7 +72101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2103), 1, + ACTIONS(2093), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -72136,7 +72136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32950] = 27, + [32863] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72152,7 +72152,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72167,7 +72167,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2105), 1, + ACTIONS(2095), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -72202,7 +72202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33043] = 27, + [32956] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72218,7 +72218,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72233,7 +72233,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2107), 1, + ACTIONS(2097), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -72268,7 +72268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33136] = 27, + [33049] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72284,7 +72284,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72299,7 +72299,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2109), 1, + ACTIONS(2099), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -72334,7 +72334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33229] = 27, + [33142] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72350,7 +72350,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72365,7 +72365,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2111), 1, + ACTIONS(2101), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -72400,7 +72400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33322] = 27, + [33235] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72416,7 +72416,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72431,7 +72431,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2113), 1, + ACTIONS(2103), 1, anon_sym_COLON, STATE(637), 1, sym_arguments, @@ -72466,7 +72466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33415] = 27, + [33328] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72482,7 +72482,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72497,7 +72497,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2115), 1, + ACTIONS(2105), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -72532,7 +72532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33508] = 27, + [33421] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72548,7 +72548,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72563,7 +72563,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2117), 1, + ACTIONS(2107), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -72598,7 +72598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33601] = 27, + [33514] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72614,7 +72614,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72629,7 +72629,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2119), 1, + ACTIONS(2109), 1, anon_sym_RPAREN, STATE(637), 1, sym_arguments, @@ -72664,7 +72664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33694] = 27, + [33607] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72680,7 +72680,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72695,7 +72695,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2121), 1, + ACTIONS(2111), 1, anon_sym_SEMI, STATE(637), 1, sym_arguments, @@ -72730,7 +72730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33787] = 27, + [33700] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72746,7 +72746,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72761,7 +72761,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2123), 1, + ACTIONS(2113), 1, anon_sym_SEMI, STATE(637), 1, sym_arguments, @@ -72796,7 +72796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33880] = 27, + [33793] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72812,7 +72812,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72827,7 +72827,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2125), 1, + ACTIONS(2115), 1, anon_sym_SEMI, STATE(637), 1, sym_arguments, @@ -72862,7 +72862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33973] = 27, + [33886] = 27, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72878,7 +72878,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1788), 1, anon_sym_GT_GT, ACTIONS(1792), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1794), 1, anon_sym_CARET, ACTIONS(1796), 1, @@ -72893,8 +72893,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(2127), 1, - anon_sym_RPAREN, + ACTIONS(2117), 1, + anon_sym_SEMI, STATE(637), 1, sym_arguments, STATE(1224), 1, @@ -72928,7 +72928,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34066] = 25, + [33979] = 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(2121), 1, + anon_sym_RBRACE, + ACTIONS(2123), 1, + anon_sym_async, + ACTIONS(2125), 1, + anon_sym_static, + STATE(1023), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + STATE(1434), 1, + aux_sym_object_pattern_repeat1, + STATE(1455), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2127), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1452), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2119), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [34066] = 22, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -72940,22 +73003,124 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2133), 1, anon_sym_AMP_AMP, ACTIONS(2135), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, anon_sym_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2143), 1, anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, ACTIONS(2149), 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(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 5, + sym__ternary_qmark, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [34148] = 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_AMP3, + 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, + 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, - ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [34194] = 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_AMP3, + 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, @@ -72965,33 +73130,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1826), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2157), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34154] = 4, + [34282] = 4, ACTIONS(1623), 1, sym_regex_flags, ACTIONS(5), 2, @@ -73004,7 +73169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -73033,7 +73198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [34200] = 25, + [34328] = 25, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(1820), 1, @@ -73049,7 +73214,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1886), 1, anon_sym_GT_GT, ACTIONS(1890), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(1892), 1, anon_sym_CARET, ACTIONS(1894), 1, @@ -73085,7 +73250,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2163), 2, + ACTIONS(2159), 2, sym__automatic_semicolon, anon_sym_SEMI, ACTIONS(1880), 3, @@ -73096,7 +73261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34288] = 25, + [34416] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73105,25 +73270,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2191), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2193), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -73136,30 +73301,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1816), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34376] = 25, + [34504] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73168,25 +73333,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2191), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2193), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -73199,30 +73364,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1716), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34464] = 25, + [34592] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73231,25 +73396,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2191), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2193), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -73262,30 +73427,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1780), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34552] = 25, + [34680] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73294,25 +73459,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2191), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2193), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -73325,30 +73490,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1826), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34640] = 25, + [34768] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73357,25 +73522,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2191), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2193), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -73388,30 +73553,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1631), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34728] = 15, + [34856] = 15, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73420,11 +73585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73434,20 +73599,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1830), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -73464,7 +73629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [34796] = 10, + [34924] = 10, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73473,7 +73638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73489,7 +73654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -73512,7 +73677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [34854] = 21, + [34982] = 21, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73521,17 +73686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73541,26 +73706,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -73571,7 +73736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [34934] = 22, + [35062] = 22, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73580,19 +73745,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73602,26 +73767,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -73631,7 +73796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35016] = 13, + [35144] = 13, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73640,9 +73805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73652,10 +73817,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1830), 8, @@ -73663,7 +73828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -73682,7 +73847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [35080] = 19, + [35208] = 19, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73691,11 +73856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73706,28 +73871,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1830), 2, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -73739,7 +73904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35156] = 20, + [35284] = 20, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73750,13 +73915,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_chain, ACTIONS(1830), 1, anon_sym_PIPE, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2185), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73766,26 +73931,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -73797,7 +73962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35234] = 21, + [35362] = 21, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73808,15 +73973,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_chain, ACTIONS(1830), 1, anon_sym_PIPE, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73826,26 +73991,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -73856,7 +74021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35314] = 12, + [35442] = 12, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73865,9 +74030,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73877,7 +74042,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1830), 10, @@ -73885,7 +74050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -73906,7 +74071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [35376] = 10, + [35504] = 10, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73915,7 +74080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73931,7 +74096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -73954,7 +74119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [35434] = 17, + [35562] = 17, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -73963,11 +74128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -73977,25 +74142,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, ACTIONS(1830), 4, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -74009,7 +74174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35506] = 23, + [35634] = 23, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74018,21 +74183,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -74042,26 +74207,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -74070,7 +74235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35590] = 25, + [35718] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74079,25 +74244,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35806] = 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(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1676), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35894] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1700), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35982] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36070] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2191), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2193), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -74107,33 +74524,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1834), 2, + ACTIONS(1712), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35678] = 25, + [36158] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74142,25 +74559,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2191), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2193), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -74170,96 +74587,97 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1676), 2, + ACTIONS(1814), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35766] = 25, - ACTIONS(1567), 1, + [36246] = 26, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1569), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1571), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1587), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(1890), 1, + anon_sym_AMP3, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(1910), 1, sym__ternary_qmark, - STATE(637), 1, + ACTIONS(2195), 1, + anon_sym_SEMI, + ACTIONS(2197), 1, + sym__automatic_semicolon, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1589), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1700), 2, - anon_sym_LBRACE, - anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35854] = 25, + [36336] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74268,25 +74686,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(1792), 1, + anon_sym_AMP3, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(1812), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -74296,33 +74714,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1708), 2, - anon_sym_LBRACE, - anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(1924), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35942] = 25, + [36424] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74331,25 +74749,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(1792), 1, + anon_sym_AMP3, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(1812), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -74359,33 +74777,75 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1712), 2, - anon_sym_LBRACE, - anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 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, + [36512] = 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(2189), 3, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, - [36030] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [36558] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74394,25 +74854,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2191), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2193), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -74422,33 +74882,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1814), 2, + ACTIONS(1832), 2, anon_sym_LBRACE, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36118] = 25, + [36646] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74464,7 +74924,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2207), 1, anon_sym_GT_GT, ACTIONS(2211), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(2213), 1, anon_sym_CARET, ACTIONS(2215), 1, @@ -74485,8 +74945,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1832), 2, - anon_sym_of, + ACTIONS(1816), 2, + anon_sym_COLON, anon_sym_BQUOTE, ACTIONS(2199), 2, anon_sym_STAR, @@ -74511,71 +74971,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36206] = 26, - ACTIONS(1818), 1, + [36734] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1820), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1822), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1838), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1882), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1884), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1886), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1890), 1, - anon_sym_AMP, - ACTIONS(1892), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1894), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1898), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1900), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1908), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1910), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - ACTIONS(2233), 1, - anon_sym_SEMI, - ACTIONS(2235), 1, - sym__automatic_semicolon, - STATE(797), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1840), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1878), 2, + ACTIONS(1716), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1888), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1896), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1904), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1906), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1880), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1902), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36296] = 25, + [36822] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74584,25 +75043,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -74612,33 +75071,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1780), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1924), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1782), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36384] = 25, + [36910] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74647,25 +75106,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -74675,75 +75134,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1826), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - 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, + ACTIONS(2201), 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(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, + ACTIONS(2223), 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, - [36518] = 25, + [36998] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74752,25 +75169,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -74780,33 +75197,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1832), 2, - anon_sym_LBRACE, + ACTIONS(1631), 2, + anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2165), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36606] = 25, + [37086] = 15, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74815,26 +75232,12 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2207), 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, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 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, @@ -74843,33 +75246,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1816), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 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, + ACTIONS(1830), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + anon_sym_AMP3, + 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, - [36694] = 25, + anon_sym_BQUOTE, + [37154] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74881,22 +75288,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2133), 1, anon_sym_AMP_AMP, ACTIONS(2135), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, anon_sym_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -74906,33 +75313,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1716), 2, - anon_sym_COLON, + ACTIONS(1832), 2, + anon_sym_of, anon_sym_BQUOTE, ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2155), 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, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36782] = 25, + [37242] = 21, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -74941,26 +75348,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 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, @@ -74969,256 +75368,58 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1780), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [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, + ACTIONS(1828), 6, sym__ternary_qmark, - anon_sym_of, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [37322] = 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(2203), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [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, - 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(1830), 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(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, - anon_sym_BQUOTE, - [36984] = 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(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_LT_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, - [37042] = 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(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, - 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), 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(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(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -75228,26 +75429,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -75257,7 +75458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37204] = 13, + [37404] = 13, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75266,9 +75467,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -75278,10 +75479,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1830), 8, @@ -75289,7 +75490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -75308,7 +75509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [37268] = 19, + [37468] = 19, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75317,11 +75518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -75332,28 +75533,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1830), 2, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -75365,7 +75566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37344] = 20, + [37544] = 20, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75376,13 +75577,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_chain, ACTIONS(1830), 1, anon_sym_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2149), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -75392,26 +75593,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -75423,7 +75624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37422] = 21, + [37622] = 21, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75434,15 +75635,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_chain, ACTIONS(1830), 1, anon_sym_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -75452,26 +75653,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -75482,7 +75683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37502] = 12, + [37702] = 12, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75491,9 +75692,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -75503,7 +75704,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1830), 10, @@ -75511,7 +75712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -75532,7 +75733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [37564] = 10, + [37764] = 10, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75541,7 +75742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -75557,7 +75758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -75580,7 +75781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [37622] = 17, + [37822] = 17, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75589,11 +75790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -75603,25 +75804,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, ACTIONS(1830), 4, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -75635,7 +75836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37694] = 23, + [37894] = 23, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75644,21 +75845,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -75668,26 +75869,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -75696,7 +75897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [37778] = 25, + [37978] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75705,25 +75906,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -75736,30 +75937,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1834), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37866] = 25, + [38066] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75768,25 +75969,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -75799,30 +76000,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1676), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37954] = 25, + [38154] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75831,25 +76032,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -75862,30 +76063,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1700), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38042] = 25, + [38242] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75894,25 +76095,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -75925,30 +76126,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1708), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38130] = 25, + [38330] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -75957,25 +76158,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -75988,30 +76189,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1712), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38218] = 25, + [38418] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76020,25 +76221,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -76051,30 +76252,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1814), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38306] = 25, + [38506] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76083,25 +76284,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -76111,33 +76312,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(1816), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2237), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1782), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38394] = 25, + [38594] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76146,88 +76347,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - 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(1589), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1816), 2, - anon_sym_of, - anon_sym_BQUOTE, - 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, - [38482] = 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(2203), 1, - anon_sym_AMP_AMP, - ACTIONS(2205), 1, + ACTIONS(2233), 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, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -76240,30 +76378,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1716), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38570] = 25, + [38682] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76272,25 +76410,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -76303,30 +76441,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1780), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38658] = 25, + [38770] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76335,25 +76473,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -76366,30 +76504,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1826), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38746] = 25, + [38858] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76398,25 +76536,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -76429,30 +76567,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1631), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38834] = 15, + [38946] = 15, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76461,11 +76599,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -76475,20 +76613,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1830), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -76505,7 +76643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [38902] = 10, + [39014] = 10, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76514,7 +76652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -76530,7 +76668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -76553,7 +76691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [38960] = 21, + [39072] = 21, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76562,17 +76700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -76582,26 +76720,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -76612,67 +76750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39040] = 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(2203), 1, - anon_sym_AMP_AMP, - 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), 5, - sym__ternary_qmark, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [39122] = 13, + [39152] = 13, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76681,9 +76759,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -76693,10 +76771,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1830), 8, @@ -76704,7 +76782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -76723,7 +76801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [39186] = 19, + [39216] = 19, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76732,11 +76810,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -76747,28 +76825,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(1830), 2, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -76780,7 +76858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39262] = 20, + [39292] = 20, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76791,13 +76869,13 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_chain, ACTIONS(1830), 1, anon_sym_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2219), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -76807,26 +76885,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -76838,7 +76916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39340] = 21, + [39370] = 21, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76849,15 +76927,15 @@ static const uint16_t ts_small_parse_table[] = { sym_optional_chain, ACTIONS(1830), 1, anon_sym_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -76867,26 +76945,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -76897,7 +76975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39420] = 12, + [39450] = 12, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76906,9 +76984,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -76918,7 +76996,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1830), 10, @@ -76926,7 +77004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -76947,7 +77025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [39482] = 10, + [39512] = 10, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -76956,7 +77034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -76972,7 +77050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -76995,7 +77073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [39540] = 17, + [39570] = 17, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77004,11 +77082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, STATE(637), 1, sym_arguments, @@ -77018,25 +77096,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, ACTIONS(1830), 4, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -77050,7 +77128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39612] = 23, + [39642] = 23, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77059,22 +77137,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, STATE(637), 1, sym_arguments, ACTIONS(5), 2, @@ -77083,26 +77161,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -77111,7 +77189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [39696] = 25, + [39726] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77120,25 +77198,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -77151,30 +77229,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1834), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39784] = 25, + [39814] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77183,25 +77261,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -77214,30 +77292,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1676), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39872] = 25, + [39902] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77246,25 +77324,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -77277,30 +77355,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1700), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39960] = 25, + [39990] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77309,25 +77387,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -77340,30 +77418,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1708), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40048] = 25, + [40078] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77372,25 +77450,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -77403,30 +77481,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1712), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40136] = 25, + [40166] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77435,25 +77513,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2203), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(2135), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -77466,30 +77544,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1814), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(2199), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2209), 2, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2201), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 3, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40224] = 6, + [40254] = 6, ACTIONS(1459), 1, anon_sym_EQ, ACTIONS(1550), 1, @@ -77504,7 +77582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -77533,7 +77611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [40274] = 25, + [40304] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77542,25 +77620,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -77573,30 +77651,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1832), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40362] = 25, + [40392] = 10, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77605,26 +77683,8 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2221), 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, @@ -77633,32 +77693,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(2129), 2, + ACTIONS(1830), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2139), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(2147), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 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(2131), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2153), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, [40450] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, @@ -77668,25 +77731,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, ACTIONS(2239), 1, anon_sym_COLON, @@ -77698,26 +77761,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -77742,9 +77805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(2248), 1, anon_sym_static, - STATE(1019), 1, + STATE(1023), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, @@ -77758,19 +77821,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2250), 2, anon_sym_get, anon_sym_set, - STATE(1407), 3, + STATE(1431), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1514), 3, + STATE(1516), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1516), 3, + STATE(1519), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1788), 3, + STATE(1804), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -77788,28 +77851,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(1792), 1, + anon_sym_AMP3, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(1812), 1, sym__ternary_qmark, ACTIONS(2252), 1, - anon_sym_COLON, + anon_sym_RBRACK, STATE(637), 1, sym_arguments, ACTIONS(5), 2, @@ -77818,26 +77881,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -77850,28 +77913,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2169), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2171), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2173), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2177), 1, - anon_sym_AMP, - ACTIONS(2179), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2181), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2185), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2187), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2195), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2197), 1, + ACTIONS(2231), 1, sym__ternary_qmark, ACTIONS(2254), 1, - anon_sym_LBRACE, + anon_sym_COLON, STATE(637), 1, sym_arguments, ACTIONS(5), 2, @@ -77880,26 +77943,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2165), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2175), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2183), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2191), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2193), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2167), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2189), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -77912,25 +77975,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, ACTIONS(2256), 1, anon_sym_COLON, @@ -77942,30 +78005,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40877] = 25, + [40877] = 26, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -77974,28 +78037,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1962), 1, + anon_sym_of, ACTIONS(2133), 1, anon_sym_AMP_AMP, ACTIONS(2135), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, anon_sym_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2143), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2147), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2149), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2237), 1, sym__ternary_qmark, ACTIONS(2258), 1, - anon_sym_COLON, + anon_sym_in, STATE(637), 1, sym_arguments, ACTIONS(5), 2, @@ -78007,27 +78072,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2131), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2137), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2145), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2153), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2155), 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, + ACTIONS(2151), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40964] = 25, + [40966] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -78036,27 +78100,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - ACTIONS(2260), 1, + ACTIONS(2261), 1, anon_sym_COLON, STATE(637), 1, sym_arguments, @@ -78066,30 +78130,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41051] = 25, + [41053] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -78098,28 +78162,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - ACTIONS(2262), 1, - anon_sym_RBRACK, + ACTIONS(2263), 1, + anon_sym_COLON, STATE(637), 1, sym_arguments, ACTIONS(5), 2, @@ -78128,30 +78192,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41138] = 25, + [41140] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -78160,28 +78224,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1784), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1786), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1788), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1796), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1800), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1802), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1810), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - ACTIONS(2264), 1, - anon_sym_RBRACK, + ACTIONS(2265), 1, + anon_sym_COLON, STATE(637), 1, sym_arguments, ACTIONS(5), 2, @@ -78190,30 +78254,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1778), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1790), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1798), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1806), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1808), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1782), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1804), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41225] = 25, + [41227] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -78222,28 +78286,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2165), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2167), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2169), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2177), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2191), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2193), 1, sym__ternary_qmark, - ACTIONS(2266), 1, - anon_sym_COLON, + ACTIONS(2267), 1, + anon_sym_LBRACE, STATE(637), 1, sym_arguments, ACTIONS(5), 2, @@ -78252,30 +78316,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2161), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2171), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2187), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2189), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2163), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41312] = 26, + [41314] = 25, ACTIONS(1567), 1, anon_sym_LPAREN, ACTIONS(1569), 1, @@ -78284,30 +78348,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1962), 1, - anon_sym_of, - ACTIONS(2203), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(2205), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(2207), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(1792), 1, + anon_sym_AMP3, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(2215), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(2219), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(2221), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(2229), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(2231), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(2268), 1, - anon_sym_in, + ACTIONS(2269), 1, + anon_sym_RBRACK, STATE(637), 1, sym_arguments, ACTIONS(5), 2, @@ -78316,25 +78378,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2199), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2201), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2209), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2217), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2225), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2227), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2223), 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, @@ -78347,25 +78410,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(637), 1, sym_arguments, @@ -78375,26 +78438,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -78407,25 +78470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(2133), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(2135), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(2137), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(2141), 1, - anon_sym_AMP, - ACTIONS(2143), 1, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(2145), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(2149), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(2151), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(2159), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(2161), 1, + ACTIONS(2231), 1, sym__ternary_qmark, STATE(797), 1, sym_arguments, @@ -78435,26 +78498,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2129), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2139), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(2147), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2155), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(2131), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(2153), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -78481,11 +78544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(2283), 1, anon_sym_static, - STATE(1019), 1, + STATE(1023), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1449), 1, + STATE(1416), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -78496,11 +78559,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2285), 2, anon_sym_get, anon_sym_set, - STATE(1402), 3, + STATE(1415), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1448), 3, + STATE(1496), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -78530,17 +78593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, ACTIONS(2307), 1, aux_sym_method_definition_token1, - STATE(985), 1, + STATE(984), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1027), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, + STATE(1079), 1, sym_method_definition, - STATE(1080), 1, + STATE(1082), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1526), 1, + STATE(1665), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, @@ -78551,7 +78614,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2309), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1254), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -78561,52 +78624,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, sym_identifier, [41712] = 21, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2289), 1, + ACTIONS(2314), 1, anon_sym_STAR, - ACTIONS(2295), 1, + ACTIONS(2317), 1, + anon_sym_RBRACE, + ACTIONS(2319), 1, + anon_sym_SEMI, + ACTIONS(2322), 1, anon_sym_LBRACK, - ACTIONS(2297), 1, + ACTIONS(2325), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2328), 1, anon_sym_SQUOTE, - ACTIONS(2301), 1, + ACTIONS(2331), 1, anon_sym_async, - ACTIONS(2305), 1, + ACTIONS(2337), 1, + anon_sym_AT, + ACTIONS(2340), 1, anon_sym_static, - ACTIONS(2307), 1, + ACTIONS(2343), 1, aux_sym_method_definition_token1, - ACTIONS(2311), 1, - anon_sym_RBRACE, - ACTIONS(2313), 1, - anon_sym_SEMI, - STATE(984), 1, + STATE(983), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1027), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, + STATE(1079), 1, sym_method_definition, - STATE(1080), 1, + STATE(1082), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1526), 1, + STATE(1665), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2334), 2, sym_number, sym_private_property_identifier, - ACTIONS(2309), 2, + ACTIONS(2346), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1254), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2287), 4, + ACTIONS(2311), 4, anon_sym_export, anon_sym_let, anon_sym_await, @@ -78616,8 +78679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(2289), 1, anon_sym_STAR, - ACTIONS(2293), 1, - anon_sym_SEMI, ACTIONS(2295), 1, anon_sym_LBRACK, ACTIONS(2297), 1, @@ -78630,19 +78691,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, ACTIONS(2307), 1, aux_sym_method_definition_token1, - ACTIONS(2315), 1, + ACTIONS(2349), 1, anon_sym_RBRACE, - STATE(985), 1, + ACTIONS(2351), 1, + anon_sym_SEMI, + STATE(983), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1027), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, + STATE(1079), 1, sym_method_definition, - STATE(1080), 1, + STATE(1082), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1526), 1, + STATE(1665), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, @@ -78653,7 +78716,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2309), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1254), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -78662,58 +78725,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, sym_identifier, - [41856] = 21, - ACTIONS(2320), 1, + [41856] = 18, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, anon_sym_STAR, - ACTIONS(2323), 1, - anon_sym_RBRACE, - ACTIONS(2325), 1, - anon_sym_SEMI, - ACTIONS(2328), 1, - anon_sym_LBRACK, - ACTIONS(2331), 1, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(914), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(2334), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2337), 1, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2357), 1, anon_sym_async, - ACTIONS(2343), 1, - anon_sym_AT, - ACTIONS(2346), 1, + ACTIONS(2359), 1, anon_sym_static, - ACTIONS(2349), 1, - aux_sym_method_definition_token1, - STATE(985), 1, - aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1023), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, - sym_method_definition, - STATE(1080), 1, - sym_class_static_block, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1526), 1, - sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2340), 2, + ACTIONS(2281), 2, sym_number, sym_private_property_identifier, - ACTIONS(2352), 2, + ACTIONS(2355), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2361), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1496), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2317), 4, + STATE(1519), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(2353), 4, anon_sym_export, anon_sym_let, anon_sym_await, sym_identifier, - [41928] = 14, + [41922] = 14, ACTIONS(883), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1075), 1, @@ -78724,31 +78784,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1973), 1, anon_sym_LBRACK, - ACTIONS(2357), 1, + ACTIONS(2365), 1, anon_sym_COMMA, - ACTIONS(2359), 1, + ACTIONS(2367), 1, anon_sym_RBRACE, - STATE(1466), 1, + STATE(1434), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2361), 2, + ACTIONS(2369), 2, sym_number, sym_private_property_identifier, - STATE(1457), 3, + STATE(1424), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1788), 3, + STATE(1804), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(1796), 3, + STATE(1844), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2355), 8, + ACTIONS(2363), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -78757,57 +78817,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [41986] = 14, - ACTIONS(883), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1075), 1, + [41980] = 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(1077), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(1973), 1, - anon_sym_LBRACK, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(2365), 1, + ACTIONS(2301), 1, + anon_sym_async, + ACTIONS(2305), 1, + anon_sym_static, + ACTIONS(2307), 1, + aux_sym_method_definition_token1, + ACTIONS(2351), 1, + anon_sym_SEMI, + ACTIONS(2371), 1, anon_sym_RBRACE, - STATE(1476), 1, - aux_sym_object_pattern_repeat1, + STATE(983), 1, + aux_sym_class_body_repeat1, + STATE(1027), 1, + aux_sym_export_statement_repeat1, + STATE(1079), 1, + sym_method_definition, + STATE(1082), 1, + sym_class_static_block, + STATE(1087), 1, + sym_decorator, + STATE(1665), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2361), 2, + ACTIONS(2303), 2, sym_number, sym_private_property_identifier, - 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, - STATE(1796), 3, + ACTIONS(2309), 2, + anon_sym_get, + anon_sym_set, + STATE(1254), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2363), 8, + ACTIONS(2287), 4, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42044] = 21, + [42052] = 21, ACTIONS(93), 1, anon_sym_AT, ACTIONS(2289), 1, anon_sym_STAR, - ACTIONS(2293), 1, - anon_sym_SEMI, ACTIONS(2295), 1, anon_sym_LBRACK, ACTIONS(2297), 1, @@ -78820,19 +78885,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, ACTIONS(2307), 1, aux_sym_method_definition_token1, - ACTIONS(2367), 1, + ACTIONS(2373), 1, anon_sym_RBRACE, - STATE(985), 1, + ACTIONS(2375), 1, + anon_sym_SEMI, + STATE(987), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1027), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, + STATE(1079), 1, sym_method_definition, - STATE(1080), 1, + STATE(1082), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1526), 1, + STATE(1665), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, @@ -78843,7 +78910,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2309), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1254), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -78852,54 +78919,50 @@ static const uint16_t ts_small_parse_table[] = { 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, + [42124] = 14, + ACTIONS(883), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(1973), 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(2365), 1, + anon_sym_COMMA, + ACTIONS(2379), 1, + anon_sym_RBRACE, + STATE(1456), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2369), 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, + STATE(1451), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(1844), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1516), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(2369), 4, + ACTIONS(2377), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, [42182] = 21, ACTIONS(93), 1, anon_sym_AT, @@ -78917,21 +78980,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, ACTIONS(2307), 1, aux_sym_method_definition_token1, - ACTIONS(2379), 1, - anon_sym_RBRACE, ACTIONS(2381), 1, + anon_sym_RBRACE, + ACTIONS(2383), 1, anon_sym_SEMI, - STATE(988), 1, + STATE(991), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1027), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, + STATE(1079), 1, sym_method_definition, - STATE(1080), 1, + STATE(1082), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1526), 1, + STATE(1665), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, @@ -78942,7 +79005,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2309), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1254), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -78968,21 +79031,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, ACTIONS(2307), 1, aux_sym_method_definition_token1, - ACTIONS(2383), 1, - anon_sym_RBRACE, - ACTIONS(2385), 1, + ACTIONS(2351), 1, anon_sym_SEMI, - STATE(982), 1, + ACTIONS(2385), 1, + anon_sym_RBRACE, + STATE(983), 1, aux_sym_class_body_repeat1, - STATE(1025), 1, + STATE(1027), 1, aux_sym_export_statement_repeat1, - STATE(1071), 1, + STATE(1079), 1, sym_method_definition, - STATE(1080), 1, + STATE(1082), 1, sym_class_static_block, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1526), 1, + STATE(1665), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, @@ -78993,7 +79056,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2309), 2, anon_sym_get, anon_sym_set, - STATE(1228), 3, + STATE(1254), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79016,21 +79079,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2361), 2, + ACTIONS(2369), 2, sym_number, sym_private_property_identifier, ACTIONS(2389), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1514), 3, + STATE(1516), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1788), 3, + STATE(1804), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(1796), 3, + STATE(1844), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79043,15 +79106,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42379] = 16, + [42379] = 15, ACTIONS(103), 1, anon_sym_COMMA, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(2391), 1, @@ -79060,10 +79121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79076,34 +79137,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [42438] = 15, + [42436] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(171), 1, - anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(2391), 1, anon_sym_STAR, + ACTIONS(2393), 1, + anon_sym_RBRACE, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, - STATE(1487), 1, + STATE(1473), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -79117,20 +79181,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, [42495] = 16, ACTIONS(103), 1, anon_sym_COMMA, + ACTIONS(171), 1, + anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -79143,11 +79208,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2399), 1, - anon_sym_RBRACE, - STATE(1418), 1, + STATE(1409), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -79161,7 +79224,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79174,6 +79237,8 @@ static const uint16_t ts_small_parse_table[] = { [42554] = 15, ACTIONS(103), 1, anon_sym_COMMA, + ACTIONS(216), 1, + anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -79184,12 +79249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2401), 1, - anon_sym_RBRACE, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79202,7 +79265,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79228,12 +79291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2401), 1, + ACTIONS(2399), 1, anon_sym_RBRACE, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79246,7 +79309,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79256,25 +79319,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, sym_identifier, anon_sym_static, - [42670] = 15, + [42670] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(351), 1, + ACTIONS(216), 1, anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(2391), 1, anon_sym_STAR, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1418), 1, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, aux_sym_object_repeat1, - STATE(1452), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [42729] = 15, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2401), 1, + anon_sym_RBRACE, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79287,7 +79393,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79298,27 +79404,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [42727] = 16, + [42786] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(351), 1, - anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(2391), 1, anon_sym_STAR, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79331,19 +79435,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [42786] = 15, + [42843] = 15, ACTIONS(103), 1, anon_sym_COMMA, + ACTIONS(171), 1, + anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -79354,11 +79461,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2399), 1, - anon_sym_RBRACE, - STATE(1418), 1, + STATE(1409), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -79372,7 +79477,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79383,25 +79488,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [42843] = 15, + [42900] = 16, ACTIONS(103), 1, anon_sym_COMMA, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2393), 1, - anon_sym_RBRACE, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + ACTIONS(2401), 1, + anon_sym_RBRACE, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79414,38 +79521,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - [42900] = 16, + [42959] = 15, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(216), 1, + ACTIONS(351), 1, anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(2391), 1, anon_sym_STAR, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79458,20 +79562,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [42959] = 16, + [43016] = 16, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(171), 1, + ACTIONS(351), 1, anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, @@ -79485,9 +79590,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, - STATE(1487), 1, + STATE(1473), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -79501,7 +79606,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79511,52 +79616,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, sym_identifier, anon_sym_static, - [43018] = 15, + [43075] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(216), 1, - anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_STAR, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, - anon_sym_get, - anon_sym_set, ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [43075] = 13, + anon_sym_get, + anon_sym_set, + [43127] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(216), 1, + ACTIONS(171), 1, anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, @@ -79566,9 +79668,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1418), 1, + STATE(1409), 1, aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -79579,7 +79681,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79592,9 +79694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43127] = 13, + [43179] = 13, ACTIONS(103), 1, anon_sym_COMMA, + ACTIONS(216), 1, + anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -79603,12 +79707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2401), 1, - anon_sym_RBRACE, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79618,7 +79720,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79631,11 +79733,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43179] = 13, + [43231] = 13, ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(171), 1, - anon_sym_RBRACE, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -79644,9 +79744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1452), 1, + ACTIONS(2401), 1, + anon_sym_RBRACE, + STATE(1411), 1, aux_sym_object_pattern_repeat1, - STATE(1487), 1, + STATE(1473), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -79657,7 +79759,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79670,7 +79772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43231] = 13, + [43283] = 13, ACTIONS(103), 1, anon_sym_COMMA, ACTIONS(1075), 1, @@ -79679,14 +79781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, + ACTIONS(2393), 1, + anon_sym_RBRACE, ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2399), 1, - anon_sym_RBRACE, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79696,7 +79798,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79709,7 +79811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43283] = 14, + [43335] = 14, ACTIONS(2295), 1, anon_sym_LBRACK, ACTIONS(2297), 1, @@ -79724,7 +79826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(2413), 1, sym__automatic_semicolon, - STATE(1081), 1, + STATE(1077), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -79739,7 +79841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - STATE(1231), 3, + STATE(1248), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79749,7 +79851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, sym_identifier, anon_sym_static, - [43337] = 13, + [43389] = 13, ACTIONS(103), 1, anon_sym_COMMA, ACTIONS(351), 1, @@ -79762,10 +79864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2397), 1, anon_sym_EQ, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -79775,7 +79877,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79788,46 +79890,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43389] = 13, - ACTIONS(103), 1, - anon_sym_COMMA, + [43441] = 13, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2393), 1, - anon_sym_RBRACE, + ACTIONS(2391), 1, + anon_sym_STAR, 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(1081), 2, sym_number, sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + ACTIONS(2416), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [43441] = 13, + [43492] = 13, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -79838,9 +79939,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2416), 1, + ACTIONS(2419), 1, anon_sym_RBRACE, - STATE(1464), 1, + STATE(1421), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -79854,7 +79955,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79865,7 +79966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [43492] = 14, + [43543] = 14, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -79878,9 +79979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2416), 1, + ACTIONS(2419), 1, anon_sym_RBRACE, - STATE(1464), 1, + STATE(1421), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -79894,7 +79995,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -79904,7 +80005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, sym_identifier, anon_sym_static, - [43545] = 18, + [43596] = 18, ACTIONS(93), 1, anon_sym_AT, ACTIONS(1075), 1, @@ -79913,47 +80014,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2418), 1, + ACTIONS(2421), 1, anon_sym_export, - ACTIONS(2420), 1, + ACTIONS(2423), 1, anon_sym_STAR, - ACTIONS(2422), 1, + ACTIONS(2425), 1, anon_sym_class, - ACTIONS(2424), 1, + ACTIONS(2427), 1, anon_sym_async, - ACTIONS(2428), 1, + ACTIONS(2431), 1, anon_sym_static, - ACTIONS(2430), 1, + ACTIONS(2433), 1, aux_sym_method_definition_token1, - ACTIONS(2432), 1, + ACTIONS(2435), 1, anon_sym_get, - ACTIONS(2434), 1, + ACTIONS(2437), 1, anon_sym_set, - STATE(1041), 1, + STATE(1051), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2426), 2, + ACTIONS(2429), 2, sym_number, sym_private_property_identifier, ACTIONS(1085), 3, anon_sym_let, anon_sym_await, sym_identifier, - STATE(1682), 3, + STATE(1667), 3, sym_string, sym__property_name, sym_computed_property_name, - [43606] = 13, + [43657] = 12, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(2391), 1, @@ -79972,30 +80071,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2436), 2, + ACTIONS(2416), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [43657] = 12, + [43706] = 11, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2439), 1, anon_sym_STAR, - ACTIONS(2397), 1, + ACTIONS(2443), 1, + anon_sym_get, + ACTIONS(2445), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2441), 2, + sym_number, + sym_private_property_identifier, + STATE(1579), 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), 6, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + [43752] = 11, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -80008,10 +80141,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2436), 2, + ACTIONS(2447), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80022,26 +80155,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [43706] = 11, + [43798] = 10, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2439), 1, + ACTIONS(2403), 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(2441), 2, + ACTIONS(2449), 2, sym_number, sym_private_property_identifier, - STATE(1598), 3, + ACTIONS(2451), 2, + anon_sym_get, + anon_sym_set, + STATE(1550), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80057,82 +80189,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [43752] = 11, + [43842] = 12, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2451), 1, - anon_sym_get, - ACTIONS(2453), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2449), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - STATE(1582), 3, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2447), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1709), 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), 6, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - [43798] = 16, - ACTIONS(93), 1, - anon_sym_AT, + [43890] = 10, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - 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(2397), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2426), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - STATE(1682), 3, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2416), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 4, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, - [43854] = 11, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [43934] = 11, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -80141,9 +80268,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2416), 1, + ACTIONS(2419), 1, anon_sym_RBRACE, - STATE(1464), 1, + STATE(1421), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -80154,7 +80281,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1710), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80167,34 +80294,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43900] = 11, + [43980] = 16, + ACTIONS(93), 1, + anon_sym_AT, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2423), 1, anon_sym_STAR, + ACTIONS(2427), 1, + anon_sym_async, + ACTIONS(2431), 1, + anon_sym_static, + ACTIONS(2433), 1, + aux_sym_method_definition_token1, + ACTIONS(2435), 1, + anon_sym_get, + ACTIONS(2437), 1, + anon_sym_set, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(2429), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, + STATE(1667), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [44036] = 10, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2453), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2455), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2457), 2, anon_sym_get, anon_sym_set, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2455), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1710), 3, + STATE(1577), 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), 6, anon_sym_export, anon_sym_let, @@ -80202,28 +80368,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [43946] = 12, + [44080] = 12, ACTIONS(2295), 1, anon_sym_LBRACK, ACTIONS(2297), 1, anon_sym_DQUOTE, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2457), 1, - anon_sym_STAR, ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2461), 1, anon_sym_async, - ACTIONS(2463), 1, - anon_sym_get, ACTIONS(2465), 1, + anon_sym_get, + ACTIONS(2467), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2463), 2, sym_number, sym_private_property_identifier, - STATE(1245), 3, + STATE(1229), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80238,25 +80404,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, sym_identifier, anon_sym_static, - [43994] = 10, + [44128] = 11, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, + ACTIONS(2469), 1, anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_get, + ACTIONS(2475), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2471), 2, sym_number, sym_private_property_identifier, - ACTIONS(2469), 2, - anon_sym_get, - anon_sym_set, - STATE(1553), 3, + STATE(1596), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80272,43 +80439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [44038] = 12, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_async, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1081), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1089), 2, - anon_sym_get, - anon_sym_set, - 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(1085), 5, - anon_sym_export, - anon_sym_let, - anon_sym_await, - sym_identifier, - anon_sym_static, - [44086] = 16, + [44174] = 16, ACTIONS(93), 1, anon_sym_AT, ACTIONS(2295), 1, @@ -80317,29 +80448,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2471), 1, + ACTIONS(2477), 1, anon_sym_STAR, - ACTIONS(2473), 1, + ACTIONS(2479), 1, anon_sym_async, - ACTIONS(2477), 1, + ACTIONS(2483), 1, anon_sym_static, - ACTIONS(2479), 1, + ACTIONS(2485), 1, aux_sym_method_definition_token1, - ACTIONS(2481), 1, + ACTIONS(2487), 1, anon_sym_get, - ACTIONS(2483), 1, + ACTIONS(2489), 1, anon_sym_set, - STATE(1041), 1, + STATE(1051), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2475), 2, + ACTIONS(2481), 2, sym_number, sym_private_property_identifier, - STATE(1232), 3, + STATE(1270), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80348,25 +80479,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, sym_identifier, - [44142] = 10, + [44230] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2491), 2, sym_number, sym_private_property_identifier, - ACTIONS(2489), 2, - anon_sym_get, - anon_sym_set, - STATE(1580), 3, + STATE(1598), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80375,38 +80501,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [44186] = 10, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2397), 1, - anon_sym_EQ, - 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_COLON, - ACTIONS(2436), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1710), 3, - sym_string, - sym__property_name, - sym_computed_property_name, ACTIONS(1085), 8, anon_sym_export, anon_sym_let, @@ -80416,38 +80510,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44230] = 8, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, + [44269] = 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(2493), 1, + anon_sym_default, + STATE(486), 1, + sym_declaration, + STATE(1087), 1, + sym_decorator, + STATE(1383), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, - sym_number, - sym_private_property_identifier, - STATE(1553), 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, + ACTIONS(938), 2, anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [44269] = 8, + 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, + [44322] = 9, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -80457,18 +80558,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - STATE(1580), 3, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2447), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1709), 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, @@ -80478,7 +80580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44308] = 8, + [44363] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -80488,10 +80590,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2491), 2, + ACTIONS(2495), 2, sym_number, sym_private_property_identifier, - STATE(1600), 3, + STATE(1581), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80509,7 +80611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44347] = 8, + [44402] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -80519,10 +80621,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2493), 2, + ACTIONS(2455), 2, sym_number, sym_private_property_identifier, - STATE(1599), 3, + STATE(1577), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80540,7 +80642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44386] = 8, + [44441] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -80550,10 +80652,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2495), 2, + ACTIONS(2497), 2, sym_number, sym_private_property_identifier, - STATE(1584), 3, + STATE(1582), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80571,7 +80673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44425] = 8, + [44480] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -80581,10 +80683,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2497), 2, + ACTIONS(2449), 2, sym_number, sym_private_property_identifier, - STATE(1585), 3, + STATE(1550), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -80602,12 +80704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44464] = 6, + [44519] = 6, ACTIONS(2503), 1, anon_sym_LPAREN, ACTIONS(2505), 1, anon_sym_DOT, - STATE(1106), 1, + STATE(1088), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, @@ -80631,7 +80733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [44499] = 9, + [44554] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -80641,19 +80743,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(2507), 2, sym_number, sym_private_property_identifier, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2455), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1710), 3, + STATE(1597), 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, @@ -80663,44 +80764,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [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, @@ -80726,47 +80789,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [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, + [44621] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80775,7 +80802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -80787,24 +80814,13 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44699] = 3, + [44649] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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(2519), 11, + ACTIONS(2515), 9, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -80812,41 +80828,22 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [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, + ACTIONS(2513), 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, - [44761] = 4, - ACTIONS(2528), 1, - sym__automatic_semicolon, + [44677] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(696), 8, + ACTIONS(2517), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80855,8 +80852,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(694), 10, + ACTIONS(2519), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -80866,36 +80864,37 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44791] = 3, + [44705] = 4, + ACTIONS(2521), 1, + sym__automatic_semicolon, 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, + ACTIONS(696), 8, 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(694), 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, + [44735] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2534), 8, + ACTIONS(2523), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80904,7 +80903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2536), 11, + ACTIONS(2525), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -80916,11 +80915,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44847] = 3, + [44763] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2538), 8, + ACTIONS(2523), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80929,7 +80928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2540), 11, + ACTIONS(2525), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -80941,11 +80940,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44875] = 3, + [44791] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2542), 8, + ACTIONS(2523), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80954,7 +80953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2544), 11, + ACTIONS(2525), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -80966,13 +80965,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44903] = 4, - ACTIONS(2546), 1, - sym__automatic_semicolon, + [44819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(710), 8, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -80981,8 +80978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(708), 10, + ACTIONS(2511), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -80992,11 +80990,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44933] = 3, + [44847] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81005,7 +81003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81017,11 +81015,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44961] = 3, + [44875] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2523), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81030,7 +81028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2525), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81042,11 +81040,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [44989] = 3, + [44903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2527), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81055,7 +81053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2529), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81067,11 +81065,13 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45017] = 3, + [44931] = 4, + ACTIONS(2531), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(710), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81080,9 +81080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(708), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -81092,11 +81091,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45045] = 3, + [44961] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2523), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81105,7 +81104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2525), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81117,61 +81116,39 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45073] = 3, + [44989] = 6, + ACTIONS(2537), 1, + anon_sym_AT, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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(2550), 11, + ACTIONS(2535), 7, 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, - [45101] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2548), 8, + ACTIONS(2533), 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(2550), 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, - [45129] = 3, + [45023] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 8, + ACTIONS(2523), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81180,7 +81157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2550), 11, + ACTIONS(2525), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81192,11 +81169,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45157] = 3, + [45051] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 8, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81205,7 +81182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2550), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81217,11 +81194,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45185] = 3, + [45079] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 8, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81230,7 +81207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2550), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81242,11 +81219,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45213] = 3, + [45107] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2548), 8, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81255,7 +81232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2550), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81267,11 +81244,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45241] = 3, + [45135] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2540), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81280,7 +81257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2542), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81292,11 +81269,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45269] = 3, + [45163] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2544), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81305,7 +81282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2546), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81317,11 +81294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45297] = 3, + [45191] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, + ACTIONS(2544), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81330,7 +81307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2515), 11, + ACTIONS(2546), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81342,61 +81319,47 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45325] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2513), 8, - anon_sym_export, - anon_sym_let, + [45219] = 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, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - 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, - [45353] = 3, + ACTIONS(951), 1, + anon_sym_function, + ACTIONS(2548), 1, + anon_sym_default, + STATE(486), 1, + sym_declaration, + STATE(1087), 1, + sym_decorator, + STATE(1383), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2513), 8, - anon_sym_export, + ACTIONS(938), 2, anon_sym_let, - anon_sym_await, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - 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, - [45381] = 3, + 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, + [45269] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2552), 8, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81405,7 +81368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2554), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81417,7 +81380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45409] = 3, + [45297] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -81442,11 +81405,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45437] = 3, + [45325] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2509), 8, + ACTIONS(2544), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81455,7 +81418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2511), 11, + ACTIONS(2546), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81467,7 +81430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45465] = 14, + [45353] = 14, ACTIONS(93), 1, anon_sym_AT, ACTIONS(936), 1, @@ -81482,13 +81445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(951), 1, anon_sym_function, - ACTIONS(2556), 1, + ACTIONS(2493), 1, anon_sym_default, STATE(486), 1, sym_declaration, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, - STATE(1327), 1, + STATE(1383), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -81503,11 +81466,11 @@ static const uint16_t ts_small_parse_table[] = { sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [45515] = 3, + [45403] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2509), 8, + ACTIONS(2550), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81516,7 +81479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2511), 11, + ACTIONS(2552), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81528,11 +81491,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45543] = 3, + [45431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2509), 8, + ACTIONS(2554), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81541,7 +81504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2511), 11, + ACTIONS(2556), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -81553,7 +81516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45571] = 3, + [45459] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -81578,13 +81541,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45599] = 4, - ACTIONS(2562), 1, - anon_sym_SEMI, + [45487] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2558), 8, + ACTIONS(2544), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81593,9 +81554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2560), 9, + ACTIONS(2546), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -81603,43 +81566,36 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [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, + [45515] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2567), 2, - sym_number, - sym_private_property_identifier, - STATE(1575), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(2544), 8, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [45671] = 3, + anon_sym_get, + anon_sym_set, + ACTIONS(2546), 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, + [45543] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2573), 8, + ACTIONS(2544), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81648,8 +81604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2575), 10, + ACTIONS(2546), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -81659,28 +81616,36 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [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, + [45571] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2579), 2, + 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(2511), 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, - STATE(1694), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 8, + anon_sym_AT, + aux_sym_method_definition_token1, + [45599] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(702), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81689,7 +81654,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [45737] = 3, + ACTIONS(700), 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, + [45626] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -81713,7 +81689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45764] = 11, + [45653] = 10, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -81722,19 +81698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2581), 1, + ACTIONS(2453), 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(2583), 2, + ACTIONS(2455), 2, sym_number, sym_private_property_identifier, - STATE(1730), 3, + ACTIONS(2457), 2, + anon_sym_get, + anon_sym_set, + STATE(1577), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -81745,7 +81720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [45807] = 12, + [45694] = 9, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -81754,35 +81729,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2589), 1, - anon_sym_STAR, - ACTIONS(2591), 1, - anon_sym_async, - ACTIONS(2595), 1, - anon_sym_get, - ACTIONS(2597), 1, - anon_sym_set, + ACTIONS(2558), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2593), 2, + ACTIONS(2560), 2, sym_number, sym_private_property_identifier, - STATE(1508), 3, + STATE(1677), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [45852] = 3, + anon_sym_get, + anon_sym_set, + [45733] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2599), 8, + ACTIONS(2562), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81791,7 +81763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2601), 10, + ACTIONS(2564), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -81802,7 +81774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45879] = 11, + [45760] = 11, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -81811,19 +81783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2603), 1, + ACTIONS(2566), 1, anon_sym_STAR, - ACTIONS(2607), 1, + ACTIONS(2570), 1, anon_sym_get, - ACTIONS(2609), 1, + ACTIONS(2572), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2605), 2, + ACTIONS(2568), 2, sym_number, sym_private_property_identifier, - STATE(1568), 3, + STATE(1600), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -81834,11 +81806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [45922] = 3, + [45803] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2558), 8, + ACTIONS(2574), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81847,7 +81819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2560), 10, + ACTIONS(2576), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -81858,11 +81830,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45949] = 3, + [45830] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2611), 8, + ACTIONS(2578), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81871,7 +81843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2613), 10, + ACTIONS(2580), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -81882,38 +81854,32 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [45976] = 10, - 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(2485), 1, - anon_sym_STAR, + [45857] = 4, + ACTIONS(2586), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2489), 2, - anon_sym_get, - anon_sym_set, - STATE(1580), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(2582), 8, anon_sym_export, anon_sym_let, anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [46017] = 10, + anon_sym_get, + anon_sym_set, + ACTIONS(2584), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [45886] = 10, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -81922,18 +81888,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2615), 1, + ACTIONS(2589), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2579), 2, + ACTIONS(2560), 2, sym_number, sym_private_property_identifier, - ACTIONS(2617), 2, + ACTIONS(2591), 2, anon_sym_get, anon_sym_set, - STATE(1694), 3, + STATE(1677), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -81944,7 +81910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, sym_identifier, anon_sym_static, - [46058] = 11, + [45927] = 12, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -81953,34 +81919,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2619), 1, + ACTIONS(2593), 1, anon_sym_STAR, - ACTIONS(2623), 1, + ACTIONS(2595), 1, + anon_sym_async, + ACTIONS(2599), 1, anon_sym_get, - ACTIONS(2625), 1, + ACTIONS(2601), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2621), 2, + ACTIONS(2597), 2, sym_number, sym_private_property_identifier, - STATE(1602), 3, + STATE(1731), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 6, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - [46101] = 3, + [45972] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(702), 8, + ACTIONS(2582), 8, anon_sym_export, anon_sym_let, anon_sym_await, @@ -81989,7 +81956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(700), 10, + ACTIONS(2584), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -82000,7 +81967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [46128] = 8, + [45999] = 11, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82009,54 +81976,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2627), 2, - sym_number, - sym_private_property_identifier, - STATE(1604), 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, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2607), 1, anon_sym_get, + ACTIONS(2609), 1, anon_sym_set, - [46164] = 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(2629), 2, + ACTIONS(2605), 2, sym_number, sym_private_property_identifier, - STATE(1577), 3, + STATE(1606), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + 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, - [46200] = 8, + [46042] = 11, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82065,57 +82008,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2395), 1, anon_sym_LPAREN, + ACTIONS(2611), 1, + anon_sym_STAR, + ACTIONS(2615), 1, + anon_sym_get, + ACTIONS(2617), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2631), 2, + ACTIONS(2613), 2, sym_number, sym_private_property_identifier, - STATE(1570), 3, + STATE(1573), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + 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, - [46236] = 11, + [46085] = 11, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2633), 1, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2635), 1, - anon_sym_async, - ACTIONS(2639), 1, + ACTIONS(2623), 1, anon_sym_get, - ACTIONS(2641), 1, + ACTIONS(2625), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2637), 2, + ACTIONS(2621), 2, sym_number, sym_private_property_identifier, - STATE(1529), 3, + STATE(1565), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [46278] = 8, + [46128] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82127,10 +82075,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2643), 2, + ACTIONS(2627), 2, sym_number, sym_private_property_identifier, - STATE(1539), 3, + STATE(1608), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82143,91 +82091,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46314] = 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, + [46164] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2645), 2, + ACTIONS(2631), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1540), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 8, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(2629), 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, - [46350] = 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, + [46190] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2647), 2, + ACTIONS(2635), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1715), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 8, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(2633), 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, - [46386] = 8, + [46216] = 10, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, + ACTIONS(2391), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2649), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - STATE(1718), 3, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 8, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [46422] = 3, + [46256] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -82250,7 +82190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46448] = 8, + [46282] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82262,10 +82202,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2651), 2, + ACTIONS(2637), 2, sym_number, sym_private_property_identifier, - STATE(1740), 3, + STATE(1718), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82278,7 +82218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46484] = 8, + [46318] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82290,10 +82230,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2653), 2, + ACTIONS(2639), 2, sym_number, sym_private_property_identifier, - STATE(1741), 3, + STATE(1719), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82306,30 +82246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46520] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2657), 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(2655), 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, - [46546] = 8, + [46354] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82341,10 +82258,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 2, + ACTIONS(2641), 2, sym_number, sym_private_property_identifier, - STATE(1562), 3, + STATE(1740), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82357,7 +82274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46582] = 8, + [46390] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82369,10 +82286,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2579), 2, + ACTIONS(2643), 2, sym_number, sym_private_property_identifier, - STATE(1694), 3, + STATE(1742), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82385,60 +82302,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46618] = 3, + [46426] = 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(1737), 8, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2645), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - ACTIONS(1735), 9, + STATE(1555), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 8, 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, - [46644] = 10, + [46462] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, - anon_sym_STAR, - ACTIONS(2661), 1, - anon_sym_async, + ACTIONS(2395), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2560), 2, sym_number, sym_private_property_identifier, - ACTIONS(2469), 2, - anon_sym_get, - anon_sym_set, - STATE(1553), 3, + STATE(1677), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [46684] = 8, + anon_sym_get, + anon_sym_set, + [46498] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82450,10 +82370,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2663), 2, + ACTIONS(2647), 2, sym_number, sym_private_property_identifier, - STATE(1569), 3, + STATE(1559), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82466,7 +82386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46720] = 8, + [46534] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82478,7 +82398,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2665), 2, + ACTIONS(2649), 2, sym_number, sym_private_property_identifier, STATE(1561), 3, @@ -82494,7 +82414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46756] = 8, + [46570] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82506,10 +82426,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2651), 2, sym_number, sym_private_property_identifier, - STATE(1580), 3, + STATE(1566), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82522,42 +82442,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46792] = 11, + [46606] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, ACTIONS(2277), 1, anon_sym_LBRACK, - 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(2395), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2671), 2, + ACTIONS(2653), 2, sym_number, sym_private_property_identifier, - STATE(1583), 3, + STATE(1567), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1085), 5, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [46834] = 3, + anon_sym_get, + anon_sym_set, + [46642] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2679), 8, + ACTIONS(1635), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -82566,7 +82483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - ACTIONS(2677), 9, + ACTIONS(1633), 9, anon_sym_export, anon_sym_let, anon_sym_await, @@ -82576,7 +82493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46860] = 8, + [46668] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82588,10 +82505,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2681), 2, + ACTIONS(2655), 2, sym_number, sym_private_property_identifier, - STATE(1593), 3, + STATE(1612), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82604,7 +82521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46896] = 8, + [46704] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82616,10 +82533,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2683), 2, + ACTIONS(2657), 2, sym_number, sym_private_property_identifier, - STATE(1595), 3, + STATE(1575), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82632,55 +82549,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [46932] = 8, - ACTIONS(1075), 1, + [46740] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1737), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + 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, + [46766] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2685), 2, + ACTIONS(1745), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1596), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1085), 8, + anon_sym_AT, + aux_sym_method_definition_token1, + 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, - [46968] = 10, + [46792] = 11, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, - anon_sym_async, ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2391), 1, + ACTIONS(2659), 1, anon_sym_STAR, + ACTIONS(2661), 1, + anon_sym_async, + ACTIONS(2665), 1, + anon_sym_get, + ACTIONS(2667), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(2663), 2, sym_number, sym_private_property_identifier, - ACTIONS(1089), 2, - anon_sym_get, - anon_sym_set, - STATE(1710), 3, + STATE(1564), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82690,7 +82626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, sym_identifier, anon_sym_static, - [47008] = 8, + [46834] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82702,10 +82638,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2687), 2, + ACTIONS(2669), 2, sym_number, sym_private_property_identifier, - STATE(1603), 3, + STATE(1572), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82718,7 +82654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47044] = 8, + [46870] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82730,10 +82666,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2689), 2, + ACTIONS(2671), 2, sym_number, sym_private_property_identifier, - STATE(1576), 3, + STATE(1583), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82746,7 +82682,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47080] = 8, + [46906] = 10, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2403), 1, + anon_sym_STAR, + ACTIONS(2673), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2449), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2451), 2, + anon_sym_get, + anon_sym_set, + STATE(1550), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [46946] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82758,10 +82724,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2691), 2, + ACTIONS(2455), 2, sym_number, sym_private_property_identifier, - STATE(1610), 3, + STATE(1577), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82774,7 +82740,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47116] = 8, + [46982] = 11, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2675), 1, + anon_sym_STAR, + ACTIONS(2677), 1, + anon_sym_async, + ACTIONS(2681), 1, + anon_sym_get, + ACTIONS(2683), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2679), 2, + sym_number, + sym_private_property_identifier, + STATE(1580), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [47024] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82786,10 +82783,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2693), 2, + ACTIONS(2685), 2, sym_number, sym_private_property_identifier, - STATE(1611), 3, + STATE(1591), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82802,7 +82799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47152] = 8, + [47060] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82814,10 +82811,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 2, + ACTIONS(2687), 2, sym_number, sym_private_property_identifier, - STATE(1613), 3, + STATE(1593), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82830,7 +82827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47188] = 8, + [47096] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82842,10 +82839,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2697), 2, + ACTIONS(2689), 2, sym_number, sym_private_property_identifier, - STATE(1614), 3, + STATE(1594), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82858,7 +82855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47224] = 8, + [47132] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -82870,10 +82867,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2699), 2, + ACTIONS(2691), 2, sym_number, sym_private_property_identifier, - STATE(1552), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82886,47 +82883,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [47260] = 3, + [47168] = 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(1635), 8, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(2693), 2, + sym_number, + sym_private_property_identifier, + STATE(1602), 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, + [47204] = 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(2695), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - ACTIONS(1633), 9, + STATE(1609), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 8, 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, - [47286] = 3, + [47240] = 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(1745), 8, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(2697), 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_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47276] = 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(2699), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - ACTIONS(1743), 9, + STATE(1574), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, anon_sym_await, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, @@ -82942,10 +83005,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2701), 2, + ACTIONS(2645), 2, sym_number, sym_private_property_identifier, - STATE(1597), 3, + STATE(1555), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82968,10 +83031,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2699), 2, + ACTIONS(2701), 2, sym_number, sym_private_property_identifier, - STATE(1552), 3, + STATE(1610), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -82994,10 +83057,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2579), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - STATE(1694), 3, + STATE(1709), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83020,10 +83083,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2703), 2, + ACTIONS(2560), 2, sym_number, sym_private_property_identifier, - STATE(1559), 3, + STATE(1677), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83046,10 +83109,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2705), 2, + ACTIONS(2703), 2, sym_number, sym_private_property_identifier, - STATE(1565), 3, + STATE(1711), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83072,10 +83135,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1081), 2, + ACTIONS(2705), 2, sym_number, sym_private_property_identifier, - STATE(1710), 3, + STATE(1558), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83101,7 +83164,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2707), 2, sym_number, sym_private_property_identifier, - STATE(1726), 3, + STATE(1563), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83127,7 +83190,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2709), 2, sym_number, sym_private_property_identifier, - STATE(1712), 3, + STATE(1569), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83153,7 +83216,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2711), 2, sym_number, sym_private_property_identifier, - STATE(1739), 3, + STATE(1525), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83176,10 +83239,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2713), 2, + ACTIONS(2449), 2, sym_number, sym_private_property_identifier, - STATE(1594), 3, + STATE(1550), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83202,10 +83265,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2455), 2, sym_number, sym_private_property_identifier, - STATE(1553), 3, + STATE(1577), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83228,10 +83291,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2713), 2, sym_number, sym_private_property_identifier, - STATE(1580), 3, + STATE(1578), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83254,10 +83317,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2715), 2, + ACTIONS(2685), 2, sym_number, sym_private_property_identifier, - STATE(1601), 3, + STATE(1591), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83280,10 +83343,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2717), 2, + ACTIONS(2715), 2, sym_number, sym_private_property_identifier, - STATE(1581), 3, + STATE(1592), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83306,10 +83369,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2681), 2, + ACTIONS(2717), 2, sym_number, sym_private_property_identifier, - STATE(1593), 3, + STATE(1595), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83335,7 +83398,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2719), 2, sym_number, sym_private_property_identifier, - STATE(1609), 3, + STATE(1599), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83361,7 +83424,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2721), 2, sym_number, sym_private_property_identifier, - STATE(1612), 3, + STATE(1607), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83387,7 +83450,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2723), 2, sym_number, sym_private_property_identifier, - STATE(1572), 3, + STATE(1739), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -83520,1032 +83583,1095 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [48038] = 11, - ACTIONS(2297), 1, - anon_sym_DQUOTE, - ACTIONS(2299), 1, - anon_sym_SQUOTE, + [48038] = 9, ACTIONS(2737), 1, - sym_identifier, - ACTIONS(2739), 1, - anon_sym_STAR, - ACTIONS(2741), 1, - anon_sym_LBRACE, - ACTIONS(2745), 1, - anon_sym_DOT, - STATE(1359), 1, - sym_string, - STATE(1625), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2743), 2, - anon_sym_LPAREN, - sym_optional_chain, - STATE(1862), 2, - sym_namespace_import, - sym_named_imports, - [48075] = 11, - ACTIONS(2747), 1, - sym_identifier, - ACTIONS(2749), 1, - anon_sym_LBRACE, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2753), 1, - anon_sym_GT, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(2759), 1, - anon_sym_SLASH_GT, - STATE(1185), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1305), 2, - sym_jsx_expression, - sym_jsx_attribute, - [48111] = 8, - ACTIONS(2761), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2767), 1, + ACTIONS(2743), 1, anon_sym_LT_SLASH, - STATE(1149), 1, - sym_jsx_opening_element, - STATE(1259), 1, + ACTIONS(2745), 1, + anon_sym_AMP, + STATE(745), 1, sym_jsx_closing_element, + STATE(1147), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 2, + ACTIONS(2739), 2, sym_jsx_text, sym_html_character_reference, - STATE(1160), 4, + STATE(1146), 5, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, aux_sym_jsx_element_repeat1, - [48141] = 11, - ACTIONS(2747), 1, - sym_identifier, - ACTIONS(2749), 1, - anon_sym_LBRACE, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2753), 1, - anon_sym_GT, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(2769), 1, - anon_sym_SLASH_GT, - STATE(1177), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1305), 2, - sym_jsx_expression, - sym_jsx_attribute, - [48177] = 8, - ACTIONS(2761), 1, + [48072] = 9, + ACTIONS(2737), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2771), 1, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2749), 1, anon_sym_LT_SLASH, STATE(611), 1, sym_jsx_closing_element, - STATE(1149), 1, + STATE(1147), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 2, + ACTIONS(2747), 2, sym_jsx_text, sym_html_character_reference, - STATE(1160), 4, + STATE(1153), 5, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, aux_sym_jsx_element_repeat1, - [48207] = 8, - ACTIONS(2761), 1, + [48106] = 9, + ACTIONS(2737), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2775), 1, + ACTIONS(2743), 1, anon_sym_LT_SLASH, - STATE(1149), 1, - sym_jsx_opening_element, - STATE(1255), 1, + ACTIONS(2745), 1, + anon_sym_AMP, + STATE(790), 1, sym_jsx_closing_element, + STATE(1147), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2773), 2, + ACTIONS(2747), 2, sym_jsx_text, sym_html_character_reference, - STATE(1156), 4, + STATE(1153), 5, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, aux_sym_jsx_element_repeat1, - [48237] = 8, - ACTIONS(2761), 1, + [48140] = 9, + ACTIONS(2737), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2767), 1, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2753), 1, anon_sym_LT_SLASH, - STATE(1149), 1, + STATE(1147), 1, sym_jsx_opening_element, - STATE(1312), 1, + STATE(1239), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2777), 2, + ACTIONS(2751), 2, sym_jsx_text, sym_html_character_reference, - STATE(1146), 4, + STATE(1148), 5, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, aux_sym_jsx_element_repeat1, - [48267] = 11, - ACTIONS(2747), 1, - sym_identifier, - ACTIONS(2749), 1, - anon_sym_LBRACE, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2753), 1, - anon_sym_GT, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(2779), 1, - anon_sym_SLASH_GT, - STATE(1182), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1305), 2, - sym_jsx_expression, - sym_jsx_attribute, - [48303] = 11, - ACTIONS(2747), 1, - sym_identifier, - ACTIONS(2749), 1, + [48174] = 9, + ACTIONS(2737), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, - anon_sym_COLON, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2745), 1, + anon_sym_AMP, ACTIONS(2753), 1, - anon_sym_GT, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(2781), 1, - anon_sym_SLASH_GT, - STATE(1183), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, - sym_jsx_namespace_name, + anon_sym_LT_SLASH, + STATE(1147), 1, + sym_jsx_opening_element, + STATE(1261), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + ACTIONS(2747), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1153), 5, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [48339] = 8, - ACTIONS(2761), 1, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [48208] = 9, + ACTIONS(2737), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2771), 1, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2757), 1, anon_sym_LT_SLASH, - STATE(608), 1, - sym_jsx_closing_element, - STATE(1149), 1, + STATE(1147), 1, sym_jsx_opening_element, + STATE(1299), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2783), 2, + ACTIONS(2755), 2, sym_jsx_text, sym_html_character_reference, - STATE(1148), 4, + STATE(1150), 5, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, aux_sym_jsx_element_repeat1, - [48369] = 8, - ACTIONS(2761), 1, + [48242] = 9, + ACTIONS(2737), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2785), 1, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2757), 1, anon_sym_LT_SLASH, - STATE(790), 1, - sym_jsx_closing_element, - STATE(1149), 1, + STATE(1147), 1, sym_jsx_opening_element, + STATE(1306), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 2, + ACTIONS(2747), 2, sym_jsx_text, sym_html_character_reference, - STATE(1160), 4, + STATE(1153), 5, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, aux_sym_jsx_element_repeat1, - [48399] = 8, - ACTIONS(2761), 1, + [48276] = 9, + ACTIONS(2737), 1, anon_sym_LBRACE, - ACTIONS(2765), 1, + ACTIONS(2741), 1, anon_sym_LT, - ACTIONS(2785), 1, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2749), 1, anon_sym_LT_SLASH, - STATE(745), 1, + STATE(608), 1, sym_jsx_closing_element, - STATE(1149), 1, + STATE(1147), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2787), 2, + ACTIONS(2759), 2, sym_jsx_text, sym_html_character_reference, - STATE(1154), 4, + STATE(1145), 5, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, aux_sym_jsx_element_repeat1, - [48429] = 8, + [48310] = 11, + ACTIONS(2297), 1, + anon_sym_DQUOTE, + ACTIONS(2299), 1, + anon_sym_SQUOTE, ACTIONS(2761), 1, - anon_sym_LBRACE, + sym_identifier, + ACTIONS(2763), 1, + anon_sym_STAR, ACTIONS(2765), 1, + anon_sym_LBRACE, + ACTIONS(2769), 1, + anon_sym_DOT, + STATE(1401), 1, + sym_string, + STATE(1534), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2767), 2, + anon_sym_LPAREN, + sym_optional_chain, + STATE(1760), 2, + sym_namespace_import, + sym_named_imports, + [48347] = 8, + ACTIONS(2771), 1, + anon_sym_LBRACE, + ACTIONS(2777), 1, anon_sym_LT, - ACTIONS(2775), 1, + ACTIONS(2780), 1, anon_sym_LT_SLASH, - STATE(1149), 1, + ACTIONS(2782), 1, + anon_sym_AMP, + STATE(1147), 1, sym_jsx_opening_element, - STATE(1290), 1, - sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2763), 2, + ACTIONS(2774), 2, sym_jsx_text, sym_html_character_reference, - STATE(1160), 4, + STATE(1153), 5, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, aux_sym_jsx_element_repeat1, - [48459] = 10, - ACTIONS(2747), 1, + [48378] = 11, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2789), 1, anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2759), 1, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2797), 1, anon_sym_SLASH_GT, - STATE(1173), 1, + STATE(1178), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48492] = 10, - ACTIONS(2747), 1, + [48414] = 11, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2757), 1, + ACTIONS(2795), 1, anon_sym_DOT, - ACTIONS(2769), 1, + ACTIONS(2799), 1, anon_sym_SLASH_GT, - STATE(1178), 1, + STATE(1173), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48525] = 10, - ACTIONS(2747), 1, + [48450] = 11, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2757), 1, + ACTIONS(2795), 1, anon_sym_DOT, - ACTIONS(2781), 1, + ACTIONS(2801), 1, anon_sym_SLASH_GT, - STATE(1167), 1, + STATE(1176), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48558] = 7, - ACTIONS(2789), 1, + [48486] = 11, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, anon_sym_LBRACE, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, ACTIONS(2795), 1, - anon_sym_LT, - ACTIONS(2798), 1, - anon_sym_LT_SLASH, - STATE(1149), 1, - sym_jsx_opening_element, + anon_sym_DOT, + ACTIONS(2803), 1, + anon_sym_SLASH_GT, + STATE(1182), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2792), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1160), 4, - sym_jsx_element, + STATE(1300), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [48585] = 10, - ACTIONS(2747), 1, + sym_jsx_attribute, + [48522] = 10, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2779), 1, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2799), 1, anon_sym_SLASH_GT, - STATE(1181), 1, + STATE(1174), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48618] = 10, - ACTIONS(2747), 1, + [48555] = 10, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(2759), 1, + ACTIONS(2797), 1, anon_sym_SLASH_GT, - STATE(1186), 1, + STATE(1177), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48651] = 10, - ACTIONS(2747), 1, + [48588] = 10, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2757), 1, + ACTIONS(2795), 1, anon_sym_DOT, - ACTIONS(2779), 1, + ACTIONS(2797), 1, anon_sym_SLASH_GT, - STATE(1184), 1, + STATE(1179), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48684] = 10, - ACTIONS(2747), 1, + [48621] = 10, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2789), 1, anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2781), 1, + ACTIONS(2801), 1, anon_sym_SLASH_GT, - STATE(1179), 1, + STATE(1185), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48717] = 10, - ACTIONS(2747), 1, + [48654] = 10, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2789), 1, anon_sym_COLON, - ACTIONS(2753), 1, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2769), 1, + ACTIONS(2803), 1, anon_sym_SLASH_GT, - STATE(1175), 1, + STATE(1181), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48750] = 9, - ACTIONS(2747), 1, + [48687] = 10, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2800), 1, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2802), 1, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2801), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1167), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48780] = 9, - ACTIONS(2747), 1, + [48720] = 10, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2804), 1, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2806), 1, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2803), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1183), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48810] = 7, - ACTIONS(2749), 1, + [48753] = 10, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 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(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2799), 1, + anon_sym_SLASH_GT, + STATE(1172), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1291), 4, - sym_jsx_element, + STATE(1300), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [48836] = 9, + sym_jsx_attribute, + [48786] = 9, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2814), 1, + ACTIONS(2805), 1, sym_identifier, - ACTIONS(2816), 1, + ACTIONS(2807), 1, anon_sym_default, - ACTIONS(2818), 1, + ACTIONS(2809), 1, anon_sym_COMMA, - ACTIONS(2820), 1, + ACTIONS(2811), 1, anon_sym_RBRACE, - STATE(1443), 1, + STATE(1491), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1775), 2, + STATE(1789), 2, sym__module_export_name, sym_string, - [48866] = 7, - ACTIONS(2749), 1, + [48816] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 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(2793), 1, + sym_jsx_identifier, + ACTIONS(2813), 1, + anon_sym_GT, + ACTIONS(2815), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1292), 4, - sym_jsx_element, + STATE(1300), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [48892] = 8, - ACTIONS(2822), 1, + sym_jsx_attribute, + [48846] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2825), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2830), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - STATE(1171), 1, + ACTIONS(2817), 1, + anon_sym_GT, + ACTIONS(2819), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2828), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48920] = 8, + [48876] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2835), 1, + ACTIONS(2823), 1, anon_sym_COMMA, - ACTIONS(2837), 1, + ACTIONS(2825), 1, anon_sym_RBRACE, - STATE(1414), 1, + STATE(1478), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2833), 2, + ACTIONS(2821), 2, anon_sym_default, sym_identifier, - STATE(1423), 2, + STATE(1492), 2, sym__module_export_name, sym_string, - [48948] = 9, - ACTIONS(2747), 1, + [48904] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, - sym_jsx_identifier, - ACTIONS(2839), 1, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2841), 1, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2799), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1175), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [48978] = 9, - ACTIONS(2747), 1, + [48934] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2759), 1, + ACTIONS(2797), 1, anon_sym_SLASH_GT, - STATE(1188), 1, + STATE(1180), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49008] = 9, - ACTIONS(2747), 1, + [48964] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2839), 1, + ACTIONS(2827), 1, anon_sym_GT, - ACTIONS(2843), 1, + ACTIONS(2829), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49038] = 9, - ACTIONS(2747), 1, + [48994] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, - anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2779), 1, + ACTIONS(2831), 1, + anon_sym_GT, + ACTIONS(2833), 1, anon_sym_SLASH_GT, STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49068] = 9, - ACTIONS(2747), 1, + [49024] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2845), 1, + ACTIONS(2813), 1, anon_sym_GT, - ACTIONS(2847), 1, + ACTIONS(2835), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49098] = 9, - ACTIONS(2747), 1, + [49054] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2804), 1, + ACTIONS(2817), 1, anon_sym_GT, - ACTIONS(2849), 1, + ACTIONS(2837), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49128] = 9, - ACTIONS(2747), 1, + [49084] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2839), 1, + ACTIONS(2831), 1, anon_sym_GT, - ACTIONS(2851), 1, + ACTIONS(2839), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49158] = 9, - ACTIONS(2747), 1, + [49114] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2800), 1, + ACTIONS(2827), 1, anon_sym_GT, - ACTIONS(2853), 1, + ACTIONS(2841), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49188] = 9, - ACTIONS(2747), 1, + [49144] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2839), 1, + ACTIONS(2831), 1, anon_sym_GT, - ACTIONS(2855), 1, + ACTIONS(2843), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49218] = 9, - ACTIONS(2747), 1, + [49174] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2845), 1, + ACTIONS(2813), 1, anon_sym_GT, - ACTIONS(2857), 1, + ACTIONS(2845), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49248] = 9, - ACTIONS(2747), 1, + [49204] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2845), 1, + ACTIONS(2817), 1, anon_sym_GT, - ACTIONS(2859), 1, + ACTIONS(2847), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49278] = 9, - ACTIONS(2747), 1, + [49234] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2804), 1, + ACTIONS(2827), 1, anon_sym_GT, - ACTIONS(2861), 1, + ACTIONS(2849), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49308] = 9, - ACTIONS(2747), 1, + [49264] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2845), 1, + ACTIONS(2831), 1, anon_sym_GT, - ACTIONS(2863), 1, + ACTIONS(2851), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49338] = 9, - ACTIONS(2747), 1, + [49294] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2804), 1, + ACTIONS(2813), 1, anon_sym_GT, - ACTIONS(2865), 1, + ACTIONS(2853), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49368] = 9, - ACTIONS(2747), 1, + [49324] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2800), 1, + ACTIONS(2817), 1, anon_sym_GT, - ACTIONS(2867), 1, + ACTIONS(2855), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49398] = 9, - ACTIONS(2747), 1, + [49354] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2800), 1, + ACTIONS(2827), 1, anon_sym_GT, - ACTIONS(2869), 1, + ACTIONS(2857), 1, anon_sym_SLASH_GT, - STATE(1171), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49428] = 9, - ACTIONS(2747), 1, + [49384] = 7, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2859), 1, + anon_sym_LT, + ACTIONS(2861), 1, + anon_sym_DQUOTE, + ACTIONS(2863), 1, + anon_sym_SQUOTE, + STATE(1149), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1293), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [49410] = 8, + ACTIONS(2865), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2868), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2873), 1, + sym_jsx_identifier, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2871), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49438] = 7, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2859), 1, + anon_sym_LT, + ACTIONS(2861), 1, + anon_sym_DQUOTE, + ACTIONS(2863), 1, + anon_sym_SQUOTE, + STATE(1149), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1294), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [49464] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2781), 1, + ACTIONS(2801), 1, anon_sym_SLASH_GT, - STATE(1166), 1, + STATE(1168), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49458] = 9, - ACTIONS(2747), 1, + [49494] = 9, + ACTIONS(2785), 1, sym_identifier, - ACTIONS(2749), 1, + ACTIONS(2787), 1, anon_sym_LBRACE, - ACTIONS(2753), 1, + ACTIONS(2791), 1, anon_sym_GT, - ACTIONS(2755), 1, + ACTIONS(2793), 1, sym_jsx_identifier, - ACTIONS(2769), 1, + ACTIONS(2803), 1, anon_sym_SLASH_GT, - STATE(1180), 1, + STATE(1184), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1226), 1, + STATE(1235), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1305), 2, + STATE(1300), 2, sym_jsx_expression, sym_jsx_attribute, - [49488] = 7, + [49524] = 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(1368), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49549] = 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(1375), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49574] = 7, ACTIONS(1100), 1, sym_identifier, ACTIONS(1102), 1, @@ -84554,107 +84680,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(1390), 1, + STATE(1358), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1291), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49513] = 7, + [49599] = 7, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2871), 1, + ACTIONS(2876), 1, anon_sym_RBRACE, - STATE(1541), 1, + STATE(1540), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2833), 2, + ACTIONS(2821), 2, anon_sym_default, sym_identifier, - STATE(1423), 2, + STATE(1492), 2, sym__module_export_name, sym_string, - [49538] = 8, + [49624] = 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(1443), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49649] = 7, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(2878), 1, + sym_identifier, + ACTIONS(2880), 1, + anon_sym_of, + STATE(1358), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1215), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49674] = 7, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2814), 1, - sym_identifier, - ACTIONS(2816), 1, - anon_sym_default, - ACTIONS(2873), 1, + ACTIONS(2882), 1, anon_sym_RBRACE, - STATE(1592), 1, - sym_import_specifier, + STATE(1540), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1775), 2, + ACTIONS(2821), 2, + anon_sym_default, + sym_identifier, + STATE(1492), 2, sym__module_export_name, sym_string, - [49565] = 7, + [49699] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(2805), 1, + sym_identifier, + ACTIONS(2807), 1, + anon_sym_default, + ACTIONS(2884), 1, anon_sym_RBRACE, - STATE(1541), 1, - sym_export_specifier, + STATE(1604), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2833), 2, - anon_sym_default, - sym_identifier, - STATE(1423), 2, + STATE(1789), 2, sym__module_export_name, sym_string, - [49590] = 7, + [49726] = 7, ACTIONS(1102), 1, anon_sym_LBRACE, ACTIONS(1106), 1, anon_sym_LBRACK, ACTIONS(1422), 1, sym_identifier, - ACTIONS(2877), 1, - anon_sym_of, - STATE(1385), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1202), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [49615] = 7, - ACTIONS(1100), 1, - sym_identifier, - ACTIONS(1102), 1, - anon_sym_LBRACE, - ACTIONS(1104), 1, + ACTIONS(2886), 1, anon_sym_of, - ACTIONS(1106), 1, - anon_sym_LBRACK, - STATE(1391), 1, + STATE(1361), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1216), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49640] = 7, + [49751] = 7, ACTIONS(1100), 1, sym_identifier, ACTIONS(1102), 1, @@ -84663,167 +84807,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(1380), 1, + STATE(1361), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1291), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49665] = 8, + [49776] = 8, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2814), 1, + ACTIONS(2805), 1, sym_identifier, - ACTIONS(2816), 1, + ACTIONS(2807), 1, anon_sym_default, - ACTIONS(2879), 1, + ACTIONS(2888), 1, anon_sym_RBRACE, - STATE(1592), 1, + STATE(1604), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1775), 2, + STATE(1789), 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, + [49803] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(171), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1409), 1, + aux_sym_object_repeat1, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [49717] = 7, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [49827] = 6, ACTIONS(1102), 1, anon_sym_LBRACE, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(2881), 1, + ACTIONS(1469), 1, sym_identifier, - ACTIONS(2883), 1, + ACTIONS(2890), 1, anon_sym_of, - STATE(1380), 1, - sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1208), 3, + STATE(1499), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49742] = 7, - ACTIONS(1100), 1, + [49849] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2401), 1, + anon_sym_RBRACE, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [49873] = 5, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2892), 1, sym_identifier, - ACTIONS(1102), 1, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2894), 4, anon_sym_LBRACE, - ACTIONS(1104), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [49893] = 6, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + STATE(1540), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2821), 2, + anon_sym_default, + sym_identifier, + STATE(1492), 2, + sym__module_export_name, + sym_string, + [49915] = 6, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(2898), 1, + sym_identifier, + ACTIONS(2900), 1, anon_sym_of, - ACTIONS(1106), 1, + ACTIONS(2902), 1, anon_sym_LBRACK, - STATE(1415), 1, - sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1311), 3, + STATE(1336), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49767] = 6, - ACTIONS(862), 1, - anon_sym_EQ, - ACTIONS(2889), 1, - sym__automatic_semicolon, - STATE(1425), 1, - sym__initializer, + [49937] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2885), 2, + ACTIONS(2904), 7, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2887), 2, + anon_sym_RBRACE, anon_sym_of, + anon_sym_RPAREN, anon_sym_in, - [49789] = 6, + anon_sym_EQ, + anon_sym_RBRACK, + [49951] = 6, ACTIONS(1102), 1, anon_sym_LBRACE, ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(2892), 1, + ACTIONS(2906), 1, sym_identifier, - ACTIONS(2894), 1, + ACTIONS(2908), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1495), 3, + STATE(1480), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [49811] = 4, - ACTIONS(2896), 1, + [49973] = 7, + ACTIONS(103), 1, anon_sym_COMMA, - STATE(1204), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1836), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2395), 2, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [49829] = 6, - ACTIONS(1075), 1, - anon_sym_DQUOTE, - ACTIONS(1077), 1, - anon_sym_SQUOTE, - STATE(1541), 1, - sym_export_specifier, + [49997] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(351), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2833), 2, - anon_sym_default, - sym_identifier, - STATE(1423), 2, - sym__module_export_name, - sym_string, - [49851] = 2, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [50021] = 5, + ACTIONS(2912), 1, + anon_sym_EQ, + STATE(1279), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2899), 7, + ACTIONS(2910), 2, + anon_sym_of, + anon_sym_in, + ACTIONS(858), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [50041] = 4, + ACTIONS(2914), 1, + anon_sym_COMMA, + STATE(1213), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1836), 5, anon_sym_RBRACE, - anon_sym_of, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_in, - anon_sym_EQ, + anon_sym_COLON, anon_sym_RBRACK, - [49865] = 2, + [50059] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2901), 7, + ACTIONS(2917), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, @@ -84831,27 +85035,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_EQ, anon_sym_RBRACK, - [49879] = 5, - ACTIONS(2903), 1, + [50073] = 5, + ACTIONS(2912), 1, anon_sym_EQ, - STATE(1285), 1, + STATE(1281), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2887), 2, + ACTIONS(2921), 2, anon_sym_of, anon_sym_in, - ACTIONS(2885), 3, + ACTIONS(2919), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [50093] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2923), 1, sym__automatic_semicolon, + STATE(1432), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2919), 2, anon_sym_COMMA, anon_sym_SEMI, - [49899] = 6, + ACTIONS(2921), 2, + anon_sym_of, + anon_sym_in, + [50115] = 6, ACTIONS(862), 1, anon_sym_EQ, ACTIONS(864), 1, sym__automatic_semicolon, - STATE(1408), 1, + STATE(1405), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -84859,145 +85079,77 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(858), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(2905), 2, + ACTIONS(2910), 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, + [50137] = 7, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_identifier, + ACTIONS(2807), 1, + anon_sym_default, + STATE(1604), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [49945] = 7, + STATE(1789), 2, + sym__module_export_name, + sym_string, + [50161] = 7, ACTIONS(103), 1, anon_sym_COMMA, ACTIONS(2397), 1, anon_sym_EQ, ACTIONS(2399), 1, anon_sym_RBRACE, - STATE(1418), 1, - aux_sym_object_repeat1, - STATE(1452), 1, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - [49969] = 7, + [50185] = 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, + STATE(1411), 1, aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - [49993] = 6, - ACTIONS(1102), 1, - anon_sym_LBRACE, - ACTIONS(1106), 1, - anon_sym_LBRACK, - ACTIONS(1469), 1, - sym_identifier, - ACTIONS(2907), 1, - anon_sym_of, + [50209] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1469), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [50015] = 7, - ACTIONS(103), 1, + ACTIONS(2926), 7, anon_sym_COMMA, - 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(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [50039] = 5, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2909), 1, - sym_identifier, - ACTIONS(2913), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2911), 4, - anon_sym_LBRACE, - 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, - ACTIONS(2905), 2, anon_sym_of, + anon_sym_RPAREN, anon_sym_in, - ACTIONS(858), 3, - sym__automatic_semicolon, - 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, + anon_sym_RBRACK, + [50223] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2915), 7, + ACTIONS(2928), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, @@ -85005,11 +85157,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_EQ, anon_sym_RBRACK, - [50117] = 2, + [50237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2917), 7, + ACTIONS(2930), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_of, @@ -85017,262 +85169,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_EQ, anon_sym_RBRACK, - [50131] = 7, - ACTIONS(103), 1, + [50251] = 4, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(351), 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, + STATE(1213), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, - anon_sym_LPAREN, + ACTIONS(2932), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - [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, + anon_sym_RBRACK, + [50269] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1775), 2, - sym__module_export_name, - sym_string, - [50179] = 2, - ACTIONS(5), 2, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1601), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50284] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(2934), 1, + sym_html_character_reference, + ACTIONS(2936), 1, + anon_sym_DQUOTE, + ACTIONS(2938), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(2940), 1, + anon_sym_AMP2, + STATE(1251), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [50307] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_EQ, - anon_sym_RBRACK, - [50193] = 6, - ACTIONS(1969), 1, - anon_sym_LBRACE, - ACTIONS(2921), 1, - sym_identifier, - ACTIONS(2923), 1, - anon_sym_of, - ACTIONS(2925), 1, - anon_sym_LBRACK, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2936), 1, + anon_sym_SQUOTE, + ACTIONS(2942), 1, + sym_html_character_reference, + ACTIONS(2944), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(2946), 1, + anon_sym_AMP2, + STATE(1263), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [50330] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1338), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [50215] = 4, - ACTIONS(1983), 1, - anon_sym_COMMA, - STATE(1204), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(2950), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2948), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50345] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1688), 1, + sym_formal_parameters, + STATE(1748), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2927), 5, - anon_sym_RBRACE, + ACTIONS(2954), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [50233] = 3, - ACTIONS(2929), 1, - sym_identifier, + [50366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2931), 5, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50248] = 4, - ACTIONS(2933), 1, - sym_identifier, - ACTIONS(2937), 1, - anon_sym_EQ, + ACTIONS(1753), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [50379] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2935), 4, + ACTIONS(2958), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2956), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50265] = 2, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1912), 6, + ACTIONS(2904), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_in, anon_sym_EQ, - [50278] = 6, - ACTIONS(862), 1, - anon_sym_EQ, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1515), 1, - sym_formal_parameters, - STATE(1702), 1, - sym__initializer, + [50407] = 5, + ACTIONS(2960), 1, + anon_sym_default, + ACTIONS(2963), 1, + anon_sym_RBRACE, + ACTIONS(2965), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2941), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50299] = 5, - ACTIONS(2945), 1, + STATE(1233), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [50426] = 5, + ACTIONS(2970), 1, anon_sym_BQUOTE, - ACTIONS(2947), 1, + ACTIONS(2972), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2943), 2, + ACTIONS(2968), 2, sym__template_chars, sym_escape_sequence, - STATE(1240), 2, + STATE(1237), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [50318] = 3, - ACTIONS(2949), 1, + [50445] = 4, + ACTIONS(2974), 1, sym_identifier, + ACTIONS(2978), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2951), 5, + ACTIONS(2976), 4, 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(2939), 1, - anon_sym_LPAREN, - STATE(1500), 1, - sym__initializer, - STATE(1556), 1, - sym_formal_parameters, + [50462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2953), 2, + ACTIONS(2928), 6, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - [50354] = 6, - ACTIONS(862), 1, + anon_sym_in, 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, + [50475] = 5, + ACTIONS(2983), 1, anon_sym_BQUOTE, - ACTIONS(2962), 1, + ACTIONS(2985), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2957), 2, + ACTIONS(2980), 2, sym__template_chars, sym_escape_sequence, - STATE(1233), 2, + STATE(1237), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [50394] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2919), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_in, - anon_sym_EQ, - [50407] = 2, + [50494] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 6, + ACTIONS(1680), 6, anon_sym_as, anon_sym_COMMA, 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, + [50507] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1246), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [50439] = 2, + ACTIONS(1658), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1660), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50522] = 5, + ACTIONS(2972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2988), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1680), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [50452] = 2, + ACTIONS(2968), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1237), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [50541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2899), 6, + ACTIONS(1912), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_in, anon_sym_EQ, - [50465] = 5, + [50554] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2992), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2990), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50569] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2996), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2994), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50584] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2950), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2948), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50599] = 5, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -85280,142 +85446,227 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2971), 2, + ACTIONS(2998), 2, anon_sym_default, sym_identifier, - STATE(1805), 2, + STATE(1857), 2, sym__module_export_name, sym_string, - [50484] = 5, - ACTIONS(2947), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2975), 1, - anon_sym_BQUOTE, + [50618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2973), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1233), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [50503] = 2, + ACTIONS(3002), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(3000), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50633] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1914), 6, + ACTIONS(2950), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2948), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50648] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1661), 1, + sym__initializer, + STATE(1673), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3004), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - anon_sym_in, - anon_sym_EQ, - [50516] = 5, - ACTIONS(2947), 1, + [50669] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2950), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2948), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50684] = 5, + ACTIONS(2972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3008), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2977), 2, + ACTIONS(3006), 2, sym__template_chars, sym_escape_sequence, - STATE(1244), 2, + STATE(1234), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [50535] = 5, - ACTIONS(2981), 1, - anon_sym_default, - ACTIONS(2984), 1, - anon_sym_RBRACE, - ACTIONS(2986), 1, - anon_sym_case, + [50703] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2940), 1, + anon_sym_AMP2, + ACTIONS(3010), 1, + sym_html_character_reference, + ACTIONS(3012), 1, + anon_sym_DQUOTE, + ACTIONS(3014), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1257), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [50726] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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(2926), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [50739] = 5, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(2902), 1, + anon_sym_LBRACK, + ACTIONS(3016), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2973), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1233), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [50573] = 6, + STATE(1852), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [50758] = 6, ACTIONS(862), 1, anon_sym_EQ, - ACTIONS(2939), 1, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1617), 1, - sym_formal_parameters, - STATE(1732), 1, + STATE(1554), 1, sym__initializer, + STATE(1644), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2991), 2, + ACTIONS(3018), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50594] = 5, - ACTIONS(2965), 1, + [50779] = 5, + ACTIONS(3020), 1, anon_sym_default, - ACTIONS(2969), 1, - anon_sym_case, - ACTIONS(2993), 1, + ACTIONS(3022), 1, anon_sym_RBRACE, + ACTIONS(3024), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1243), 3, + STATE(1267), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [50613] = 2, + [50798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2915), 6, + ACTIONS(2917), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, anon_sym_in, anon_sym_EQ, - [50626] = 2, + [50811] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3026), 1, + sym_html_character_reference, + ACTIONS(3029), 1, + anon_sym_DQUOTE, + ACTIONS(3031), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(3034), 1, + anon_sym_AMP2, + STATE(1257), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [50834] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3037), 1, + sym_html_character_reference, + ACTIONS(3040), 1, + anon_sym_SQUOTE, + ACTIONS(3042), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(3045), 1, + anon_sym_AMP2, + STATE(1258), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [50857] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2901), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_in, - anon_sym_EQ, - [50639] = 2, + ACTIONS(1666), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1668), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50872] = 3, + ACTIONS(3048), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2917), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_in, + ACTIONS(3050), 5, + anon_sym_LBRACE, anon_sym_EQ, - [50652] = 5, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50887] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1670), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1672), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50902] = 5, ACTIONS(1075), 1, anon_sym_DQUOTE, ACTIONS(1077), 1, @@ -85423,1641 +85674,1460 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2995), 2, + ACTIONS(3052), 2, anon_sym_default, sym_identifier, - STATE(1543), 2, + STATE(1541), 2, sym__module_export_name, sym_string, - [50671] = 2, + [50921] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2946), 1, + anon_sym_AMP2, + ACTIONS(3012), 1, + anon_sym_SQUOTE, + ACTIONS(3054), 1, + sym_html_character_reference, + ACTIONS(3056), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1258), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [50944] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1916), 6, + ACTIONS(2930), 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, - ACTIONS(2925), 1, - anon_sym_LBRACK, - ACTIONS(2997), 1, - sym_identifier, + [50957] = 3, 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(1694), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1696), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50972] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [50717] = 3, - ACTIONS(3003), 1, + ACTIONS(1694), 2, anon_sym_LT, + anon_sym_AMP, + ACTIONS(1696), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50987] = 5, + ACTIONS(3020), 1, + anon_sym_default, + ACTIONS(3024), 1, + anon_sym_case, + ACTIONS(3058), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1233), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [51006] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3001), 4, + ACTIONS(1694), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1696), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [50731] = 3, - ACTIONS(1658), 1, - anon_sym_LT, + [51021] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1660), 4, + ACTIONS(1694), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1696), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [50745] = 3, - ACTIONS(1603), 1, - sym_identifier, + [51036] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1662), 1, + sym__initializer, + STATE(1674), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1605), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50759] = 3, - ACTIONS(3005), 1, + ACTIONS(3060), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51057] = 5, + ACTIONS(2972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3064), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3062), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1240), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [51076] = 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, + [51089] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1916), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [51102] = 3, + ACTIONS(3066), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3007), 4, + ACTIONS(3068), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, + anon_sym_DOT, anon_sym_SLASH_GT, - [50773] = 3, - ACTIONS(1666), 1, - sym_identifier, + [51117] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1668), 4, + ACTIONS(3072), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(3070), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50787] = 3, - ACTIONS(1670), 1, - sym_identifier, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51132] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1672), 4, + ACTIONS(1603), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1605), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50801] = 6, - ACTIONS(3009), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51147] = 6, + ACTIONS(3074), 1, sym_identifier, - ACTIONS(3011), 1, + ACTIONS(3076), 1, anon_sym_GT, - ACTIONS(3013), 1, + ACTIONS(3078), 1, sym_jsx_identifier, - STATE(1163), 1, + STATE(1160), 1, sym_nested_identifier, - STATE(1176), 1, + STATE(1171), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50821] = 6, - ACTIONS(3015), 1, + [51167] = 6, + ACTIONS(3080), 1, sym_identifier, - ACTIONS(3017), 1, + ACTIONS(3082), 1, anon_sym_LBRACE, - ACTIONS(3019), 1, + ACTIONS(3084), 1, anon_sym_extends, - STATE(732), 1, + STATE(748), 1, sym_class_body, - STATE(1510), 1, + STATE(1570), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50841] = 6, - ACTIONS(2357), 1, + [51187] = 4, + ACTIONS(3088), 1, + anon_sym_of, + ACTIONS(3090), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3086), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2395), 1, - anon_sym_COLON, - ACTIONS(2397), 1, + anon_sym_SEMI, + [51203] = 3, + ACTIONS(3092), 1, anon_sym_EQ, - ACTIONS(3021), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1530), 4, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1419), 1, - aux_sym_object_pattern_repeat1, + anon_sym_RPAREN, + anon_sym_RBRACK, + [51217] = 4, + ACTIONS(3097), 1, + anon_sym_of, + ACTIONS(3099), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50861] = 3, - ACTIONS(1694), 1, - sym_identifier, + ACTIONS(3095), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51233] = 4, + ACTIONS(2397), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50875] = 3, - ACTIONS(1694), 1, - sym_identifier, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2416), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51249] = 4, + ACTIONS(862), 1, + anon_sym_EQ, + STATE(1405), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [50889] = 3, - ACTIONS(1694), 1, + ACTIONS(858), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51265] = 6, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3101), 1, sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1696), 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - 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(3023), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [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, + STATE(604), 1, + sym_class_body, + STATE(1633), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50937] = 6, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3019), 1, - anon_sym_extends, - ACTIONS(3031), 1, + [51285] = 6, + ACTIONS(3105), 1, sym_identifier, - STATE(732), 1, - sym_class_body, - STATE(1510), 1, - sym_class_heritage, + ACTIONS(3107), 1, + anon_sym_GT, + ACTIONS(3109), 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, - [50957] = 3, - ACTIONS(1694), 1, + [51305] = 3, + ACTIONS(3111), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, + ACTIONS(3113), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [50971] = 3, - ACTIONS(1599), 1, + [51319] = 3, + ACTIONS(3072), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1601), 4, + ACTIONS(3070), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [50985] = 6, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3019), 1, - anon_sym_extends, - ACTIONS(3033), 1, + [51333] = 6, + ACTIONS(3076), 1, + anon_sym_GT, + ACTIONS(3115), 1, sym_identifier, - STATE(748), 1, - sym_class_body, - STATE(1656), 1, - sym_class_heritage, + ACTIONS(3117), 1, + sym_jsx_identifier, + STATE(1164), 1, + sym_nested_identifier, + STATE(1190), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51005] = 3, - ACTIONS(3037), 1, - anon_sym_LT, + [51353] = 6, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(3119), 1, + sym_identifier, + ACTIONS(3121), 1, + anon_sym_LBRACK, + ACTIONS(3123), 1, + sym_private_property_identifier, + STATE(609), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3035), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51019] = 6, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3019), 1, - anon_sym_extends, - ACTIONS(3039), 1, + [51373] = 6, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(3125), 1, sym_identifier, - STATE(748), 1, - sym_class_body, - STATE(1656), 1, - sym_class_heritage, + ACTIONS(3127), 1, + anon_sym_LBRACK, + ACTIONS(3129), 1, + sym_private_property_identifier, + STATE(784), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51039] = 2, + [51393] = 4, + ACTIONS(862), 1, + anon_sym_EQ, + STATE(1432), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1680), 5, + ACTIONS(2919), 3, sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_EQ, - [51051] = 3, - ACTIONS(1603), 1, - anon_sym_LT, + [51409] = 6, + ACTIONS(3076), 1, + anon_sym_GT, + ACTIONS(3131), 1, + sym_identifier, + ACTIONS(3133), 1, + sym_jsx_identifier, + STATE(1158), 1, + sym_nested_identifier, + STATE(1170), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1605), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51065] = 3, - ACTIONS(3041), 1, + [51429] = 3, + ACTIONS(3135), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3043), 4, + ACTIONS(3137), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [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, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [51097] = 3, - ACTIONS(3037), 1, - anon_sym_LT, + [51443] = 3, + ACTIONS(3139), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3035), 4, - sym_jsx_text, + ACTIONS(3141), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51111] = 6, - ACTIONS(3045), 1, - sym_identifier, - ACTIONS(3047), 1, anon_sym_GT, - ACTIONS(3049), 1, sym_jsx_identifier, - STATE(1736), 1, - sym_nested_identifier, - STATE(1846), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51131] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - 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(1668), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [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(3054), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [51187] = 6, - ACTIONS(3017), 1, + anon_sym_SLASH_GT, + [51457] = 6, + ACTIONS(3082), 1, anon_sym_LBRACE, - ACTIONS(3019), 1, + ACTIONS(3084), 1, anon_sym_extends, - ACTIONS(3060), 1, + ACTIONS(3143), 1, sym_identifier, STATE(732), 1, sym_class_body, - STATE(1510), 1, + STATE(1650), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51207] = 4, - ACTIONS(3064), 1, - anon_sym_of, - ACTIONS(3066), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3062), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [51223] = 6, - ACTIONS(3019), 1, - anon_sym_extends, - ACTIONS(3068), 1, + [51477] = 6, + ACTIONS(3145), 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, - [51243] = 3, - ACTIONS(3074), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3072), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51257] = 6, - ACTIONS(3011), 1, + ACTIONS(3147), 1, anon_sym_GT, - ACTIONS(3076), 1, - sym_identifier, - ACTIONS(3078), 1, + ACTIONS(3149), 1, sym_jsx_identifier, - STATE(1158), 1, + STATE(1517), 1, sym_nested_identifier, - STATE(1190), 1, + STATE(1756), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51277] = 6, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3019), 1, - anon_sym_extends, - ACTIONS(3080), 1, + [51497] = 3, + ACTIONS(2996), 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(1672), 4, - sym_jsx_text, + ACTIONS(2994), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51311] = 3, - ACTIONS(3082), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51511] = 6, + ACTIONS(3151), 1, sym_identifier, + ACTIONS(3153), 1, + anon_sym_GT, + ACTIONS(3155), 1, + sym_jsx_identifier, + STATE(1669), 1, + sym_nested_identifier, + STATE(1757), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3084), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [51325] = 3, - ACTIONS(3086), 1, + [51531] = 3, + ACTIONS(1658), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3088), 4, + ACTIONS(1660), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [51339] = 6, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(3090), 1, + [51545] = 3, + ACTIONS(3157), 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, - [51359] = 3, - ACTIONS(1694), 1, - anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1696), 4, - sym_jsx_text, + ACTIONS(3159), 4, 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, - STATE(1550), 1, - sym_nested_identifier, - STATE(1799), 1, - sym_jsx_namespace_name, + anon_sym_SLASH_GT, + [51559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51393] = 6, - ACTIONS(2357), 1, + ACTIONS(1680), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [51571] = 6, + ACTIONS(2365), 1, anon_sym_COMMA, ACTIONS(2395), 1, anon_sym_COLON, ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(3102), 1, + ACTIONS(3161), 1, anon_sym_RBRACE, - STATE(1452), 1, + STATE(1411), 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(3070), 1, - anon_sym_LBRACE, - ACTIONS(3104), 1, - sym_identifier, - STATE(615), 1, - sym_class_body, - STATE(1554), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51449] = 3, - ACTIONS(1694), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1696), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51463] = 3, - ACTIONS(1694), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - 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, - 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(1696), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [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, - [51525] = 4, - ACTIONS(862), 1, - anon_sym_EQ, - STATE(1408), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(858), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [51541] = 3, - ACTIONS(3114), 1, + [51591] = 3, + ACTIONS(1603), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3116), 4, + ACTIONS(1605), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [51555] = 6, + [51605] = 6, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(3118), 1, + ACTIONS(3163), 1, anon_sym_export, - ACTIONS(3120), 1, + ACTIONS(3165), 1, anon_sym_class, - STATE(1041), 1, + STATE(1051), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51575] = 3, - ACTIONS(3122), 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, - [51589] = 3, - ACTIONS(1599), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1601), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51603] = 3, - ACTIONS(3037), 1, - anon_sym_LT, + [51625] = 3, + ACTIONS(1666), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3035), 4, - sym_jsx_text, + ACTIONS(1668), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [51617] = 6, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(3125), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51639] = 3, + ACTIONS(1670), 1, sym_identifier, - ACTIONS(3127), 1, - anon_sym_LBRACK, - ACTIONS(3129), 1, - sym_private_property_identifier, - STATE(784), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [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, + ACTIONS(1672), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, [51653] = 3, - ACTIONS(1658), 1, + ACTIONS(1694), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1660), 4, + ACTIONS(1696), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [51667] = 6, - ACTIONS(3131), 1, + [51667] = 3, + ACTIONS(1694), 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, - [51687] = 3, - ACTIONS(3025), 1, + ACTIONS(1696), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51681] = 3, + ACTIONS(1694), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3023), 4, + ACTIONS(1696), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [51701] = 6, - ACTIONS(3137), 1, + [51695] = 3, + ACTIONS(1694), 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, - [51721] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - 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, - ACTIONS(3035), 4, - sym_jsx_text, + ACTIONS(1696), 4, anon_sym_LBRACE, - 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, - [51767] = 3, - ACTIONS(3074), 1, + anon_sym_SLASH_GT, + [51709] = 3, + ACTIONS(1599), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3072), 4, + ACTIONS(1601), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [51781] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3147), 1, - sym_html_character_reference, - 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(1335), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3157), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [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, + [51723] = 6, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3167), 1, + sym_identifier, + STATE(732), 1, + sym_class_body, + STATE(1650), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51832] = 5, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3159), 1, + [51743] = 6, + ACTIONS(3076), 1, + anon_sym_GT, + ACTIONS(3169), 1, sym_identifier, - ACTIONS(3161), 1, - anon_sym_STAR, - STATE(1531), 1, - sym_formal_parameters, + ACTIONS(3171), 1, + sym_jsx_identifier, + STATE(1163), 1, + sym_nested_identifier, + STATE(1189), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51849] = 3, - ACTIONS(3163), 1, - anon_sym_EQ, + [51763] = 6, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3173), 1, + sym_identifier, + STATE(748), 1, + sym_class_body, + STATE(1570), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1543), 3, + [51783] = 6, + ACTIONS(2365), 1, anon_sym_COMMA, + ACTIONS(2395), 1, + anon_sym_COLON, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(3175), 1, 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, - 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, + STATE(1474), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51894] = 5, + [51803] = 6, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(3169), 1, + ACTIONS(3177), 1, + anon_sym_export, + ACTIONS(3179), 1, anon_sym_class, - STATE(1041), 1, + STATE(1051), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51911] = 5, - ACTIONS(3), 1, - sym_comment, - 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(3171), 1, - anon_sym_SQUOTE, - STATE(1396), 1, - aux_sym_string_repeat2, - ACTIONS(3175), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [51945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3177), 1, - anon_sym_DQUOTE, - STATE(1350), 1, - aux_sym_string_repeat1, - ACTIONS(3179), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [51962] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3177), 1, - anon_sym_SQUOTE, - STATE(1351), 1, - aux_sym_string_repeat2, - ACTIONS(3181), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [51979] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3183), 1, - anon_sym_DQUOTE, - STATE(1349), 1, - aux_sym_string_repeat1, - ACTIONS(3185), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [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, + [51823] = 6, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3103), 1, + anon_sym_LBRACE, + ACTIONS(3181), 1, + sym_identifier, + STATE(615), 1, + sym_class_body, + STATE(1671), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52013] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [51843] = 6, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_extends, ACTIONS(3183), 1, - anon_sym_SQUOTE, - STATE(1352), 1, - aux_sym_string_repeat2, - ACTIONS(3189), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [52030] = 4, - ACTIONS(3191), 1, - anon_sym_COMMA, - STATE(1335), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3194), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52045] = 5, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3196), 1, sym_identifier, - ACTIONS(3198), 1, - anon_sym_STAR, - STATE(1684), 1, - sym_formal_parameters, + STATE(748), 1, + sym_class_body, + STATE(1570), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52062] = 4, - ACTIONS(3200), 1, + [51863] = 3, + ACTIONS(3185), 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, + ACTIONS(1530), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [51877] = 3, + ACTIONS(3188), 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(1543), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [51891] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1916), 4, - anon_sym_of, + ACTIONS(1530), 5, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_in, anon_sym_EQ, - [52120] = 4, - ACTIONS(3155), 1, - anon_sym_COMMA, - STATE(1335), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RBRACK, + [51903] = 6, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3190), 1, + sym_identifier, + STATE(732), 1, + sym_class_body, + STATE(1650), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3206), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52135] = 2, + [51923] = 5, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(2419), 1, + anon_sym_RBRACE, + STATE(1421), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 4, - sym__automatic_semicolon, + ACTIONS(2395), 2, anon_sym_LPAREN, - 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, + anon_sym_COLON, + [51941] = 3, + ACTIONS(3192), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3194), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51955] = 6, + ACTIONS(3196), 1, + sym_identifier, + ACTIONS(3198), 1, + anon_sym_GT, + ACTIONS(3200), 1, + sym_jsx_identifier, + STATE(1686), 1, + sym_nested_identifier, + STATE(1790), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52163] = 4, - ACTIONS(3208), 1, - anon_sym_COMMA, - STATE(1344), 1, - aux_sym_sequence_expression_repeat1, + [51975] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1836), 2, + ACTIONS(1753), 5, sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, anon_sym_SEMI, - [52178] = 5, - ACTIONS(3017), 1, + anon_sym_EQ, + [51987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3202), 1, + anon_sym_DQUOTE, + STATE(1343), 1, + aux_sym_string_repeat1, + ACTIONS(3204), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52004] = 5, + ACTIONS(3082), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3206), 1, anon_sym_extends, - STATE(755), 1, + STATE(798), 1, sym_class_body, - STATE(1632), 1, + STATE(1656), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52195] = 2, + [52021] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3165), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, 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, + [52038] = 5, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(766), 1, + sym_class_body, + STATE(1551), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [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, + [52055] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3225), 1, + ACTIONS(3208), 1, anon_sym_DQUOTE, - STATE(1395), 1, + STATE(1347), 1, aux_sym_string_repeat1, - ACTIONS(3173), 2, + ACTIONS(3210), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [52259] = 5, + [52072] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3227), 1, + ACTIONS(3212), 1, anon_sym_DQUOTE, - STATE(1395), 1, + STATE(1389), 1, aux_sym_string_repeat1, - ACTIONS(3173), 2, + ACTIONS(3214), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [52276] = 5, + [52089] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3216), 1, + sym_identifier, + ACTIONS(3218), 1, + anon_sym_STAR, + STATE(1634), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52106] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3227), 1, + ACTIONS(3208), 1, anon_sym_SQUOTE, - STATE(1396), 1, + STATE(1348), 1, aux_sym_string_repeat2, - ACTIONS(3175), 2, + ACTIONS(3220), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [52293] = 5, - ACTIONS(3), 1, + [52123] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3222), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [52140] = 4, + ACTIONS(3224), 1, + anon_sym_EQ, + STATE(1605), 1, + sym__initializer, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3225), 1, - anon_sym_SQUOTE, - STATE(1396), 1, - aux_sym_string_repeat2, - ACTIONS(3175), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [52310] = 5, - ACTIONS(3017), 1, + sym_comment, + ACTIONS(2921), 2, + anon_sym_of, + anon_sym_in, + [52155] = 5, + ACTIONS(3082), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3206), 1, anon_sym_extends, - STATE(798), 1, + STATE(97), 1, sym_class_body, - STATE(1530), 1, + STATE(1724), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52327] = 4, - ACTIONS(3229), 1, - anon_sym_COMMA, - STATE(1354), 1, - aux_sym_array_repeat1, + [52172] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3226), 1, + sym_identifier, + ACTIONS(3228), 1, + anon_sym_STAR, + STATE(1619), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [52342] = 6, + [52189] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3232), 1, - sym_html_character_reference, - ACTIONS(3234), 1, + ACTIONS(3212), 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(3238), 1, - sym_html_character_reference, - ACTIONS(3240), 1, - anon_sym_DQUOTE, - 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(3244), 1, - anon_sym_DQUOTE, - STATE(1361), 1, - aux_sym_string_repeat1, - ACTIONS(3246), 2, - sym_unescaped_double_string_fragment, + STATE(1391), 1, + aux_sym_string_repeat2, + ACTIONS(3230), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [52397] = 4, - ACTIONS(3248), 1, - anon_sym_from, - STATE(1666), 1, - sym__from_clause, + [52206] = 2, 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(1914), 4, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + [52217] = 5, + ACTIONS(3206), 1, + anon_sym_extends, + ACTIONS(3232), 1, + anon_sym_LBRACE, + STATE(405), 1, + sym_class_body, + STATE(1632), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3254), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52427] = 5, - ACTIONS(3070), 1, + [52234] = 5, + ACTIONS(3082), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3206), 1, anon_sym_extends, - STATE(619), 1, + STATE(755), 1, sym_class_body, - STATE(1566), 1, + STATE(1626), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52444] = 5, + [52251] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3256), 1, + ACTIONS(3234), 1, anon_sym_DQUOTE, - STATE(1395), 1, + STATE(1347), 1, aux_sym_string_repeat1, - ACTIONS(3173), 2, + ACTIONS(3210), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [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, + [52268] = 5, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3236), 1, + anon_sym_EQ, + ACTIONS(3238), 1, + anon_sym_RBRACK, + STATE(1450), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52285] = 4, + ACTIONS(1942), 1, + anon_sym_COMMA, + STATE(1395), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2932), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52300] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3240), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52478] = 5, + [52317] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3256), 1, - anon_sym_SQUOTE, - STATE(1396), 1, - aux_sym_string_repeat2, - ACTIONS(3175), 2, - sym_unescaped_single_string_fragment, + ACTIONS(3242), 1, + anon_sym_DQUOTE, + STATE(1347), 1, + aux_sym_string_repeat1, + ACTIONS(3244), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [52495] = 5, + [52334] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3202), 1, + ACTIONS(3247), 1, anon_sym_SQUOTE, - STATE(1329), 1, + STATE(1348), 1, aux_sym_string_repeat2, - ACTIONS(3258), 2, + ACTIONS(3249), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [52512] = 4, - ACTIONS(3155), 1, + [52351] = 4, + ACTIONS(3252), 1, anon_sym_COMMA, - STATE(1335), 1, + STATE(1400), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3260), 2, + ACTIONS(3254), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52527] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1914), 4, - anon_sym_of, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_EQ, - [52538] = 5, - ACTIONS(3017), 1, + [52366] = 5, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3206), 1, anon_sym_extends, - STATE(97), 1, + STATE(619), 1, sym_class_body, - STATE(1645), 1, + STATE(1675), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52555] = 5, - ACTIONS(3017), 1, - anon_sym_LBRACE, - ACTIONS(3211), 1, - anon_sym_extends, - STATE(799), 1, - sym_class_body, - STATE(1607), 1, - sym_class_heritage, + [52383] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52572] = 5, + ACTIONS(3256), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52398] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3244), 1, + ACTIONS(3258), 1, anon_sym_SQUOTE, - STATE(1363), 1, + STATE(1348), 1, aux_sym_string_repeat2, - ACTIONS(3262), 2, + ACTIONS(3220), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [52589] = 5, - ACTIONS(3213), 1, + [52415] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1937), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_EQ, - ACTIONS(3264), 1, + [52426] = 5, + ACTIONS(3236), 1, + anon_sym_EQ, + ACTIONS(3260), 1, anon_sym_COMMA, - ACTIONS(3266), 1, + ACTIONS(3262), 1, anon_sym_RPAREN, - STATE(1486), 1, + STATE(1417), 1, aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52606] = 4, - ACTIONS(2739), 1, + [52443] = 4, + ACTIONS(2763), 1, anon_sym_STAR, - ACTIONS(2741), 1, + ACTIONS(2765), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1833), 2, + STATE(1802), 2, sym_namespace_import, sym_named_imports, - [52621] = 5, - ACTIONS(3252), 1, - anon_sym_with, + [52458] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3264), 1, + anon_sym_DQUOTE, + STATE(1331), 1, + aux_sym_string_repeat1, + ACTIONS(3266), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52475] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, ACTIONS(3268), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3270), 1, + anon_sym_STAR, + STATE(1619), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52492] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1349), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3272), 2, sym__automatic_semicolon, - STATE(1674), 1, - sym_import_attribute, + anon_sym_SEMI, + [52507] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3179), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52638] = 5, - ACTIONS(3070), 1, - anon_sym_LBRACE, - ACTIONS(3211), 1, + [52524] = 5, + ACTIONS(3206), 1, anon_sym_extends, - STATE(650), 1, + ACTIONS(3232), 1, + anon_sym_LBRACE, + STATE(413), 1, sym_class_body, - STATE(1624), 1, + STATE(1545), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52655] = 5, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3272), 1, - sym_identifier, - ACTIONS(3274), 1, - anon_sym_STAR, - STATE(1684), 1, - sym_formal_parameters, + [52541] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1351), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52672] = 2, + ACTIONS(3274), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3264), 1, + anon_sym_SQUOTE, + STATE(1334), 1, + aux_sym_string_repeat2, + ACTIONS(3276), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52573] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3276), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [52683] = 5, - ACTIONS(2939), 1, - anon_sym_LPAREN, + ACTIONS(1912), 4, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + [52584] = 4, ACTIONS(3278), 1, - sym_identifier, - ACTIONS(3280), 1, - anon_sym_STAR, - STATE(1684), 1, - sym_formal_parameters, + anon_sym_COMMA, + STATE(1364), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [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(2017), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [52599] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3281), 1, + sym_identifier, + ACTIONS(3283), 1, + anon_sym_STAR, + STATE(1750), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52717] = 5, - ACTIONS(2939), 1, + [52616] = 5, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(3284), 1, + ACTIONS(3285), 1, sym_identifier, - ACTIONS(3286), 1, + ACTIONS(3287), 1, anon_sym_STAR, - STATE(1665), 1, + STATE(1657), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52734] = 4, - ACTIONS(1942), 1, - anon_sym_COMMA, - STATE(1344), 1, - aux_sym_sequence_expression_repeat1, + [52633] = 4, + ACTIONS(3224), 1, + anon_sym_EQ, + STATE(1660), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2927), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52749] = 4, - ACTIONS(3155), 1, + ACTIONS(2910), 2, + anon_sym_of, + anon_sym_in, + [52648] = 4, + ACTIONS(3252), 1, anon_sym_COMMA, - STATE(1325), 1, + STATE(1372), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3288), 2, + ACTIONS(3289), 2, sym__automatic_semicolon, anon_sym_SEMI, - [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, + [52663] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3291), 1, + anon_sym_SQUOTE, + STATE(1352), 1, + aux_sym_string_repeat2, + ACTIONS(3293), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52680] = 5, + ACTIONS(3), 1, sym_comment, - [52781] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3234), 1, + anon_sym_SQUOTE, + STATE(1348), 1, + aux_sym_string_repeat2, + ACTIONS(3220), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52697] = 5, ACTIONS(873), 1, anon_sym_COMMA, - ACTIONS(3213), 1, + ACTIONS(3236), 1, anon_sym_EQ, - ACTIONS(3292), 1, + ACTIONS(3295), 1, anon_sym_RBRACK, - STATE(1451), 1, + STATE(1482), 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, + [52714] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3297), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52729] = 5, + ACTIONS(3082), 1, anon_sym_LBRACE, - STATE(413), 1, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(100), 1, sym_class_body, - STATE(1547), 1, + STATE(1536), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52815] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [52746] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3299), 1, + sym_identifier, + ACTIONS(3301), 1, + anon_sym_STAR, + STATE(1750), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3234), 1, - anon_sym_DQUOTE, - 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, + sym_comment, + [52763] = 4, + ACTIONS(3252), 1, anon_sym_COMMA, - STATE(1365), 1, + STATE(1385), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3303), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52849] = 5, - ACTIONS(2939), 1, + [52778] = 5, + ACTIONS(3305), 1, + anon_sym_with, + ACTIONS(3307), 1, + anon_sym_SEMI, + ACTIONS(3309), 1, + sym__automatic_semicolon, + STATE(1507), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52795] = 5, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(3300), 1, + ACTIONS(3311), 1, sym_identifier, - ACTIONS(3302), 1, + ACTIONS(3313), 1, anon_sym_STAR, - STATE(1665), 1, + STATE(1750), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52866] = 5, - ACTIONS(2939), 1, + [52812] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3304), 1, - sym_identifier, - ACTIONS(3306), 1, - anon_sym_STAR, - STATE(1746), 1, - sym_formal_parameters, + anon_sym_SEMI, + anon_sym_EQ, + [52823] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3291), 1, + anon_sym_DQUOTE, + STATE(1399), 1, + aux_sym_string_repeat1, + ACTIONS(3315), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52840] = 3, + ACTIONS(3317), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1543), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [52853] = 4, + ACTIONS(2395), 1, + anon_sym_COLON, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3319), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52868] = 4, + ACTIONS(3321), 1, + anon_sym_from, + STATE(1506), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(3323), 2, + sym__automatic_semicolon, + anon_sym_SEMI, [52883] = 5, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(3308), 1, + ACTIONS(3325), 1, anon_sym_class, - STATE(1041), 1, + STATE(1051), 1, aux_sym_export_statement_repeat1, - STATE(1097), 1, + STATE(1087), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, @@ -87066,513 +87136,557 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1937), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, + ACTIONS(3327), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, [52911] = 4, - ACTIONS(3155), 1, + ACTIONS(3252), 1, anon_sym_COMMA, - STATE(1341), 1, + STATE(1400), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3310), 2, + ACTIONS(3329), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52926] = 4, - ACTIONS(3155), 1, - anon_sym_COMMA, - STATE(1321), 1, - aux_sym_variable_declaration_repeat1, + [52926] = 5, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(3331), 1, + sym_optional_chain, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3312), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52941] = 5, - ACTIONS(3017), 1, + [52943] = 5, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3211), 1, + ACTIONS(3206), 1, anon_sym_extends, - STATE(766), 1, + STATE(650), 1, sym_class_body, - STATE(1696), 1, + STATE(1697), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [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, + [52960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52975] = 4, - ACTIONS(2395), 1, + ACTIONS(2395), 2, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2397), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3318), 2, + ACTIONS(2447), 2, anon_sym_COMMA, anon_sym_RBRACE, - [52990] = 5, + [52973] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3320), 1, + ACTIONS(3333), 1, anon_sym_DQUOTE, - STATE(1395), 1, + STATE(1347), 1, aux_sym_string_repeat1, - ACTIONS(3322), 2, + ACTIONS(3210), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [53007] = 5, + [52990] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3325), 1, + ACTIONS(3337), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(3335), 3, + sym_html_character_reference, anon_sym_SQUOTE, - STATE(1396), 1, + anon_sym_AMP2, + [53005] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3333), 1, + anon_sym_SQUOTE, + STATE(1348), 1, aux_sym_string_repeat2, - ACTIONS(3327), 2, + ACTIONS(3220), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [53024] = 3, - ACTIONS(5), 2, - sym_html_comment, + [53022] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2455), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [53037] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3337), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(3335), 3, + sym_html_character_reference, + anon_sym_DQUOTE, + anon_sym_AMP2, + [53037] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3240), 1, + ACTIONS(3202), 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, + STATE(1370), 1, + aux_sym_string_repeat2, + ACTIONS(3339), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [53054] = 5, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(3334), 1, + ACTIONS(3341), 1, sym_identifier, - STATE(1573), 1, + ACTIONS(3343), 1, + anon_sym_STAR, + STATE(1619), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53070] = 4, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3336), 1, - sym_identifier, - STATE(1532), 1, - sym_formal_parameters, + [53071] = 4, + ACTIONS(3345), 1, + anon_sym_COMMA, + STATE(1395), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53084] = 4, - ACTIONS(2939), 1, + ACTIONS(1836), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53086] = 5, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(3338), 1, - sym_identifier, - STATE(1501), 1, - sym_formal_parameters, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(3348), 1, + sym_optional_chain, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53098] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3340), 1, - anon_sym_RBRACE, - STATE(1467), 1, - aux_sym_object_repeat1, + [53103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53112] = 4, - ACTIONS(1162), 1, - anon_sym_while, - ACTIONS(3342), 1, - anon_sym_else, - STATE(428), 1, - sym_else_clause, + ACTIONS(1916), 4, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + [53114] = 5, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(799), 1, + sym_class_body, + STATE(1683), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53126] = 3, - ACTIONS(2745), 1, - anon_sym_DOT, + [53131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3258), 1, + anon_sym_DQUOTE, + STATE(1347), 1, + aux_sym_string_repeat1, + ACTIONS(3210), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [53148] = 4, + ACTIONS(3350), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2743), 2, - anon_sym_LPAREN, - sym_optional_chain, - [53138] = 4, + ACTIONS(3353), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53163] = 4, + ACTIONS(3305), 1, + anon_sym_with, + STATE(1672), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3355), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53178] = 4, ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(2065), 1, - anon_sym_RPAREN, - STATE(1436), 1, + ACTIONS(2009), 1, + anon_sym_RBRACK, + STATE(1364), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53152] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3344), 1, - anon_sym_RBRACE, - STATE(1441), 1, - aux_sym_object_repeat1, + [53192] = 3, + ACTIONS(3236), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53166] = 4, - ACTIONS(2939), 1, + ACTIONS(3357), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53204] = 4, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(3346), 1, - anon_sym_COLON, - STATE(1644), 1, + ACTIONS(3359), 1, + sym_identifier, + STATE(1528), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53180] = 2, + [53218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3054), 3, + ACTIONS(3086), 3, sym__automatic_semicolon, anon_sym_COMMA, 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, + [53228] = 3, + ACTIONS(3317), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53204] = 3, - ACTIONS(3213), 1, - anon_sym_EQ, + ACTIONS(1550), 2, + anon_sym_of, + anon_sym_in, + [53240] = 4, + ACTIONS(3361), 1, + sym_identifier, + STATE(1035), 1, + sym_decorator_member_expression, + STATE(1090), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3348), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [53216] = 4, - ACTIONS(3090), 1, + [53254] = 3, + ACTIONS(3363), 1, sym_identifier, - ACTIONS(3092), 1, - anon_sym_LBRACK, - ACTIONS(3094), 1, - sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53230] = 4, - ACTIONS(3350), 1, - anon_sym_LBRACE, - ACTIONS(3352), 1, - anon_sym_LPAREN, - STATE(401), 1, - sym_statement_block, + ACTIONS(3365), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53266] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3367), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53244] = 4, + [53280] = 4, ACTIONS(873), 1, anon_sym_COMMA, - ACTIONS(3292), 1, + ACTIONS(3238), 1, anon_sym_RBRACK, - STATE(1451), 1, + STATE(1450), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53258] = 4, - ACTIONS(3354), 1, + [53294] = 4, + ACTIONS(2365), 1, anon_sym_COMMA, - ACTIONS(3356), 1, + ACTIONS(3369), 1, anon_sym_RBRACE, - STATE(1463), 1, - aux_sym_export_clause_repeat1, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53272] = 2, + [53308] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2009), 1, + anon_sym_RBRACK, + STATE(1449), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3194), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [53282] = 4, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(3358), 1, - anon_sym_RBRACE, - STATE(1421), 1, - aux_sym_object_pattern_repeat1, + [53322] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3371), 1, + sym_identifier, + STATE(1528), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53336] = 3, + ACTIONS(1902), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53296] = 4, - ACTIONS(3360), 1, + ACTIONS(1932), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [53348] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3363), 1, + ACTIONS(3373), 1, anon_sym_RBRACE, - STATE(1417), 1, + STATE(1422), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53310] = 4, + [53362] = 4, ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3365), 1, + ACTIONS(3373), 1, anon_sym_RBRACE, - STATE(1417), 1, + STATE(1486), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53324] = 4, - ACTIONS(2357), 1, + [53376] = 4, + ACTIONS(918), 1, + anon_sym_RPAREN, + ACTIONS(3375), 1, anon_sym_COMMA, - ACTIONS(3367), 1, - anon_sym_RBRACE, - STATE(1421), 1, - aux_sym_object_pattern_repeat1, + STATE(1454), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53338] = 4, - ACTIONS(2357), 1, + [53390] = 4, + ACTIONS(873), 1, anon_sym_COMMA, - ACTIONS(3369), 1, - anon_sym_RBRACE, - STATE(1421), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3238), 1, + anon_sym_RBRACK, + STATE(1457), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53352] = 4, - ACTIONS(3371), 1, + [53404] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3374), 1, - anon_sym_RBRACE, - STATE(1421), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2021), 1, + anon_sym_RPAREN, + STATE(1442), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53366] = 4, - ACTIONS(2273), 1, + [53418] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3376), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + ACTIONS(2021), 1, + anon_sym_RPAREN, + STATE(1364), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53380] = 3, - ACTIONS(3378), 1, - anon_sym_as, + [53432] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3377), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3380), 2, + [53446] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, + ACTIONS(3379), 1, anon_sym_RBRACE, - [53392] = 4, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3382), 1, - anon_sym_GT, + STATE(1486), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53406] = 2, + [53460] = 4, + ACTIONS(3381), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_LPAREN, + STATE(401), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3062), 3, - sym__automatic_semicolon, + [53474] = 4, + ACTIONS(2365), 1, anon_sym_COMMA, - anon_sym_SEMI, - [53416] = 4, - ACTIONS(3264), 1, + ACTIONS(3385), 1, + anon_sym_RBRACE, + STATE(1467), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53488] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3266), 1, + ACTIONS(2055), 1, anon_sym_RPAREN, - STATE(1486), 1, - aux_sym_formal_parameters_repeat1, + STATE(1428), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53430] = 4, - ACTIONS(2297), 1, - anon_sym_DQUOTE, - ACTIONS(2299), 1, - anon_sym_SQUOTE, - STATE(1439), 1, - sym_string, + [53502] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2055), 1, + anon_sym_RPAREN, + STATE(1364), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53444] = 4, - ACTIONS(2751), 1, + [53516] = 4, + ACTIONS(2789), 1, anon_sym_COLON, - ACTIONS(2757), 1, + ACTIONS(2795), 1, anon_sym_DOT, - ACTIONS(3384), 1, + ACTIONS(3387), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53458] = 4, + [53530] = 4, ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3386), 1, - anon_sym_RBRACK, - STATE(1354), 1, + ACTIONS(3389), 1, + anon_sym_RPAREN, + STATE(1364), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53472] = 4, - ACTIONS(873), 1, + [53544] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3388), 1, - anon_sym_RBRACK, - STATE(1433), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3391), 1, + anon_sym_RBRACE, + STATE(1471), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53486] = 3, - ACTIONS(1902), 1, - anon_sym_in, + [53558] = 4, + ACTIONS(2884), 1, + anon_sym_RBRACE, + ACTIONS(3393), 1, + anon_sym_COMMA, + STATE(1461), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1932), 2, + [53572] = 4, + ACTIONS(2952), 1, anon_sym_LPAREN, + ACTIONS(3395), 1, 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, - [53512] = 4, - ACTIONS(3348), 1, - anon_sym_RBRACK, - ACTIONS(3390), 1, - anon_sym_COMMA, - STATE(1433), 1, - aux_sym_array_pattern_repeat1, + STATE(1651), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53526] = 3, - ACTIONS(3213), 1, - anon_sym_EQ, + [53586] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3393), 2, + ACTIONS(3095), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [53538] = 4, - ACTIONS(2879), 1, - anon_sym_RBRACE, - ACTIONS(3395), 1, + anon_sym_SEMI, + [53596] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - STATE(1477), 1, - aux_sym_named_imports_repeat1, + ACTIONS(3391), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53552] = 4, - ACTIONS(910), 1, + [53610] = 4, + ACTIONS(2365), 1, anon_sym_COMMA, - ACTIONS(3397), 1, - anon_sym_RPAREN, - STATE(1354), 1, - aux_sym_array_repeat1, + ACTIONS(3385), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53566] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(2041), 1, - anon_sym_RPAREN, - STATE(1455), 1, - aux_sym_array_repeat1, + [53624] = 4, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3397), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53580] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(2041), 1, - anon_sym_RPAREN, - STATE(1354), 1, - aux_sym_array_repeat1, + [53638] = 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, - [53594] = 2, + [53652] = 4, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3399), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3399), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [53604] = 4, + [53666] = 4, ACTIONS(3401), 1, anon_sym_await, ACTIONS(3403), 1, @@ -87582,3259 +87696,3304 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [53618] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3405), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53632] = 3, - ACTIONS(3407), 1, - anon_sym_as, + [53680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3409), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [53644] = 4, - ACTIONS(3411), 1, + ACTIONS(2017), 3, anon_sym_COMMA, - ACTIONS(3413), 1, - anon_sym_RBRACE, - STATE(1435), 1, - aux_sym_named_imports_repeat1, + anon_sym_RPAREN, + anon_sym_RBRACK, + [53690] = 4, + ACTIONS(2297), 1, + anon_sym_DQUOTE, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1462), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53658] = 4, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3415), 1, - anon_sym_GT, + [53704] = 3, + ACTIONS(3236), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53672] = 4, + ACTIONS(3405), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53716] = 4, ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(2065), 1, + ACTIONS(3407), 1, anon_sym_RPAREN, - STATE(1354), 1, + STATE(1364), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53686] = 3, - ACTIONS(3417), 1, - sym_identifier, + [53730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 2, + ACTIONS(3353), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [53698] = 2, + [53740] = 3, + ACTIONS(2769), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3421), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [53708] = 4, - ACTIONS(2939), 1, + ACTIONS(2767), 2, anon_sym_LPAREN, - ACTIONS(3423), 1, - anon_sym_COLON, - STATE(1644), 1, - sym_formal_parameters, + sym_optional_chain, + [53752] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53722] = 4, - ACTIONS(2273), 1, + ACTIONS(3409), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [53762] = 4, + ACTIONS(3411), 1, anon_sym_COMMA, - ACTIONS(3340), 1, + ACTIONS(3414), 1, anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + STATE(1446), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53776] = 4, + ACTIONS(3321), 1, + anon_sym_from, + ACTIONS(3416), 1, + anon_sym_as, + STATE(1531), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53790] = 4, + ACTIONS(3418), 1, + anon_sym_await, + ACTIONS(3420), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53736] = 4, + [53804] = 4, ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(2009), 1, + ACTIONS(3422), 1, anon_sym_RBRACK, - STATE(1354), 1, + STATE(1364), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53750] = 4, + [53818] = 4, ACTIONS(873), 1, anon_sym_COMMA, - ACTIONS(3425), 1, + ACTIONS(3424), 1, anon_sym_RBRACK, - STATE(1433), 1, + STATE(1457), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53764] = 4, - ACTIONS(2357), 1, + [53832] = 4, + ACTIONS(2365), 1, anon_sym_COMMA, - ACTIONS(3427), 1, + ACTIONS(3426), 1, anon_sym_RBRACE, - STATE(1421), 1, + STATE(1475), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53778] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [53788] = 4, - ACTIONS(2357), 1, + [53846] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3431), 1, + ACTIONS(3428), 1, anon_sym_RBRACE, - STATE(1416), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [53802] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(3433), 1, - anon_sym_RPAREN, - STATE(1354), 1, - aux_sym_array_repeat1, + STATE(1476), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53816] = 3, - ACTIONS(3435), 1, + [53860] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3430), 1, sym_identifier, + STATE(1658), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3437), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53828] = 4, - ACTIONS(2357), 1, + [53874] = 4, + ACTIONS(3432), 1, anon_sym_COMMA, - ACTIONS(3439), 1, - anon_sym_RBRACE, - STATE(1420), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3435), 1, + anon_sym_RPAREN, + STATE(1454), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53842] = 4, + [53888] = 4, ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3441), 1, + ACTIONS(3428), 1, anon_sym_RBRACE, - STATE(1422), 1, + STATE(1486), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53856] = 4, - ACTIONS(3443), 1, + [53902] = 4, + ACTIONS(2365), 1, anon_sym_COMMA, - ACTIONS(3446), 1, + ACTIONS(3426), 1, anon_sym_RBRACE, - STATE(1459), 1, - aux_sym_export_clause_repeat1, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53870] = 4, - ACTIONS(910), 1, - anon_sym_COMMA, - ACTIONS(2009), 1, + [53916] = 4, + ACTIONS(3405), 1, anon_sym_RBRACK, - STATE(1483), 1, - aux_sym_array_repeat1, + ACTIONS(3437), 1, + anon_sym_COMMA, + STATE(1457), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53884] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3441), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + [53930] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, + sym_identifier, + STATE(1505), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53898] = 4, - ACTIONS(2939), 1, + [53944] = 4, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(3448), 1, + ACTIONS(3442), 1, sym_identifier, - STATE(1671), 1, + STATE(1679), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53912] = 4, - ACTIONS(2875), 1, - anon_sym_RBRACE, - ACTIONS(3450), 1, - anon_sym_COMMA, - STATE(1459), 1, - aux_sym_export_clause_repeat1, + [53958] = 3, + ACTIONS(3444), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53926] = 4, - ACTIONS(2273), 1, + ACTIONS(2767), 2, + anon_sym_LPAREN, + sym_optional_chain, + [53970] = 4, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3452), 1, + ACTIONS(3449), 1, anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + STATE(1461), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53940] = 4, - ACTIONS(910), 1, + [53984] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3451), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [53994] = 4, + ACTIONS(873), 1, anon_sym_COMMA, - ACTIONS(3454), 1, - anon_sym_RPAREN, - STATE(1354), 1, - aux_sym_array_repeat1, + ACTIONS(3295), 1, + anon_sym_RBRACK, + STATE(1482), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53954] = 4, - ACTIONS(2357), 1, + [54008] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3439), 1, - anon_sym_RBRACE, - STATE(1421), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2031), 1, + anon_sym_RBRACK, + STATE(1481), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53968] = 4, - ACTIONS(2273), 1, + [54022] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3456), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + ACTIONS(2031), 1, + anon_sym_RBRACK, + STATE(1364), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53982] = 3, - ACTIONS(953), 1, - sym__automatic_semicolon, + [54036] = 4, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3295), 1, + anon_sym_RBRACK, + STATE(1457), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2905), 2, - anon_sym_of, - anon_sym_in, - [53994] = 3, - ACTIONS(3458), 1, - sym__automatic_semicolon, + [54050] = 4, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(3453), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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, + [54064] = 4, + ACTIONS(3260), 1, + anon_sym_COMMA, + ACTIONS(3262), 1, + anon_sym_RPAREN, + STATE(1417), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54020] = 4, - ACTIONS(2939), 1, - anon_sym_LPAREN, - ACTIONS(3462), 1, - sym_identifier, - STATE(1501), 1, - sym_formal_parameters, + [54078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54034] = 3, - ACTIONS(2999), 1, - anon_sym_EQ, + ACTIONS(3455), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [54088] = 4, + ACTIONS(2876), 1, + anon_sym_RBRACE, + ACTIONS(3457), 1, + anon_sym_COMMA, + STATE(1446), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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, + [54102] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3459), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54060] = 3, - ACTIONS(3213), 1, - anon_sym_EQ, + [54116] = 4, + ACTIONS(3119), 1, + sym_identifier, + ACTIONS(3121), 1, + anon_sym_LBRACK, + ACTIONS(3123), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [54072] = 4, - ACTIONS(3466), 1, - anon_sym_RPAREN, - ACTIONS(3468), 1, + [54130] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - STATE(1475), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(3461), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54086] = 4, - ACTIONS(2357), 1, + [54144] = 4, + ACTIONS(2365), 1, anon_sym_COMMA, - ACTIONS(3431), 1, + ACTIONS(3463), 1, anon_sym_RBRACE, - STATE(1421), 1, + STATE(1487), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54100] = 4, - ACTIONS(3471), 1, + [54158] = 4, + ACTIONS(2365), 1, anon_sym_COMMA, - ACTIONS(3474), 1, + ACTIONS(3465), 1, anon_sym_RBRACE, - STATE(1477), 1, - aux_sym_named_imports_repeat1, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54114] = 3, - ACTIONS(3476), 1, - anon_sym_DOT, + [54172] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3467), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - 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, + [54186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54140] = 4, - ACTIONS(910), 1, + ACTIONS(3469), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [54196] = 4, + ACTIONS(3471), 1, anon_sym_COMMA, - ACTIONS(2021), 1, - anon_sym_RPAREN, - STATE(1465), 1, - aux_sym_array_repeat1, + ACTIONS(3473), 1, + anon_sym_RBRACE, + STATE(1470), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54154] = 3, - ACTIONS(3163), 1, - anon_sym_EQ, + [54210] = 3, + ACTIONS(3477), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1550), 2, + ACTIONS(3475), 2, anon_sym_of, anon_sym_in, - [54166] = 2, + [54222] = 3, + ACTIONS(3481), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3480), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [54176] = 4, + ACTIONS(3479), 2, + anon_sym_of, + anon_sym_in, + [54234] = 4, ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3483), 1, anon_sym_RBRACK, - STATE(1354), 1, + STATE(1364), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54190] = 4, + [54248] = 4, ACTIONS(873), 1, anon_sym_COMMA, - ACTIONS(3215), 1, + ACTIONS(3485), 1, anon_sym_RBRACK, - STATE(1430), 1, + STATE(1457), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54204] = 4, + [54262] = 4, ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(2039), 1, - anon_sym_RBRACK, - STATE(1429), 1, + ACTIONS(2033), 1, + anon_sym_RPAREN, + STATE(1488), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54218] = 4, - ACTIONS(918), 1, - anon_sym_RPAREN, - ACTIONS(3484), 1, + [54276] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - STATE(1475), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2033), 1, + anon_sym_RPAREN, + STATE(1364), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54232] = 4, - ACTIONS(2273), 1, + [54290] = 4, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3487), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54304] = 4, + ACTIONS(3489), 1, anon_sym_COMMA, - ACTIONS(3486), 1, + ACTIONS(3492), 1, anon_sym_RBRACE, - STATE(1417), 1, + STATE(1486), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54246] = 2, + [54318] = 4, + ACTIONS(3494), 1, + anon_sym_COMMA, + ACTIONS(3497), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 3, + [54332] = 4, + ACTIONS(910), 1, anon_sym_COMMA, + ACTIONS(3499), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [54256] = 4, - ACTIONS(3248), 1, - anon_sym_from, - ACTIONS(3488), 1, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54346] = 3, + ACTIONS(3501), 1, anon_sym_as, - STATE(1686), 1, - sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54270] = 4, - ACTIONS(910), 1, + ACTIONS(3503), 2, anon_sym_COMMA, - ACTIONS(2039), 1, - anon_sym_RBRACK, - STATE(1354), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [54358] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54284] = 4, - ACTIONS(873), 1, + ACTIONS(3505), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [54368] = 4, + ACTIONS(3507), 1, anon_sym_COMMA, - ACTIONS(3215), 1, - anon_sym_RBRACK, - STATE(1433), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3509), 1, + anon_sym_RBRACE, + STATE(1430), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54382] = 3, + ACTIONS(3511), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54298] = 4, - ACTIONS(2939), 1, + ACTIONS(3513), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54394] = 4, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(3490), 1, + ACTIONS(3515), 1, sym_identifier, - STATE(1671), 1, + STATE(1528), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54312] = 3, - ACTIONS(3494), 1, - sym__automatic_semicolon, + [54408] = 3, + ACTIONS(3188), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, + ACTIONS(1550), 2, anon_sym_of, anon_sym_in, - [54324] = 4, - ACTIONS(3125), 1, + [54420] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, sym_identifier, - ACTIONS(3127), 1, - anon_sym_LBRACK, - ACTIONS(3129), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [54338] = 3, - ACTIONS(3498), 1, - sym__automatic_semicolon, + STATE(1505), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3496), 2, - anon_sym_of, - anon_sym_in, - [54350] = 4, - ACTIONS(2751), 1, + [54434] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3519), 1, anon_sym_COLON, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3500), 1, - anon_sym_GT, + STATE(1651), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54364] = 2, + [54448] = 3, + ACTIONS(3521), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3502), 3, + ACTIONS(3523), 2, 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, + [54460] = 3, + ACTIONS(953), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54388] = 4, - ACTIONS(2273), 1, - anon_sym_COMMA, - ACTIONS(3344), 1, - anon_sym_RBRACE, - STATE(1417), 1, - aux_sym_object_repeat1, + ACTIONS(2910), 2, + anon_sym_of, + anon_sym_in, + [54472] = 3, + ACTIONS(3525), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54402] = 2, + ACTIONS(2921), 2, + anon_sym_of, + anon_sym_in, + [54484] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + sym_identifier, + STATE(1505), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54411] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(789), 1, - sym_statement_block, + [54498] = 3, + ACTIONS(3236), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54422] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(94), 1, - sym_statement_block, + ACTIONS(3435), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54510] = 4, + ACTIONS(1162), 1, + anon_sym_while, + ACTIONS(3529), 1, + anon_sym_else, + STATE(428), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54433] = 3, - ACTIONS(3512), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_private_property_identifier, + [54524] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1042), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54444] = 3, - ACTIONS(3090), 1, - sym_identifier, - ACTIONS(3094), 1, - sym_private_property_identifier, + [54535] = 3, + ACTIONS(3531), 1, + anon_sym_SEMI, + ACTIONS(3533), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54455] = 2, + [54546] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(789), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1944), 2, - sym__automatic_semicolon, + [54557] = 3, + ACTIONS(3537), 1, anon_sym_SEMI, - [54464] = 3, - ACTIONS(3516), 1, - anon_sym_LPAREN, - STATE(70), 1, - sym_parenthesized_expression, + ACTIONS(3539), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54475] = 3, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - sym_private_property_identifier, + [54568] = 3, + ACTIONS(3541), 1, + anon_sym_SEMI, + ACTIONS(3543), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54486] = 3, - ACTIONS(2939), 1, + [54579] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1571), 1, + STATE(1615), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54497] = 3, - ACTIONS(3125), 1, - sym_identifier, - ACTIONS(3129), 1, - sym_private_property_identifier, + [54590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54508] = 3, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(783), 1, - sym_class_body, + ACTIONS(3405), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54599] = 3, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(3397), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54519] = 3, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(3382), 1, - anon_sym_GT, + [54610] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54530] = 3, - ACTIONS(2757), 1, + ACTIONS(1688), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54619] = 3, + ACTIONS(2795), 1, anon_sym_DOT, - ACTIONS(3382), 1, + ACTIONS(3397), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54541] = 2, + [54630] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(94), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1724), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54550] = 2, + [54641] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3374), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [54559] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1040), 1, - sym_statement_block, + ACTIONS(1692), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54650] = 3, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(3399), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54570] = 2, + [54661] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3363), 2, + ACTIONS(3497), 2, anon_sym_COMMA, anon_sym_RBRACE, - [54579] = 3, - ACTIONS(3516), 1, + [54670] = 3, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3399), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54681] = 3, + ACTIONS(3545), 1, anon_sym_LPAREN, STATE(54), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54590] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(95), 1, - sym_statement_block, + [54692] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54601] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1714), 1, - sym_formal_parameters, + ACTIONS(3492), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54701] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(95), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54612] = 3, - ACTIONS(3516), 1, + [54712] = 3, + ACTIONS(3545), 1, anon_sym_LPAREN, STATE(40), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54623] = 2, + [54723] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1520), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1688), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [54632] = 2, + [54734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1692), 2, + ACTIONS(3547), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54641] = 3, - ACTIONS(3516), 1, + [54743] = 3, + ACTIONS(3545), 1, anon_sym_LPAREN, STATE(56), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54652] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(736), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [54663] = 3, - ACTIONS(2395), 1, + [54754] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(2577), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [54674] = 2, + STATE(1556), 1, + sym_formal_parameters, 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(3500), 1, - anon_sym_GT, + [54765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54694] = 3, + ACTIONS(3549), 2, + anon_sym_of, + anon_sym_in, + [54774] = 3, ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(3524), 1, + ACTIONS(2558), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54705] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1578), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [54716] = 3, - ACTIONS(3017), 1, + [54785] = 3, + ACTIONS(3535), 1, anon_sym_LBRACE, - STATE(768), 1, - sym_class_body, + STATE(764), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54727] = 3, - ACTIONS(3526), 1, + [54796] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(627), 1, + STATE(381), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54738] = 3, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(631), 1, - sym_statement_block, + [54807] = 3, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(3551), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54749] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(782), 1, - sym_statement_block, + [54818] = 3, + ACTIONS(3553), 1, + anon_sym_SEMI, + ACTIONS(3555), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54760] = 3, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3500), 1, - anon_sym_GT, + [54829] = 3, + ACTIONS(3557), 1, + anon_sym_COMMA, + ACTIONS(3559), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54771] = 3, - ACTIONS(3528), 1, + [54840] = 3, + ACTIONS(3561), 1, anon_sym_LPAREN, STATE(58), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54782] = 3, - ACTIONS(2939), 1, + [54851] = 3, + ACTIONS(3321), 1, + anon_sym_from, + STATE(1376), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54862] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1533), 1, + STATE(1659), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54793] = 3, - ACTIONS(3017), 1, + [54873] = 3, + ACTIONS(3082), 1, anon_sym_LBRACE, STATE(93), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54804] = 2, + [54884] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3530), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [54813] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1579), 1, - sym_formal_parameters, + ACTIONS(1944), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54893] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54824] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1589), 1, - sym_formal_parameters, + ACTIONS(3563), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [54902] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(99), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54835] = 2, + [54913] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3446), 2, + ACTIONS(3414), 2, anon_sym_COMMA, 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, - [54855] = 2, + [54922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3532), 2, + ACTIONS(3565), 2, anon_sym_COMMA, anon_sym_RBRACE, - [54864] = 3, - ACTIONS(2939), 1, + [54931] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1700), 1, + STATE(1691), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54875] = 3, - ACTIONS(3534), 1, + [54942] = 3, + ACTIONS(3567), 1, anon_sym_LBRACE, STATE(403), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54886] = 3, - ACTIONS(3534), 1, + [54953] = 3, + ACTIONS(3567), 1, anon_sym_LBRACE, STATE(415), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54897] = 3, - ACTIONS(3282), 1, + [54964] = 3, + ACTIONS(3232), 1, anon_sym_LBRACE, STATE(392), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54908] = 2, + [54975] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(1937), 2, anon_sym_LPAREN, anon_sym_COLON, - [54917] = 3, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(3415), 1, - anon_sym_GT, + [54984] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1075), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54928] = 3, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3415), 1, - anon_sym_GT, + [54995] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54939] = 3, - ACTIONS(3350), 1, + ACTIONS(3569), 2, anon_sym_LBRACE, - STATE(1064), 1, + anon_sym_EQ_GT, + [55004] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1056), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54950] = 3, - ACTIONS(2939), 1, + [55015] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1704), 1, + STATE(1673), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54961] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1556), 1, - sym_formal_parameters, + [55026] = 3, + ACTIONS(3082), 1, + anon_sym_LBRACE, + STATE(743), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54972] = 3, - ACTIONS(3070), 1, + [55037] = 3, + ACTIONS(3571), 1, anon_sym_LBRACE, - STATE(643), 1, - sym_class_body, + STATE(478), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54983] = 3, - ACTIONS(2939), 1, + [55048] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1567), 1, + STATE(1676), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [54994] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1044), 1, - sym_statement_block, + [55059] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55005] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1045), 1, - sym_statement_block, + ACTIONS(3573), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55068] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1696), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55016] = 3, - ACTIONS(3350), 1, + [55079] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1065), 1, + STATE(1057), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55027] = 3, - ACTIONS(2939), 1, + [55090] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1705), 1, + STATE(1680), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55038] = 3, - ACTIONS(2939), 1, + [55101] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1574), 1, + STATE(1698), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55049] = 3, - ACTIONS(2939), 1, + [55112] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1706), 1, + STATE(1699), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55060] = 3, - ACTIONS(2939), 1, + [55123] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1707), 1, + STATE(1681), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55071] = 3, - ACTIONS(2939), 1, + [55134] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1586), 1, + STATE(1700), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55082] = 3, - ACTIONS(3350), 1, + [55145] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1066), 1, + STATE(1058), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55093] = 3, - ACTIONS(2939), 1, + [55156] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1711), 1, + STATE(1707), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55104] = 3, - ACTIONS(3070), 1, - anon_sym_LBRACE, - STATE(644), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [55115] = 3, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_statement_block, + [55167] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1576), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55126] = 3, - ACTIONS(2939), 1, + [55178] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1719), 1, + STATE(1720), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55137] = 3, - ACTIONS(2939), 1, + [55189] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1720), 1, + STATE(1722), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55148] = 3, - ACTIONS(2939), 1, + [55200] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1721), 1, + STATE(1723), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55159] = 3, - ACTIONS(3350), 1, + [55211] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1068), 1, + STATE(1062), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55170] = 3, - ACTIONS(2939), 1, + [55222] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1735), 1, + STATE(1738), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55181] = 3, - ACTIONS(3526), 1, + [55233] = 3, + ACTIONS(3082), 1, anon_sym_LBRACE, - STATE(641), 1, - sym_statement_block, + STATE(807), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55192] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(702), 1, - sym_statement_block, + [55244] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1539), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55203] = 3, - ACTIONS(2939), 1, + [55255] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1742), 1, + STATE(1586), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55214] = 3, - ACTIONS(2939), 1, + [55266] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1743), 1, + STATE(1744), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55225] = 3, - ACTIONS(2939), 1, + [55277] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1744), 1, + STATE(1745), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55236] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(1069), 1, - sym_statement_block, + [55288] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1747), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55247] = 3, - ACTIONS(3350), 1, + [55299] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1070), 1, + STATE(1067), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55258] = 3, - ACTIONS(2939), 1, + [55310] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1608), 1, + STATE(1684), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55269] = 3, - ACTIONS(2939), 1, + [55321] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1615), 1, + STATE(1685), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55280] = 3, - ACTIONS(2939), 1, + [55332] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1616), 1, + STATE(1687), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55291] = 3, - ACTIONS(2939), 1, + [55343] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1618), 1, + STATE(1689), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55302] = 3, - ACTIONS(2939), 1, + [55354] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1619), 1, + STATE(1690), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55313] = 3, - ACTIONS(2939), 1, + [55365] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1621), 1, + STATE(1693), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55324] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(752), 1, - sym_statement_block, + [55376] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1587), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55335] = 3, - ACTIONS(2939), 1, + [55387] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1622), 1, + STATE(1694), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55346] = 3, - ACTIONS(2939), 1, + [55398] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1623), 1, + STATE(1695), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55357] = 3, - ACTIONS(3350), 1, + [55409] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1037), 1, + STATE(1068), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55420] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1069), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55368] = 3, - ACTIONS(2939), 1, + [55431] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1626), 1, + STATE(1701), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55379] = 2, + [55442] = 3, + ACTIONS(3575), 1, + sym_identifier, + ACTIONS(3577), 1, + sym_jsx_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55453] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3536), 2, + ACTIONS(3579), 2, anon_sym_COMMA, anon_sym_RBRACE, - [55388] = 2, + [55462] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1702), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3474), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [55397] = 3, - ACTIONS(2939), 1, + [55473] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1630), 1, + STATE(1703), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55408] = 3, - ACTIONS(2939), 1, + [55484] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1631), 1, + STATE(1704), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55419] = 3, - ACTIONS(2939), 1, + [55495] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1633), 1, + STATE(1705), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55430] = 3, - ACTIONS(2939), 1, + [55506] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1634), 1, + STATE(1706), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55441] = 3, - ACTIONS(2939), 1, + [55517] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1635), 1, + STATE(1708), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55452] = 3, - ACTIONS(2939), 1, + [55528] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1636), 1, + STATE(1710), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55463] = 3, - ACTIONS(2939), 1, + [55539] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1637), 1, + STATE(1712), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55474] = 3, - ACTIONS(2939), 1, + [55550] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1638), 1, + STATE(1713), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55485] = 3, - ACTIONS(2939), 1, + [55561] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1639), 1, + STATE(1714), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55496] = 3, - ACTIONS(2939), 1, + [55572] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1640), 1, + STATE(1715), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55507] = 3, - ACTIONS(2939), 1, + [55583] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1641), 1, + STATE(1716), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55594] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1717), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55518] = 3, - ACTIONS(2939), 1, + [55605] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [55614] = 3, + ACTIONS(3097), 1, + anon_sym_of, + ACTIONS(3099), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55625] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1642), 1, + STATE(1562), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55529] = 3, - ACTIONS(2939), 1, + [55636] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1643), 1, + STATE(1503), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55540] = 3, - ACTIONS(3538), 1, - anon_sym_COMMA, - ACTIONS(3540), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [55551] = 3, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(724), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [55562] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1064), 1, - sym_statement_block, + [55647] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1726), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55573] = 3, - ACTIONS(2939), 1, + [55658] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1646), 1, + STATE(1727), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55584] = 3, - ACTIONS(2939), 1, + [55669] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1647), 1, + STATE(1728), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55595] = 3, - ACTIONS(2939), 1, + [55680] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1650), 1, + STATE(1729), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55606] = 3, - ACTIONS(2939), 1, + [55691] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1651), 1, + STATE(1730), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55617] = 3, - ACTIONS(2939), 1, + [55702] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1652), 1, + STATE(1623), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55628] = 3, - ACTIONS(2939), 1, + [55713] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1653), 1, + STATE(1624), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55639] = 3, - ACTIONS(2405), 1, + [55724] = 3, + ACTIONS(3535), 1, anon_sym_LBRACE, - STATE(1065), 1, + STATE(754), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55650] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1066), 1, - sym_statement_block, + [55735] = 3, + ACTIONS(3545), 1, + anon_sym_LPAREN, + STATE(71), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55661] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_statement_block, + [55746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55672] = 3, - ACTIONS(2405), 1, + ACTIONS(716), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55755] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1069), 1, + STATE(1048), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55683] = 3, - ACTIONS(2405), 1, + [55766] = 3, + ACTIONS(3535), 1, anon_sym_LBRACE, - STATE(1070), 1, + STATE(699), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55694] = 2, + [55777] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(716), 2, + ACTIONS(3581), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55703] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1037), 1, - sym_statement_block, + [55786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55714] = 3, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(620), 1, - sym_statement_block, + ACTIONS(1749), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55795] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1627), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55725] = 3, - ACTIONS(3526), 1, + [55806] = 3, + ACTIONS(3535), 1, anon_sym_LBRACE, - STATE(605), 1, + STATE(772), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55736] = 3, - ACTIONS(3070), 1, - anon_sym_LBRACE, - STATE(612), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [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, + [55817] = 3, + ACTIONS(3535), 1, anon_sym_LBRACE, - STATE(774), 1, + STATE(773), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55769] = 3, - ACTIONS(2939), 1, + [55828] = 3, + ACTIONS(3545), 1, anon_sym_LPAREN, - STATE(1524), 1, - sym_formal_parameters, + STATE(57), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55780] = 3, - ACTIONS(3510), 1, + [55839] = 3, + ACTIONS(3082), 1, anon_sym_LBRACE, - STATE(772), 1, - sym_statement_block, + STATE(786), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55791] = 3, - ACTIONS(3510), 1, + [55850] = 3, + ACTIONS(3535), 1, anon_sym_LBRACE, - STATE(773), 1, + STATE(736), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55802] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1046), 1, - sym_statement_block, + [55861] = 3, + ACTIONS(3545), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55813] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1048), 1, - sym_statement_block, + [55872] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55824] = 3, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(786), 1, - sym_class_body, + ACTIONS(3583), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55881] = 3, + ACTIONS(3321), 1, + anon_sym_from, + STATE(1504), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55835] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1049), 1, - sym_statement_block, + [55892] = 3, + ACTIONS(3585), 1, + sym_identifier, + ACTIONS(3587), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55846] = 3, - ACTIONS(2405), 1, + [55903] = 3, + ACTIONS(3232), 1, anon_sym_LBRACE, - STATE(1050), 1, - sym_statement_block, + STATE(398), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55857] = 3, - ACTIONS(2405), 1, + [55914] = 3, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1051), 1, - sym_statement_block, + STATE(595), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55868] = 3, - ACTIONS(2405), 1, + [55925] = 3, + ACTIONS(3589), 1, anon_sym_LBRACE, - STATE(1052), 1, + STATE(596), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55879] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1059), 1, - sym_statement_block, + [55936] = 3, + ACTIONS(3545), 1, + anon_sym_LPAREN, + STATE(1552), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55890] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1060), 1, - sym_statement_block, + [55947] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55901] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1061), 1, - sym_statement_block, + ACTIONS(3591), 2, + anon_sym_of, + anon_sym_in, + [55956] = 3, + ACTIONS(3593), 1, + sym_identifier, + ACTIONS(3595), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55912] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1062), 1, - sym_statement_block, + [55967] = 3, + ACTIONS(3119), 1, + sym_identifier, + ACTIONS(3123), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55923] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_statement_block, + [55978] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1543), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55934] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1039), 1, - sym_statement_block, + [55989] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1544), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55945] = 3, - ACTIONS(3526), 1, + [56000] = 3, + ACTIONS(3567), 1, anon_sym_LBRACE, - STATE(636), 1, + STATE(409), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55956] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(1040), 1, - sym_statement_block, + [56011] = 3, + ACTIONS(3561), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55967] = 3, - ACTIONS(3017), 1, - anon_sym_LBRACE, - STATE(98), 1, - sym_class_body, + [56022] = 3, + ACTIONS(3597), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55978] = 3, + [56033] = 3, ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1053), 1, + STATE(1065), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [55989] = 3, - ACTIONS(2405), 1, - anon_sym_LBRACE, - STATE(1054), 1, - sym_statement_block, + [56044] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56000] = 2, + ACTIONS(1954), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56053] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3542), 2, + ACTIONS(3599), 2, anon_sym_of, anon_sym_in, - [56009] = 2, + [56062] = 3, + ACTIONS(3601), 1, + anon_sym_LBRACE, + STATE(1523), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 2, - anon_sym_of, - anon_sym_in, - [56018] = 3, - ACTIONS(2405), 1, + [56073] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1724), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56082] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1055), 1, + STATE(458), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56029] = 3, - ACTIONS(2405), 1, + [56093] = 3, + ACTIONS(3082), 1, anon_sym_LBRACE, - STATE(1056), 1, - sym_statement_block, + STATE(783), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56040] = 3, - ACTIONS(2405), 1, + [56104] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1057), 1, + STATE(1065), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56051] = 3, - ACTIONS(2405), 1, + [56115] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1058), 1, + STATE(1042), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56062] = 3, - ACTIONS(3546), 1, - sym_identifier, - ACTIONS(3548), 1, - anon_sym_STAR, + [56126] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1043), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56073] = 3, - ACTIONS(3550), 1, - sym_identifier, - ACTIONS(3552), 1, - anon_sym_STAR, + [56137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56084] = 3, - ACTIONS(3017), 1, + ACTIONS(3603), 2, anon_sym_LBRACE, - STATE(807), 1, - sym_class_body, + anon_sym_EQ_GT, + [56146] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1044), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56095] = 3, - ACTIONS(3516), 1, - anon_sym_LPAREN, - STATE(71), 1, - sym_parenthesized_expression, + [56157] = 3, + ACTIONS(3082), 1, + anon_sym_LBRACE, + STATE(768), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56106] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1683), 1, - sym_formal_parameters, + [56168] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(627), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56117] = 2, + [56179] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(631), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3554), 2, + [56190] = 3, + ACTIONS(3535), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [56126] = 2, + STATE(782), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3556), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [56135] = 2, + [56201] = 3, + ACTIONS(3088), 1, + anon_sym_of, + ACTIONS(3090), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3466), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56144] = 2, + [56212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1956), 2, + ACTIONS(3605), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56153] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1502), 1, - sym_formal_parameters, + [56221] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56164] = 3, - ACTIONS(3558), 1, - anon_sym_SEMI, - ACTIONS(3560), 1, + ACTIONS(3607), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [56230] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(96), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56175] = 3, - ACTIONS(3510), 1, + [56241] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(1040), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56186] = 3, - ACTIONS(3562), 1, - anon_sym_SEMI, - ACTIONS(3564), 1, - sym__automatic_semicolon, + [56252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56197] = 3, - ACTIONS(3566), 1, - anon_sym_LBRACE, - STATE(478), 1, - sym_switch_body, + ACTIONS(3609), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56261] = 3, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(3487), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56208] = 3, - ACTIONS(3516), 1, + [56272] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(57), 1, - sym_parenthesized_expression, + STATE(1618), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56219] = 2, + [56283] = 3, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(3387), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3568), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [56228] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1518), 1, - sym_formal_parameters, + [56294] = 3, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3487), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56239] = 3, - ACTIONS(3510), 1, - anon_sym_LBRACE, - STATE(764), 1, - sym_statement_block, + [56305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56250] = 3, - ACTIONS(3510), 1, + ACTIONS(3611), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56314] = 3, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(99), 1, - sym_statement_block, + STATE(643), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56261] = 2, + [56325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3570), 2, + ACTIONS(3613), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56270] = 3, - ACTIONS(3572), 1, - anon_sym_SEMI, - ACTIONS(3574), 1, - sym__automatic_semicolon, + [56334] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56281] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1672), 1, - sym_formal_parameters, + [56345] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1048), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56292] = 3, - ACTIONS(3282), 1, + [56356] = 3, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(398), 1, + STATE(644), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56303] = 3, - ACTIONS(3516), 1, - anon_sym_LPAREN, - STATE(1667), 1, - sym_parenthesized_expression, + [56367] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(645), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56314] = 2, + [56378] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1549), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3576), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56323] = 3, - ACTIONS(3510), 1, + [56389] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(96), 1, + STATE(1047), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56334] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1545), 1, - sym_formal_parameters, + [56400] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(641), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56345] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1546), 1, - sym_formal_parameters, + [56411] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(702), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56356] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1542), 1, - sym_formal_parameters, + [56422] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(752), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56367] = 3, - ACTIONS(3534), 1, + [56433] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(409), 1, + STATE(1050), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56378] = 3, - ACTIONS(3510), 1, + [56444] = 3, + ACTIONS(3082), 1, anon_sym_LBRACE, - STATE(699), 1, + STATE(724), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56455] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1056), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56389] = 2, + [56466] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1057), 1, + sym_statement_block, 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, + [56477] = 3, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3387), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56409] = 3, - ACTIONS(3584), 1, - anon_sym_LPAREN, - STATE(395), 1, - sym_parenthesized_expression, + [56488] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1058), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56420] = 3, - ACTIONS(3350), 1, + [56499] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(458), 1, + STATE(1062), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56431] = 2, + [56510] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1067), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3586), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56440] = 3, - ACTIONS(3350), 1, + [56521] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1044), 1, + STATE(1068), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56451] = 3, - ACTIONS(3350), 1, + [56532] = 3, + ACTIONS(3567), 1, anon_sym_LBRACE, - STATE(1053), 1, + STATE(408), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56462] = 3, - ACTIONS(3248), 1, - anon_sym_from, - STATE(1664), 1, - sym__from_clause, + [56543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56473] = 3, - ACTIONS(3350), 1, + ACTIONS(3357), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56552] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1054), 1, + STATE(1069), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56484] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1551), 1, - sym_formal_parameters, + [56563] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56495] = 2, + [56574] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(605), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1954), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56504] = 3, - ACTIONS(3017), 1, + [56585] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(743), 1, - sym_class_body, + STATE(1064), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56515] = 3, - ACTIONS(3528), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym__for_header, + [56596] = 3, + ACTIONS(3103), 1, + anon_sym_LBRACE, + STATE(612), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56526] = 3, - ACTIONS(2405), 1, + [56607] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1078), 1, + STATE(1070), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56537] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3348), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [56546] = 3, - ACTIONS(3534), 1, + [56618] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(408), 1, + STATE(1045), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56557] = 3, - ACTIONS(3350), 1, + [56629] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1055), 1, + STATE(1046), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56568] = 2, + [56640] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(774), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3588), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56577] = 3, - ACTIONS(3590), 1, + [56651] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1685), 1, - sym_object, + STATE(1064), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56588] = 3, - ACTIONS(3350), 1, + [56662] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1046), 1, + STATE(1070), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56599] = 3, - ACTIONS(3350), 1, + [56673] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1048), 1, + STATE(1045), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56610] = 3, - ACTIONS(3350), 1, + [56684] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1049), 1, + STATE(1046), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56621] = 3, - ACTIONS(3350), 1, + [56695] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1050), 1, + STATE(1060), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56632] = 3, - ACTIONS(3350), 1, + [56706] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(381), 1, + STATE(1060), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56643] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1628), 1, - sym_formal_parameters, + [56717] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1038), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56654] = 3, - ACTIONS(2939), 1, + [56728] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1690), 1, + STATE(1664), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56665] = 3, - ACTIONS(3350), 1, + [56739] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1051), 1, + STATE(1055), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56676] = 3, - ACTIONS(2939), 1, + [56750] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1691), 1, + STATE(1652), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56687] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1629), 1, - sym_formal_parameters, + [56761] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1053), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56698] = 3, - ACTIONS(3510), 1, + [56772] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(754), 1, + STATE(1054), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56709] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1693), 1, - sym_formal_parameters, + [56783] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1037), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56720] = 3, - ACTIONS(3056), 1, - anon_sym_of, - ACTIONS(3058), 1, - anon_sym_in, + [56794] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1066), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56731] = 3, - ACTIONS(3350), 1, + [56805] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1056), 1, + STATE(1061), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56816] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(636), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56742] = 3, - ACTIONS(2939), 1, + [56827] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1653), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56838] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1701), 1, + STATE(1655), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56753] = 3, - ACTIONS(3350), 1, + [56849] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1052), 1, + STATE(1038), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56764] = 3, - ACTIONS(3350), 1, + [56860] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1059), 1, + STATE(1052), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56775] = 3, - ACTIONS(3350), 1, + [56871] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1060), 1, + STATE(1055), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56786] = 2, + [56882] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1053), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3393), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56795] = 3, - ACTIONS(3350), 1, + [56893] = 3, + ACTIONS(3082), 1, anon_sym_LBRACE, - STATE(1057), 1, - sym_statement_block, + STATE(98), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56806] = 3, - ACTIONS(3592), 1, - sym_identifier, - ACTIONS(3594), 1, - sym_jsx_identifier, + [56904] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56817] = 3, - ACTIONS(3350), 1, + ACTIONS(3615), 2, + anon_sym_of, + anon_sym_in, + [56913] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(1058), 1, + STATE(1043), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56828] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1558), 1, - sym_formal_parameters, + [56924] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1044), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56839] = 2, + [56935] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1047), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3596), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56848] = 3, - ACTIONS(3350), 1, + [56946] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(407), 1, + STATE(1050), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56859] = 3, - ACTIONS(3064), 1, - anon_sym_of, - ACTIONS(3066), 1, - anon_sym_in, + [56957] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1052), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56870] = 3, - ACTIONS(2939), 1, + [56968] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1564), 1, + STATE(1568), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56881] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56890] = 2, + [56979] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(407), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3600), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56899] = 3, - ACTIONS(2751), 1, - anon_sym_COLON, - ACTIONS(3384), 1, - anon_sym_GT, + [56990] = 3, + ACTIONS(3617), 1, + sym_identifier, + ACTIONS(3619), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56910] = 2, + [57001] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1663), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 2, - anon_sym_of, - anon_sym_in, - [56919] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(1061), 1, - sym_statement_block, + [57012] = 3, + ACTIONS(3621), 1, + sym_identifier, + ACTIONS(3623), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56930] = 3, - ACTIONS(2757), 1, - anon_sym_DOT, - ACTIONS(3384), 1, - anon_sym_GT, + [57023] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1513), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56941] = 2, + [57034] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1641), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1749), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [56950] = 3, - ACTIONS(3070), 1, + [57045] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(595), 1, - sym_class_body, + STATE(1054), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56961] = 3, - ACTIONS(2939), 1, + [57056] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1717), 1, + STATE(1678), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56972] = 3, - ACTIONS(2939), 1, + [57067] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1723), 1, + STATE(1682), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56983] = 3, - ACTIONS(2939), 1, + [57078] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3625), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [57087] = 3, + ACTIONS(2952), 1, anon_sym_LPAREN, - STATE(1725), 1, + STATE(1721), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [56994] = 3, - ACTIONS(3350), 1, - anon_sym_LBRACE, - STATE(1062), 1, - sym_statement_block, + [57098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57005] = 3, - ACTIONS(3350), 1, + ACTIONS(3435), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57107] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1063), 1, + STATE(1037), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57016] = 3, - ACTIONS(3350), 1, + [57118] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(1039), 1, + STATE(1066), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57027] = 3, - ACTIONS(2939), 1, - anon_sym_LPAREN, - STATE(1679), 1, - sym_formal_parameters, + [57129] = 3, + ACTIONS(3125), 1, + sym_identifier, + ACTIONS(3129), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57038] = 3, - ACTIONS(3526), 1, + [57140] = 3, + ACTIONS(3381), 1, anon_sym_LBRACE, - STATE(596), 1, + STATE(1061), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57049] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3604), 2, - anon_sym_of, - anon_sym_in, - [57058] = 2, - ACTIONS(1991), 1, - anon_sym_RPAREN, + [57151] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57066] = 2, - ACTIONS(2101), 1, - anon_sym_RBRACK, + ACTIONS(3627), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57160] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57074] = 2, - ACTIONS(2109), 1, - anon_sym_RPAREN, + ACTIONS(1956), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57169] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57082] = 2, - ACTIONS(3606), 1, + [57180] = 2, + ACTIONS(3629), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57090] = 2, - ACTIONS(3413), 1, - anon_sym_RBRACE, + [57188] = 2, + ACTIONS(3551), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57098] = 2, - ACTIONS(2019), 1, - anon_sym_RBRACE, + [57196] = 2, + ACTIONS(3631), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57106] = 2, - ACTIONS(3608), 1, - anon_sym_target, + [57204] = 2, + ACTIONS(2023), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57114] = 2, - ACTIONS(3610), 1, - anon_sym_while, + [57212] = 2, + ACTIONS(3633), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57122] = 2, - ACTIONS(1804), 1, - anon_sym_in, + [57220] = 2, + ACTIONS(3399), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57130] = 2, - ACTIONS(2003), 1, - anon_sym_RPAREN, + [57228] = 2, + ACTIONS(3487), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57138] = 2, - ACTIONS(3608), 1, - anon_sym_meta, + [57236] = 2, + ACTIONS(3635), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57146] = 2, - ACTIONS(3612), 1, - anon_sym_COLON, + [57244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3637), 1, + sym_regex_pattern, + [57254] = 2, + ACTIONS(3559), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57154] = 2, - ACTIONS(1989), 1, - anon_sym_RPAREN, + [57262] = 2, + ACTIONS(3639), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57162] = 2, - ACTIONS(2005), 1, - anon_sym_RPAREN, + [57270] = 2, + ACTIONS(3641), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57170] = 2, - ACTIONS(2999), 1, - anon_sym_EQ, + [57278] = 2, + ACTIONS(2103), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57178] = 2, - ACTIONS(3614), 1, + [57286] = 2, + ACTIONS(3643), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57186] = 2, - ACTIONS(2111), 1, - anon_sym_RPAREN, + [57294] = 2, + ACTIONS(3645), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57194] = 2, - ACTIONS(2045), 1, - anon_sym_RBRACE, + [57302] = 2, + ACTIONS(3647), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57202] = 2, - ACTIONS(3616), 1, - anon_sym_from, + [57310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3649), 1, + sym_regex_pattern, + [57320] = 2, + ACTIONS(3651), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57210] = 2, - ACTIONS(2395), 1, - anon_sym_LPAREN, + [57328] = 2, + ACTIONS(3653), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57218] = 2, - ACTIONS(2577), 1, - anon_sym_EQ_GT, + [57336] = 2, + ACTIONS(3655), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57226] = 3, - ACTIONS(3), 1, + [57344] = 2, + ACTIONS(2105), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [57352] = 2, + ACTIONS(2039), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3618), 1, - sym_regex_pattern, - [57236] = 3, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [57360] = 2, + ACTIONS(3657), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3620), 1, - anon_sym_SLASH2, - [57246] = 2, - ACTIONS(2189), 1, - anon_sym_in, + sym_comment, + [57368] = 2, + ACTIONS(3659), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57254] = 2, - ACTIONS(3622), 1, - anon_sym_from, + [57376] = 2, + ACTIONS(3661), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57262] = 2, - ACTIONS(2127), 1, - anon_sym_RPAREN, + [57384] = 2, + ACTIONS(3663), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57270] = 2, - ACTIONS(2015), 1, - anon_sym_RPAREN, + [57392] = 2, + ACTIONS(3509), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57278] = 2, - ACTIONS(3624), 1, - anon_sym_as, + [57400] = 2, + ACTIONS(3665), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57286] = 2, - ACTIONS(3626), 1, - anon_sym_EQ, + [57408] = 2, + ACTIONS(3667), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57294] = 2, - ACTIONS(2223), 1, + [57416] = 2, + ACTIONS(2151), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57302] = 2, - ACTIONS(3628), 1, - anon_sym_EQ_GT, + [57424] = 2, + ACTIONS(1804), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57310] = 2, - ACTIONS(3630), 1, + [57432] = 2, + ACTIONS(3669), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57318] = 2, - ACTIONS(3632), 1, + [57440] = 2, + ACTIONS(3671), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57326] = 2, - ACTIONS(3634), 1, + [57448] = 2, + ACTIONS(3673), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57334] = 2, - ACTIONS(3636), 1, + [57456] = 2, + ACTIONS(3675), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57342] = 2, - ACTIONS(3638), 1, - anon_sym_using, + [57464] = 2, + ACTIONS(3645), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57350] = 2, - ACTIONS(3640), 1, - sym_identifier, + [57472] = 2, + ACTIONS(3677), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57358] = 3, + [57480] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3642), 1, + ACTIONS(3679), 1, sym_regex_pattern, - [57368] = 2, - ACTIONS(3644), 1, - ts_builtin_sym_end, + [57490] = 2, + ACTIONS(3681), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57498] = 2, + ACTIONS(3387), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57376] = 3, + [57506] = 2, + ACTIONS(1999), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57514] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3646), 1, + ACTIONS(3683), 1, anon_sym_SLASH2, - [57386] = 2, - ACTIONS(3648), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [57394] = 2, - ACTIONS(2049), 1, - anon_sym_SEMI, + [57524] = 2, + ACTIONS(3685), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57402] = 2, - ACTIONS(3650), 1, - anon_sym_EQ, + [57532] = 2, + ACTIONS(3473), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57410] = 2, - ACTIONS(3652), 1, + [57540] = 2, + ACTIONS(3687), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57418] = 2, - ACTIONS(1985), 1, + [57548] = 2, + ACTIONS(2053), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57426] = 2, - ACTIONS(3654), 1, - anon_sym_as, - ACTIONS(5), 2, - sym_html_comment, + [57556] = 3, + ACTIONS(3), 1, sym_comment, - [57434] = 2, - ACTIONS(3656), 1, - anon_sym_meta, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [57442] = 2, - ACTIONS(2007), 1, + ACTIONS(3689), 1, + anon_sym_SLASH2, + [57566] = 2, + ACTIONS(2093), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57450] = 2, - ACTIONS(3658), 1, - anon_sym_COLON, + [57574] = 2, + ACTIONS(3691), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57458] = 2, - ACTIONS(3660), 1, - anon_sym_from, + [57582] = 2, + ACTIONS(3693), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57466] = 2, + [57590] = 2, ACTIONS(1866), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57474] = 2, - ACTIONS(3415), 1, - anon_sym_GT, + [57598] = 2, + ACTIONS(3695), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57482] = 2, - ACTIONS(3662), 1, - anon_sym_from, + [57606] = 2, + ACTIONS(2395), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57490] = 2, - ACTIONS(3664), 1, - anon_sym_function, + [57614] = 2, + ACTIONS(3697), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57498] = 2, - ACTIONS(3666), 1, + [57622] = 2, + ACTIONS(3699), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57506] = 2, - ACTIONS(3668), 1, + [57630] = 2, + ACTIONS(3701), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57514] = 2, - ACTIONS(2063), 1, + [57638] = 2, + ACTIONS(2003), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57522] = 2, - ACTIONS(3670), 1, + [57646] = 2, + ACTIONS(3703), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57530] = 2, - ACTIONS(1987), 1, - anon_sym_RPAREN, + [57654] = 2, + ACTIONS(2019), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57538] = 2, - ACTIONS(2117), 1, - anon_sym_RPAREN, + [57662] = 2, + ACTIONS(2025), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [57670] = 2, + ACTIONS(3705), 1, + anon_sym_target, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3672), 1, - anon_sym_SLASH2, - [57556] = 2, - ACTIONS(2153), 1, - anon_sym_in, + sym_comment, + [57678] = 2, + ACTIONS(3707), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57564] = 2, - ACTIONS(3674), 1, + [57686] = 2, + ACTIONS(3709), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57572] = 2, - ACTIONS(2077), 1, + [57694] = 2, + ACTIONS(2067), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57580] = 2, - ACTIONS(2107), 1, + [57702] = 2, + ACTIONS(2015), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57588] = 2, - ACTIONS(3676), 1, + [57710] = 2, + ACTIONS(3711), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57596] = 2, - ACTIONS(3500), 1, - anon_sym_GT, + [57718] = 2, + ACTIONS(3713), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57604] = 2, - ACTIONS(3163), 1, - anon_sym_EQ, + [57726] = 2, + ACTIONS(2011), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57612] = 2, - ACTIONS(3678), 1, - anon_sym_EQ_GT, + [57734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3715), 1, + anon_sym_SLASH2, + [57744] = 2, + ACTIONS(2091), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57620] = 2, - ACTIONS(2105), 1, + [57752] = 2, + ACTIONS(3705), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57760] = 2, + ACTIONS(2007), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57628] = 2, - ACTIONS(3680), 1, - anon_sym_EQ_GT, + [57768] = 2, + ACTIONS(2223), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57636] = 2, - ACTIONS(3682), 1, - anon_sym_EQ_GT, + [57776] = 2, + ACTIONS(1985), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57644] = 2, - ACTIONS(3684), 1, - anon_sym_EQ_GT, + [57784] = 2, + ACTIONS(3317), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57652] = 2, - ACTIONS(3686), 1, + [57792] = 2, + ACTIONS(3717), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [57800] = 2, + ACTIONS(2107), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3688), 1, - anon_sym_SLASH2, - [57670] = 2, - ACTIONS(3690), 1, + sym_comment, + [57808] = 2, + ACTIONS(3719), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57678] = 2, - ACTIONS(3692), 1, + [57816] = 2, + ACTIONS(3721), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57686] = 2, - ACTIONS(3694), 1, - sym_identifier, + [57824] = 2, + ACTIONS(3723), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57694] = 2, - ACTIONS(2037), 1, + [57832] = 2, + ACTIONS(3725), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57702] = 2, - ACTIONS(3524), 1, - anon_sym_EQ_GT, + [57840] = 2, + ACTIONS(3727), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57710] = 2, - ACTIONS(3356), 1, - anon_sym_RBRACE, + [57848] = 2, + ACTIONS(3729), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3696), 1, - sym_regex_pattern, - [57728] = 2, - ACTIONS(1902), 1, - anon_sym_in, + [57856] = 2, + ACTIONS(1989), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57736] = 2, - ACTIONS(2119), 1, + [57864] = 2, + ACTIONS(2095), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57744] = 3, + [57872] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3698), 1, + ACTIONS(3731), 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, + [57882] = 2, + ACTIONS(3733), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57770] = 2, - ACTIONS(2121), 1, - anon_sym_SEMI, + [57890] = 2, + ACTIONS(2097), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57778] = 2, - ACTIONS(3704), 1, - sym_identifier, + [57898] = 2, + ACTIONS(2109), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57786] = 2, - ACTIONS(3706), 1, + [57906] = 2, + ACTIONS(2101), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57794] = 2, - ACTIONS(2103), 1, - anon_sym_RPAREN, + [57914] = 2, + ACTIONS(3188), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57802] = 2, - ACTIONS(2113), 1, - anon_sym_COLON, + [57922] = 2, + ACTIONS(2558), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57810] = 2, - ACTIONS(3708), 1, - anon_sym_RPAREN, + [57930] = 2, + ACTIONS(1902), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57818] = 2, - ACTIONS(2047), 1, - anon_sym_RBRACK, + [57938] = 2, + ACTIONS(3735), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57826] = 2, - ACTIONS(2001), 1, - anon_sym_RPAREN, + [57946] = 2, + ACTIONS(2111), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57834] = 2, - ACTIONS(2123), 1, + [57954] = 2, + ACTIONS(2115), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57842] = 2, - ACTIONS(3710), 1, + [57962] = 2, + ACTIONS(2005), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57850] = 2, - ACTIONS(2025), 1, - anon_sym_RBRACE, + [57970] = 2, + ACTIONS(3737), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57858] = 2, - ACTIONS(3384), 1, - anon_sym_GT, + [57978] = 2, + ACTIONS(2099), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57866] = 2, - ACTIONS(2011), 1, - anon_sym_SEMI, + [57986] = 2, + ACTIONS(2029), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57874] = 2, - ACTIONS(3712), 1, + [57994] = 2, + ACTIONS(3739), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57882] = 2, - ACTIONS(3714), 1, - anon_sym_EQ_GT, + [58002] = 2, + ACTIONS(3741), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57890] = 2, - ACTIONS(3716), 1, - anon_sym_RPAREN, + [58010] = 2, + ACTIONS(2041), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57898] = 2, - ACTIONS(3718), 1, + [58018] = 2, + ACTIONS(3743), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57906] = 2, - ACTIONS(2125), 1, + [58026] = 2, + ACTIONS(2117), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57914] = 2, - ACTIONS(3720), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, + [58034] = 3, + ACTIONS(3), 1, sym_comment, - [57922] = 2, - ACTIONS(2115), 1, - anon_sym_RPAREN, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3745), 1, + anon_sym_SLASH2, + [58044] = 2, + ACTIONS(3747), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57930] = 2, - ACTIONS(3722), 1, - sym_identifier, + [58052] = 2, + ACTIONS(2027), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57938] = 2, - ACTIONS(3724), 1, - anon_sym_EQ_GT, + [58060] = 2, + ACTIONS(3749), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57946] = 2, - ACTIONS(3726), 1, + [58068] = 2, + ACTIONS(3751), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57954] = 2, - ACTIONS(2043), 1, - anon_sym_RBRACK, + [58076] = 2, + ACTIONS(3397), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57962] = 2, - ACTIONS(3728), 1, - anon_sym_EQ_GT, + [58084] = 2, + ACTIONS(3753), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57970] = 2, - ACTIONS(3730), 1, - sym_identifier, + [58092] = 2, + ACTIONS(3755), 1, + anon_sym_using, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57978] = 2, - ACTIONS(3382), 1, - anon_sym_GT, + [58100] = 2, + ACTIONS(1987), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57986] = 2, - ACTIONS(3540), 1, - anon_sym_from, + [58108] = 2, + ACTIONS(2001), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [57994] = 2, - ACTIONS(2013), 1, - anon_sym_RPAREN, + [58116] = 2, + ACTIONS(2185), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58002] = 2, - ACTIONS(3732), 1, - anon_sym_RPAREN, + [58124] = 2, + ACTIONS(3757), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58010] = 2, - ACTIONS(3656), 1, - anon_sym_target, + [58132] = 2, + ACTIONS(2035), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58018] = 2, - ACTIONS(3734), 1, - anon_sym_from, + [58140] = 2, + ACTIONS(2013), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58026] = 2, - ACTIONS(2023), 1, - anon_sym_RBRACK, + [58148] = 2, + ACTIONS(2037), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58034] = 2, - ACTIONS(2051), 1, + [58156] = 2, + ACTIONS(2113), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [58042] = 2, - ACTIONS(3736), 1, + [58164] = 2, + ACTIONS(3759), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -91312,128 +91471,128 @@ static const uint32_t ts_small_parse_table_map[] = { [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(857)] = 31306, + [SMALL_STATE(858)] = 31399, + [SMALL_STATE(859)] = 31492, + [SMALL_STATE(860)] = 31585, + [SMALL_STATE(861)] = 31678, + [SMALL_STATE(862)] = 31771, + [SMALL_STATE(863)] = 31864, + [SMALL_STATE(864)] = 31957, [SMALL_STATE(865)] = 32044, - [SMALL_STATE(866)] = 32131, - [SMALL_STATE(867)] = 32224, + [SMALL_STATE(866)] = 32137, + [SMALL_STATE(867)] = 32230, [SMALL_STATE(868)] = 32317, - [SMALL_STATE(869)] = 32404, + [SMALL_STATE(869)] = 32410, [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(872)] = 32677, + [SMALL_STATE(873)] = 32770, + [SMALL_STATE(874)] = 32863, + [SMALL_STATE(875)] = 32956, + [SMALL_STATE(876)] = 33049, + [SMALL_STATE(877)] = 33142, + [SMALL_STATE(878)] = 33235, + [SMALL_STATE(879)] = 33328, + [SMALL_STATE(880)] = 33421, + [SMALL_STATE(881)] = 33514, + [SMALL_STATE(882)] = 33607, + [SMALL_STATE(883)] = 33700, + [SMALL_STATE(884)] = 33793, + [SMALL_STATE(885)] = 33886, + [SMALL_STATE(886)] = 33979, [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(888)] = 34148, + [SMALL_STATE(889)] = 34194, + [SMALL_STATE(890)] = 34282, + [SMALL_STATE(891)] = 34328, + [SMALL_STATE(892)] = 34416, + [SMALL_STATE(893)] = 34504, + [SMALL_STATE(894)] = 34592, + [SMALL_STATE(895)] = 34680, + [SMALL_STATE(896)] = 34768, + [SMALL_STATE(897)] = 34856, + [SMALL_STATE(898)] = 34924, + [SMALL_STATE(899)] = 34982, + [SMALL_STATE(900)] = 35062, + [SMALL_STATE(901)] = 35144, + [SMALL_STATE(902)] = 35208, + [SMALL_STATE(903)] = 35284, + [SMALL_STATE(904)] = 35362, + [SMALL_STATE(905)] = 35442, + [SMALL_STATE(906)] = 35504, + [SMALL_STATE(907)] = 35562, + [SMALL_STATE(908)] = 35634, + [SMALL_STATE(909)] = 35718, + [SMALL_STATE(910)] = 35806, + [SMALL_STATE(911)] = 35894, + [SMALL_STATE(912)] = 35982, + [SMALL_STATE(913)] = 36070, + [SMALL_STATE(914)] = 36158, + [SMALL_STATE(915)] = 36246, + [SMALL_STATE(916)] = 36336, + [SMALL_STATE(917)] = 36424, + [SMALL_STATE(918)] = 36512, + [SMALL_STATE(919)] = 36558, + [SMALL_STATE(920)] = 36646, + [SMALL_STATE(921)] = 36734, + [SMALL_STATE(922)] = 36822, + [SMALL_STATE(923)] = 36910, + [SMALL_STATE(924)] = 36998, + [SMALL_STATE(925)] = 37086, + [SMALL_STATE(926)] = 37154, + [SMALL_STATE(927)] = 37242, + [SMALL_STATE(928)] = 37322, + [SMALL_STATE(929)] = 37404, + [SMALL_STATE(930)] = 37468, + [SMALL_STATE(931)] = 37544, + [SMALL_STATE(932)] = 37622, + [SMALL_STATE(933)] = 37702, + [SMALL_STATE(934)] = 37764, + [SMALL_STATE(935)] = 37822, + [SMALL_STATE(936)] = 37894, + [SMALL_STATE(937)] = 37978, + [SMALL_STATE(938)] = 38066, + [SMALL_STATE(939)] = 38154, + [SMALL_STATE(940)] = 38242, + [SMALL_STATE(941)] = 38330, + [SMALL_STATE(942)] = 38418, + [SMALL_STATE(943)] = 38506, + [SMALL_STATE(944)] = 38594, + [SMALL_STATE(945)] = 38682, + [SMALL_STATE(946)] = 38770, + [SMALL_STATE(947)] = 38858, + [SMALL_STATE(948)] = 38946, + [SMALL_STATE(949)] = 39014, + [SMALL_STATE(950)] = 39072, + [SMALL_STATE(951)] = 39152, + [SMALL_STATE(952)] = 39216, + [SMALL_STATE(953)] = 39292, + [SMALL_STATE(954)] = 39370, + [SMALL_STATE(955)] = 39450, + [SMALL_STATE(956)] = 39512, + [SMALL_STATE(957)] = 39570, + [SMALL_STATE(958)] = 39642, + [SMALL_STATE(959)] = 39726, + [SMALL_STATE(960)] = 39814, + [SMALL_STATE(961)] = 39902, + [SMALL_STATE(962)] = 39990, + [SMALL_STATE(963)] = 40078, + [SMALL_STATE(964)] = 40166, + [SMALL_STATE(965)] = 40254, + [SMALL_STATE(966)] = 40304, + [SMALL_STATE(967)] = 40392, [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(974)] = 40966, + [SMALL_STATE(975)] = 41053, + [SMALL_STATE(976)] = 41140, + [SMALL_STATE(977)] = 41227, + [SMALL_STATE(978)] = 41314, [SMALL_STATE(979)] = 41401, [SMALL_STATE(980)] = 41485, [SMALL_STATE(981)] = 41569, @@ -91441,140 +91600,140 @@ static const uint32_t ts_small_parse_table_map[] = { [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(986)] = 41922, + [SMALL_STATE(987)] = 41980, + [SMALL_STATE(988)] = 42052, + [SMALL_STATE(989)] = 42124, [SMALL_STATE(990)] = 42182, [SMALL_STATE(991)] = 42254, [SMALL_STATE(992)] = 42326, [SMALL_STATE(993)] = 42379, - [SMALL_STATE(994)] = 42438, + [SMALL_STATE(994)] = 42436, [SMALL_STATE(995)] = 42495, [SMALL_STATE(996)] = 42554, [SMALL_STATE(997)] = 42611, [SMALL_STATE(998)] = 42670, - [SMALL_STATE(999)] = 42727, + [SMALL_STATE(999)] = 42729, [SMALL_STATE(1000)] = 42786, [SMALL_STATE(1001)] = 42843, [SMALL_STATE(1002)] = 42900, [SMALL_STATE(1003)] = 42959, - [SMALL_STATE(1004)] = 43018, + [SMALL_STATE(1004)] = 43016, [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(1010)] = 43335, [SMALL_STATE(1011)] = 43389, [SMALL_STATE(1012)] = 43441, [SMALL_STATE(1013)] = 43492, - [SMALL_STATE(1014)] = 43545, - [SMALL_STATE(1015)] = 43606, + [SMALL_STATE(1014)] = 43543, + [SMALL_STATE(1015)] = 43596, [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(1020)] = 43842, + [SMALL_STATE(1021)] = 43890, + [SMALL_STATE(1022)] = 43934, + [SMALL_STATE(1023)] = 43980, + [SMALL_STATE(1024)] = 44036, + [SMALL_STATE(1025)] = 44080, + [SMALL_STATE(1026)] = 44128, + [SMALL_STATE(1027)] = 44174, [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(1030)] = 44322, + [SMALL_STATE(1031)] = 44363, + [SMALL_STATE(1032)] = 44402, + [SMALL_STATE(1033)] = 44441, + [SMALL_STATE(1034)] = 44480, + [SMALL_STATE(1035)] = 44519, + [SMALL_STATE(1036)] = 44554, [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(1039)] = 44649, + [SMALL_STATE(1040)] = 44677, + [SMALL_STATE(1041)] = 44705, + [SMALL_STATE(1042)] = 44735, + [SMALL_STATE(1043)] = 44763, + [SMALL_STATE(1044)] = 44791, + [SMALL_STATE(1045)] = 44819, + [SMALL_STATE(1046)] = 44847, + [SMALL_STATE(1047)] = 44875, + [SMALL_STATE(1048)] = 44903, + [SMALL_STATE(1049)] = 44931, + [SMALL_STATE(1050)] = 44961, + [SMALL_STATE(1051)] = 44989, + [SMALL_STATE(1052)] = 45023, + [SMALL_STATE(1053)] = 45051, + [SMALL_STATE(1054)] = 45079, + [SMALL_STATE(1055)] = 45107, + [SMALL_STATE(1056)] = 45135, + [SMALL_STATE(1057)] = 45163, + [SMALL_STATE(1058)] = 45191, + [SMALL_STATE(1059)] = 45219, [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(1064)] = 45403, + [SMALL_STATE(1065)] = 45431, + [SMALL_STATE(1066)] = 45459, + [SMALL_STATE(1067)] = 45487, [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(1072)] = 45626, + [SMALL_STATE(1073)] = 45653, + [SMALL_STATE(1074)] = 45694, + [SMALL_STATE(1075)] = 45733, + [SMALL_STATE(1076)] = 45760, + [SMALL_STATE(1077)] = 45803, + [SMALL_STATE(1078)] = 45830, + [SMALL_STATE(1079)] = 45857, + [SMALL_STATE(1080)] = 45886, + [SMALL_STATE(1081)] = 45927, + [SMALL_STATE(1082)] = 45972, + [SMALL_STATE(1083)] = 45999, + [SMALL_STATE(1084)] = 46042, + [SMALL_STATE(1085)] = 46085, [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(1088)] = 46190, + [SMALL_STATE(1089)] = 46216, + [SMALL_STATE(1090)] = 46256, + [SMALL_STATE(1091)] = 46282, + [SMALL_STATE(1092)] = 46318, + [SMALL_STATE(1093)] = 46354, + [SMALL_STATE(1094)] = 46390, + [SMALL_STATE(1095)] = 46426, + [SMALL_STATE(1096)] = 46462, + [SMALL_STATE(1097)] = 46498, + [SMALL_STATE(1098)] = 46534, + [SMALL_STATE(1099)] = 46570, + [SMALL_STATE(1100)] = 46606, + [SMALL_STATE(1101)] = 46642, + [SMALL_STATE(1102)] = 46668, + [SMALL_STATE(1103)] = 46704, + [SMALL_STATE(1104)] = 46740, + [SMALL_STATE(1105)] = 46766, + [SMALL_STATE(1106)] = 46792, + [SMALL_STATE(1107)] = 46834, + [SMALL_STATE(1108)] = 46870, + [SMALL_STATE(1109)] = 46906, + [SMALL_STATE(1110)] = 46946, + [SMALL_STATE(1111)] = 46982, + [SMALL_STATE(1112)] = 47024, + [SMALL_STATE(1113)] = 47060, + [SMALL_STATE(1114)] = 47096, + [SMALL_STATE(1115)] = 47132, + [SMALL_STATE(1116)] = 47168, + [SMALL_STATE(1117)] = 47204, + [SMALL_STATE(1118)] = 47240, + [SMALL_STATE(1119)] = 47276, [SMALL_STATE(1120)] = 47312, [SMALL_STATE(1121)] = 47345, [SMALL_STATE(1122)] = 47378, @@ -91600,731 +91759,734 @@ static const uint32_t ts_small_parse_table_map[] = { [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, + [SMALL_STATE(1145)] = 48072, + [SMALL_STATE(1146)] = 48106, + [SMALL_STATE(1147)] = 48140, + [SMALL_STATE(1148)] = 48174, + [SMALL_STATE(1149)] = 48208, + [SMALL_STATE(1150)] = 48242, + [SMALL_STATE(1151)] = 48276, + [SMALL_STATE(1152)] = 48310, + [SMALL_STATE(1153)] = 48347, + [SMALL_STATE(1154)] = 48378, + [SMALL_STATE(1155)] = 48414, + [SMALL_STATE(1156)] = 48450, + [SMALL_STATE(1157)] = 48486, + [SMALL_STATE(1158)] = 48522, + [SMALL_STATE(1159)] = 48555, + [SMALL_STATE(1160)] = 48588, + [SMALL_STATE(1161)] = 48621, + [SMALL_STATE(1162)] = 48654, + [SMALL_STATE(1163)] = 48687, + [SMALL_STATE(1164)] = 48720, + [SMALL_STATE(1165)] = 48753, + [SMALL_STATE(1166)] = 48786, + [SMALL_STATE(1167)] = 48816, + [SMALL_STATE(1168)] = 48846, + [SMALL_STATE(1169)] = 48876, + [SMALL_STATE(1170)] = 48904, + [SMALL_STATE(1171)] = 48934, + [SMALL_STATE(1172)] = 48964, + [SMALL_STATE(1173)] = 48994, + [SMALL_STATE(1174)] = 49024, + [SMALL_STATE(1175)] = 49054, + [SMALL_STATE(1176)] = 49084, + [SMALL_STATE(1177)] = 49114, + [SMALL_STATE(1178)] = 49144, + [SMALL_STATE(1179)] = 49174, + [SMALL_STATE(1180)] = 49204, + [SMALL_STATE(1181)] = 49234, + [SMALL_STATE(1182)] = 49264, + [SMALL_STATE(1183)] = 49294, + [SMALL_STATE(1184)] = 49324, + [SMALL_STATE(1185)] = 49354, + [SMALL_STATE(1186)] = 49384, + [SMALL_STATE(1187)] = 49410, + [SMALL_STATE(1188)] = 49438, + [SMALL_STATE(1189)] = 49464, + [SMALL_STATE(1190)] = 49494, + [SMALL_STATE(1191)] = 49524, + [SMALL_STATE(1192)] = 49549, + [SMALL_STATE(1193)] = 49574, + [SMALL_STATE(1194)] = 49599, + [SMALL_STATE(1195)] = 49624, + [SMALL_STATE(1196)] = 49649, + [SMALL_STATE(1197)] = 49674, + [SMALL_STATE(1198)] = 49699, + [SMALL_STATE(1199)] = 49726, + [SMALL_STATE(1200)] = 49751, + [SMALL_STATE(1201)] = 49776, + [SMALL_STATE(1202)] = 49803, + [SMALL_STATE(1203)] = 49827, + [SMALL_STATE(1204)] = 49849, + [SMALL_STATE(1205)] = 49873, + [SMALL_STATE(1206)] = 49893, + [SMALL_STATE(1207)] = 49915, + [SMALL_STATE(1208)] = 49937, + [SMALL_STATE(1209)] = 49951, + [SMALL_STATE(1210)] = 49973, + [SMALL_STATE(1211)] = 49997, + [SMALL_STATE(1212)] = 50021, + [SMALL_STATE(1213)] = 50041, + [SMALL_STATE(1214)] = 50059, + [SMALL_STATE(1215)] = 50073, + [SMALL_STATE(1216)] = 50093, + [SMALL_STATE(1217)] = 50115, + [SMALL_STATE(1218)] = 50137, + [SMALL_STATE(1219)] = 50161, + [SMALL_STATE(1220)] = 50185, + [SMALL_STATE(1221)] = 50209, + [SMALL_STATE(1222)] = 50223, + [SMALL_STATE(1223)] = 50237, + [SMALL_STATE(1224)] = 50251, + [SMALL_STATE(1225)] = 50269, + [SMALL_STATE(1226)] = 50284, + [SMALL_STATE(1227)] = 50307, + [SMALL_STATE(1228)] = 50330, + [SMALL_STATE(1229)] = 50345, + [SMALL_STATE(1230)] = 50366, + [SMALL_STATE(1231)] = 50379, + [SMALL_STATE(1232)] = 50394, + [SMALL_STATE(1233)] = 50407, + [SMALL_STATE(1234)] = 50426, + [SMALL_STATE(1235)] = 50445, + [SMALL_STATE(1236)] = 50462, + [SMALL_STATE(1237)] = 50475, + [SMALL_STATE(1238)] = 50494, + [SMALL_STATE(1239)] = 50507, + [SMALL_STATE(1240)] = 50522, + [SMALL_STATE(1241)] = 50541, + [SMALL_STATE(1242)] = 50554, + [SMALL_STATE(1243)] = 50569, + [SMALL_STATE(1244)] = 50584, + [SMALL_STATE(1245)] = 50599, + [SMALL_STATE(1246)] = 50618, + [SMALL_STATE(1247)] = 50633, + [SMALL_STATE(1248)] = 50648, + [SMALL_STATE(1249)] = 50669, + [SMALL_STATE(1250)] = 50684, + [SMALL_STATE(1251)] = 50703, + [SMALL_STATE(1252)] = 50726, + [SMALL_STATE(1253)] = 50739, + [SMALL_STATE(1254)] = 50758, + [SMALL_STATE(1255)] = 50779, + [SMALL_STATE(1256)] = 50798, + [SMALL_STATE(1257)] = 50811, + [SMALL_STATE(1258)] = 50834, + [SMALL_STATE(1259)] = 50857, + [SMALL_STATE(1260)] = 50872, + [SMALL_STATE(1261)] = 50887, + [SMALL_STATE(1262)] = 50902, + [SMALL_STATE(1263)] = 50921, + [SMALL_STATE(1264)] = 50944, + [SMALL_STATE(1265)] = 50957, + [SMALL_STATE(1266)] = 50972, + [SMALL_STATE(1267)] = 50987, + [SMALL_STATE(1268)] = 51006, + [SMALL_STATE(1269)] = 51021, + [SMALL_STATE(1270)] = 51036, + [SMALL_STATE(1271)] = 51057, + [SMALL_STATE(1272)] = 51076, + [SMALL_STATE(1273)] = 51089, + [SMALL_STATE(1274)] = 51102, + [SMALL_STATE(1275)] = 51117, + [SMALL_STATE(1276)] = 51132, + [SMALL_STATE(1277)] = 51147, + [SMALL_STATE(1278)] = 51167, + [SMALL_STATE(1279)] = 51187, + [SMALL_STATE(1280)] = 51203, + [SMALL_STATE(1281)] = 51217, + [SMALL_STATE(1282)] = 51233, + [SMALL_STATE(1283)] = 51249, + [SMALL_STATE(1284)] = 51265, + [SMALL_STATE(1285)] = 51285, + [SMALL_STATE(1286)] = 51305, + [SMALL_STATE(1287)] = 51319, + [SMALL_STATE(1288)] = 51333, + [SMALL_STATE(1289)] = 51353, + [SMALL_STATE(1290)] = 51373, + [SMALL_STATE(1291)] = 51393, + [SMALL_STATE(1292)] = 51409, + [SMALL_STATE(1293)] = 51429, + [SMALL_STATE(1294)] = 51443, + [SMALL_STATE(1295)] = 51457, + [SMALL_STATE(1296)] = 51477, + [SMALL_STATE(1297)] = 51497, + [SMALL_STATE(1298)] = 51511, + [SMALL_STATE(1299)] = 51531, + [SMALL_STATE(1300)] = 51545, + [SMALL_STATE(1301)] = 51559, + [SMALL_STATE(1302)] = 51571, + [SMALL_STATE(1303)] = 51591, + [SMALL_STATE(1304)] = 51605, + [SMALL_STATE(1305)] = 51625, + [SMALL_STATE(1306)] = 51639, + [SMALL_STATE(1307)] = 51653, + [SMALL_STATE(1308)] = 51667, + [SMALL_STATE(1309)] = 51681, + [SMALL_STATE(1310)] = 51695, + [SMALL_STATE(1311)] = 51709, + [SMALL_STATE(1312)] = 51723, + [SMALL_STATE(1313)] = 51743, + [SMALL_STATE(1314)] = 51763, + [SMALL_STATE(1315)] = 51783, + [SMALL_STATE(1316)] = 51803, + [SMALL_STATE(1317)] = 51823, + [SMALL_STATE(1318)] = 51843, + [SMALL_STATE(1319)] = 51863, + [SMALL_STATE(1320)] = 51877, + [SMALL_STATE(1321)] = 51891, + [SMALL_STATE(1322)] = 51903, + [SMALL_STATE(1323)] = 51923, + [SMALL_STATE(1324)] = 51941, + [SMALL_STATE(1325)] = 51955, + [SMALL_STATE(1326)] = 51975, + [SMALL_STATE(1327)] = 51987, + [SMALL_STATE(1328)] = 52004, + [SMALL_STATE(1329)] = 52021, + [SMALL_STATE(1330)] = 52038, + [SMALL_STATE(1331)] = 52055, + [SMALL_STATE(1332)] = 52072, + [SMALL_STATE(1333)] = 52089, + [SMALL_STATE(1334)] = 52106, + [SMALL_STATE(1335)] = 52123, + [SMALL_STATE(1336)] = 52140, + [SMALL_STATE(1337)] = 52155, + [SMALL_STATE(1338)] = 52172, + [SMALL_STATE(1339)] = 52189, + [SMALL_STATE(1340)] = 52206, + [SMALL_STATE(1341)] = 52217, + [SMALL_STATE(1342)] = 52234, + [SMALL_STATE(1343)] = 52251, + [SMALL_STATE(1344)] = 52268, + [SMALL_STATE(1345)] = 52285, + [SMALL_STATE(1346)] = 52300, + [SMALL_STATE(1347)] = 52317, + [SMALL_STATE(1348)] = 52334, + [SMALL_STATE(1349)] = 52351, + [SMALL_STATE(1350)] = 52366, + [SMALL_STATE(1351)] = 52383, + [SMALL_STATE(1352)] = 52398, + [SMALL_STATE(1353)] = 52415, + [SMALL_STATE(1354)] = 52426, + [SMALL_STATE(1355)] = 52443, + [SMALL_STATE(1356)] = 52458, + [SMALL_STATE(1357)] = 52475, + [SMALL_STATE(1358)] = 52492, + [SMALL_STATE(1359)] = 52507, + [SMALL_STATE(1360)] = 52524, + [SMALL_STATE(1361)] = 52541, + [SMALL_STATE(1362)] = 52556, + [SMALL_STATE(1363)] = 52573, + [SMALL_STATE(1364)] = 52584, + [SMALL_STATE(1365)] = 52599, + [SMALL_STATE(1366)] = 52616, + [SMALL_STATE(1367)] = 52633, + [SMALL_STATE(1368)] = 52648, + [SMALL_STATE(1369)] = 52663, + [SMALL_STATE(1370)] = 52680, + [SMALL_STATE(1371)] = 52697, + [SMALL_STATE(1372)] = 52714, + [SMALL_STATE(1373)] = 52729, + [SMALL_STATE(1374)] = 52746, + [SMALL_STATE(1375)] = 52763, + [SMALL_STATE(1376)] = 52778, + [SMALL_STATE(1377)] = 52795, + [SMALL_STATE(1378)] = 52812, + [SMALL_STATE(1379)] = 52823, + [SMALL_STATE(1380)] = 52840, + [SMALL_STATE(1381)] = 52853, + [SMALL_STATE(1382)] = 52868, + [SMALL_STATE(1383)] = 52883, + [SMALL_STATE(1384)] = 52900, + [SMALL_STATE(1385)] = 52911, + [SMALL_STATE(1386)] = 52926, + [SMALL_STATE(1387)] = 52943, + [SMALL_STATE(1388)] = 52960, + [SMALL_STATE(1389)] = 52973, + [SMALL_STATE(1390)] = 52990, + [SMALL_STATE(1391)] = 53005, + [SMALL_STATE(1392)] = 53022, + [SMALL_STATE(1393)] = 53037, + [SMALL_STATE(1394)] = 53054, + [SMALL_STATE(1395)] = 53071, + [SMALL_STATE(1396)] = 53086, + [SMALL_STATE(1397)] = 53103, + [SMALL_STATE(1398)] = 53114, + [SMALL_STATE(1399)] = 53131, + [SMALL_STATE(1400)] = 53148, + [SMALL_STATE(1401)] = 53163, + [SMALL_STATE(1402)] = 53178, + [SMALL_STATE(1403)] = 53192, + [SMALL_STATE(1404)] = 53204, + [SMALL_STATE(1405)] = 53218, + [SMALL_STATE(1406)] = 53228, + [SMALL_STATE(1407)] = 53240, + [SMALL_STATE(1408)] = 53254, + [SMALL_STATE(1409)] = 53266, + [SMALL_STATE(1410)] = 53280, + [SMALL_STATE(1411)] = 53294, + [SMALL_STATE(1412)] = 53308, + [SMALL_STATE(1413)] = 53322, + [SMALL_STATE(1414)] = 53336, + [SMALL_STATE(1415)] = 53348, + [SMALL_STATE(1416)] = 53362, + [SMALL_STATE(1417)] = 53376, + [SMALL_STATE(1418)] = 53390, + [SMALL_STATE(1419)] = 53404, + [SMALL_STATE(1420)] = 53418, + [SMALL_STATE(1421)] = 53432, + [SMALL_STATE(1422)] = 53446, + [SMALL_STATE(1423)] = 53460, + [SMALL_STATE(1424)] = 53474, + [SMALL_STATE(1425)] = 53488, + [SMALL_STATE(1426)] = 53502, + [SMALL_STATE(1427)] = 53516, + [SMALL_STATE(1428)] = 53530, + [SMALL_STATE(1429)] = 53544, + [SMALL_STATE(1430)] = 53558, + [SMALL_STATE(1431)] = 53572, + [SMALL_STATE(1432)] = 53586, + [SMALL_STATE(1433)] = 53596, + [SMALL_STATE(1434)] = 53610, + [SMALL_STATE(1435)] = 53624, + [SMALL_STATE(1436)] = 53638, + [SMALL_STATE(1437)] = 53652, + [SMALL_STATE(1438)] = 53666, + [SMALL_STATE(1439)] = 53680, + [SMALL_STATE(1440)] = 53690, + [SMALL_STATE(1441)] = 53704, + [SMALL_STATE(1442)] = 53716, + [SMALL_STATE(1443)] = 53730, + [SMALL_STATE(1444)] = 53740, + [SMALL_STATE(1445)] = 53752, + [SMALL_STATE(1446)] = 53762, + [SMALL_STATE(1447)] = 53776, + [SMALL_STATE(1448)] = 53790, + [SMALL_STATE(1449)] = 53804, + [SMALL_STATE(1450)] = 53818, + [SMALL_STATE(1451)] = 53832, + [SMALL_STATE(1452)] = 53846, + [SMALL_STATE(1453)] = 53860, + [SMALL_STATE(1454)] = 53874, + [SMALL_STATE(1455)] = 53888, + [SMALL_STATE(1456)] = 53902, + [SMALL_STATE(1457)] = 53916, + [SMALL_STATE(1458)] = 53930, + [SMALL_STATE(1459)] = 53944, + [SMALL_STATE(1460)] = 53958, + [SMALL_STATE(1461)] = 53970, + [SMALL_STATE(1462)] = 53984, + [SMALL_STATE(1463)] = 53994, + [SMALL_STATE(1464)] = 54008, + [SMALL_STATE(1465)] = 54022, + [SMALL_STATE(1466)] = 54036, + [SMALL_STATE(1467)] = 54050, + [SMALL_STATE(1468)] = 54064, + [SMALL_STATE(1469)] = 54078, + [SMALL_STATE(1470)] = 54088, + [SMALL_STATE(1471)] = 54102, + [SMALL_STATE(1472)] = 54116, + [SMALL_STATE(1473)] = 54130, + [SMALL_STATE(1474)] = 54144, + [SMALL_STATE(1475)] = 54158, + [SMALL_STATE(1476)] = 54172, + [SMALL_STATE(1477)] = 54186, + [SMALL_STATE(1478)] = 54196, + [SMALL_STATE(1479)] = 54210, + [SMALL_STATE(1480)] = 54222, + [SMALL_STATE(1481)] = 54234, + [SMALL_STATE(1482)] = 54248, + [SMALL_STATE(1483)] = 54262, + [SMALL_STATE(1484)] = 54276, + [SMALL_STATE(1485)] = 54290, + [SMALL_STATE(1486)] = 54304, + [SMALL_STATE(1487)] = 54318, + [SMALL_STATE(1488)] = 54332, + [SMALL_STATE(1489)] = 54346, + [SMALL_STATE(1490)] = 54358, + [SMALL_STATE(1491)] = 54368, + [SMALL_STATE(1492)] = 54382, + [SMALL_STATE(1493)] = 54394, + [SMALL_STATE(1494)] = 54408, + [SMALL_STATE(1495)] = 54420, + [SMALL_STATE(1496)] = 54434, + [SMALL_STATE(1497)] = 54448, + [SMALL_STATE(1498)] = 54460, + [SMALL_STATE(1499)] = 54472, + [SMALL_STATE(1500)] = 54484, + [SMALL_STATE(1501)] = 54498, + [SMALL_STATE(1502)] = 54510, + [SMALL_STATE(1503)] = 54524, + [SMALL_STATE(1504)] = 54535, + [SMALL_STATE(1505)] = 54546, + [SMALL_STATE(1506)] = 54557, + [SMALL_STATE(1507)] = 54568, + [SMALL_STATE(1508)] = 54579, + [SMALL_STATE(1509)] = 54590, + [SMALL_STATE(1510)] = 54599, + [SMALL_STATE(1511)] = 54610, + [SMALL_STATE(1512)] = 54619, + [SMALL_STATE(1513)] = 54630, + [SMALL_STATE(1514)] = 54641, + [SMALL_STATE(1515)] = 54650, + [SMALL_STATE(1516)] = 54661, + [SMALL_STATE(1517)] = 54670, + [SMALL_STATE(1518)] = 54681, + [SMALL_STATE(1519)] = 54692, + [SMALL_STATE(1520)] = 54701, + [SMALL_STATE(1521)] = 54712, + [SMALL_STATE(1522)] = 54723, + [SMALL_STATE(1523)] = 54734, + [SMALL_STATE(1524)] = 54743, + [SMALL_STATE(1525)] = 54754, + [SMALL_STATE(1526)] = 54765, + [SMALL_STATE(1527)] = 54774, + [SMALL_STATE(1528)] = 54785, + [SMALL_STATE(1529)] = 54796, + [SMALL_STATE(1530)] = 54807, + [SMALL_STATE(1531)] = 54818, + [SMALL_STATE(1532)] = 54829, + [SMALL_STATE(1533)] = 54840, + [SMALL_STATE(1534)] = 54851, + [SMALL_STATE(1535)] = 54862, + [SMALL_STATE(1536)] = 54873, + [SMALL_STATE(1537)] = 54884, + [SMALL_STATE(1538)] = 54893, + [SMALL_STATE(1539)] = 54902, + [SMALL_STATE(1540)] = 54913, + [SMALL_STATE(1541)] = 54922, + [SMALL_STATE(1542)] = 54931, + [SMALL_STATE(1543)] = 54942, + [SMALL_STATE(1544)] = 54953, + [SMALL_STATE(1545)] = 54964, + [SMALL_STATE(1546)] = 54975, + [SMALL_STATE(1547)] = 54984, + [SMALL_STATE(1548)] = 54995, + [SMALL_STATE(1549)] = 55004, + [SMALL_STATE(1550)] = 55015, + [SMALL_STATE(1551)] = 55026, + [SMALL_STATE(1552)] = 55037, + [SMALL_STATE(1553)] = 55048, + [SMALL_STATE(1554)] = 55059, + [SMALL_STATE(1555)] = 55068, + [SMALL_STATE(1556)] = 55079, + [SMALL_STATE(1557)] = 55090, + [SMALL_STATE(1558)] = 55101, + [SMALL_STATE(1559)] = 55112, + [SMALL_STATE(1560)] = 55123, + [SMALL_STATE(1561)] = 55134, + [SMALL_STATE(1562)] = 55145, + [SMALL_STATE(1563)] = 55156, + [SMALL_STATE(1564)] = 55167, + [SMALL_STATE(1565)] = 55178, + [SMALL_STATE(1566)] = 55189, + [SMALL_STATE(1567)] = 55200, + [SMALL_STATE(1568)] = 55211, + [SMALL_STATE(1569)] = 55222, + [SMALL_STATE(1570)] = 55233, + [SMALL_STATE(1571)] = 55244, + [SMALL_STATE(1572)] = 55255, + [SMALL_STATE(1573)] = 55266, + [SMALL_STATE(1574)] = 55277, + [SMALL_STATE(1575)] = 55288, + [SMALL_STATE(1576)] = 55299, + [SMALL_STATE(1577)] = 55310, + [SMALL_STATE(1578)] = 55321, + [SMALL_STATE(1579)] = 55332, + [SMALL_STATE(1580)] = 55343, + [SMALL_STATE(1581)] = 55354, + [SMALL_STATE(1582)] = 55365, + [SMALL_STATE(1583)] = 55376, + [SMALL_STATE(1584)] = 55387, + [SMALL_STATE(1585)] = 55398, + [SMALL_STATE(1586)] = 55409, + [SMALL_STATE(1587)] = 55420, + [SMALL_STATE(1588)] = 55431, + [SMALL_STATE(1589)] = 55442, + [SMALL_STATE(1590)] = 55453, + [SMALL_STATE(1591)] = 55462, + [SMALL_STATE(1592)] = 55473, + [SMALL_STATE(1593)] = 55484, + [SMALL_STATE(1594)] = 55495, + [SMALL_STATE(1595)] = 55506, + [SMALL_STATE(1596)] = 55517, + [SMALL_STATE(1597)] = 55528, + [SMALL_STATE(1598)] = 55539, + [SMALL_STATE(1599)] = 55550, + [SMALL_STATE(1600)] = 55561, + [SMALL_STATE(1601)] = 55572, + [SMALL_STATE(1602)] = 55583, + [SMALL_STATE(1603)] = 55594, + [SMALL_STATE(1604)] = 55605, + [SMALL_STATE(1605)] = 55614, + [SMALL_STATE(1606)] = 55625, + [SMALL_STATE(1607)] = 55636, + [SMALL_STATE(1608)] = 55647, + [SMALL_STATE(1609)] = 55658, + [SMALL_STATE(1610)] = 55669, + [SMALL_STATE(1611)] = 55680, + [SMALL_STATE(1612)] = 55691, + [SMALL_STATE(1613)] = 55702, + [SMALL_STATE(1614)] = 55713, + [SMALL_STATE(1615)] = 55724, + [SMALL_STATE(1616)] = 55735, + [SMALL_STATE(1617)] = 55746, + [SMALL_STATE(1618)] = 55755, + [SMALL_STATE(1619)] = 55766, + [SMALL_STATE(1620)] = 55777, + [SMALL_STATE(1621)] = 55786, + [SMALL_STATE(1622)] = 55795, + [SMALL_STATE(1623)] = 55806, + [SMALL_STATE(1624)] = 55817, + [SMALL_STATE(1625)] = 55828, + [SMALL_STATE(1626)] = 55839, + [SMALL_STATE(1627)] = 55850, + [SMALL_STATE(1628)] = 55861, + [SMALL_STATE(1629)] = 55872, + [SMALL_STATE(1630)] = 55881, + [SMALL_STATE(1631)] = 55892, + [SMALL_STATE(1632)] = 55903, + [SMALL_STATE(1633)] = 55914, + [SMALL_STATE(1634)] = 55925, + [SMALL_STATE(1635)] = 55936, + [SMALL_STATE(1636)] = 55947, + [SMALL_STATE(1637)] = 55956, + [SMALL_STATE(1638)] = 55967, + [SMALL_STATE(1639)] = 55978, + [SMALL_STATE(1640)] = 55989, + [SMALL_STATE(1641)] = 56000, + [SMALL_STATE(1642)] = 56011, + [SMALL_STATE(1643)] = 56022, + [SMALL_STATE(1644)] = 56033, + [SMALL_STATE(1645)] = 56044, + [SMALL_STATE(1646)] = 56053, + [SMALL_STATE(1647)] = 56062, + [SMALL_STATE(1648)] = 56073, + [SMALL_STATE(1649)] = 56082, + [SMALL_STATE(1650)] = 56093, + [SMALL_STATE(1651)] = 56104, + [SMALL_STATE(1652)] = 56115, + [SMALL_STATE(1653)] = 56126, + [SMALL_STATE(1654)] = 56137, + [SMALL_STATE(1655)] = 56146, + [SMALL_STATE(1656)] = 56157, + [SMALL_STATE(1657)] = 56168, + [SMALL_STATE(1658)] = 56179, + [SMALL_STATE(1659)] = 56190, + [SMALL_STATE(1660)] = 56201, + [SMALL_STATE(1661)] = 56212, + [SMALL_STATE(1662)] = 56221, + [SMALL_STATE(1663)] = 56230, + [SMALL_STATE(1664)] = 56241, + [SMALL_STATE(1665)] = 56252, + [SMALL_STATE(1666)] = 56261, + [SMALL_STATE(1667)] = 56272, + [SMALL_STATE(1668)] = 56283, + [SMALL_STATE(1669)] = 56294, + [SMALL_STATE(1670)] = 56305, + [SMALL_STATE(1671)] = 56314, + [SMALL_STATE(1672)] = 56325, + [SMALL_STATE(1673)] = 56334, + [SMALL_STATE(1674)] = 56345, + [SMALL_STATE(1675)] = 56356, + [SMALL_STATE(1676)] = 56367, + [SMALL_STATE(1677)] = 56378, + [SMALL_STATE(1678)] = 56389, + [SMALL_STATE(1679)] = 56400, + [SMALL_STATE(1680)] = 56411, + [SMALL_STATE(1681)] = 56422, + [SMALL_STATE(1682)] = 56433, + [SMALL_STATE(1683)] = 56444, + [SMALL_STATE(1684)] = 56455, + [SMALL_STATE(1685)] = 56466, + [SMALL_STATE(1686)] = 56477, + [SMALL_STATE(1687)] = 56488, + [SMALL_STATE(1688)] = 56499, + [SMALL_STATE(1689)] = 56510, + [SMALL_STATE(1690)] = 56521, + [SMALL_STATE(1691)] = 56532, + [SMALL_STATE(1692)] = 56543, + [SMALL_STATE(1693)] = 56552, + [SMALL_STATE(1694)] = 56563, + [SMALL_STATE(1695)] = 56574, + [SMALL_STATE(1696)] = 56585, + [SMALL_STATE(1697)] = 56596, + [SMALL_STATE(1698)] = 56607, + [SMALL_STATE(1699)] = 56618, + [SMALL_STATE(1700)] = 56629, + [SMALL_STATE(1701)] = 56640, + [SMALL_STATE(1702)] = 56651, + [SMALL_STATE(1703)] = 56662, + [SMALL_STATE(1704)] = 56673, + [SMALL_STATE(1705)] = 56684, + [SMALL_STATE(1706)] = 56695, + [SMALL_STATE(1707)] = 56706, + [SMALL_STATE(1708)] = 56717, + [SMALL_STATE(1709)] = 56728, + [SMALL_STATE(1710)] = 56739, + [SMALL_STATE(1711)] = 56750, + [SMALL_STATE(1712)] = 56761, + [SMALL_STATE(1713)] = 56772, + [SMALL_STATE(1714)] = 56783, + [SMALL_STATE(1715)] = 56794, + [SMALL_STATE(1716)] = 56805, + [SMALL_STATE(1717)] = 56816, + [SMALL_STATE(1718)] = 56827, + [SMALL_STATE(1719)] = 56838, + [SMALL_STATE(1720)] = 56849, + [SMALL_STATE(1721)] = 56860, + [SMALL_STATE(1722)] = 56871, + [SMALL_STATE(1723)] = 56882, + [SMALL_STATE(1724)] = 56893, + [SMALL_STATE(1725)] = 56904, + [SMALL_STATE(1726)] = 56913, + [SMALL_STATE(1727)] = 56924, + [SMALL_STATE(1728)] = 56935, + [SMALL_STATE(1729)] = 56946, + [SMALL_STATE(1730)] = 56957, + [SMALL_STATE(1731)] = 56968, + [SMALL_STATE(1732)] = 56979, + [SMALL_STATE(1733)] = 56990, + [SMALL_STATE(1734)] = 57001, + [SMALL_STATE(1735)] = 57012, + [SMALL_STATE(1736)] = 57023, + [SMALL_STATE(1737)] = 57034, + [SMALL_STATE(1738)] = 57045, + [SMALL_STATE(1739)] = 57056, + [SMALL_STATE(1740)] = 57067, + [SMALL_STATE(1741)] = 57078, + [SMALL_STATE(1742)] = 57087, + [SMALL_STATE(1743)] = 57098, + [SMALL_STATE(1744)] = 57107, + [SMALL_STATE(1745)] = 57118, + [SMALL_STATE(1746)] = 57129, + [SMALL_STATE(1747)] = 57140, + [SMALL_STATE(1748)] = 57151, + [SMALL_STATE(1749)] = 57160, + [SMALL_STATE(1750)] = 57169, + [SMALL_STATE(1751)] = 57180, + [SMALL_STATE(1752)] = 57188, + [SMALL_STATE(1753)] = 57196, + [SMALL_STATE(1754)] = 57204, + [SMALL_STATE(1755)] = 57212, + [SMALL_STATE(1756)] = 57220, + [SMALL_STATE(1757)] = 57228, + [SMALL_STATE(1758)] = 57236, + [SMALL_STATE(1759)] = 57244, + [SMALL_STATE(1760)] = 57254, + [SMALL_STATE(1761)] = 57262, + [SMALL_STATE(1762)] = 57270, + [SMALL_STATE(1763)] = 57278, + [SMALL_STATE(1764)] = 57286, + [SMALL_STATE(1765)] = 57294, + [SMALL_STATE(1766)] = 57302, + [SMALL_STATE(1767)] = 57310, + [SMALL_STATE(1768)] = 57320, + [SMALL_STATE(1769)] = 57328, + [SMALL_STATE(1770)] = 57336, + [SMALL_STATE(1771)] = 57344, + [SMALL_STATE(1772)] = 57352, + [SMALL_STATE(1773)] = 57360, + [SMALL_STATE(1774)] = 57368, + [SMALL_STATE(1775)] = 57376, + [SMALL_STATE(1776)] = 57384, + [SMALL_STATE(1777)] = 57392, + [SMALL_STATE(1778)] = 57400, + [SMALL_STATE(1779)] = 57408, + [SMALL_STATE(1780)] = 57416, + [SMALL_STATE(1781)] = 57424, + [SMALL_STATE(1782)] = 57432, + [SMALL_STATE(1783)] = 57440, + [SMALL_STATE(1784)] = 57448, + [SMALL_STATE(1785)] = 57456, + [SMALL_STATE(1786)] = 57464, + [SMALL_STATE(1787)] = 57472, + [SMALL_STATE(1788)] = 57480, + [SMALL_STATE(1789)] = 57490, + [SMALL_STATE(1790)] = 57498, + [SMALL_STATE(1791)] = 57506, + [SMALL_STATE(1792)] = 57514, + [SMALL_STATE(1793)] = 57524, + [SMALL_STATE(1794)] = 57532, + [SMALL_STATE(1795)] = 57540, + [SMALL_STATE(1796)] = 57548, + [SMALL_STATE(1797)] = 57556, + [SMALL_STATE(1798)] = 57566, + [SMALL_STATE(1799)] = 57574, + [SMALL_STATE(1800)] = 57582, + [SMALL_STATE(1801)] = 57590, + [SMALL_STATE(1802)] = 57598, + [SMALL_STATE(1803)] = 57606, + [SMALL_STATE(1804)] = 57614, + [SMALL_STATE(1805)] = 57622, + [SMALL_STATE(1806)] = 57630, + [SMALL_STATE(1807)] = 57638, + [SMALL_STATE(1808)] = 57646, + [SMALL_STATE(1809)] = 57654, + [SMALL_STATE(1810)] = 57662, + [SMALL_STATE(1811)] = 57670, + [SMALL_STATE(1812)] = 57678, + [SMALL_STATE(1813)] = 57686, + [SMALL_STATE(1814)] = 57694, + [SMALL_STATE(1815)] = 57702, + [SMALL_STATE(1816)] = 57710, + [SMALL_STATE(1817)] = 57718, + [SMALL_STATE(1818)] = 57726, + [SMALL_STATE(1819)] = 57734, + [SMALL_STATE(1820)] = 57744, + [SMALL_STATE(1821)] = 57752, + [SMALL_STATE(1822)] = 57760, + [SMALL_STATE(1823)] = 57768, + [SMALL_STATE(1824)] = 57776, + [SMALL_STATE(1825)] = 57784, + [SMALL_STATE(1826)] = 57792, + [SMALL_STATE(1827)] = 57800, + [SMALL_STATE(1828)] = 57808, + [SMALL_STATE(1829)] = 57816, + [SMALL_STATE(1830)] = 57824, + [SMALL_STATE(1831)] = 57832, + [SMALL_STATE(1832)] = 57840, + [SMALL_STATE(1833)] = 57848, + [SMALL_STATE(1834)] = 57856, + [SMALL_STATE(1835)] = 57864, + [SMALL_STATE(1836)] = 57872, + [SMALL_STATE(1837)] = 57882, + [SMALL_STATE(1838)] = 57890, + [SMALL_STATE(1839)] = 57898, + [SMALL_STATE(1840)] = 57906, + [SMALL_STATE(1841)] = 57914, + [SMALL_STATE(1842)] = 57922, + [SMALL_STATE(1843)] = 57930, + [SMALL_STATE(1844)] = 57938, + [SMALL_STATE(1845)] = 57946, + [SMALL_STATE(1846)] = 57954, + [SMALL_STATE(1847)] = 57962, + [SMALL_STATE(1848)] = 57970, + [SMALL_STATE(1849)] = 57978, + [SMALL_STATE(1850)] = 57986, + [SMALL_STATE(1851)] = 57994, + [SMALL_STATE(1852)] = 58002, + [SMALL_STATE(1853)] = 58010, + [SMALL_STATE(1854)] = 58018, + [SMALL_STATE(1855)] = 58026, + [SMALL_STATE(1856)] = 58034, + [SMALL_STATE(1857)] = 58044, + [SMALL_STATE(1858)] = 58052, + [SMALL_STATE(1859)] = 58060, + [SMALL_STATE(1860)] = 58068, + [SMALL_STATE(1861)] = 58076, + [SMALL_STATE(1862)] = 58084, + [SMALL_STATE(1863)] = 58092, + [SMALL_STATE(1864)] = 58100, + [SMALL_STATE(1865)] = 58108, + [SMALL_STATE(1866)] = 58116, + [SMALL_STATE(1867)] = 58124, + [SMALL_STATE(1868)] = 58132, + [SMALL_STATE(1869)] = 58140, + [SMALL_STATE(1870)] = 58148, + [SMALL_STATE(1871)] = 58156, + [SMALL_STATE(1872)] = 58164, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -92337,49 +92499,49 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), [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), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), [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), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), [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), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), [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), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), @@ -92388,9 +92550,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), @@ -92415,68 +92577,68 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), [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), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1277), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), [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), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1767), [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), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1250), [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), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), [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), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), [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), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1635), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), [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), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), [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), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1529), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1497), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1629), [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), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1277), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1369), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), [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), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), [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), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1767), [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), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1250), [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), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), [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), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), [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), @@ -92489,34 +92651,34 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), [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), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1292), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), [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), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1759), [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), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1271), [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), [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), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), @@ -92527,7 +92689,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), [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), @@ -92537,8 +92699,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), [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), @@ -92548,7 +92710,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), [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), @@ -92563,24 +92725,24 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1836), [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), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), [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), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), [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), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), [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), @@ -92592,15 +92754,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1788), [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), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), [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), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(886), [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), @@ -92611,25 +92773,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), [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), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), [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), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), @@ -92700,7 +92862,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), @@ -92710,11 +92872,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), @@ -92722,53 +92884,53 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1636), [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), [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), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), [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), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), [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), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), [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), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), [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), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), [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), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), [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), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), @@ -92784,7 +92946,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), @@ -92794,7 +92956,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), @@ -92819,44 +92981,44 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1123), [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), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), [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), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), [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), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), [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), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), [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), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), [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), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), [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), @@ -92870,8 +93032,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), [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), @@ -92997,7 +93159,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), [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), @@ -93020,7 +93182,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), [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), @@ -93068,15 +93230,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), [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), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), [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), @@ -93192,15 +93354,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), [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), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), @@ -93260,23 +93422,23 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), [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), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), [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), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), @@ -93286,842 +93448,852 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), [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), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 57), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), [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), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(340), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), [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), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), [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), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1378), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1129), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(983), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(312), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1327), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1393), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1019), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1254), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1407), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1010), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1109), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1034), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), [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), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), [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), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), [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), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1547), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 18), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 19), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), [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), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 18), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), [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), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 100), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 100), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 77), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 77), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 108), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 108), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 84), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 84), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), SHIFT_REPEAT(1407), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 89), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 89), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 94), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 94), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 99), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 99), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 58), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 58), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 7), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 7), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), SHIFT_REPEAT(1078), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), [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), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), [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), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), [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), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), [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), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(1205), + [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(131), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(1205), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(252), [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), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 6), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 6), SHIFT(1646), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 19), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 65), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 65), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 86), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1237), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_lone_ampersand, 1, 0, 0), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_lone_ampersand, 1, 0, 0), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 33), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 33), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 67), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 36), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1258), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1258), + [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1390), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 69), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 23), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(249), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 24), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), [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), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 34), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 34), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(319), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1347), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1348), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 19), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string_lone_ampersand, 1, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string_lone_ampersand, 1, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1195), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 57), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), [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), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 21), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [3494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(992), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 6), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 6), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 83), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 68), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 83), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 85), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 87), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 98), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [3635] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), }; enum ts_external_scanner_symbol_identifiers { @@ -94265,4 +94437,4 @@ TS_PUBLIC const TSLanguage *tree_sitter_javascript(void) { } #ifdef __cplusplus } -#endif \ No newline at end of file +#endif diff --git a/internal/cbm/vendored/grammars/tsx/parser.c b/internal/cbm/vendored/grammars/tsx/parser.c index faa8aa408..be3f298eb 100644 --- a/internal/cbm/vendored/grammars/tsx/parser.c +++ b/internal/cbm/vendored/grammars/tsx/parser.c @@ -1,19 +1,23 @@ +/* Automatically @generated by tree-sitter v0.25.10 */ + #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 5986 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 5989 #define LARGE_STATE_COUNT 1167 -#define SYMBOL_COUNT 393 +#define SYMBOL_COUNT 397 #define ALIAS_COUNT 7 -#define TOKEN_COUNT 172 +#define TOKEN_COUNT 174 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 43 #define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 351 +#define SUPERTYPE_COUNT 7 enum ts_symbol_identifiers { sym_identifier = 1, @@ -72,349 +76,353 @@ enum ts_symbol_identifiers { anon_sym_SQUOTE = 54, sym_unescaped_double_jsx_string_fragment = 55, sym_unescaped_single_jsx_string_fragment = 56, - anon_sym_class = 57, - anon_sym_async = 58, - anon_sym_function = 59, - anon_sym_EQ_GT = 60, - anon_sym_QMARK_DOT = 61, - anon_sym_new = 62, - anon_sym_using = 63, - anon_sym_PLUS_EQ = 64, - anon_sym_DASH_EQ = 65, - anon_sym_STAR_EQ = 66, - anon_sym_SLASH_EQ = 67, - anon_sym_PERCENT_EQ = 68, - anon_sym_CARET_EQ = 69, - anon_sym_AMP_EQ = 70, - anon_sym_PIPE_EQ = 71, - anon_sym_GT_GT_EQ = 72, - anon_sym_GT_GT_GT_EQ = 73, - anon_sym_LT_LT_EQ = 74, - anon_sym_STAR_STAR_EQ = 75, - anon_sym_AMP_AMP_EQ = 76, - anon_sym_PIPE_PIPE_EQ = 77, - anon_sym_QMARK_QMARK_EQ = 78, - anon_sym_DOT_DOT_DOT = 79, - anon_sym_AMP_AMP = 80, - anon_sym_PIPE_PIPE = 81, - anon_sym_GT_GT = 82, - anon_sym_GT_GT_GT = 83, - anon_sym_LT_LT = 84, - anon_sym_AMP = 85, - anon_sym_CARET = 86, - anon_sym_PIPE = 87, - anon_sym_PLUS = 88, - anon_sym_DASH = 89, - anon_sym_SLASH = 90, - anon_sym_PERCENT = 91, - anon_sym_STAR_STAR = 92, - anon_sym_LT = 93, - anon_sym_LT_EQ = 94, - anon_sym_EQ_EQ = 95, - anon_sym_EQ_EQ_EQ = 96, - anon_sym_BANG_EQ = 97, - anon_sym_BANG_EQ_EQ = 98, - anon_sym_GT_EQ = 99, - anon_sym_QMARK_QMARK = 100, - anon_sym_instanceof = 101, - anon_sym_TILDE = 102, - anon_sym_void = 103, - anon_sym_delete = 104, - anon_sym_PLUS_PLUS = 105, - anon_sym_DASH_DASH = 106, - sym_unescaped_double_string_fragment = 107, - sym_unescaped_single_string_fragment = 108, - sym_escape_sequence = 109, - sym_comment = 110, - anon_sym_BQUOTE = 111, - anon_sym_DOLLAR_LBRACE = 112, - anon_sym_SLASH2 = 113, - sym_regex_pattern = 114, - sym_regex_flags = 115, - sym_number = 116, - sym_private_property_identifier = 117, - anon_sym_target = 118, - anon_sym_meta = 119, - sym_this = 120, - sym_super = 121, - sym_true = 122, - sym_false = 123, - sym_null = 124, - sym_undefined = 125, - anon_sym_AT = 126, - anon_sym_static = 127, - anon_sym_readonly = 128, - anon_sym_get = 129, - anon_sym_set = 130, - anon_sym_QMARK = 131, - anon_sym_declare = 132, - anon_sym_public = 133, - anon_sym_private = 134, - anon_sym_protected = 135, - anon_sym_override = 136, - anon_sym_module = 137, - anon_sym_any = 138, - anon_sym_number = 139, - anon_sym_boolean = 140, - anon_sym_string = 141, - anon_sym_symbol = 142, - anon_sym_object = 143, - anon_sym_abstract = 144, - anon_sym_accessor = 145, - anon_sym_satisfies = 146, - anon_sym_require = 147, - anon_sym_extends = 148, - anon_sym_implements = 149, - anon_sym_global = 150, - anon_sym_interface = 151, - anon_sym_enum = 152, - anon_sym_DASH_QMARK_COLON = 153, - anon_sym_PLUS_QMARK_COLON = 154, - anon_sym_QMARK_COLON = 155, - anon_sym_asserts = 156, - anon_sym_infer = 157, - anon_sym_is = 158, - anon_sym_keyof = 159, - anon_sym_unique = 160, - anon_sym_unknown = 161, - anon_sym_never = 162, - anon_sym_LBRACE_PIPE = 163, - anon_sym_PIPE_RBRACE = 164, - sym__automatic_semicolon = 165, - sym__template_chars = 166, - sym__ternary_qmark = 167, - sym_html_comment = 168, - sym_jsx_text = 169, - sym__function_signature_automatic_semicolon = 170, - sym___error_recovery = 171, - sym_program = 172, - sym_export_statement = 173, - sym_namespace_export = 174, - sym_export_clause = 175, - sym_export_specifier = 176, - sym__module_export_name = 177, - sym_declaration = 178, - sym_import = 179, - sym_import_statement = 180, - sym_import_clause = 181, - sym__from_clause = 182, - sym_namespace_import = 183, - sym_named_imports = 184, - sym_import_specifier = 185, - sym_import_attribute = 186, - sym_statement = 187, - sym_expression_statement = 188, - sym_variable_declaration = 189, - sym_lexical_declaration = 190, - sym_variable_declarator = 191, - sym_statement_block = 192, - sym_else_clause = 193, - sym_if_statement = 194, - sym_switch_statement = 195, - sym_for_statement = 196, - sym_for_in_statement = 197, - sym__for_header = 198, - sym_while_statement = 199, - sym_do_statement = 200, - sym_try_statement = 201, - sym_with_statement = 202, - sym_break_statement = 203, - sym_continue_statement = 204, - sym_debugger_statement = 205, - sym_return_statement = 206, - sym_throw_statement = 207, - sym_empty_statement = 208, - sym_labeled_statement = 209, - sym_switch_body = 210, - sym_switch_case = 211, - sym_switch_default = 212, - sym_catch_clause = 213, - sym_finally_clause = 214, - sym_parenthesized_expression = 215, - sym_expression = 216, - sym_primary_expression = 217, - sym_yield_expression = 218, - sym_object = 219, - sym_object_pattern = 220, - sym_assignment_pattern = 221, - sym_object_assignment_pattern = 222, - sym_array = 223, - sym_array_pattern = 224, - sym_jsx_element = 225, - sym_jsx_expression = 226, - sym_jsx_opening_element = 227, - sym_nested_identifier = 228, - sym_jsx_namespace_name = 229, - sym_jsx_closing_element = 230, - sym_jsx_self_closing_element = 231, - sym_jsx_attribute = 232, - sym__jsx_string = 233, - sym_class = 234, - sym_class_declaration = 235, - sym_class_heritage = 236, - sym_function_expression = 237, - sym_function_declaration = 238, - sym_generator_function = 239, - sym_generator_function_declaration = 240, - sym_arrow_function = 241, - sym__call_signature = 242, - sym__formal_parameter = 243, - sym_optional_chain = 244, - sym_call_expression = 245, - sym_new_expression = 246, - sym_await_expression = 247, - sym_member_expression = 248, - sym_subscript_expression = 249, - sym_assignment_expression = 250, - sym__augmented_assignment_lhs = 251, - sym_augmented_assignment_expression = 252, - sym__initializer = 253, - sym__destructuring_pattern = 254, - sym_spread_element = 255, - sym_ternary_expression = 256, - sym_binary_expression = 257, - sym_unary_expression = 258, - sym_update_expression = 259, - sym_sequence_expression = 260, - sym_string = 261, - sym_template_string = 262, - sym_template_substitution = 263, - sym_regex = 264, - sym_meta_property = 265, - sym_arguments = 266, - sym_decorator = 267, - sym_decorator_member_expression = 268, - sym_decorator_call_expression = 269, - sym_class_body = 270, - sym_formal_parameters = 271, - sym_class_static_block = 272, - sym_pattern = 273, - sym_rest_pattern = 274, - sym_method_definition = 275, - sym_pair = 276, - sym_pair_pattern = 277, - sym__property_name = 278, - sym_computed_property_name = 279, - sym_public_field_definition = 280, - sym__import_identifier = 281, - sym_non_null_expression = 282, - sym_method_signature = 283, - sym_abstract_method_signature = 284, - sym_function_signature = 285, - sym_decorator_parenthesized_expression = 286, - sym_as_expression = 287, - sym_satisfies_expression = 288, - sym_instantiation_expression = 289, - sym_import_require_clause = 290, - sym_extends_clause = 291, - sym__extends_clause_single = 292, - sym_implements_clause = 293, - sym_ambient_declaration = 294, - sym_abstract_class_declaration = 295, - sym_module = 296, - sym_internal_module = 297, - sym__module = 298, - sym_import_alias = 299, - sym_nested_type_identifier = 300, - sym_interface_declaration = 301, - sym_extends_type_clause = 302, - sym_enum_declaration = 303, - sym_enum_body = 304, - sym_enum_assignment = 305, - sym_type_alias_declaration = 306, - sym_accessibility_modifier = 307, - sym_override_modifier = 308, - sym_required_parameter = 309, - sym_optional_parameter = 310, - sym__parameter_name = 311, - sym_omitting_type_annotation = 312, - sym_adding_type_annotation = 313, - sym_opting_type_annotation = 314, - sym_type_annotation = 315, - sym__type_query_member_expression_in_type_annotation = 316, - sym__type_query_call_expression_in_type_annotation = 317, - sym_asserts = 318, - sym_asserts_annotation = 319, - sym_type = 320, - sym_tuple_parameter = 321, - sym_optional_tuple_parameter = 322, - sym_optional_type = 323, - sym_rest_type = 324, - sym__tuple_type_member = 325, - sym_constructor_type = 326, - sym_primary_type = 327, - sym_template_type = 328, - sym_template_literal_type = 329, - sym_infer_type = 330, - sym_conditional_type = 331, - sym_generic_type = 332, - sym_type_predicate = 333, - sym_type_predicate_annotation = 334, - sym__type_query_member_expression = 335, - sym__type_query_subscript_expression = 336, - sym__type_query_call_expression = 337, - sym__type_query_instantiation_expression = 338, - sym_type_query = 339, - sym_index_type_query = 340, - sym_lookup_type = 341, - sym_mapped_type_clause = 342, - sym_literal_type = 343, - sym__number = 344, - sym_existential_type = 345, - sym_flow_maybe_type = 346, - sym_parenthesized_type = 347, - sym_predefined_type = 348, - sym_type_arguments = 349, - sym_object_type = 350, - sym_call_signature = 351, - sym_property_signature = 352, - sym_type_parameters = 353, - sym_type_parameter = 354, - sym_default_type = 355, - sym_constraint = 356, - sym_construct_signature = 357, - sym_index_signature = 358, - sym_array_type = 359, - sym_tuple_type = 360, - sym_readonly_type = 361, - sym_union_type = 362, - sym_intersection_type = 363, - sym_function_type = 364, - aux_sym_program_repeat1 = 365, - aux_sym_export_statement_repeat1 = 366, - aux_sym_export_clause_repeat1 = 367, - aux_sym_named_imports_repeat1 = 368, - aux_sym_variable_declaration_repeat1 = 369, - aux_sym_switch_body_repeat1 = 370, - aux_sym_object_repeat1 = 371, - aux_sym_object_pattern_repeat1 = 372, - aux_sym_array_repeat1 = 373, - aux_sym_array_pattern_repeat1 = 374, - aux_sym_jsx_element_repeat1 = 375, - aux_sym__jsx_string_repeat1 = 376, - aux_sym__jsx_string_repeat2 = 377, - aux_sym_sequence_expression_repeat1 = 378, - aux_sym_string_repeat1 = 379, - aux_sym_string_repeat2 = 380, - aux_sym_template_string_repeat1 = 381, - aux_sym_class_body_repeat1 = 382, - aux_sym_formal_parameters_repeat1 = 383, - aux_sym__jsx_start_opening_element_repeat1 = 384, - aux_sym_extends_clause_repeat1 = 385, - aux_sym_implements_clause_repeat1 = 386, - aux_sym_extends_type_clause_repeat1 = 387, - aux_sym_enum_body_repeat1 = 388, - aux_sym_template_literal_type_repeat1 = 389, - aux_sym_object_type_repeat1 = 390, - aux_sym_type_parameters_repeat1 = 391, - aux_sym_tuple_type_repeat1 = 392, - alias_sym_interface_body = 393, - alias_sym_property_identifier = 394, - alias_sym_shorthand_property_identifier = 395, - alias_sym_shorthand_property_identifier_pattern = 396, - alias_sym_statement_identifier = 397, - alias_sym_this_type = 398, - alias_sym_type_identifier = 399, + anon_sym_AMP = 57, + anon_sym_AMP2 = 58, + anon_sym_class = 59, + anon_sym_async = 60, + anon_sym_function = 61, + anon_sym_EQ_GT = 62, + anon_sym_QMARK_DOT = 63, + anon_sym_new = 64, + anon_sym_using = 65, + anon_sym_PLUS_EQ = 66, + anon_sym_DASH_EQ = 67, + anon_sym_STAR_EQ = 68, + anon_sym_SLASH_EQ = 69, + anon_sym_PERCENT_EQ = 70, + anon_sym_CARET_EQ = 71, + anon_sym_AMP_EQ = 72, + anon_sym_PIPE_EQ = 73, + anon_sym_GT_GT_EQ = 74, + anon_sym_GT_GT_GT_EQ = 75, + anon_sym_LT_LT_EQ = 76, + anon_sym_STAR_STAR_EQ = 77, + anon_sym_AMP_AMP_EQ = 78, + anon_sym_PIPE_PIPE_EQ = 79, + anon_sym_QMARK_QMARK_EQ = 80, + anon_sym_DOT_DOT_DOT = 81, + anon_sym_AMP_AMP = 82, + anon_sym_PIPE_PIPE = 83, + anon_sym_GT_GT = 84, + anon_sym_GT_GT_GT = 85, + anon_sym_LT_LT = 86, + anon_sym_AMP3 = 87, + anon_sym_CARET = 88, + anon_sym_PIPE = 89, + anon_sym_PLUS = 90, + anon_sym_DASH = 91, + anon_sym_SLASH = 92, + anon_sym_PERCENT = 93, + anon_sym_STAR_STAR = 94, + anon_sym_LT = 95, + anon_sym_LT_EQ = 96, + anon_sym_EQ_EQ = 97, + anon_sym_EQ_EQ_EQ = 98, + anon_sym_BANG_EQ = 99, + anon_sym_BANG_EQ_EQ = 100, + anon_sym_GT_EQ = 101, + anon_sym_QMARK_QMARK = 102, + anon_sym_instanceof = 103, + anon_sym_TILDE = 104, + anon_sym_void = 105, + anon_sym_delete = 106, + anon_sym_PLUS_PLUS = 107, + anon_sym_DASH_DASH = 108, + sym_unescaped_double_string_fragment = 109, + sym_unescaped_single_string_fragment = 110, + sym_escape_sequence = 111, + sym_comment = 112, + anon_sym_BQUOTE = 113, + anon_sym_DOLLAR_LBRACE = 114, + anon_sym_SLASH2 = 115, + sym_regex_pattern = 116, + sym_regex_flags = 117, + sym_number = 118, + sym_private_property_identifier = 119, + anon_sym_target = 120, + anon_sym_meta = 121, + sym_this = 122, + sym_super = 123, + sym_true = 124, + sym_false = 125, + sym_null = 126, + sym_undefined = 127, + anon_sym_AT = 128, + anon_sym_static = 129, + anon_sym_readonly = 130, + anon_sym_get = 131, + anon_sym_set = 132, + anon_sym_QMARK = 133, + anon_sym_declare = 134, + anon_sym_public = 135, + anon_sym_private = 136, + anon_sym_protected = 137, + anon_sym_override = 138, + anon_sym_module = 139, + anon_sym_any = 140, + anon_sym_number = 141, + anon_sym_boolean = 142, + anon_sym_string = 143, + anon_sym_symbol = 144, + anon_sym_object = 145, + anon_sym_abstract = 146, + anon_sym_accessor = 147, + anon_sym_satisfies = 148, + anon_sym_require = 149, + anon_sym_extends = 150, + anon_sym_implements = 151, + anon_sym_global = 152, + anon_sym_interface = 153, + anon_sym_enum = 154, + anon_sym_DASH_QMARK_COLON = 155, + anon_sym_PLUS_QMARK_COLON = 156, + anon_sym_QMARK_COLON = 157, + anon_sym_asserts = 158, + anon_sym_infer = 159, + anon_sym_is = 160, + anon_sym_keyof = 161, + anon_sym_unique = 162, + anon_sym_unknown = 163, + anon_sym_never = 164, + anon_sym_LBRACE_PIPE = 165, + anon_sym_PIPE_RBRACE = 166, + sym__automatic_semicolon = 167, + sym__template_chars = 168, + sym__ternary_qmark = 169, + sym_html_comment = 170, + sym_jsx_text = 171, + sym__function_signature_automatic_semicolon = 172, + sym___error_recovery = 173, + sym_program = 174, + sym_export_statement = 175, + sym_namespace_export = 176, + sym_export_clause = 177, + sym_export_specifier = 178, + sym__module_export_name = 179, + sym_declaration = 180, + sym_import = 181, + sym_import_statement = 182, + sym_import_clause = 183, + sym__from_clause = 184, + sym_namespace_import = 185, + sym_named_imports = 186, + sym_import_specifier = 187, + sym_import_attribute = 188, + sym_statement = 189, + sym_expression_statement = 190, + sym_variable_declaration = 191, + sym_lexical_declaration = 192, + sym_variable_declarator = 193, + sym_statement_block = 194, + sym_else_clause = 195, + sym_if_statement = 196, + sym_switch_statement = 197, + sym_for_statement = 198, + sym_for_in_statement = 199, + sym__for_header = 200, + sym_while_statement = 201, + sym_do_statement = 202, + sym_try_statement = 203, + sym_with_statement = 204, + sym_break_statement = 205, + sym_continue_statement = 206, + sym_debugger_statement = 207, + sym_return_statement = 208, + sym_throw_statement = 209, + sym_empty_statement = 210, + sym_labeled_statement = 211, + sym_switch_body = 212, + sym_switch_case = 213, + sym_switch_default = 214, + sym_catch_clause = 215, + sym_finally_clause = 216, + sym_parenthesized_expression = 217, + sym_expression = 218, + sym_primary_expression = 219, + sym_yield_expression = 220, + sym_object = 221, + sym_object_pattern = 222, + sym_assignment_pattern = 223, + sym_object_assignment_pattern = 224, + sym_array = 225, + sym_array_pattern = 226, + sym_jsx_element = 227, + sym_jsx_expression = 228, + sym_jsx_opening_element = 229, + sym_nested_identifier = 230, + sym_jsx_namespace_name = 231, + sym_jsx_closing_element = 232, + sym_jsx_self_closing_element = 233, + sym_jsx_attribute = 234, + sym__jsx_string = 235, + sym__jsx_lone_ampersand = 236, + sym__jsx_string_lone_ampersand = 237, + sym_class = 238, + sym_class_declaration = 239, + sym_class_heritage = 240, + sym_function_expression = 241, + sym_function_declaration = 242, + sym_generator_function = 243, + sym_generator_function_declaration = 244, + sym_arrow_function = 245, + sym__call_signature = 246, + sym__formal_parameter = 247, + sym_optional_chain = 248, + sym_call_expression = 249, + sym_new_expression = 250, + sym_await_expression = 251, + sym_member_expression = 252, + sym_subscript_expression = 253, + sym_assignment_expression = 254, + sym__augmented_assignment_lhs = 255, + sym_augmented_assignment_expression = 256, + sym__initializer = 257, + sym__destructuring_pattern = 258, + sym_spread_element = 259, + sym_ternary_expression = 260, + sym_binary_expression = 261, + sym_unary_expression = 262, + sym_update_expression = 263, + sym_sequence_expression = 264, + sym_string = 265, + sym_template_string = 266, + sym_template_substitution = 267, + sym_regex = 268, + sym_meta_property = 269, + sym_arguments = 270, + sym_decorator = 271, + sym_decorator_member_expression = 272, + sym_decorator_call_expression = 273, + sym_class_body = 274, + sym_formal_parameters = 275, + sym_class_static_block = 276, + sym_pattern = 277, + sym_rest_pattern = 278, + sym_method_definition = 279, + sym_pair = 280, + sym_pair_pattern = 281, + sym__property_name = 282, + sym_computed_property_name = 283, + sym_public_field_definition = 284, + sym__import_identifier = 285, + sym_non_null_expression = 286, + sym_method_signature = 287, + sym_abstract_method_signature = 288, + sym_function_signature = 289, + sym_decorator_parenthesized_expression = 290, + sym_as_expression = 291, + sym_satisfies_expression = 292, + sym_instantiation_expression = 293, + sym_import_require_clause = 294, + sym_extends_clause = 295, + sym__extends_clause_single = 296, + sym_implements_clause = 297, + sym_ambient_declaration = 298, + sym_abstract_class_declaration = 299, + sym_module = 300, + sym_internal_module = 301, + sym__module = 302, + sym_import_alias = 303, + sym_nested_type_identifier = 304, + sym_interface_declaration = 305, + sym_extends_type_clause = 306, + sym_enum_declaration = 307, + sym_enum_body = 308, + sym_enum_assignment = 309, + sym_type_alias_declaration = 310, + sym_accessibility_modifier = 311, + sym_override_modifier = 312, + sym_required_parameter = 313, + sym_optional_parameter = 314, + sym__parameter_name = 315, + sym_omitting_type_annotation = 316, + sym_adding_type_annotation = 317, + sym_opting_type_annotation = 318, + sym_type_annotation = 319, + sym__type_query_member_expression_in_type_annotation = 320, + sym__type_query_call_expression_in_type_annotation = 321, + sym_asserts = 322, + sym_asserts_annotation = 323, + sym_type = 324, + sym_tuple_parameter = 325, + sym_optional_tuple_parameter = 326, + sym_optional_type = 327, + sym_rest_type = 328, + sym__tuple_type_member = 329, + sym_constructor_type = 330, + sym_primary_type = 331, + sym_template_type = 332, + sym_template_literal_type = 333, + sym_infer_type = 334, + sym_conditional_type = 335, + sym_generic_type = 336, + sym_type_predicate = 337, + sym_type_predicate_annotation = 338, + sym__type_query_member_expression = 339, + sym__type_query_subscript_expression = 340, + sym__type_query_call_expression = 341, + sym__type_query_instantiation_expression = 342, + sym_type_query = 343, + sym_index_type_query = 344, + sym_lookup_type = 345, + sym_mapped_type_clause = 346, + sym_literal_type = 347, + sym__number = 348, + sym_existential_type = 349, + sym_flow_maybe_type = 350, + sym_parenthesized_type = 351, + sym_predefined_type = 352, + sym_type_arguments = 353, + sym_object_type = 354, + sym_call_signature = 355, + sym_property_signature = 356, + sym_type_parameters = 357, + sym_type_parameter = 358, + sym_default_type = 359, + sym_constraint = 360, + sym_construct_signature = 361, + sym_index_signature = 362, + sym_array_type = 363, + sym_tuple_type = 364, + sym_readonly_type = 365, + sym_union_type = 366, + sym_intersection_type = 367, + sym_function_type = 368, + aux_sym_program_repeat1 = 369, + aux_sym_export_statement_repeat1 = 370, + aux_sym_export_clause_repeat1 = 371, + aux_sym_named_imports_repeat1 = 372, + aux_sym_variable_declaration_repeat1 = 373, + aux_sym_switch_body_repeat1 = 374, + aux_sym_object_repeat1 = 375, + aux_sym_object_pattern_repeat1 = 376, + aux_sym_array_repeat1 = 377, + aux_sym_array_pattern_repeat1 = 378, + aux_sym_jsx_element_repeat1 = 379, + aux_sym__jsx_string_repeat1 = 380, + aux_sym__jsx_string_repeat2 = 381, + aux_sym_sequence_expression_repeat1 = 382, + aux_sym_string_repeat1 = 383, + aux_sym_string_repeat2 = 384, + aux_sym_template_string_repeat1 = 385, + aux_sym_class_body_repeat1 = 386, + aux_sym_formal_parameters_repeat1 = 387, + aux_sym__jsx_start_opening_element_repeat1 = 388, + aux_sym_extends_clause_repeat1 = 389, + aux_sym_implements_clause_repeat1 = 390, + aux_sym_extends_type_clause_repeat1 = 391, + aux_sym_enum_body_repeat1 = 392, + aux_sym_template_literal_type_repeat1 = 393, + aux_sym_object_type_repeat1 = 394, + aux_sym_type_parameters_repeat1 = 395, + aux_sym_tuple_type_repeat1 = 396, + alias_sym_interface_body = 397, + alias_sym_property_identifier = 398, + alias_sym_shorthand_property_identifier = 399, + alias_sym_shorthand_property_identifier_pattern = 400, + alias_sym_statement_identifier = 401, + alias_sym_this_type = 402, + alias_sym_type_identifier = 403, }; static const char * const ts_symbol_names[] = { @@ -475,6 +483,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_SQUOTE] = "'", [sym_unescaped_double_jsx_string_fragment] = "string_fragment", [sym_unescaped_single_jsx_string_fragment] = "string_fragment", + [anon_sym_AMP] = "&", + [anon_sym_AMP2] = "&", [anon_sym_class] = "class", [anon_sym_async] = "async", [anon_sym_function] = "function", @@ -503,7 +513,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_GT_GT] = ">>", [anon_sym_GT_GT_GT] = ">>>", [anon_sym_LT_LT] = "<<", - [anon_sym_AMP] = "&", + [anon_sym_AMP3] = "&", [anon_sym_CARET] = "^", [anon_sym_PIPE] = "|", [anon_sym_PLUS] = "+", @@ -652,6 +662,8 @@ static const char * const ts_symbol_names[] = { [sym_jsx_self_closing_element] = "jsx_self_closing_element", [sym_jsx_attribute] = "jsx_attribute", [sym__jsx_string] = "string", + [sym__jsx_lone_ampersand] = "jsx_text", + [sym__jsx_string_lone_ampersand] = "string_fragment", [sym_class] = "class", [sym_class_declaration] = "class_declaration", [sym_class_heritage] = "class_heritage", @@ -878,6 +890,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_SQUOTE] = anon_sym_SQUOTE, [sym_unescaped_double_jsx_string_fragment] = sym__template_chars, [sym_unescaped_single_jsx_string_fragment] = sym__template_chars, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_AMP2] = anon_sym_AMP, [anon_sym_class] = anon_sym_class, [anon_sym_async] = anon_sym_async, [anon_sym_function] = anon_sym_function, @@ -906,7 +920,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_GT_GT] = anon_sym_GT_GT, [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_AMP3] = anon_sym_AMP, [anon_sym_CARET] = anon_sym_CARET, [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_PLUS] = anon_sym_PLUS, @@ -1055,6 +1069,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_jsx_self_closing_element] = sym_jsx_self_closing_element, [sym_jsx_attribute] = sym_jsx_attribute, [sym__jsx_string] = sym_string, + [sym__jsx_lone_ampersand] = sym_jsx_text, + [sym__jsx_string_lone_ampersand] = sym__template_chars, [sym_class] = sym_class, [sym_class_declaration] = sym_class_declaration, [sym_class_heritage] = sym_class_heritage, @@ -1452,6 +1468,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP2] = { + .visible = true, + .named = false, + }, [anon_sym_class] = { .visible = true, .named = false, @@ -1564,7 +1588,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_AMP] = { + [anon_sym_AMP3] = { .visible = true, .named = false, }, @@ -2164,6 +2188,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__jsx_lone_ampersand] = { + .visible = true, + .named = true, + }, + [sym__jsx_string_lone_ampersand] = { + .visible = true, + .named = true, + }, [sym_class] = { .visible = true, .named = true, @@ -2926,7 +2958,7 @@ 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}, [4] = {.index = 2, .length = 1}, @@ -4659,19 +4691,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [15] = 15, [16] = 16, [17] = 17, - [18] = 16, - [19] = 16, - [20] = 17, - [21] = 16, - [22] = 17, - [23] = 17, - [24] = 16, - [25] = 17, - [26] = 16, - [27] = 17, - [28] = 17, - [29] = 16, - [30] = 30, + [18] = 18, + [19] = 14, + [20] = 14, + [21] = 18, + [22] = 14, + [23] = 18, + [24] = 18, + [25] = 14, + [26] = 18, + [27] = 14, + [28] = 18, + [29] = 18, + [30] = 14, [31] = 31, [32] = 32, [33] = 33, @@ -4685,133 +4717,133 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [41] = 41, [42] = 42, [43] = 43, - [44] = 31, + [44] = 44, [45] = 45, - [46] = 32, - [47] = 39, - [48] = 48, + [46] = 34, + [47] = 38, + [48] = 44, [49] = 49, - [50] = 50, - [51] = 34, + [50] = 31, + [51] = 51, [52] = 33, [53] = 35, [54] = 36, - [55] = 38, - [56] = 40, - [57] = 41, - [58] = 42, - [59] = 43, - [60] = 45, - [61] = 32, - [62] = 35, - [63] = 48, - [64] = 35, - [65] = 49, - [66] = 50, - [67] = 49, - [68] = 35, - [69] = 35, - [70] = 35, - [71] = 35, - [72] = 35, - [73] = 39, - [74] = 48, - [75] = 50, - [76] = 34, - [77] = 33, - [78] = 36, - [79] = 38, - [80] = 40, - [81] = 41, - [82] = 42, - [83] = 43, - [84] = 31, - [85] = 45, - [86] = 35, + [55] = 37, + [56] = 39, + [57] = 40, + [58] = 41, + [59] = 42, + [60] = 43, + [61] = 31, + [62] = 34, + [63] = 49, + [64] = 31, + [65] = 31, + [66] = 31, + [67] = 31, + [68] = 31, + [69] = 31, + [70] = 31, + [71] = 51, + [72] = 43, + [73] = 45, + [74] = 38, + [75] = 44, + [76] = 49, + [77] = 51, + [78] = 33, + [79] = 35, + [80] = 36, + [81] = 37, + [82] = 39, + [83] = 40, + [84] = 41, + [85] = 42, + [86] = 45, [87] = 87, [88] = 87, [89] = 87, [90] = 90, - [91] = 91, + [91] = 90, [92] = 92, [93] = 93, [94] = 94, - [95] = 91, + [95] = 95, [96] = 96, - [97] = 97, - [98] = 98, - [99] = 91, - [100] = 97, + [97] = 90, + [98] = 92, + [99] = 99, + [100] = 100, [101] = 101, - [102] = 101, + [102] = 102, [103] = 103, - [104] = 101, - [105] = 101, - [106] = 101, - [107] = 107, + [104] = 104, + [105] = 103, + [106] = 103, + [107] = 103, [108] = 108, - [109] = 109, - [110] = 109, + [109] = 108, + [110] = 104, [111] = 103, - [112] = 112, + [112] = 108, [113] = 113, - [114] = 108, - [115] = 113, - [116] = 103, - [117] = 103, + [114] = 101, + [115] = 108, + [116] = 108, + [117] = 101, [118] = 108, - [119] = 113, - [120] = 103, - [121] = 103, - [122] = 112, + [119] = 119, + [120] = 113, + [121] = 119, + [122] = 113, [123] = 123, [124] = 124, - [125] = 107, + [125] = 102, [126] = 126, [127] = 127, - [128] = 103, - [129] = 103, - [130] = 130, + [128] = 108, + [129] = 101, + [130] = 119, [131] = 108, - [132] = 109, - [133] = 112, - [134] = 108, - [135] = 112, - [136] = 103, - [137] = 103, + [132] = 108, + [133] = 119, + [134] = 134, + [135] = 101, + [136] = 108, + [137] = 101, [138] = 108, - [139] = 103, - [140] = 103, - [141] = 123, + [139] = 104, + [140] = 108, + [141] = 108, [142] = 108, [143] = 108, - [144] = 103, - [145] = 103, + [144] = 101, + [145] = 108, [146] = 124, - [147] = 103, - [148] = 103, + [147] = 101, + [148] = 123, [149] = 149, - [150] = 149, - [151] = 149, - [152] = 149, - [153] = 103, - [154] = 149, - [155] = 149, - [156] = 149, - [157] = 149, - [158] = 108, - [159] = 159, - [160] = 149, + [150] = 150, + [151] = 150, + [152] = 101, + [153] = 150, + [154] = 150, + [155] = 108, + [156] = 150, + [157] = 150, + [158] = 150, + [159] = 150, + [160] = 150, [161] = 161, [162] = 162, - [163] = 162, + [163] = 163, [164] = 162, - [165] = 165, - [166] = 166, + [165] = 162, + [166] = 162, [167] = 162, [168] = 162, [169] = 162, - [170] = 162, + [170] = 170, [171] = 162, [172] = 162, [173] = 173, @@ -4828,20 +4860,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [184] = 182, [185] = 185, [186] = 186, - [187] = 187, + [187] = 186, [188] = 188, - [189] = 187, - [190] = 188, - [191] = 188, - [192] = 188, - [193] = 187, - [194] = 187, - [195] = 182, - [196] = 185, + [189] = 186, + [190] = 185, + [191] = 191, + [192] = 186, + [193] = 185, + [194] = 185, + [195] = 188, + [196] = 182, [197] = 182, - [198] = 182, - [199] = 185, - [200] = 186, + [198] = 188, + [199] = 182, + [200] = 191, [201] = 182, [202] = 182, [203] = 182, @@ -4850,23 +4882,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [206] = 206, [207] = 207, [208] = 208, - [209] = 207, - [210] = 206, - [211] = 208, - [212] = 208, - [213] = 206, - [214] = 207, + [209] = 206, + [210] = 208, + [211] = 206, + [212] = 207, + [213] = 207, + [214] = 208, [215] = 215, - [216] = 216, + [216] = 215, [217] = 217, [218] = 218, - [219] = 219, - [220] = 220, + [219] = 215, + [220] = 215, [221] = 215, - [222] = 215, + [222] = 222, [223] = 223, - [224] = 215, - [225] = 215, + [224] = 224, + [225] = 225, [226] = 226, [227] = 215, [228] = 228, @@ -4884,7 +4916,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [240] = 240, [241] = 241, [242] = 242, - [243] = 243, + [243] = 218, [244] = 244, [245] = 245, [246] = 246, @@ -4895,165 +4927,165 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [251] = 251, [252] = 252, [253] = 253, - [254] = 226, + [254] = 254, [255] = 255, - [256] = 255, - [257] = 255, + [256] = 256, + [257] = 218, [258] = 258, - [259] = 259, - [260] = 259, - [261] = 226, + [259] = 255, + [260] = 255, + [261] = 261, [262] = 262, [263] = 262, - [264] = 264, + [264] = 261, [265] = 265, [266] = 266, - [267] = 266, - [268] = 268, - [269] = 269, - [270] = 226, + [267] = 218, + [268] = 218, + [269] = 266, + [270] = 270, [271] = 266, - [272] = 226, - [273] = 226, - [274] = 269, - [275] = 275, - [276] = 226, - [277] = 226, - [278] = 266, - [279] = 226, - [280] = 266, - [281] = 226, + [272] = 266, + [273] = 218, + [274] = 266, + [275] = 218, + [276] = 276, + [277] = 266, + [278] = 218, + [279] = 218, + [280] = 280, + [281] = 281, [282] = 266, - [283] = 266, - [284] = 284, - [285] = 268, + [283] = 270, + [284] = 280, + [285] = 218, [286] = 286, [287] = 286, - [288] = 286, + [288] = 288, [289] = 286, - [290] = 290, + [290] = 286, [291] = 291, - [292] = 286, + [292] = 292, [293] = 286, [294] = 286, [295] = 286, [296] = 286, - [297] = 291, + [297] = 292, [298] = 286, [299] = 286, [300] = 300, [301] = 286, [302] = 286, - [303] = 303, - [304] = 304, - [305] = 286, + [303] = 286, + [304] = 286, + [305] = 305, [306] = 306, [307] = 307, - [308] = 308, - [309] = 306, + [308] = 307, + [309] = 309, [310] = 310, [311] = 311, - [312] = 312, - [313] = 311, - [314] = 314, - [315] = 306, - [316] = 311, + [312] = 307, + [313] = 309, + [314] = 309, + [315] = 315, + [316] = 316, [317] = 317, [318] = 318, [319] = 319, - [320] = 320, - [321] = 321, - [322] = 318, + [320] = 317, + [321] = 318, + [322] = 322, [323] = 319, [324] = 317, - [325] = 320, + [325] = 322, [326] = 318, [327] = 319, - [328] = 317, - [329] = 320, + [328] = 328, + [329] = 322, [330] = 330, [331] = 331, [332] = 332, - [333] = 330, + [333] = 333, [334] = 334, [335] = 335, [336] = 336, [337] = 337, [338] = 338, [339] = 339, - [340] = 330, - [341] = 332, - [342] = 342, - [343] = 343, - [344] = 331, - [345] = 330, - [346] = 346, + [340] = 340, + [341] = 341, + [342] = 335, + [343] = 333, + [344] = 344, + [345] = 345, + [346] = 330, [347] = 347, [348] = 348, [349] = 349, [350] = 350, - [351] = 343, - [352] = 352, - [353] = 330, - [354] = 342, - [355] = 331, - [356] = 346, - [357] = 347, - [358] = 348, - [359] = 342, - [360] = 330, - [361] = 342, - [362] = 331, - [363] = 346, - [364] = 347, - [365] = 348, - [366] = 342, - [367] = 331, - [368] = 346, - [369] = 347, - [370] = 370, - [371] = 331, - [372] = 330, - [373] = 342, - [374] = 331, - [375] = 346, - [376] = 347, - [377] = 348, - [378] = 378, - [379] = 346, - [380] = 347, - [381] = 348, - [382] = 330, - [383] = 342, - [384] = 331, - [385] = 346, - [386] = 347, - [387] = 348, - [388] = 346, - [389] = 347, - [390] = 348, - [391] = 330, - [392] = 342, - [393] = 331, - [394] = 346, + [351] = 335, + [352] = 335, + [353] = 344, + [354] = 330, + [355] = 347, + [356] = 348, + [357] = 349, + [358] = 358, + [359] = 335, + [360] = 344, + [361] = 330, + [362] = 347, + [363] = 348, + [364] = 349, + [365] = 347, + [366] = 348, + [367] = 344, + [368] = 335, + [369] = 344, + [370] = 345, + [371] = 347, + [372] = 348, + [373] = 349, + [374] = 335, + [375] = 344, + [376] = 330, + [377] = 347, + [378] = 348, + [379] = 349, + [380] = 349, + [381] = 330, + [382] = 335, + [383] = 344, + [384] = 330, + [385] = 347, + [386] = 348, + [387] = 349, + [388] = 347, + [389] = 348, + [390] = 349, + [391] = 391, + [392] = 335, + [393] = 344, + [394] = 330, [395] = 347, [396] = 348, - [397] = 350, + [397] = 349, [398] = 398, - [399] = 342, - [400] = 400, + [399] = 350, + [400] = 344, [401] = 401, [402] = 402, [403] = 403, - [404] = 348, + [404] = 330, [405] = 405, [406] = 406, [407] = 407, [408] = 408, [409] = 409, - [410] = 410, + [410] = 406, [411] = 411, - [412] = 409, + [412] = 412, [413] = 413, [414] = 414, [415] = 415, @@ -5066,239 +5098,239 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [422] = 422, [423] = 423, [424] = 424, - [425] = 414, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 418, - [433] = 410, - [434] = 427, + [425] = 405, + [426] = 416, + [427] = 408, + [428] = 421, + [429] = 407, + [430] = 409, + [431] = 411, + [432] = 432, + [433] = 433, + [434] = 434, [435] = 435, [436] = 436, - [437] = 411, - [438] = 405, - [439] = 435, - [440] = 407, - [441] = 413, - [442] = 428, + [437] = 437, + [438] = 432, + [439] = 439, + [440] = 433, + [441] = 441, + [442] = 442, [443] = 443, - [444] = 409, - [445] = 414, - [446] = 410, - [447] = 411, - [448] = 448, - [449] = 413, - [450] = 450, - [451] = 414, - [452] = 415, - [453] = 416, - [454] = 417, - [455] = 418, - [456] = 419, - [457] = 420, - [458] = 421, - [459] = 422, - [460] = 423, - [461] = 424, - [462] = 428, - [463] = 426, - [464] = 448, - [465] = 407, - [466] = 466, - [467] = 409, - [468] = 430, - [469] = 431, - [470] = 415, - [471] = 416, - [472] = 427, - [473] = 417, - [474] = 418, - [475] = 436, - [476] = 419, - [477] = 407, - [478] = 436, - [479] = 409, - [480] = 420, - [481] = 410, - [482] = 411, - [483] = 483, - [484] = 413, - [485] = 414, - [486] = 415, - [487] = 416, - [488] = 417, - [489] = 418, - [490] = 419, - [491] = 420, - [492] = 421, - [493] = 422, - [494] = 423, - [495] = 424, - [496] = 410, - [497] = 426, - [498] = 411, - [499] = 499, - [500] = 413, - [501] = 430, - [502] = 431, - [503] = 421, - [504] = 422, - [505] = 427, - [506] = 405, - [507] = 423, - [508] = 436, - [509] = 424, - [510] = 405, - [511] = 435, - [512] = 450, - [513] = 426, - [514] = 428, - [515] = 450, - [516] = 414, - [517] = 409, - [518] = 410, - [519] = 411, - [520] = 413, - [521] = 413, - [522] = 414, - [523] = 415, - [524] = 416, - [525] = 417, - [526] = 418, - [527] = 419, - [528] = 420, - [529] = 421, - [530] = 422, - [531] = 423, - [532] = 424, - [533] = 415, - [534] = 426, - [535] = 416, - [536] = 417, - [537] = 418, - [538] = 430, - [539] = 431, - [540] = 540, - [541] = 417, - [542] = 427, - [543] = 419, - [544] = 436, - [545] = 420, - [546] = 405, - [547] = 435, - [548] = 421, - [549] = 428, - [550] = 450, - [551] = 422, - [552] = 423, - [553] = 409, - [554] = 410, - [555] = 411, - [556] = 424, - [557] = 413, - [558] = 414, - [559] = 415, - [560] = 416, - [561] = 417, - [562] = 418, - [563] = 419, - [564] = 420, - [565] = 421, - [566] = 422, - [567] = 423, - [568] = 424, - [569] = 427, - [570] = 426, - [571] = 426, - [572] = 466, - [573] = 407, - [574] = 430, - [575] = 431, - [576] = 430, - [577] = 431, - [578] = 427, - [579] = 419, - [580] = 450, - [581] = 436, - [582] = 427, - [583] = 405, - [584] = 435, + [444] = 406, + [445] = 434, + [446] = 446, + [447] = 447, + [448] = 446, + [449] = 417, + [450] = 447, + [451] = 417, + [452] = 419, + [453] = 420, + [454] = 422, + [455] = 424, + [456] = 405, + [457] = 416, + [458] = 408, + [459] = 421, + [460] = 407, + [461] = 409, + [462] = 411, + [463] = 432, + [464] = 433, + [465] = 434, + [466] = 435, + [467] = 435, + [468] = 441, + [469] = 442, + [470] = 406, + [471] = 471, + [472] = 446, + [473] = 414, + [474] = 413, + [475] = 415, + [476] = 417, + [477] = 419, + [478] = 419, + [479] = 420, + [480] = 422, + [481] = 423, + [482] = 424, + [483] = 405, + [484] = 416, + [485] = 408, + [486] = 421, + [487] = 407, + [488] = 409, + [489] = 411, + [490] = 432, + [491] = 433, + [492] = 434, + [493] = 418, + [494] = 435, + [495] = 406, + [496] = 496, + [497] = 441, + [498] = 442, + [499] = 419, + [500] = 406, + [501] = 420, + [502] = 446, + [503] = 447, + [504] = 504, + [505] = 417, + [506] = 422, + [507] = 419, + [508] = 420, + [509] = 422, + [510] = 424, + [511] = 405, + [512] = 416, + [513] = 408, + [514] = 421, + [515] = 407, + [516] = 409, + [517] = 411, + [518] = 432, + [519] = 433, + [520] = 434, + [521] = 435, + [522] = 436, + [523] = 441, + [524] = 442, + [525] = 424, + [526] = 526, + [527] = 406, + [528] = 405, + [529] = 416, + [530] = 446, + [531] = 408, + [532] = 414, + [533] = 413, + [534] = 421, + [535] = 407, + [536] = 415, + [537] = 423, + [538] = 409, + [539] = 417, + [540] = 419, + [541] = 420, + [542] = 422, + [543] = 424, + [544] = 405, + [545] = 416, + [546] = 408, + [547] = 421, + [548] = 407, + [549] = 409, + [550] = 411, + [551] = 432, + [552] = 433, + [553] = 434, + [554] = 435, + [555] = 555, + [556] = 417, + [557] = 441, + [558] = 442, + [559] = 411, + [560] = 432, + [561] = 406, + [562] = 433, + [563] = 446, + [564] = 434, + [565] = 414, + [566] = 413, + [567] = 415, + [568] = 423, + [569] = 435, + [570] = 417, + [571] = 419, + [572] = 420, + [573] = 422, + [574] = 424, + [575] = 405, + [576] = 416, + [577] = 408, + [578] = 421, + [579] = 407, + [580] = 409, + [581] = 411, + [582] = 432, + [583] = 433, + [584] = 434, [585] = 585, - [586] = 428, - [587] = 450, - [588] = 588, - [589] = 430, - [590] = 431, - [591] = 591, - [592] = 405, - [593] = 435, - [594] = 436, - [595] = 407, - [596] = 420, - [597] = 421, - [598] = 598, - [599] = 407, - [600] = 426, - [601] = 409, - [602] = 410, - [603] = 411, - [604] = 430, - [605] = 413, + [586] = 435, + [587] = 415, + [588] = 406, + [589] = 441, + [590] = 442, + [591] = 441, + [592] = 406, + [593] = 418, + [594] = 442, + [595] = 446, + [596] = 443, + [597] = 414, + [598] = 413, + [599] = 599, + [600] = 415, + [601] = 423, + [602] = 602, + [603] = 447, + [604] = 441, + [605] = 442, [606] = 414, - [607] = 415, - [608] = 416, - [609] = 417, - [610] = 418, - [611] = 419, - [612] = 420, - [613] = 421, - [614] = 422, - [615] = 423, - [616] = 424, - [617] = 431, - [618] = 426, - [619] = 591, - [620] = 409, - [621] = 427, - [622] = 430, - [623] = 431, - [624] = 427, - [625] = 427, - [626] = 410, - [627] = 627, - [628] = 436, - [629] = 427, - [630] = 427, - [631] = 435, - [632] = 632, - [633] = 405, - [634] = 435, - [635] = 635, - [636] = 436, - [637] = 411, - [638] = 428, - [639] = 450, - [640] = 422, - [641] = 429, + [607] = 413, + [608] = 447, + [609] = 609, + [610] = 406, + [611] = 406, + [612] = 447, + [613] = 417, + [614] = 419, + [615] = 420, + [616] = 422, + [617] = 424, + [618] = 405, + [619] = 416, + [620] = 408, + [621] = 421, + [622] = 407, + [623] = 409, + [624] = 411, + [625] = 432, + [626] = 433, + [627] = 434, + [628] = 435, + [629] = 406, + [630] = 418, + [631] = 441, + [632] = 442, + [633] = 446, + [634] = 406, + [635] = 420, + [636] = 446, + [637] = 414, + [638] = 413, + [639] = 422, + [640] = 640, + [641] = 641, [642] = 423, - [643] = 427, - [644] = 405, - [645] = 435, - [646] = 646, - [647] = 407, - [648] = 407, - [649] = 428, - [650] = 429, - [651] = 450, - [652] = 415, - [653] = 416, - [654] = 428, - [655] = 424, - [656] = 450, - [657] = 429, + [643] = 415, + [644] = 423, + [645] = 414, + [646] = 413, + [647] = 414, + [648] = 413, + [649] = 424, + [650] = 526, + [651] = 447, + [652] = 447, + [653] = 415, + [654] = 423, + [655] = 415, + [656] = 423, + [657] = 447, [658] = 658, [659] = 658, [660] = 658, @@ -5315,16 +5347,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [671] = 670, [672] = 670, [673] = 673, - [674] = 673, - [675] = 675, - [676] = 675, + [674] = 674, + [675] = 674, + [676] = 673, [677] = 673, - [678] = 675, + [678] = 674, [679] = 679, - [680] = 248, - [681] = 241, + [680] = 231, + [681] = 679, [682] = 679, - [683] = 679, + [683] = 234, [684] = 684, [685] = 685, [686] = 686, @@ -5334,96 +5366,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [690] = 690, [691] = 691, [692] = 691, - [693] = 689, + [693] = 690, [694] = 690, - [695] = 691, + [695] = 689, [696] = 689, - [697] = 690, + [697] = 691, [698] = 698, [699] = 698, [700] = 700, - [701] = 700, - [702] = 702, - [703] = 700, - [704] = 704, + [701] = 701, + [702] = 701, + [703] = 701, + [704] = 701, [705] = 700, - [706] = 700, - [707] = 704, - [708] = 704, - [709] = 700, - [710] = 702, - [711] = 700, + [706] = 706, + [707] = 701, + [708] = 706, + [709] = 701, + [710] = 706, + [711] = 701, [712] = 712, - [713] = 713, - [714] = 700, - [715] = 249, + [713] = 701, + [714] = 714, + [715] = 715, [716] = 716, - [717] = 717, - [718] = 700, - [719] = 700, - [720] = 700, - [721] = 717, - [722] = 700, - [723] = 717, - [724] = 698, - [725] = 246, - [726] = 726, - [727] = 727, - [728] = 700, - [729] = 242, - [730] = 232, - [731] = 246, - [732] = 700, - [733] = 700, - [734] = 702, - [735] = 252, - [736] = 713, - [737] = 234, - [738] = 700, - [739] = 249, - [740] = 232, - [741] = 242, + [717] = 701, + [718] = 698, + [719] = 701, + [720] = 241, + [721] = 721, + [722] = 722, + [723] = 722, + [724] = 722, + [725] = 701, + [726] = 701, + [727] = 232, + [728] = 701, + [729] = 701, + [730] = 701, + [731] = 244, + [732] = 242, + [733] = 245, + [734] = 254, + [735] = 254, + [736] = 701, + [737] = 232, + [738] = 712, + [739] = 244, + [740] = 241, + [741] = 700, [742] = 742, - [743] = 743, - [744] = 743, - [745] = 743, - [746] = 743, - [747] = 743, - [748] = 700, - [749] = 743, - [750] = 219, - [751] = 223, - [752] = 743, - [753] = 743, - [754] = 743, + [743] = 742, + [744] = 744, + [745] = 742, + [746] = 742, + [747] = 742, + [748] = 742, + [749] = 742, + [750] = 701, + [751] = 742, + [752] = 225, + [753] = 742, + [754] = 226, [755] = 755, [756] = 756, - [757] = 229, - [758] = 758, - [759] = 759, + [757] = 757, + [758] = 757, + [759] = 222, [760] = 760, - [761] = 760, - [762] = 760, - [763] = 760, + [761] = 761, + [762] = 762, + [763] = 763, [764] = 764, - [765] = 765, - [766] = 766, + [765] = 239, + [766] = 757, [767] = 767, [768] = 768, - [769] = 239, + [769] = 769, [770] = 770, [771] = 771, [772] = 772, [773] = 773, - [774] = 774, + [774] = 757, [775] = 775, [776] = 776, - [777] = 777, + [777] = 246, [778] = 778, - [779] = 779, + [779] = 757, [780] = 780, - [781] = 216, - [782] = 760, + [781] = 781, + [782] = 782, [783] = 783, [784] = 784, [785] = 785, @@ -5436,18 +5468,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [792] = 792, [793] = 793, [794] = 794, - [795] = 784, + [795] = 795, [796] = 796, [797] = 797, [798] = 798, [799] = 799, [800] = 794, - [801] = 784, + [801] = 795, [802] = 802, [803] = 803, - [804] = 794, - [805] = 784, - [806] = 806, + [804] = 804, + [805] = 794, + [806] = 795, [807] = 807, [808] = 808, [809] = 809, @@ -5455,7 +5487,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [811] = 811, [812] = 812, [813] = 813, - [814] = 814, + [814] = 795, [815] = 815, [816] = 816, [817] = 817, @@ -5475,7 +5507,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [831] = 831, [832] = 832, [833] = 833, - [834] = 794, + [834] = 834, [835] = 835, [836] = 836, [837] = 837, @@ -5491,12 +5523,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [847] = 847, [848] = 848, [849] = 849, - [850] = 850, - [851] = 851, + [850] = 230, + [851] = 794, [852] = 852, - [853] = 234, + [853] = 853, [854] = 854, - [855] = 252, + [855] = 855, [856] = 856, [857] = 857, [858] = 858, @@ -5505,10 +5537,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [861] = 861, [862] = 862, [863] = 863, - [864] = 784, + [864] = 864, [865] = 865, [866] = 866, - [867] = 867, + [867] = 228, [868] = 868, [869] = 869, [870] = 870, @@ -5526,8 +5558,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [882] = 882, [883] = 883, [884] = 884, - [885] = 885, - [886] = 886, + [885] = 242, + [886] = 245, [887] = 887, [888] = 888, [889] = 889, @@ -5545,14 +5577,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [901] = 901, [902] = 902, [903] = 903, - [904] = 245, + [904] = 904, [905] = 905, - [906] = 794, + [906] = 906, [907] = 907, [908] = 908, - [909] = 909, + [909] = 794, [910] = 910, - [911] = 247, + [911] = 795, [912] = 912, [913] = 913, [914] = 914, @@ -5561,56 +5593,56 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [917] = 917, [918] = 918, [919] = 919, - [920] = 920, - [921] = 918, - [922] = 919, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 919, - [928] = 928, + [920] = 918, + [921] = 917, + [922] = 922, + [923] = 918, + [924] = 917, + [925] = 918, + [926] = 917, + [927] = 927, + [928] = 918, [929] = 929, [930] = 930, [931] = 931, - [932] = 919, - [933] = 933, + [932] = 932, + [933] = 917, [934] = 934, - [935] = 918, + [935] = 935, [936] = 936, - [937] = 923, - [938] = 923, - [939] = 919, - [940] = 923, - [941] = 919, - [942] = 923, - [943] = 923, - [944] = 755, - [945] = 919, - [946] = 756, - [947] = 923, + [937] = 937, + [938] = 922, + [939] = 778, + [940] = 940, + [941] = 918, + [942] = 922, + [943] = 917, + [944] = 756, + [945] = 918, + [946] = 917, + [947] = 947, [948] = 948, [949] = 949, [950] = 950, - [951] = 949, + [951] = 948, [952] = 952, - [953] = 950, - [954] = 949, - [955] = 949, - [956] = 952, + [953] = 949, + [954] = 948, + [955] = 948, + [956] = 950, [957] = 957, - [958] = 958, - [959] = 952, - [960] = 960, + [958] = 949, + [959] = 959, + [960] = 950, [961] = 949, - [962] = 952, - [963] = 949, - [964] = 952, - [965] = 952, - [966] = 950, - [967] = 952, - [968] = 950, - [969] = 949, + [962] = 949, + [963] = 963, + [964] = 948, + [965] = 948, + [966] = 949, + [967] = 949, + [968] = 948, + [969] = 950, [970] = 950, [971] = 971, [972] = 972, @@ -5620,152 +5652,152 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [976] = 976, [977] = 977, [978] = 978, - [979] = 979, + [979] = 977, [980] = 980, [981] = 981, - [982] = 982, + [982] = 977, [983] = 983, [984] = 984, - [985] = 982, - [986] = 972, - [987] = 973, + [985] = 985, + [986] = 986, + [987] = 981, [988] = 988, [989] = 989, - [990] = 974, - [991] = 975, - [992] = 980, - [993] = 981, + [990] = 990, + [991] = 976, + [992] = 992, + [993] = 983, [994] = 994, [995] = 995, - [996] = 976, - [997] = 972, - [998] = 973, - [999] = 974, - [1000] = 975, - [1001] = 976, - [1002] = 978, - [1003] = 978, - [1004] = 983, - [1005] = 984, - [1006] = 971, - [1007] = 988, - [1008] = 989, - [1009] = 1009, - [1010] = 980, + [996] = 988, + [997] = 990, + [998] = 995, + [999] = 999, + [1000] = 1000, + [1001] = 974, + [1002] = 975, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 977, + [1007] = 976, + [1008] = 1008, + [1009] = 994, + [1010] = 971, [1011] = 1011, - [1012] = 1012, - [1013] = 981, - [1014] = 1014, - [1015] = 1015, - [1016] = 1016, - [1017] = 1017, - [1018] = 994, - [1019] = 995, - [1020] = 994, - [1021] = 1021, - [1022] = 995, - [1023] = 974, - [1024] = 980, - [1025] = 981, - [1026] = 975, - [1027] = 972, - [1028] = 973, - [1029] = 976, - [1030] = 978, - [1031] = 994, - [1032] = 995, - [1033] = 1021, - [1034] = 1034, - [1035] = 974, - [1036] = 975, - [1037] = 1037, - [1038] = 976, - [1039] = 978, - [1040] = 1034, - [1041] = 1041, - [1042] = 983, - [1043] = 984, - [1044] = 971, - [1045] = 988, - [1046] = 989, - [1047] = 1009, - [1048] = 1048, - [1049] = 1049, + [1012] = 1000, + [1013] = 983, + [1014] = 984, + [1015] = 985, + [1016] = 986, + [1017] = 981, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 984, + [1022] = 994, + [1023] = 971, + [1024] = 988, + [1025] = 990, + [1026] = 995, + [1027] = 999, + [1028] = 1003, + [1029] = 974, + [1030] = 977, + [1031] = 975, + [1032] = 1003, + [1033] = 976, + [1034] = 1004, + [1035] = 1035, + [1036] = 983, + [1037] = 984, + [1038] = 985, + [1039] = 986, + [1040] = 981, + [1041] = 985, + [1042] = 994, + [1043] = 971, + [1044] = 995, + [1045] = 999, + [1046] = 974, + [1047] = 975, + [1048] = 1003, + [1049] = 1004, [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 974, - [1054] = 975, - [1055] = 1037, - [1056] = 972, - [1057] = 973, - [1058] = 1037, - [1059] = 1059, - [1060] = 1041, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 1012, - [1065] = 976, - [1066] = 980, - [1067] = 981, - [1068] = 983, - [1069] = 984, - [1070] = 971, - [1071] = 988, - [1072] = 989, - [1073] = 994, - [1074] = 980, - [1075] = 981, - [1076] = 995, - [1077] = 972, - [1078] = 972, - [1079] = 1009, - [1080] = 978, - [1081] = 1037, - [1082] = 973, - [1083] = 973, - [1084] = 994, - [1085] = 994, - [1086] = 995, - [1087] = 1009, - [1088] = 995, - [1089] = 983, - [1090] = 984, - [1091] = 971, - [1092] = 988, - [1093] = 989, - [1094] = 1009, - [1095] = 1037, - [1096] = 1059, - [1097] = 1097, - [1098] = 1098, - [1099] = 974, - [1100] = 975, - [1101] = 1009, - [1102] = 1009, - [1103] = 976, - [1104] = 1017, - [1105] = 983, - [1106] = 984, - [1107] = 983, - [1108] = 984, - [1109] = 971, - [1110] = 988, - [1111] = 989, - [1112] = 971, - [1113] = 1037, - [1114] = 988, - [1115] = 989, - [1116] = 978, - [1117] = 980, - [1118] = 981, - [1119] = 982, - [1120] = 1037, - [1121] = 982, - [1122] = 982, - [1123] = 982, - [1124] = 982, + [1051] = 973, + [1052] = 983, + [1053] = 984, + [1054] = 985, + [1055] = 999, + [1056] = 981, + [1057] = 977, + [1058] = 994, + [1059] = 977, + [1060] = 971, + [1061] = 995, + [1062] = 999, + [1063] = 994, + [1064] = 974, + [1065] = 975, + [1066] = 1003, + [1067] = 1004, + [1068] = 971, + [1069] = 983, + [1070] = 984, + [1071] = 985, + [1072] = 986, + [1073] = 981, + [1074] = 976, + [1075] = 988, + [1076] = 990, + [1077] = 988, + [1078] = 990, + [1079] = 986, + [1080] = 995, + [1081] = 999, + [1082] = 1035, + [1083] = 1050, + [1084] = 1084, + [1085] = 974, + [1086] = 975, + [1087] = 976, + [1088] = 1003, + [1089] = 989, + [1090] = 1004, + [1091] = 983, + [1092] = 984, + [1093] = 985, + [1094] = 986, + [1095] = 981, + [1096] = 1096, + [1097] = 994, + [1098] = 971, + [1099] = 1099, + [1100] = 988, + [1101] = 990, + [1102] = 1102, + [1103] = 995, + [1104] = 999, + [1105] = 1004, + [1106] = 1106, + [1107] = 974, + [1108] = 975, + [1109] = 1109, + [1110] = 1003, + [1111] = 1004, + [1112] = 1084, + [1113] = 1011, + [1114] = 976, + [1115] = 1115, + [1116] = 1116, + [1117] = 988, + [1118] = 990, + [1119] = 1011, + [1120] = 1011, + [1121] = 1011, + [1122] = 1011, + [1123] = 1011, + [1124] = 986, [1125] = 1125, [1126] = 1125, [1127] = 1125, @@ -5781,290 +5813,290 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1137] = 1137, [1138] = 1138, [1139] = 1138, - [1140] = 1140, - [1141] = 1140, - [1142] = 1138, - [1143] = 1140, - [1144] = 1137, - [1145] = 1137, + [1140] = 1138, + [1141] = 1137, + [1142] = 1142, + [1143] = 1137, + [1144] = 1142, + [1145] = 1142, [1146] = 1146, [1147] = 1147, [1148] = 1147, - [1149] = 1149, - [1150] = 1146, + [1149] = 1146, + [1150] = 1150, [1151] = 1151, [1152] = 1151, - [1153] = 1147, + [1153] = 1153, [1154] = 1154, - [1155] = 1155, - [1156] = 1149, + [1155] = 1154, + [1156] = 1153, [1157] = 1157, - [1158] = 1157, - [1159] = 1147, - [1160] = 1155, + [1158] = 1150, + [1159] = 1154, + [1160] = 1147, [1161] = 1147, - [1162] = 1157, - [1163] = 1147, - [1164] = 1154, - [1165] = 1154, - [1166] = 1155, + [1162] = 1153, + [1163] = 1157, + [1164] = 1157, + [1165] = 1147, + [1166] = 1147, [1167] = 1167, [1168] = 1168, [1169] = 1169, - [1170] = 1167, + [1170] = 1168, [1171] = 1171, [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, - [1176] = 1167, - [1177] = 1177, + [1176] = 1168, + [1177] = 1147, [1178] = 1178, [1179] = 1179, [1180] = 1180, [1181] = 1147, [1182] = 1182, - [1183] = 1147, + [1183] = 1183, [1184] = 1184, - [1185] = 756, - [1186] = 1146, - [1187] = 1175, - [1188] = 1188, - [1189] = 1189, + [1185] = 1185, + [1186] = 756, + [1187] = 1187, + [1188] = 1187, + [1189] = 1187, [1190] = 1190, [1191] = 1191, - [1192] = 1191, - [1193] = 1147, - [1194] = 1189, - [1195] = 1195, - [1196] = 1188, - [1197] = 1188, - [1198] = 1147, - [1199] = 1190, + [1192] = 1192, + [1193] = 1185, + [1194] = 1191, + [1195] = 1147, + [1196] = 1185, + [1197] = 1146, + [1198] = 1172, + [1199] = 1199, [1200] = 1147, - [1201] = 1201, - [1202] = 1202, - [1203] = 1190, - [1204] = 1204, - [1205] = 1191, - [1206] = 1147, - [1207] = 1147, - [1208] = 755, - [1209] = 1147, + [1201] = 1147, + [1202] = 1147, + [1203] = 778, + [1204] = 1192, + [1205] = 1147, + [1206] = 1206, + [1207] = 1207, + [1208] = 1191, + [1209] = 1167, [1210] = 1147, - [1211] = 1147, - [1212] = 1149, - [1213] = 1175, - [1214] = 1214, - [1215] = 1175, - [1216] = 1147, + [1211] = 1172, + [1212] = 1212, + [1213] = 1147, + [1214] = 1147, + [1215] = 1150, + [1216] = 1172, [1217] = 1217, - [1218] = 1218, + [1218] = 1172, [1219] = 1219, - [1220] = 1175, - [1221] = 1168, + [1220] = 1147, + [1221] = 1221, [1222] = 1222, - [1223] = 1223, + [1223] = 1221, [1224] = 1224, [1225] = 1225, - [1226] = 1225, + [1226] = 1172, [1227] = 1227, [1228] = 1224, - [1229] = 1224, - [1230] = 1175, - [1231] = 1222, - [1232] = 1175, - [1233] = 1224, - [1234] = 1227, + [1229] = 1225, + [1230] = 1221, + [1231] = 1224, + [1232] = 1199, + [1233] = 1147, + [1234] = 1234, [1235] = 1224, - [1236] = 1175, - [1237] = 1224, - [1238] = 1202, - [1239] = 1239, - [1240] = 1224, + [1236] = 1172, + [1237] = 1237, + [1238] = 1222, + [1239] = 1224, + [1240] = 1240, [1241] = 1224, [1242] = 1224, [1243] = 1243, - [1244] = 1219, - [1245] = 1245, - [1246] = 1175, + [1244] = 1172, + [1245] = 1234, + [1246] = 1224, [1247] = 1247, - [1248] = 1147, - [1249] = 1219, - [1250] = 1250, - [1251] = 1223, - [1252] = 1202, + [1248] = 1172, + [1249] = 1224, + [1250] = 1243, + [1251] = 1199, + [1252] = 1252, [1253] = 1253, - [1254] = 1202, + [1254] = 1207, [1255] = 1255, - [1256] = 1255, - [1257] = 1173, - [1258] = 1214, - [1259] = 1259, - [1260] = 1173, + [1256] = 1199, + [1257] = 1175, + [1258] = 1172, + [1259] = 1172, + [1260] = 1260, [1261] = 1261, - [1262] = 1195, - [1263] = 1202, - [1264] = 1175, - [1265] = 1265, - [1266] = 1171, - [1267] = 1173, - [1268] = 1265, - [1269] = 1243, - [1270] = 1270, - [1271] = 1175, + [1262] = 1262, + [1263] = 1212, + [1264] = 1212, + [1265] = 1175, + [1266] = 1199, + [1267] = 1267, + [1268] = 1237, + [1269] = 1171, + [1270] = 1267, + [1271] = 1171, [1272] = 1175, [1273] = 1273, - [1274] = 1274, - [1275] = 1214, - [1276] = 1202, - [1277] = 1261, - [1278] = 1171, - [1279] = 1261, - [1280] = 1243, - [1281] = 1171, + [1274] = 1262, + [1275] = 1267, + [1276] = 1172, + [1277] = 1277, + [1278] = 1260, + [1279] = 1237, + [1280] = 1171, + [1281] = 1199, [1282] = 1282, - [1283] = 1222, - [1284] = 1284, - [1285] = 1214, - [1286] = 1243, - [1287] = 1174, - [1288] = 756, - [1289] = 1195, + [1283] = 1252, + [1284] = 1199, + [1285] = 1212, + [1286] = 1234, + [1287] = 1172, + [1288] = 1182, + [1289] = 1289, [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1172, - [1294] = 1177, - [1295] = 1178, - [1296] = 1175, - [1297] = 1245, - [1298] = 1225, - [1299] = 1179, - [1300] = 1180, - [1301] = 1202, - [1302] = 1302, - [1303] = 755, - [1304] = 1222, - [1305] = 1225, - [1306] = 1222, - [1307] = 1222, - [1308] = 1214, - [1309] = 1214, - [1310] = 1225, - [1311] = 1291, - [1312] = 1291, - [1313] = 1292, - [1314] = 1225, - [1315] = 1292, - [1316] = 1202, - [1317] = 1282, - [1318] = 1202, - [1319] = 1175, - [1320] = 1169, - [1321] = 1214, + [1291] = 1183, + [1292] = 1290, + [1293] = 1293, + [1294] = 1290, + [1295] = 1212, + [1296] = 1243, + [1297] = 1243, + [1298] = 778, + [1299] = 1289, + [1300] = 1300, + [1301] = 756, + [1302] = 1179, + [1303] = 1234, + [1304] = 1243, + [1305] = 1199, + [1306] = 1180, + [1307] = 1199, + [1308] = 1212, + [1309] = 1243, + [1310] = 1310, + [1311] = 1289, + [1312] = 1234, + [1313] = 1173, + [1314] = 1300, + [1315] = 1237, + [1316] = 1207, + [1317] = 1184, + [1318] = 1234, + [1319] = 1172, + [1320] = 1178, + [1321] = 1243, [1322] = 1171, - [1323] = 1173, - [1324] = 1214, - [1325] = 1325, - [1326] = 1173, - [1327] = 1202, - [1328] = 1273, - [1329] = 1222, - [1330] = 1171, - [1331] = 1331, + [1323] = 1323, + [1324] = 1212, + [1325] = 1243, + [1326] = 1234, + [1327] = 1327, + [1328] = 1234, + [1329] = 1329, + [1330] = 1253, + [1331] = 1212, [1332] = 1332, - [1333] = 1222, - [1334] = 1325, - [1335] = 1195, - [1336] = 1336, - [1337] = 1195, - [1338] = 1214, - [1339] = 1225, - [1340] = 1225, - [1341] = 1341, - [1342] = 1250, - [1343] = 1343, - [1344] = 1344, - [1345] = 1345, - [1346] = 1225, - [1347] = 1225, - [1348] = 1348, - [1349] = 1171, - [1350] = 1227, - [1351] = 1345, - [1352] = 1345, - [1353] = 1353, + [1333] = 1261, + [1334] = 1171, + [1335] = 1335, + [1336] = 1175, + [1337] = 1175, + [1338] = 1335, + [1339] = 1212, + [1340] = 1199, + [1341] = 1207, + [1342] = 1207, + [1343] = 1207, + [1344] = 1171, + [1345] = 1175, + [1346] = 1346, + [1347] = 1347, + [1348] = 1346, + [1349] = 1346, + [1350] = 1346, + [1351] = 1346, + [1352] = 1352, + [1353] = 1234, [1354] = 1354, - [1355] = 1223, - [1356] = 1173, - [1357] = 1345, - [1358] = 1225, + [1355] = 1234, + [1356] = 1243, + [1357] = 1225, + [1358] = 1234, [1359] = 1222, - [1360] = 1222, - [1361] = 1345, - [1362] = 1225, - [1363] = 1345, - [1364] = 1222, - [1365] = 1195, - [1366] = 1214, - [1367] = 1222, - [1368] = 1225, - [1369] = 1222, - [1370] = 1265, - [1371] = 1222, - [1372] = 1222, - [1373] = 1222, - [1374] = 1195, - [1375] = 1195, - [1376] = 1245, - [1377] = 1225, - [1378] = 1341, - [1379] = 1331, - [1380] = 1225, - [1381] = 1225, - [1382] = 1195, + [1360] = 1346, + [1361] = 1212, + [1362] = 1234, + [1363] = 1243, + [1364] = 1364, + [1365] = 1365, + [1366] = 1243, + [1367] = 1243, + [1368] = 1332, + [1369] = 1207, + [1370] = 1234, + [1371] = 1252, + [1372] = 1243, + [1373] = 1327, + [1374] = 1262, + [1375] = 1234, + [1376] = 1207, + [1377] = 1234, + [1378] = 1243, + [1379] = 1234, + [1380] = 1243, + [1381] = 1243, + [1382] = 1382, [1383] = 1383, [1384] = 1384, - [1385] = 1383, - [1386] = 1386, - [1387] = 1387, - [1388] = 1386, - [1389] = 1387, - [1390] = 1387, - [1391] = 1387, - [1392] = 1392, - [1393] = 1387, - [1394] = 1386, + [1385] = 1385, + [1386] = 1383, + [1387] = 1384, + [1388] = 1385, + [1389] = 1384, + [1390] = 1383, + [1391] = 1384, + [1392] = 1385, + [1393] = 1393, + [1394] = 1385, [1395] = 1383, - [1396] = 1387, - [1397] = 1392, - [1398] = 1392, - [1399] = 1222, - [1400] = 1387, - [1401] = 1392, - [1402] = 1386, - [1403] = 1392, - [1404] = 1384, - [1405] = 1386, - [1406] = 1195, - [1407] = 1392, - [1408] = 1384, - [1409] = 1273, - [1410] = 1387, - [1411] = 1383, - [1412] = 1383, - [1413] = 1387, - [1414] = 1383, - [1415] = 1354, - [1416] = 1392, - [1417] = 1392, - [1418] = 1386, + [1396] = 1393, + [1397] = 1382, + [1398] = 1382, + [1399] = 1234, + [1400] = 1393, + [1401] = 1382, + [1402] = 1207, + [1403] = 1382, + [1404] = 1393, + [1405] = 1382, + [1406] = 1393, + [1407] = 1382, + [1408] = 1383, + [1409] = 1384, + [1410] = 1385, + [1411] = 1393, + [1412] = 1382, + [1413] = 1261, + [1414] = 1347, + [1415] = 1383, + [1416] = 1393, + [1417] = 1393, + [1418] = 1382, [1419] = 1384, - [1420] = 1392, - [1421] = 1384, - [1422] = 1384, - [1423] = 1225, + [1420] = 1243, + [1421] = 1207, + [1422] = 1385, + [1423] = 1393, [1424] = 1424, [1425] = 1424, [1426] = 1424, @@ -6077,26 +6109,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1433] = 1433, [1434] = 1433, [1435] = 1433, - [1436] = 1433, + [1436] = 1436, [1437] = 1433, - [1438] = 1438, + [1438] = 1433, [1439] = 1433, [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 1442, - [1444] = 1441, - [1445] = 1441, - [1446] = 1440, - [1447] = 1440, - [1448] = 1448, - [1449] = 1442, - [1450] = 1441, - [1451] = 1440, - [1452] = 1442, - [1453] = 1441, - [1454] = 1440, - [1455] = 1442, + [1441] = 1440, + [1442] = 1440, + [1443] = 1443, + [1444] = 1443, + [1445] = 1440, + [1446] = 1443, + [1447] = 1447, + [1448] = 1447, + [1449] = 1447, + [1450] = 1450, + [1451] = 1447, + [1452] = 1440, + [1453] = 1443, + [1454] = 1443, + [1455] = 1447, [1456] = 1456, [1457] = 1456, [1458] = 1456, @@ -6108,23 +6140,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1464] = 1464, [1465] = 1465, [1466] = 1466, - [1467] = 241, - [1468] = 1468, + [1467] = 1467, + [1468] = 231, [1469] = 1469, - [1470] = 248, + [1470] = 234, [1471] = 1471, - [1472] = 248, - [1473] = 1473, - [1474] = 948, + [1472] = 1472, + [1473] = 234, + [1474] = 231, [1475] = 1475, - [1476] = 241, + [1476] = 223, [1477] = 1477, [1478] = 1478, - [1479] = 1479, - [1480] = 957, - [1481] = 217, + [1479] = 957, + [1480] = 952, + [1481] = 1481, [1482] = 1482, - [1483] = 958, + [1483] = 959, [1484] = 1484, [1485] = 1485, [1486] = 1486, @@ -6138,26 +6170,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1494] = 1494, [1495] = 1495, [1496] = 1496, - [1497] = 219, - [1498] = 223, + [1497] = 1497, + [1498] = 1498, [1499] = 1499, - [1500] = 216, - [1501] = 219, - [1502] = 223, - [1503] = 216, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, [1504] = 1504, - [1505] = 246, + [1505] = 1505, [1506] = 1506, [1507] = 1507, - [1508] = 1508, - [1509] = 1509, - [1510] = 1510, + [1508] = 226, + [1509] = 225, + [1510] = 222, [1511] = 1511, [1512] = 1512, [1513] = 1513, - [1514] = 1514, + [1514] = 232, [1515] = 1515, - [1516] = 684, + [1516] = 1516, [1517] = 1517, [1518] = 1518, [1519] = 1519, @@ -6166,24 +6198,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 1525, + [1525] = 685, [1526] = 1526, [1527] = 1527, [1528] = 1528, [1529] = 1529, - [1530] = 1530, + [1530] = 687, [1531] = 1531, [1532] = 1532, [1533] = 1533, - [1534] = 686, + [1534] = 226, [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1538, + [1538] = 225, [1539] = 1539, [1540] = 1540, [1541] = 1541, - [1542] = 1542, + [1542] = 222, [1543] = 1543, [1544] = 1544, [1545] = 1545, @@ -6195,12 +6227,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1551] = 1551, [1552] = 1552, [1553] = 1553, - [1554] = 1554, - [1555] = 249, + [1554] = 688, + [1555] = 1555, [1556] = 1556, [1557] = 1557, [1558] = 1558, - [1559] = 687, + [1559] = 1559, [1560] = 1560, [1561] = 1561, [1562] = 1562, @@ -6224,21 +6256,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1580] = 1580, [1581] = 1581, [1582] = 1582, - [1583] = 685, - [1584] = 1584, + [1583] = 1583, + [1584] = 684, [1585] = 1585, - [1586] = 1586, + [1586] = 241, [1587] = 1587, [1588] = 1588, [1589] = 1589, [1590] = 1590, - [1591] = 1591, + [1591] = 686, [1592] = 1592, [1593] = 1593, [1594] = 1594, [1595] = 1595, [1596] = 1596, - [1597] = 688, + [1597] = 1597, [1598] = 1598, [1599] = 1599, [1600] = 1600, @@ -6263,13 +6295,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1619] = 1619, [1620] = 1620, [1621] = 1621, - [1622] = 1622, + [1622] = 242, [1623] = 1623, [1624] = 1624, [1625] = 1625, [1626] = 1626, - [1627] = 1627, - [1628] = 245, + [1627] = 1459, + [1628] = 1628, [1629] = 1629, [1630] = 1630, [1631] = 1631, @@ -6277,13 +6309,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 229, - [1637] = 252, + [1636] = 1636, + [1637] = 1637, [1638] = 1638, - [1639] = 247, - [1640] = 1459, - [1641] = 242, - [1642] = 239, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, + [1642] = 1642, [1643] = 1643, [1644] = 1644, [1645] = 1645, @@ -6300,8 +6332,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1656] = 1656, [1657] = 1657, [1658] = 1658, - [1659] = 1617, - [1660] = 1660, + [1659] = 1659, + [1660] = 245, [1661] = 1661, [1662] = 1662, [1663] = 1663, @@ -6311,7 +6343,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1667] = 1667, [1668] = 1668, [1669] = 1669, - [1670] = 1617, + [1670] = 1670, [1671] = 1671, [1672] = 1672, [1673] = 1673, @@ -6338,924 +6370,924 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1694] = 1694, [1695] = 1695, [1696] = 1696, - [1697] = 234, - [1698] = 229, + [1697] = 1697, + [1698] = 1698, [1699] = 1699, - [1700] = 239, - [1701] = 232, + [1700] = 1700, + [1701] = 1701, [1702] = 1702, [1703] = 1703, [1704] = 1704, - [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1708, - [1709] = 1709, - [1710] = 1710, - [1711] = 1711, - [1712] = 1617, - [1713] = 1713, - [1714] = 1714, + [1705] = 239, + [1706] = 1679, + [1707] = 246, + [1708] = 230, + [1709] = 228, + [1710] = 254, + [1711] = 239, + [1712] = 246, + [1713] = 244, + [1714] = 1679, [1715] = 1715, - [1716] = 1617, + [1716] = 1716, [1717] = 1717, [1718] = 1718, - [1719] = 1719, + [1719] = 1679, [1720] = 1720, [1721] = 1721, [1722] = 1722, [1723] = 1723, [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 242, - [1728] = 1728, - [1729] = 252, - [1730] = 1726, + [1725] = 1679, + [1726] = 1702, + [1727] = 1727, + [1728] = 1703, + [1729] = 1729, + [1730] = 254, [1731] = 1731, - [1732] = 1728, - [1733] = 249, - [1734] = 1734, - [1735] = 1695, - [1736] = 247, + [1732] = 1727, + [1733] = 241, + [1734] = 1704, + [1735] = 244, + [1736] = 242, [1737] = 1737, - [1738] = 1738, - [1739] = 1726, - [1740] = 245, - [1741] = 1728, - [1742] = 1465, + [1738] = 230, + [1739] = 1739, + [1740] = 228, + [1741] = 1741, + [1742] = 1463, [1743] = 232, - [1744] = 1726, - [1745] = 1466, - [1746] = 1463, - [1747] = 1468, - [1748] = 1748, - [1749] = 246, - [1750] = 234, - [1751] = 1726, - [1752] = 1728, - [1753] = 1728, - [1754] = 1610, - [1755] = 1676, - [1756] = 1471, - [1757] = 1488, - [1758] = 1657, - [1759] = 1488, - [1760] = 1657, - [1761] = 1496, - [1762] = 1496, - [1763] = 1496, - [1764] = 1672, - [1765] = 958, - [1766] = 1557, - [1767] = 1687, - [1768] = 1710, - [1769] = 1715, + [1744] = 1469, + [1745] = 1731, + [1746] = 1727, + [1747] = 1466, + [1748] = 1465, + [1749] = 1731, + [1750] = 1727, + [1751] = 1751, + [1752] = 245, + [1753] = 1731, + [1754] = 1727, + [1755] = 1731, + [1756] = 1617, + [1757] = 1634, + [1758] = 1636, + [1759] = 1666, + [1760] = 1760, + [1761] = 1637, + [1762] = 1638, + [1763] = 1639, + [1764] = 1640, + [1765] = 1641, + [1766] = 1642, + [1767] = 1610, + [1768] = 1643, + [1769] = 1644, [1770] = 1770, - [1771] = 1661, - [1772] = 1770, - [1773] = 1720, - [1774] = 1688, - [1775] = 1663, + [1771] = 1770, + [1772] = 1717, + [1773] = 1773, + [1774] = 1633, + [1775] = 1775, [1776] = 1776, - [1777] = 1725, - [1778] = 1624, - [1779] = 1722, - [1780] = 1625, - [1781] = 1699, - [1782] = 1708, - [1783] = 1710, - [1784] = 1626, - [1785] = 1785, - [1786] = 1488, - [1787] = 1679, - [1788] = 1671, - [1789] = 1770, - [1790] = 948, - [1791] = 1791, - [1792] = 1612, - [1793] = 1791, - [1794] = 1664, - [1795] = 1661, - [1796] = 1680, - [1797] = 1624, - [1798] = 1798, - [1799] = 1715, - [1800] = 1610, - [1801] = 1663, - [1802] = 957, - [1803] = 1687, - [1804] = 1475, - [1805] = 1688, - [1806] = 1791, - [1807] = 1720, - [1808] = 1672, - [1809] = 1722, - [1810] = 1723, - [1811] = 1723, - [1812] = 1632, - [1813] = 1813, - [1814] = 1478, - [1815] = 1776, - [1816] = 1656, - [1817] = 1486, - [1818] = 1632, - [1819] = 1664, - [1820] = 1708, - [1821] = 1695, - [1822] = 1679, - [1823] = 1665, - [1824] = 1612, - [1825] = 1654, - [1826] = 1490, - [1827] = 1827, - [1828] = 1484, - [1829] = 1699, - [1830] = 1625, - [1831] = 1626, - [1832] = 1666, - [1833] = 1623, - [1834] = 1506, - [1835] = 1835, - [1836] = 1667, - [1837] = 1473, - [1838] = 1680, - [1839] = 1770, - [1840] = 1477, - [1841] = 1654, - [1842] = 1770, - [1843] = 1485, - [1844] = 1482, - [1845] = 1845, - [1846] = 1656, - [1847] = 1725, - [1848] = 1665, - [1849] = 1666, - [1850] = 1667, - [1851] = 1791, - [1852] = 1623, - [1853] = 1671, - [1854] = 1676, - [1855] = 1708, - [1856] = 1856, - [1857] = 1857, - [1858] = 217, - [1859] = 1558, + [1777] = 1770, + [1778] = 957, + [1779] = 1773, + [1780] = 1670, + [1781] = 1693, + [1782] = 1654, + [1783] = 1783, + [1784] = 1663, + [1785] = 1484, + [1786] = 1471, + [1787] = 1671, + [1788] = 1616, + [1789] = 1647, + [1790] = 1648, + [1791] = 1617, + [1792] = 1773, + [1793] = 1503, + [1794] = 1485, + [1795] = 1723, + [1796] = 1636, + [1797] = 1717, + [1798] = 1718, + [1799] = 1720, + [1800] = 1723, + [1801] = 1519, + [1802] = 1637, + [1803] = 959, + [1804] = 1804, + [1805] = 1638, + [1806] = 1639, + [1807] = 1653, + [1808] = 1475, + [1809] = 1702, + [1810] = 1641, + [1811] = 1654, + [1812] = 1703, + [1813] = 1634, + [1814] = 1704, + [1815] = 1498, + [1816] = 1501, + [1817] = 1620, + [1818] = 1663, + [1819] = 1642, + [1820] = 1620, + [1821] = 1821, + [1822] = 1666, + [1823] = 1653, + [1824] = 1610, + [1825] = 1512, + [1826] = 1773, + [1827] = 1670, + [1828] = 1643, + [1829] = 1829, + [1830] = 1644, + [1831] = 1498, + [1832] = 1501, + [1833] = 1501, + [1834] = 1482, + [1835] = 1671, + [1836] = 1720, + [1837] = 1804, + [1838] = 1616, + [1839] = 1693, + [1840] = 1498, + [1841] = 1770, + [1842] = 1481, + [1843] = 1718, + [1844] = 1773, + [1845] = 1631, + [1846] = 1633, + [1847] = 1648, + [1848] = 952, + [1849] = 1478, + [1850] = 1472, + [1851] = 1631, + [1852] = 1477, + [1853] = 1647, + [1854] = 1640, + [1855] = 1543, + [1856] = 1821, + [1857] = 1592, + [1858] = 1858, + [1859] = 1859, [1860] = 1860, - [1861] = 1861, - [1862] = 1507, - [1863] = 1508, - [1864] = 1509, - [1865] = 1510, - [1866] = 1512, - [1867] = 1513, - [1868] = 1514, - [1869] = 1515, - [1870] = 1561, - [1871] = 1562, - [1872] = 1511, - [1873] = 1675, - [1874] = 1677, - [1875] = 1738, - [1876] = 1577, - [1877] = 684, - [1878] = 1517, - [1879] = 1518, - [1880] = 1519, - [1881] = 1881, - [1882] = 1827, - [1883] = 1520, - [1884] = 1521, - [1885] = 1522, - [1886] = 1523, - [1887] = 1524, - [1888] = 1525, - [1889] = 1526, - [1890] = 1527, - [1891] = 1528, - [1892] = 1529, - [1893] = 1530, - [1894] = 1531, - [1895] = 1532, - [1896] = 1491, + [1861] = 1512, + [1862] = 1862, + [1863] = 1863, + [1864] = 1864, + [1865] = 1865, + [1866] = 1519, + [1867] = 1498, + [1868] = 1868, + [1869] = 688, + [1870] = 1555, + [1871] = 1556, + [1872] = 1557, + [1873] = 1558, + [1874] = 1559, + [1875] = 1560, + [1876] = 1561, + [1877] = 1562, + [1878] = 1878, + [1879] = 1563, + [1880] = 1564, + [1881] = 1501, + [1882] = 1565, + [1883] = 1566, + [1884] = 1568, + [1885] = 1569, + [1886] = 1570, + [1887] = 1573, + [1888] = 1574, + [1889] = 1575, + [1890] = 1576, + [1891] = 1577, + [1892] = 1580, + [1893] = 1581, + [1894] = 1499, + [1895] = 1517, + [1896] = 1518, [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 686, - [1901] = 1535, - [1902] = 1536, - [1903] = 1537, - [1904] = 1538, - [1905] = 1609, - [1906] = 1539, - [1907] = 1540, - [1908] = 1541, - [1909] = 1909, - [1910] = 1542, - [1911] = 1543, - [1912] = 1544, - [1913] = 1545, - [1914] = 1546, - [1915] = 1547, - [1916] = 1548, - [1917] = 1549, - [1918] = 1550, + [1898] = 684, + [1899] = 1585, + [1900] = 1588, + [1901] = 1593, + [1902] = 1594, + [1903] = 1595, + [1904] = 1596, + [1905] = 1597, + [1906] = 1598, + [1907] = 1599, + [1908] = 1600, + [1909] = 1601, + [1910] = 1487, + [1911] = 1603, + [1912] = 1604, + [1913] = 1605, + [1914] = 1606, + [1915] = 1608, + [1916] = 1495, + [1917] = 1602, + [1918] = 1645, [1919] = 1551, - [1920] = 1552, - [1921] = 1553, - [1922] = 1554, - [1923] = 1556, - [1924] = 1487, - [1925] = 687, - [1926] = 1560, - [1927] = 1563, - [1928] = 1564, - [1929] = 1565, - [1930] = 1566, - [1931] = 1567, - [1932] = 1568, - [1933] = 1569, - [1934] = 1570, - [1935] = 1571, - [1936] = 1572, - [1937] = 1573, - [1938] = 1574, - [1939] = 1575, - [1940] = 1576, - [1941] = 1578, - [1942] = 1579, - [1943] = 1580, - [1944] = 1581, - [1945] = 1582, - [1946] = 1499, - [1947] = 685, - [1948] = 1584, - [1949] = 1585, - [1950] = 1586, - [1951] = 1587, - [1952] = 1588, - [1953] = 1589, - [1954] = 1590, - [1955] = 1591, - [1956] = 1592, - [1957] = 1593, - [1958] = 1594, - [1959] = 1595, - [1960] = 1596, - [1961] = 688, - [1962] = 1598, - [1963] = 1599, - [1964] = 1600, - [1965] = 1601, - [1966] = 1602, - [1967] = 1612, - [1968] = 1604, - [1969] = 1605, - [1970] = 1606, - [1971] = 1607, - [1972] = 1608, - [1973] = 1489, - [1974] = 217, - [1975] = 1860, - [1976] = 1533, - [1977] = 1677, - [1978] = 1978, + [1920] = 1507, + [1921] = 1520, + [1922] = 686, + [1923] = 1489, + [1924] = 1490, + [1925] = 1925, + [1926] = 1492, + [1927] = 1494, + [1928] = 1496, + [1929] = 1497, + [1930] = 1511, + [1931] = 1931, + [1932] = 1513, + [1933] = 1515, + [1934] = 1516, + [1935] = 1521, + [1936] = 1523, + [1937] = 1524, + [1938] = 685, + [1939] = 1531, + [1940] = 1533, + [1941] = 1550, + [1942] = 1567, + [1943] = 1571, + [1944] = 1578, + [1945] = 1579, + [1946] = 1582, + [1947] = 1583, + [1948] = 1589, + [1949] = 1522, + [1950] = 1590, + [1951] = 1951, + [1952] = 223, + [1953] = 1953, + [1954] = 1954, + [1955] = 1925, + [1956] = 1572, + [1957] = 1957, + [1958] = 1526, + [1959] = 1959, + [1960] = 1680, + [1961] = 1961, + [1962] = 1646, + [1963] = 1957, + [1964] = 1527, + [1965] = 1704, + [1966] = 1966, + [1967] = 1957, + [1968] = 1519, + [1969] = 1957, + [1970] = 1528, + [1971] = 1498, + [1972] = 1529, + [1973] = 687, + [1974] = 1501, + [1975] = 1729, + [1976] = 1504, + [1977] = 1532, + [1978] = 1607, [1979] = 1488, - [1980] = 1496, - [1981] = 1492, - [1982] = 1493, - [1983] = 1494, - [1984] = 1860, - [1985] = 1985, - [1986] = 1675, - [1987] = 1987, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 1495, - [1992] = 1504, - [1993] = 1638, - [1994] = 1994, - [1995] = 1881, - [1996] = 1827, - [1997] = 1860, - [1998] = 1676, - [1999] = 1488, - [2000] = 1496, - [2001] = 1506, - [2002] = 1490, - [2003] = 1860, - [2004] = 1488, - [2005] = 1496, - [2006] = 1675, - [2007] = 1638, - [2008] = 1677, - [2009] = 1557, - [2010] = 1985, - [2011] = 1495, - [2012] = 1504, - [2013] = 1638, - [2014] = 1506, - [2015] = 2015, - [2016] = 1695, - [2017] = 1860, - [2018] = 2018, - [2019] = 2019, + [1980] = 1980, + [1981] = 1587, + [1982] = 1505, + [1983] = 1506, + [1984] = 1535, + [1985] = 1536, + [1986] = 1986, + [1987] = 1646, + [1988] = 1703, + [1989] = 1863, + [1990] = 1821, + [1991] = 1957, + [1992] = 1493, + [1993] = 1616, + [1994] = 1617, + [1995] = 1620, + [1996] = 1631, + [1997] = 1633, + [1998] = 1634, + [1999] = 1636, + [2000] = 1637, + [2001] = 1638, + [2002] = 1639, + [2003] = 1640, + [2004] = 1641, + [2005] = 1642, + [2006] = 1643, + [2007] = 1644, + [2008] = 1645, + [2009] = 1647, + [2010] = 1648, + [2011] = 1653, + [2012] = 1654, + [2013] = 1663, + [2014] = 1666, + [2015] = 1610, + [2016] = 1670, + [2017] = 1671, + [2018] = 1537, + [2019] = 1693, [2020] = 2020, - [2021] = 2021, - [2022] = 1738, + [2021] = 1539, + [2022] = 1540, [2023] = 2023, - [2024] = 2024, - [2025] = 2025, - [2026] = 1490, - [2027] = 2027, - [2028] = 2028, - [2029] = 1610, - [2030] = 1623, - [2031] = 1624, - [2032] = 1632, - [2033] = 1654, - [2034] = 1656, - [2035] = 1657, - [2036] = 1661, - [2037] = 1663, - [2038] = 1664, - [2039] = 1665, - [2040] = 1666, - [2041] = 1667, - [2042] = 1725, - [2043] = 1671, - [2044] = 1672, - [2045] = 1679, - [2046] = 1680, - [2047] = 1687, - [2048] = 1688, - [2049] = 1715, - [2050] = 1720, - [2051] = 1722, - [2052] = 1625, - [2053] = 1626, - [2054] = 1723, - [2055] = 2055, - [2056] = 1699, - [2057] = 1710, - [2058] = 1603, - [2059] = 2059, - [2060] = 243, - [2061] = 244, + [2024] = 1541, + [2025] = 1544, + [2026] = 1545, + [2027] = 1546, + [2028] = 1547, + [2029] = 2029, + [2030] = 1500, + [2031] = 1548, + [2032] = 2032, + [2033] = 2033, + [2034] = 1500, + [2035] = 1549, + [2036] = 1502, + [2037] = 1680, + [2038] = 1498, + [2039] = 223, + [2040] = 1502, + [2041] = 1680, + [2042] = 1501, + [2043] = 1609, + [2044] = 1503, + [2045] = 1503, + [2046] = 1552, + [2047] = 1645, + [2048] = 1553, + [2049] = 1957, + [2050] = 1646, + [2051] = 1729, + [2052] = 1717, + [2053] = 1718, + [2054] = 1720, + [2055] = 1723, + [2056] = 1491, + [2057] = 1702, + [2058] = 2058, + [2059] = 1694, + [2060] = 2060, + [2061] = 1721, [2062] = 2062, - [2063] = 2063, - [2064] = 250, - [2065] = 251, - [2066] = 231, + [2063] = 1501, + [2064] = 1656, + [2065] = 2065, + [2066] = 2066, [2067] = 2067, - [2068] = 233, - [2069] = 2069, + [2068] = 2068, + [2069] = 1632, [2070] = 2070, - [2071] = 1696, - [2072] = 2072, + [2071] = 1652, + [2072] = 1665, [2073] = 2073, - [2074] = 2074, - [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 1813, - [2080] = 1611, - [2081] = 1738, - [2082] = 2082, - [2083] = 1647, - [2084] = 2084, - [2085] = 1648, - [2086] = 1649, + [2074] = 229, + [2075] = 2067, + [2076] = 1620, + [2077] = 229, + [2078] = 1631, + [2079] = 2079, + [2080] = 1618, + [2081] = 2081, + [2082] = 1645, + [2083] = 1722, + [2084] = 1690, + [2085] = 1633, + [2086] = 2086, [2087] = 2087, - [2088] = 1660, - [2089] = 237, - [2090] = 1650, + [2088] = 1614, + [2089] = 1612, + [2090] = 237, [2091] = 2091, - [2092] = 2092, - [2093] = 2093, - [2094] = 1692, - [2095] = 1731, - [2096] = 1622, - [2097] = 1713, - [2098] = 1714, - [2099] = 1717, - [2100] = 1719, - [2101] = 2072, - [2102] = 2102, - [2103] = 2074, - [2104] = 1721, - [2105] = 1707, - [2106] = 1675, - [2107] = 2107, - [2108] = 1629, - [2109] = 1633, - [2110] = 228, - [2111] = 1646, - [2112] = 2112, - [2113] = 1638, - [2114] = 231, - [2115] = 240, - [2116] = 1678, - [2117] = 1634, - [2118] = 1690, - [2119] = 2072, - [2120] = 233, - [2121] = 2074, - [2122] = 2122, - [2123] = 2123, - [2124] = 1702, - [2125] = 1613, - [2126] = 1674, - [2127] = 1618, - [2128] = 1813, - [2129] = 1488, - [2130] = 1496, - [2131] = 1651, - [2132] = 2122, - [2133] = 2123, - [2134] = 2134, - [2135] = 1488, - [2136] = 1496, - [2137] = 2122, - [2138] = 2123, - [2139] = 2122, - [2140] = 2123, - [2141] = 2122, - [2142] = 2123, - [2143] = 1652, - [2144] = 2144, - [2145] = 2145, - [2146] = 2146, - [2147] = 1682, - [2148] = 2148, - [2149] = 1683, - [2150] = 1623, - [2151] = 1624, - [2152] = 2152, - [2153] = 2153, - [2154] = 1632, - [2155] = 1644, - [2156] = 1658, - [2157] = 1662, - [2158] = 1654, - [2159] = 1656, - [2160] = 1657, - [2161] = 2076, - [2162] = 1661, - [2163] = 2107, - [2164] = 1663, - [2165] = 1664, - [2166] = 1665, - [2167] = 1666, - [2168] = 1667, - [2169] = 1725, - [2170] = 1671, - [2171] = 1672, - [2172] = 1684, - [2173] = 2082, - [2174] = 1679, - [2175] = 1680, - [2176] = 2148, - [2177] = 1687, - [2178] = 1688, - [2179] = 1704, - [2180] = 1715, - [2181] = 1720, - [2182] = 1722, - [2183] = 1625, - [2184] = 1626, - [2185] = 1705, - [2186] = 2153, - [2187] = 1723, + [2092] = 238, + [2093] = 2067, + [2094] = 1717, + [2095] = 249, + [2096] = 250, + [2097] = 1718, + [2098] = 1821, + [2099] = 2099, + [2100] = 2100, + [2101] = 1720, + [2102] = 1623, + [2103] = 2103, + [2104] = 252, + [2105] = 2105, + [2106] = 1672, + [2107] = 1673, + [2108] = 2070, + [2109] = 1723, + [2110] = 2110, + [2111] = 2111, + [2112] = 1674, + [2113] = 249, + [2114] = 250, + [2115] = 1634, + [2116] = 1675, + [2117] = 2117, + [2118] = 1624, + [2119] = 1500, + [2120] = 2120, + [2121] = 2070, + [2122] = 1676, + [2123] = 1502, + [2124] = 1680, + [2125] = 2073, + [2126] = 1677, + [2127] = 2127, + [2128] = 2066, + [2129] = 2129, + [2130] = 1678, + [2131] = 1649, + [2132] = 236, + [2133] = 251, + [2134] = 1619, + [2135] = 2135, + [2136] = 1625, + [2137] = 233, + [2138] = 1635, + [2139] = 2066, + [2140] = 2140, + [2141] = 2141, + [2142] = 2142, + [2143] = 1636, + [2144] = 235, + [2145] = 1626, + [2146] = 1616, + [2147] = 1617, + [2148] = 1637, + [2149] = 1638, + [2150] = 2150, + [2151] = 1639, + [2152] = 1659, + [2153] = 1640, + [2154] = 1741, + [2155] = 1641, + [2156] = 237, + [2157] = 2157, + [2158] = 1642, + [2159] = 238, + [2160] = 2160, + [2161] = 2161, + [2162] = 1695, + [2163] = 1620, + [2164] = 247, + [2165] = 2165, + [2166] = 248, + [2167] = 1696, + [2168] = 1697, + [2169] = 2081, + [2170] = 2170, + [2171] = 2171, + [2172] = 1643, + [2173] = 1644, + [2174] = 2174, + [2175] = 1647, + [2176] = 2176, + [2177] = 1698, + [2178] = 2067, + [2179] = 2179, + [2180] = 2066, + [2181] = 1648, + [2182] = 1653, + [2183] = 1654, + [2184] = 2067, + [2185] = 1663, + [2186] = 2070, + [2187] = 1699, [2188] = 2188, - [2189] = 1706, - [2190] = 1711, - [2191] = 1615, - [2192] = 1616, - [2193] = 1630, - [2194] = 2076, - [2195] = 2195, - [2196] = 2196, - [2197] = 2197, - [2198] = 2198, - [2199] = 1685, - [2200] = 2072, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, - [2204] = 2076, - [2205] = 2205, - [2206] = 2206, - [2207] = 2074, - [2208] = 2208, - [2209] = 2076, + [2189] = 1631, + [2190] = 1633, + [2191] = 1634, + [2192] = 2066, + [2193] = 1666, + [2194] = 1613, + [2195] = 1636, + [2196] = 2157, + [2197] = 1637, + [2198] = 1638, + [2199] = 1610, + [2200] = 1670, + [2201] = 1667, + [2202] = 1760, + [2203] = 1639, + [2204] = 2204, + [2205] = 1640, + [2206] = 1641, + [2207] = 2207, + [2208] = 1671, + [2209] = 1693, [2210] = 2210, - [2211] = 2211, - [2212] = 2076, - [2213] = 2076, - [2214] = 2214, - [2215] = 1699, - [2216] = 1978, - [2217] = 1708, - [2218] = 230, + [2211] = 2070, + [2212] = 2142, + [2213] = 247, + [2214] = 1661, + [2215] = 248, + [2216] = 1700, + [2217] = 1655, + [2218] = 1668, [2219] = 2219, - [2220] = 1612, - [2221] = 2221, + [2220] = 1643, + [2221] = 1644, [2222] = 2222, - [2223] = 2223, - [2224] = 235, - [2225] = 1653, - [2226] = 1655, - [2227] = 2152, - [2228] = 2077, - [2229] = 1631, - [2230] = 2198, - [2231] = 2210, + [2223] = 1760, + [2224] = 1729, + [2225] = 251, + [2226] = 2161, + [2227] = 1718, + [2228] = 1651, + [2229] = 2229, + [2230] = 1720, + [2231] = 1729, [2232] = 2232, - [2233] = 2233, + [2233] = 1723, [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 1686, - [2238] = 1689, - [2239] = 1709, - [2240] = 1614, - [2241] = 2241, - [2242] = 2242, + [2235] = 1701, + [2236] = 1717, + [2237] = 2165, + [2238] = 2238, + [2239] = 1662, + [2240] = 2240, + [2241] = 2234, + [2242] = 1628, [2243] = 2243, - [2244] = 1623, - [2245] = 1624, - [2246] = 1632, - [2247] = 1654, - [2248] = 1656, - [2249] = 1657, - [2250] = 1661, - [2251] = 1663, - [2252] = 1664, - [2253] = 1665, - [2254] = 1666, - [2255] = 1667, - [2256] = 1725, - [2257] = 1671, - [2258] = 1672, - [2259] = 1679, - [2260] = 1680, - [2261] = 1687, - [2262] = 1688, - [2263] = 1715, - [2264] = 1720, - [2265] = 1722, - [2266] = 1625, - [2267] = 1626, - [2268] = 1723, - [2269] = 2072, + [2244] = 1658, + [2245] = 1729, + [2246] = 1621, + [2247] = 1647, + [2248] = 1648, + [2249] = 2249, + [2250] = 1653, + [2251] = 1654, + [2252] = 2252, + [2253] = 2066, + [2254] = 1716, + [2255] = 1966, + [2256] = 2142, + [2257] = 2165, + [2258] = 2243, + [2259] = 2259, + [2260] = 1663, + [2261] = 1666, + [2262] = 1610, + [2263] = 1670, + [2264] = 1671, + [2265] = 2265, + [2266] = 2266, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, [2270] = 2270, - [2271] = 1718, - [2272] = 1673, - [2273] = 1724, - [2274] = 1627, - [2275] = 1643, - [2276] = 1645, - [2277] = 1668, + [2271] = 2271, + [2272] = 2272, + [2273] = 1657, + [2274] = 2087, + [2275] = 236, + [2276] = 2276, + [2277] = 2277, [2278] = 2278, - [2279] = 1699, - [2280] = 1708, - [2281] = 1710, - [2282] = 1612, - [2283] = 2283, - [2284] = 1557, - [2285] = 2285, - [2286] = 2074, - [2287] = 2232, - [2288] = 1691, - [2289] = 2233, - [2290] = 2290, - [2291] = 2234, - [2292] = 2292, - [2293] = 2293, + [2279] = 2279, + [2280] = 1616, + [2281] = 2249, + [2282] = 1611, + [2283] = 2234, + [2284] = 2284, + [2285] = 1617, + [2286] = 2268, + [2287] = 2269, + [2288] = 2288, + [2289] = 2229, + [2290] = 1693, + [2291] = 2291, + [2292] = 1715, + [2293] = 2268, [2294] = 2294, [2295] = 2295, [2296] = 2296, - [2297] = 2297, - [2298] = 2298, - [2299] = 2299, - [2300] = 2201, - [2301] = 243, - [2302] = 2146, - [2303] = 244, - [2304] = 2304, - [2305] = 1619, - [2306] = 2306, - [2307] = 2072, - [2308] = 1693, - [2309] = 2074, - [2310] = 236, - [2311] = 1978, - [2312] = 250, - [2313] = 1675, - [2314] = 251, - [2315] = 1620, - [2316] = 2316, - [2317] = 1621, - [2318] = 1738, - [2319] = 230, - [2320] = 235, - [2321] = 1827, - [2322] = 237, - [2323] = 2299, - [2324] = 1694, - [2325] = 1495, - [2326] = 236, - [2327] = 1504, - [2328] = 1638, - [2329] = 1738, - [2330] = 1669, - [2331] = 2331, - [2332] = 2332, - [2333] = 1635, - [2334] = 1681, - [2335] = 1703, - [2336] = 2336, - [2337] = 2337, - [2338] = 2278, - [2339] = 2339, - [2340] = 2198, - [2341] = 2341, - [2342] = 2232, - [2343] = 2233, - [2344] = 2235, - [2345] = 2235, - [2346] = 1557, - [2347] = 2299, - [2348] = 2201, - [2349] = 2278, - [2350] = 228, - [2351] = 240, - [2352] = 2352, - [2353] = 2236, - [2354] = 1710, - [2355] = 1557, + [2297] = 1512, + [2298] = 2171, + [2299] = 2229, + [2300] = 2267, + [2301] = 1681, + [2302] = 1682, + [2303] = 1683, + [2304] = 1680, + [2305] = 2295, + [2306] = 2099, + [2307] = 2307, + [2308] = 2081, + [2309] = 1615, + [2310] = 2171, + [2311] = 1691, + [2312] = 1692, + [2313] = 233, + [2314] = 1684, + [2315] = 1498, + [2316] = 1685, + [2317] = 2269, + [2318] = 2142, + [2319] = 1629, + [2320] = 2320, + [2321] = 2321, + [2322] = 2322, + [2323] = 2165, + [2324] = 1645, + [2325] = 1498, + [2326] = 2252, + [2327] = 2327, + [2328] = 2328, + [2329] = 235, + [2330] = 2330, + [2331] = 1501, + [2332] = 1650, + [2333] = 2067, + [2334] = 2294, + [2335] = 2335, + [2336] = 1512, + [2337] = 2070, + [2338] = 252, + [2339] = 1669, + [2340] = 2340, + [2341] = 1664, + [2342] = 2066, + [2343] = 2142, + [2344] = 2165, + [2345] = 1966, + [2346] = 2346, + [2347] = 1686, + [2348] = 2294, + [2349] = 1687, + [2350] = 1688, + [2351] = 1689, + [2352] = 1724, + [2353] = 1630, + [2354] = 1642, + [2355] = 1729, [2356] = 2356, [2357] = 2357, - [2358] = 2357, - [2359] = 1677, + [2358] = 2358, + [2359] = 2359, [2360] = 2360, - [2361] = 2361, + [2361] = 1775, [2362] = 2362, [2363] = 2363, - [2364] = 1506, + [2364] = 2364, [2365] = 2365, - [2366] = 1490, - [2367] = 1610, - [2368] = 1676, - [2369] = 1695, - [2370] = 2357, + [2366] = 2366, + [2367] = 2360, + [2368] = 2368, + [2369] = 2369, + [2370] = 2370, [2371] = 2371, - [2372] = 1677, - [2373] = 1738, - [2374] = 1495, + [2372] = 2372, + [2373] = 2373, + [2374] = 2374, [2375] = 2375, - [2376] = 1504, + [2376] = 2376, [2377] = 2377, - [2378] = 2357, - [2379] = 1675, - [2380] = 1638, - [2381] = 1676, + [2378] = 2378, + [2379] = 2379, + [2380] = 2380, + [2381] = 240, [2382] = 2382, - [2383] = 1488, - [2384] = 1496, + [2383] = 2360, + [2384] = 1760, [2385] = 2385, [2386] = 2386, - [2387] = 1835, + [2387] = 2387, [2388] = 2388, - [2389] = 2389, + [2389] = 2360, [2390] = 2390, - [2391] = 2391, + [2391] = 1646, [2392] = 2392, - [2393] = 2392, - [2394] = 2394, - [2395] = 2395, - [2396] = 2375, - [2397] = 2389, - [2398] = 2398, - [2399] = 2399, - [2400] = 2400, - [2401] = 2401, - [2402] = 2402, - [2403] = 2357, - [2404] = 2404, - [2405] = 2405, - [2406] = 2398, - [2407] = 2407, - [2408] = 2399, + [2393] = 1503, + [2394] = 1519, + [2395] = 1702, + [2396] = 1703, + [2397] = 1704, + [2398] = 2360, + [2399] = 1646, + [2400] = 1729, + [2401] = 1500, + [2402] = 1502, + [2403] = 2360, + [2404] = 1645, + [2405] = 1680, + [2406] = 1703, + [2407] = 1498, + [2408] = 1501, [2409] = 2409, - [2410] = 253, - [2411] = 2411, - [2412] = 2412, - [2413] = 253, - [2414] = 1623, - [2415] = 1624, - [2416] = 1632, - [2417] = 1654, - [2418] = 1656, - [2419] = 1657, - [2420] = 1661, - [2421] = 1663, - [2422] = 1664, - [2423] = 1665, - [2424] = 1666, - [2425] = 1667, - [2426] = 1725, - [2427] = 1671, - [2428] = 1672, - [2429] = 1679, - [2430] = 1680, - [2431] = 1687, - [2432] = 1688, - [2433] = 1715, - [2434] = 1720, - [2435] = 1722, - [2436] = 1625, - [2437] = 1626, - [2438] = 1723, - [2439] = 1699, - [2440] = 1708, - [2441] = 1710, - [2442] = 1612, - [2443] = 2443, - [2444] = 2357, - [2445] = 1813, - [2446] = 1623, - [2447] = 1624, - [2448] = 1632, - [2449] = 1654, - [2450] = 1656, - [2451] = 1657, - [2452] = 1661, - [2453] = 1663, - [2454] = 1664, - [2455] = 1665, - [2456] = 1666, - [2457] = 1667, - [2458] = 1725, - [2459] = 1671, - [2460] = 1672, - [2461] = 1679, - [2462] = 1680, - [2463] = 1687, - [2464] = 1688, - [2465] = 1715, - [2466] = 1720, - [2467] = 1722, - [2468] = 1625, - [2469] = 1626, - [2470] = 1723, - [2471] = 1699, - [2472] = 1708, - [2473] = 1710, - [2474] = 1612, - [2475] = 1738, - [2476] = 1738, - [2477] = 2386, - [2478] = 1626, - [2479] = 2479, - [2480] = 2480, - [2481] = 2481, - [2482] = 2482, - [2483] = 2483, - [2484] = 1506, - [2485] = 2485, - [2486] = 1623, - [2487] = 1624, - [2488] = 948, - [2489] = 1490, - [2490] = 1632, - [2491] = 1654, - [2492] = 1656, - [2493] = 1657, - [2494] = 1661, - [2495] = 1663, - [2496] = 1664, - [2497] = 1665, - [2498] = 1666, - [2499] = 1667, - [2500] = 1725, - [2501] = 1671, - [2502] = 1672, - [2503] = 1679, - [2504] = 1680, - [2505] = 1687, - [2506] = 1688, - [2507] = 1978, - [2508] = 1715, - [2509] = 1720, - [2510] = 1722, - [2511] = 1776, - [2512] = 2481, + [2410] = 2382, + [2411] = 1512, + [2412] = 2366, + [2413] = 2371, + [2414] = 2375, + [2415] = 2378, + [2416] = 2416, + [2417] = 2409, + [2418] = 1616, + [2419] = 240, + [2420] = 1620, + [2421] = 1631, + [2422] = 1633, + [2423] = 1634, + [2424] = 1636, + [2425] = 1637, + [2426] = 1638, + [2427] = 1639, + [2428] = 1640, + [2429] = 1641, + [2430] = 1642, + [2431] = 1643, + [2432] = 1644, + [2433] = 1647, + [2434] = 1648, + [2435] = 1653, + [2436] = 1654, + [2437] = 1663, + [2438] = 1666, + [2439] = 1610, + [2440] = 1670, + [2441] = 1671, + [2442] = 1693, + [2443] = 1717, + [2444] = 1718, + [2445] = 1720, + [2446] = 1723, + [2447] = 1616, + [2448] = 1617, + [2449] = 1620, + [2450] = 1631, + [2451] = 1633, + [2452] = 1634, + [2453] = 1636, + [2454] = 1637, + [2455] = 1638, + [2456] = 1639, + [2457] = 1640, + [2458] = 1641, + [2459] = 1642, + [2460] = 1643, + [2461] = 1644, + [2462] = 1647, + [2463] = 1648, + [2464] = 1653, + [2465] = 1654, + [2466] = 1663, + [2467] = 1666, + [2468] = 1610, + [2469] = 1670, + [2470] = 1671, + [2471] = 1693, + [2472] = 1717, + [2473] = 1718, + [2474] = 1720, + [2475] = 1723, + [2476] = 1729, + [2477] = 1617, + [2478] = 1633, + [2479] = 1638, + [2480] = 1639, + [2481] = 1640, + [2482] = 1641, + [2483] = 1642, + [2484] = 1643, + [2485] = 1644, + [2486] = 1647, + [2487] = 1648, + [2488] = 1653, + [2489] = 1654, + [2490] = 1663, + [2491] = 1666, + [2492] = 1610, + [2493] = 1670, + [2494] = 1671, + [2495] = 1693, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 1878, + [2503] = 2503, + [2504] = 2504, + [2505] = 1717, + [2506] = 1718, + [2507] = 1720, + [2508] = 1723, + [2509] = 2497, + [2510] = 2497, + [2511] = 2511, + [2512] = 2512, [2513] = 2513, - [2514] = 2514, + [2514] = 1966, [2515] = 2515, [2516] = 2516, - [2517] = 2481, - [2518] = 1625, - [2519] = 1557, - [2520] = 2481, - [2521] = 957, + [2517] = 2517, + [2518] = 2518, + [2519] = 2519, + [2520] = 1637, + [2521] = 2521, [2522] = 2522, [2523] = 2523, - [2524] = 1738, - [2525] = 2525, - [2526] = 2481, - [2527] = 1723, - [2528] = 1677, - [2529] = 1675, - [2530] = 1638, - [2531] = 2531, - [2532] = 2481, - [2533] = 2533, - [2534] = 2534, - [2535] = 2535, - [2536] = 2536, - [2537] = 1610, - [2538] = 2538, - [2539] = 1676, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, + [2524] = 2524, + [2525] = 1804, + [2526] = 1702, + [2527] = 1703, + [2528] = 1704, + [2529] = 952, + [2530] = 2497, + [2531] = 2497, + [2532] = 1512, + [2533] = 2497, + [2534] = 2497, + [2535] = 1646, + [2536] = 959, + [2537] = 1503, + [2538] = 957, + [2539] = 1519, + [2540] = 1729, + [2541] = 1646, + [2542] = 1645, + [2543] = 1680, [2544] = 2544, - [2545] = 1695, - [2546] = 2482, - [2547] = 2015, - [2548] = 1699, - [2549] = 1708, - [2550] = 1710, - [2551] = 1612, - [2552] = 2481, - [2553] = 2553, - [2554] = 2481, - [2555] = 958, + [2545] = 2545, + [2546] = 2546, + [2547] = 2497, + [2548] = 2545, + [2549] = 2549, + [2550] = 2550, + [2551] = 2551, + [2552] = 1616, + [2553] = 1617, + [2554] = 1620, + [2555] = 1631, [2556] = 2556, - [2557] = 2481, - [2558] = 1557, - [2559] = 2559, - [2560] = 1677, + [2557] = 1634, + [2558] = 2497, + [2559] = 1512, + [2560] = 1636, [2561] = 2561, [2562] = 2562, - [2563] = 2123, + [2563] = 2563, [2564] = 2564, - [2565] = 1813, - [2566] = 2566, - [2567] = 2567, - [2568] = 2122, - [2569] = 2123, - [2570] = 2122, - [2571] = 2123, + [2565] = 2165, + [2566] = 2142, + [2567] = 2165, + [2568] = 2568, + [2569] = 2569, + [2570] = 2570, + [2571] = 2571, [2572] = 2572, - [2573] = 2573, - [2574] = 2567, + [2573] = 2142, + [2574] = 2165, [2575] = 2575, [2576] = 2576, [2577] = 2577, - [2578] = 1557, - [2579] = 2579, + [2578] = 2578, + [2579] = 2142, [2580] = 2580, - [2581] = 2581, - [2582] = 2582, + [2581] = 2165, + [2582] = 1760, [2583] = 2583, [2584] = 2584, - [2585] = 2585, - [2586] = 2586, - [2587] = 2412, - [2588] = 2122, - [2589] = 2123, + [2585] = 2142, + [2586] = 2165, + [2587] = 2142, + [2588] = 2588, + [2589] = 2165, [2590] = 2590, - [2591] = 2122, - [2592] = 2123, + [2591] = 2142, + [2592] = 2592, [2593] = 2593, [2594] = 2594, [2595] = 2595, - [2596] = 2122, - [2597] = 2123, - [2598] = 1557, - [2599] = 2122, + [2596] = 2377, + [2597] = 1512, + [2598] = 1512, + [2599] = 2580, [2600] = 2600, - [2601] = 242, + [2601] = 254, [2602] = 2602, - [2603] = 2600, - [2604] = 2604, + [2603] = 232, + [2604] = 244, [2605] = 2605, - [2606] = 1217, + [2606] = 2606, [2607] = 2607, [2608] = 2608, - [2609] = 249, + [2609] = 2609, [2610] = 2610, [2611] = 2611, [2612] = 2612, [2613] = 2613, - [2614] = 2614, + [2614] = 1572, [2615] = 2615, [2616] = 2616, [2617] = 2617, @@ -7263,147 +7295,147 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2619] = 2619, [2620] = 2620, [2621] = 2621, - [2622] = 2600, - [2623] = 246, + [2622] = 2622, + [2623] = 2623, [2624] = 2624, [2625] = 2625, - [2626] = 2600, - [2627] = 2600, + [2626] = 2626, + [2627] = 2608, [2628] = 2628, - [2629] = 232, + [2629] = 241, [2630] = 2630, [2631] = 2631, - [2632] = 2600, - [2633] = 2600, + [2632] = 2632, + [2633] = 241, [2634] = 2634, - [2635] = 2635, - [2636] = 249, + [2635] = 2608, + [2636] = 2636, [2637] = 2637, [2638] = 2638, - [2639] = 2639, + [2639] = 2608, [2640] = 2640, [2641] = 2641, [2642] = 2642, - [2643] = 2643, + [2643] = 2608, [2644] = 2644, [2645] = 2645, - [2646] = 2646, + [2646] = 2608, [2647] = 2647, [2648] = 2648, - [2649] = 2649, + [2649] = 2608, [2650] = 2650, [2651] = 2651, - [2652] = 2652, + [2652] = 2608, [2653] = 2653, [2654] = 2654, - [2655] = 2600, + [2655] = 232, [2656] = 2656, [2657] = 2657, - [2658] = 2600, - [2659] = 246, + [2658] = 2608, + [2659] = 2659, [2660] = 2660, - [2661] = 1511, + [2661] = 1217, [2662] = 2662, [2663] = 2663, - [2664] = 2664, + [2664] = 244, [2665] = 2665, [2666] = 2666, - [2667] = 2525, - [2668] = 242, + [2667] = 1493, + [2668] = 2668, [2669] = 2523, - [2670] = 1533, + [2670] = 254, [2671] = 2671, [2672] = 2672, - [2673] = 232, + [2673] = 2673, [2674] = 2674, - [2675] = 2675, + [2675] = 2522, [2676] = 2676, - [2677] = 2241, - [2678] = 2678, - [2679] = 2316, - [2680] = 2680, + [2677] = 2265, + [2678] = 1247, + [2679] = 2679, + [2680] = 2210, [2681] = 2681, - [2682] = 2112, - [2683] = 2683, - [2684] = 2684, + [2682] = 2682, + [2683] = 2266, + [2684] = 2110, [2685] = 2685, [2686] = 2686, [2687] = 2687, - [2688] = 2202, - [2689] = 1247, - [2690] = 2690, - [2691] = 2691, + [2688] = 2688, + [2689] = 2689, + [2690] = 2378, + [2691] = 2380, [2692] = 2692, - [2693] = 2371, - [2694] = 2399, + [2693] = 2366, + [2694] = 2371, [2695] = 2375, - [2696] = 2409, - [2697] = 2362, + [2696] = 2696, + [2697] = 2378, [2698] = 2698, - [2699] = 2388, - [2700] = 2411, - [2701] = 2389, - [2702] = 2390, - [2703] = 2391, - [2704] = 2375, - [2705] = 2389, - [2706] = 2398, - [2707] = 2399, - [2708] = 2692, - [2709] = 2709, - [2710] = 2405, - [2711] = 2398, - [2712] = 2712, - [2713] = 2407, - [2714] = 2362, - [2715] = 2371, - [2716] = 2388, - [2717] = 1253, - [2718] = 2405, - [2719] = 2691, + [2699] = 2374, + [2700] = 2366, + [2701] = 2379, + [2702] = 1227, + [2703] = 2365, + [2704] = 2371, + [2705] = 2705, + [2706] = 2372, + [2707] = 2707, + [2708] = 2375, + [2709] = 2698, + [2710] = 2710, + [2711] = 2358, + [2712] = 2365, + [2713] = 2370, + [2714] = 2374, + [2715] = 2692, + [2716] = 2373, + [2717] = 2358, + [2718] = 2370, + [2719] = 2376, [2720] = 2720, [2721] = 2721, [2722] = 2722, [2723] = 2723, [2724] = 2724, [2725] = 2725, - [2726] = 2726, - [2727] = 2725, - [2728] = 2728, - [2729] = 2724, + [2726] = 2725, + [2727] = 2724, + [2728] = 2722, + [2729] = 2729, [2730] = 2730, - [2731] = 2731, + [2731] = 2725, [2732] = 2732, - [2733] = 2724, - [2734] = 2720, - [2735] = 2725, - [2736] = 2730, - [2737] = 2731, - [2738] = 2721, - [2739] = 2722, - [2740] = 2724, - [2741] = 2741, + [2733] = 2721, + [2734] = 2721, + [2735] = 2735, + [2736] = 2721, + [2737] = 2737, + [2738] = 2723, + [2739] = 2739, + [2740] = 2730, + [2741] = 2735, [2742] = 2742, - [2743] = 2743, + [2743] = 1293, [2744] = 2744, [2745] = 2745, - [2746] = 2746, - [2747] = 1270, + [2746] = 2359, + [2747] = 2747, [2748] = 2748, - [2749] = 1290, + [2749] = 2749, [2750] = 2750, - [2751] = 1302, - [2752] = 1284, - [2753] = 1259, + [2751] = 2751, + [2752] = 2752, + [2753] = 2753, [2754] = 2754, [2755] = 2755, - [2756] = 2756, + [2756] = 1282, [2757] = 2757, [2758] = 2758, - [2759] = 2356, - [2760] = 2760, + [2759] = 1273, + [2760] = 1255, [2761] = 2761, - [2762] = 2762, + [2762] = 1310, [2763] = 2763, [2764] = 2764, [2765] = 2765, @@ -7418,7 +7450,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2775, + [2777] = 2777, [2778] = 2778, [2779] = 2779, [2780] = 2772, @@ -7428,10 +7460,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2784] = 2767, [2785] = 2785, [2786] = 2786, - [2787] = 2774, + [2787] = 2776, [2788] = 2788, - [2789] = 2789, - [2790] = 2790, + [2789] = 2782, + [2790] = 2769, [2791] = 2791, [2792] = 2792, [2793] = 2793, @@ -7440,730 +7472,730 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2796] = 2796, [2797] = 2797, [2798] = 2798, - [2799] = 2799, + [2799] = 2792, [2800] = 2800, [2801] = 2801, [2802] = 2802, - [2803] = 2801, + [2803] = 2803, [2804] = 2804, - [2805] = 2805, - [2806] = 2771, - [2807] = 2807, + [2805] = 2783, + [2806] = 2788, + [2807] = 2781, [2808] = 2808, - [2809] = 2779, - [2810] = 2770, + [2809] = 2809, + [2810] = 2810, [2811] = 2811, - [2812] = 2812, + [2812] = 2791, [2813] = 2813, [2814] = 2814, [2815] = 2815, [2816] = 2816, [2817] = 2817, - [2818] = 2811, + [2818] = 2818, [2819] = 2819, [2820] = 2820, - [2821] = 2821, - [2822] = 2816, - [2823] = 2823, + [2821] = 2770, + [2822] = 2822, + [2823] = 2775, [2824] = 2824, - [2825] = 2769, - [2826] = 2776, + [2825] = 2825, + [2826] = 2826, [2827] = 2827, [2828] = 2828, - [2829] = 1466, - [2830] = 1468, - [2831] = 1463, - [2832] = 1573, - [2833] = 1602, - [2834] = 1600, - [2835] = 1603, - [2836] = 1607, - [2837] = 1584, - [2838] = 1589, - [2839] = 1593, - [2840] = 1590, - [2841] = 1591, - [2842] = 1604, - [2843] = 1560, - [2844] = 1605, - [2845] = 1563, - [2846] = 1564, - [2847] = 1565, - [2848] = 1601, - [2849] = 1567, - [2850] = 1586, - [2851] = 1587, - [2852] = 1588, - [2853] = 1585, - [2854] = 1568, - [2855] = 1592, - [2856] = 1569, - [2857] = 1570, - [2858] = 1571, - [2859] = 1572, - [2860] = 1574, - [2861] = 1575, - [2862] = 1598, - [2863] = 1599, - [2864] = 1606, - [2865] = 1566, - [2866] = 241, - [2867] = 2867, - [2868] = 2867, - [2869] = 1484, - [2870] = 248, - [2871] = 1549, - [2872] = 1609, - [2873] = 2873, - [2874] = 1551, - [2875] = 1550, - [2876] = 1537, - [2877] = 1465, - [2878] = 1552, - [2879] = 1518, - [2880] = 1535, - [2881] = 1543, - [2882] = 1544, - [2883] = 1468, - [2884] = 1466, - [2885] = 1485, - [2886] = 1545, - [2887] = 1463, - [2888] = 1546, - [2889] = 1517, - [2890] = 1530, - [2891] = 1486, - [2892] = 1487, - [2893] = 1532, - [2894] = 1499, - [2895] = 1512, - [2896] = 1482, - [2897] = 1478, - [2898] = 1491, - [2899] = 1591, - [2900] = 1524, - [2901] = 1567, - [2902] = 2902, - [2903] = 1547, - [2904] = 1568, - [2905] = 1598, - [2906] = 1599, - [2907] = 1600, - [2908] = 1553, - [2909] = 1525, - [2910] = 2902, - [2911] = 2911, - [2912] = 2912, - [2913] = 2913, + [2829] = 1463, + [2830] = 1466, + [2831] = 1465, + [2832] = 1579, + [2833] = 1571, + [2834] = 1583, + [2835] = 1582, + [2836] = 1489, + [2837] = 1490, + [2838] = 1492, + [2839] = 1494, + [2840] = 1496, + [2841] = 1497, + [2842] = 1511, + [2843] = 1513, + [2844] = 1578, + [2845] = 1516, + [2846] = 1585, + [2847] = 1588, + [2848] = 1593, + [2849] = 1594, + [2850] = 1595, + [2851] = 1596, + [2852] = 1597, + [2853] = 1598, + [2854] = 1599, + [2855] = 1600, + [2856] = 1601, + [2857] = 1487, + [2858] = 1603, + [2859] = 1604, + [2860] = 1531, + [2861] = 1533, + [2862] = 1543, + [2863] = 1550, + [2864] = 1567, + [2865] = 1515, + [2866] = 234, + [2867] = 231, + [2868] = 2868, + [2869] = 1472, + [2870] = 2868, + [2871] = 1565, + [2872] = 1535, + [2873] = 1555, + [2874] = 1574, + [2875] = 1557, + [2876] = 1575, + [2877] = 1576, + [2878] = 1469, + [2879] = 1559, + [2880] = 1568, + [2881] = 1463, + [2882] = 1532, + [2883] = 1564, + [2884] = 1566, + [2885] = 2885, + [2886] = 1477, + [2887] = 1466, + [2888] = 1465, + [2889] = 1573, + [2890] = 1475, + [2891] = 1526, + [2892] = 1609, + [2893] = 1478, + [2894] = 1507, + [2895] = 1481, + [2896] = 1553, + [2897] = 1499, + [2898] = 1592, + [2899] = 1523, + [2900] = 1560, + [2901] = 1561, + [2902] = 1562, + [2903] = 1552, + [2904] = 1563, + [2905] = 1463, + [2906] = 1466, + [2907] = 1465, + [2908] = 1569, + [2909] = 1577, + [2910] = 1581, + [2911] = 1527, + [2912] = 1528, + [2913] = 1529, [2914] = 2914, - [2915] = 1556, - [2916] = 1569, - [2917] = 1527, - [2918] = 1601, - [2919] = 1529, - [2920] = 1570, - [2921] = 1602, - [2922] = 1531, - [2923] = 2902, - [2924] = 1603, - [2925] = 1571, - [2926] = 1509, - [2927] = 1510, - [2928] = 1604, - [2929] = 1605, - [2930] = 1606, - [2931] = 1513, - [2932] = 1514, - [2933] = 1594, - [2934] = 1607, - [2935] = 1515, - [2936] = 1492, - [2937] = 2911, - [2938] = 2912, - [2939] = 2913, - [2940] = 2914, - [2941] = 1572, - [2942] = 1573, - [2943] = 2902, - [2944] = 1574, - [2945] = 1560, - [2946] = 1466, - [2947] = 1463, - [2948] = 1468, - [2949] = 2911, - [2950] = 2912, - [2951] = 1593, - [2952] = 2914, - [2953] = 1575, - [2954] = 2902, - [2955] = 1595, - [2956] = 2911, - [2957] = 2912, - [2958] = 2913, - [2959] = 2914, - [2960] = 1563, - [2961] = 1564, - [2962] = 1565, - [2963] = 1596, - [2964] = 2902, - [2965] = 1566, - [2966] = 1584, - [2967] = 1585, - [2968] = 1586, - [2969] = 2902, - [2970] = 1507, - [2971] = 1587, - [2972] = 1519, - [2973] = 2911, - [2974] = 1588, + [2915] = 1504, + [2916] = 2916, + [2917] = 2917, + [2918] = 2918, + [2919] = 2919, + [2920] = 1605, + [2921] = 1606, + [2922] = 1495, + [2923] = 1602, + [2924] = 1556, + [2925] = 2916, + [2926] = 2917, + [2927] = 2918, + [2928] = 2919, + [2929] = 1585, + [2930] = 1588, + [2931] = 1593, + [2932] = 1594, + [2933] = 1595, + [2934] = 1596, + [2935] = 1597, + [2936] = 2914, + [2937] = 1598, + [2938] = 1599, + [2939] = 1600, + [2940] = 1601, + [2941] = 1487, + [2942] = 1558, + [2943] = 1604, + [2944] = 2916, + [2945] = 2917, + [2946] = 2918, + [2947] = 2919, + [2948] = 2914, + [2949] = 1489, + [2950] = 1490, + [2951] = 1492, + [2952] = 1494, + [2953] = 1496, + [2954] = 1497, + [2955] = 1511, + [2956] = 1513, + [2957] = 1515, + [2958] = 1516, + [2959] = 1531, + [2960] = 1533, + [2961] = 1543, + [2962] = 1550, + [2963] = 1567, + [2964] = 1571, + [2965] = 1578, + [2966] = 1579, + [2967] = 1582, + [2968] = 1583, + [2969] = 2916, + [2970] = 2917, + [2971] = 2918, + [2972] = 2919, + [2973] = 2914, + [2974] = 1521, [2975] = 1589, - [2976] = 2912, - [2977] = 1608, - [2978] = 1465, - [2979] = 1590, - [2980] = 2913, - [2981] = 1508, - [2982] = 1520, - [2983] = 2914, - [2984] = 1576, - [2985] = 1578, - [2986] = 1580, + [2976] = 1524, + [2977] = 2914, + [2978] = 2916, + [2979] = 2917, + [2980] = 2918, + [2981] = 2919, + [2982] = 2914, + [2983] = 1469, + [2984] = 2914, + [2985] = 1517, + [2986] = 2914, [2987] = 1536, - [2988] = 1581, - [2989] = 1538, - [2990] = 2902, - [2991] = 1592, - [2992] = 1539, - [2993] = 1521, - [2994] = 1540, - [2995] = 1541, - [2996] = 2902, - [2997] = 1523, - [2998] = 1542, - [2999] = 2913, + [2988] = 1537, + [2989] = 1539, + [2990] = 1541, + [2991] = 2914, + [2992] = 1518, + [2993] = 1544, + [2994] = 1545, + [2995] = 1547, + [2996] = 1520, + [2997] = 1549, + [2998] = 1522, + [2999] = 1603, [3000] = 3000, - [3001] = 3001, - [3002] = 1475, - [3003] = 3003, + [3001] = 1484, + [3002] = 3000, + [3003] = 3000, [3004] = 3004, [3005] = 3005, [3006] = 3006, [3007] = 3007, - [3008] = 3008, + [3008] = 1471, [3009] = 3009, - [3010] = 3010, + [3010] = 3000, [3011] = 3011, - [3012] = 3012, + [3012] = 3005, [3013] = 3013, [3014] = 3014, [3015] = 3015, - [3016] = 3007, + [3016] = 3000, [3017] = 3017, - [3018] = 1473, - [3019] = 3001, - [3020] = 3020, + [3018] = 3018, + [3019] = 1472, + [3020] = 1475, [3021] = 3021, [3022] = 3022, [3023] = 3023, - [3024] = 3007, + [3024] = 3024, [3025] = 3025, [3026] = 3026, - [3027] = 3027, - [3028] = 1484, - [3029] = 1482, - [3030] = 3001, - [3031] = 3031, - [3032] = 3032, - [3033] = 3007, - [3034] = 3034, - [3035] = 3001, - [3036] = 1477, - [3037] = 3001, - [3038] = 3001, - [3039] = 3007, + [3027] = 3000, + [3028] = 3005, + [3029] = 3029, + [3030] = 3030, + [3031] = 3005, + [3032] = 3000, + [3033] = 3033, + [3034] = 1485, + [3035] = 3035, + [3036] = 3036, + [3037] = 3005, + [3038] = 3038, + [3039] = 3039, [3040] = 3040, - [3041] = 3001, - [3042] = 1607, - [3043] = 1609, - [3044] = 3044, - [3045] = 1604, - [3046] = 1535, - [3047] = 957, - [3048] = 3048, - [3049] = 1602, - [3050] = 1605, - [3051] = 1593, - [3052] = 3052, - [3053] = 1549, - [3054] = 3054, + [3041] = 3041, + [3042] = 1568, + [3043] = 1573, + [3044] = 1574, + [3045] = 3045, + [3046] = 1575, + [3047] = 1576, + [3048] = 1571, + [3049] = 1578, + [3050] = 1579, + [3051] = 1582, + [3052] = 1583, + [3053] = 1580, + [3054] = 1570, [3055] = 3055, - [3056] = 1603, - [3057] = 1598, - [3058] = 1526, - [3059] = 1606, - [3060] = 1543, - [3061] = 1528, - [3062] = 1550, - [3063] = 1579, - [3064] = 1554, - [3065] = 1545, - [3066] = 1548, - [3067] = 1494, - [3068] = 1582, - [3069] = 3069, - [3070] = 1485, - [3071] = 1537, - [3072] = 1592, - [3073] = 1546, - [3074] = 3052, - [3075] = 3075, - [3076] = 1599, - [3077] = 1600, - [3078] = 1517, - [3079] = 948, + [3056] = 1585, + [3057] = 3057, + [3058] = 1588, + [3059] = 3059, + [3060] = 1505, + [3061] = 1506, + [3062] = 3062, + [3063] = 3045, + [3064] = 1593, + [3065] = 3057, + [3066] = 1594, + [3067] = 1595, + [3068] = 1596, + [3069] = 1597, + [3070] = 1598, + [3071] = 1477, + [3072] = 1599, + [3073] = 1600, + [3074] = 1469, + [3075] = 3057, + [3076] = 1601, + [3077] = 1487, + [3078] = 3062, + [3079] = 1532, [3080] = 3080, - [3081] = 3081, - [3082] = 1493, - [3083] = 1552, - [3084] = 1465, - [3085] = 1560, - [3086] = 1563, - [3087] = 1564, - [3088] = 1565, - [3089] = 1566, - [3090] = 1567, - [3091] = 1568, - [3092] = 1569, - [3093] = 1570, - [3094] = 1571, - [3095] = 1572, - [3096] = 1573, - [3097] = 1574, - [3098] = 1575, - [3099] = 1518, - [3100] = 1544, - [3101] = 1601, - [3102] = 1551, - [3103] = 1584, - [3104] = 1585, - [3105] = 1586, - [3106] = 1587, - [3107] = 1588, - [3108] = 1589, - [3109] = 1590, - [3110] = 3110, - [3111] = 3111, - [3112] = 1489, - [3113] = 1591, - [3114] = 958, - [3115] = 1522, - [3116] = 1486, - [3117] = 3117, - [3118] = 3118, - [3119] = 1491, + [3081] = 1603, + [3082] = 1535, + [3083] = 1604, + [3084] = 3057, + [3085] = 3062, + [3086] = 1489, + [3087] = 1490, + [3088] = 1492, + [3089] = 3089, + [3090] = 1494, + [3091] = 3062, + [3092] = 952, + [3093] = 1496, + [3094] = 3094, + [3095] = 1497, + [3096] = 1511, + [3097] = 1513, + [3098] = 1515, + [3099] = 3099, + [3100] = 959, + [3101] = 1555, + [3102] = 1516, + [3103] = 1590, + [3104] = 1557, + [3105] = 1531, + [3106] = 1559, + [3107] = 1608, + [3108] = 1540, + [3109] = 957, + [3110] = 1533, + [3111] = 1543, + [3112] = 1551, + [3113] = 3113, + [3114] = 1564, + [3115] = 1546, + [3116] = 1565, + [3117] = 1566, + [3118] = 1550, + [3119] = 3119, [3120] = 3120, - [3121] = 3121, - [3122] = 1475, + [3121] = 1548, + [3122] = 1567, [3123] = 3123, - [3124] = 3124, - [3125] = 3117, + [3124] = 1485, + [3125] = 3125, [3126] = 3126, - [3127] = 1484, - [3128] = 1482, - [3129] = 3129, + [3127] = 3127, + [3128] = 3128, + [3129] = 1609, [3130] = 3130, - [3131] = 3131, - [3132] = 3132, - [3133] = 3133, + [3131] = 1478, + [3132] = 1553, + [3133] = 3130, [3134] = 3134, - [3135] = 3135, - [3136] = 3136, + [3135] = 1484, + [3136] = 1471, [3137] = 3137, [3138] = 3138, - [3139] = 3117, + [3139] = 3139, [3140] = 3140, - [3141] = 3129, - [3142] = 3142, + [3141] = 3141, + [3142] = 1465, [3143] = 3143, - [3144] = 3144, + [3144] = 1526, [3145] = 3145, - [3146] = 3129, + [3146] = 3146, [3147] = 3147, - [3148] = 3148, - [3149] = 1487, + [3148] = 3130, + [3149] = 1592, [3150] = 3150, - [3151] = 3151, + [3151] = 1466, [3152] = 3152, [3153] = 3153, [3154] = 3154, - [3155] = 3155, + [3155] = 3140, [3156] = 3156, - [3157] = 3157, - [3158] = 1478, - [3159] = 1512, + [3157] = 1475, + [3158] = 3158, + [3159] = 3159, [3160] = 3160, - [3161] = 1473, - [3162] = 3162, - [3163] = 1477, - [3164] = 1466, - [3165] = 1463, - [3166] = 1468, - [3167] = 3167, + [3161] = 3161, + [3162] = 3140, + [3163] = 3163, + [3164] = 3164, + [3165] = 3165, + [3166] = 1499, + [3167] = 3130, [3168] = 3168, - [3169] = 3129, - [3170] = 3117, + [3169] = 3130, + [3170] = 3170, [3171] = 3171, - [3172] = 1532, - [3173] = 3129, - [3174] = 1499, - [3175] = 3175, - [3176] = 1530, + [3172] = 3172, + [3173] = 1463, + [3174] = 3174, + [3175] = 3140, + [3176] = 1472, [3177] = 3177, - [3178] = 1527, - [3179] = 1579, - [3180] = 1492, - [3181] = 1543, - [3182] = 3182, - [3183] = 1546, - [3184] = 686, + [3178] = 3178, + [3179] = 3179, + [3180] = 1507, + [3181] = 3181, + [3182] = 1481, + [3183] = 3183, + [3184] = 3184, [3185] = 3185, - [3186] = 1535, - [3187] = 1537, - [3188] = 1553, - [3189] = 1578, - [3190] = 1609, - [3191] = 1485, - [3192] = 1554, - [3193] = 1493, - [3194] = 1494, - [3195] = 1580, - [3196] = 1465, - [3197] = 1536, - [3198] = 1581, - [3199] = 3182, - [3200] = 1594, - [3201] = 1595, - [3202] = 1596, - [3203] = 688, - [3204] = 1582, - [3205] = 958, - [3206] = 687, - [3207] = 1538, - [3208] = 1517, - [3209] = 1539, - [3210] = 1507, - [3211] = 1508, - [3212] = 1518, - [3213] = 1509, - [3214] = 1540, - [3215] = 1510, - [3216] = 3185, - [3217] = 3217, - [3218] = 1513, - [3219] = 1515, - [3220] = 1544, - [3221] = 3221, - [3222] = 1545, - [3223] = 3223, - [3224] = 1549, - [3225] = 1550, - [3226] = 684, - [3227] = 1556, - [3228] = 1489, - [3229] = 1551, - [3230] = 1552, - [3231] = 1608, - [3232] = 685, - [3233] = 1541, - [3234] = 948, - [3235] = 1542, - [3236] = 1548, - [3237] = 957, - [3238] = 3182, - [3239] = 1519, - [3240] = 1520, - [3241] = 1521, - [3242] = 1522, - [3243] = 1523, - [3244] = 1524, - [3245] = 1525, - [3246] = 1526, - [3247] = 3185, - [3248] = 3153, - [3249] = 1528, - [3250] = 1547, - [3251] = 3185, - [3252] = 3182, - [3253] = 1576, - [3254] = 3254, - [3255] = 1529, - [3256] = 1531, - [3257] = 1514, - [3258] = 3258, + [3186] = 3186, + [3187] = 1581, + [3188] = 1557, + [3189] = 1559, + [3190] = 3190, + [3191] = 1518, + [3192] = 1520, + [3193] = 1565, + [3194] = 1522, + [3195] = 1566, + [3196] = 1527, + [3197] = 1528, + [3198] = 1573, + [3199] = 1529, + [3200] = 1574, + [3201] = 1575, + [3202] = 1576, + [3203] = 957, + [3204] = 687, + [3205] = 1536, + [3206] = 1537, + [3207] = 1539, + [3208] = 1540, + [3209] = 1541, + [3210] = 1544, + [3211] = 1477, + [3212] = 1545, + [3213] = 1546, + [3214] = 1547, + [3215] = 1548, + [3216] = 1549, + [3217] = 952, + [3218] = 1552, + [3219] = 688, + [3220] = 1556, + [3221] = 1558, + [3222] = 1560, + [3223] = 1532, + [3224] = 1561, + [3225] = 1562, + [3226] = 1563, + [3227] = 1535, + [3228] = 1569, + [3229] = 1570, + [3230] = 1577, + [3231] = 1580, + [3232] = 684, + [3233] = 1564, + [3234] = 1568, + [3235] = 1605, + [3236] = 1606, + [3237] = 1608, + [3238] = 1495, + [3239] = 1602, + [3240] = 1551, + [3241] = 686, + [3242] = 3171, + [3243] = 959, + [3244] = 1521, + [3245] = 1523, + [3246] = 1524, + [3247] = 685, + [3248] = 3248, + [3249] = 1589, + [3250] = 1590, + [3251] = 1469, + [3252] = 3252, + [3253] = 3253, + [3254] = 1504, + [3255] = 1555, + [3256] = 1505, + [3257] = 1506, + [3258] = 1517, [3259] = 3259, - [3260] = 3260, - [3261] = 1532, - [3262] = 3262, - [3263] = 1482, - [3264] = 3264, - [3265] = 3264, + [3260] = 1471, + [3261] = 1609, + [3262] = 1553, + [3263] = 3263, + [3264] = 1469, + [3265] = 3265, [3266] = 3266, [3267] = 3267, [3268] = 3268, [3269] = 3269, - [3270] = 3259, - [3271] = 3271, - [3272] = 3264, + [3270] = 3265, + [3271] = 1478, + [3272] = 3259, [3273] = 3273, [3274] = 3274, - [3275] = 1475, - [3276] = 1465, - [3277] = 3274, - [3278] = 3278, - [3279] = 3279, - [3280] = 1477, + [3275] = 1481, + [3276] = 3266, + [3277] = 3277, + [3278] = 3277, + [3279] = 3266, + [3280] = 3280, [3281] = 3281, [3282] = 3282, - [3283] = 3262, - [3284] = 1486, - [3285] = 1478, - [3286] = 1530, - [3287] = 1512, - [3288] = 3258, - [3289] = 3274, + [3283] = 3283, + [3284] = 3281, + [3285] = 3285, + [3286] = 3265, + [3287] = 1526, + [3288] = 3281, + [3289] = 1484, [3290] = 3290, - [3291] = 3262, - [3292] = 1473, - [3293] = 3264, + [3291] = 1475, + [3292] = 1485, + [3293] = 3265, [3294] = 3294, - [3295] = 3295, - [3296] = 1536, - [3297] = 3297, - [3298] = 3298, - [3299] = 3299, - [3300] = 3129, + [3295] = 1520, + [3296] = 3296, + [3297] = 1522, + [3298] = 1563, + [3299] = 1558, + [3300] = 3300, [3301] = 3301, [3302] = 3302, [3303] = 3303, [3304] = 3304, [3305] = 3305, - [3306] = 1538, + [3306] = 3306, [3307] = 3307, [3308] = 3308, [3309] = 3309, - [3310] = 3310, - [3311] = 3309, + [3310] = 1569, + [3311] = 1570, [3312] = 3312, - [3313] = 3310, - [3314] = 3308, - [3315] = 3315, - [3316] = 3316, - [3317] = 3317, - [3318] = 3304, + [3313] = 3313, + [3314] = 1527, + [3315] = 1528, + [3316] = 1529, + [3317] = 1605, + [3318] = 1606, [3319] = 3319, - [3320] = 3320, - [3321] = 1513, - [3322] = 3322, - [3323] = 1539, - [3324] = 3324, - [3325] = 1514, - [3326] = 1515, + [3320] = 1608, + [3321] = 1495, + [3322] = 1602, + [3323] = 1551, + [3324] = 1507, + [3325] = 686, + [3326] = 3296, [3327] = 3327, - [3328] = 3328, - [3329] = 1540, - [3330] = 1596, - [3331] = 3316, - [3332] = 3317, - [3333] = 3333, - [3334] = 3266, - [3335] = 3335, - [3336] = 3336, - [3337] = 3308, - [3338] = 1608, - [3339] = 3339, - [3340] = 3310, - [3341] = 3299, - [3342] = 3342, - [3343] = 684, - [3344] = 3344, - [3345] = 3304, - [3346] = 241, - [3347] = 3347, - [3348] = 3327, - [3349] = 3309, - [3350] = 3304, - [3351] = 1519, - [3352] = 1520, - [3353] = 1521, - [3354] = 1541, - [3355] = 1522, - [3356] = 1523, - [3357] = 1524, - [3358] = 1542, - [3359] = 1526, - [3360] = 1527, - [3361] = 3129, - [3362] = 1528, - [3363] = 3339, - [3364] = 3310, - [3365] = 3327, + [3328] = 1560, + [3329] = 1561, + [3330] = 1562, + [3331] = 3331, + [3332] = 687, + [3333] = 1521, + [3334] = 1523, + [3335] = 1577, + [3336] = 1524, + [3337] = 685, + [3338] = 1580, + [3339] = 1536, + [3340] = 1581, + [3341] = 1537, + [3342] = 1539, + [3343] = 1540, + [3344] = 1541, + [3345] = 1544, + [3346] = 1546, + [3347] = 1547, + [3348] = 1589, + [3349] = 1548, + [3350] = 3130, + [3351] = 3351, + [3352] = 1590, + [3353] = 3353, + [3354] = 1549, + [3355] = 3355, + [3356] = 1499, + [3357] = 3357, + [3358] = 1545, + [3359] = 1552, + [3360] = 3308, + [3361] = 3361, + [3362] = 3353, + [3363] = 3363, + [3364] = 3364, + [3365] = 3365, [3366] = 3366, - [3367] = 3367, - [3368] = 3129, - [3369] = 3316, - [3370] = 3299, - [3371] = 1529, - [3372] = 3372, - [3373] = 3307, + [3367] = 231, + [3368] = 3368, + [3369] = 3369, + [3370] = 3370, + [3371] = 3371, + [3372] = 3296, + [3373] = 3373, [3374] = 3374, - [3375] = 3375, - [3376] = 1482, + [3375] = 3130, + [3376] = 1475, [3377] = 3377, [3378] = 3378, [3379] = 3379, - [3380] = 3380, - [3381] = 1547, - [3382] = 1548, + [3380] = 234, + [3381] = 3381, + [3382] = 3382, [3383] = 3383, - [3384] = 3339, - [3385] = 3129, + [3384] = 3384, + [3385] = 3385, [3386] = 3386, - [3387] = 3129, - [3388] = 3129, - [3389] = 1489, + [3387] = 3307, + [3388] = 3388, + [3389] = 3274, [3390] = 3390, [3391] = 3391, - [3392] = 1492, - [3393] = 3393, + [3392] = 684, + [3393] = 3300, [3394] = 3394, - [3395] = 3299, - [3396] = 3267, - [3397] = 3316, - [3398] = 1491, - [3399] = 3399, - [3400] = 3400, + [3395] = 3301, + [3396] = 1592, + [3397] = 3302, + [3398] = 3303, + [3399] = 3304, + [3400] = 3305, [3401] = 3401, - [3402] = 3402, - [3403] = 1553, - [3404] = 1554, - [3405] = 1556, - [3406] = 3406, - [3407] = 1487, + [3402] = 3130, + [3403] = 3403, + [3404] = 1505, + [3405] = 3405, + [3406] = 1506, + [3407] = 3300, [3408] = 3408, - [3409] = 3344, - [3410] = 3309, - [3411] = 687, - [3412] = 3307, - [3413] = 3390, - [3414] = 248, - [3415] = 1493, - [3416] = 1594, + [3409] = 3130, + [3410] = 3301, + [3411] = 3302, + [3412] = 3303, + [3413] = 3413, + [3414] = 3353, + [3415] = 3267, + [3416] = 3304, [3417] = 3417, - [3418] = 688, - [3419] = 3419, - [3420] = 1507, + [3418] = 3418, + [3419] = 3417, + [3420] = 3296, [3421] = 3421, - [3422] = 3279, - [3423] = 3423, - [3424] = 1595, - [3425] = 1494, - [3426] = 1576, - [3427] = 1578, + [3422] = 3422, + [3423] = 3305, + [3424] = 688, + [3425] = 3425, + [3426] = 3388, + [3427] = 3413, [3428] = 3307, [3429] = 3429, - [3430] = 3430, - [3431] = 3431, - [3432] = 3432, + [3430] = 3269, + [3431] = 3308, + [3432] = 1517, [3433] = 3433, - [3434] = 3339, + [3434] = 3434, [3435] = 3435, [3436] = 3436, [3437] = 3437, - [3438] = 3308, + [3438] = 3438, [3439] = 3439, - [3440] = 1579, - [3441] = 1580, - [3442] = 1581, - [3443] = 1508, + [3440] = 3300, + [3441] = 3441, + [3442] = 3301, + [3443] = 3302, [3444] = 3444, [3445] = 3445, - [3446] = 1582, - [3447] = 3328, - [3448] = 1525, - [3449] = 1499, - [3450] = 685, - [3451] = 3451, + [3446] = 3390, + [3447] = 3447, + [3448] = 3303, + [3449] = 3304, + [3450] = 3450, + [3451] = 3305, [3452] = 3452, - [3453] = 3390, + [3453] = 3453, [3454] = 3454, - [3455] = 3455, - [3456] = 1531, - [3457] = 3322, - [3458] = 3327, + [3455] = 3130, + [3456] = 3456, + [3457] = 3453, + [3458] = 3458, [3459] = 3459, [3460] = 3460, - [3461] = 3328, - [3462] = 3400, - [3463] = 1509, - [3464] = 3324, - [3465] = 3391, + [3461] = 3461, + [3462] = 3462, + [3463] = 1556, + [3464] = 3417, + [3465] = 3465, [3466] = 3466, - [3467] = 3467, - [3468] = 3468, - [3469] = 3469, - [3470] = 686, - [3471] = 3471, - [3472] = 1510, - [3473] = 3473, + [3467] = 3394, + [3468] = 3418, + [3469] = 3130, + [3470] = 1518, + [3471] = 1504, + [3472] = 3307, + [3473] = 3308, [3474] = 3474, [3475] = 3475, - [3476] = 3153, - [3477] = 3477, - [3478] = 3478, - [3479] = 3479, + [3476] = 3476, + [3477] = 234, + [3478] = 952, + [3479] = 246, [3480] = 3480, - [3481] = 241, - [3482] = 3279, - [3483] = 248, + [3481] = 3171, + [3482] = 3482, + [3483] = 239, [3484] = 3484, - [3485] = 3485, - [3486] = 3486, - [3487] = 3484, - [3488] = 3488, + [3485] = 3480, + [3486] = 3480, + [3487] = 3487, + [3488] = 3480, [3489] = 3489, - [3490] = 958, - [3491] = 3484, + [3490] = 3490, + [3491] = 959, [3492] = 957, - [3493] = 948, - [3494] = 3485, - [3495] = 3485, + [3493] = 3493, + [3494] = 225, + [3495] = 3482, [3496] = 3496, [3497] = 3497, - [3498] = 3484, - [3499] = 3485, - [3500] = 3477, - [3501] = 3484, - [3502] = 219, - [3503] = 1473, - [3504] = 223, - [3505] = 1477, - [3506] = 3485, - [3507] = 3485, - [3508] = 3485, - [3509] = 3478, - [3510] = 3485, - [3511] = 3484, - [3512] = 229, - [3513] = 239, - [3514] = 1475, - [3515] = 3515, - [3516] = 3516, - [3517] = 3517, - [3518] = 3518, - [3519] = 3519, + [3498] = 3482, + [3499] = 1485, + [3500] = 3267, + [3501] = 3501, + [3502] = 3502, + [3503] = 3480, + [3504] = 3504, + [3505] = 226, + [3506] = 3480, + [3507] = 3507, + [3508] = 3482, + [3509] = 3509, + [3510] = 3480, + [3511] = 3511, + [3512] = 3482, + [3513] = 3480, + [3514] = 3507, + [3515] = 3482, + [3516] = 231, + [3517] = 3509, + [3518] = 1484, + [3519] = 1471, [3520] = 3520, [3521] = 3521, - [3522] = 3223, + [3522] = 3522, [3523] = 3523, [3524] = 3524, [3525] = 3525, @@ -8178,11 +8210,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3534] = 3534, [3535] = 3535, [3536] = 3536, - [3537] = 3537, - [3538] = 3538, - [3539] = 3539, + [3537] = 1570, + [3538] = 1580, + [3539] = 1505, [3540] = 3540, - [3541] = 3541, + [3541] = 1506, [3542] = 3542, [3543] = 3543, [3544] = 3544, @@ -8195,117 +8227,117 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3551] = 3551, [3552] = 3552, [3553] = 3553, - [3554] = 3554, + [3554] = 1608, [3555] = 3555, [3556] = 3556, [3557] = 3557, [3558] = 3558, - [3559] = 1489, - [3560] = 3560, + [3559] = 3559, + [3560] = 1551, [3561] = 3561, [3562] = 3562, [3563] = 3563, - [3564] = 3564, - [3565] = 3565, + [3564] = 3384, + [3565] = 222, [3566] = 3566, [3567] = 3567, [3568] = 3568, [3569] = 3569, - [3570] = 3570, + [3570] = 3433, [3571] = 3571, - [3572] = 3572, - [3573] = 229, - [3574] = 239, + [3572] = 1590, + [3573] = 3573, + [3574] = 3574, [3575] = 3575, [3576] = 3576, - [3577] = 3571, + [3577] = 3577, [3578] = 3578, [3579] = 3579, [3580] = 3580, [3581] = 3581, [3582] = 3582, - [3583] = 3583, + [3583] = 239, [3584] = 3584, [3585] = 3585, - [3586] = 3586, + [3586] = 246, [3587] = 3587, - [3588] = 3568, - [3589] = 3589, + [3588] = 3588, + [3589] = 3574, [3590] = 3590, [3591] = 3591, [3592] = 3592, [3593] = 3593, - [3594] = 3347, + [3594] = 3594, [3595] = 3595, [3596] = 3596, [3597] = 3597, [3598] = 3598, [3599] = 3599, - [3600] = 3600, + [3600] = 3327, [3601] = 3601, [3602] = 3602, [3603] = 3603, [3604] = 3604, [3605] = 3605, [3606] = 3606, - [3607] = 3587, + [3607] = 3607, [3608] = 3608, [3609] = 3609, [3610] = 3610, - [3611] = 3611, - [3612] = 3582, + [3611] = 3590, + [3612] = 3612, [3613] = 3613, [3614] = 3614, [3615] = 3615, - [3616] = 3429, - [3617] = 3587, + [3616] = 3616, + [3617] = 3617, [3618] = 3618, [3619] = 3619, - [3620] = 3620, + [3620] = 3566, [3621] = 3621, [3622] = 3622, [3623] = 3623, [3624] = 3624, - [3625] = 3625, + [3625] = 3603, [3626] = 3626, - [3627] = 3627, + [3627] = 3536, [3628] = 3628, [3629] = 3629, [3630] = 3630, - [3631] = 3596, - [3632] = 1475, - [3633] = 3582, - [3634] = 3595, - [3635] = 3536, - [3636] = 3587, + [3631] = 3605, + [3632] = 3632, + [3633] = 3633, + [3634] = 3634, + [3635] = 3635, + [3636] = 3636, [3637] = 3637, [3638] = 3638, [3639] = 3639, - [3640] = 3640, - [3641] = 3641, - [3642] = 3568, + [3640] = 3550, + [3641] = 3574, + [3642] = 3642, [3643] = 3643, - [3644] = 3555, - [3645] = 3582, + [3644] = 3190, + [3645] = 3645, [3646] = 3646, - [3647] = 3647, - [3648] = 3562, - [3649] = 3603, - [3650] = 3650, - [3651] = 3582, - [3652] = 1522, + [3647] = 3592, + [3648] = 3648, + [3649] = 3649, + [3650] = 3524, + [3651] = 1540, + [3652] = 1546, [3653] = 3653, - [3654] = 1528, - [3655] = 3587, - [3656] = 3656, - [3657] = 216, - [3658] = 3271, - [3659] = 3659, - [3660] = 3660, - [3661] = 3582, + [3654] = 3532, + [3655] = 3655, + [3656] = 3605, + [3657] = 3657, + [3658] = 3585, + [3659] = 3592, + [3660] = 3587, + [3661] = 3661, [3662] = 3662, - [3663] = 3663, - [3664] = 3664, + [3663] = 3618, + [3664] = 3454, [3665] = 3665, [3666] = 3666, [3667] = 3667, @@ -8320,310 +8352,310 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3676] = 3676, [3677] = 3677, [3678] = 3678, - [3679] = 3593, - [3680] = 3528, - [3681] = 3681, + [3679] = 3285, + [3680] = 3680, + [3681] = 3532, [3682] = 3682, [3683] = 3683, - [3684] = 3587, + [3684] = 3545, [3685] = 3685, - [3686] = 3541, + [3686] = 3686, [3687] = 3687, [3688] = 3688, [3689] = 3689, - [3690] = 3690, + [3690] = 3592, [3691] = 3691, - [3692] = 3638, + [3692] = 3692, [3693] = 3693, - [3694] = 3681, - [3695] = 3567, + [3694] = 3574, + [3695] = 3695, [3696] = 3696, - [3697] = 3638, + [3697] = 3697, [3698] = 3698, [3699] = 3699, [3700] = 3700, [3701] = 3701, [3702] = 3702, - [3703] = 3693, - [3704] = 3582, + [3703] = 3703, + [3704] = 3704, [3705] = 3705, - [3706] = 3643, + [3706] = 3706, [3707] = 3707, - [3708] = 3708, + [3708] = 1484, [3709] = 3709, - [3710] = 3571, + [3710] = 3710, [3711] = 3711, [3712] = 3712, - [3713] = 3713, + [3713] = 3425, [3714] = 3714, [3715] = 3715, [3716] = 3716, - [3717] = 3717, - [3718] = 3718, + [3717] = 1471, + [3718] = 3574, [3719] = 3719, - [3720] = 3720, - [3721] = 3721, + [3720] = 3552, + [3721] = 3574, [3722] = 3722, - [3723] = 1473, - [3724] = 3724, - [3725] = 1477, - [3726] = 3527, + [3723] = 3723, + [3724] = 3574, + [3725] = 3725, + [3726] = 3726, [3727] = 3727, [3728] = 3728, [3729] = 3729, [3730] = 3730, [3731] = 3731, [3732] = 3732, - [3733] = 3628, - [3734] = 3294, - [3735] = 3735, + [3733] = 3733, + [3734] = 3613, + [3735] = 3602, [3736] = 3736, - [3737] = 3595, - [3738] = 3738, - [3739] = 3393, - [3740] = 3668, - [3741] = 3741, - [3742] = 3647, - [3743] = 3628, + [3737] = 3737, + [3738] = 3566, + [3739] = 3657, + [3740] = 3536, + [3741] = 3574, + [3742] = 3742, + [3743] = 3743, [3744] = 3744, - [3745] = 3741, - [3746] = 3746, + [3745] = 3745, + [3746] = 3596, [3747] = 3747, [3748] = 3748, - [3749] = 1579, + [3749] = 3749, [3750] = 3750, - [3751] = 3471, - [3752] = 1582, - [3753] = 1548, - [3754] = 1554, - [3755] = 3582, - [3756] = 3756, - [3757] = 1493, - [3758] = 1494, + [3751] = 3592, + [3752] = 3752, + [3753] = 3753, + [3754] = 3754, + [3755] = 3755, + [3756] = 3630, + [3757] = 3592, + [3758] = 1485, [3759] = 3759, - [3760] = 3760, + [3760] = 3618, [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3764, + [3762] = 3595, + [3763] = 3743, + [3764] = 3610, [3765] = 3765, - [3766] = 1526, - [3767] = 3727, + [3766] = 1548, + [3767] = 3767, [3768] = 3768, [3769] = 3769, [3770] = 3770, [3771] = 3771, [3772] = 3772, - [3773] = 3770, + [3773] = 1592, [3774] = 3774, [3775] = 3775, [3776] = 3776, - [3777] = 687, + [3777] = 3777, [3778] = 3778, [3779] = 3779, - [3780] = 3780, - [3781] = 685, + [3780] = 3770, + [3781] = 3774, [3782] = 3782, - [3783] = 3583, - [3784] = 688, - [3785] = 3785, - [3786] = 3653, - [3787] = 1491, - [3788] = 3759, - [3789] = 3682, - [3790] = 3778, + [3783] = 3783, + [3784] = 3784, + [3785] = 3750, + [3786] = 3759, + [3787] = 3776, + [3788] = 3788, + [3789] = 3778, + [3790] = 3790, [3791] = 3791, - [3792] = 3792, - [3793] = 3793, - [3794] = 3794, - [3795] = 3795, - [3796] = 3796, - [3797] = 1487, - [3798] = 3798, - [3799] = 1493, - [3800] = 1489, - [3801] = 1494, - [3802] = 3802, + [3792] = 3770, + [3793] = 3774, + [3794] = 3782, + [3795] = 1722, + [3796] = 1614, + [3797] = 3797, + [3798] = 3776, + [3799] = 3778, + [3800] = 3770, + [3801] = 3782, + [3802] = 3774, [3803] = 3803, - [3804] = 3804, + [3804] = 3782, [3805] = 3805, - [3806] = 3806, + [3806] = 3776, [3807] = 3807, - [3808] = 3533, - [3809] = 3778, - [3810] = 3524, - [3811] = 3529, - [3812] = 3812, - [3813] = 3813, - [3814] = 3814, - [3815] = 3770, - [3816] = 3816, - [3817] = 3659, + [3808] = 3778, + [3809] = 3770, + [3810] = 3810, + [3811] = 3774, + [3812] = 3782, + [3813] = 3776, + [3814] = 1628, + [3815] = 1629, + [3816] = 1650, + [3817] = 1651, [3818] = 3818, - [3819] = 3812, - [3820] = 3780, - [3821] = 1499, - [3822] = 1579, - [3823] = 3544, + [3819] = 3819, + [3820] = 3820, + [3821] = 3821, + [3822] = 3269, + [3823] = 3823, [3824] = 3824, [3825] = 3825, [3826] = 3826, - [3827] = 3827, - [3828] = 3769, - [3829] = 1582, - [3830] = 3769, - [3831] = 3771, - [3832] = 3832, - [3833] = 3816, + [3827] = 1507, + [3828] = 3828, + [3829] = 3829, + [3830] = 3830, + [3831] = 3831, + [3832] = 3576, + [3833] = 3673, [3834] = 3834, - [3835] = 3770, + [3835] = 3707, [3836] = 3836, - [3837] = 3825, + [3837] = 3837, [3838] = 3838, - [3839] = 3683, - [3840] = 3840, - [3841] = 3841, - [3842] = 3774, - [3843] = 3575, - [3844] = 3771, - [3845] = 3845, - [3846] = 3846, - [3847] = 3660, - [3848] = 3267, - [3849] = 684, - [3850] = 3850, - [3851] = 3779, + [3839] = 3839, + [3840] = 1540, + [3841] = 1546, + [3842] = 1548, + [3843] = 1673, + [3844] = 1674, + [3845] = 1675, + [3846] = 1676, + [3847] = 1677, + [3848] = 1678, + [3849] = 3709, + [3850] = 3836, + [3851] = 3715, [3852] = 3852, - [3853] = 3853, - [3854] = 3854, - [3855] = 3770, - [3856] = 3662, + [3853] = 3829, + [3854] = 3719, + [3855] = 1682, + [3856] = 1683, [3857] = 3857, - [3858] = 3778, - [3859] = 3779, - [3860] = 3266, - [3861] = 3774, + [3858] = 3831, + [3859] = 3525, + [3860] = 3860, + [3861] = 3861, [3862] = 3862, [3863] = 3778, - [3864] = 3791, - [3865] = 3852, - [3866] = 3850, - [3867] = 3805, - [3868] = 3853, - [3869] = 3869, - [3870] = 3792, - [3871] = 3769, - [3872] = 3803, - [3873] = 1522, - [3874] = 1526, - [3875] = 1528, - [3876] = 3771, - [3877] = 3778, - [3878] = 3780, - [3879] = 3795, - [3880] = 3221, - [3881] = 3687, - [3882] = 3688, - [3883] = 3883, - [3884] = 3803, + [3864] = 3864, + [3865] = 3865, + [3866] = 687, + [3867] = 3253, + [3868] = 1691, + [3869] = 1692, + [3870] = 3870, + [3871] = 688, + [3872] = 3742, + [3873] = 684, + [3874] = 3828, + [3875] = 3875, + [3876] = 685, + [3877] = 3838, + [3878] = 3878, + [3879] = 3879, + [3880] = 3880, + [3881] = 1499, + [3882] = 3821, + [3883] = 3768, + [3884] = 3711, [3885] = 3885, - [3886] = 3769, - [3887] = 3838, - [3888] = 3883, - [3889] = 3771, - [3890] = 3834, - [3891] = 3891, - [3892] = 3862, + [3886] = 3823, + [3887] = 3887, + [3888] = 3888, + [3889] = 3889, + [3890] = 3890, + [3891] = 3752, + [3892] = 3839, [3893] = 3893, - [3894] = 686, - [3895] = 3794, - [3896] = 3770, - [3897] = 3579, - [3898] = 1548, - [3899] = 3670, - [3900] = 3728, - [3901] = 3576, - [3902] = 3869, - [3903] = 3780, - [3904] = 3730, - [3905] = 3841, - [3906] = 3780, - [3907] = 3862, - [3908] = 3785, - [3909] = 3909, - [3910] = 3778, - [3911] = 3911, - [3912] = 3731, - [3913] = 3732, - [3914] = 3914, - [3915] = 3763, - [3916] = 3804, - [3917] = 3917, - [3918] = 3738, - [3919] = 3805, - [3920] = 3769, - [3921] = 3764, - [3922] = 1554, - [3923] = 3771, - [3924] = 3924, - [3925] = 3780, - [3926] = 3813, - [3927] = 3927, - [3928] = 3928, - [3929] = 3929, - [3930] = 3930, + [3894] = 3894, + [3895] = 3893, + [3896] = 3784, + [3897] = 3885, + [3898] = 3857, + [3899] = 3899, + [3900] = 3900, + [3901] = 3901, + [3902] = 3902, + [3903] = 3860, + [3904] = 3557, + [3905] = 3561, + [3906] = 3776, + [3907] = 3907, + [3908] = 3588, + [3909] = 3902, + [3910] = 3556, + [3911] = 3594, + [3912] = 3912, + [3913] = 3885, + [3914] = 3823, + [3915] = 3915, + [3916] = 3775, + [3917] = 3791, + [3918] = 3778, + [3919] = 3919, + [3920] = 3878, + [3921] = 3553, + [3922] = 3722, + [3923] = 3542, + [3924] = 3915, + [3925] = 3770, + [3926] = 3926, + [3927] = 3774, + [3928] = 1570, + [3929] = 1580, + [3930] = 3562, [3931] = 3931, [3932] = 3932, - [3933] = 3933, - [3934] = 3934, + [3933] = 1505, + [3934] = 1506, [3935] = 3935, - [3936] = 3936, - [3937] = 3937, + [3936] = 3935, + [3937] = 3782, [3938] = 3938, - [3939] = 3939, - [3940] = 3940, - [3941] = 3941, - [3942] = 3942, - [3943] = 908, - [3944] = 909, - [3945] = 910, - [3946] = 3946, - [3947] = 3947, + [3939] = 3577, + [3940] = 1608, + [3941] = 1551, + [3942] = 3852, + [3943] = 3582, + [3944] = 3907, + [3945] = 3767, + [3946] = 1590, + [3947] = 3776, [3948] = 3948, [3949] = 3949, - [3950] = 3950, - [3951] = 3951, - [3952] = 3952, - [3953] = 3951, - [3954] = 3954, + [3950] = 3598, + [3951] = 3712, + [3952] = 3821, + [3953] = 3953, + [3954] = 3274, [3955] = 3955, - [3956] = 3956, - [3957] = 3957, - [3958] = 3818, - [3959] = 3832, - [3960] = 3836, + [3956] = 3703, + [3957] = 3775, + [3958] = 3958, + [3959] = 3878, + [3960] = 3960, [3961] = 3961, - [3962] = 843, - [3963] = 901, - [3964] = 858, - [3965] = 893, - [3966] = 896, - [3967] = 780, - [3968] = 912, - [3969] = 913, - [3970] = 914, - [3971] = 879, + [3962] = 686, + [3963] = 3963, + [3964] = 3964, + [3965] = 1568, + [3966] = 228, + [3967] = 845, + [3968] = 773, + [3969] = 3969, + [3970] = 3970, + [3971] = 846, [3972] = 3972, [3973] = 3973, [3974] = 3974, - [3975] = 3975, - [3976] = 3976, - [3977] = 3977, - [3978] = 3549, + [3975] = 847, + [3976] = 848, + [3977] = 849, + [3978] = 3978, [3979] = 3979, - [3980] = 812, - [3981] = 813, - [3982] = 831, + [3980] = 3980, + [3981] = 3981, + [3982] = 3982, [3983] = 3983, [3984] = 3984, [3985] = 3985, @@ -8641,57 +8673,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3997] = 3997, [3998] = 3998, [3999] = 3999, - [4000] = 790, - [4001] = 792, + [4000] = 4000, + [4001] = 4001, [4002] = 4002, - [4003] = 793, - [4004] = 4004, + [4003] = 4003, + [4004] = 3527, [4005] = 4005, - [4006] = 4006, + [4006] = 857, [4007] = 4007, [4008] = 4008, [4009] = 4009, [4010] = 4010, - [4011] = 4011, - [4012] = 796, - [4013] = 797, - [4014] = 799, - [4015] = 802, + [4011] = 858, + [4012] = 3993, + [4013] = 4013, + [4014] = 859, + [4015] = 4015, [4016] = 4016, [4017] = 4017, [4018] = 4018, - [4019] = 3948, + [4019] = 4019, [4020] = 4020, - [4021] = 4009, - [4022] = 3998, - [4023] = 4017, + [4021] = 4021, + [4022] = 4022, + [4023] = 4023, [4024] = 4024, [4025] = 4025, [4026] = 4026, - [4027] = 3639, - [4028] = 806, + [4027] = 4027, + [4028] = 4028, [4029] = 4029, [4030] = 4030, - [4031] = 807, - [4032] = 808, - [4033] = 809, - [4034] = 764, - [4035] = 765, - [4036] = 767, - [4037] = 3979, - [4038] = 814, - [4039] = 4039, - [4040] = 3992, - [4041] = 3997, - [4042] = 4042, - [4043] = 4043, - [4044] = 766, + [4031] = 4031, + [4032] = 4032, + [4033] = 4033, + [4034] = 4034, + [4035] = 4035, + [4036] = 4036, + [4037] = 4037, + [4038] = 4038, + [4039] = 809, + [4040] = 4040, + [4041] = 810, + [4042] = 3997, + [4043] = 811, + [4044] = 4044, [4045] = 4045, - [4046] = 819, + [4046] = 4046, [4047] = 4047, - [4048] = 4048, + [4048] = 4044, [4049] = 4049, - [4050] = 4050, + [4050] = 4032, [4051] = 4051, [4052] = 4052, [4053] = 4053, @@ -8700,416 +8732,416 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4056] = 4056, [4057] = 4057, [4058] = 4058, - [4059] = 771, - [4060] = 772, + [4059] = 4021, + [4060] = 887, [4061] = 4061, [4062] = 4062, [4063] = 4063, [4064] = 4064, - [4065] = 4043, + [4065] = 4002, [4066] = 4066, [4067] = 4067, [4068] = 4068, - [4069] = 776, - [4070] = 4070, + [4069] = 860, + [4070] = 4013, [4071] = 4071, [4072] = 4072, - [4073] = 4045, + [4073] = 877, [4074] = 4074, [4075] = 4075, [4076] = 4076, [4077] = 4077, [4078] = 4078, - [4079] = 835, - [4080] = 836, - [4081] = 837, + [4079] = 4079, + [4080] = 4080, + [4081] = 3985, [4082] = 4082, - [4083] = 838, - [4084] = 4075, - [4085] = 839, - [4086] = 840, - [4087] = 841, + [4083] = 4083, + [4084] = 4084, + [4085] = 4085, + [4086] = 4086, + [4087] = 4087, [4088] = 4088, - [4089] = 842, - [4090] = 783, - [4091] = 4091, + [4089] = 4089, + [4090] = 4090, + [4091] = 4023, [4092] = 4092, [4093] = 4093, - [4094] = 845, - [4095] = 846, - [4096] = 849, - [4097] = 770, - [4098] = 773, - [4099] = 774, - [4100] = 915, + [4094] = 4094, + [4095] = 4095, + [4096] = 878, + [4097] = 4097, + [4098] = 4098, + [4099] = 4099, + [4100] = 4100, [4101] = 4101, [4102] = 4102, [4103] = 4103, [4104] = 4104, - [4105] = 4105, - [4106] = 3993, - [4107] = 4107, - [4108] = 3999, - [4109] = 4002, + [4105] = 879, + [4106] = 4106, + [4107] = 880, + [4108] = 4108, + [4109] = 4109, [4110] = 4110, [4111] = 4111, [4112] = 4112, [4113] = 4113, [4114] = 4114, - [4115] = 4026, - [4116] = 4030, + [4115] = 4036, + [4116] = 4116, [4117] = 4117, - [4118] = 866, - [4119] = 867, - [4120] = 868, - [4121] = 869, - [4122] = 870, - [4123] = 871, - [4124] = 872, - [4125] = 4125, - [4126] = 4126, - [4127] = 4127, - [4128] = 876, - [4129] = 877, - [4130] = 777, + [4118] = 4118, + [4119] = 4119, + [4120] = 4120, + [4121] = 4121, + [4122] = 4122, + [4123] = 4123, + [4124] = 4124, + [4125] = 881, + [4126] = 882, + [4127] = 883, + [4128] = 884, + [4129] = 4129, + [4130] = 4130, [4131] = 4131, [4132] = 4132, - [4133] = 3993, + [4133] = 4133, [4134] = 4134, - [4135] = 4135, - [4136] = 3999, + [4135] = 3982, + [4136] = 4007, [4137] = 4137, [4138] = 4138, [4139] = 4139, [4140] = 4140, [4141] = 4141, - [4142] = 4026, + [4142] = 4142, [4143] = 4143, - [4144] = 887, - [4145] = 888, - [4146] = 889, - [4147] = 890, - [4148] = 892, + [4144] = 4144, + [4145] = 3993, + [4146] = 4146, + [4147] = 4098, + [4148] = 4007, [4149] = 4149, - [4150] = 4150, - [4151] = 4151, + [4150] = 4010, + [4151] = 3790, [4152] = 4152, [4153] = 4153, - [4154] = 4048, + [4154] = 4154, [4155] = 4155, - [4156] = 4156, - [4157] = 3999, - [4158] = 4158, + [4156] = 4034, + [4157] = 4010, + [4158] = 4038, [4159] = 4159, [4160] = 4160, [4161] = 4161, - [4162] = 4026, - [4163] = 4163, + [4162] = 4162, + [4163] = 4009, [4164] = 4164, - [4165] = 4165, + [4165] = 889, [4166] = 4166, [4167] = 4167, [4168] = 4168, - [4169] = 4169, - [4170] = 4170, + [4169] = 890, + [4170] = 891, [4171] = 4171, - [4172] = 4172, + [4172] = 892, [4173] = 4173, - [4174] = 1611, - [4175] = 1621, - [4176] = 4176, - [4177] = 4177, + [4174] = 4174, + [4175] = 4175, + [4176] = 763, + [4177] = 780, [4178] = 4178, - [4179] = 4179, + [4179] = 775, [4180] = 4180, - [4181] = 4074, - [4182] = 4182, + [4181] = 4181, + [4182] = 893, [4183] = 4183, [4184] = 4184, [4185] = 4185, - [4186] = 4186, - [4187] = 1651, + [4186] = 825, + [4187] = 4187, [4188] = 4188, [4189] = 4189, - [4190] = 1652, + [4190] = 4190, [4191] = 4191, [4192] = 4192, - [4193] = 4193, - [4194] = 4194, - [4195] = 1683, - [4196] = 1684, + [4193] = 3982, + [4194] = 864, + [4195] = 865, + [4196] = 4196, [4197] = 4197, - [4198] = 4167, + [4198] = 4198, [4199] = 4199, - [4200] = 3993, - [4201] = 4201, + [4200] = 4200, + [4201] = 898, [4202] = 4202, - [4203] = 4203, - [4204] = 4204, + [4203] = 4024, + [4204] = 4025, [4205] = 4205, [4206] = 4206, [4207] = 4207, [4208] = 4208, [4209] = 4209, [4210] = 4210, - [4211] = 4006, - [4212] = 4020, - [4213] = 4213, - [4214] = 4113, - [4215] = 4132, + [4211] = 4211, + [4212] = 1722, + [4213] = 1614, + [4214] = 4214, + [4215] = 4215, [4216] = 4216, [4217] = 4217, [4218] = 4218, [4219] = 4219, - [4220] = 4220, + [4220] = 4036, [4221] = 4221, [4222] = 4222, - [4223] = 4223, + [4223] = 4032, [4224] = 4224, [4225] = 4225, - [4226] = 4226, + [4226] = 4057, [4227] = 4227, - [4228] = 4102, - [4229] = 1646, - [4230] = 1678, - [4231] = 1634, - [4232] = 1690, - [4233] = 1702, - [4234] = 1618, - [4235] = 4235, + [4228] = 4228, + [4229] = 4034, + [4230] = 4225, + [4231] = 4231, + [4232] = 3797, + [4233] = 4233, + [4234] = 4234, + [4235] = 4032, [4236] = 4236, [4237] = 4237, [4238] = 4238, [4239] = 4239, - [4240] = 1658, - [4241] = 1662, - [4242] = 4242, + [4240] = 4038, + [4241] = 3994, + [4242] = 785, [4243] = 4243, - [4244] = 4244, - [4245] = 4245, - [4246] = 4078, - [4247] = 4077, + [4244] = 4076, + [4245] = 786, + [4246] = 4246, + [4247] = 4247, [4248] = 4248, [4249] = 4249, - [4250] = 4250, - [4251] = 4008, + [4250] = 1628, + [4251] = 1629, [4252] = 4252, [4253] = 4253, [4254] = 4254, - [4255] = 4255, + [4255] = 3837, [4256] = 4256, - [4257] = 4257, - [4258] = 3996, - [4259] = 4259, - [4260] = 4260, + [4257] = 832, + [4258] = 4258, + [4259] = 4098, + [4260] = 787, [4261] = 4261, - [4262] = 4262, + [4262] = 788, [4263] = 4263, [4264] = 4264, - [4265] = 4265, - [4266] = 4266, - [4267] = 4267, - [4268] = 1689, - [4269] = 1709, + [4265] = 833, + [4266] = 4016, + [4267] = 4249, + [4268] = 834, + [4269] = 1650, [4270] = 4270, [4271] = 4271, [4272] = 4272, - [4273] = 4273, + [4273] = 1651, [4274] = 4274, [4275] = 4275, - [4276] = 4076, - [4277] = 4277, - [4278] = 4278, + [4276] = 4276, + [4277] = 789, + [4278] = 790, [4279] = 4279, - [4280] = 4056, - [4281] = 4185, - [4282] = 4282, - [4283] = 4283, - [4284] = 4284, + [4280] = 791, + [4281] = 4062, + [4282] = 792, + [4283] = 4008, + [4284] = 4078, [4285] = 4285, - [4286] = 4286, - [4287] = 4193, + [4286] = 793, + [4287] = 4287, [4288] = 4288, [4289] = 4289, - [4290] = 4201, - [4291] = 4204, - [4292] = 4237, + [4290] = 4098, + [4291] = 4291, + [4292] = 4292, [4293] = 4293, - [4294] = 4222, - [4295] = 4295, + [4294] = 4098, + [4295] = 826, [4296] = 4296, [4297] = 4297, - [4298] = 4298, - [4299] = 4299, + [4298] = 4231, + [4299] = 829, [4300] = 4300, [4301] = 4301, [4302] = 4302, - [4303] = 3972, - [4304] = 1611, - [4305] = 1621, + [4303] = 4303, + [4304] = 4304, + [4305] = 4305, [4306] = 4306, [4307] = 4307, [4308] = 4308, - [4309] = 4309, + [4309] = 4016, [4310] = 4310, - [4311] = 4311, - [4312] = 4312, - [4313] = 4313, + [4311] = 4031, + [4312] = 4092, + [4313] = 4061, [4314] = 4314, - [4315] = 1651, - [4316] = 1652, + [4315] = 4315, + [4316] = 4316, [4317] = 4317, - [4318] = 4062, - [4319] = 4319, - [4320] = 1683, - [4321] = 1684, - [4322] = 4322, + [4318] = 4031, + [4319] = 4092, + [4320] = 4320, + [4321] = 797, + [4322] = 3964, [4323] = 4323, - [4324] = 4324, - [4325] = 4325, - [4326] = 4326, - [4327] = 4327, + [4324] = 4188, + [4325] = 764, + [4326] = 3973, + [4327] = 798, [4328] = 4328, [4329] = 4329, [4330] = 4330, - [4331] = 4331, + [4331] = 4264, [4332] = 4332, - [4333] = 4193, + [4333] = 4333, [4334] = 4334, [4335] = 4335, [4336] = 4336, - [4337] = 1646, - [4338] = 1678, - [4339] = 1634, + [4337] = 4337, + [4338] = 4338, + [4339] = 4339, [4340] = 4340, - [4341] = 1690, - [4342] = 1702, - [4343] = 1618, + [4341] = 4341, + [4342] = 4231, + [4343] = 4343, [4344] = 4344, [4345] = 4345, - [4346] = 1658, - [4347] = 1662, + [4346] = 803, + [4347] = 4188, [4348] = 4348, [4349] = 4349, [4350] = 4350, - [4351] = 4351, + [4351] = 768, [4352] = 4352, [4353] = 4353, [4354] = 4354, [4355] = 4355, [4356] = 4356, - [4357] = 4357, - [4358] = 4358, + [4357] = 762, + [4358] = 781, [4359] = 4359, [4360] = 4360, - [4361] = 1689, - [4362] = 1709, - [4363] = 4363, - [4364] = 4364, - [4365] = 4365, + [4361] = 4361, + [4362] = 4362, + [4363] = 761, + [4364] = 4336, + [4365] = 835, [4366] = 4366, - [4367] = 4284, + [4367] = 770, [4368] = 4368, - [4369] = 4194, + [4369] = 804, [4370] = 4370, [4371] = 4371, [4372] = 4372, - [4373] = 4373, - [4374] = 4026, - [4375] = 4375, - [4376] = 4376, - [4377] = 4377, - [4378] = 4378, + [4373] = 3818, + [4374] = 837, + [4375] = 4032, + [4376] = 3986, + [4377] = 1673, + [4378] = 1674, [4379] = 4379, - [4380] = 3948, - [4381] = 4007, - [4382] = 4382, - [4383] = 3992, - [4384] = 3997, - [4385] = 4064, - [4386] = 4222, - [4387] = 4056, - [4388] = 4030, - [4389] = 4389, + [4380] = 776, + [4381] = 4381, + [4382] = 4049, + [4383] = 4383, + [4384] = 4384, + [4385] = 230, + [4386] = 4256, + [4387] = 3819, + [4388] = 1675, + [4389] = 4308, [4390] = 4390, - [4391] = 245, - [4392] = 247, - [4393] = 852, - [4394] = 4394, - [4395] = 3999, + [4391] = 4037, + [4392] = 1676, + [4393] = 1677, + [4394] = 1678, + [4395] = 4395, [4396] = 4396, [4397] = 4397, - [4398] = 885, - [4399] = 811, - [4400] = 4400, - [4401] = 4401, - [4402] = 4067, + [4398] = 4398, + [4399] = 4399, + [4400] = 1682, + [4401] = 1683, + [4402] = 4402, [4403] = 4403, - [4404] = 4404, + [4404] = 3820, [4405] = 4405, [4406] = 4406, [4407] = 4407, - [4408] = 4408, - [4409] = 4185, - [4410] = 4201, - [4411] = 4204, - [4412] = 4244, - [4413] = 4002, + [4408] = 772, + [4409] = 4409, + [4410] = 4036, + [4411] = 4411, + [4412] = 4412, + [4413] = 4413, [4414] = 4414, - [4415] = 886, - [4416] = 900, - [4417] = 4417, - [4418] = 4418, - [4419] = 4419, + [4415] = 4415, + [4416] = 4416, + [4417] = 3534, + [4418] = 3535, + [4419] = 831, [4420] = 4420, - [4421] = 4421, - [4422] = 4422, + [4421] = 841, + [4422] = 872, [4423] = 4423, [4424] = 4424, [4425] = 4425, [4426] = 4426, - [4427] = 4427, - [4428] = 3824, - [4429] = 1543, + [4427] = 873, + [4428] = 4428, + [4429] = 3636, [4430] = 4430, - [4431] = 859, - [4432] = 1546, - [4433] = 4433, - [4434] = 905, + [4431] = 4431, + [4432] = 4432, + [4433] = 842, + [4434] = 4320, [4435] = 4435, [4436] = 4436, [4437] = 4437, [4438] = 4438, - [4439] = 4439, + [4439] = 1691, [4440] = 4440, - [4441] = 4441, - [4442] = 4442, + [4441] = 1692, + [4442] = 815, [4443] = 4443, - [4444] = 4070, + [4444] = 1564, [4445] = 4445, [4446] = 4446, [4447] = 4447, - [4448] = 4448, - [4449] = 3586, - [4450] = 3598, - [4451] = 4451, - [4452] = 4312, - [4453] = 828, + [4448] = 3991, + [4449] = 4449, + [4450] = 4450, + [4451] = 816, + [4452] = 4452, + [4453] = 843, [4454] = 4454, - [4455] = 829, + [4455] = 4455, [4456] = 4456, [4457] = 4457, [4458] = 4458, - [4459] = 4459, - [4460] = 4088, - [4461] = 4461, - [4462] = 4462, + [4459] = 817, + [4460] = 818, + [4461] = 819, + [4462] = 820, [4463] = 4463, - [4464] = 4464, - [4465] = 4465, - [4466] = 4466, + [4464] = 821, + [4465] = 4307, + [4466] = 824, [4467] = 4467, - [4468] = 4465, + [4468] = 4468, [4469] = 4469, [4470] = 4470, [4471] = 4471, @@ -9119,135 +9151,135 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4475] = 4475, [4476] = 4476, [4477] = 4477, - [4478] = 3558, - [4479] = 4466, - [4480] = 4480, - [4481] = 4465, - [4482] = 4482, - [4483] = 4466, - [4484] = 4476, + [4478] = 4472, + [4479] = 4479, + [4480] = 4474, + [4481] = 226, + [4482] = 225, + [4483] = 4483, + [4484] = 4484, [4485] = 4485, - [4486] = 4486, + [4486] = 3568, [4487] = 4487, - [4488] = 4485, + [4488] = 4488, [4489] = 4489, - [4490] = 4471, + [4490] = 4488, [4491] = 4491, - [4492] = 4486, + [4492] = 4489, [4493] = 4493, [4494] = 4494, - [4495] = 4465, - [4496] = 4487, - [4497] = 4475, + [4495] = 4495, + [4496] = 4496, + [4497] = 4497, [4498] = 4498, - [4499] = 4491, - [4500] = 4466, - [4501] = 4462, - [4502] = 4486, - [4503] = 4463, + [4499] = 4493, + [4500] = 4493, + [4501] = 4501, + [4502] = 4491, + [4503] = 4483, [4504] = 4504, - [4505] = 4505, + [4505] = 4483, [4506] = 4506, - [4507] = 4498, - [4508] = 4471, - [4509] = 4471, - [4510] = 4510, - [4511] = 4491, - [4512] = 4486, - [4513] = 4513, - [4514] = 4514, - [4515] = 4465, - [4516] = 4472, - [4517] = 4489, - [4518] = 4491, - [4519] = 4465, - [4520] = 4466, + [4507] = 4504, + [4508] = 4508, + [4509] = 4474, + [4510] = 4489, + [4511] = 4472, + [4512] = 4497, + [4513] = 4508, + [4514] = 4508, + [4515] = 4489, + [4516] = 4488, + [4517] = 4517, + [4518] = 3623, + [4519] = 4471, + [4520] = 4472, [4521] = 4521, - [4522] = 4522, + [4522] = 4496, [4523] = 4523, - [4524] = 4524, - [4525] = 4485, - [4526] = 4526, - [4527] = 4485, - [4528] = 4528, - [4529] = 4475, - [4530] = 4513, + [4524] = 4474, + [4525] = 4525, + [4526] = 4488, + [4527] = 4527, + [4528] = 4474, + [4529] = 4493, + [4530] = 4497, [4531] = 4531, - [4532] = 4471, + [4532] = 4491, [4533] = 4533, [4534] = 4534, [4535] = 4535, - [4536] = 4462, - [4537] = 4537, - [4538] = 4463, + [4536] = 4504, + [4537] = 4472, + [4538] = 4538, [4539] = 4539, - [4540] = 4540, - [4541] = 4498, - [4542] = 4471, - [4543] = 4543, - [4544] = 4462, - [4545] = 4463, - [4546] = 4462, + [4540] = 4508, + [4541] = 4474, + [4542] = 4542, + [4543] = 4508, + [4544] = 4494, + [4545] = 4504, + [4546] = 4546, [4547] = 4547, - [4548] = 4463, - [4549] = 4486, - [4550] = 4491, - [4551] = 4551, + [4548] = 4531, + [4549] = 4489, + [4550] = 4550, + [4551] = 4483, [4552] = 4504, - [4553] = 4475, + [4553] = 4521, [4554] = 4554, [4555] = 4555, - [4556] = 4498, - [4557] = 4462, - [4558] = 4463, - [4559] = 4559, - [4560] = 4485, + [4556] = 4533, + [4557] = 4534, + [4558] = 4558, + [4559] = 4472, + [4560] = 4560, [4561] = 4561, - [4562] = 4498, - [4563] = 4475, - [4564] = 4471, - [4565] = 4480, + [4562] = 4527, + [4563] = 4563, + [4564] = 4560, + [4565] = 4565, [4566] = 4566, [4567] = 4567, - [4568] = 4498, - [4569] = 4569, - [4570] = 4570, - [4571] = 4462, - [4572] = 4572, - [4573] = 219, - [4574] = 223, - [4575] = 4506, - [4576] = 4504, - [4577] = 4486, - [4578] = 4491, - [4579] = 4579, - [4580] = 4504, - [4581] = 4463, - [4582] = 4582, - [4583] = 4504, - [4584] = 3713, - [4585] = 4585, - [4586] = 4534, - [4587] = 4473, - [4588] = 4475, - [4589] = 4589, - [4590] = 4537, - [4591] = 4498, - [4592] = 4486, - [4593] = 4491, - [4594] = 4594, - [4595] = 4504, - [4596] = 4524, + [4568] = 4497, + [4569] = 4560, + [4570] = 4504, + [4571] = 4571, + [4572] = 4491, + [4573] = 4483, + [4574] = 4560, + [4575] = 4495, + [4576] = 4488, + [4577] = 4489, + [4578] = 4488, + [4579] = 4504, + [4580] = 4580, + [4581] = 4581, + [4582] = 4472, + [4583] = 4491, + [4584] = 4483, + [4585] = 4560, + [4586] = 4560, + [4587] = 4488, + [4588] = 4588, + [4589] = 4474, + [4590] = 4590, + [4591] = 4571, + [4592] = 4489, + [4593] = 4493, + [4594] = 4483, + [4595] = 4491, + [4596] = 4596, [4597] = 4597, [4598] = 4598, [4599] = 4599, - [4600] = 4600, - [4601] = 4601, - [4602] = 4602, - [4603] = 4504, - [4604] = 4475, - [4605] = 4605, - [4606] = 4606, + [4600] = 4497, + [4601] = 4554, + [4602] = 4473, + [4603] = 4603, + [4604] = 4497, + [4605] = 4560, + [4606] = 4491, [4607] = 4607, [4608] = 4608, [4609] = 4609, @@ -9261,35 +9293,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4617] = 4617, [4618] = 4618, [4619] = 4619, - [4620] = 4620, + [4620] = 3673, [4621] = 4621, [4622] = 4622, [4623] = 4623, [4624] = 4624, - [4625] = 3659, + [4625] = 4625, [4626] = 4626, [4627] = 4627, [4628] = 4628, [4629] = 4629, - [4630] = 4630, + [4630] = 1545, [4631] = 4631, [4632] = 4632, [4633] = 4633, [4634] = 4634, - [4635] = 4635, - [4636] = 4636, + [4635] = 1552, + [4636] = 4218, [4637] = 4637, [4638] = 4638, [4639] = 4639, [4640] = 4640, - [4641] = 4624, - [4642] = 4640, + [4641] = 4641, + [4642] = 4642, [4643] = 4643, [4644] = 4644, [4645] = 4645, - [4646] = 4646, + [4646] = 4608, [4647] = 4647, - [4648] = 4633, + [4648] = 4648, [4649] = 4649, [4650] = 4650, [4651] = 4651, @@ -9300,10 +9332,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4656] = 4656, [4657] = 4657, [4658] = 4658, - [4659] = 4610, + [4659] = 4659, [4660] = 4660, [4661] = 4661, - [4662] = 4662, + [4662] = 4614, [4663] = 4663, [4664] = 4664, [4665] = 4665, @@ -9313,74 +9345,74 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4669] = 4669, [4670] = 4670, [4671] = 4671, - [4672] = 3946, - [4673] = 4633, - [4674] = 4624, - [4675] = 4624, - [4676] = 4640, - [4677] = 4677, - [4678] = 4640, - [4679] = 4679, - [4680] = 4680, + [4672] = 4672, + [4673] = 4673, + [4674] = 4674, + [4675] = 4675, + [4676] = 4676, + [4677] = 4639, + [4678] = 4678, + [4679] = 4608, + [4680] = 4647, [4681] = 4681, - [4682] = 4649, - [4683] = 4650, - [4684] = 4652, + [4682] = 4682, + [4683] = 4683, + [4684] = 4684, [4685] = 4685, - [4686] = 4654, + [4686] = 4686, [4687] = 4687, - [4688] = 4688, - [4689] = 4689, - [4690] = 4606, - [4691] = 4607, - [4692] = 4608, - [4693] = 4609, + [4688] = 4654, + [4689] = 4656, + [4690] = 4658, + [4691] = 4691, + [4692] = 4659, + [4693] = 4693, [4694] = 4694, - [4695] = 4610, - [4696] = 4696, - [4697] = 4697, - [4698] = 4698, - [4699] = 4699, + [4695] = 4695, + [4696] = 4609, + [4697] = 4610, + [4698] = 4611, + [4699] = 4612, [4700] = 4700, - [4701] = 4701, + [4701] = 4614, [4702] = 4702, [4703] = 4703, [4704] = 4704, [4705] = 4705, [4706] = 4706, - [4707] = 4624, - [4708] = 4640, + [4707] = 4707, + [4708] = 4708, [4709] = 4709, - [4710] = 4710, - [4711] = 4652, + [4710] = 3742, + [4711] = 4711, [4712] = 4712, - [4713] = 4654, - [4714] = 4714, - [4715] = 4715, + [4713] = 4713, + [4714] = 4608, + [4715] = 4647, [4716] = 4716, [4717] = 4717, [4718] = 4718, - [4719] = 4719, + [4719] = 4658, [4720] = 4720, - [4721] = 4646, + [4721] = 4659, [4722] = 4722, - [4723] = 4624, - [4724] = 4640, + [4723] = 4723, + [4724] = 4724, [4725] = 4725, [4726] = 4726, [4727] = 4727, [4728] = 4728, - [4729] = 4652, + [4729] = 4729, [4730] = 4730, - [4731] = 4654, - [4732] = 4732, - [4733] = 4733, + [4731] = 4731, + [4732] = 4608, + [4733] = 4647, [4734] = 4734, [4735] = 4735, [4736] = 4736, - [4737] = 4737, + [4737] = 4658, [4738] = 4738, - [4739] = 4739, + [4739] = 4659, [4740] = 4740, [4741] = 4741, [4742] = 4742, @@ -9405,7 +9437,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4761] = 4761, [4762] = 4762, [4763] = 4763, - [4764] = 4658, + [4764] = 4764, [4765] = 4765, [4766] = 4766, [4767] = 4767, @@ -9415,8 +9447,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4771] = 4771, [4772] = 4772, [4773] = 4773, - [4774] = 4727, - [4775] = 4738, + [4774] = 4774, + [4775] = 4775, [4776] = 4776, [4777] = 4777, [4778] = 4778, @@ -9424,21 +9456,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4780] = 4780, [4781] = 4781, [4782] = 4782, - [4783] = 768, - [4784] = 4649, + [4783] = 4783, + [4784] = 1592, [4785] = 4785, - [4786] = 4633, - [4787] = 4650, - [4788] = 4606, - [4789] = 4607, + [4786] = 4786, + [4787] = 4787, + [4788] = 1499, + [4789] = 4789, [4790] = 4790, - [4791] = 4608, + [4791] = 1507, [4792] = 4792, - [4793] = 4609, + [4793] = 4793, [4794] = 4794, - [4795] = 4795, + [4795] = 760, [4796] = 4796, - [4797] = 4797, + [4797] = 4639, [4798] = 4798, [4799] = 4799, [4800] = 4800, @@ -9450,7 +9482,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4806] = 4806, [4807] = 4807, [4808] = 4808, - [4809] = 4610, + [4809] = 4809, [4810] = 4810, [4811] = 4811, [4812] = 4812, @@ -9458,44 +9490,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4814] = 4814, [4815] = 4815, [4816] = 4816, - [4817] = 4650, + [4817] = 4817, [4818] = 4818, - [4819] = 4652, + [4819] = 4819, [4820] = 4820, - [4821] = 4807, + [4821] = 4656, [4822] = 4822, - [4823] = 4815, - [4824] = 4824, + [4823] = 4823, + [4824] = 4650, [4825] = 4825, - [4826] = 4652, + [4826] = 4826, [4827] = 4827, - [4828] = 4654, + [4828] = 4828, [4829] = 4829, - [4830] = 4654, + [4830] = 4830, [4831] = 4831, [4832] = 4832, [4833] = 4833, - [4834] = 4665, - [4835] = 4835, - [4836] = 4836, - [4837] = 4837, - [4838] = 4838, + [4834] = 4834, + [4835] = 4634, + [4836] = 4638, + [4837] = 4694, + [4838] = 4815, [4839] = 4839, [4840] = 4840, - [4841] = 4687, + [4841] = 4424, [4842] = 4842, [4843] = 4843, - [4844] = 3576, + [4844] = 4844, [4845] = 4845, [4846] = 4846, [4847] = 4847, - [4848] = 4618, - [4849] = 4622, + [4848] = 4848, + [4849] = 4849, [4850] = 4850, [4851] = 4851, [4852] = 4852, [4853] = 4853, - [4854] = 4854, + [4854] = 4840, [4855] = 4855, [4856] = 4856, [4857] = 4857, @@ -9507,16 +9539,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4863] = 4863, [4864] = 4864, [4865] = 4865, - [4866] = 4866, + [4866] = 4654, [4867] = 4867, [4868] = 4868, [4869] = 4869, - [4870] = 4610, + [4870] = 4870, [4871] = 4871, [4872] = 4872, [4873] = 4873, - [4874] = 4874, - [4875] = 4875, + [4874] = 4771, + [4875] = 4855, [4876] = 4876, [4877] = 4877, [4878] = 4878, @@ -9526,11 +9558,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4882] = 4882, [4883] = 4883, [4884] = 4884, - [4885] = 4873, + [4885] = 4885, [4886] = 4886, - [4887] = 4876, - [4888] = 4888, - [4889] = 4861, + [4887] = 4887, + [4888] = 4656, + [4889] = 4889, [4890] = 4890, [4891] = 4891, [4892] = 4892, @@ -9546,8 +9578,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4902] = 4902, [4903] = 4903, [4904] = 4904, - [4905] = 4905, - [4906] = 4906, + [4905] = 4652, + [4906] = 4663, [4907] = 4907, [4908] = 4908, [4909] = 4909, @@ -9556,17 +9588,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4912] = 4912, [4913] = 4913, [4914] = 4914, - [4915] = 4915, + [4915] = 4757, [4916] = 4916, [4917] = 4917, - [4918] = 4918, - [4919] = 4919, + [4918] = 4766, + [4919] = 4770, [4920] = 4920, [4921] = 4921, [4922] = 4922, [4923] = 4923, - [4924] = 4633, - [4925] = 1491, + [4924] = 4924, + [4925] = 4925, [4926] = 4926, [4927] = 4927, [4928] = 4928, @@ -9574,41 +9606,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4930] = 4930, [4931] = 4931, [4932] = 4932, - [4933] = 4933, - [4934] = 4934, + [4933] = 4639, + [4934] = 4639, [4935] = 4935, - [4936] = 4936, + [4936] = 4773, [4937] = 4937, [4938] = 4938, [4939] = 4939, [4940] = 4940, - [4941] = 4941, - [4942] = 3544, - [4943] = 4617, - [4944] = 4944, - [4945] = 4945, + [4941] = 4890, + [4942] = 4942, + [4943] = 4943, + [4944] = 3752, + [4945] = 4647, [4946] = 4946, - [4947] = 4947, + [4947] = 4902, [4948] = 4948, [4949] = 4949, [4950] = 4950, [4951] = 4951, - [4952] = 4952, + [4952] = 4916, [4953] = 4953, [4954] = 4954, [4955] = 4955, - [4956] = 4956, + [4956] = 4942, [4957] = 4957, - [4958] = 4749, + [4958] = 4958, [4959] = 4959, [4960] = 4960, [4961] = 4961, [4962] = 4962, - [4963] = 4963, - [4964] = 4964, - [4965] = 4965, + [4963] = 4650, + [4964] = 4904, + [4965] = 4886, [4966] = 4966, - [4967] = 4967, + [4967] = 4857, [4968] = 4968, [4969] = 4969, [4970] = 4970, @@ -9616,13 +9648,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4972] = 4972, [4973] = 4973, [4974] = 4974, - [4975] = 4975, + [4975] = 4858, [4976] = 4976, - [4977] = 4977, - [4978] = 4978, + [4977] = 4654, + [4978] = 4656, [4979] = 4979, [4980] = 4980, - [4981] = 4981, + [4981] = 4608, [4982] = 4982, [4983] = 4983, [4984] = 4984, @@ -9630,8 +9662,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4986] = 4986, [4987] = 4987, [4988] = 4988, - [4989] = 4989, - [4990] = 4990, + [4989] = 4658, + [4990] = 4659, [4991] = 4991, [4992] = 4992, [4993] = 4993, @@ -9639,38 +9671,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4995] = 4995, [4996] = 4996, [4997] = 4997, - [4998] = 4998, - [4999] = 4646, + [4998] = 4110, + [4999] = 4999, [5000] = 5000, - [5001] = 5001, + [5001] = 4851, [5002] = 5002, [5003] = 5003, [5004] = 5004, - [5005] = 5005, + [5005] = 4647, [5006] = 5006, [5007] = 5007, [5008] = 5008, [5009] = 5009, [5010] = 5010, - [5011] = 3533, + [5011] = 5011, [5012] = 5012, - [5013] = 5013, + [5013] = 4614, [5014] = 5014, - [5015] = 5015, + [5015] = 4768, [5016] = 5016, [5017] = 5017, [5018] = 5018, [5019] = 5019, [5020] = 5020, [5021] = 5021, - [5022] = 4257, + [5022] = 4802, [5023] = 5023, - [5024] = 1487, + [5024] = 5024, [5025] = 5025, [5026] = 5026, - [5027] = 5027, + [5027] = 4804, [5028] = 5028, - [5029] = 4801, + [5029] = 5029, [5030] = 5030, [5031] = 5031, [5032] = 5032, @@ -9684,7 +9716,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5040] = 5040, [5041] = 5041, [5042] = 5042, - [5043] = 5043, + [5043] = 4806, [5044] = 5044, [5045] = 5045, [5046] = 5046, @@ -9702,65 +9734,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5058] = 5058, [5059] = 5059, [5060] = 5060, - [5061] = 4919, + [5061] = 5061, [5062] = 5062, [5063] = 5063, [5064] = 5064, [5065] = 5065, - [5066] = 4649, + [5066] = 5066, [5067] = 5067, [5068] = 5068, - [5069] = 4435, + [5069] = 5069, [5070] = 5070, - [5071] = 1499, - [5072] = 4753, - [5073] = 5073, + [5071] = 5071, + [5072] = 5072, + [5073] = 4656, [5074] = 5074, [5075] = 5075, [5076] = 5076, - [5077] = 4650, + [5077] = 5077, [5078] = 5078, [5079] = 5079, [5080] = 5080, [5081] = 5081, [5082] = 5082, - [5083] = 4935, + [5083] = 5083, [5084] = 5084, [5085] = 5085, [5086] = 5086, [5087] = 5087, [5088] = 5088, - [5089] = 4650, + [5089] = 5089, [5090] = 5090, [5091] = 5091, [5092] = 5092, - [5093] = 4750, + [5093] = 5093, [5094] = 5094, [5095] = 5095, [5096] = 5096, [5097] = 5097, [5098] = 5098, [5099] = 5099, - [5100] = 4687, - [5101] = 4618, - [5102] = 5102, + [5100] = 5100, + [5101] = 5101, + [5102] = 4758, [5103] = 5103, [5104] = 5104, [5105] = 5105, - [5106] = 5106, + [5106] = 4972, [5107] = 5107, - [5108] = 5108, - [5109] = 4861, + [5108] = 4986, + [5109] = 4973, [5110] = 5110, [5111] = 5111, - [5112] = 4901, + [5112] = 5112, [5113] = 5113, [5114] = 5114, - [5115] = 4633, + [5115] = 5115, [5116] = 5116, [5117] = 5117, [5118] = 5118, - [5119] = 4912, + [5119] = 5119, [5120] = 5120, [5121] = 5121, [5122] = 5122, @@ -9773,109 +9805,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5129] = 5129, [5130] = 5130, [5131] = 5131, - [5132] = 4921, + [5132] = 4988, [5133] = 5133, - [5134] = 4923, + [5134] = 5134, [5135] = 5135, - [5136] = 5129, - [5137] = 5094, + [5136] = 5136, + [5137] = 5137, [5138] = 5138, [5139] = 5139, [5140] = 5140, - [5141] = 4617, - [5142] = 5142, - [5143] = 1525, + [5141] = 5141, + [5142] = 4658, + [5143] = 5143, [5144] = 5144, [5145] = 5145, [5146] = 5146, [5147] = 5147, [5148] = 5148, - [5149] = 1531, - [5150] = 5150, + [5149] = 4609, + [5150] = 4610, [5151] = 5151, [5152] = 5152, - [5153] = 4633, - [5154] = 5154, - [5155] = 5155, - [5156] = 5156, + [5153] = 5153, + [5154] = 4611, + [5155] = 4638, + [5156] = 4694, [5157] = 5157, - [5158] = 5158, + [5158] = 4851, [5159] = 5159, - [5160] = 5160, - [5161] = 4619, - [5162] = 4743, - [5163] = 5163, - [5164] = 5164, + [5160] = 4612, + [5161] = 5161, + [5162] = 4659, + [5163] = 5062, + [5164] = 4749, [5165] = 5165, - [5166] = 768, - [5167] = 4624, - [5168] = 4640, + [5166] = 5166, + [5167] = 5167, + [5168] = 760, [5169] = 5169, - [5170] = 5170, + [5170] = 4902, [5171] = 5171, - [5172] = 5172, + [5172] = 4663, [5173] = 5173, - [5174] = 5174, - [5175] = 4620, + [5174] = 4916, + [5175] = 5175, [5176] = 5176, [5177] = 5177, - [5178] = 4760, - [5179] = 4646, - [5180] = 4663, + [5178] = 5178, + [5179] = 5179, + [5180] = 5180, [5181] = 5181, - [5182] = 5182, - [5183] = 3596, - [5184] = 5184, + [5182] = 4639, + [5183] = 3603, + [5184] = 4639, [5185] = 5185, [5186] = 5186, [5187] = 5187, - [5188] = 4743, + [5188] = 5188, [5189] = 5189, [5190] = 5190, - [5191] = 5129, - [5192] = 5131, + [5191] = 5191, + [5192] = 5192, [5193] = 5193, - [5194] = 4649, - [5195] = 5195, - [5196] = 5196, - [5197] = 5060, + [5194] = 5194, + [5195] = 4608, + [5196] = 4647, + [5197] = 5197, [5198] = 5198, [5199] = 5199, - [5200] = 5200, - [5201] = 4650, - [5202] = 5202, + [5200] = 4749, + [5201] = 5201, + [5202] = 4650, [5203] = 5203, [5204] = 5204, [5205] = 5205, [5206] = 5206, - [5207] = 5094, + [5207] = 5207, [5208] = 5208, - [5209] = 4652, + [5209] = 5209, [5210] = 5210, - [5211] = 4654, + [5211] = 4614, [5212] = 5212, [5213] = 5213, - [5214] = 5214, - [5215] = 5215, + [5214] = 4654, + [5215] = 4656, [5216] = 5216, - [5217] = 4667, + [5217] = 5217, [5218] = 5218, - [5219] = 5219, + [5219] = 4658, [5220] = 5220, - [5221] = 5221, - [5222] = 5222, + [5221] = 4659, + [5222] = 3703, [5223] = 5223, [5224] = 5224, - [5225] = 3832, + [5225] = 5225, [5226] = 5226, - [5227] = 5227, + [5227] = 2609, [5228] = 5228, - [5229] = 5229, - [5230] = 5230, + [5229] = 2610, + [5230] = 2657, [5231] = 5231, - [5232] = 2615, + [5232] = 5232, [5233] = 5233, - [5234] = 2618, + [5234] = 5234, [5235] = 5235, [5236] = 5236, [5237] = 5237, @@ -9883,8 +9915,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5239] = 5239, [5240] = 5240, [5241] = 5241, - [5242] = 5242, - [5243] = 5243, + [5242] = 1618, + [5243] = 2630, [5244] = 5244, [5245] = 5245, [5246] = 5246, @@ -9892,69 +9924,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5248] = 5248, [5249] = 5249, [5250] = 5250, - [5251] = 5251, + [5251] = 5235, [5252] = 5252, [5253] = 5253, [5254] = 5254, [5255] = 5255, - [5256] = 5235, - [5257] = 5257, - [5258] = 5222, - [5259] = 5237, + [5256] = 5256, + [5257] = 2621, + [5258] = 5258, + [5259] = 5259, [5260] = 5260, [5261] = 5261, - [5262] = 5262, - [5263] = 5263, + [5262] = 5235, + [5263] = 5231, [5264] = 5264, - [5265] = 5223, + [5265] = 5265, [5266] = 5266, - [5267] = 5240, + [5267] = 5267, [5268] = 5268, - [5269] = 5243, + [5269] = 5247, [5270] = 5270, [5271] = 5271, - [5272] = 2639, - [5273] = 5244, - [5274] = 2641, - [5275] = 5247, - [5276] = 5240, + [5272] = 5272, + [5273] = 5273, + [5274] = 5274, + [5275] = 5275, + [5276] = 5276, [5277] = 5277, [5278] = 5278, [5279] = 5279, - [5280] = 5235, + [5280] = 5280, [5281] = 5281, - [5282] = 5250, + [5282] = 5282, [5283] = 5283, - [5284] = 5266, - [5285] = 5251, - [5286] = 5264, - [5287] = 5253, + [5284] = 5284, + [5285] = 5285, + [5286] = 5279, + [5287] = 5287, [5288] = 5288, - [5289] = 5289, + [5289] = 5236, [5290] = 5290, [5291] = 5291, - [5292] = 1630, + [5292] = 5237, [5293] = 5293, [5294] = 5294, [5295] = 5295, [5296] = 5296, - [5297] = 5297, + [5297] = 3797, [5298] = 5298, - [5299] = 5260, + [5299] = 5299, [5300] = 5300, [5301] = 5301, - [5302] = 3836, + [5302] = 5302, [5303] = 5303, [5304] = 5304, - [5305] = 5305, + [5305] = 2605, [5306] = 5306, [5307] = 5307, [5308] = 5308, [5309] = 5309, [5310] = 5310, [5311] = 5311, - [5312] = 5240, - [5313] = 5313, + [5312] = 5239, + [5313] = 5298, [5314] = 5314, [5315] = 5315, [5316] = 5316, @@ -9962,262 +9994,262 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5318] = 5318, [5319] = 5319, [5320] = 5320, - [5321] = 5321, + [5321] = 5267, [5322] = 5322, [5323] = 5323, - [5324] = 5324, - [5325] = 5325, - [5326] = 5326, - [5327] = 5327, - [5328] = 5268, - [5329] = 5277, - [5330] = 5278, + [5324] = 5231, + [5325] = 5247, + [5326] = 5275, + [5327] = 5277, + [5328] = 5236, + [5329] = 5237, + [5330] = 5330, [5331] = 5331, - [5332] = 5309, + [5332] = 5332, [5333] = 5333, - [5334] = 5334, - [5335] = 5335, + [5334] = 5317, + [5335] = 5252, [5336] = 5336, - [5337] = 5337, + [5337] = 5331, [5338] = 5338, - [5339] = 5231, + [5339] = 5339, [5340] = 5340, - [5341] = 5341, + [5341] = 3818, [5342] = 5342, - [5343] = 5343, - [5344] = 5310, - [5345] = 5345, + [5343] = 3819, + [5344] = 5235, + [5345] = 5245, [5346] = 5346, - [5347] = 5347, + [5347] = 3820, [5348] = 5348, - [5349] = 5338, - [5350] = 5350, - [5351] = 2631, - [5352] = 2621, - [5353] = 5324, - [5354] = 5354, - [5355] = 5335, - [5356] = 5356, - [5357] = 5233, - [5358] = 2608, - [5359] = 5359, - [5360] = 2614, - [5361] = 5268, - [5362] = 5277, - [5363] = 5343, - [5364] = 5278, - [5365] = 2611, - [5366] = 5366, - [5367] = 5346, - [5368] = 2635, - [5369] = 5369, - [5370] = 5370, - [5371] = 5371, - [5372] = 5371, + [5349] = 5240, + [5350] = 5307, + [5351] = 5259, + [5352] = 2617, + [5353] = 5353, + [5354] = 2618, + [5355] = 5355, + [5356] = 5247, + [5357] = 5357, + [5358] = 5275, + [5359] = 5277, + [5360] = 5360, + [5361] = 5361, + [5362] = 5362, + [5363] = 5363, + [5364] = 2619, + [5365] = 5241, + [5366] = 5318, + [5367] = 5282, + [5368] = 5232, + [5369] = 5323, + [5370] = 5233, + [5371] = 5308, + [5372] = 5309, [5373] = 5373, - [5374] = 2634, - [5375] = 5336, - [5376] = 5376, - [5377] = 5298, - [5378] = 5331, - [5379] = 5320, - [5380] = 5268, - [5381] = 5381, - [5382] = 5382, - [5383] = 5383, + [5374] = 5374, + [5375] = 5333, + [5376] = 5339, + [5377] = 5226, + [5378] = 5225, + [5379] = 5311, + [5380] = 5380, + [5381] = 5260, + [5382] = 5261, + [5383] = 5264, [5384] = 5384, - [5385] = 5385, - [5386] = 2619, - [5387] = 5337, - [5388] = 5249, - [5389] = 1692, - [5390] = 5281, - [5391] = 1693, - [5392] = 5392, - [5393] = 5283, - [5394] = 5392, - [5395] = 5252, + [5385] = 5266, + [5386] = 5386, + [5387] = 5387, + [5388] = 5388, + [5389] = 5389, + [5390] = 5314, + [5391] = 5225, + [5392] = 5384, + [5393] = 2642, + [5394] = 5320, + [5395] = 5395, [5396] = 5396, - [5397] = 5266, + [5397] = 5397, [5398] = 5398, - [5399] = 5347, - [5400] = 5255, - [5401] = 5264, - [5402] = 5402, + [5399] = 5399, + [5400] = 5268, + [5401] = 5315, + [5402] = 5247, [5403] = 5403, - [5404] = 5288, - [5405] = 5366, - [5406] = 2660, - [5407] = 2662, + [5404] = 5404, + [5405] = 5250, + [5406] = 5406, + [5407] = 5407, [5408] = 5408, [5409] = 5409, [5410] = 5410, - [5411] = 2628, - [5412] = 5412, - [5413] = 2624, - [5414] = 5414, + [5411] = 5411, + [5412] = 5228, + [5413] = 5234, + [5414] = 5248, [5415] = 5415, - [5416] = 5416, - [5417] = 5277, + [5416] = 5255, + [5417] = 2615, [5418] = 5418, - [5419] = 5419, - [5420] = 5307, - [5421] = 5303, - [5422] = 5422, - [5423] = 5222, - [5424] = 5408, + [5419] = 2616, + [5420] = 5280, + [5421] = 5316, + [5422] = 2624, + [5423] = 5271, + [5424] = 5303, [5425] = 5425, [5426] = 5426, - [5427] = 5385, + [5427] = 5427, [5428] = 5428, - [5429] = 5249, - [5430] = 5430, - [5431] = 5410, - [5432] = 5432, - [5433] = 5268, - [5434] = 5252, - [5435] = 5231, - [5436] = 5436, - [5437] = 5255, - [5438] = 5438, + [5429] = 5425, + [5430] = 5235, + [5431] = 5407, + [5432] = 5277, + [5433] = 5418, + [5434] = 5247, + [5435] = 5435, + [5436] = 5300, + [5437] = 5437, + [5438] = 5264, [5439] = 5439, - [5440] = 5440, - [5441] = 5441, - [5442] = 5277, - [5443] = 5443, + [5440] = 5275, + [5441] = 5360, + [5442] = 5353, + [5443] = 5357, [5444] = 5277, - [5445] = 5249, + [5445] = 2613, [5446] = 5446, - [5447] = 5409, - [5448] = 5252, - [5449] = 5255, + [5447] = 5447, + [5448] = 5448, + [5449] = 5449, [5450] = 5450, - [5451] = 5426, - [5452] = 5278, - [5453] = 5348, - [5454] = 5425, - [5455] = 5403, - [5456] = 5456, - [5457] = 5457, + [5451] = 5231, + [5452] = 5452, + [5453] = 5236, + [5454] = 5448, + [5455] = 5455, + [5456] = 5275, + [5457] = 5447, [5458] = 5458, [5459] = 5459, - [5460] = 5460, - [5461] = 5278, - [5462] = 5240, - [5463] = 5463, - [5464] = 5464, - [5465] = 5432, - [5466] = 5248, + [5460] = 5237, + [5461] = 5284, + [5462] = 5411, + [5463] = 5224, + [5464] = 5302, + [5465] = 5465, + [5466] = 5466, [5467] = 5304, [5468] = 5468, - [5469] = 2644, - [5470] = 5430, - [5471] = 5290, + [5469] = 5336, + [5470] = 5470, + [5471] = 5235, [5472] = 5472, - [5473] = 5281, - [5474] = 5283, - [5475] = 3818, - [5476] = 5240, - [5477] = 5266, + [5473] = 5355, + [5474] = 5474, + [5475] = 5260, + [5476] = 5261, + [5477] = 5477, [5478] = 5478, - [5479] = 5264, + [5479] = 5479, [5480] = 5480, - [5481] = 5278, + [5481] = 5481, [5482] = 5482, - [5483] = 5483, + [5483] = 5264, [5484] = 5484, - [5485] = 5485, + [5485] = 5310, [5486] = 5486, - [5487] = 5268, - [5488] = 5242, - [5489] = 3824, - [5490] = 5263, - [5491] = 2613, + [5487] = 5487, + [5488] = 5277, + [5489] = 5266, + [5490] = 5490, + [5491] = 2622, [5492] = 5492, - [5493] = 5311, - [5494] = 5257, - [5495] = 5321, - [5496] = 5496, - [5497] = 2607, - [5498] = 5314, - [5499] = 2620, - [5500] = 5305, - [5501] = 5315, - [5502] = 5262, - [5503] = 5369, - [5504] = 5504, - [5505] = 2645, + [5493] = 5493, + [5494] = 5494, + [5495] = 5495, + [5496] = 2620, + [5497] = 5450, + [5498] = 2623, + [5499] = 5452, + [5500] = 5260, + [5501] = 5474, + [5502] = 2631, + [5503] = 2632, + [5504] = 5261, + [5505] = 5250, [5506] = 5506, - [5507] = 5419, - [5508] = 5508, - [5509] = 5300, + [5507] = 5264, + [5508] = 5406, + [5509] = 5452, [5510] = 5510, - [5511] = 5254, + [5511] = 5266, [5512] = 5512, - [5513] = 5316, + [5513] = 5280, [5514] = 5514, - [5515] = 5298, - [5516] = 5307, - [5517] = 5438, - [5518] = 5518, - [5519] = 5337, + [5515] = 5284, + [5516] = 5261, + [5517] = 5458, + [5518] = 5336, + [5519] = 5519, [5520] = 5520, - [5521] = 5440, - [5522] = 5342, - [5523] = 5223, - [5524] = 5382, - [5525] = 5418, - [5526] = 5305, - [5527] = 5527, - [5528] = 5436, + [5521] = 5252, + [5522] = 5522, + [5523] = 5275, + [5524] = 5494, + [5525] = 5520, + [5526] = 5302, + [5527] = 5472, + [5528] = 5361, [5529] = 5529, - [5530] = 5439, - [5531] = 5253, - [5532] = 5443, - [5533] = 5533, - [5534] = 5222, + [5530] = 5530, + [5531] = 5531, + [5532] = 5532, + [5533] = 5304, + [5534] = 5465, [5535] = 5535, [5536] = 5536, [5537] = 5537, - [5538] = 5371, - [5539] = 5539, - [5540] = 5540, - [5541] = 5541, - [5542] = 5281, - [5543] = 5283, - [5544] = 5266, + [5538] = 5538, + [5539] = 1656, + [5540] = 5512, + [5541] = 5302, + [5542] = 5304, + [5543] = 5543, + [5544] = 5544, [5545] = 5545, - [5546] = 5546, - [5547] = 5547, - [5548] = 5325, - [5549] = 5224, - [5550] = 5264, - [5551] = 5551, - [5552] = 5249, + [5546] = 1657, + [5547] = 5253, + [5548] = 5266, + [5549] = 5415, + [5550] = 5320, + [5551] = 5426, + [5552] = 5260, [5553] = 5553, - [5554] = 5252, - [5555] = 5255, - [5556] = 5376, - [5557] = 5430, - [5558] = 5482, - [5559] = 5268, - [5560] = 5410, - [5561] = 5277, - [5562] = 5562, - [5563] = 5432, - [5564] = 5278, - [5565] = 2656, - [5566] = 5253, - [5567] = 5240, - [5568] = 5369, - [5569] = 5300, - [5570] = 5283, + [5554] = 5410, + [5555] = 5247, + [5556] = 5425, + [5557] = 5275, + [5558] = 2644, + [5559] = 5472, + [5560] = 5277, + [5561] = 5561, + [5562] = 5231, + [5563] = 5236, + [5564] = 5237, + [5565] = 5565, + [5566] = 2645, + [5567] = 5331, + [5568] = 5282, + [5569] = 5569, + [5570] = 5363, [5571] = 5571, - [5572] = 5239, - [5573] = 5281, - [5574] = 5574, + [5572] = 5235, + [5573] = 5240, + [5574] = 2602, [5575] = 5575, - [5576] = 5576, + [5576] = 5435, [5577] = 5577, [5578] = 5578, [5579] = 5579, @@ -10228,15 +10260,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5584] = 5584, [5585] = 5585, [5586] = 5586, - [5587] = 5587, - [5588] = 5585, + [5587] = 5579, + [5588] = 5588, [5589] = 5589, [5590] = 5590, [5591] = 5591, - [5592] = 5592, + [5592] = 5580, [5593] = 5593, - [5594] = 5594, - [5595] = 5589, + [5594] = 5591, + [5595] = 5595, [5596] = 5596, [5597] = 5597, [5598] = 5598, @@ -10246,400 +10278,544 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5602] = 5602, [5603] = 5603, [5604] = 5604, - [5605] = 5605, - [5606] = 5576, - [5607] = 5607, - [5608] = 5585, - [5609] = 5589, + [5605] = 5577, + [5606] = 5606, + [5607] = 5588, + [5608] = 5608, + [5609] = 5609, [5610] = 5610, [5611] = 5611, - [5612] = 5612, - [5613] = 5575, - [5614] = 5614, - [5615] = 5615, + [5612] = 5597, + [5613] = 5578, + [5614] = 5599, + [5615] = 5596, [5616] = 5616, - [5617] = 5615, - [5618] = 5618, + [5617] = 5617, + [5618] = 5603, [5619] = 5619, [5620] = 5620, [5621] = 5621, [5622] = 5622, [5623] = 5623, [5624] = 5624, - [5625] = 5625, + [5625] = 5585, [5626] = 5626, [5627] = 5627, - [5628] = 5628, + [5628] = 5601, [5629] = 5629, - [5630] = 5610, + [5630] = 5630, [5631] = 5631, [5632] = 5632, [5633] = 5633, [5634] = 5634, - [5635] = 5602, - [5636] = 5615, + [5635] = 5609, + [5636] = 5636, [5637] = 5637, [5638] = 5638, - [5639] = 5639, - [5640] = 5640, - [5641] = 5601, + [5639] = 5584, + [5640] = 5622, + [5641] = 5589, [5642] = 5642, - [5643] = 5579, - [5644] = 5581, - [5645] = 5614, - [5646] = 5599, + [5643] = 5581, + [5644] = 5644, + [5645] = 5588, + [5646] = 5646, [5647] = 5647, - [5648] = 5612, + [5648] = 5648, [5649] = 5649, - [5650] = 5642, + [5650] = 5591, [5651] = 5651, - [5652] = 5652, - [5653] = 5629, - [5654] = 5652, - [5655] = 5655, - [5656] = 5580, - [5657] = 5576, - [5658] = 5586, + [5652] = 5638, + [5653] = 5653, + [5654] = 5584, + [5655] = 5580, + [5656] = 5656, + [5657] = 5624, + [5658] = 5658, [5659] = 5659, - [5660] = 5575, - [5661] = 5642, + [5660] = 5660, + [5661] = 5579, [5662] = 5662, - [5663] = 5634, + [5663] = 5616, [5664] = 5664, - [5665] = 5665, - [5666] = 5594, - [5667] = 5600, + [5665] = 5624, + [5666] = 5588, + [5667] = 5667, [5668] = 5668, - [5669] = 5614, - [5670] = 5670, - [5671] = 5671, - [5672] = 5585, - [5673] = 5614, - [5674] = 5574, - [5675] = 5625, - [5676] = 5596, - [5677] = 5640, + [5669] = 5669, + [5670] = 5604, + [5671] = 5610, + [5672] = 5611, + [5673] = 5673, + [5674] = 5674, + [5675] = 5675, + [5676] = 5630, + [5677] = 5582, [5678] = 5678, - [5679] = 5652, - [5680] = 5625, - [5681] = 5611, - [5682] = 5662, - [5683] = 5670, + [5679] = 5679, + [5680] = 5680, + [5681] = 5681, + [5682] = 5682, + [5683] = 5582, [5684] = 5684, - [5685] = 5602, + [5685] = 5685, [5686] = 5686, [5687] = 5687, - [5688] = 5582, - [5689] = 5689, - [5690] = 5589, + [5688] = 5593, + [5689] = 5593, + [5690] = 5690, [5691] = 5691, - [5692] = 5692, - [5693] = 5629, - [5694] = 5600, - [5695] = 5695, - [5696] = 5691, - [5697] = 5697, - [5698] = 5687, - [5699] = 5618, - [5700] = 5625, - [5701] = 5593, - [5702] = 5625, - [5703] = 5618, + [5692] = 5690, + [5693] = 5693, + [5694] = 5577, + [5695] = 5603, + [5696] = 5687, + [5697] = 5617, + [5698] = 5698, + [5699] = 5595, + [5700] = 5630, + [5701] = 5588, + [5702] = 5597, + [5703] = 5675, [5704] = 5704, - [5705] = 5610, - [5706] = 5633, - [5707] = 5615, - [5708] = 5642, - [5709] = 5662, - [5710] = 5628, - [5711] = 5652, + [5705] = 5705, + [5706] = 5604, + [5707] = 5597, + [5708] = 5647, + [5709] = 5659, + [5710] = 5599, + [5711] = 5589, [5712] = 5712, - [5713] = 5662, - [5714] = 5580, - [5715] = 5619, - [5716] = 5628, - [5717] = 5620, - [5718] = 5692, - [5719] = 5623, - [5720] = 5582, - [5721] = 5721, - [5722] = 5684, - [5723] = 5586, - [5724] = 5687, - [5725] = 5638, - [5726] = 5626, - [5727] = 5651, - [5728] = 5584, - [5729] = 5627, - [5730] = 5593, - [5731] = 5659, - [5732] = 5586, - [5733] = 5684, - [5734] = 5625, - [5735] = 5634, - [5736] = 5665, - [5737] = 5737, - [5738] = 5612, - [5739] = 5575, - [5740] = 5655, - [5741] = 5623, - [5742] = 5691, - [5743] = 5604, - [5744] = 5580, - [5745] = 5664, - [5746] = 5582, - [5747] = 5687, - [5748] = 5748, + [5713] = 5678, + [5714] = 5679, + [5715] = 5715, + [5716] = 5580, + [5717] = 5610, + [5718] = 5718, + [5719] = 5611, + [5720] = 5675, + [5721] = 5630, + [5722] = 5722, + [5723] = 5623, + [5724] = 5681, + [5725] = 5678, + [5726] = 5679, + [5727] = 5681, + [5728] = 5629, + [5729] = 5684, + [5730] = 5582, + [5731] = 5682, + [5732] = 5685, + [5733] = 5733, + [5734] = 5734, + [5735] = 5682, + [5736] = 5582, + [5737] = 5604, + [5738] = 5685, + [5739] = 5686, + [5740] = 5740, + [5741] = 5579, + [5742] = 5742, + [5743] = 5622, + [5744] = 5744, + [5745] = 5745, + [5746] = 5610, + [5747] = 5686, + [5748] = 5601, [5749] = 5749, - [5750] = 5750, - [5751] = 5607, - [5752] = 5689, - [5753] = 5639, - [5754] = 5586, - [5755] = 5692, - [5756] = 5756, - [5757] = 5590, - [5758] = 5758, - [5759] = 5638, - [5760] = 5600, - [5761] = 5590, - [5762] = 5691, - [5763] = 5692, - [5764] = 5594, - [5765] = 5601, - [5766] = 5671, - [5767] = 5610, - [5768] = 5618, - [5769] = 5612, - [5770] = 5575, - [5771] = 5593, - [5772] = 5772, - [5773] = 5619, - [5774] = 5774, - [5775] = 5775, - [5776] = 5604, - [5777] = 5777, + [5750] = 5687, + [5751] = 5749, + [5752] = 5626, + [5753] = 5691, + [5754] = 5687, + [5755] = 5611, + [5756] = 5622, + [5757] = 5675, + [5758] = 5636, + [5759] = 5759, + [5760] = 5678, + [5761] = 5602, + [5762] = 5634, + [5763] = 5763, + [5764] = 5764, + [5765] = 5765, + [5766] = 5698, + [5767] = 5679, + [5768] = 5669, + [5769] = 5623, + [5770] = 5593, + [5771] = 5597, + [5772] = 5631, + [5773] = 5578, + [5774] = 5577, + [5775] = 5603, + [5776] = 5596, + [5777] = 5616, [5778] = 5778, - [5779] = 5590, - [5780] = 5594, - [5781] = 5620, - [5782] = 5596, - [5783] = 5783, - [5784] = 5687, - [5785] = 5596, - [5786] = 5584, - [5787] = 5684, - [5788] = 5610, - [5789] = 5612, - [5790] = 5575, - [5791] = 5616, - [5792] = 5758, - [5793] = 5622, - [5794] = 5691, - [5795] = 5795, - [5796] = 5619, - [5797] = 5692, - [5798] = 5622, - [5799] = 5627, - [5800] = 5800, - [5801] = 5801, - [5802] = 5628, - [5803] = 5637, - [5804] = 5616, - [5805] = 5590, - [5806] = 5639, - [5807] = 5692, - [5808] = 5808, - [5809] = 5590, - [5810] = 5810, - [5811] = 5664, - [5812] = 5812, - [5813] = 5594, - [5814] = 5814, - [5815] = 5808, - [5816] = 5623, - [5817] = 5638, - [5818] = 5800, - [5819] = 5622, - [5820] = 5614, - [5821] = 5628, - [5822] = 5621, - [5823] = 5578, - [5824] = 5810, - [5825] = 5580, - [5826] = 5582, - [5827] = 5620, - [5828] = 5637, - [5829] = 5586, - [5830] = 5687, - [5831] = 5579, - [5832] = 5581, - [5833] = 5599, - [5834] = 5639, - [5835] = 5684, - [5836] = 5668, - [5837] = 5576, - [5838] = 5585, - [5839] = 5604, - [5840] = 5840, - [5841] = 5589, - [5842] = 5622, - [5843] = 5615, - [5844] = 5637, - [5845] = 5845, - [5846] = 5642, - [5847] = 5847, + [5779] = 5779, + [5780] = 5687, + [5781] = 5781, + [5782] = 5593, + [5783] = 5597, + [5784] = 5784, + [5785] = 5599, + [5786] = 5786, + [5787] = 5681, + [5788] = 5682, + [5789] = 5718, + [5790] = 5685, + [5791] = 5578, + [5792] = 5596, + [5793] = 5616, + [5794] = 5673, + [5795] = 5627, + [5796] = 5577, + [5797] = 5582, + [5798] = 5798, + [5799] = 5603, + [5800] = 5585, + [5801] = 5585, + [5802] = 5802, + [5803] = 5578, + [5804] = 5626, + [5805] = 5630, + [5806] = 5647, + [5807] = 5686, + [5808] = 5601, + [5809] = 5809, + [5810] = 5687, + [5811] = 5811, + [5812] = 5606, + [5813] = 5813, + [5814] = 5622, + [5815] = 5623, + [5816] = 5653, + [5817] = 5817, + [5818] = 5631, + [5819] = 5647, + [5820] = 5633, + [5821] = 5626, + [5822] = 5811, + [5823] = 5601, + [5824] = 5691, + [5825] = 5631, + [5826] = 5609, + [5827] = 5827, + [5828] = 5633, + [5829] = 5588, + [5830] = 5609, + [5831] = 5637, + [5832] = 5811, + [5833] = 5638, + [5834] = 5834, + [5835] = 5584, + [5836] = 5693, + [5837] = 5589, + [5838] = 5598, + [5839] = 5617, + [5840] = 5658, + [5841] = 5659, + [5842] = 5599, + [5843] = 5633, + [5844] = 5734, + [5845] = 5680, + [5846] = 5846, + [5847] = 5588, [5848] = 5848, - [5849] = 5662, - [5850] = 5850, - [5851] = 5851, - [5852] = 5579, - [5853] = 5596, - [5854] = 5629, - [5855] = 5607, + [5849] = 5596, + [5850] = 5616, + [5851] = 5623, + [5852] = 5591, + [5853] = 5585, + [5854] = 5624, + [5855] = 5604, [5856] = 5856, - [5857] = 5651, - [5858] = 5687, - [5859] = 5800, - [5860] = 5580, - [5861] = 5810, - [5862] = 5862, - [5863] = 5610, - [5864] = 5840, - [5865] = 5624, - [5866] = 5750, - [5867] = 5581, - [5868] = 5868, - [5869] = 5590, - [5870] = 5592, - [5871] = 5600, - [5872] = 5601, - [5873] = 5596, - [5874] = 5750, - [5875] = 5579, - [5876] = 5876, - [5877] = 5877, - [5878] = 5590, - [5879] = 5593, - [5880] = 5840, - [5881] = 5594, - [5882] = 5618, - [5883] = 5596, - [5884] = 5619, - [5885] = 5614, - [5886] = 5610, - [5887] = 5602, - [5888] = 5612, - [5889] = 5575, - [5890] = 5651, - [5891] = 5891, - [5892] = 5604, - [5893] = 5620, - [5894] = 5894, - [5895] = 5593, - [5896] = 5877, - [5897] = 5631, - [5898] = 5622, - [5899] = 5639, - [5900] = 5604, - [5901] = 5655, - [5902] = 5623, - [5903] = 5638, - [5904] = 5586, - [5905] = 5671, - [5906] = 5906, - [5907] = 5594, - [5908] = 5689, - [5909] = 5651, - [5910] = 5616, - [5911] = 5577, - [5912] = 5659, - [5913] = 5601, - [5914] = 5627, - [5915] = 5795, - [5916] = 5634, - [5917] = 5848, - [5918] = 5596, - [5919] = 5655, - [5920] = 5614, - [5921] = 5629, - [5922] = 5610, - [5923] = 5664, - [5924] = 5612, - [5925] = 5575, - [5926] = 5590, - [5927] = 5629, - [5928] = 5594, - [5929] = 5596, - [5930] = 5655, - [5931] = 5931, - [5932] = 5610, - [5933] = 5659, - [5934] = 5612, - [5935] = 5652, - [5936] = 5575, - [5937] = 5937, - [5938] = 5938, - [5939] = 5599, - [5940] = 5691, - [5941] = 5941, - [5942] = 5772, - [5943] = 5634, - [5944] = 5625, - [5945] = 5664, - [5946] = 5598, - [5947] = 5652, - [5948] = 5756, - [5949] = 5949, - [5950] = 5655, - [5951] = 5580, - [5952] = 5952, - [5953] = 5953, - [5954] = 5581, - [5955] = 5778, - [5956] = 5622, - [5957] = 5957, - [5958] = 5627, + [5857] = 5578, + [5858] = 5602, + [5859] = 5596, + [5860] = 5616, + [5861] = 5861, + [5862] = 5809, + [5863] = 5581, + [5864] = 5606, + [5865] = 5600, + [5866] = 5722, + [5867] = 5734, + [5868] = 5610, + [5869] = 5811, + [5870] = 5870, + [5871] = 5611, + [5872] = 5580, + [5873] = 5675, + [5874] = 5581, + [5875] = 5691, + [5876] = 5599, + [5877] = 5678, + [5878] = 5733, + [5879] = 5679, + [5880] = 5659, + [5881] = 5593, + [5882] = 5733, + [5883] = 5630, + [5884] = 5597, + [5885] = 5660, + [5886] = 5599, + [5887] = 5579, + [5888] = 5631, + [5889] = 5578, + [5890] = 5585, + [5891] = 5596, + [5892] = 5616, + [5893] = 5633, + [5894] = 5681, + [5895] = 5598, + [5896] = 5682, + [5897] = 5685, + [5898] = 5686, + [5899] = 5798, + [5900] = 5765, + [5901] = 5585, + [5902] = 5659, + [5903] = 5637, + [5904] = 5658, + [5905] = 5626, + [5906] = 5637, + [5907] = 5712, + [5908] = 5674, + [5909] = 5733, + [5910] = 5598, + [5911] = 5690, + [5912] = 5912, + [5913] = 5593, + [5914] = 5647, + [5915] = 5915, + [5916] = 5598, + [5917] = 5597, + [5918] = 5653, + [5919] = 5919, + [5920] = 5638, + [5921] = 5599, + [5922] = 5658, + [5923] = 5923, + [5924] = 5578, + [5925] = 5925, + [5926] = 5744, + [5927] = 5644, + [5928] = 5596, + [5929] = 5591, + [5930] = 5744, + [5931] = 5667, + [5932] = 5599, + [5933] = 5658, + [5934] = 5577, + [5935] = 5603, + [5936] = 5624, + [5937] = 5616, + [5938] = 5593, + [5939] = 5597, + [5940] = 5638, + [5941] = 5578, + [5942] = 5591, + [5943] = 5624, + [5944] = 5764, + [5945] = 5786, + [5946] = 5579, + [5947] = 5577, + [5948] = 5617, + [5949] = 5779, + [5950] = 5596, + [5951] = 5846, + [5952] = 5630, + [5953] = 5658, + [5954] = 5659, + [5955] = 5616, + [5956] = 5813, + [5957] = 5579, + [5958] = 5817, [5959] = 5959, - [5960] = 5622, - [5961] = 5721, - [5962] = 5684, - [5963] = 5605, - [5964] = 5576, - [5965] = 5953, - [5966] = 5639, - [5967] = 5622, - [5968] = 5941, - [5969] = 5684, - [5970] = 5692, - [5971] = 5750, - [5972] = 5599, - [5973] = 5612, - [5974] = 5584, - [5975] = 5659, - [5976] = 5750, - [5977] = 5756, - [5978] = 5637, - [5979] = 5597, - [5980] = 5980, - [5981] = 5655, - [5982] = 5982, - [5983] = 5594, - [5984] = 5984, - [5985] = 5691, + [5960] = 5744, + [5961] = 5647, + [5962] = 5584, + [5963] = 5809, + [5964] = 5964, + [5965] = 5637, + [5966] = 5580, + [5967] = 5585, + [5968] = 5925, + [5969] = 5691, + [5970] = 5582, + [5971] = 5971, + [5972] = 5593, + [5973] = 5603, + [5974] = 5617, + [5975] = 5653, + [5976] = 5674, + [5977] = 5585, + [5978] = 5659, + [5979] = 5653, + [5980] = 5846, + [5981] = 5589, + [5982] = 5687, + [5983] = 5983, + [5984] = 5658, + [5985] = 5985, + [5986] = 5733, + [5987] = 5653, + [5988] = 5609, +}; + +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym_declaration, + sym_expression, + sym_pattern, + sym_primary_expression, + sym_primary_type, + sym_statement, + sym_type, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym_declaration] = {.index = 0, .length = 14}, + [sym_expression] = {.index = 14, .length = 16}, + [sym_pattern] = {.index = 30, .length = 8}, + [sym_primary_expression] = {.index = 38, .length = 23}, + [sym_primary_type] = {.index = 61, .length = 20}, + [sym_statement] = {.index = 81, .length = 20}, + [sym_type] = {.index = 101, .length = 10}, }; -static TSCharacterRange extras_character_set_1[] = { +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym_abstract_class_declaration, + sym_ambient_declaration, + sym_class_declaration, + sym_enum_declaration, + sym_function_declaration, + sym_function_signature, + sym_generator_function_declaration, + sym_import_alias, + sym_interface_declaration, + sym_internal_module, + sym_lexical_declaration, + sym_module, + sym_type_alias_declaration, + sym_variable_declaration, + [14] = + sym_as_expression, + sym_assignment_expression, + sym_augmented_assignment_expression, + sym_await_expression, + sym_binary_expression, + sym_instantiation_expression, + sym_internal_module, + sym_jsx_element, + sym_jsx_self_closing_element, + sym_new_expression, + sym_primary_expression, + sym_satisfies_expression, + sym_ternary_expression, + sym_unary_expression, + sym_update_expression, + sym_yield_expression, + [30] = + sym_array_pattern, + sym_identifier, + sym_member_expression, + sym_non_null_expression, + sym_object_pattern, + sym_rest_pattern, + sym_subscript_expression, + sym_undefined, + [38] = + 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_non_null_expression, + 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, + [61] = + alias_sym_this_type, + alias_sym_type_identifier, + anon_sym_const, + sym_array_type, + sym_conditional_type, + sym_existential_type, + sym_flow_maybe_type, + sym_generic_type, + sym_index_type_query, + sym_intersection_type, + sym_literal_type, + sym_lookup_type, + sym_nested_type_identifier, + sym_object_type, + sym_parenthesized_type, + sym_predefined_type, + sym_template_literal_type, + sym_tuple_type, + sym_type_query, + sym_union_type, + [81] = + 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, + [101] = + sym__type_query_call_expression, + sym__type_query_call_expression_in_type_annotation, + sym_call_expression, + sym_constructor_type, + sym_decorator_call_expression, + sym_function_type, + sym_infer_type, + sym_member_expression, + sym_primary_type, + sym_readonly_type, +}; + +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}, }; @@ -10649,769 +10825,775 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(129); + if (eof) ADVANCE(128); ADVANCE_MAP( - '!', 143, - '"', 160, + '!', 142, + '"', 159, '#', 6, - '$', 281, - '%', 224, - '&', 203, - '\'', 161, - '(', 144, - ')', 146, - '*', 132, - '+', 216, - ',', 140, - '-', 220, - '.', 156, - '/', 266, - '0', 271, - ':', 147, - ';', 145, - '<', 229, - '=', 136, - '>', 152, - '?', 287, - '@', 284, - '[', 148, - '\\', 82, - ']', 149, - '^', 206, - '`', 264, - '{', 139, - '|', 209, - '}', 141, - '~', 240, + '$', 283, + '%', 226, + '&', 204, + '\'', 160, + '(', 143, + ')', 145, + '*', 131, + '+', 218, + ',', 139, + '-', 222, + '.', 155, + '/', 268, + '0', 273, + ':', 146, + ';', 144, + '<', 231, + '=', 135, + '>', 151, + '?', 289, + '@', 286, + '[', 147, + '\\', 81, + ']', 148, + '^', 208, + '`', 266, + '{', 138, + '|', 211, + '}', 140, + '~', 242, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(126); - if (lookahead > '@') ADVANCE(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(125); + if (lookahead > '@') ADVANCE(284); END_STATE(); case 1: - if (lookahead == '\n') SKIP(34); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '[') ADVANCE(81); - if (lookahead == '\\') ADVANCE(125); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(267); - if (lookahead != 0) ADVANCE(268); + if (lookahead == '\n') SKIP(33); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(124); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(269); + if (lookahead != 0) ADVANCE(270); END_STATE(); case 2: ADVANCE_MAP( - '!', 143, - '"', 160, - '#', 80, - '%', 224, - '&', 203, - '\'', 161, - '(', 144, - ')', 146, - '*', 132, - '+', 215, - ',', 140, - '-', 219, - '.', 156, - '/', 222, - '0', 271, - ':', 147, - ';', 145, - '<', 230, - '=', 136, - '>', 152, - '?', 287, - '@', 284, - '[', 148, - '\\', 84, - ']', 149, - '^', 206, - '`', 264, - '{', 139, - '|', 209, - '}', 141, - '~', 240, + '!', 142, + '"', 159, + '#', 79, + '%', 226, + '&', 205, + '\'', 160, + '(', 143, + ')', 145, + '*', 131, + '+', 217, + ',', 139, + '-', 221, + '.', 155, + '/', 224, + '0', 273, + ':', 146, + ';', 144, + '<', 232, + '=', 135, + '>', 151, + '?', 289, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '^', 208, + '`', 266, + '{', 138, + '|', 211, + '}', 140, + '~', 242, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(2); - if (lookahead > '#') ADVANCE(282); + if (lookahead > '#') ADVANCE(284); END_STATE(); case 3: ADVANCE_MAP( - '!', 143, - '"', 160, - '#', 80, - '%', 224, - '&', 203, - '\'', 161, - '(', 144, - ')', 146, - '*', 132, - '+', 215, - ',', 140, - '-', 219, - '.', 156, - '/', 222, - '0', 271, - ':', 147, - ';', 145, - '<', 230, - '=', 136, - '>', 152, - '?', 287, - '@', 284, - '[', 148, - '\\', 84, - ']', 149, - '^', 206, - '`', 264, - '{', 138, - '|', 208, - '}', 141, - '~', 240, + '!', 142, + '"', 159, + '#', 79, + '%', 226, + '&', 205, + '\'', 160, + '(', 143, + ')', 145, + '*', 131, + '+', 217, + ',', 139, + '-', 221, + '.', 155, + '/', 224, + '0', 273, + ':', 146, + ';', 144, + '<', 232, + '=', 135, + '>', 151, + '?', 289, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '^', 208, + '`', 266, + '{', 137, + '|', 210, + '}', 140, + '~', 242, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); - if (lookahead > '#') ADVANCE(282); + if (lookahead > '#') ADVANCE(284); END_STATE(); case 4: ADVANCE_MAP( - '!', 143, - '%', 223, - '&', 204, - '(', 144, - ')', 146, - '*', 133, - '+', 214, - ',', 140, - '-', 218, - '.', 155, - '/', 221, - ':', 147, - ';', 145, - '<', 231, - '=', 77, - '>', 153, - '?', 31, - '[', 148, - '\\', 84, - ']', 149, - '^', 205, - '`', 264, - '{', 138, - '|', 210, - '}', 141, + '!', 142, + '%', 225, + '&', 206, + '(', 143, + ')', 145, + '*', 132, + '+', 216, + ',', 139, + '-', 220, + '.', 154, + '/', 223, + ':', 146, + ';', 144, + '<', 233, + '=', 76, + '>', 152, + '?', 30, + '[', 147, + '\\', 83, + ']', 148, + '^', 207, + '`', 266, + '{', 137, + '|', 212, + '}', 140, ); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '`' || '~' < lookahead)) ADVANCE(282); + (lookahead < '`' || '~' < lookahead)) ADVANCE(284); END_STATE(); case 5: ADVANCE_MAP( - '!', 143, - '%', 223, - '&', 204, - '(', 144, - ')', 146, - '*', 133, - '+', 214, - ',', 140, - '-', 218, - '.', 155, - '/', 221, - ':', 147, - ';', 145, - '<', 231, - '=', 77, - '>', 153, - '?', 31, - '[', 148, - '\\', 84, - ']', 149, - '^', 205, - '`', 264, - '{', 138, - '|', 210, - '}', 141, + '!', 142, + '%', 225, + '&', 206, + '(', 143, + ')', 145, + '*', 132, + '+', 216, + ',', 139, + '-', 220, + '.', 154, + '/', 223, + ':', 146, + ';', 144, + '<', 233, + '=', 76, + '>', 152, + '?', 30, + '[', 147, + '\\', 83, + ']', 148, + '^', 207, + '`', 266, + '{', 137, + '|', 212, + '}', 140, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(282); + (lookahead < '{' || '~' < lookahead)) ADVANCE(284); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(130); - if (lookahead == '\\') ADVANCE(83); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(283); + if (lookahead == '!') ADVANCE(129); + if (lookahead == '\\') ADVANCE(82); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(285); END_STATE(); case 7: ADVANCE_MAP( - '!', 142, - '"', 160, - '#', 80, - '&', 202, - '\'', 161, - '(', 144, - ')', 146, - '*', 131, - '+', 214, - ',', 140, - '-', 218, - '.', 156, - '/', 221, - '0', 271, - ':', 147, - ';', 145, - '<', 227, - '=', 137, - '>', 151, - '?', 286, - '@', 284, - '[', 148, - '\\', 84, - ']', 149, - '`', 264, - '{', 138, - '|', 212, - '}', 141, - '~', 240, + '!', 141, + '"', 159, + '#', 79, + '&', 204, + '\'', 160, + '(', 143, + ')', 145, + '*', 130, + '+', 216, + ',', 139, + '-', 220, + '.', 155, + '/', 223, + '0', 273, + ':', 146, + ';', 144, + '<', 229, + '=', 136, + '>', 150, + '?', 288, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '`', 266, + '{', 137, + '|', 214, + '}', 140, + '~', 242, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(282); + (lookahead < '[' || '^' < lookahead)) ADVANCE(284); END_STATE(); case 8: ADVANCE_MAP( - '!', 142, - '"', 160, - '#', 80, - '&', 202, - '\'', 161, - '(', 144, - ')', 146, - '*', 131, - '+', 214, - ',', 140, - '-', 218, - '.', 156, - '/', 221, - '0', 271, - '<', 227, - '?', 285, - '@', 284, - '[', 148, - '\\', 84, - ']', 149, - '`', 264, - '{', 139, - '|', 207, - '~', 240, + '!', 141, + '"', 159, + '#', 79, + '&', 204, + '\'', 160, + '(', 143, + ')', 145, + '*', 130, + '+', 216, + ',', 139, + '-', 220, + '.', 155, + '/', 223, + '0', 273, + '<', 229, + '?', 287, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '`', 266, + '{', 138, + '|', 209, + '~', 242, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(282); + (lookahead < '{' || '~' < lookahead)) ADVANCE(284); END_STATE(); case 9: ADVANCE_MAP( - '"', 160, - '#', 80, - '&', 202, - '\'', 161, - '(', 144, - '*', 131, - '+', 213, - ',', 140, - '-', 217, - '.', 30, - '/', 24, - '0', 271, - ';', 145, - '<', 227, - '>', 151, - '?', 285, - '@', 284, - '[', 148, - '\\', 84, - ']', 149, - '`', 264, - '{', 139, - '|', 212, - '}', 141, + '"', 159, + '#', 79, + '&', 204, + '\'', 160, + '(', 143, + '*', 130, + '+', 215, + ',', 139, + '-', 219, + '.', 29, + '/', 23, + '0', 273, + ';', 144, + '<', 229, + '>', 150, + '?', 287, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '`', 266, + '{', 138, + '|', 214, + '}', 140, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(282); + (lookahead < '{' || '~' < lookahead)) ADVANCE(284); END_STATE(); case 10: ADVANCE_MAP( - '"', 160, - '#', 80, - '\'', 161, - '(', 144, - '*', 131, - '+', 213, - ',', 140, - '-', 217, - '.', 30, - '/', 24, - '0', 271, - ';', 145, - '<', 227, - '@', 284, - '[', 148, - '\\', 84, - '{', 138, - '|', 94, - '}', 141, + '"', 159, + '#', 79, + '\'', 160, + '(', 143, + '*', 130, + '+', 215, + ',', 139, + '-', 219, + '.', 29, + '/', 23, + '0', 273, + ';', 144, + '<', 229, + '@', 286, + '[', 147, + '\\', 83, + '{', 137, + '|', 93, + '}', 140, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(282); + (lookahead < '{' || '~' < lookahead)) ADVANCE(284); END_STATE(); case 11: ADVANCE_MAP( - '"', 160, - '&', 202, - '\'', 161, - '(', 144, - '*', 131, - '+', 213, - '-', 217, - '.', 101, - '/', 25, - '0', 271, - '<', 227, - '>', 151, - '?', 285, - '[', 148, - '\\', 84, - '`', 264, - '{', 139, - '|', 207, + '"', 159, + '&', 204, + '\'', 160, + '(', 143, + '*', 130, + '+', 215, + '-', 219, + '.', 100, + '/', 24, + '0', 273, + '<', 229, + '>', 150, + '?', 287, + '[', 147, + '\\', 83, + '`', 266, + '{', 138, + '|', 209, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(280); - if (lookahead > '~') ADVANCE(282); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(282); + if (lookahead > '~') ADVANCE(284); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(160); - if (lookahead == '&') ADVANCE(16); - if (lookahead == '/') ADVANCE(163); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(162); - if (lookahead != 0) ADVANCE(164); + if (lookahead == '"') ADVANCE(159); + if (lookahead == '&') ADVANCE(174); + if (lookahead == '/') ADVANCE(161); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(163); + if (lookahead != 0) ADVANCE(162); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(160); - if (lookahead == '/') ADVANCE(24); + if (lookahead == '"') ADVANCE(159); + if (lookahead == '/') ADVANCE(23); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(160); - if (lookahead == '/') ADVANCE(243); - if (lookahead == '\\') ADVANCE(85); + if (lookahead == '"') ADVANCE(159); + if (lookahead == '/') ADVANCE(245); + if (lookahead == '\\') ADVANCE(84); if (lookahead == '\n' || lookahead == '\r') SKIP(13); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(246); - if (lookahead != 0) ADVANCE(248); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(248); + if (lookahead != 0) ADVANCE(250); END_STATE(); case 15: - if (lookahead == '#') ADVANCE(97); + if (lookahead == '#') ADVANCE(96); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#') ADVANCE(162); END_STATE(); case 16: - if (lookahead == '#') ADVANCE(97); + if (lookahead == '#') ADVANCE(96); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); - if (lookahead != 0) ADVANCE(164); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(168); END_STATE(); case 17: - if (lookahead == '#') ADVANCE(97); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); - if (lookahead != 0) ADVANCE(170); + if (lookahead == '$') ADVANCE(85); + if (lookahead == '&') ADVANCE(173); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '<') ADVANCE(230); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '`') ADVANCE(266); + if (lookahead == '{') ADVANCE(137); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(18); END_STATE(); case 18: - if (lookahead == '$') ADVANCE(86); - if (lookahead == '&') ADVANCE(15); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '\\') ADVANCE(85); - if (lookahead == '`') ADVANCE(264); - if (lookahead == '{') ADVANCE(138); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (lookahead == '$') ADVANCE(85); + if (lookahead == '&') ADVANCE(173); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '<') ADVANCE(230); + if (lookahead == '`') ADVANCE(266); + if (lookahead == '{') ADVANCE(137); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(18); END_STATE(); case 19: - if (lookahead == '$') ADVANCE(86); - if (lookahead == '&') ADVANCE(15); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '<') ADVANCE(228); - if (lookahead == '`') ADVANCE(264); - if (lookahead == '{') ADVANCE(138); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); - END_STATE(); - case 20: ADVANCE_MAP( - '&', 202, - '(', 144, - '+', 78, - ',', 140, - '-', 79, - '.', 155, - '/', 25, - ':', 147, - '<', 227, - '=', 134, - '>', 151, - '?', 37, - '[', 148, - '\\', 84, - '{', 138, - '|', 207, + '&', 204, + '(', 143, + '+', 77, + ',', 139, + '-', 78, + '.', 154, + '/', 24, + ':', 146, + '<', 229, + '=', 133, + '>', 150, + '?', 36, + '[', 147, + '\\', 83, + '{', 137, + '|', 209, ); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(20); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); - if (lookahead > '~') ADVANCE(282); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(282); + if (lookahead > '~') ADVANCE(284); + END_STATE(); + case 20: + if (lookahead == '&') ADVANCE(175); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(167); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(169); + if (lookahead != 0) ADVANCE(168); END_STATE(); case 21: - if (lookahead == '&') ADVANCE(17); - if (lookahead == '\'') ADVANCE(161); - if (lookahead == '/') ADVANCE(169); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(168); - if (lookahead != 0) ADVANCE(170); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(23); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(21); END_STATE(); case 22: - if (lookahead == '\'') ADVANCE(161); - if (lookahead == '/') ADVANCE(24); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(22); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '\n' || + lookahead == '\r') SKIP(21); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(254); + if (lookahead != 0) ADVANCE(256); END_STATE(); case 23: - if (lookahead == '\'') ADVANCE(161); - if (lookahead == '/') ADVANCE(249); - if (lookahead == '\\') ADVANCE(85); - if (lookahead == '\n' || - lookahead == '\r') SKIP(22); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(252); - if (lookahead != 0) ADVANCE(254); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(265); END_STATE(); case 24: - if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(263); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(265); + if (lookahead == '>') ADVANCE(158); END_STATE(); case 25: - if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(263); - if (lookahead == '>') ADVANCE(159); + if (lookahead == '*') ADVANCE(25); + if (lookahead == '/') ADVANCE(262); + if (lookahead != 0) ADVANCE(26); END_STATE(); case 26: - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(260); - if (lookahead != 0) ADVANCE(27); + if (lookahead == '*') ADVANCE(25); + if (lookahead != 0) ADVANCE(26); END_STATE(); case 27: - if (lookahead == '*') ADVANCE(26); - if (lookahead != 0) ADVANCE(27); + if (lookahead == '*') ADVANCE(164); + if (lookahead == '"' || + lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(26); + if (lookahead != 0) ADVANCE(165); END_STATE(); case 28: - if (lookahead == '*') ADVANCE(165); + if (lookahead == '*') ADVANCE(170); if (lookahead == '#' || + lookahead == '\'' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27); - if (lookahead != 0) ADVANCE(166); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(26); + if (lookahead != 0) ADVANCE(171); END_STATE(); case 29: - if (lookahead == '*') ADVANCE(171); - if (lookahead == '#' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27); - if (lookahead != 0) ADVANCE(172); + if (lookahead == '.') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); END_STATE(); case 30: - if (lookahead == '.') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '?') ADVANCE(240); END_STATE(); case 31: - if (lookahead == '.') ADVANCE(175); - if (lookahead == '?') ADVANCE(238); + if (lookahead == '.') ADVANCE(193); END_STATE(); case 32: - if (lookahead == '.') ADVANCE(191); + if (lookahead == '/') ADVANCE(268); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); END_STATE(); case 33: - if (lookahead == '/') ADVANCE(266); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(34); + if (lookahead == '/') ADVANCE(23); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); END_STATE(); case 34: - if (lookahead == '/') ADVANCE(24); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(34); + if (lookahead == ':') ADVANCE(292); END_STATE(); case 35: - if (lookahead == ':') ADVANCE(290); + if (lookahead == ':') ADVANCE(291); END_STATE(); case 36: - if (lookahead == ':') ADVANCE(289); + if (lookahead == ':') ADVANCE(293); END_STATE(); case 37: - if (lookahead == ':') ADVANCE(291); + if (lookahead == ';') ADVANCE(149); END_STATE(); case 38: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); END_STATE(); case 39: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); END_STATE(); case 40: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); END_STATE(); case 41: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40); END_STATE(); case 42: - if (lookahead == ';') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(41); + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); END_STATE(); case 43: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 44: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 45: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 46: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); case 47: - if (lookahead == ';') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(37); END_STATE(); case 48: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(38); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); END_STATE(); case 49: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); END_STATE(); case 50: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 51: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); END_STATE(); case 52: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(51); END_STATE(); case 53: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(52); END_STATE(); case 54: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); END_STATE(); case 55: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); END_STATE(); case 56: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); END_STATE(); case 57: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); END_STATE(); case 58: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); END_STATE(); case 59: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); END_STATE(); case 60: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); END_STATE(); case 61: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); END_STATE(); case 62: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); case 63: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); END_STATE(); case 64: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 65: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); case 66: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65); END_STATE(); case 67: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 68: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67); END_STATE(); case 69: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 70: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69); END_STATE(); case 71: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); END_STATE(); case 72: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); END_STATE(); case 73: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); END_STATE(); case 74: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(73); END_STATE(); case 75: - if (lookahead == ';') ADVANCE(150); + if (lookahead == ';') ADVANCE(149); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); END_STATE(); case 76: - if (lookahead == ';') ADVANCE(150); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); + if (lookahead == '=') ADVANCE(235); END_STATE(); case 77: - if (lookahead == '=') ADVANCE(233); + if (lookahead == '?') ADVANCE(34); END_STATE(); case 78: if (lookahead == '?') ADVANCE(35); END_STATE(); case 79: - if (lookahead == '?') ADVANCE(36); + if (lookahead == '\\') ADVANCE(82); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(285); END_STATE(); case 80: - if (lookahead == '\\') ADVANCE(83); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(283); + if (lookahead == '\\') ADVANCE(123); + if (lookahead == ']') ADVANCE(270); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(80); END_STATE(); case 81: - if (lookahead == '\\') ADVANCE(124); - if (lookahead == ']') ADVANCE(268); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(81); + if (lookahead == 'u') ADVANCE(86); + if (lookahead == 'x') ADVANCE(113); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(261); + if (lookahead != 0) ADVANCE(257); END_STATE(); case 82: if (lookahead == 'u') ADVANCE(87); - if (lookahead == 'x') ADVANCE(114); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(259); - if (lookahead != 0) ADVANCE(255); END_STATE(); case 83: if (lookahead == 'u') ADVANCE(88); END_STATE(); case 84: if (lookahead == 'u') ADVANCE(89); + if (lookahead == 'x') ADVANCE(113); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(261); + if (lookahead != 0) ADVANCE(257); END_STATE(); case 85: - if (lookahead == 'u') ADVANCE(90); - if (lookahead == 'x') ADVANCE(114); - if (lookahead == '\r' || - lookahead == '?') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(259); - if (lookahead != 0) ADVANCE(255); + if (lookahead == '{') ADVANCE(267); END_STATE(); case 86: - if (lookahead == '{') ADVANCE(265); + if (lookahead == '{') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); case 87: - if (lookahead == '{') ADVANCE(108); + if (lookahead == '{') ADVANCE(111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); @@ -11423,147 +11605,146 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120); END_STATE(); case 89: - if (lookahead == '{') ADVANCE(113); + if (lookahead == '{') ADVANCE(114); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); END_STATE(); case 90: - if (lookahead == '{') ADVANCE(115); + if (lookahead == '}') ADVANCE(284); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); END_STATE(); case 91: - if (lookahead == '}') ADVANCE(282); + if (lookahead == '}') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 92: - if (lookahead == '}') ADVANCE(283); + if (lookahead == '}') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); END_STATE(); case 93: - if (lookahead == '}') ADVANCE(255); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + if (lookahead == '}') ADVANCE(295); END_STATE(); case 94: - if (lookahead == '}') ADVANCE(293); - END_STATE(); - case 95: - if (lookahead == '}') ADVANCE(256); + if (lookahead == '}') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(94); END_STATE(); - case 96: + case 95: if (lookahead == '+' || - lookahead == '-') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); + lookahead == '-') ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(280); END_STATE(); - case 97: + case 96: if (lookahead == 'X' || - lookahead == 'x') ADVANCE(110); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(42); + lookahead == 'x') ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(41); END_STATE(); - case 98: + case 97: if (lookahead == '0' || - lookahead == '1') ADVANCE(274); + lookahead == '1') ADVANCE(276); + END_STATE(); + case 98: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(277); END_STATE(); case 99: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 100: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); END_STATE(); case 101: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); case 102: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(280); END_STATE(); case 103: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(284); END_STATE(); case 104: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(282); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(285); END_STATE(); case 105: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(257); END_STATE(); case 106: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(255); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(278); END_STATE(); case 107: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(94); END_STATE(); case 108: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(258); END_STATE(); case 109: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(256); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 110: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); case 111: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); END_STATE(); case 112: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); END_STATE(); case 113: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); END_STATE(); case 114: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); END_STATE(); case 115: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(108); END_STATE(); case 116: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); END_STATE(); case 117: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); END_STATE(); case 118: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 119: if (('0' <= lookahead && lookahead <= '9') || @@ -11576,966 +11757,988 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 121: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(162); END_STATE(); case 122: if (lookahead != 0 && lookahead != '#' && + lookahead != '\'' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(164); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(168); END_STATE(); case 123: if (lookahead != 0 && - lookahead != '#' && - (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(170); + lookahead != '\n') ADVANCE(80); END_STATE(); case 124: if (lookahead != 0 && - lookahead != '\n') ADVANCE(81); + lookahead != '\n') ADVANCE(270); END_STATE(); case 125: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(268); + if (eof) ADVANCE(128); + ADVANCE_MAP( + '!', 142, + '"', 159, + '#', 6, + '$', 283, + '%', 226, + '&', 204, + '\'', 160, + '(', 143, + ')', 145, + '*', 131, + '+', 218, + ',', 139, + '-', 222, + '.', 155, + '/', 224, + '0', 273, + ':', 146, + ';', 144, + '<', 231, + '=', 135, + '>', 151, + '?', 289, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '^', 208, + '`', 266, + '{', 138, + '|', 211, + '}', 140, + '~', 242, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(125); + if (lookahead > '@') ADVANCE(284); END_STATE(); case 126: - if (eof) ADVANCE(129); + if (eof) ADVANCE(128); ADVANCE_MAP( - '!', 143, - '"', 160, - '#', 6, - '$', 281, - '%', 224, - '&', 203, - '\'', 161, - '(', 144, - ')', 146, + '!', 142, + '"', 159, + '#', 79, + '%', 225, + '&', 206, + '\'', 160, + '(', 143, + ')', 145, '*', 132, '+', 216, - ',', 140, + ',', 139, '-', 220, '.', 156, - '/', 222, - '0', 271, - ':', 147, - ';', 145, - '<', 229, - '=', 136, + '/', 223, + '0', 273, + ':', 146, + ';', 144, + '<', 233, + '=', 134, '>', 152, - '?', 287, - '@', 284, - '[', 148, - '\\', 84, - ']', 149, - '^', 206, - '`', 264, - '{', 139, - '|', 209, - '}', 141, - '~', 240, + '?', 290, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '^', 207, + '`', 266, + '{', 137, + '|', 213, + '}', 140, + '~', 242, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(126); - if (lookahead > '@') ADVANCE(282); + if (lookahead > '#') ADVANCE(284); END_STATE(); case 127: - if (eof) ADVANCE(129); + if (eof) ADVANCE(128); ADVANCE_MAP( - '!', 143, - '"', 160, - '#', 80, - '%', 223, + '!', 141, + '"', 159, + '#', 6, '&', 204, - '\'', 161, - '(', 144, - ')', 146, - '*', 133, - '+', 214, - ',', 140, - '-', 218, - '.', 157, - '/', 221, - '0', 271, - ':', 147, - ';', 145, - '<', 231, - '=', 135, - '>', 153, - '?', 288, - '@', 284, - '[', 148, - '\\', 84, - ']', 149, - '^', 205, - '`', 264, - '{', 138, - '|', 211, - '}', 141, - '~', 240, + '\'', 160, + '(', 143, + ')', 145, + '*', 130, + '+', 216, + ',', 139, + '-', 220, + '.', 155, + '/', 223, + '0', 273, + ':', 146, + ';', 144, + '<', 229, + '=', 136, + '>', 150, + '?', 287, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '`', 266, + '{', 137, + '|', 214, + '}', 140, + '~', 242, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(127); - if (lookahead > '#') ADVANCE(282); - END_STATE(); - case 128: - if (eof) ADVANCE(129); - ADVANCE_MAP( - '!', 142, - '"', 160, - '#', 6, - '&', 202, - '\'', 161, - '(', 144, - ')', 146, - '*', 131, - '+', 214, - ',', 140, - '-', 218, - '.', 156, - '/', 221, - '0', 271, - ':', 147, - ';', 145, - '<', 227, - '=', 137, - '>', 151, - '?', 285, - '@', 284, - '[', 148, - '\\', 84, - ']', 149, - '`', 264, - '{', 138, - '|', 212, - '}', 141, - '~', 240, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(128); if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead)) ADVANCE(282); + (lookahead < '[' || '^' < lookahead)) ADVANCE(284); END_STATE(); - case 129: + case 128: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 130: + case 129: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(130); + lookahead != '\n') ADVANCE(129); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 131: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(228); + if (lookahead == '=') ADVANCE(180); END_STATE(); case 132: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(226); - if (lookahead == '=') ADVANCE(178); + if (lookahead == '*') ADVANCE(227); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 134: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(235); END_STATE(); case 135: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(233); + if (lookahead == '=') ADVANCE(235); + if (lookahead == '>') ADVANCE(176); END_STATE(); case 136: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(233); - if (lookahead == '>') ADVANCE(174); + if (lookahead == '>') ADVANCE(176); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 138: ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(294); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(292); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 142: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(237); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(235); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(sym_html_character_reference); END_STATE(); case 150: - ACCEPT_TOKEN(sym_html_character_reference); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 151: ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(239); + if (lookahead == '>') ADVANCE(198); END_STATE(); case 152: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(237); - if (lookahead == '>') ADVANCE(196); + if (lookahead == '=') ADVANCE(239); + if (lookahead == '>') ADVANCE(199); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(237); - if (lookahead == '>') ADVANCE(197); - END_STATE(); - case 154: ACCEPT_TOKEN(sym_jsx_identifier); if (lookahead == '$' || lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(154); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 155: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); END_STATE(); case 156: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_LT_SLASH); + ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_SLASH_GT); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(121); + if (lookahead == '*') ADVANCE(165); + if (lookahead == '/') ADVANCE(166); + if (lookahead != 0 && + lookahead != '"') ADVANCE(162); END_STATE(); case 162: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(16); - if (lookahead == '/') ADVANCE(163); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(162); + if (lookahead == '&') ADVANCE(121); if (lookahead != 0 && - lookahead != '"') ADVANCE(164); + lookahead != '"') ADVANCE(162); END_STATE(); case 163: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(122); - if (lookahead == '*') ADVANCE(166); - if (lookahead == '/') ADVANCE(167); + if (lookahead == '&') ADVANCE(15); + if (lookahead == '/') ADVANCE(161); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(163); if (lookahead != 0 && - lookahead != '"') ADVANCE(164); + lookahead != '"') ADVANCE(162); END_STATE(); case 164: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(122); + if (lookahead == '&') ADVANCE(27); + if (lookahead == '*') ADVANCE(164); + if (lookahead == '/') ADVANCE(162); if (lookahead != 0 && - lookahead != '"') ADVANCE(164); + lookahead != '"') ADVANCE(165); END_STATE(); case 165: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(28); - if (lookahead == '*') ADVANCE(165); - if (lookahead == '/') ADVANCE(164); + if (lookahead == '&') ADVANCE(27); + if (lookahead == '*') ADVANCE(164); if (lookahead != 0 && - lookahead != '"') ADVANCE(166); + lookahead != '"') ADVANCE(165); END_STATE(); case 166: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(28); - if (lookahead == '*') ADVANCE(165); + if (lookahead == '&') ADVANCE(263); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(162); if (lookahead != 0 && lookahead != '"') ADVANCE(166); END_STATE(); case 167: - ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(261); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(164); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '/') ADVANCE(172); if (lookahead != 0 && - lookahead != '"') ADVANCE(167); + lookahead != '&' && + lookahead != '\'') ADVANCE(168); END_STATE(); case 168: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(17); - if (lookahead == '/') ADVANCE(169); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(168); + if (lookahead == '&') ADVANCE(122); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(170); + lookahead != '\'') ADVANCE(168); END_STATE(); case 169: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(123); - if (lookahead == '*') ADVANCE(172); - if (lookahead == '/') ADVANCE(173); + if (lookahead == '&') ADVANCE(16); + if (lookahead == '/') ADVANCE(167); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(169); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(170); + lookahead != '\'') ADVANCE(168); END_STATE(); case 170: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(123); + if (lookahead == '&') ADVANCE(28); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '/') ADVANCE(168); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(170); + lookahead != '\'') ADVANCE(171); END_STATE(); case 171: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(29); - if (lookahead == '*') ADVANCE(171); - if (lookahead == '/') ADVANCE(170); + if (lookahead == '&') ADVANCE(28); + if (lookahead == '*') ADVANCE(170); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(172); + lookahead != '\'') ADVANCE(171); END_STATE(); case 172: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(29); - if (lookahead == '*') ADVANCE(171); - if (lookahead != 0 && - lookahead != '&' && - lookahead != '\'') ADVANCE(172); - END_STATE(); - case 173: - ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(262); + if (lookahead == '&') ADVANCE(264); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(170); + lookahead == 0x2029) ADVANCE(168); if (lookahead != 0 && lookahead != '&' && - lookahead != '\'') ADVANCE(173); + lookahead != '\'') ADVANCE(172); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '#') ADVANCE(96); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_AMP2); + if (lookahead == '#') ADVANCE(96); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#') ADVANCE(162); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_QMARK_DOT); + ACCEPT_TOKEN(anon_sym_AMP2); + if (lookahead == '#') ADVANCE(96); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(168); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(184); - if (lookahead == '>') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(191); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(186); + if (lookahead == '>') ADVANCE(201); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(200); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(187); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(193); - if (lookahead == '=') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(188); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(192); + ACCEPT_TOKEN(anon_sym_AMP3); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_AMP3); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '=') ADVANCE(184); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_AMP3); + if (lookahead == '&') ADVANCE(194); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_CARET); if (lookahead == '=') ADVANCE(183); - if (lookahead == '|') ADVANCE(195); END_STATE(); case 209: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(183); - if (lookahead == '|') ADVANCE(195); - if (lookahead == '}') ADVANCE(293); END_STATE(); case 210: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(194); + if (lookahead == '=') ADVANCE(185); + if (lookahead == '|') ADVANCE(197); END_STATE(); case 211: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(194); - if (lookahead == '}') ADVANCE(293); + if (lookahead == '=') ADVANCE(185); + if (lookahead == '|') ADVANCE(197); + if (lookahead == '}') ADVANCE(295); END_STATE(); case 212: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(293); + if (lookahead == '|') ADVANCE(196); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(196); + if (lookahead == '}') ADVANCE(295); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(241); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '}') ADVANCE(295); END_STATE(); case 215: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(241); - if (lookahead == '=') ADVANCE(176); END_STATE(); case 216: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(241); - if (lookahead == '=') ADVANCE(176); - if (lookahead == '?') ADVANCE(35); + if (lookahead == '+') ADVANCE(243); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(243); + if (lookahead == '=') ADVANCE(178); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(242); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(243); + if (lookahead == '=') ADVANCE(178); + if (lookahead == '?') ADVANCE(34); END_STATE(); case 219: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(242); - if (lookahead == '=') ADVANCE(177); END_STATE(); case 220: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(242); - if (lookahead == '=') ADVANCE(177); - if (lookahead == '?') ADVANCE(36); + if (lookahead == '-') ADVANCE(244); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(263); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(244); + if (lookahead == '=') ADVANCE(179); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(27); - if (lookahead == '/') ADVANCE(263); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(244); if (lookahead == '=') ADVANCE(179); + if (lookahead == '?') ADVANCE(35); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(265); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(265); + if (lookahead == '=') ADVANCE(181); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(182); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(158); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(189); END_STATE(); case 229: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '/') ADVANCE(158); - if (lookahead == '<') ADVANCE(201); - if (lookahead == '=') ADVANCE(232); END_STATE(); case 230: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(201); - if (lookahead == '=') ADVANCE(232); + if (lookahead == '/') ADVANCE(157); END_STATE(); case 231: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(200); - if (lookahead == '=') ADVANCE(232); + if (lookahead == '/') ADVANCE(157); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(234); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(234); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(202); if (lookahead == '=') ADVANCE(234); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == '=') ADVANCE(236); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(238); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(192); END_STATE(); case 242: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 243: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 244: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 245: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(245); - if (lookahead == '/') ADVANCE(247); + if (lookahead == '*') ADVANCE(247); + if (lookahead == '/') ADVANCE(249); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(248); + lookahead != '\\') ADVANCE(250); END_STATE(); - case 244: + case 246: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(244); - if (lookahead == '/') ADVANCE(248); + if (lookahead == '*') ADVANCE(246); + if (lookahead == '/') ADVANCE(250); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(245); + lookahead != '\\') ADVANCE(247); END_STATE(); - case 245: + case 247: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(244); + if (lookahead == '*') ADVANCE(246); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(245); + lookahead != '\\') ADVANCE(247); END_STATE(); - case 246: + case 248: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(243); + if (lookahead == '/') ADVANCE(245); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(246); + lookahead != '\r') ADVANCE(248); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(248); + lookahead != '\\') ADVANCE(250); END_STATE(); - case 247: + case 249: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(248); + lookahead == 0x2029) ADVANCE(250); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(247); + lookahead != '\\') ADVANCE(249); END_STATE(); - case 248: + case 250: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && - lookahead != '\\') ADVANCE(248); + lookahead != '\\') ADVANCE(250); END_STATE(); - case 249: + case 251: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(251); - if (lookahead == '/') ADVANCE(253); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '/') ADVANCE(255); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(254); + lookahead != '\\') ADVANCE(256); END_STATE(); - case 250: + case 252: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(250); - if (lookahead == '/') ADVANCE(254); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '/') ADVANCE(256); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(251); + lookahead != '\\') ADVANCE(253); END_STATE(); - case 251: + case 253: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(250); + if (lookahead == '*') ADVANCE(252); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(251); + lookahead != '\\') ADVANCE(253); END_STATE(); - case 252: + case 254: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(249); + if (lookahead == '/') ADVANCE(251); if ((set_contains(extras_character_set_1, 10, lookahead)) && lookahead != '\n' && - lookahead != '\r') ADVANCE(252); + lookahead != '\r') ADVANCE(254); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(254); + lookahead != '\\') ADVANCE(256); END_STATE(); - case 253: + case 255: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(254); + lookahead == 0x2029) ADVANCE(256); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(253); + lookahead != '\\') ADVANCE(255); END_STATE(); - case 254: + case 256: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '\'' && - lookahead != '\\') ADVANCE(254); + lookahead != '\\') ADVANCE(256); END_STATE(); - case 255: + case 257: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 256: + case 258: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(84); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); + if (lookahead == '\\') ADVANCE(83); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(284); END_STATE(); - case 257: + case 259: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(255); + lookahead == 0x2029) ADVANCE(257); END_STATE(); - case 258: + case 260: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(255); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(257); END_STATE(); - case 259: + case 261: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(258); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(260); END_STATE(); - case 260: + case 262: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 261: + case 263: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(164); - if (lookahead == '#' || + lookahead == 0x2029) ADVANCE(162); + if (lookahead == '"' || + lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); - if (lookahead != 0) ADVANCE(167); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(265); + if (lookahead != 0) ADVANCE(166); END_STATE(); - case 262: + case 264: ACCEPT_TOKEN(sym_comment); if (lookahead == '\n' || lookahead == '\r' || lookahead == 0x2028 || - lookahead == 0x2029) ADVANCE(170); + lookahead == 0x2029) ADVANCE(168); if (lookahead == '#' || + lookahead == '\'' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(263); - if (lookahead != 0) ADVANCE(173); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(265); + if (lookahead != 0) ADVANCE(172); END_STATE(); - case 263: + case 265: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != 0x2028 && - lookahead != 0x2029) ADVANCE(263); + lookahead != 0x2029) ADVANCE(265); END_STATE(); - case 264: + case 266: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 265: + case 267: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 266: + case 268: ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); - case 267: + case 269: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(34); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '[') ADVANCE(81); - if (lookahead == '\\') ADVANCE(125); - if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(267); - if (lookahead != 0) ADVANCE(268); + if (lookahead == '\n') SKIP(33); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(124); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(269); + if (lookahead != 0) ADVANCE(270); END_STATE(); - case 268: + case 270: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(81); - if (lookahead == '\\') ADVANCE(125); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(124); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(268); + lookahead != '/') ADVANCE(270); END_STATE(); - case 269: + case 271: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(84); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(269); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); + if (lookahead == '\\') ADVANCE(83); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(284); END_STATE(); - case 270: + case 272: ACCEPT_TOKEN(sym_number); END_STATE(); - case 271: + case 273: ACCEPT_TOKEN(sym_number); ADVANCE_MAP( - '.', 279, - '0', 273, - '_', 102, - 'n', 270, - 'B', 98, - 'b', 98, - 'E', 96, - 'e', 96, - 'O', 99, - 'o', 99, - 'X', 107, - 'x', 107, + '.', 281, + '0', 275, + '_', 101, + 'n', 272, + 'B', 97, + 'b', 97, + 'E', 95, + 'e', 95, + 'O', 98, + 'o', 98, + 'X', 106, + 'x', 106, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); - case 272: + case 274: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '_') ADVANCE(100); - if (lookahead == 'n') ADVANCE(270); + if (lookahead == '.') ADVANCE(281); + if (lookahead == '_') ADVANCE(99); + if (lookahead == 'n') ADVANCE(272); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(96); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); + lookahead == 'e') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); - case 273: + case 275: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(102); - if (lookahead == 'n') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); + if (lookahead == '_') ADVANCE(101); + if (lookahead == 'n') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); END_STATE(); - case 274: + case 276: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(98); - if (lookahead == 'n') ADVANCE(270); + if (lookahead == '_') ADVANCE(97); + if (lookahead == 'n') ADVANCE(272); if (lookahead == '0' || - lookahead == '1') ADVANCE(274); + lookahead == '1') ADVANCE(276); END_STATE(); - case 275: + case 277: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(99); - if (lookahead == 'n') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(275); + if (lookahead == '_') ADVANCE(98); + if (lookahead == 'n') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(277); END_STATE(); - case 276: + case 278: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(107); - if (lookahead == 'n') ADVANCE(270); + if (lookahead == '_') ADVANCE(106); + if (lookahead == 'n') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(278); END_STATE(); - case 277: + case 279: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(101); + if (lookahead == '_') ADVANCE(100); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(96); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + lookahead == 'e') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); END_STATE(); - case 278: + case 280: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); + if (lookahead == '_') ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(280); END_STATE(); - case 279: + case 281: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(96); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + lookahead == 'e') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); END_STATE(); - case 280: + case 282: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(154); - if (lookahead == '\\') ADVANCE(84); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '\\') ADVANCE(83); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(280); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); - END_STATE(); - case 281: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(84); - if (lookahead == '{') ADVANCE(265); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); - END_STATE(); - case 282: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(84); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(282); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(282); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(284); END_STATE(); case 283: - ACCEPT_TOKEN(sym_private_property_identifier); + ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(83); - if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(283); + if (lookahead == '{') ADVANCE(267); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(284); END_STATE(); case 284: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(83); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(284); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(sym_private_property_identifier); + if (lookahead == '\\') ADVANCE(82); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(285); END_STATE(); case 286: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(175); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 287: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '?') ADVANCE(239); END_STATE(); case 288: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(175); - if (lookahead == '?') ADVANCE(238); + if (lookahead == '.') ADVANCE(177); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '?') ADVANCE(241); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '?') ADVANCE(240); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_QMARK_COLON); + ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); + ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); END_STATE(); case 293: + ACCEPT_TOKEN(anon_sym_QMARK_COLON); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); + END_STATE(); + case 295: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); default: @@ -13687,146 +13890,146 @@ 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 = 128, .external_lex_state = 2}, + [1] = {.lex_state = 127, .external_lex_state = 2}, [2] = {.lex_state = 2, .external_lex_state = 3}, [3] = {.lex_state = 2, .external_lex_state = 3}, - [4] = {.lex_state = 128, .external_lex_state = 2}, - [5] = {.lex_state = 128, .external_lex_state = 2}, - [6] = {.lex_state = 128, .external_lex_state = 2}, - [7] = {.lex_state = 128, .external_lex_state = 2}, - [8] = {.lex_state = 128, .external_lex_state = 2}, - [9] = {.lex_state = 128, .external_lex_state = 2}, - [10] = {.lex_state = 128, .external_lex_state = 2}, - [11] = {.lex_state = 128, .external_lex_state = 2}, - [12] = {.lex_state = 128, .external_lex_state = 2}, - [13] = {.lex_state = 128, .external_lex_state = 2}, - [14] = {.lex_state = 128, .external_lex_state = 2}, - [15] = {.lex_state = 128, .external_lex_state = 2}, - [16] = {.lex_state = 128, .external_lex_state = 2}, - [17] = {.lex_state = 128, .external_lex_state = 2}, - [18] = {.lex_state = 128, .external_lex_state = 2}, - [19] = {.lex_state = 128, .external_lex_state = 2}, - [20] = {.lex_state = 128, .external_lex_state = 2}, - [21] = {.lex_state = 128, .external_lex_state = 2}, - [22] = {.lex_state = 128, .external_lex_state = 2}, - [23] = {.lex_state = 128, .external_lex_state = 2}, - [24] = {.lex_state = 128, .external_lex_state = 2}, - [25] = {.lex_state = 128, .external_lex_state = 2}, - [26] = {.lex_state = 128, .external_lex_state = 2}, - [27] = {.lex_state = 128, .external_lex_state = 2}, - [28] = {.lex_state = 128, .external_lex_state = 2}, - [29] = {.lex_state = 128, .external_lex_state = 2}, - [30] = {.lex_state = 128, .external_lex_state = 2}, - [31] = {.lex_state = 128, .external_lex_state = 2}, - [32] = {.lex_state = 128, .external_lex_state = 2}, - [33] = {.lex_state = 128, .external_lex_state = 2}, - [34] = {.lex_state = 128, .external_lex_state = 2}, - [35] = {.lex_state = 8, .external_lex_state = 2}, - [36] = {.lex_state = 128, .external_lex_state = 2}, - [37] = {.lex_state = 128, .external_lex_state = 2}, - [38] = {.lex_state = 128, .external_lex_state = 2}, - [39] = {.lex_state = 128, .external_lex_state = 2}, - [40] = {.lex_state = 128, .external_lex_state = 2}, - [41] = {.lex_state = 128, .external_lex_state = 2}, - [42] = {.lex_state = 128, .external_lex_state = 2}, - [43] = {.lex_state = 128, .external_lex_state = 2}, - [44] = {.lex_state = 128, .external_lex_state = 2}, - [45] = {.lex_state = 128, .external_lex_state = 2}, - [46] = {.lex_state = 128, .external_lex_state = 2}, - [47] = {.lex_state = 128, .external_lex_state = 2}, - [48] = {.lex_state = 128, .external_lex_state = 2}, - [49] = {.lex_state = 128, .external_lex_state = 2}, - [50] = {.lex_state = 128, .external_lex_state = 2}, - [51] = {.lex_state = 128, .external_lex_state = 2}, - [52] = {.lex_state = 128, .external_lex_state = 2}, - [53] = {.lex_state = 8, .external_lex_state = 2}, - [54] = {.lex_state = 128, .external_lex_state = 2}, - [55] = {.lex_state = 128, .external_lex_state = 2}, - [56] = {.lex_state = 128, .external_lex_state = 2}, - [57] = {.lex_state = 128, .external_lex_state = 2}, - [58] = {.lex_state = 128, .external_lex_state = 2}, - [59] = {.lex_state = 128, .external_lex_state = 2}, - [60] = {.lex_state = 128, .external_lex_state = 2}, - [61] = {.lex_state = 128, .external_lex_state = 2}, - [62] = {.lex_state = 8, .external_lex_state = 2}, - [63] = {.lex_state = 128, .external_lex_state = 2}, + [4] = {.lex_state = 127, .external_lex_state = 2}, + [5] = {.lex_state = 127, .external_lex_state = 2}, + [6] = {.lex_state = 127, .external_lex_state = 2}, + [7] = {.lex_state = 127, .external_lex_state = 2}, + [8] = {.lex_state = 127, .external_lex_state = 2}, + [9] = {.lex_state = 127, .external_lex_state = 2}, + [10] = {.lex_state = 127, .external_lex_state = 2}, + [11] = {.lex_state = 127, .external_lex_state = 2}, + [12] = {.lex_state = 127, .external_lex_state = 2}, + [13] = {.lex_state = 127, .external_lex_state = 2}, + [14] = {.lex_state = 127, .external_lex_state = 2}, + [15] = {.lex_state = 127, .external_lex_state = 2}, + [16] = {.lex_state = 127, .external_lex_state = 2}, + [17] = {.lex_state = 127, .external_lex_state = 2}, + [18] = {.lex_state = 127, .external_lex_state = 2}, + [19] = {.lex_state = 127, .external_lex_state = 2}, + [20] = {.lex_state = 127, .external_lex_state = 2}, + [21] = {.lex_state = 127, .external_lex_state = 2}, + [22] = {.lex_state = 127, .external_lex_state = 2}, + [23] = {.lex_state = 127, .external_lex_state = 2}, + [24] = {.lex_state = 127, .external_lex_state = 2}, + [25] = {.lex_state = 127, .external_lex_state = 2}, + [26] = {.lex_state = 127, .external_lex_state = 2}, + [27] = {.lex_state = 127, .external_lex_state = 2}, + [28] = {.lex_state = 127, .external_lex_state = 2}, + [29] = {.lex_state = 127, .external_lex_state = 2}, + [30] = {.lex_state = 127, .external_lex_state = 2}, + [31] = {.lex_state = 8, .external_lex_state = 2}, + [32] = {.lex_state = 127, .external_lex_state = 2}, + [33] = {.lex_state = 127, .external_lex_state = 2}, + [34] = {.lex_state = 127, .external_lex_state = 2}, + [35] = {.lex_state = 127, .external_lex_state = 2}, + [36] = {.lex_state = 127, .external_lex_state = 2}, + [37] = {.lex_state = 127, .external_lex_state = 2}, + [38] = {.lex_state = 127, .external_lex_state = 2}, + [39] = {.lex_state = 127, .external_lex_state = 2}, + [40] = {.lex_state = 127, .external_lex_state = 2}, + [41] = {.lex_state = 127, .external_lex_state = 2}, + [42] = {.lex_state = 127, .external_lex_state = 2}, + [43] = {.lex_state = 127, .external_lex_state = 2}, + [44] = {.lex_state = 127, .external_lex_state = 2}, + [45] = {.lex_state = 127, .external_lex_state = 2}, + [46] = {.lex_state = 127, .external_lex_state = 2}, + [47] = {.lex_state = 127, .external_lex_state = 2}, + [48] = {.lex_state = 127, .external_lex_state = 2}, + [49] = {.lex_state = 127, .external_lex_state = 2}, + [50] = {.lex_state = 8, .external_lex_state = 2}, + [51] = {.lex_state = 127, .external_lex_state = 2}, + [52] = {.lex_state = 127, .external_lex_state = 2}, + [53] = {.lex_state = 127, .external_lex_state = 2}, + [54] = {.lex_state = 127, .external_lex_state = 2}, + [55] = {.lex_state = 127, .external_lex_state = 2}, + [56] = {.lex_state = 127, .external_lex_state = 2}, + [57] = {.lex_state = 127, .external_lex_state = 2}, + [58] = {.lex_state = 127, .external_lex_state = 2}, + [59] = {.lex_state = 127, .external_lex_state = 2}, + [60] = {.lex_state = 127, .external_lex_state = 2}, + [61] = {.lex_state = 8, .external_lex_state = 2}, + [62] = {.lex_state = 127, .external_lex_state = 2}, + [63] = {.lex_state = 127, .external_lex_state = 2}, [64] = {.lex_state = 8, .external_lex_state = 2}, - [65] = {.lex_state = 128, .external_lex_state = 2}, - [66] = {.lex_state = 128, .external_lex_state = 2}, - [67] = {.lex_state = 128, .external_lex_state = 2}, + [65] = {.lex_state = 8, .external_lex_state = 2}, + [66] = {.lex_state = 8, .external_lex_state = 2}, + [67] = {.lex_state = 8, .external_lex_state = 2}, [68] = {.lex_state = 8, .external_lex_state = 2}, [69] = {.lex_state = 8, .external_lex_state = 2}, [70] = {.lex_state = 8, .external_lex_state = 2}, - [71] = {.lex_state = 8, .external_lex_state = 2}, - [72] = {.lex_state = 8, .external_lex_state = 2}, - [73] = {.lex_state = 128, .external_lex_state = 2}, - [74] = {.lex_state = 128, .external_lex_state = 2}, - [75] = {.lex_state = 128, .external_lex_state = 2}, - [76] = {.lex_state = 128, .external_lex_state = 2}, - [77] = {.lex_state = 128, .external_lex_state = 2}, - [78] = {.lex_state = 128, .external_lex_state = 2}, - [79] = {.lex_state = 128, .external_lex_state = 2}, - [80] = {.lex_state = 128, .external_lex_state = 2}, - [81] = {.lex_state = 128, .external_lex_state = 2}, - [82] = {.lex_state = 128, .external_lex_state = 2}, - [83] = {.lex_state = 128, .external_lex_state = 2}, - [84] = {.lex_state = 128, .external_lex_state = 2}, - [85] = {.lex_state = 128, .external_lex_state = 2}, - [86] = {.lex_state = 8, .external_lex_state = 2}, + [71] = {.lex_state = 127, .external_lex_state = 2}, + [72] = {.lex_state = 127, .external_lex_state = 2}, + [73] = {.lex_state = 127, .external_lex_state = 2}, + [74] = {.lex_state = 127, .external_lex_state = 2}, + [75] = {.lex_state = 127, .external_lex_state = 2}, + [76] = {.lex_state = 127, .external_lex_state = 2}, + [77] = {.lex_state = 127, .external_lex_state = 2}, + [78] = {.lex_state = 127, .external_lex_state = 2}, + [79] = {.lex_state = 127, .external_lex_state = 2}, + [80] = {.lex_state = 127, .external_lex_state = 2}, + [81] = {.lex_state = 127, .external_lex_state = 2}, + [82] = {.lex_state = 127, .external_lex_state = 2}, + [83] = {.lex_state = 127, .external_lex_state = 2}, + [84] = {.lex_state = 127, .external_lex_state = 2}, + [85] = {.lex_state = 127, .external_lex_state = 2}, + [86] = {.lex_state = 127, .external_lex_state = 2}, [87] = {.lex_state = 3, .external_lex_state = 4}, [88] = {.lex_state = 3, .external_lex_state = 4}, [89] = {.lex_state = 3, .external_lex_state = 4}, - [90] = {.lex_state = 3, .external_lex_state = 3}, + [90] = {.lex_state = 8, .external_lex_state = 2}, [91] = {.lex_state = 8, .external_lex_state = 2}, [92] = {.lex_state = 3, .external_lex_state = 3}, [93] = {.lex_state = 3, .external_lex_state = 3}, [94] = {.lex_state = 3, .external_lex_state = 3}, - [95] = {.lex_state = 8, .external_lex_state = 2}, + [95] = {.lex_state = 3, .external_lex_state = 3}, [96] = {.lex_state = 3, .external_lex_state = 3}, - [97] = {.lex_state = 3, .external_lex_state = 3}, + [97] = {.lex_state = 8, .external_lex_state = 2}, [98] = {.lex_state = 3, .external_lex_state = 3}, - [99] = {.lex_state = 8, .external_lex_state = 2}, + [99] = {.lex_state = 3, .external_lex_state = 3}, [100] = {.lex_state = 3, .external_lex_state = 3}, - [101] = {.lex_state = 8, .external_lex_state = 2}, - [102] = {.lex_state = 8, .external_lex_state = 2}, - [103] = {.lex_state = 3, .external_lex_state = 3}, - [104] = {.lex_state = 8, .external_lex_state = 2}, + [101] = {.lex_state = 3, .external_lex_state = 3}, + [102] = {.lex_state = 3, .external_lex_state = 3}, + [103] = {.lex_state = 8, .external_lex_state = 2}, + [104] = {.lex_state = 3, .external_lex_state = 3}, [105] = {.lex_state = 8, .external_lex_state = 2}, [106] = {.lex_state = 8, .external_lex_state = 2}, - [107] = {.lex_state = 3, .external_lex_state = 3}, + [107] = {.lex_state = 8, .external_lex_state = 2}, [108] = {.lex_state = 3, .external_lex_state = 3}, [109] = {.lex_state = 3, .external_lex_state = 3}, [110] = {.lex_state = 3, .external_lex_state = 3}, - [111] = {.lex_state = 3, .external_lex_state = 3}, - [112] = {.lex_state = 3, .external_lex_state = 3}, + [111] = {.lex_state = 8, .external_lex_state = 2}, + [112] = {.lex_state = 3, .external_lex_state = 4}, [113] = {.lex_state = 3, .external_lex_state = 4}, [114] = {.lex_state = 3, .external_lex_state = 4}, [115] = {.lex_state = 3, .external_lex_state = 4}, [116] = {.lex_state = 3, .external_lex_state = 4}, [117] = {.lex_state = 3, .external_lex_state = 4}, [118] = {.lex_state = 3, .external_lex_state = 4}, - [119] = {.lex_state = 3, .external_lex_state = 4}, + [119] = {.lex_state = 3, .external_lex_state = 3}, [120] = {.lex_state = 3, .external_lex_state = 4}, - [121] = {.lex_state = 3, .external_lex_state = 4}, - [122] = {.lex_state = 3, .external_lex_state = 3}, + [121] = {.lex_state = 3, .external_lex_state = 3}, + [122] = {.lex_state = 3, .external_lex_state = 4}, [123] = {.lex_state = 3, .external_lex_state = 3}, [124] = {.lex_state = 3, .external_lex_state = 3}, [125] = {.lex_state = 3, .external_lex_state = 3}, [126] = {.lex_state = 3, .external_lex_state = 3}, [127] = {.lex_state = 3, .external_lex_state = 3}, - [128] = {.lex_state = 3, .external_lex_state = 4}, - [129] = {.lex_state = 3, .external_lex_state = 4}, + [128] = {.lex_state = 3, .external_lex_state = 3}, + [129] = {.lex_state = 3, .external_lex_state = 3}, [130] = {.lex_state = 3, .external_lex_state = 3}, - [131] = {.lex_state = 3, .external_lex_state = 4}, + [131] = {.lex_state = 3, .external_lex_state = 3}, [132] = {.lex_state = 3, .external_lex_state = 3}, [133] = {.lex_state = 3, .external_lex_state = 3}, [134] = {.lex_state = 3, .external_lex_state = 3}, - [135] = {.lex_state = 3, .external_lex_state = 3}, - [136] = {.lex_state = 3, .external_lex_state = 3}, + [135] = {.lex_state = 3, .external_lex_state = 4}, + [136] = {.lex_state = 3, .external_lex_state = 4}, [137] = {.lex_state = 3, .external_lex_state = 3}, - [138] = {.lex_state = 3, .external_lex_state = 3}, + [138] = {.lex_state = 3, .external_lex_state = 4}, [139] = {.lex_state = 3, .external_lex_state = 3}, [140] = {.lex_state = 3, .external_lex_state = 3}, [141] = {.lex_state = 3, .external_lex_state = 3}, @@ -13837,7 +14040,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [146] = {.lex_state = 3, .external_lex_state = 3}, [147] = {.lex_state = 3, .external_lex_state = 3}, [148] = {.lex_state = 3, .external_lex_state = 3}, - [149] = {.lex_state = 3, .external_lex_state = 3}, + [149] = {.lex_state = 8, .external_lex_state = 2}, [150] = {.lex_state = 3, .external_lex_state = 3}, [151] = {.lex_state = 3, .external_lex_state = 3}, [152] = {.lex_state = 3, .external_lex_state = 3}, @@ -13847,7 +14050,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [156] = {.lex_state = 3, .external_lex_state = 3}, [157] = {.lex_state = 3, .external_lex_state = 3}, [158] = {.lex_state = 3, .external_lex_state = 3}, - [159] = {.lex_state = 8, .external_lex_state = 2}, + [159] = {.lex_state = 3, .external_lex_state = 3}, [160] = {.lex_state = 3, .external_lex_state = 3}, [161] = {.lex_state = 8, .external_lex_state = 2}, [162] = {.lex_state = 8, .external_lex_state = 2}, @@ -13861,491 +14064,491 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [170] = {.lex_state = 8, .external_lex_state = 2}, [171] = {.lex_state = 8, .external_lex_state = 2}, [172] = {.lex_state = 8, .external_lex_state = 2}, - [173] = {.lex_state = 127, .external_lex_state = 3}, - [174] = {.lex_state = 127, .external_lex_state = 4}, - [175] = {.lex_state = 127, .external_lex_state = 4}, - [176] = {.lex_state = 127, .external_lex_state = 4}, - [177] = {.lex_state = 127, .external_lex_state = 3}, - [178] = {.lex_state = 127, .external_lex_state = 3}, - [179] = {.lex_state = 127, .external_lex_state = 3}, - [180] = {.lex_state = 127, .external_lex_state = 3}, - [181] = {.lex_state = 127, .external_lex_state = 3}, + [173] = {.lex_state = 126, .external_lex_state = 3}, + [174] = {.lex_state = 126, .external_lex_state = 4}, + [175] = {.lex_state = 126, .external_lex_state = 4}, + [176] = {.lex_state = 126, .external_lex_state = 3}, + [177] = {.lex_state = 126, .external_lex_state = 3}, + [178] = {.lex_state = 126, .external_lex_state = 4}, + [179] = {.lex_state = 126, .external_lex_state = 3}, + [180] = {.lex_state = 126, .external_lex_state = 3}, + [181] = {.lex_state = 126, .external_lex_state = 3}, [182] = {.lex_state = 2, .external_lex_state = 3}, [183] = {.lex_state = 2, .external_lex_state = 4}, [184] = {.lex_state = 2, .external_lex_state = 4}, - [185] = {.lex_state = 2, .external_lex_state = 3}, - [186] = {.lex_state = 2, .external_lex_state = 3}, - [187] = {.lex_state = 128, .external_lex_state = 2}, - [188] = {.lex_state = 128, .external_lex_state = 2}, - [189] = {.lex_state = 128, .external_lex_state = 2}, - [190] = {.lex_state = 128, .external_lex_state = 2}, - [191] = {.lex_state = 128, .external_lex_state = 2}, - [192] = {.lex_state = 128, .external_lex_state = 2}, - [193] = {.lex_state = 128, .external_lex_state = 2}, - [194] = {.lex_state = 128, .external_lex_state = 2}, + [185] = {.lex_state = 127, .external_lex_state = 2}, + [186] = {.lex_state = 127, .external_lex_state = 2}, + [187] = {.lex_state = 127, .external_lex_state = 2}, + [188] = {.lex_state = 2, .external_lex_state = 3}, + [189] = {.lex_state = 127, .external_lex_state = 2}, + [190] = {.lex_state = 127, .external_lex_state = 2}, + [191] = {.lex_state = 2, .external_lex_state = 3}, + [192] = {.lex_state = 127, .external_lex_state = 2}, + [193] = {.lex_state = 127, .external_lex_state = 2}, + [194] = {.lex_state = 127, .external_lex_state = 2}, [195] = {.lex_state = 2, .external_lex_state = 3}, [196] = {.lex_state = 2, .external_lex_state = 3}, - [197] = {.lex_state = 2, .external_lex_state = 4}, + [197] = {.lex_state = 2, .external_lex_state = 3}, [198] = {.lex_state = 2, .external_lex_state = 3}, - [199] = {.lex_state = 2, .external_lex_state = 3}, + [199] = {.lex_state = 2, .external_lex_state = 4}, [200] = {.lex_state = 2, .external_lex_state = 3}, [201] = {.lex_state = 2, .external_lex_state = 3}, [202] = {.lex_state = 2, .external_lex_state = 3}, [203] = {.lex_state = 2, .external_lex_state = 3}, - [204] = {.lex_state = 128, .external_lex_state = 2}, - [205] = {.lex_state = 128, .external_lex_state = 2}, - [206] = {.lex_state = 128, .external_lex_state = 2}, - [207] = {.lex_state = 128, .external_lex_state = 2}, - [208] = {.lex_state = 128, .external_lex_state = 2}, - [209] = {.lex_state = 128, .external_lex_state = 2}, - [210] = {.lex_state = 128, .external_lex_state = 2}, - [211] = {.lex_state = 128, .external_lex_state = 2}, - [212] = {.lex_state = 128, .external_lex_state = 2}, - [213] = {.lex_state = 128, .external_lex_state = 2}, - [214] = {.lex_state = 128, .external_lex_state = 2}, - [215] = {.lex_state = 128, .external_lex_state = 2}, - [216] = {.lex_state = 127, .external_lex_state = 4}, - [217] = {.lex_state = 127, .external_lex_state = 4}, - [218] = {.lex_state = 128, .external_lex_state = 2}, - [219] = {.lex_state = 127, .external_lex_state = 4}, - [220] = {.lex_state = 128, .external_lex_state = 2}, - [221] = {.lex_state = 128, .external_lex_state = 2}, - [222] = {.lex_state = 128, .external_lex_state = 2}, - [223] = {.lex_state = 127, .external_lex_state = 4}, - [224] = {.lex_state = 128, .external_lex_state = 2}, - [225] = {.lex_state = 128, .external_lex_state = 2}, - [226] = {.lex_state = 128, .external_lex_state = 2}, - [227] = {.lex_state = 128, .external_lex_state = 2}, - [228] = {.lex_state = 127, .external_lex_state = 4}, - [229] = {.lex_state = 127, .external_lex_state = 4}, - [230] = {.lex_state = 127, .external_lex_state = 4}, - [231] = {.lex_state = 127, .external_lex_state = 4}, - [232] = {.lex_state = 127, .external_lex_state = 4}, - [233] = {.lex_state = 127, .external_lex_state = 4}, - [234] = {.lex_state = 127, .external_lex_state = 4}, - [235] = {.lex_state = 127, .external_lex_state = 4}, - [236] = {.lex_state = 127, .external_lex_state = 4}, - [237] = {.lex_state = 127, .external_lex_state = 4}, - [238] = {.lex_state = 128, .external_lex_state = 2}, - [239] = {.lex_state = 127, .external_lex_state = 4}, - [240] = {.lex_state = 127, .external_lex_state = 4}, - [241] = {.lex_state = 127, .external_lex_state = 4}, - [242] = {.lex_state = 127, .external_lex_state = 4}, - [243] = {.lex_state = 127, .external_lex_state = 4}, - [244] = {.lex_state = 127, .external_lex_state = 4}, - [245] = {.lex_state = 127, .external_lex_state = 4}, - [246] = {.lex_state = 127, .external_lex_state = 4}, - [247] = {.lex_state = 127, .external_lex_state = 4}, - [248] = {.lex_state = 127, .external_lex_state = 4}, - [249] = {.lex_state = 127, .external_lex_state = 4}, - [250] = {.lex_state = 127, .external_lex_state = 4}, - [251] = {.lex_state = 127, .external_lex_state = 4}, - [252] = {.lex_state = 127, .external_lex_state = 4}, - [253] = {.lex_state = 127, .external_lex_state = 4}, - [254] = {.lex_state = 128, .external_lex_state = 5}, - [255] = {.lex_state = 128, .external_lex_state = 2}, - [256] = {.lex_state = 128, .external_lex_state = 2}, - [257] = {.lex_state = 128, .external_lex_state = 2}, - [258] = {.lex_state = 128, .external_lex_state = 2}, - [259] = {.lex_state = 128, .external_lex_state = 2}, - [260] = {.lex_state = 128, .external_lex_state = 2}, - [261] = {.lex_state = 128, .external_lex_state = 2}, - [262] = {.lex_state = 128, .external_lex_state = 2}, - [263] = {.lex_state = 128, .external_lex_state = 2}, - [264] = {.lex_state = 128, .external_lex_state = 2}, - [265] = {.lex_state = 128, .external_lex_state = 2}, - [266] = {.lex_state = 128, .external_lex_state = 2}, - [267] = {.lex_state = 128, .external_lex_state = 2}, - [268] = {.lex_state = 3, .external_lex_state = 3}, - [269] = {.lex_state = 3, .external_lex_state = 3}, - [270] = {.lex_state = 128, .external_lex_state = 2}, - [271] = {.lex_state = 128, .external_lex_state = 2}, - [272] = {.lex_state = 128, .external_lex_state = 2}, - [273] = {.lex_state = 128, .external_lex_state = 2}, - [274] = {.lex_state = 3, .external_lex_state = 3}, - [275] = {.lex_state = 128, .external_lex_state = 2}, - [276] = {.lex_state = 128, .external_lex_state = 2}, - [277] = {.lex_state = 128, .external_lex_state = 2}, - [278] = {.lex_state = 128, .external_lex_state = 2}, - [279] = {.lex_state = 128, .external_lex_state = 2}, - [280] = {.lex_state = 128, .external_lex_state = 2}, - [281] = {.lex_state = 128, .external_lex_state = 2}, - [282] = {.lex_state = 128, .external_lex_state = 2}, - [283] = {.lex_state = 128, .external_lex_state = 2}, - [284] = {.lex_state = 128, .external_lex_state = 2}, - [285] = {.lex_state = 3, .external_lex_state = 3}, - [286] = {.lex_state = 128, .external_lex_state = 2}, - [287] = {.lex_state = 128, .external_lex_state = 2}, - [288] = {.lex_state = 128, .external_lex_state = 2}, - [289] = {.lex_state = 128, .external_lex_state = 2}, - [290] = {.lex_state = 128, .external_lex_state = 2}, - [291] = {.lex_state = 128, .external_lex_state = 2}, - [292] = {.lex_state = 128, .external_lex_state = 2}, - [293] = {.lex_state = 128, .external_lex_state = 2}, - [294] = {.lex_state = 128, .external_lex_state = 2}, - [295] = {.lex_state = 128, .external_lex_state = 2}, - [296] = {.lex_state = 128, .external_lex_state = 2}, - [297] = {.lex_state = 128, .external_lex_state = 2}, - [298] = {.lex_state = 128, .external_lex_state = 2}, - [299] = {.lex_state = 128, .external_lex_state = 2}, - [300] = {.lex_state = 128, .external_lex_state = 2}, - [301] = {.lex_state = 128, .external_lex_state = 2}, - [302] = {.lex_state = 128, .external_lex_state = 2}, - [303] = {.lex_state = 128, .external_lex_state = 2}, - [304] = {.lex_state = 128, .external_lex_state = 2}, - [305] = {.lex_state = 128, .external_lex_state = 2}, - [306] = {.lex_state = 128, .external_lex_state = 2}, - [307] = {.lex_state = 128, .external_lex_state = 5}, - [308] = {.lex_state = 128, .external_lex_state = 2}, - [309] = {.lex_state = 128, .external_lex_state = 2}, - [310] = {.lex_state = 128, .external_lex_state = 2}, - [311] = {.lex_state = 128, .external_lex_state = 2}, - [312] = {.lex_state = 128, .external_lex_state = 2}, - [313] = {.lex_state = 128, .external_lex_state = 2}, - [314] = {.lex_state = 128, .external_lex_state = 2}, - [315] = {.lex_state = 128, .external_lex_state = 2}, - [316] = {.lex_state = 128, .external_lex_state = 2}, - [317] = {.lex_state = 128, .external_lex_state = 2}, - [318] = {.lex_state = 128, .external_lex_state = 2}, - [319] = {.lex_state = 128, .external_lex_state = 2}, - [320] = {.lex_state = 128, .external_lex_state = 2}, - [321] = {.lex_state = 128, .external_lex_state = 2}, - [322] = {.lex_state = 128, .external_lex_state = 2}, - [323] = {.lex_state = 128, .external_lex_state = 2}, - [324] = {.lex_state = 128, .external_lex_state = 2}, - [325] = {.lex_state = 128, .external_lex_state = 2}, - [326] = {.lex_state = 128, .external_lex_state = 2}, - [327] = {.lex_state = 128, .external_lex_state = 2}, - [328] = {.lex_state = 128, .external_lex_state = 2}, - [329] = {.lex_state = 128, .external_lex_state = 2}, - [330] = {.lex_state = 128, .external_lex_state = 2}, - [331] = {.lex_state = 128, .external_lex_state = 2}, - [332] = {.lex_state = 128, .external_lex_state = 2}, - [333] = {.lex_state = 128, .external_lex_state = 2}, - [334] = {.lex_state = 128, .external_lex_state = 2}, - [335] = {.lex_state = 128, .external_lex_state = 2}, - [336] = {.lex_state = 128, .external_lex_state = 2}, - [337] = {.lex_state = 128, .external_lex_state = 2}, - [338] = {.lex_state = 128, .external_lex_state = 2}, - [339] = {.lex_state = 128, .external_lex_state = 2}, - [340] = {.lex_state = 128, .external_lex_state = 2}, - [341] = {.lex_state = 128, .external_lex_state = 2}, - [342] = {.lex_state = 128, .external_lex_state = 2}, - [343] = {.lex_state = 128, .external_lex_state = 2}, - [344] = {.lex_state = 128, .external_lex_state = 2}, - [345] = {.lex_state = 128, .external_lex_state = 2}, - [346] = {.lex_state = 128, .external_lex_state = 2}, - [347] = {.lex_state = 128, .external_lex_state = 2}, - [348] = {.lex_state = 128, .external_lex_state = 2}, - [349] = {.lex_state = 128, .external_lex_state = 2}, - [350] = {.lex_state = 128, .external_lex_state = 2}, - [351] = {.lex_state = 128, .external_lex_state = 2}, - [352] = {.lex_state = 128, .external_lex_state = 2}, - [353] = {.lex_state = 128, .external_lex_state = 2}, - [354] = {.lex_state = 128, .external_lex_state = 2}, - [355] = {.lex_state = 128, .external_lex_state = 2}, - [356] = {.lex_state = 128, .external_lex_state = 2}, - [357] = {.lex_state = 128, .external_lex_state = 2}, - [358] = {.lex_state = 128, .external_lex_state = 2}, - [359] = {.lex_state = 128, .external_lex_state = 2}, - [360] = {.lex_state = 128, .external_lex_state = 2}, - [361] = {.lex_state = 128, .external_lex_state = 2}, - [362] = {.lex_state = 128, .external_lex_state = 2}, - [363] = {.lex_state = 128, .external_lex_state = 2}, - [364] = {.lex_state = 128, .external_lex_state = 2}, - [365] = {.lex_state = 128, .external_lex_state = 2}, - [366] = {.lex_state = 128, .external_lex_state = 2}, - [367] = {.lex_state = 128, .external_lex_state = 2}, - [368] = {.lex_state = 128, .external_lex_state = 2}, - [369] = {.lex_state = 128, .external_lex_state = 2}, - [370] = {.lex_state = 128, .external_lex_state = 2}, - [371] = {.lex_state = 128, .external_lex_state = 2}, - [372] = {.lex_state = 128, .external_lex_state = 2}, - [373] = {.lex_state = 128, .external_lex_state = 2}, - [374] = {.lex_state = 128, .external_lex_state = 2}, - [375] = {.lex_state = 128, .external_lex_state = 2}, - [376] = {.lex_state = 128, .external_lex_state = 2}, - [377] = {.lex_state = 128, .external_lex_state = 2}, - [378] = {.lex_state = 128, .external_lex_state = 2}, - [379] = {.lex_state = 128, .external_lex_state = 2}, - [380] = {.lex_state = 128, .external_lex_state = 2}, - [381] = {.lex_state = 128, .external_lex_state = 2}, - [382] = {.lex_state = 128, .external_lex_state = 2}, - [383] = {.lex_state = 128, .external_lex_state = 2}, - [384] = {.lex_state = 128, .external_lex_state = 2}, - [385] = {.lex_state = 128, .external_lex_state = 2}, - [386] = {.lex_state = 128, .external_lex_state = 2}, - [387] = {.lex_state = 128, .external_lex_state = 2}, - [388] = {.lex_state = 128, .external_lex_state = 2}, - [389] = {.lex_state = 128, .external_lex_state = 2}, - [390] = {.lex_state = 128, .external_lex_state = 2}, - [391] = {.lex_state = 128, .external_lex_state = 2}, - [392] = {.lex_state = 128, .external_lex_state = 2}, - [393] = {.lex_state = 128, .external_lex_state = 2}, - [394] = {.lex_state = 128, .external_lex_state = 2}, - [395] = {.lex_state = 128, .external_lex_state = 2}, - [396] = {.lex_state = 128, .external_lex_state = 2}, - [397] = {.lex_state = 128, .external_lex_state = 2}, - [398] = {.lex_state = 128, .external_lex_state = 2}, - [399] = {.lex_state = 128, .external_lex_state = 2}, - [400] = {.lex_state = 128, .external_lex_state = 2}, - [401] = {.lex_state = 128, .external_lex_state = 2}, - [402] = {.lex_state = 128, .external_lex_state = 2}, - [403] = {.lex_state = 128, .external_lex_state = 2}, - [404] = {.lex_state = 128, .external_lex_state = 2}, - [405] = {.lex_state = 128, .external_lex_state = 2}, - [406] = {.lex_state = 128, .external_lex_state = 2}, - [407] = {.lex_state = 128, .external_lex_state = 2}, - [408] = {.lex_state = 128, .external_lex_state = 2}, - [409] = {.lex_state = 128, .external_lex_state = 2}, - [410] = {.lex_state = 128, .external_lex_state = 2}, - [411] = {.lex_state = 128, .external_lex_state = 2}, - [412] = {.lex_state = 128, .external_lex_state = 2}, - [413] = {.lex_state = 128, .external_lex_state = 2}, - [414] = {.lex_state = 128, .external_lex_state = 2}, - [415] = {.lex_state = 128, .external_lex_state = 2}, - [416] = {.lex_state = 128, .external_lex_state = 2}, - [417] = {.lex_state = 128, .external_lex_state = 2}, - [418] = {.lex_state = 128, .external_lex_state = 2}, - [419] = {.lex_state = 128, .external_lex_state = 2}, - [420] = {.lex_state = 128, .external_lex_state = 2}, - [421] = {.lex_state = 128, .external_lex_state = 2}, - [422] = {.lex_state = 128, .external_lex_state = 2}, - [423] = {.lex_state = 128, .external_lex_state = 2}, - [424] = {.lex_state = 128, .external_lex_state = 2}, - [425] = {.lex_state = 128, .external_lex_state = 2}, - [426] = {.lex_state = 128, .external_lex_state = 2}, - [427] = {.lex_state = 128, .external_lex_state = 2}, - [428] = {.lex_state = 128, .external_lex_state = 2}, - [429] = {.lex_state = 128, .external_lex_state = 2}, - [430] = {.lex_state = 128, .external_lex_state = 2}, - [431] = {.lex_state = 128, .external_lex_state = 2}, - [432] = {.lex_state = 128, .external_lex_state = 2}, - [433] = {.lex_state = 128, .external_lex_state = 2}, - [434] = {.lex_state = 128, .external_lex_state = 2}, - [435] = {.lex_state = 128, .external_lex_state = 2}, - [436] = {.lex_state = 128, .external_lex_state = 2}, - [437] = {.lex_state = 128, .external_lex_state = 2}, - [438] = {.lex_state = 128, .external_lex_state = 2}, - [439] = {.lex_state = 128, .external_lex_state = 2}, - [440] = {.lex_state = 128, .external_lex_state = 2}, - [441] = {.lex_state = 128, .external_lex_state = 2}, - [442] = {.lex_state = 128, .external_lex_state = 2}, - [443] = {.lex_state = 128, .external_lex_state = 2}, - [444] = {.lex_state = 128, .external_lex_state = 2}, - [445] = {.lex_state = 128, .external_lex_state = 2}, - [446] = {.lex_state = 128, .external_lex_state = 2}, - [447] = {.lex_state = 128, .external_lex_state = 2}, - [448] = {.lex_state = 128, .external_lex_state = 2}, - [449] = {.lex_state = 128, .external_lex_state = 2}, - [450] = {.lex_state = 128, .external_lex_state = 2}, - [451] = {.lex_state = 128, .external_lex_state = 2}, - [452] = {.lex_state = 128, .external_lex_state = 2}, - [453] = {.lex_state = 128, .external_lex_state = 2}, - [454] = {.lex_state = 128, .external_lex_state = 2}, - [455] = {.lex_state = 128, .external_lex_state = 2}, - [456] = {.lex_state = 128, .external_lex_state = 2}, - [457] = {.lex_state = 128, .external_lex_state = 2}, - [458] = {.lex_state = 128, .external_lex_state = 2}, - [459] = {.lex_state = 128, .external_lex_state = 2}, - [460] = {.lex_state = 128, .external_lex_state = 2}, - [461] = {.lex_state = 128, .external_lex_state = 2}, - [462] = {.lex_state = 128, .external_lex_state = 2}, - [463] = {.lex_state = 128, .external_lex_state = 2}, - [464] = {.lex_state = 128, .external_lex_state = 2}, - [465] = {.lex_state = 128, .external_lex_state = 2}, - [466] = {.lex_state = 128, .external_lex_state = 2}, - [467] = {.lex_state = 128, .external_lex_state = 2}, - [468] = {.lex_state = 128, .external_lex_state = 2}, - [469] = {.lex_state = 128, .external_lex_state = 2}, - [470] = {.lex_state = 128, .external_lex_state = 2}, - [471] = {.lex_state = 128, .external_lex_state = 2}, - [472] = {.lex_state = 128, .external_lex_state = 2}, - [473] = {.lex_state = 128, .external_lex_state = 2}, - [474] = {.lex_state = 128, .external_lex_state = 2}, - [475] = {.lex_state = 128, .external_lex_state = 2}, - [476] = {.lex_state = 128, .external_lex_state = 2}, - [477] = {.lex_state = 128, .external_lex_state = 2}, - [478] = {.lex_state = 128, .external_lex_state = 2}, - [479] = {.lex_state = 128, .external_lex_state = 2}, - [480] = {.lex_state = 128, .external_lex_state = 2}, - [481] = {.lex_state = 128, .external_lex_state = 2}, - [482] = {.lex_state = 128, .external_lex_state = 2}, - [483] = {.lex_state = 128, .external_lex_state = 2}, - [484] = {.lex_state = 128, .external_lex_state = 2}, - [485] = {.lex_state = 128, .external_lex_state = 2}, - [486] = {.lex_state = 128, .external_lex_state = 2}, - [487] = {.lex_state = 128, .external_lex_state = 2}, - [488] = {.lex_state = 128, .external_lex_state = 2}, - [489] = {.lex_state = 128, .external_lex_state = 2}, - [490] = {.lex_state = 128, .external_lex_state = 2}, - [491] = {.lex_state = 128, .external_lex_state = 2}, - [492] = {.lex_state = 128, .external_lex_state = 2}, - [493] = {.lex_state = 128, .external_lex_state = 2}, - [494] = {.lex_state = 128, .external_lex_state = 2}, - [495] = {.lex_state = 128, .external_lex_state = 2}, - [496] = {.lex_state = 128, .external_lex_state = 2}, - [497] = {.lex_state = 128, .external_lex_state = 2}, - [498] = {.lex_state = 128, .external_lex_state = 2}, - [499] = {.lex_state = 128, .external_lex_state = 2}, - [500] = {.lex_state = 128, .external_lex_state = 2}, - [501] = {.lex_state = 128, .external_lex_state = 2}, - [502] = {.lex_state = 128, .external_lex_state = 2}, - [503] = {.lex_state = 128, .external_lex_state = 2}, - [504] = {.lex_state = 128, .external_lex_state = 2}, - [505] = {.lex_state = 128, .external_lex_state = 2}, - [506] = {.lex_state = 128, .external_lex_state = 2}, - [507] = {.lex_state = 128, .external_lex_state = 2}, - [508] = {.lex_state = 128, .external_lex_state = 2}, - [509] = {.lex_state = 128, .external_lex_state = 2}, - [510] = {.lex_state = 128, .external_lex_state = 2}, - [511] = {.lex_state = 128, .external_lex_state = 2}, - [512] = {.lex_state = 128, .external_lex_state = 2}, - [513] = {.lex_state = 128, .external_lex_state = 2}, - [514] = {.lex_state = 128, .external_lex_state = 2}, - [515] = {.lex_state = 128, .external_lex_state = 2}, - [516] = {.lex_state = 128, .external_lex_state = 2}, - [517] = {.lex_state = 128, .external_lex_state = 2}, - [518] = {.lex_state = 128, .external_lex_state = 2}, - [519] = {.lex_state = 128, .external_lex_state = 2}, - [520] = {.lex_state = 128, .external_lex_state = 2}, - [521] = {.lex_state = 128, .external_lex_state = 2}, - [522] = {.lex_state = 128, .external_lex_state = 2}, - [523] = {.lex_state = 128, .external_lex_state = 2}, - [524] = {.lex_state = 128, .external_lex_state = 2}, - [525] = {.lex_state = 128, .external_lex_state = 2}, - [526] = {.lex_state = 128, .external_lex_state = 2}, - [527] = {.lex_state = 128, .external_lex_state = 2}, - [528] = {.lex_state = 128, .external_lex_state = 2}, - [529] = {.lex_state = 128, .external_lex_state = 2}, - [530] = {.lex_state = 128, .external_lex_state = 2}, - [531] = {.lex_state = 128, .external_lex_state = 2}, - [532] = {.lex_state = 128, .external_lex_state = 2}, - [533] = {.lex_state = 128, .external_lex_state = 2}, - [534] = {.lex_state = 128, .external_lex_state = 2}, - [535] = {.lex_state = 128, .external_lex_state = 2}, - [536] = {.lex_state = 128, .external_lex_state = 2}, - [537] = {.lex_state = 128, .external_lex_state = 2}, - [538] = {.lex_state = 128, .external_lex_state = 2}, - [539] = {.lex_state = 128, .external_lex_state = 2}, - [540] = {.lex_state = 128, .external_lex_state = 2}, - [541] = {.lex_state = 128, .external_lex_state = 2}, - [542] = {.lex_state = 128, .external_lex_state = 2}, - [543] = {.lex_state = 128, .external_lex_state = 2}, - [544] = {.lex_state = 128, .external_lex_state = 2}, - [545] = {.lex_state = 128, .external_lex_state = 2}, - [546] = {.lex_state = 128, .external_lex_state = 2}, - [547] = {.lex_state = 128, .external_lex_state = 2}, - [548] = {.lex_state = 128, .external_lex_state = 2}, - [549] = {.lex_state = 128, .external_lex_state = 2}, - [550] = {.lex_state = 128, .external_lex_state = 2}, - [551] = {.lex_state = 128, .external_lex_state = 2}, - [552] = {.lex_state = 128, .external_lex_state = 2}, - [553] = {.lex_state = 128, .external_lex_state = 2}, - [554] = {.lex_state = 128, .external_lex_state = 2}, - [555] = {.lex_state = 128, .external_lex_state = 2}, - [556] = {.lex_state = 128, .external_lex_state = 2}, - [557] = {.lex_state = 128, .external_lex_state = 2}, - [558] = {.lex_state = 128, .external_lex_state = 2}, - [559] = {.lex_state = 128, .external_lex_state = 2}, - [560] = {.lex_state = 128, .external_lex_state = 2}, - [561] = {.lex_state = 128, .external_lex_state = 2}, - [562] = {.lex_state = 128, .external_lex_state = 2}, - [563] = {.lex_state = 128, .external_lex_state = 2}, - [564] = {.lex_state = 128, .external_lex_state = 2}, - [565] = {.lex_state = 128, .external_lex_state = 2}, - [566] = {.lex_state = 128, .external_lex_state = 2}, - [567] = {.lex_state = 128, .external_lex_state = 2}, - [568] = {.lex_state = 128, .external_lex_state = 2}, - [569] = {.lex_state = 128, .external_lex_state = 2}, - [570] = {.lex_state = 128, .external_lex_state = 2}, - [571] = {.lex_state = 128, .external_lex_state = 2}, - [572] = {.lex_state = 128, .external_lex_state = 2}, - [573] = {.lex_state = 128, .external_lex_state = 2}, - [574] = {.lex_state = 128, .external_lex_state = 2}, - [575] = {.lex_state = 128, .external_lex_state = 2}, - [576] = {.lex_state = 128, .external_lex_state = 2}, - [577] = {.lex_state = 128, .external_lex_state = 2}, - [578] = {.lex_state = 128, .external_lex_state = 2}, - [579] = {.lex_state = 128, .external_lex_state = 2}, - [580] = {.lex_state = 128, .external_lex_state = 2}, - [581] = {.lex_state = 128, .external_lex_state = 2}, - [582] = {.lex_state = 128, .external_lex_state = 2}, - [583] = {.lex_state = 128, .external_lex_state = 2}, - [584] = {.lex_state = 128, .external_lex_state = 2}, - [585] = {.lex_state = 128, .external_lex_state = 2}, - [586] = {.lex_state = 128, .external_lex_state = 2}, - [587] = {.lex_state = 128, .external_lex_state = 2}, - [588] = {.lex_state = 128, .external_lex_state = 2}, - [589] = {.lex_state = 128, .external_lex_state = 2}, - [590] = {.lex_state = 128, .external_lex_state = 2}, - [591] = {.lex_state = 128, .external_lex_state = 2}, - [592] = {.lex_state = 128, .external_lex_state = 2}, - [593] = {.lex_state = 128, .external_lex_state = 2}, - [594] = {.lex_state = 128, .external_lex_state = 2}, - [595] = {.lex_state = 128, .external_lex_state = 2}, - [596] = {.lex_state = 128, .external_lex_state = 2}, - [597] = {.lex_state = 128, .external_lex_state = 2}, - [598] = {.lex_state = 128, .external_lex_state = 2}, - [599] = {.lex_state = 128, .external_lex_state = 2}, - [600] = {.lex_state = 128, .external_lex_state = 2}, - [601] = {.lex_state = 128, .external_lex_state = 2}, - [602] = {.lex_state = 128, .external_lex_state = 2}, - [603] = {.lex_state = 128, .external_lex_state = 2}, - [604] = {.lex_state = 128, .external_lex_state = 2}, - [605] = {.lex_state = 128, .external_lex_state = 2}, - [606] = {.lex_state = 128, .external_lex_state = 2}, - [607] = {.lex_state = 128, .external_lex_state = 2}, - [608] = {.lex_state = 128, .external_lex_state = 2}, - [609] = {.lex_state = 128, .external_lex_state = 2}, - [610] = {.lex_state = 128, .external_lex_state = 2}, - [611] = {.lex_state = 128, .external_lex_state = 2}, - [612] = {.lex_state = 128, .external_lex_state = 2}, - [613] = {.lex_state = 128, .external_lex_state = 2}, - [614] = {.lex_state = 128, .external_lex_state = 2}, - [615] = {.lex_state = 128, .external_lex_state = 2}, - [616] = {.lex_state = 128, .external_lex_state = 2}, - [617] = {.lex_state = 128, .external_lex_state = 2}, - [618] = {.lex_state = 128, .external_lex_state = 2}, - [619] = {.lex_state = 128, .external_lex_state = 2}, - [620] = {.lex_state = 128, .external_lex_state = 2}, - [621] = {.lex_state = 128, .external_lex_state = 2}, - [622] = {.lex_state = 128, .external_lex_state = 2}, - [623] = {.lex_state = 128, .external_lex_state = 2}, - [624] = {.lex_state = 128, .external_lex_state = 2}, - [625] = {.lex_state = 128, .external_lex_state = 2}, - [626] = {.lex_state = 128, .external_lex_state = 2}, - [627] = {.lex_state = 128, .external_lex_state = 2}, - [628] = {.lex_state = 128, .external_lex_state = 2}, - [629] = {.lex_state = 128, .external_lex_state = 2}, - [630] = {.lex_state = 128, .external_lex_state = 2}, - [631] = {.lex_state = 128, .external_lex_state = 2}, - [632] = {.lex_state = 128, .external_lex_state = 2}, - [633] = {.lex_state = 128, .external_lex_state = 2}, - [634] = {.lex_state = 128, .external_lex_state = 2}, - [635] = {.lex_state = 128, .external_lex_state = 2}, - [636] = {.lex_state = 128, .external_lex_state = 2}, - [637] = {.lex_state = 128, .external_lex_state = 2}, - [638] = {.lex_state = 128, .external_lex_state = 2}, - [639] = {.lex_state = 128, .external_lex_state = 2}, - [640] = {.lex_state = 128, .external_lex_state = 2}, - [641] = {.lex_state = 128, .external_lex_state = 2}, - [642] = {.lex_state = 128, .external_lex_state = 2}, - [643] = {.lex_state = 128, .external_lex_state = 2}, - [644] = {.lex_state = 128, .external_lex_state = 2}, - [645] = {.lex_state = 128, .external_lex_state = 2}, - [646] = {.lex_state = 128, .external_lex_state = 2}, - [647] = {.lex_state = 128, .external_lex_state = 2}, - [648] = {.lex_state = 128, .external_lex_state = 2}, - [649] = {.lex_state = 128, .external_lex_state = 2}, - [650] = {.lex_state = 128, .external_lex_state = 2}, - [651] = {.lex_state = 128, .external_lex_state = 2}, - [652] = {.lex_state = 128, .external_lex_state = 2}, - [653] = {.lex_state = 128, .external_lex_state = 2}, - [654] = {.lex_state = 128, .external_lex_state = 2}, - [655] = {.lex_state = 128, .external_lex_state = 2}, - [656] = {.lex_state = 128, .external_lex_state = 2}, - [657] = {.lex_state = 128, .external_lex_state = 2}, + [204] = {.lex_state = 127, .external_lex_state = 2}, + [205] = {.lex_state = 127, .external_lex_state = 2}, + [206] = {.lex_state = 127, .external_lex_state = 2}, + [207] = {.lex_state = 127, .external_lex_state = 2}, + [208] = {.lex_state = 127, .external_lex_state = 2}, + [209] = {.lex_state = 127, .external_lex_state = 2}, + [210] = {.lex_state = 127, .external_lex_state = 2}, + [211] = {.lex_state = 127, .external_lex_state = 2}, + [212] = {.lex_state = 127, .external_lex_state = 2}, + [213] = {.lex_state = 127, .external_lex_state = 2}, + [214] = {.lex_state = 127, .external_lex_state = 2}, + [215] = {.lex_state = 127, .external_lex_state = 2}, + [216] = {.lex_state = 127, .external_lex_state = 2}, + [217] = {.lex_state = 127, .external_lex_state = 2}, + [218] = {.lex_state = 127, .external_lex_state = 2}, + [219] = {.lex_state = 127, .external_lex_state = 2}, + [220] = {.lex_state = 127, .external_lex_state = 2}, + [221] = {.lex_state = 127, .external_lex_state = 2}, + [222] = {.lex_state = 126, .external_lex_state = 4}, + [223] = {.lex_state = 126, .external_lex_state = 4}, + [224] = {.lex_state = 127, .external_lex_state = 2}, + [225] = {.lex_state = 126, .external_lex_state = 4}, + [226] = {.lex_state = 126, .external_lex_state = 4}, + [227] = {.lex_state = 127, .external_lex_state = 2}, + [228] = {.lex_state = 126, .external_lex_state = 4}, + [229] = {.lex_state = 126, .external_lex_state = 4}, + [230] = {.lex_state = 126, .external_lex_state = 4}, + [231] = {.lex_state = 126, .external_lex_state = 4}, + [232] = {.lex_state = 126, .external_lex_state = 4}, + [233] = {.lex_state = 126, .external_lex_state = 4}, + [234] = {.lex_state = 126, .external_lex_state = 4}, + [235] = {.lex_state = 126, .external_lex_state = 4}, + [236] = {.lex_state = 126, .external_lex_state = 4}, + [237] = {.lex_state = 126, .external_lex_state = 4}, + [238] = {.lex_state = 126, .external_lex_state = 4}, + [239] = {.lex_state = 126, .external_lex_state = 4}, + [240] = {.lex_state = 126, .external_lex_state = 4}, + [241] = {.lex_state = 126, .external_lex_state = 4}, + [242] = {.lex_state = 126, .external_lex_state = 4}, + [243] = {.lex_state = 127, .external_lex_state = 5}, + [244] = {.lex_state = 126, .external_lex_state = 4}, + [245] = {.lex_state = 126, .external_lex_state = 4}, + [246] = {.lex_state = 126, .external_lex_state = 4}, + [247] = {.lex_state = 126, .external_lex_state = 4}, + [248] = {.lex_state = 126, .external_lex_state = 4}, + [249] = {.lex_state = 126, .external_lex_state = 4}, + [250] = {.lex_state = 126, .external_lex_state = 4}, + [251] = {.lex_state = 126, .external_lex_state = 4}, + [252] = {.lex_state = 126, .external_lex_state = 4}, + [253] = {.lex_state = 127, .external_lex_state = 2}, + [254] = {.lex_state = 126, .external_lex_state = 4}, + [255] = {.lex_state = 127, .external_lex_state = 2}, + [256] = {.lex_state = 127, .external_lex_state = 2}, + [257] = {.lex_state = 127, .external_lex_state = 2}, + [258] = {.lex_state = 127, .external_lex_state = 2}, + [259] = {.lex_state = 127, .external_lex_state = 2}, + [260] = {.lex_state = 127, .external_lex_state = 2}, + [261] = {.lex_state = 127, .external_lex_state = 2}, + [262] = {.lex_state = 127, .external_lex_state = 2}, + [263] = {.lex_state = 127, .external_lex_state = 2}, + [264] = {.lex_state = 127, .external_lex_state = 2}, + [265] = {.lex_state = 127, .external_lex_state = 2}, + [266] = {.lex_state = 127, .external_lex_state = 2}, + [267] = {.lex_state = 127, .external_lex_state = 2}, + [268] = {.lex_state = 127, .external_lex_state = 2}, + [269] = {.lex_state = 127, .external_lex_state = 2}, + [270] = {.lex_state = 3, .external_lex_state = 3}, + [271] = {.lex_state = 127, .external_lex_state = 2}, + [272] = {.lex_state = 127, .external_lex_state = 2}, + [273] = {.lex_state = 127, .external_lex_state = 2}, + [274] = {.lex_state = 127, .external_lex_state = 2}, + [275] = {.lex_state = 127, .external_lex_state = 2}, + [276] = {.lex_state = 127, .external_lex_state = 2}, + [277] = {.lex_state = 127, .external_lex_state = 2}, + [278] = {.lex_state = 127, .external_lex_state = 2}, + [279] = {.lex_state = 127, .external_lex_state = 2}, + [280] = {.lex_state = 3, .external_lex_state = 3}, + [281] = {.lex_state = 127, .external_lex_state = 2}, + [282] = {.lex_state = 127, .external_lex_state = 2}, + [283] = {.lex_state = 3, .external_lex_state = 3}, + [284] = {.lex_state = 3, .external_lex_state = 3}, + [285] = {.lex_state = 127, .external_lex_state = 2}, + [286] = {.lex_state = 127, .external_lex_state = 2}, + [287] = {.lex_state = 127, .external_lex_state = 2}, + [288] = {.lex_state = 127, .external_lex_state = 2}, + [289] = {.lex_state = 127, .external_lex_state = 2}, + [290] = {.lex_state = 127, .external_lex_state = 2}, + [291] = {.lex_state = 127, .external_lex_state = 2}, + [292] = {.lex_state = 127, .external_lex_state = 2}, + [293] = {.lex_state = 127, .external_lex_state = 2}, + [294] = {.lex_state = 127, .external_lex_state = 2}, + [295] = {.lex_state = 127, .external_lex_state = 2}, + [296] = {.lex_state = 127, .external_lex_state = 2}, + [297] = {.lex_state = 127, .external_lex_state = 2}, + [298] = {.lex_state = 127, .external_lex_state = 2}, + [299] = {.lex_state = 127, .external_lex_state = 2}, + [300] = {.lex_state = 127, .external_lex_state = 2}, + [301] = {.lex_state = 127, .external_lex_state = 2}, + [302] = {.lex_state = 127, .external_lex_state = 2}, + [303] = {.lex_state = 127, .external_lex_state = 2}, + [304] = {.lex_state = 127, .external_lex_state = 2}, + [305] = {.lex_state = 127, .external_lex_state = 2}, + [306] = {.lex_state = 127, .external_lex_state = 2}, + [307] = {.lex_state = 127, .external_lex_state = 2}, + [308] = {.lex_state = 127, .external_lex_state = 2}, + [309] = {.lex_state = 127, .external_lex_state = 2}, + [310] = {.lex_state = 127, .external_lex_state = 5}, + [311] = {.lex_state = 127, .external_lex_state = 2}, + [312] = {.lex_state = 127, .external_lex_state = 2}, + [313] = {.lex_state = 127, .external_lex_state = 2}, + [314] = {.lex_state = 127, .external_lex_state = 2}, + [315] = {.lex_state = 127, .external_lex_state = 2}, + [316] = {.lex_state = 127, .external_lex_state = 2}, + [317] = {.lex_state = 127, .external_lex_state = 2}, + [318] = {.lex_state = 127, .external_lex_state = 2}, + [319] = {.lex_state = 127, .external_lex_state = 2}, + [320] = {.lex_state = 127, .external_lex_state = 2}, + [321] = {.lex_state = 127, .external_lex_state = 2}, + [322] = {.lex_state = 127, .external_lex_state = 2}, + [323] = {.lex_state = 127, .external_lex_state = 2}, + [324] = {.lex_state = 127, .external_lex_state = 2}, + [325] = {.lex_state = 127, .external_lex_state = 2}, + [326] = {.lex_state = 127, .external_lex_state = 2}, + [327] = {.lex_state = 127, .external_lex_state = 2}, + [328] = {.lex_state = 127, .external_lex_state = 2}, + [329] = {.lex_state = 127, .external_lex_state = 2}, + [330] = {.lex_state = 127, .external_lex_state = 2}, + [331] = {.lex_state = 127, .external_lex_state = 2}, + [332] = {.lex_state = 127, .external_lex_state = 2}, + [333] = {.lex_state = 127, .external_lex_state = 2}, + [334] = {.lex_state = 127, .external_lex_state = 2}, + [335] = {.lex_state = 127, .external_lex_state = 2}, + [336] = {.lex_state = 127, .external_lex_state = 2}, + [337] = {.lex_state = 127, .external_lex_state = 2}, + [338] = {.lex_state = 127, .external_lex_state = 2}, + [339] = {.lex_state = 127, .external_lex_state = 2}, + [340] = {.lex_state = 127, .external_lex_state = 2}, + [341] = {.lex_state = 127, .external_lex_state = 2}, + [342] = {.lex_state = 127, .external_lex_state = 2}, + [343] = {.lex_state = 127, .external_lex_state = 2}, + [344] = {.lex_state = 127, .external_lex_state = 2}, + [345] = {.lex_state = 127, .external_lex_state = 2}, + [346] = {.lex_state = 127, .external_lex_state = 2}, + [347] = {.lex_state = 127, .external_lex_state = 2}, + [348] = {.lex_state = 127, .external_lex_state = 2}, + [349] = {.lex_state = 127, .external_lex_state = 2}, + [350] = {.lex_state = 127, .external_lex_state = 2}, + [351] = {.lex_state = 127, .external_lex_state = 2}, + [352] = {.lex_state = 127, .external_lex_state = 2}, + [353] = {.lex_state = 127, .external_lex_state = 2}, + [354] = {.lex_state = 127, .external_lex_state = 2}, + [355] = {.lex_state = 127, .external_lex_state = 2}, + [356] = {.lex_state = 127, .external_lex_state = 2}, + [357] = {.lex_state = 127, .external_lex_state = 2}, + [358] = {.lex_state = 127, .external_lex_state = 2}, + [359] = {.lex_state = 127, .external_lex_state = 2}, + [360] = {.lex_state = 127, .external_lex_state = 2}, + [361] = {.lex_state = 127, .external_lex_state = 2}, + [362] = {.lex_state = 127, .external_lex_state = 2}, + [363] = {.lex_state = 127, .external_lex_state = 2}, + [364] = {.lex_state = 127, .external_lex_state = 2}, + [365] = {.lex_state = 127, .external_lex_state = 2}, + [366] = {.lex_state = 127, .external_lex_state = 2}, + [367] = {.lex_state = 127, .external_lex_state = 2}, + [368] = {.lex_state = 127, .external_lex_state = 2}, + [369] = {.lex_state = 127, .external_lex_state = 2}, + [370] = {.lex_state = 127, .external_lex_state = 2}, + [371] = {.lex_state = 127, .external_lex_state = 2}, + [372] = {.lex_state = 127, .external_lex_state = 2}, + [373] = {.lex_state = 127, .external_lex_state = 2}, + [374] = {.lex_state = 127, .external_lex_state = 2}, + [375] = {.lex_state = 127, .external_lex_state = 2}, + [376] = {.lex_state = 127, .external_lex_state = 2}, + [377] = {.lex_state = 127, .external_lex_state = 2}, + [378] = {.lex_state = 127, .external_lex_state = 2}, + [379] = {.lex_state = 127, .external_lex_state = 2}, + [380] = {.lex_state = 127, .external_lex_state = 2}, + [381] = {.lex_state = 127, .external_lex_state = 2}, + [382] = {.lex_state = 127, .external_lex_state = 2}, + [383] = {.lex_state = 127, .external_lex_state = 2}, + [384] = {.lex_state = 127, .external_lex_state = 2}, + [385] = {.lex_state = 127, .external_lex_state = 2}, + [386] = {.lex_state = 127, .external_lex_state = 2}, + [387] = {.lex_state = 127, .external_lex_state = 2}, + [388] = {.lex_state = 127, .external_lex_state = 2}, + [389] = {.lex_state = 127, .external_lex_state = 2}, + [390] = {.lex_state = 127, .external_lex_state = 2}, + [391] = {.lex_state = 127, .external_lex_state = 2}, + [392] = {.lex_state = 127, .external_lex_state = 2}, + [393] = {.lex_state = 127, .external_lex_state = 2}, + [394] = {.lex_state = 127, .external_lex_state = 2}, + [395] = {.lex_state = 127, .external_lex_state = 2}, + [396] = {.lex_state = 127, .external_lex_state = 2}, + [397] = {.lex_state = 127, .external_lex_state = 2}, + [398] = {.lex_state = 127, .external_lex_state = 2}, + [399] = {.lex_state = 127, .external_lex_state = 2}, + [400] = {.lex_state = 127, .external_lex_state = 2}, + [401] = {.lex_state = 127, .external_lex_state = 2}, + [402] = {.lex_state = 127, .external_lex_state = 2}, + [403] = {.lex_state = 127, .external_lex_state = 2}, + [404] = {.lex_state = 127, .external_lex_state = 2}, + [405] = {.lex_state = 127, .external_lex_state = 2}, + [406] = {.lex_state = 127, .external_lex_state = 2}, + [407] = {.lex_state = 127, .external_lex_state = 2}, + [408] = {.lex_state = 127, .external_lex_state = 2}, + [409] = {.lex_state = 127, .external_lex_state = 2}, + [410] = {.lex_state = 127, .external_lex_state = 2}, + [411] = {.lex_state = 127, .external_lex_state = 2}, + [412] = {.lex_state = 127, .external_lex_state = 2}, + [413] = {.lex_state = 127, .external_lex_state = 2}, + [414] = {.lex_state = 127, .external_lex_state = 2}, + [415] = {.lex_state = 127, .external_lex_state = 2}, + [416] = {.lex_state = 127, .external_lex_state = 2}, + [417] = {.lex_state = 127, .external_lex_state = 2}, + [418] = {.lex_state = 127, .external_lex_state = 2}, + [419] = {.lex_state = 127, .external_lex_state = 2}, + [420] = {.lex_state = 127, .external_lex_state = 2}, + [421] = {.lex_state = 127, .external_lex_state = 2}, + [422] = {.lex_state = 127, .external_lex_state = 2}, + [423] = {.lex_state = 127, .external_lex_state = 2}, + [424] = {.lex_state = 127, .external_lex_state = 2}, + [425] = {.lex_state = 127, .external_lex_state = 2}, + [426] = {.lex_state = 127, .external_lex_state = 2}, + [427] = {.lex_state = 127, .external_lex_state = 2}, + [428] = {.lex_state = 127, .external_lex_state = 2}, + [429] = {.lex_state = 127, .external_lex_state = 2}, + [430] = {.lex_state = 127, .external_lex_state = 2}, + [431] = {.lex_state = 127, .external_lex_state = 2}, + [432] = {.lex_state = 127, .external_lex_state = 2}, + [433] = {.lex_state = 127, .external_lex_state = 2}, + [434] = {.lex_state = 127, .external_lex_state = 2}, + [435] = {.lex_state = 127, .external_lex_state = 2}, + [436] = {.lex_state = 127, .external_lex_state = 2}, + [437] = {.lex_state = 127, .external_lex_state = 2}, + [438] = {.lex_state = 127, .external_lex_state = 2}, + [439] = {.lex_state = 127, .external_lex_state = 2}, + [440] = {.lex_state = 127, .external_lex_state = 2}, + [441] = {.lex_state = 127, .external_lex_state = 2}, + [442] = {.lex_state = 127, .external_lex_state = 2}, + [443] = {.lex_state = 127, .external_lex_state = 2}, + [444] = {.lex_state = 127, .external_lex_state = 2}, + [445] = {.lex_state = 127, .external_lex_state = 2}, + [446] = {.lex_state = 127, .external_lex_state = 2}, + [447] = {.lex_state = 127, .external_lex_state = 2}, + [448] = {.lex_state = 127, .external_lex_state = 2}, + [449] = {.lex_state = 127, .external_lex_state = 2}, + [450] = {.lex_state = 127, .external_lex_state = 2}, + [451] = {.lex_state = 127, .external_lex_state = 2}, + [452] = {.lex_state = 127, .external_lex_state = 2}, + [453] = {.lex_state = 127, .external_lex_state = 2}, + [454] = {.lex_state = 127, .external_lex_state = 2}, + [455] = {.lex_state = 127, .external_lex_state = 2}, + [456] = {.lex_state = 127, .external_lex_state = 2}, + [457] = {.lex_state = 127, .external_lex_state = 2}, + [458] = {.lex_state = 127, .external_lex_state = 2}, + [459] = {.lex_state = 127, .external_lex_state = 2}, + [460] = {.lex_state = 127, .external_lex_state = 2}, + [461] = {.lex_state = 127, .external_lex_state = 2}, + [462] = {.lex_state = 127, .external_lex_state = 2}, + [463] = {.lex_state = 127, .external_lex_state = 2}, + [464] = {.lex_state = 127, .external_lex_state = 2}, + [465] = {.lex_state = 127, .external_lex_state = 2}, + [466] = {.lex_state = 127, .external_lex_state = 2}, + [467] = {.lex_state = 127, .external_lex_state = 2}, + [468] = {.lex_state = 127, .external_lex_state = 2}, + [469] = {.lex_state = 127, .external_lex_state = 2}, + [470] = {.lex_state = 127, .external_lex_state = 2}, + [471] = {.lex_state = 127, .external_lex_state = 2}, + [472] = {.lex_state = 127, .external_lex_state = 2}, + [473] = {.lex_state = 127, .external_lex_state = 2}, + [474] = {.lex_state = 127, .external_lex_state = 2}, + [475] = {.lex_state = 127, .external_lex_state = 2}, + [476] = {.lex_state = 127, .external_lex_state = 2}, + [477] = {.lex_state = 127, .external_lex_state = 2}, + [478] = {.lex_state = 127, .external_lex_state = 2}, + [479] = {.lex_state = 127, .external_lex_state = 2}, + [480] = {.lex_state = 127, .external_lex_state = 2}, + [481] = {.lex_state = 127, .external_lex_state = 2}, + [482] = {.lex_state = 127, .external_lex_state = 2}, + [483] = {.lex_state = 127, .external_lex_state = 2}, + [484] = {.lex_state = 127, .external_lex_state = 2}, + [485] = {.lex_state = 127, .external_lex_state = 2}, + [486] = {.lex_state = 127, .external_lex_state = 2}, + [487] = {.lex_state = 127, .external_lex_state = 2}, + [488] = {.lex_state = 127, .external_lex_state = 2}, + [489] = {.lex_state = 127, .external_lex_state = 2}, + [490] = {.lex_state = 127, .external_lex_state = 2}, + [491] = {.lex_state = 127, .external_lex_state = 2}, + [492] = {.lex_state = 127, .external_lex_state = 2}, + [493] = {.lex_state = 127, .external_lex_state = 2}, + [494] = {.lex_state = 127, .external_lex_state = 2}, + [495] = {.lex_state = 127, .external_lex_state = 2}, + [496] = {.lex_state = 127, .external_lex_state = 2}, + [497] = {.lex_state = 127, .external_lex_state = 2}, + [498] = {.lex_state = 127, .external_lex_state = 2}, + [499] = {.lex_state = 127, .external_lex_state = 2}, + [500] = {.lex_state = 127, .external_lex_state = 2}, + [501] = {.lex_state = 127, .external_lex_state = 2}, + [502] = {.lex_state = 127, .external_lex_state = 2}, + [503] = {.lex_state = 127, .external_lex_state = 2}, + [504] = {.lex_state = 127, .external_lex_state = 2}, + [505] = {.lex_state = 127, .external_lex_state = 2}, + [506] = {.lex_state = 127, .external_lex_state = 2}, + [507] = {.lex_state = 127, .external_lex_state = 2}, + [508] = {.lex_state = 127, .external_lex_state = 2}, + [509] = {.lex_state = 127, .external_lex_state = 2}, + [510] = {.lex_state = 127, .external_lex_state = 2}, + [511] = {.lex_state = 127, .external_lex_state = 2}, + [512] = {.lex_state = 127, .external_lex_state = 2}, + [513] = {.lex_state = 127, .external_lex_state = 2}, + [514] = {.lex_state = 127, .external_lex_state = 2}, + [515] = {.lex_state = 127, .external_lex_state = 2}, + [516] = {.lex_state = 127, .external_lex_state = 2}, + [517] = {.lex_state = 127, .external_lex_state = 2}, + [518] = {.lex_state = 127, .external_lex_state = 2}, + [519] = {.lex_state = 127, .external_lex_state = 2}, + [520] = {.lex_state = 127, .external_lex_state = 2}, + [521] = {.lex_state = 127, .external_lex_state = 2}, + [522] = {.lex_state = 127, .external_lex_state = 2}, + [523] = {.lex_state = 127, .external_lex_state = 2}, + [524] = {.lex_state = 127, .external_lex_state = 2}, + [525] = {.lex_state = 127, .external_lex_state = 2}, + [526] = {.lex_state = 127, .external_lex_state = 2}, + [527] = {.lex_state = 127, .external_lex_state = 2}, + [528] = {.lex_state = 127, .external_lex_state = 2}, + [529] = {.lex_state = 127, .external_lex_state = 2}, + [530] = {.lex_state = 127, .external_lex_state = 2}, + [531] = {.lex_state = 127, .external_lex_state = 2}, + [532] = {.lex_state = 127, .external_lex_state = 2}, + [533] = {.lex_state = 127, .external_lex_state = 2}, + [534] = {.lex_state = 127, .external_lex_state = 2}, + [535] = {.lex_state = 127, .external_lex_state = 2}, + [536] = {.lex_state = 127, .external_lex_state = 2}, + [537] = {.lex_state = 127, .external_lex_state = 2}, + [538] = {.lex_state = 127, .external_lex_state = 2}, + [539] = {.lex_state = 127, .external_lex_state = 2}, + [540] = {.lex_state = 127, .external_lex_state = 2}, + [541] = {.lex_state = 127, .external_lex_state = 2}, + [542] = {.lex_state = 127, .external_lex_state = 2}, + [543] = {.lex_state = 127, .external_lex_state = 2}, + [544] = {.lex_state = 127, .external_lex_state = 2}, + [545] = {.lex_state = 127, .external_lex_state = 2}, + [546] = {.lex_state = 127, .external_lex_state = 2}, + [547] = {.lex_state = 127, .external_lex_state = 2}, + [548] = {.lex_state = 127, .external_lex_state = 2}, + [549] = {.lex_state = 127, .external_lex_state = 2}, + [550] = {.lex_state = 127, .external_lex_state = 2}, + [551] = {.lex_state = 127, .external_lex_state = 2}, + [552] = {.lex_state = 127, .external_lex_state = 2}, + [553] = {.lex_state = 127, .external_lex_state = 2}, + [554] = {.lex_state = 127, .external_lex_state = 2}, + [555] = {.lex_state = 127, .external_lex_state = 2}, + [556] = {.lex_state = 127, .external_lex_state = 2}, + [557] = {.lex_state = 127, .external_lex_state = 2}, + [558] = {.lex_state = 127, .external_lex_state = 2}, + [559] = {.lex_state = 127, .external_lex_state = 2}, + [560] = {.lex_state = 127, .external_lex_state = 2}, + [561] = {.lex_state = 127, .external_lex_state = 2}, + [562] = {.lex_state = 127, .external_lex_state = 2}, + [563] = {.lex_state = 127, .external_lex_state = 2}, + [564] = {.lex_state = 127, .external_lex_state = 2}, + [565] = {.lex_state = 127, .external_lex_state = 2}, + [566] = {.lex_state = 127, .external_lex_state = 2}, + [567] = {.lex_state = 127, .external_lex_state = 2}, + [568] = {.lex_state = 127, .external_lex_state = 2}, + [569] = {.lex_state = 127, .external_lex_state = 2}, + [570] = {.lex_state = 127, .external_lex_state = 2}, + [571] = {.lex_state = 127, .external_lex_state = 2}, + [572] = {.lex_state = 127, .external_lex_state = 2}, + [573] = {.lex_state = 127, .external_lex_state = 2}, + [574] = {.lex_state = 127, .external_lex_state = 2}, + [575] = {.lex_state = 127, .external_lex_state = 2}, + [576] = {.lex_state = 127, .external_lex_state = 2}, + [577] = {.lex_state = 127, .external_lex_state = 2}, + [578] = {.lex_state = 127, .external_lex_state = 2}, + [579] = {.lex_state = 127, .external_lex_state = 2}, + [580] = {.lex_state = 127, .external_lex_state = 2}, + [581] = {.lex_state = 127, .external_lex_state = 2}, + [582] = {.lex_state = 127, .external_lex_state = 2}, + [583] = {.lex_state = 127, .external_lex_state = 2}, + [584] = {.lex_state = 127, .external_lex_state = 2}, + [585] = {.lex_state = 127, .external_lex_state = 2}, + [586] = {.lex_state = 127, .external_lex_state = 2}, + [587] = {.lex_state = 127, .external_lex_state = 2}, + [588] = {.lex_state = 127, .external_lex_state = 2}, + [589] = {.lex_state = 127, .external_lex_state = 2}, + [590] = {.lex_state = 127, .external_lex_state = 2}, + [591] = {.lex_state = 127, .external_lex_state = 2}, + [592] = {.lex_state = 127, .external_lex_state = 2}, + [593] = {.lex_state = 127, .external_lex_state = 2}, + [594] = {.lex_state = 127, .external_lex_state = 2}, + [595] = {.lex_state = 127, .external_lex_state = 2}, + [596] = {.lex_state = 127, .external_lex_state = 2}, + [597] = {.lex_state = 127, .external_lex_state = 2}, + [598] = {.lex_state = 127, .external_lex_state = 2}, + [599] = {.lex_state = 127, .external_lex_state = 2}, + [600] = {.lex_state = 127, .external_lex_state = 2}, + [601] = {.lex_state = 127, .external_lex_state = 2}, + [602] = {.lex_state = 127, .external_lex_state = 2}, + [603] = {.lex_state = 127, .external_lex_state = 2}, + [604] = {.lex_state = 127, .external_lex_state = 2}, + [605] = {.lex_state = 127, .external_lex_state = 2}, + [606] = {.lex_state = 127, .external_lex_state = 2}, + [607] = {.lex_state = 127, .external_lex_state = 2}, + [608] = {.lex_state = 127, .external_lex_state = 2}, + [609] = {.lex_state = 127, .external_lex_state = 2}, + [610] = {.lex_state = 127, .external_lex_state = 2}, + [611] = {.lex_state = 127, .external_lex_state = 2}, + [612] = {.lex_state = 127, .external_lex_state = 2}, + [613] = {.lex_state = 127, .external_lex_state = 2}, + [614] = {.lex_state = 127, .external_lex_state = 2}, + [615] = {.lex_state = 127, .external_lex_state = 2}, + [616] = {.lex_state = 127, .external_lex_state = 2}, + [617] = {.lex_state = 127, .external_lex_state = 2}, + [618] = {.lex_state = 127, .external_lex_state = 2}, + [619] = {.lex_state = 127, .external_lex_state = 2}, + [620] = {.lex_state = 127, .external_lex_state = 2}, + [621] = {.lex_state = 127, .external_lex_state = 2}, + [622] = {.lex_state = 127, .external_lex_state = 2}, + [623] = {.lex_state = 127, .external_lex_state = 2}, + [624] = {.lex_state = 127, .external_lex_state = 2}, + [625] = {.lex_state = 127, .external_lex_state = 2}, + [626] = {.lex_state = 127, .external_lex_state = 2}, + [627] = {.lex_state = 127, .external_lex_state = 2}, + [628] = {.lex_state = 127, .external_lex_state = 2}, + [629] = {.lex_state = 127, .external_lex_state = 2}, + [630] = {.lex_state = 127, .external_lex_state = 2}, + [631] = {.lex_state = 127, .external_lex_state = 2}, + [632] = {.lex_state = 127, .external_lex_state = 2}, + [633] = {.lex_state = 127, .external_lex_state = 2}, + [634] = {.lex_state = 127, .external_lex_state = 2}, + [635] = {.lex_state = 127, .external_lex_state = 2}, + [636] = {.lex_state = 127, .external_lex_state = 2}, + [637] = {.lex_state = 127, .external_lex_state = 2}, + [638] = {.lex_state = 127, .external_lex_state = 2}, + [639] = {.lex_state = 127, .external_lex_state = 2}, + [640] = {.lex_state = 127, .external_lex_state = 2}, + [641] = {.lex_state = 127, .external_lex_state = 2}, + [642] = {.lex_state = 127, .external_lex_state = 2}, + [643] = {.lex_state = 127, .external_lex_state = 2}, + [644] = {.lex_state = 127, .external_lex_state = 2}, + [645] = {.lex_state = 127, .external_lex_state = 2}, + [646] = {.lex_state = 127, .external_lex_state = 2}, + [647] = {.lex_state = 127, .external_lex_state = 2}, + [648] = {.lex_state = 127, .external_lex_state = 2}, + [649] = {.lex_state = 127, .external_lex_state = 2}, + [650] = {.lex_state = 127, .external_lex_state = 2}, + [651] = {.lex_state = 127, .external_lex_state = 2}, + [652] = {.lex_state = 127, .external_lex_state = 2}, + [653] = {.lex_state = 127, .external_lex_state = 2}, + [654] = {.lex_state = 127, .external_lex_state = 2}, + [655] = {.lex_state = 127, .external_lex_state = 2}, + [656] = {.lex_state = 127, .external_lex_state = 2}, + [657] = {.lex_state = 127, .external_lex_state = 2}, [658] = {.lex_state = 3, .external_lex_state = 4}, [659] = {.lex_state = 3, .external_lex_state = 4}, [660] = {.lex_state = 3, .external_lex_state = 4}, @@ -14368,15 +14571,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [677] = {.lex_state = 2, .external_lex_state = 4}, [678] = {.lex_state = 2, .external_lex_state = 4}, [679] = {.lex_state = 2, .external_lex_state = 4}, - [680] = {.lex_state = 128, .external_lex_state = 2}, - [681] = {.lex_state = 128, .external_lex_state = 2}, + [680] = {.lex_state = 127, .external_lex_state = 2}, + [681] = {.lex_state = 2, .external_lex_state = 4}, [682] = {.lex_state = 2, .external_lex_state = 4}, - [683] = {.lex_state = 2, .external_lex_state = 4}, - [684] = {.lex_state = 128, .external_lex_state = 2}, - [685] = {.lex_state = 128, .external_lex_state = 2}, - [686] = {.lex_state = 128, .external_lex_state = 2}, - [687] = {.lex_state = 128, .external_lex_state = 2}, - [688] = {.lex_state = 128, .external_lex_state = 2}, + [683] = {.lex_state = 127, .external_lex_state = 2}, + [684] = {.lex_state = 127, .external_lex_state = 2}, + [685] = {.lex_state = 127, .external_lex_state = 2}, + [686] = {.lex_state = 127, .external_lex_state = 2}, + [687] = {.lex_state = 127, .external_lex_state = 2}, + [688] = {.lex_state = 127, .external_lex_state = 2}, [689] = {.lex_state = 2, .external_lex_state = 4}, [690] = {.lex_state = 2, .external_lex_state = 4}, [691] = {.lex_state = 2, .external_lex_state = 4}, @@ -14393,265 +14596,265 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [702] = {.lex_state = 2, .external_lex_state = 3}, [703] = {.lex_state = 2, .external_lex_state = 4}, [704] = {.lex_state = 2, .external_lex_state = 4}, - [705] = {.lex_state = 2, .external_lex_state = 4}, + [705] = {.lex_state = 2, .external_lex_state = 3}, [706] = {.lex_state = 2, .external_lex_state = 4}, [707] = {.lex_state = 2, .external_lex_state = 4}, [708] = {.lex_state = 2, .external_lex_state = 4}, [709] = {.lex_state = 2, .external_lex_state = 4}, - [710] = {.lex_state = 2, .external_lex_state = 3}, + [710] = {.lex_state = 2, .external_lex_state = 4}, [711] = {.lex_state = 3, .external_lex_state = 3}, [712] = {.lex_state = 2, .external_lex_state = 3}, - [713] = {.lex_state = 2, .external_lex_state = 3}, - [714] = {.lex_state = 3, .external_lex_state = 3}, - [715] = {.lex_state = 128, .external_lex_state = 5}, - [716] = {.lex_state = 2, .external_lex_state = 3}, + [713] = {.lex_state = 3, .external_lex_state = 3}, + [714] = {.lex_state = 2, .external_lex_state = 3}, + [715] = {.lex_state = 2, .external_lex_state = 3}, + [716] = {.lex_state = 127, .external_lex_state = 2}, [717] = {.lex_state = 2, .external_lex_state = 4}, [718] = {.lex_state = 2, .external_lex_state = 3}, - [719] = {.lex_state = 2, .external_lex_state = 4}, - [720] = {.lex_state = 2, .external_lex_state = 3}, - [721] = {.lex_state = 2, .external_lex_state = 4}, + [719] = {.lex_state = 2, .external_lex_state = 3}, + [720] = {.lex_state = 127, .external_lex_state = 5}, + [721] = {.lex_state = 2, .external_lex_state = 3}, [722] = {.lex_state = 2, .external_lex_state = 4}, [723] = {.lex_state = 2, .external_lex_state = 4}, - [724] = {.lex_state = 2, .external_lex_state = 3}, - [725] = {.lex_state = 128, .external_lex_state = 5}, + [724] = {.lex_state = 2, .external_lex_state = 4}, + [725] = {.lex_state = 2, .external_lex_state = 4}, [726] = {.lex_state = 2, .external_lex_state = 3}, - [727] = {.lex_state = 128, .external_lex_state = 2}, + [727] = {.lex_state = 127, .external_lex_state = 5}, [728] = {.lex_state = 2, .external_lex_state = 3}, - [729] = {.lex_state = 128, .external_lex_state = 5}, - [730] = {.lex_state = 128, .external_lex_state = 2}, - [731] = {.lex_state = 128, .external_lex_state = 5}, - [732] = {.lex_state = 2, .external_lex_state = 3}, - [733] = {.lex_state = 2, .external_lex_state = 3}, - [734] = {.lex_state = 2, .external_lex_state = 3}, - [735] = {.lex_state = 128, .external_lex_state = 5}, + [729] = {.lex_state = 2, .external_lex_state = 3}, + [730] = {.lex_state = 2, .external_lex_state = 3}, + [731] = {.lex_state = 127, .external_lex_state = 2}, + [732] = {.lex_state = 127, .external_lex_state = 5}, + [733] = {.lex_state = 127, .external_lex_state = 5}, + [734] = {.lex_state = 127, .external_lex_state = 2}, + [735] = {.lex_state = 127, .external_lex_state = 5}, [736] = {.lex_state = 2, .external_lex_state = 3}, - [737] = {.lex_state = 128, .external_lex_state = 5}, + [737] = {.lex_state = 127, .external_lex_state = 5}, [738] = {.lex_state = 2, .external_lex_state = 3}, - [739] = {.lex_state = 128, .external_lex_state = 5}, - [740] = {.lex_state = 128, .external_lex_state = 5}, - [741] = {.lex_state = 128, .external_lex_state = 2}, - [742] = {.lex_state = 128, .external_lex_state = 2}, + [739] = {.lex_state = 127, .external_lex_state = 5}, + [740] = {.lex_state = 127, .external_lex_state = 5}, + [741] = {.lex_state = 2, .external_lex_state = 3}, + [742] = {.lex_state = 2, .external_lex_state = 3}, [743] = {.lex_state = 2, .external_lex_state = 3}, - [744] = {.lex_state = 2, .external_lex_state = 3}, + [744] = {.lex_state = 127, .external_lex_state = 2}, [745] = {.lex_state = 2, .external_lex_state = 3}, [746] = {.lex_state = 2, .external_lex_state = 3}, [747] = {.lex_state = 2, .external_lex_state = 3}, [748] = {.lex_state = 2, .external_lex_state = 3}, [749] = {.lex_state = 2, .external_lex_state = 3}, - [750] = {.lex_state = 128, .external_lex_state = 2}, - [751] = {.lex_state = 128, .external_lex_state = 2}, - [752] = {.lex_state = 2, .external_lex_state = 3}, + [750] = {.lex_state = 2, .external_lex_state = 3}, + [751] = {.lex_state = 2, .external_lex_state = 3}, + [752] = {.lex_state = 127, .external_lex_state = 2}, [753] = {.lex_state = 2, .external_lex_state = 3}, - [754] = {.lex_state = 2, .external_lex_state = 3}, - [755] = {.lex_state = 128, .external_lex_state = 5}, - [756] = {.lex_state = 128, .external_lex_state = 5}, - [757] = {.lex_state = 128, .external_lex_state = 2}, - [758] = {.lex_state = 128, .external_lex_state = 5}, - [759] = {.lex_state = 128, .external_lex_state = 2}, - [760] = {.lex_state = 9, .external_lex_state = 2}, - [761] = {.lex_state = 9, .external_lex_state = 2}, - [762] = {.lex_state = 9, .external_lex_state = 2}, - [763] = {.lex_state = 9, .external_lex_state = 2}, - [764] = {.lex_state = 128, .external_lex_state = 5}, - [765] = {.lex_state = 128, .external_lex_state = 5}, - [766] = {.lex_state = 128, .external_lex_state = 5}, - [767] = {.lex_state = 128, .external_lex_state = 5}, - [768] = {.lex_state = 128, .external_lex_state = 2}, - [769] = {.lex_state = 128, .external_lex_state = 2}, - [770] = {.lex_state = 128, .external_lex_state = 5}, - [771] = {.lex_state = 128, .external_lex_state = 5}, - [772] = {.lex_state = 128, .external_lex_state = 5}, - [773] = {.lex_state = 128, .external_lex_state = 5}, - [774] = {.lex_state = 128, .external_lex_state = 5}, - [775] = {.lex_state = 128, .external_lex_state = 2}, - [776] = {.lex_state = 128, .external_lex_state = 5}, - [777] = {.lex_state = 128, .external_lex_state = 5}, - [778] = {.lex_state = 128, .external_lex_state = 2}, - [779] = {.lex_state = 128, .external_lex_state = 2}, - [780] = {.lex_state = 128, .external_lex_state = 5}, - [781] = {.lex_state = 128, .external_lex_state = 2}, - [782] = {.lex_state = 9, .external_lex_state = 2}, - [783] = {.lex_state = 128, .external_lex_state = 2}, - [784] = {.lex_state = 9, .external_lex_state = 2}, - [785] = {.lex_state = 128, .external_lex_state = 2}, - [786] = {.lex_state = 128, .external_lex_state = 2}, - [787] = {.lex_state = 128, .external_lex_state = 2}, - [788] = {.lex_state = 128, .external_lex_state = 2}, - [789] = {.lex_state = 128, .external_lex_state = 2}, - [790] = {.lex_state = 128, .external_lex_state = 2}, - [791] = {.lex_state = 128, .external_lex_state = 2}, - [792] = {.lex_state = 128, .external_lex_state = 2}, - [793] = {.lex_state = 128, .external_lex_state = 2}, + [754] = {.lex_state = 127, .external_lex_state = 2}, + [755] = {.lex_state = 127, .external_lex_state = 5}, + [756] = {.lex_state = 127, .external_lex_state = 5}, + [757] = {.lex_state = 9, .external_lex_state = 2}, + [758] = {.lex_state = 9, .external_lex_state = 2}, + [759] = {.lex_state = 127, .external_lex_state = 2}, + [760] = {.lex_state = 127, .external_lex_state = 2}, + [761] = {.lex_state = 127, .external_lex_state = 5}, + [762] = {.lex_state = 127, .external_lex_state = 5}, + [763] = {.lex_state = 127, .external_lex_state = 5}, + [764] = {.lex_state = 127, .external_lex_state = 5}, + [765] = {.lex_state = 127, .external_lex_state = 2}, + [766] = {.lex_state = 9, .external_lex_state = 2}, + [767] = {.lex_state = 127, .external_lex_state = 2}, + [768] = {.lex_state = 127, .external_lex_state = 5}, + [769] = {.lex_state = 127, .external_lex_state = 2}, + [770] = {.lex_state = 127, .external_lex_state = 5}, + [771] = {.lex_state = 127, .external_lex_state = 2}, + [772] = {.lex_state = 127, .external_lex_state = 5}, + [773] = {.lex_state = 127, .external_lex_state = 5}, + [774] = {.lex_state = 9, .external_lex_state = 2}, + [775] = {.lex_state = 127, .external_lex_state = 5}, + [776] = {.lex_state = 127, .external_lex_state = 5}, + [777] = {.lex_state = 127, .external_lex_state = 2}, + [778] = {.lex_state = 127, .external_lex_state = 5}, + [779] = {.lex_state = 9, .external_lex_state = 2}, + [780] = {.lex_state = 127, .external_lex_state = 5}, + [781] = {.lex_state = 127, .external_lex_state = 5}, + [782] = {.lex_state = 127, .external_lex_state = 2}, + [783] = {.lex_state = 127, .external_lex_state = 2}, + [784] = {.lex_state = 127, .external_lex_state = 2}, + [785] = {.lex_state = 127, .external_lex_state = 2}, + [786] = {.lex_state = 127, .external_lex_state = 2}, + [787] = {.lex_state = 127, .external_lex_state = 2}, + [788] = {.lex_state = 127, .external_lex_state = 2}, + [789] = {.lex_state = 127, .external_lex_state = 2}, + [790] = {.lex_state = 127, .external_lex_state = 2}, + [791] = {.lex_state = 127, .external_lex_state = 2}, + [792] = {.lex_state = 127, .external_lex_state = 2}, + [793] = {.lex_state = 127, .external_lex_state = 2}, [794] = {.lex_state = 9, .external_lex_state = 2}, [795] = {.lex_state = 9, .external_lex_state = 2}, - [796] = {.lex_state = 128, .external_lex_state = 2}, - [797] = {.lex_state = 128, .external_lex_state = 2}, - [798] = {.lex_state = 128, .external_lex_state = 2}, - [799] = {.lex_state = 128, .external_lex_state = 2}, + [796] = {.lex_state = 127, .external_lex_state = 2}, + [797] = {.lex_state = 127, .external_lex_state = 2}, + [798] = {.lex_state = 127, .external_lex_state = 2}, + [799] = {.lex_state = 127, .external_lex_state = 2}, [800] = {.lex_state = 9, .external_lex_state = 2}, [801] = {.lex_state = 9, .external_lex_state = 2}, - [802] = {.lex_state = 128, .external_lex_state = 2}, - [803] = {.lex_state = 128, .external_lex_state = 2}, - [804] = {.lex_state = 9, .external_lex_state = 2}, + [802] = {.lex_state = 127, .external_lex_state = 2}, + [803] = {.lex_state = 127, .external_lex_state = 2}, + [804] = {.lex_state = 127, .external_lex_state = 2}, [805] = {.lex_state = 9, .external_lex_state = 2}, - [806] = {.lex_state = 128, .external_lex_state = 2}, - [807] = {.lex_state = 128, .external_lex_state = 2}, - [808] = {.lex_state = 128, .external_lex_state = 2}, - [809] = {.lex_state = 128, .external_lex_state = 2}, - [810] = {.lex_state = 128, .external_lex_state = 2}, - [811] = {.lex_state = 128, .external_lex_state = 2}, - [812] = {.lex_state = 128, .external_lex_state = 2}, - [813] = {.lex_state = 128, .external_lex_state = 2}, - [814] = {.lex_state = 128, .external_lex_state = 2}, - [815] = {.lex_state = 128, .external_lex_state = 2}, - [816] = {.lex_state = 128, .external_lex_state = 2}, - [817] = {.lex_state = 128, .external_lex_state = 2}, - [818] = {.lex_state = 128, .external_lex_state = 2}, - [819] = {.lex_state = 128, .external_lex_state = 2}, - [820] = {.lex_state = 128, .external_lex_state = 2}, - [821] = {.lex_state = 128, .external_lex_state = 2}, - [822] = {.lex_state = 128, .external_lex_state = 2}, - [823] = {.lex_state = 128, .external_lex_state = 2}, - [824] = {.lex_state = 128, .external_lex_state = 2}, - [825] = {.lex_state = 128, .external_lex_state = 2}, - [826] = {.lex_state = 128, .external_lex_state = 2}, - [827] = {.lex_state = 128, .external_lex_state = 2}, - [828] = {.lex_state = 128, .external_lex_state = 2}, - [829] = {.lex_state = 128, .external_lex_state = 2}, - [830] = {.lex_state = 128, .external_lex_state = 2}, - [831] = {.lex_state = 128, .external_lex_state = 2}, - [832] = {.lex_state = 128, .external_lex_state = 2}, - [833] = {.lex_state = 128, .external_lex_state = 2}, - [834] = {.lex_state = 9, .external_lex_state = 2}, - [835] = {.lex_state = 128, .external_lex_state = 2}, - [836] = {.lex_state = 128, .external_lex_state = 2}, - [837] = {.lex_state = 128, .external_lex_state = 2}, - [838] = {.lex_state = 128, .external_lex_state = 2}, - [839] = {.lex_state = 128, .external_lex_state = 2}, - [840] = {.lex_state = 128, .external_lex_state = 2}, - [841] = {.lex_state = 128, .external_lex_state = 2}, - [842] = {.lex_state = 128, .external_lex_state = 2}, - [843] = {.lex_state = 128, .external_lex_state = 2}, - [844] = {.lex_state = 128, .external_lex_state = 2}, - [845] = {.lex_state = 128, .external_lex_state = 2}, - [846] = {.lex_state = 128, .external_lex_state = 2}, - [847] = {.lex_state = 128, .external_lex_state = 2}, - [848] = {.lex_state = 128, .external_lex_state = 2}, - [849] = {.lex_state = 128, .external_lex_state = 2}, - [850] = {.lex_state = 128, .external_lex_state = 2}, - [851] = {.lex_state = 128, .external_lex_state = 2}, - [852] = {.lex_state = 128, .external_lex_state = 2}, - [853] = {.lex_state = 128, .external_lex_state = 2}, - [854] = {.lex_state = 128, .external_lex_state = 2}, - [855] = {.lex_state = 128, .external_lex_state = 2}, - [856] = {.lex_state = 128, .external_lex_state = 2}, - [857] = {.lex_state = 128, .external_lex_state = 2}, - [858] = {.lex_state = 128, .external_lex_state = 2}, - [859] = {.lex_state = 128, .external_lex_state = 2}, - [860] = {.lex_state = 128, .external_lex_state = 2}, - [861] = {.lex_state = 128, .external_lex_state = 2}, - [862] = {.lex_state = 128, .external_lex_state = 2}, - [863] = {.lex_state = 128, .external_lex_state = 2}, - [864] = {.lex_state = 9, .external_lex_state = 2}, - [865] = {.lex_state = 128, .external_lex_state = 2}, - [866] = {.lex_state = 128, .external_lex_state = 2}, - [867] = {.lex_state = 128, .external_lex_state = 2}, - [868] = {.lex_state = 128, .external_lex_state = 2}, - [869] = {.lex_state = 128, .external_lex_state = 2}, - [870] = {.lex_state = 128, .external_lex_state = 2}, - [871] = {.lex_state = 128, .external_lex_state = 2}, - [872] = {.lex_state = 128, .external_lex_state = 2}, - [873] = {.lex_state = 128, .external_lex_state = 2}, - [874] = {.lex_state = 128, .external_lex_state = 2}, - [875] = {.lex_state = 128, .external_lex_state = 2}, - [876] = {.lex_state = 128, .external_lex_state = 2}, - [877] = {.lex_state = 128, .external_lex_state = 2}, - [878] = {.lex_state = 128, .external_lex_state = 2}, - [879] = {.lex_state = 128, .external_lex_state = 2}, - [880] = {.lex_state = 128, .external_lex_state = 2}, - [881] = {.lex_state = 128, .external_lex_state = 2}, - [882] = {.lex_state = 128, .external_lex_state = 2}, - [883] = {.lex_state = 128, .external_lex_state = 2}, - [884] = {.lex_state = 128, .external_lex_state = 2}, - [885] = {.lex_state = 128, .external_lex_state = 2}, - [886] = {.lex_state = 128, .external_lex_state = 2}, - [887] = {.lex_state = 128, .external_lex_state = 2}, - [888] = {.lex_state = 128, .external_lex_state = 2}, - [889] = {.lex_state = 128, .external_lex_state = 2}, - [890] = {.lex_state = 128, .external_lex_state = 2}, - [891] = {.lex_state = 128, .external_lex_state = 2}, - [892] = {.lex_state = 128, .external_lex_state = 2}, - [893] = {.lex_state = 128, .external_lex_state = 2}, - [894] = {.lex_state = 128, .external_lex_state = 2}, - [895] = {.lex_state = 128, .external_lex_state = 2}, - [896] = {.lex_state = 128, .external_lex_state = 2}, - [897] = {.lex_state = 128, .external_lex_state = 2}, - [898] = {.lex_state = 128, .external_lex_state = 2}, - [899] = {.lex_state = 128, .external_lex_state = 2}, - [900] = {.lex_state = 128, .external_lex_state = 2}, - [901] = {.lex_state = 128, .external_lex_state = 2}, - [902] = {.lex_state = 128, .external_lex_state = 2}, - [903] = {.lex_state = 128, .external_lex_state = 2}, - [904] = {.lex_state = 128, .external_lex_state = 2}, - [905] = {.lex_state = 128, .external_lex_state = 2}, - [906] = {.lex_state = 9, .external_lex_state = 2}, - [907] = {.lex_state = 128, .external_lex_state = 2}, - [908] = {.lex_state = 128, .external_lex_state = 2}, - [909] = {.lex_state = 128, .external_lex_state = 2}, - [910] = {.lex_state = 128, .external_lex_state = 2}, - [911] = {.lex_state = 128, .external_lex_state = 2}, - [912] = {.lex_state = 128, .external_lex_state = 2}, - [913] = {.lex_state = 128, .external_lex_state = 2}, - [914] = {.lex_state = 128, .external_lex_state = 2}, - [915] = {.lex_state = 128, .external_lex_state = 2}, + [806] = {.lex_state = 9, .external_lex_state = 2}, + [807] = {.lex_state = 127, .external_lex_state = 2}, + [808] = {.lex_state = 127, .external_lex_state = 2}, + [809] = {.lex_state = 127, .external_lex_state = 2}, + [810] = {.lex_state = 127, .external_lex_state = 2}, + [811] = {.lex_state = 127, .external_lex_state = 2}, + [812] = {.lex_state = 127, .external_lex_state = 2}, + [813] = {.lex_state = 127, .external_lex_state = 2}, + [814] = {.lex_state = 9, .external_lex_state = 2}, + [815] = {.lex_state = 127, .external_lex_state = 2}, + [816] = {.lex_state = 127, .external_lex_state = 2}, + [817] = {.lex_state = 127, .external_lex_state = 2}, + [818] = {.lex_state = 127, .external_lex_state = 2}, + [819] = {.lex_state = 127, .external_lex_state = 2}, + [820] = {.lex_state = 127, .external_lex_state = 2}, + [821] = {.lex_state = 127, .external_lex_state = 2}, + [822] = {.lex_state = 127, .external_lex_state = 2}, + [823] = {.lex_state = 127, .external_lex_state = 2}, + [824] = {.lex_state = 127, .external_lex_state = 2}, + [825] = {.lex_state = 127, .external_lex_state = 2}, + [826] = {.lex_state = 127, .external_lex_state = 2}, + [827] = {.lex_state = 127, .external_lex_state = 2}, + [828] = {.lex_state = 127, .external_lex_state = 2}, + [829] = {.lex_state = 127, .external_lex_state = 2}, + [830] = {.lex_state = 127, .external_lex_state = 2}, + [831] = {.lex_state = 127, .external_lex_state = 2}, + [832] = {.lex_state = 127, .external_lex_state = 2}, + [833] = {.lex_state = 127, .external_lex_state = 2}, + [834] = {.lex_state = 127, .external_lex_state = 2}, + [835] = {.lex_state = 127, .external_lex_state = 2}, + [836] = {.lex_state = 127, .external_lex_state = 2}, + [837] = {.lex_state = 127, .external_lex_state = 2}, + [838] = {.lex_state = 127, .external_lex_state = 2}, + [839] = {.lex_state = 127, .external_lex_state = 2}, + [840] = {.lex_state = 127, .external_lex_state = 2}, + [841] = {.lex_state = 127, .external_lex_state = 2}, + [842] = {.lex_state = 127, .external_lex_state = 2}, + [843] = {.lex_state = 127, .external_lex_state = 2}, + [844] = {.lex_state = 127, .external_lex_state = 2}, + [845] = {.lex_state = 127, .external_lex_state = 2}, + [846] = {.lex_state = 127, .external_lex_state = 2}, + [847] = {.lex_state = 127, .external_lex_state = 2}, + [848] = {.lex_state = 127, .external_lex_state = 2}, + [849] = {.lex_state = 127, .external_lex_state = 2}, + [850] = {.lex_state = 127, .external_lex_state = 2}, + [851] = {.lex_state = 9, .external_lex_state = 2}, + [852] = {.lex_state = 127, .external_lex_state = 2}, + [853] = {.lex_state = 127, .external_lex_state = 2}, + [854] = {.lex_state = 127, .external_lex_state = 2}, + [855] = {.lex_state = 127, .external_lex_state = 2}, + [856] = {.lex_state = 127, .external_lex_state = 2}, + [857] = {.lex_state = 127, .external_lex_state = 2}, + [858] = {.lex_state = 127, .external_lex_state = 2}, + [859] = {.lex_state = 127, .external_lex_state = 2}, + [860] = {.lex_state = 127, .external_lex_state = 2}, + [861] = {.lex_state = 127, .external_lex_state = 2}, + [862] = {.lex_state = 127, .external_lex_state = 2}, + [863] = {.lex_state = 127, .external_lex_state = 2}, + [864] = {.lex_state = 127, .external_lex_state = 2}, + [865] = {.lex_state = 127, .external_lex_state = 2}, + [866] = {.lex_state = 127, .external_lex_state = 2}, + [867] = {.lex_state = 127, .external_lex_state = 2}, + [868] = {.lex_state = 127, .external_lex_state = 2}, + [869] = {.lex_state = 127, .external_lex_state = 2}, + [870] = {.lex_state = 127, .external_lex_state = 2}, + [871] = {.lex_state = 127, .external_lex_state = 2}, + [872] = {.lex_state = 127, .external_lex_state = 2}, + [873] = {.lex_state = 127, .external_lex_state = 2}, + [874] = {.lex_state = 127, .external_lex_state = 2}, + [875] = {.lex_state = 127, .external_lex_state = 2}, + [876] = {.lex_state = 127, .external_lex_state = 2}, + [877] = {.lex_state = 127, .external_lex_state = 2}, + [878] = {.lex_state = 127, .external_lex_state = 2}, + [879] = {.lex_state = 127, .external_lex_state = 2}, + [880] = {.lex_state = 127, .external_lex_state = 2}, + [881] = {.lex_state = 127, .external_lex_state = 2}, + [882] = {.lex_state = 127, .external_lex_state = 2}, + [883] = {.lex_state = 127, .external_lex_state = 2}, + [884] = {.lex_state = 127, .external_lex_state = 2}, + [885] = {.lex_state = 127, .external_lex_state = 2}, + [886] = {.lex_state = 127, .external_lex_state = 2}, + [887] = {.lex_state = 127, .external_lex_state = 2}, + [888] = {.lex_state = 127, .external_lex_state = 2}, + [889] = {.lex_state = 127, .external_lex_state = 2}, + [890] = {.lex_state = 127, .external_lex_state = 2}, + [891] = {.lex_state = 127, .external_lex_state = 2}, + [892] = {.lex_state = 127, .external_lex_state = 2}, + [893] = {.lex_state = 127, .external_lex_state = 2}, + [894] = {.lex_state = 127, .external_lex_state = 2}, + [895] = {.lex_state = 127, .external_lex_state = 2}, + [896] = {.lex_state = 127, .external_lex_state = 2}, + [897] = {.lex_state = 127, .external_lex_state = 2}, + [898] = {.lex_state = 127, .external_lex_state = 2}, + [899] = {.lex_state = 127, .external_lex_state = 2}, + [900] = {.lex_state = 127, .external_lex_state = 2}, + [901] = {.lex_state = 127, .external_lex_state = 2}, + [902] = {.lex_state = 127, .external_lex_state = 2}, + [903] = {.lex_state = 127, .external_lex_state = 2}, + [904] = {.lex_state = 127, .external_lex_state = 2}, + [905] = {.lex_state = 127, .external_lex_state = 2}, + [906] = {.lex_state = 127, .external_lex_state = 2}, + [907] = {.lex_state = 127, .external_lex_state = 2}, + [908] = {.lex_state = 127, .external_lex_state = 2}, + [909] = {.lex_state = 9, .external_lex_state = 2}, + [910] = {.lex_state = 127, .external_lex_state = 2}, + [911] = {.lex_state = 9, .external_lex_state = 2}, + [912] = {.lex_state = 127, .external_lex_state = 2}, + [913] = {.lex_state = 127, .external_lex_state = 2}, + [914] = {.lex_state = 127, .external_lex_state = 2}, + [915] = {.lex_state = 127, .external_lex_state = 2}, [916] = {.lex_state = 9, .external_lex_state = 2}, - [917] = {.lex_state = 128, .external_lex_state = 2}, + [917] = {.lex_state = 9, .external_lex_state = 2}, [918] = {.lex_state = 9, .external_lex_state = 2}, - [919] = {.lex_state = 9, .external_lex_state = 2}, - [920] = {.lex_state = 128, .external_lex_state = 2}, + [919] = {.lex_state = 127, .external_lex_state = 2}, + [920] = {.lex_state = 9, .external_lex_state = 2}, [921] = {.lex_state = 9, .external_lex_state = 2}, [922] = {.lex_state = 9, .external_lex_state = 2}, [923] = {.lex_state = 9, .external_lex_state = 2}, - [924] = {.lex_state = 128, .external_lex_state = 2}, - [925] = {.lex_state = 128, .external_lex_state = 2}, - [926] = {.lex_state = 128, .external_lex_state = 2}, - [927] = {.lex_state = 9, .external_lex_state = 2}, - [928] = {.lex_state = 128, .external_lex_state = 2}, - [929] = {.lex_state = 128, .external_lex_state = 2}, - [930] = {.lex_state = 128, .external_lex_state = 2}, - [931] = {.lex_state = 128, .external_lex_state = 2}, - [932] = {.lex_state = 9, .external_lex_state = 2}, - [933] = {.lex_state = 128, .external_lex_state = 2}, - [934] = {.lex_state = 128, .external_lex_state = 2}, - [935] = {.lex_state = 9, .external_lex_state = 2}, - [936] = {.lex_state = 128, .external_lex_state = 2}, - [937] = {.lex_state = 9, .external_lex_state = 2}, + [924] = {.lex_state = 9, .external_lex_state = 2}, + [925] = {.lex_state = 9, .external_lex_state = 2}, + [926] = {.lex_state = 9, .external_lex_state = 2}, + [927] = {.lex_state = 127, .external_lex_state = 2}, + [928] = {.lex_state = 9, .external_lex_state = 2}, + [929] = {.lex_state = 127, .external_lex_state = 2}, + [930] = {.lex_state = 127, .external_lex_state = 2}, + [931] = {.lex_state = 127, .external_lex_state = 2}, + [932] = {.lex_state = 127, .external_lex_state = 2}, + [933] = {.lex_state = 9, .external_lex_state = 2}, + [934] = {.lex_state = 127, .external_lex_state = 2}, + [935] = {.lex_state = 127, .external_lex_state = 2}, + [936] = {.lex_state = 127, .external_lex_state = 2}, + [937] = {.lex_state = 127, .external_lex_state = 2}, [938] = {.lex_state = 9, .external_lex_state = 2}, - [939] = {.lex_state = 9, .external_lex_state = 2}, - [940] = {.lex_state = 9, .external_lex_state = 2}, + [939] = {.lex_state = 127, .external_lex_state = 2}, + [940] = {.lex_state = 127, .external_lex_state = 2}, [941] = {.lex_state = 9, .external_lex_state = 2}, [942] = {.lex_state = 9, .external_lex_state = 2}, [943] = {.lex_state = 9, .external_lex_state = 2}, - [944] = {.lex_state = 128, .external_lex_state = 2}, + [944] = {.lex_state = 127, .external_lex_state = 2}, [945] = {.lex_state = 9, .external_lex_state = 2}, - [946] = {.lex_state = 128, .external_lex_state = 2}, - [947] = {.lex_state = 9, .external_lex_state = 2}, - [948] = {.lex_state = 7, .external_lex_state = 2}, + [946] = {.lex_state = 9, .external_lex_state = 2}, + [947] = {.lex_state = 127, .external_lex_state = 2}, + [948] = {.lex_state = 9, .external_lex_state = 2}, [949] = {.lex_state = 9, .external_lex_state = 2}, [950] = {.lex_state = 9, .external_lex_state = 2}, [951] = {.lex_state = 9, .external_lex_state = 2}, - [952] = {.lex_state = 9, .external_lex_state = 2}, + [952] = {.lex_state = 7, .external_lex_state = 2}, [953] = {.lex_state = 9, .external_lex_state = 2}, [954] = {.lex_state = 9, .external_lex_state = 2}, [955] = {.lex_state = 9, .external_lex_state = 2}, [956] = {.lex_state = 9, .external_lex_state = 2}, [957] = {.lex_state = 7, .external_lex_state = 2}, - [958] = {.lex_state = 7, .external_lex_state = 2}, - [959] = {.lex_state = 9, .external_lex_state = 2}, - [960] = {.lex_state = 11, .external_lex_state = 2}, + [958] = {.lex_state = 9, .external_lex_state = 2}, + [959] = {.lex_state = 7, .external_lex_state = 2}, + [960] = {.lex_state = 9, .external_lex_state = 2}, [961] = {.lex_state = 9, .external_lex_state = 2}, [962] = {.lex_state = 9, .external_lex_state = 2}, - [963] = {.lex_state = 9, .external_lex_state = 2}, + [963] = {.lex_state = 11, .external_lex_state = 2}, [964] = {.lex_state = 9, .external_lex_state = 2}, [965] = {.lex_state = 9, .external_lex_state = 2}, [966] = {.lex_state = 9, .external_lex_state = 2}, @@ -14825,10 +15028,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1134] = {.lex_state = 10, .external_lex_state = 2}, [1135] = {.lex_state = 10, .external_lex_state = 2}, [1136] = {.lex_state = 10, .external_lex_state = 2}, - [1137] = {.lex_state = 2, .external_lex_state = 4}, + [1137] = {.lex_state = 3, .external_lex_state = 4}, [1138] = {.lex_state = 2, .external_lex_state = 4}, [1139] = {.lex_state = 2, .external_lex_state = 4}, - [1140] = {.lex_state = 3, .external_lex_state = 4}, + [1140] = {.lex_state = 2, .external_lex_state = 4}, [1141] = {.lex_state = 3, .external_lex_state = 4}, [1142] = {.lex_state = 2, .external_lex_state = 4}, [1143] = {.lex_state = 3, .external_lex_state = 4}, @@ -14842,227 +15045,227 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1151] = {.lex_state = 10, .external_lex_state = 2}, [1152] = {.lex_state = 10, .external_lex_state = 2}, [1153] = {.lex_state = 2, .external_lex_state = 4}, - [1154] = {.lex_state = 3, .external_lex_state = 4}, + [1154] = {.lex_state = 2, .external_lex_state = 4}, [1155] = {.lex_state = 2, .external_lex_state = 4}, - [1156] = {.lex_state = 2, .external_lex_state = 3}, - [1157] = {.lex_state = 2, .external_lex_state = 4}, - [1158] = {.lex_state = 2, .external_lex_state = 4}, + [1156] = {.lex_state = 2, .external_lex_state = 4}, + [1157] = {.lex_state = 3, .external_lex_state = 4}, + [1158] = {.lex_state = 2, .external_lex_state = 3}, [1159] = {.lex_state = 2, .external_lex_state = 4}, [1160] = {.lex_state = 2, .external_lex_state = 4}, [1161] = {.lex_state = 2, .external_lex_state = 4}, [1162] = {.lex_state = 2, .external_lex_state = 4}, - [1163] = {.lex_state = 2, .external_lex_state = 4}, + [1163] = {.lex_state = 3, .external_lex_state = 4}, [1164] = {.lex_state = 3, .external_lex_state = 4}, - [1165] = {.lex_state = 3, .external_lex_state = 4}, + [1165] = {.lex_state = 2, .external_lex_state = 4}, [1166] = {.lex_state = 2, .external_lex_state = 4}, - [1167] = {.lex_state = 2, .external_lex_state = 4}, - [1168] = {.lex_state = 2, .external_lex_state = 3}, + [1167] = {.lex_state = 2, .external_lex_state = 3}, + [1168] = {.lex_state = 2, .external_lex_state = 4}, [1169] = {.lex_state = 3, .external_lex_state = 3}, [1170] = {.lex_state = 2, .external_lex_state = 4}, [1171] = {.lex_state = 3, .external_lex_state = 3}, - [1172] = {.lex_state = 3, .external_lex_state = 3}, + [1172] = {.lex_state = 2, .external_lex_state = 3}, [1173] = {.lex_state = 3, .external_lex_state = 3}, - [1174] = {.lex_state = 3, .external_lex_state = 3}, - [1175] = {.lex_state = 2, .external_lex_state = 3}, + [1174] = {.lex_state = 2, .external_lex_state = 3}, + [1175] = {.lex_state = 3, .external_lex_state = 3}, [1176] = {.lex_state = 2, .external_lex_state = 4}, [1177] = {.lex_state = 3, .external_lex_state = 3}, [1178] = {.lex_state = 3, .external_lex_state = 3}, [1179] = {.lex_state = 3, .external_lex_state = 3}, [1180] = {.lex_state = 3, .external_lex_state = 3}, [1181] = {.lex_state = 3, .external_lex_state = 3}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, + [1182] = {.lex_state = 3, .external_lex_state = 3}, [1183] = {.lex_state = 3, .external_lex_state = 3}, [1184] = {.lex_state = 3, .external_lex_state = 3}, - [1185] = {.lex_state = 3, .external_lex_state = 3}, - [1186] = {.lex_state = 2, .external_lex_state = 3}, + [1185] = {.lex_state = 2, .external_lex_state = 4}, + [1186] = {.lex_state = 3, .external_lex_state = 3}, [1187] = {.lex_state = 2, .external_lex_state = 4}, [1188] = {.lex_state = 2, .external_lex_state = 4}, - [1189] = {.lex_state = 3, .external_lex_state = 4}, - [1190] = {.lex_state = 2, .external_lex_state = 4}, + [1189] = {.lex_state = 2, .external_lex_state = 4}, + [1190] = {.lex_state = 2, .external_lex_state = 3}, [1191] = {.lex_state = 2, .external_lex_state = 4}, - [1192] = {.lex_state = 2, .external_lex_state = 4}, + [1192] = {.lex_state = 3, .external_lex_state = 4}, [1193] = {.lex_state = 2, .external_lex_state = 4}, - [1194] = {.lex_state = 3, .external_lex_state = 4}, - [1195] = {.lex_state = 3, .external_lex_state = 3}, + [1194] = {.lex_state = 2, .external_lex_state = 4}, + [1195] = {.lex_state = 2, .external_lex_state = 4}, [1196] = {.lex_state = 2, .external_lex_state = 4}, - [1197] = {.lex_state = 2, .external_lex_state = 4}, - [1198] = {.lex_state = 2, .external_lex_state = 3}, - [1199] = {.lex_state = 2, .external_lex_state = 4}, + [1197] = {.lex_state = 2, .external_lex_state = 3}, + [1198] = {.lex_state = 2, .external_lex_state = 4}, + [1199] = {.lex_state = 2, .external_lex_state = 3}, [1200] = {.lex_state = 2, .external_lex_state = 4}, [1201] = {.lex_state = 2, .external_lex_state = 3}, - [1202] = {.lex_state = 2, .external_lex_state = 3}, - [1203] = {.lex_state = 2, .external_lex_state = 4}, - [1204] = {.lex_state = 2, .external_lex_state = 3}, - [1205] = {.lex_state = 2, .external_lex_state = 4}, - [1206] = {.lex_state = 2, .external_lex_state = 4}, - [1207] = {.lex_state = 2, .external_lex_state = 3}, - [1208] = {.lex_state = 3, .external_lex_state = 3}, + [1202] = {.lex_state = 2, .external_lex_state = 4}, + [1203] = {.lex_state = 3, .external_lex_state = 3}, + [1204] = {.lex_state = 3, .external_lex_state = 4}, + [1205] = {.lex_state = 2, .external_lex_state = 3}, + [1206] = {.lex_state = 2, .external_lex_state = 3}, + [1207] = {.lex_state = 3, .external_lex_state = 3}, + [1208] = {.lex_state = 2, .external_lex_state = 4}, [1209] = {.lex_state = 2, .external_lex_state = 3}, [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 4}, [1212] = {.lex_state = 2, .external_lex_state = 3}, - [1213] = {.lex_state = 2, .external_lex_state = 4}, + [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, - [1215] = {.lex_state = 2, .external_lex_state = 4}, + [1215] = {.lex_state = 2, .external_lex_state = 3}, [1216] = {.lex_state = 2, .external_lex_state = 3}, - [1217] = {.lex_state = 128, .external_lex_state = 2}, - [1218] = {.lex_state = 2, .external_lex_state = 3}, - [1219] = {.lex_state = 2, .external_lex_state = 4}, + [1217] = {.lex_state = 127, .external_lex_state = 2}, + [1218] = {.lex_state = 2, .external_lex_state = 4}, + [1219] = {.lex_state = 2, .external_lex_state = 3}, [1220] = {.lex_state = 2, .external_lex_state = 3}, - [1221] = {.lex_state = 2, .external_lex_state = 3}, + [1221] = {.lex_state = 2, .external_lex_state = 4}, [1222] = {.lex_state = 2, .external_lex_state = 3}, [1223] = {.lex_state = 2, .external_lex_state = 3}, [1224] = {.lex_state = 2, .external_lex_state = 3}, [1225] = {.lex_state = 2, .external_lex_state = 3}, [1226] = {.lex_state = 2, .external_lex_state = 3}, - [1227] = {.lex_state = 2, .external_lex_state = 3}, + [1227] = {.lex_state = 127, .external_lex_state = 2}, [1228] = {.lex_state = 2, .external_lex_state = 3}, [1229] = {.lex_state = 2, .external_lex_state = 3}, - [1230] = {.lex_state = 3, .external_lex_state = 3}, + [1230] = {.lex_state = 2, .external_lex_state = 3}, [1231] = {.lex_state = 2, .external_lex_state = 3}, [1232] = {.lex_state = 2, .external_lex_state = 4}, [1233] = {.lex_state = 2, .external_lex_state = 3}, [1234] = {.lex_state = 2, .external_lex_state = 3}, [1235] = {.lex_state = 2, .external_lex_state = 3}, - [1236] = {.lex_state = 2, .external_lex_state = 3}, - [1237] = {.lex_state = 2, .external_lex_state = 3}, - [1238] = {.lex_state = 2, .external_lex_state = 4}, - [1239] = {.lex_state = 3, .external_lex_state = 3}, - [1240] = {.lex_state = 2, .external_lex_state = 3}, + [1236] = {.lex_state = 3, .external_lex_state = 3}, + [1237] = {.lex_state = 2, .external_lex_state = 4}, + [1238] = {.lex_state = 2, .external_lex_state = 3}, + [1239] = {.lex_state = 2, .external_lex_state = 3}, + [1240] = {.lex_state = 3, .external_lex_state = 3}, [1241] = {.lex_state = 2, .external_lex_state = 3}, [1242] = {.lex_state = 2, .external_lex_state = 3}, - [1243] = {.lex_state = 2, .external_lex_state = 4}, - [1244] = {.lex_state = 2, .external_lex_state = 3}, + [1243] = {.lex_state = 2, .external_lex_state = 3}, + [1244] = {.lex_state = 2, .external_lex_state = 4}, [1245] = {.lex_state = 2, .external_lex_state = 3}, [1246] = {.lex_state = 2, .external_lex_state = 3}, - [1247] = {.lex_state = 128, .external_lex_state = 2}, + [1247] = {.lex_state = 127, .external_lex_state = 2}, [1248] = {.lex_state = 2, .external_lex_state = 3}, [1249] = {.lex_state = 2, .external_lex_state = 3}, [1250] = {.lex_state = 2, .external_lex_state = 3}, - [1251] = {.lex_state = 2, .external_lex_state = 3}, - [1252] = {.lex_state = 2, .external_lex_state = 4}, - [1253] = {.lex_state = 128, .external_lex_state = 2}, + [1251] = {.lex_state = 2, .external_lex_state = 4}, + [1252] = {.lex_state = 2, .external_lex_state = 3}, + [1253] = {.lex_state = 2, .external_lex_state = 3}, [1254] = {.lex_state = 2, .external_lex_state = 3}, - [1255] = {.lex_state = 2, .external_lex_state = 3}, + [1255] = {.lex_state = 127, .external_lex_state = 2}, [1256] = {.lex_state = 2, .external_lex_state = 3}, - [1257] = {.lex_state = 2, .external_lex_state = 4}, - [1258] = {.lex_state = 2, .external_lex_state = 4}, - [1259] = {.lex_state = 128, .external_lex_state = 2}, + [1257] = {.lex_state = 2, .external_lex_state = 3}, + [1258] = {.lex_state = 2, .external_lex_state = 3}, + [1259] = {.lex_state = 2, .external_lex_state = 3}, [1260] = {.lex_state = 2, .external_lex_state = 3}, - [1261] = {.lex_state = 2, .external_lex_state = 4}, + [1261] = {.lex_state = 2, .external_lex_state = 3}, [1262] = {.lex_state = 2, .external_lex_state = 3}, [1263] = {.lex_state = 2, .external_lex_state = 4}, - [1264] = {.lex_state = 2, .external_lex_state = 3}, - [1265] = {.lex_state = 2, .external_lex_state = 3}, + [1264] = {.lex_state = 2, .external_lex_state = 4}, + [1265] = {.lex_state = 2, .external_lex_state = 4}, [1266] = {.lex_state = 2, .external_lex_state = 4}, [1267] = {.lex_state = 2, .external_lex_state = 4}, [1268] = {.lex_state = 2, .external_lex_state = 3}, - [1269] = {.lex_state = 2, .external_lex_state = 3}, - [1270] = {.lex_state = 128, .external_lex_state = 2}, + [1269] = {.lex_state = 2, .external_lex_state = 4}, + [1270] = {.lex_state = 2, .external_lex_state = 4}, [1271] = {.lex_state = 2, .external_lex_state = 3}, - [1272] = {.lex_state = 2, .external_lex_state = 3}, - [1273] = {.lex_state = 2, .external_lex_state = 3}, - [1274] = {.lex_state = 128, .external_lex_state = 2}, + [1272] = {.lex_state = 2, .external_lex_state = 4}, + [1273] = {.lex_state = 127, .external_lex_state = 2}, + [1274] = {.lex_state = 2, .external_lex_state = 3}, [1275] = {.lex_state = 2, .external_lex_state = 4}, - [1276] = {.lex_state = 3, .external_lex_state = 3}, - [1277] = {.lex_state = 2, .external_lex_state = 4}, + [1276] = {.lex_state = 2, .external_lex_state = 3}, + [1277] = {.lex_state = 127, .external_lex_state = 2}, [1278] = {.lex_state = 2, .external_lex_state = 3}, - [1279] = {.lex_state = 2, .external_lex_state = 4}, - [1280] = {.lex_state = 2, .external_lex_state = 3}, - [1281] = {.lex_state = 2, .external_lex_state = 4}, - [1282] = {.lex_state = 2, .external_lex_state = 3}, - [1283] = {.lex_state = 2, .external_lex_state = 4}, - [1284] = {.lex_state = 128, .external_lex_state = 2}, + [1279] = {.lex_state = 2, .external_lex_state = 3}, + [1280] = {.lex_state = 2, .external_lex_state = 4}, + [1281] = {.lex_state = 3, .external_lex_state = 3}, + [1282] = {.lex_state = 127, .external_lex_state = 2}, + [1283] = {.lex_state = 2, .external_lex_state = 3}, + [1284] = {.lex_state = 2, .external_lex_state = 3}, [1285] = {.lex_state = 2, .external_lex_state = 4}, - [1286] = {.lex_state = 2, .external_lex_state = 3}, - [1287] = {.lex_state = 2, .external_lex_state = 4}, + [1286] = {.lex_state = 2, .external_lex_state = 4}, + [1287] = {.lex_state = 2, .external_lex_state = 3}, [1288] = {.lex_state = 2, .external_lex_state = 4}, [1289] = {.lex_state = 2, .external_lex_state = 4}, - [1290] = {.lex_state = 128, .external_lex_state = 2}, + [1290] = {.lex_state = 2, .external_lex_state = 4}, [1291] = {.lex_state = 2, .external_lex_state = 4}, [1292] = {.lex_state = 2, .external_lex_state = 4}, - [1293] = {.lex_state = 2, .external_lex_state = 4}, + [1293] = {.lex_state = 127, .external_lex_state = 2}, [1294] = {.lex_state = 2, .external_lex_state = 4}, - [1295] = {.lex_state = 2, .external_lex_state = 4}, - [1296] = {.lex_state = 2, .external_lex_state = 3}, - [1297] = {.lex_state = 2, .external_lex_state = 3}, + [1295] = {.lex_state = 3, .external_lex_state = 3}, + [1296] = {.lex_state = 2, .external_lex_state = 4}, + [1297] = {.lex_state = 2, .external_lex_state = 4}, [1298] = {.lex_state = 2, .external_lex_state = 4}, [1299] = {.lex_state = 2, .external_lex_state = 4}, - [1300] = {.lex_state = 2, .external_lex_state = 4}, - [1301] = {.lex_state = 2, .external_lex_state = 3}, - [1302] = {.lex_state = 128, .external_lex_state = 2}, + [1300] = {.lex_state = 2, .external_lex_state = 3}, + [1301] = {.lex_state = 2, .external_lex_state = 4}, + [1302] = {.lex_state = 2, .external_lex_state = 4}, [1303] = {.lex_state = 2, .external_lex_state = 4}, [1304] = {.lex_state = 2, .external_lex_state = 4}, - [1305] = {.lex_state = 2, .external_lex_state = 4}, + [1305] = {.lex_state = 2, .external_lex_state = 3}, [1306] = {.lex_state = 2, .external_lex_state = 4}, - [1307] = {.lex_state = 2, .external_lex_state = 4}, - [1308] = {.lex_state = 3, .external_lex_state = 3}, - [1309] = {.lex_state = 2, .external_lex_state = 3}, - [1310] = {.lex_state = 2, .external_lex_state = 4}, + [1307] = {.lex_state = 2, .external_lex_state = 3}, + [1308] = {.lex_state = 2, .external_lex_state = 3}, + [1309] = {.lex_state = 2, .external_lex_state = 4}, + [1310] = {.lex_state = 127, .external_lex_state = 2}, [1311] = {.lex_state = 2, .external_lex_state = 4}, [1312] = {.lex_state = 2, .external_lex_state = 4}, [1313] = {.lex_state = 2, .external_lex_state = 4}, - [1314] = {.lex_state = 2, .external_lex_state = 4}, - [1315] = {.lex_state = 2, .external_lex_state = 4}, - [1316] = {.lex_state = 2, .external_lex_state = 3}, - [1317] = {.lex_state = 2, .external_lex_state = 3}, - [1318] = {.lex_state = 2, .external_lex_state = 3}, + [1314] = {.lex_state = 2, .external_lex_state = 3}, + [1315] = {.lex_state = 2, .external_lex_state = 3}, + [1316] = {.lex_state = 2, .external_lex_state = 4}, + [1317] = {.lex_state = 2, .external_lex_state = 4}, + [1318] = {.lex_state = 2, .external_lex_state = 4}, [1319] = {.lex_state = 2, .external_lex_state = 3}, [1320] = {.lex_state = 2, .external_lex_state = 4}, - [1321] = {.lex_state = 2, .external_lex_state = 3}, - [1322] = {.lex_state = 2, .external_lex_state = 3}, + [1321] = {.lex_state = 3, .external_lex_state = 3}, + [1322] = {.lex_state = 2, .external_lex_state = 4}, [1323] = {.lex_state = 2, .external_lex_state = 3}, [1324] = {.lex_state = 2, .external_lex_state = 3}, - [1325] = {.lex_state = 2, .external_lex_state = 4}, - [1326] = {.lex_state = 2, .external_lex_state = 4}, + [1325] = {.lex_state = 3, .external_lex_state = 3}, + [1326] = {.lex_state = 3, .external_lex_state = 3}, [1327] = {.lex_state = 2, .external_lex_state = 3}, - [1328] = {.lex_state = 2, .external_lex_state = 3}, - [1329] = {.lex_state = 3, .external_lex_state = 3}, - [1330] = {.lex_state = 2, .external_lex_state = 4}, + [1328] = {.lex_state = 3, .external_lex_state = 3}, + [1329] = {.lex_state = 2, .external_lex_state = 3}, + [1330] = {.lex_state = 2, .external_lex_state = 3}, [1331] = {.lex_state = 2, .external_lex_state = 3}, [1332] = {.lex_state = 2, .external_lex_state = 3}, - [1333] = {.lex_state = 3, .external_lex_state = 3}, - [1334] = {.lex_state = 2, .external_lex_state = 4}, + [1333] = {.lex_state = 2, .external_lex_state = 3}, + [1334] = {.lex_state = 2, .external_lex_state = 3}, [1335] = {.lex_state = 2, .external_lex_state = 4}, [1336] = {.lex_state = 2, .external_lex_state = 3}, [1337] = {.lex_state = 2, .external_lex_state = 4}, - [1338] = {.lex_state = 2, .external_lex_state = 3}, - [1339] = {.lex_state = 3, .external_lex_state = 3}, - [1340] = {.lex_state = 3, .external_lex_state = 3}, - [1341] = {.lex_state = 2, .external_lex_state = 3}, - [1342] = {.lex_state = 2, .external_lex_state = 3}, - [1343] = {.lex_state = 2, .external_lex_state = 3}, + [1338] = {.lex_state = 2, .external_lex_state = 4}, + [1339] = {.lex_state = 2, .external_lex_state = 3}, + [1340] = {.lex_state = 2, .external_lex_state = 3}, + [1341] = {.lex_state = 2, .external_lex_state = 4}, + [1342] = {.lex_state = 2, .external_lex_state = 4}, + [1343] = {.lex_state = 3, .external_lex_state = 3}, [1344] = {.lex_state = 2, .external_lex_state = 3}, - [1345] = {.lex_state = 9, .external_lex_state = 2}, - [1346] = {.lex_state = 2, .external_lex_state = 4}, - [1347] = {.lex_state = 2, .external_lex_state = 4}, - [1348] = {.lex_state = 2, .external_lex_state = 3}, - [1349] = {.lex_state = 2, .external_lex_state = 3}, - [1350] = {.lex_state = 2, .external_lex_state = 3}, + [1345] = {.lex_state = 2, .external_lex_state = 3}, + [1346] = {.lex_state = 9, .external_lex_state = 2}, + [1347] = {.lex_state = 2, .external_lex_state = 3}, + [1348] = {.lex_state = 9, .external_lex_state = 2}, + [1349] = {.lex_state = 9, .external_lex_state = 2}, + [1350] = {.lex_state = 9, .external_lex_state = 2}, [1351] = {.lex_state = 9, .external_lex_state = 2}, - [1352] = {.lex_state = 9, .external_lex_state = 2}, - [1353] = {.lex_state = 2, .external_lex_state = 3}, + [1352] = {.lex_state = 2, .external_lex_state = 3}, + [1353] = {.lex_state = 2, .external_lex_state = 4}, [1354] = {.lex_state = 2, .external_lex_state = 3}, - [1355] = {.lex_state = 2, .external_lex_state = 3}, - [1356] = {.lex_state = 2, .external_lex_state = 3}, - [1357] = {.lex_state = 9, .external_lex_state = 2}, + [1355] = {.lex_state = 2, .external_lex_state = 4}, + [1356] = {.lex_state = 2, .external_lex_state = 4}, + [1357] = {.lex_state = 2, .external_lex_state = 3}, [1358] = {.lex_state = 2, .external_lex_state = 3}, [1359] = {.lex_state = 2, .external_lex_state = 3}, - [1360] = {.lex_state = 2, .external_lex_state = 4}, - [1361] = {.lex_state = 9, .external_lex_state = 2}, + [1360] = {.lex_state = 9, .external_lex_state = 2}, + [1361] = {.lex_state = 2, .external_lex_state = 3}, [1362] = {.lex_state = 2, .external_lex_state = 3}, - [1363] = {.lex_state = 9, .external_lex_state = 2}, + [1363] = {.lex_state = 2, .external_lex_state = 4}, [1364] = {.lex_state = 2, .external_lex_state = 3}, - [1365] = {.lex_state = 3, .external_lex_state = 3}, + [1365] = {.lex_state = 2, .external_lex_state = 3}, [1366] = {.lex_state = 2, .external_lex_state = 3}, - [1367] = {.lex_state = 2, .external_lex_state = 4}, + [1367] = {.lex_state = 2, .external_lex_state = 3}, [1368] = {.lex_state = 2, .external_lex_state = 3}, - [1369] = {.lex_state = 2, .external_lex_state = 3}, + [1369] = {.lex_state = 2, .external_lex_state = 4}, [1370] = {.lex_state = 2, .external_lex_state = 3}, [1371] = {.lex_state = 2, .external_lex_state = 3}, [1372] = {.lex_state = 2, .external_lex_state = 3}, [1373] = {.lex_state = 2, .external_lex_state = 3}, - [1374] = {.lex_state = 2, .external_lex_state = 4}, + [1374] = {.lex_state = 2, .external_lex_state = 3}, [1375] = {.lex_state = 2, .external_lex_state = 3}, [1376] = {.lex_state = 2, .external_lex_state = 3}, [1377] = {.lex_state = 2, .external_lex_state = 3}, @@ -15075,12 +15278,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1384] = {.lex_state = 9, .external_lex_state = 2}, [1385] = {.lex_state = 9, .external_lex_state = 2}, [1386] = {.lex_state = 9, .external_lex_state = 2}, - [1387] = {.lex_state = 2, .external_lex_state = 3}, + [1387] = {.lex_state = 9, .external_lex_state = 2}, [1388] = {.lex_state = 9, .external_lex_state = 2}, - [1389] = {.lex_state = 2, .external_lex_state = 3}, - [1390] = {.lex_state = 2, .external_lex_state = 3}, - [1391] = {.lex_state = 2, .external_lex_state = 3}, - [1392] = {.lex_state = 2, .external_lex_state = 3}, + [1389] = {.lex_state = 9, .external_lex_state = 2}, + [1390] = {.lex_state = 9, .external_lex_state = 2}, + [1391] = {.lex_state = 9, .external_lex_state = 2}, + [1392] = {.lex_state = 9, .external_lex_state = 2}, [1393] = {.lex_state = 2, .external_lex_state = 3}, [1394] = {.lex_state = 9, .external_lex_state = 2}, [1395] = {.lex_state = 9, .external_lex_state = 2}, @@ -15090,26 +15293,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1399] = {.lex_state = 2, .external_lex_state = 3}, [1400] = {.lex_state = 2, .external_lex_state = 3}, [1401] = {.lex_state = 2, .external_lex_state = 3}, - [1402] = {.lex_state = 9, .external_lex_state = 2}, + [1402] = {.lex_state = 2, .external_lex_state = 3}, [1403] = {.lex_state = 2, .external_lex_state = 3}, - [1404] = {.lex_state = 9, .external_lex_state = 2}, - [1405] = {.lex_state = 9, .external_lex_state = 2}, + [1404] = {.lex_state = 2, .external_lex_state = 3}, + [1405] = {.lex_state = 2, .external_lex_state = 3}, [1406] = {.lex_state = 2, .external_lex_state = 3}, [1407] = {.lex_state = 2, .external_lex_state = 3}, [1408] = {.lex_state = 9, .external_lex_state = 2}, - [1409] = {.lex_state = 2, .external_lex_state = 3}, - [1410] = {.lex_state = 2, .external_lex_state = 3}, - [1411] = {.lex_state = 9, .external_lex_state = 2}, - [1412] = {.lex_state = 9, .external_lex_state = 2}, + [1409] = {.lex_state = 9, .external_lex_state = 2}, + [1410] = {.lex_state = 9, .external_lex_state = 2}, + [1411] = {.lex_state = 2, .external_lex_state = 3}, + [1412] = {.lex_state = 2, .external_lex_state = 3}, [1413] = {.lex_state = 2, .external_lex_state = 3}, - [1414] = {.lex_state = 9, .external_lex_state = 2}, - [1415] = {.lex_state = 2, .external_lex_state = 3}, + [1414] = {.lex_state = 2, .external_lex_state = 3}, + [1415] = {.lex_state = 9, .external_lex_state = 2}, [1416] = {.lex_state = 2, .external_lex_state = 3}, [1417] = {.lex_state = 2, .external_lex_state = 3}, - [1418] = {.lex_state = 9, .external_lex_state = 2}, + [1418] = {.lex_state = 2, .external_lex_state = 3}, [1419] = {.lex_state = 9, .external_lex_state = 2}, [1420] = {.lex_state = 2, .external_lex_state = 3}, - [1421] = {.lex_state = 9, .external_lex_state = 2}, + [1421] = {.lex_state = 2, .external_lex_state = 3}, [1422] = {.lex_state = 9, .external_lex_state = 2}, [1423] = {.lex_state = 2, .external_lex_state = 3}, [1424] = {.lex_state = 2, .external_lex_state = 3}, @@ -15128,1181 +15331,1181 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1437] = {.lex_state = 9, .external_lex_state = 2}, [1438] = {.lex_state = 9, .external_lex_state = 2}, [1439] = {.lex_state = 9, .external_lex_state = 2}, - [1440] = {.lex_state = 128, .external_lex_state = 5}, + [1440] = {.lex_state = 9, .external_lex_state = 2}, [1441] = {.lex_state = 9, .external_lex_state = 2}, [1442] = {.lex_state = 9, .external_lex_state = 2}, - [1443] = {.lex_state = 9, .external_lex_state = 2}, - [1444] = {.lex_state = 9, .external_lex_state = 2}, + [1443] = {.lex_state = 127, .external_lex_state = 5}, + [1444] = {.lex_state = 127, .external_lex_state = 5}, [1445] = {.lex_state = 9, .external_lex_state = 2}, - [1446] = {.lex_state = 128, .external_lex_state = 5}, - [1447] = {.lex_state = 128, .external_lex_state = 5}, + [1446] = {.lex_state = 127, .external_lex_state = 5}, + [1447] = {.lex_state = 9, .external_lex_state = 2}, [1448] = {.lex_state = 9, .external_lex_state = 2}, [1449] = {.lex_state = 9, .external_lex_state = 2}, [1450] = {.lex_state = 9, .external_lex_state = 2}, - [1451] = {.lex_state = 128, .external_lex_state = 5}, + [1451] = {.lex_state = 9, .external_lex_state = 2}, [1452] = {.lex_state = 9, .external_lex_state = 2}, - [1453] = {.lex_state = 9, .external_lex_state = 2}, - [1454] = {.lex_state = 128, .external_lex_state = 5}, + [1453] = {.lex_state = 127, .external_lex_state = 5}, + [1454] = {.lex_state = 127, .external_lex_state = 5}, [1455] = {.lex_state = 9, .external_lex_state = 2}, - [1456] = {.lex_state = 128, .external_lex_state = 2}, - [1457] = {.lex_state = 128, .external_lex_state = 2}, - [1458] = {.lex_state = 128, .external_lex_state = 2}, - [1459] = {.lex_state = 127, .external_lex_state = 3}, - [1460] = {.lex_state = 128, .external_lex_state = 2}, - [1461] = {.lex_state = 128, .external_lex_state = 2}, - [1462] = {.lex_state = 128, .external_lex_state = 2}, - [1463] = {.lex_state = 127, .external_lex_state = 3}, - [1464] = {.lex_state = 128, .external_lex_state = 5}, - [1465] = {.lex_state = 127, .external_lex_state = 3}, - [1466] = {.lex_state = 127, .external_lex_state = 3}, - [1467] = {.lex_state = 127, .external_lex_state = 4}, - [1468] = {.lex_state = 127, .external_lex_state = 3}, - [1469] = {.lex_state = 128, .external_lex_state = 5}, - [1470] = {.lex_state = 127, .external_lex_state = 4}, - [1471] = {.lex_state = 127, .external_lex_state = 3}, - [1472] = {.lex_state = 127, .external_lex_state = 3}, - [1473] = {.lex_state = 127, .external_lex_state = 3}, - [1474] = {.lex_state = 127, .external_lex_state = 3}, - [1475] = {.lex_state = 127, .external_lex_state = 3}, - [1476] = {.lex_state = 127, .external_lex_state = 3}, - [1477] = {.lex_state = 127, .external_lex_state = 3}, - [1478] = {.lex_state = 127, .external_lex_state = 3}, - [1479] = {.lex_state = 128, .external_lex_state = 2}, - [1480] = {.lex_state = 127, .external_lex_state = 3}, - [1481] = {.lex_state = 127, .external_lex_state = 4}, - [1482] = {.lex_state = 127, .external_lex_state = 3}, - [1483] = {.lex_state = 127, .external_lex_state = 3}, - [1484] = {.lex_state = 127, .external_lex_state = 3}, - [1485] = {.lex_state = 127, .external_lex_state = 3}, - [1486] = {.lex_state = 127, .external_lex_state = 3}, - [1487] = {.lex_state = 127, .external_lex_state = 3}, - [1488] = {.lex_state = 127, .external_lex_state = 3}, - [1489] = {.lex_state = 127, .external_lex_state = 3}, - [1490] = {.lex_state = 127, .external_lex_state = 3}, - [1491] = {.lex_state = 127, .external_lex_state = 3}, - [1492] = {.lex_state = 127, .external_lex_state = 3}, - [1493] = {.lex_state = 127, .external_lex_state = 3}, - [1494] = {.lex_state = 127, .external_lex_state = 3}, - [1495] = {.lex_state = 127, .external_lex_state = 3}, - [1496] = {.lex_state = 127, .external_lex_state = 3}, - [1497] = {.lex_state = 127, .external_lex_state = 4}, - [1498] = {.lex_state = 127, .external_lex_state = 4}, - [1499] = {.lex_state = 127, .external_lex_state = 3}, - [1500] = {.lex_state = 127, .external_lex_state = 4}, - [1501] = {.lex_state = 127, .external_lex_state = 3}, - [1502] = {.lex_state = 127, .external_lex_state = 3}, - [1503] = {.lex_state = 127, .external_lex_state = 3}, - [1504] = {.lex_state = 127, .external_lex_state = 3}, - [1505] = {.lex_state = 127, .external_lex_state = 4}, - [1506] = {.lex_state = 127, .external_lex_state = 3}, - [1507] = {.lex_state = 127, .external_lex_state = 3}, - [1508] = {.lex_state = 127, .external_lex_state = 3}, - [1509] = {.lex_state = 127, .external_lex_state = 3}, - [1510] = {.lex_state = 127, .external_lex_state = 3}, - [1511] = {.lex_state = 127, .external_lex_state = 3}, - [1512] = {.lex_state = 127, .external_lex_state = 3}, - [1513] = {.lex_state = 127, .external_lex_state = 3}, - [1514] = {.lex_state = 127, .external_lex_state = 3}, - [1515] = {.lex_state = 127, .external_lex_state = 3}, - [1516] = {.lex_state = 127, .external_lex_state = 3}, - [1517] = {.lex_state = 127, .external_lex_state = 3}, - [1518] = {.lex_state = 127, .external_lex_state = 3}, - [1519] = {.lex_state = 127, .external_lex_state = 3}, - [1520] = {.lex_state = 127, .external_lex_state = 3}, - [1521] = {.lex_state = 127, .external_lex_state = 3}, - [1522] = {.lex_state = 127, .external_lex_state = 3}, - [1523] = {.lex_state = 127, .external_lex_state = 3}, - [1524] = {.lex_state = 127, .external_lex_state = 3}, - [1525] = {.lex_state = 127, .external_lex_state = 3}, - [1526] = {.lex_state = 127, .external_lex_state = 3}, - [1527] = {.lex_state = 127, .external_lex_state = 3}, - [1528] = {.lex_state = 127, .external_lex_state = 3}, - [1529] = {.lex_state = 127, .external_lex_state = 3}, - [1530] = {.lex_state = 127, .external_lex_state = 3}, - [1531] = {.lex_state = 127, .external_lex_state = 3}, - [1532] = {.lex_state = 127, .external_lex_state = 3}, - [1533] = {.lex_state = 127, .external_lex_state = 3}, - [1534] = {.lex_state = 127, .external_lex_state = 3}, - [1535] = {.lex_state = 127, .external_lex_state = 3}, - [1536] = {.lex_state = 127, .external_lex_state = 3}, - [1537] = {.lex_state = 127, .external_lex_state = 3}, - [1538] = {.lex_state = 127, .external_lex_state = 3}, - [1539] = {.lex_state = 127, .external_lex_state = 3}, - [1540] = {.lex_state = 127, .external_lex_state = 3}, - [1541] = {.lex_state = 127, .external_lex_state = 3}, - [1542] = {.lex_state = 127, .external_lex_state = 3}, - [1543] = {.lex_state = 127, .external_lex_state = 3}, - [1544] = {.lex_state = 127, .external_lex_state = 3}, - [1545] = {.lex_state = 127, .external_lex_state = 3}, - [1546] = {.lex_state = 127, .external_lex_state = 3}, - [1547] = {.lex_state = 127, .external_lex_state = 3}, - [1548] = {.lex_state = 127, .external_lex_state = 3}, - [1549] = {.lex_state = 127, .external_lex_state = 3}, - [1550] = {.lex_state = 127, .external_lex_state = 3}, - [1551] = {.lex_state = 127, .external_lex_state = 3}, - [1552] = {.lex_state = 127, .external_lex_state = 3}, - [1553] = {.lex_state = 127, .external_lex_state = 3}, - [1554] = {.lex_state = 127, .external_lex_state = 3}, - [1555] = {.lex_state = 127, .external_lex_state = 4}, - [1556] = {.lex_state = 127, .external_lex_state = 3}, - [1557] = {.lex_state = 127, .external_lex_state = 3}, - [1558] = {.lex_state = 127, .external_lex_state = 3}, - [1559] = {.lex_state = 127, .external_lex_state = 3}, - [1560] = {.lex_state = 127, .external_lex_state = 3}, - [1561] = {.lex_state = 127, .external_lex_state = 3}, - [1562] = {.lex_state = 127, .external_lex_state = 3}, - [1563] = {.lex_state = 127, .external_lex_state = 3}, - [1564] = {.lex_state = 127, .external_lex_state = 3}, - [1565] = {.lex_state = 127, .external_lex_state = 3}, - [1566] = {.lex_state = 127, .external_lex_state = 3}, - [1567] = {.lex_state = 127, .external_lex_state = 3}, - [1568] = {.lex_state = 127, .external_lex_state = 3}, - [1569] = {.lex_state = 127, .external_lex_state = 3}, - [1570] = {.lex_state = 127, .external_lex_state = 3}, - [1571] = {.lex_state = 127, .external_lex_state = 3}, - [1572] = {.lex_state = 127, .external_lex_state = 3}, - [1573] = {.lex_state = 127, .external_lex_state = 3}, - [1574] = {.lex_state = 127, .external_lex_state = 3}, - [1575] = {.lex_state = 127, .external_lex_state = 3}, - [1576] = {.lex_state = 127, .external_lex_state = 3}, - [1577] = {.lex_state = 127, .external_lex_state = 3}, - [1578] = {.lex_state = 127, .external_lex_state = 3}, - [1579] = {.lex_state = 127, .external_lex_state = 3}, - [1580] = {.lex_state = 127, .external_lex_state = 3}, - [1581] = {.lex_state = 127, .external_lex_state = 3}, - [1582] = {.lex_state = 127, .external_lex_state = 3}, - [1583] = {.lex_state = 127, .external_lex_state = 3}, - [1584] = {.lex_state = 127, .external_lex_state = 3}, - [1585] = {.lex_state = 127, .external_lex_state = 3}, - [1586] = {.lex_state = 127, .external_lex_state = 3}, - [1587] = {.lex_state = 127, .external_lex_state = 3}, - [1588] = {.lex_state = 127, .external_lex_state = 3}, - [1589] = {.lex_state = 127, .external_lex_state = 3}, - [1590] = {.lex_state = 127, .external_lex_state = 3}, - [1591] = {.lex_state = 127, .external_lex_state = 3}, - [1592] = {.lex_state = 127, .external_lex_state = 3}, - [1593] = {.lex_state = 127, .external_lex_state = 3}, - [1594] = {.lex_state = 127, .external_lex_state = 3}, - [1595] = {.lex_state = 127, .external_lex_state = 3}, - [1596] = {.lex_state = 127, .external_lex_state = 3}, - [1597] = {.lex_state = 127, .external_lex_state = 3}, - [1598] = {.lex_state = 127, .external_lex_state = 3}, - [1599] = {.lex_state = 127, .external_lex_state = 3}, - [1600] = {.lex_state = 127, .external_lex_state = 3}, - [1601] = {.lex_state = 127, .external_lex_state = 3}, - [1602] = {.lex_state = 127, .external_lex_state = 3}, - [1603] = {.lex_state = 127, .external_lex_state = 3}, - [1604] = {.lex_state = 127, .external_lex_state = 3}, - [1605] = {.lex_state = 127, .external_lex_state = 3}, - [1606] = {.lex_state = 127, .external_lex_state = 3}, - [1607] = {.lex_state = 127, .external_lex_state = 3}, - [1608] = {.lex_state = 127, .external_lex_state = 3}, - [1609] = {.lex_state = 127, .external_lex_state = 3}, - [1610] = {.lex_state = 127, .external_lex_state = 3}, - [1611] = {.lex_state = 127, .external_lex_state = 3}, - [1612] = {.lex_state = 127, .external_lex_state = 3}, - [1613] = {.lex_state = 127, .external_lex_state = 3}, - [1614] = {.lex_state = 127, .external_lex_state = 3}, - [1615] = {.lex_state = 127, .external_lex_state = 3}, - [1616] = {.lex_state = 127, .external_lex_state = 3}, - [1617] = {.lex_state = 128, .external_lex_state = 5}, - [1618] = {.lex_state = 127, .external_lex_state = 3}, - [1619] = {.lex_state = 127, .external_lex_state = 3}, - [1620] = {.lex_state = 127, .external_lex_state = 3}, - [1621] = {.lex_state = 127, .external_lex_state = 3}, - [1622] = {.lex_state = 127, .external_lex_state = 3}, - [1623] = {.lex_state = 127, .external_lex_state = 3}, - [1624] = {.lex_state = 127, .external_lex_state = 3}, - [1625] = {.lex_state = 127, .external_lex_state = 3}, - [1626] = {.lex_state = 127, .external_lex_state = 3}, - [1627] = {.lex_state = 127, .external_lex_state = 3}, - [1628] = {.lex_state = 127, .external_lex_state = 3}, - [1629] = {.lex_state = 127, .external_lex_state = 3}, - [1630] = {.lex_state = 127, .external_lex_state = 3}, - [1631] = {.lex_state = 127, .external_lex_state = 3}, - [1632] = {.lex_state = 127, .external_lex_state = 3}, - [1633] = {.lex_state = 127, .external_lex_state = 3}, - [1634] = {.lex_state = 127, .external_lex_state = 3}, - [1635] = {.lex_state = 127, .external_lex_state = 3}, - [1636] = {.lex_state = 127, .external_lex_state = 3}, - [1637] = {.lex_state = 127, .external_lex_state = 3}, - [1638] = {.lex_state = 127, .external_lex_state = 3}, - [1639] = {.lex_state = 127, .external_lex_state = 3}, - [1640] = {.lex_state = 127, .external_lex_state = 4}, - [1641] = {.lex_state = 127, .external_lex_state = 3}, - [1642] = {.lex_state = 127, .external_lex_state = 3}, - [1643] = {.lex_state = 127, .external_lex_state = 3}, - [1644] = {.lex_state = 127, .external_lex_state = 3}, - [1645] = {.lex_state = 127, .external_lex_state = 3}, - [1646] = {.lex_state = 127, .external_lex_state = 3}, - [1647] = {.lex_state = 127, .external_lex_state = 3}, - [1648] = {.lex_state = 127, .external_lex_state = 3}, - [1649] = {.lex_state = 127, .external_lex_state = 3}, - [1650] = {.lex_state = 127, .external_lex_state = 3}, - [1651] = {.lex_state = 127, .external_lex_state = 3}, - [1652] = {.lex_state = 127, .external_lex_state = 3}, - [1653] = {.lex_state = 127, .external_lex_state = 3}, - [1654] = {.lex_state = 127, .external_lex_state = 3}, - [1655] = {.lex_state = 127, .external_lex_state = 3}, - [1656] = {.lex_state = 127, .external_lex_state = 3}, - [1657] = {.lex_state = 127, .external_lex_state = 3}, - [1658] = {.lex_state = 127, .external_lex_state = 3}, - [1659] = {.lex_state = 128, .external_lex_state = 5}, - [1660] = {.lex_state = 127, .external_lex_state = 3}, - [1661] = {.lex_state = 127, .external_lex_state = 3}, - [1662] = {.lex_state = 127, .external_lex_state = 3}, - [1663] = {.lex_state = 127, .external_lex_state = 3}, - [1664] = {.lex_state = 127, .external_lex_state = 3}, - [1665] = {.lex_state = 127, .external_lex_state = 3}, - [1666] = {.lex_state = 127, .external_lex_state = 3}, - [1667] = {.lex_state = 127, .external_lex_state = 3}, - [1668] = {.lex_state = 127, .external_lex_state = 3}, - [1669] = {.lex_state = 127, .external_lex_state = 3}, - [1670] = {.lex_state = 128, .external_lex_state = 5}, - [1671] = {.lex_state = 127, .external_lex_state = 3}, - [1672] = {.lex_state = 127, .external_lex_state = 3}, - [1673] = {.lex_state = 127, .external_lex_state = 3}, - [1674] = {.lex_state = 127, .external_lex_state = 3}, - [1675] = {.lex_state = 127, .external_lex_state = 3}, - [1676] = {.lex_state = 127, .external_lex_state = 3}, - [1677] = {.lex_state = 127, .external_lex_state = 3}, - [1678] = {.lex_state = 127, .external_lex_state = 3}, - [1679] = {.lex_state = 127, .external_lex_state = 3}, - [1680] = {.lex_state = 127, .external_lex_state = 3}, - [1681] = {.lex_state = 127, .external_lex_state = 3}, - [1682] = {.lex_state = 127, .external_lex_state = 3}, - [1683] = {.lex_state = 127, .external_lex_state = 3}, - [1684] = {.lex_state = 127, .external_lex_state = 3}, - [1685] = {.lex_state = 127, .external_lex_state = 3}, - [1686] = {.lex_state = 127, .external_lex_state = 3}, - [1687] = {.lex_state = 127, .external_lex_state = 3}, - [1688] = {.lex_state = 127, .external_lex_state = 3}, - [1689] = {.lex_state = 127, .external_lex_state = 3}, - [1690] = {.lex_state = 127, .external_lex_state = 3}, - [1691] = {.lex_state = 127, .external_lex_state = 3}, - [1692] = {.lex_state = 127, .external_lex_state = 3}, - [1693] = {.lex_state = 127, .external_lex_state = 3}, - [1694] = {.lex_state = 127, .external_lex_state = 3}, - [1695] = {.lex_state = 127, .external_lex_state = 3}, - [1696] = {.lex_state = 127, .external_lex_state = 3}, - [1697] = {.lex_state = 127, .external_lex_state = 3}, - [1698] = {.lex_state = 127, .external_lex_state = 4}, - [1699] = {.lex_state = 127, .external_lex_state = 3}, - [1700] = {.lex_state = 127, .external_lex_state = 4}, - [1701] = {.lex_state = 127, .external_lex_state = 3}, - [1702] = {.lex_state = 127, .external_lex_state = 3}, - [1703] = {.lex_state = 127, .external_lex_state = 3}, - [1704] = {.lex_state = 127, .external_lex_state = 3}, - [1705] = {.lex_state = 127, .external_lex_state = 3}, - [1706] = {.lex_state = 127, .external_lex_state = 3}, - [1707] = {.lex_state = 127, .external_lex_state = 3}, - [1708] = {.lex_state = 127, .external_lex_state = 3}, - [1709] = {.lex_state = 127, .external_lex_state = 3}, - [1710] = {.lex_state = 127, .external_lex_state = 3}, - [1711] = {.lex_state = 127, .external_lex_state = 3}, - [1712] = {.lex_state = 128, .external_lex_state = 5}, - [1713] = {.lex_state = 127, .external_lex_state = 3}, - [1714] = {.lex_state = 127, .external_lex_state = 3}, - [1715] = {.lex_state = 127, .external_lex_state = 3}, - [1716] = {.lex_state = 128, .external_lex_state = 5}, - [1717] = {.lex_state = 127, .external_lex_state = 3}, - [1718] = {.lex_state = 127, .external_lex_state = 3}, - [1719] = {.lex_state = 127, .external_lex_state = 3}, - [1720] = {.lex_state = 127, .external_lex_state = 3}, - [1721] = {.lex_state = 127, .external_lex_state = 3}, - [1722] = {.lex_state = 127, .external_lex_state = 3}, - [1723] = {.lex_state = 127, .external_lex_state = 3}, - [1724] = {.lex_state = 127, .external_lex_state = 3}, - [1725] = {.lex_state = 127, .external_lex_state = 3}, - [1726] = {.lex_state = 128, .external_lex_state = 5}, - [1727] = {.lex_state = 127, .external_lex_state = 4}, - [1728] = {.lex_state = 128, .external_lex_state = 5}, - [1729] = {.lex_state = 127, .external_lex_state = 4}, - [1730] = {.lex_state = 128, .external_lex_state = 5}, - [1731] = {.lex_state = 127, .external_lex_state = 3}, - [1732] = {.lex_state = 128, .external_lex_state = 5}, - [1733] = {.lex_state = 127, .external_lex_state = 4}, - [1734] = {.lex_state = 128, .external_lex_state = 5}, - [1735] = {.lex_state = 127, .external_lex_state = 3}, - [1736] = {.lex_state = 127, .external_lex_state = 4}, - [1737] = {.lex_state = 128, .external_lex_state = 5}, - [1738] = {.lex_state = 127, .external_lex_state = 3}, - [1739] = {.lex_state = 128, .external_lex_state = 5}, - [1740] = {.lex_state = 127, .external_lex_state = 4}, - [1741] = {.lex_state = 128, .external_lex_state = 5}, - [1742] = {.lex_state = 127, .external_lex_state = 4}, - [1743] = {.lex_state = 127, .external_lex_state = 4}, - [1744] = {.lex_state = 128, .external_lex_state = 5}, - [1745] = {.lex_state = 127, .external_lex_state = 4}, - [1746] = {.lex_state = 127, .external_lex_state = 4}, - [1747] = {.lex_state = 127, .external_lex_state = 4}, - [1748] = {.lex_state = 128, .external_lex_state = 5}, - [1749] = {.lex_state = 127, .external_lex_state = 4}, - [1750] = {.lex_state = 127, .external_lex_state = 4}, - [1751] = {.lex_state = 128, .external_lex_state = 5}, - [1752] = {.lex_state = 128, .external_lex_state = 5}, - [1753] = {.lex_state = 128, .external_lex_state = 5}, - [1754] = {.lex_state = 127, .external_lex_state = 3}, - [1755] = {.lex_state = 127, .external_lex_state = 3}, - [1756] = {.lex_state = 127, .external_lex_state = 4}, - [1757] = {.lex_state = 127, .external_lex_state = 4}, - [1758] = {.lex_state = 127, .external_lex_state = 4}, - [1759] = {.lex_state = 127, .external_lex_state = 3}, - [1760] = {.lex_state = 127, .external_lex_state = 4}, - [1761] = {.lex_state = 127, .external_lex_state = 4}, - [1762] = {.lex_state = 127, .external_lex_state = 4}, - [1763] = {.lex_state = 127, .external_lex_state = 3}, - [1764] = {.lex_state = 127, .external_lex_state = 4}, - [1765] = {.lex_state = 127, .external_lex_state = 4}, - [1766] = {.lex_state = 127, .external_lex_state = 3}, - [1767] = {.lex_state = 127, .external_lex_state = 4}, - [1768] = {.lex_state = 127, .external_lex_state = 4}, - [1769] = {.lex_state = 127, .external_lex_state = 4}, - [1770] = {.lex_state = 128, .external_lex_state = 5}, - [1771] = {.lex_state = 127, .external_lex_state = 4}, - [1772] = {.lex_state = 128, .external_lex_state = 5}, - [1773] = {.lex_state = 127, .external_lex_state = 4}, - [1774] = {.lex_state = 127, .external_lex_state = 4}, - [1775] = {.lex_state = 127, .external_lex_state = 4}, - [1776] = {.lex_state = 127, .external_lex_state = 3}, - [1777] = {.lex_state = 127, .external_lex_state = 4}, - [1778] = {.lex_state = 127, .external_lex_state = 4}, - [1779] = {.lex_state = 127, .external_lex_state = 4}, - [1780] = {.lex_state = 127, .external_lex_state = 4}, - [1781] = {.lex_state = 127, .external_lex_state = 4}, - [1782] = {.lex_state = 127, .external_lex_state = 4}, - [1783] = {.lex_state = 127, .external_lex_state = 4}, - [1784] = {.lex_state = 127, .external_lex_state = 4}, - [1785] = {.lex_state = 128, .external_lex_state = 5}, - [1786] = {.lex_state = 127, .external_lex_state = 4}, - [1787] = {.lex_state = 127, .external_lex_state = 4}, - [1788] = {.lex_state = 127, .external_lex_state = 4}, - [1789] = {.lex_state = 128, .external_lex_state = 5}, - [1790] = {.lex_state = 127, .external_lex_state = 4}, - [1791] = {.lex_state = 127, .external_lex_state = 3}, - [1792] = {.lex_state = 127, .external_lex_state = 4}, - [1793] = {.lex_state = 127, .external_lex_state = 3}, - [1794] = {.lex_state = 127, .external_lex_state = 4}, - [1795] = {.lex_state = 127, .external_lex_state = 4}, - [1796] = {.lex_state = 127, .external_lex_state = 4}, - [1797] = {.lex_state = 127, .external_lex_state = 4}, - [1798] = {.lex_state = 128, .external_lex_state = 5}, - [1799] = {.lex_state = 127, .external_lex_state = 4}, - [1800] = {.lex_state = 127, .external_lex_state = 3}, - [1801] = {.lex_state = 127, .external_lex_state = 4}, - [1802] = {.lex_state = 127, .external_lex_state = 4}, - [1803] = {.lex_state = 127, .external_lex_state = 4}, - [1804] = {.lex_state = 127, .external_lex_state = 4}, - [1805] = {.lex_state = 127, .external_lex_state = 4}, - [1806] = {.lex_state = 127, .external_lex_state = 3}, - [1807] = {.lex_state = 127, .external_lex_state = 4}, - [1808] = {.lex_state = 127, .external_lex_state = 4}, - [1809] = {.lex_state = 127, .external_lex_state = 4}, - [1810] = {.lex_state = 127, .external_lex_state = 4}, - [1811] = {.lex_state = 127, .external_lex_state = 4}, - [1812] = {.lex_state = 127, .external_lex_state = 4}, - [1813] = {.lex_state = 4, .external_lex_state = 3}, - [1814] = {.lex_state = 127, .external_lex_state = 4}, - [1815] = {.lex_state = 127, .external_lex_state = 3}, - [1816] = {.lex_state = 127, .external_lex_state = 4}, - [1817] = {.lex_state = 127, .external_lex_state = 4}, - [1818] = {.lex_state = 127, .external_lex_state = 4}, - [1819] = {.lex_state = 127, .external_lex_state = 4}, - [1820] = {.lex_state = 127, .external_lex_state = 4}, - [1821] = {.lex_state = 127, .external_lex_state = 3}, - [1822] = {.lex_state = 127, .external_lex_state = 4}, - [1823] = {.lex_state = 127, .external_lex_state = 4}, - [1824] = {.lex_state = 127, .external_lex_state = 4}, - [1825] = {.lex_state = 127, .external_lex_state = 4}, - [1826] = {.lex_state = 127, .external_lex_state = 3}, - [1827] = {.lex_state = 127, .external_lex_state = 4}, - [1828] = {.lex_state = 127, .external_lex_state = 4}, - [1829] = {.lex_state = 127, .external_lex_state = 4}, - [1830] = {.lex_state = 127, .external_lex_state = 4}, - [1831] = {.lex_state = 127, .external_lex_state = 4}, - [1832] = {.lex_state = 127, .external_lex_state = 4}, - [1833] = {.lex_state = 127, .external_lex_state = 4}, - [1834] = {.lex_state = 127, .external_lex_state = 3}, - [1835] = {.lex_state = 127, .external_lex_state = 3}, - [1836] = {.lex_state = 127, .external_lex_state = 4}, - [1837] = {.lex_state = 127, .external_lex_state = 4}, - [1838] = {.lex_state = 127, .external_lex_state = 4}, - [1839] = {.lex_state = 128, .external_lex_state = 5}, - [1840] = {.lex_state = 127, .external_lex_state = 4}, - [1841] = {.lex_state = 127, .external_lex_state = 4}, - [1842] = {.lex_state = 128, .external_lex_state = 5}, - [1843] = {.lex_state = 127, .external_lex_state = 4}, - [1844] = {.lex_state = 127, .external_lex_state = 4}, - [1845] = {.lex_state = 128, .external_lex_state = 5}, - [1846] = {.lex_state = 127, .external_lex_state = 4}, - [1847] = {.lex_state = 127, .external_lex_state = 4}, - [1848] = {.lex_state = 127, .external_lex_state = 4}, - [1849] = {.lex_state = 127, .external_lex_state = 4}, - [1850] = {.lex_state = 127, .external_lex_state = 4}, - [1851] = {.lex_state = 127, .external_lex_state = 3}, - [1852] = {.lex_state = 127, .external_lex_state = 4}, - [1853] = {.lex_state = 127, .external_lex_state = 4}, - [1854] = {.lex_state = 127, .external_lex_state = 3}, - [1855] = {.lex_state = 127, .external_lex_state = 3}, - [1856] = {.lex_state = 128, .external_lex_state = 5}, - [1857] = {.lex_state = 128, .external_lex_state = 5}, - [1858] = {.lex_state = 127, .external_lex_state = 4}, - [1859] = {.lex_state = 127, .external_lex_state = 4}, - [1860] = {.lex_state = 128, .external_lex_state = 2}, - [1861] = {.lex_state = 127, .external_lex_state = 4}, - [1862] = {.lex_state = 127, .external_lex_state = 4}, - [1863] = {.lex_state = 127, .external_lex_state = 4}, - [1864] = {.lex_state = 127, .external_lex_state = 4}, - [1865] = {.lex_state = 127, .external_lex_state = 4}, - [1866] = {.lex_state = 127, .external_lex_state = 4}, - [1867] = {.lex_state = 127, .external_lex_state = 4}, - [1868] = {.lex_state = 127, .external_lex_state = 4}, - [1869] = {.lex_state = 127, .external_lex_state = 4}, - [1870] = {.lex_state = 127, .external_lex_state = 4}, - [1871] = {.lex_state = 127, .external_lex_state = 4}, - [1872] = {.lex_state = 127, .external_lex_state = 4}, - [1873] = {.lex_state = 127, .external_lex_state = 4}, - [1874] = {.lex_state = 127, .external_lex_state = 4}, - [1875] = {.lex_state = 127, .external_lex_state = 4}, - [1876] = {.lex_state = 127, .external_lex_state = 4}, - [1877] = {.lex_state = 127, .external_lex_state = 4}, - [1878] = {.lex_state = 127, .external_lex_state = 4}, - [1879] = {.lex_state = 127, .external_lex_state = 4}, - [1880] = {.lex_state = 127, .external_lex_state = 4}, - [1881] = {.lex_state = 127, .external_lex_state = 3}, - [1882] = {.lex_state = 127, .external_lex_state = 3}, - [1883] = {.lex_state = 127, .external_lex_state = 4}, - [1884] = {.lex_state = 127, .external_lex_state = 4}, - [1885] = {.lex_state = 127, .external_lex_state = 4}, - [1886] = {.lex_state = 127, .external_lex_state = 4}, - [1887] = {.lex_state = 127, .external_lex_state = 4}, - [1888] = {.lex_state = 127, .external_lex_state = 4}, - [1889] = {.lex_state = 127, .external_lex_state = 4}, - [1890] = {.lex_state = 127, .external_lex_state = 4}, - [1891] = {.lex_state = 127, .external_lex_state = 4}, - [1892] = {.lex_state = 127, .external_lex_state = 4}, - [1893] = {.lex_state = 127, .external_lex_state = 4}, - [1894] = {.lex_state = 127, .external_lex_state = 4}, - [1895] = {.lex_state = 127, .external_lex_state = 4}, - [1896] = {.lex_state = 127, .external_lex_state = 4}, - [1897] = {.lex_state = 127, .external_lex_state = 4}, - [1898] = {.lex_state = 127, .external_lex_state = 4}, - [1899] = {.lex_state = 127, .external_lex_state = 4}, - [1900] = {.lex_state = 127, .external_lex_state = 4}, - [1901] = {.lex_state = 127, .external_lex_state = 4}, - [1902] = {.lex_state = 127, .external_lex_state = 4}, - [1903] = {.lex_state = 127, .external_lex_state = 4}, - [1904] = {.lex_state = 127, .external_lex_state = 4}, - [1905] = {.lex_state = 127, .external_lex_state = 4}, - [1906] = {.lex_state = 127, .external_lex_state = 4}, - [1907] = {.lex_state = 127, .external_lex_state = 4}, - [1908] = {.lex_state = 127, .external_lex_state = 4}, - [1909] = {.lex_state = 127, .external_lex_state = 4}, - [1910] = {.lex_state = 127, .external_lex_state = 4}, - [1911] = {.lex_state = 127, .external_lex_state = 4}, - [1912] = {.lex_state = 127, .external_lex_state = 4}, - [1913] = {.lex_state = 127, .external_lex_state = 4}, - [1914] = {.lex_state = 127, .external_lex_state = 4}, - [1915] = {.lex_state = 127, .external_lex_state = 4}, - [1916] = {.lex_state = 127, .external_lex_state = 4}, - [1917] = {.lex_state = 127, .external_lex_state = 4}, - [1918] = {.lex_state = 127, .external_lex_state = 4}, - [1919] = {.lex_state = 127, .external_lex_state = 4}, - [1920] = {.lex_state = 127, .external_lex_state = 4}, - [1921] = {.lex_state = 127, .external_lex_state = 4}, - [1922] = {.lex_state = 127, .external_lex_state = 4}, - [1923] = {.lex_state = 127, .external_lex_state = 4}, - [1924] = {.lex_state = 127, .external_lex_state = 4}, - [1925] = {.lex_state = 127, .external_lex_state = 4}, - [1926] = {.lex_state = 127, .external_lex_state = 4}, - [1927] = {.lex_state = 127, .external_lex_state = 4}, - [1928] = {.lex_state = 127, .external_lex_state = 4}, - [1929] = {.lex_state = 127, .external_lex_state = 4}, - [1930] = {.lex_state = 127, .external_lex_state = 4}, - [1931] = {.lex_state = 127, .external_lex_state = 4}, - [1932] = {.lex_state = 127, .external_lex_state = 4}, - [1933] = {.lex_state = 127, .external_lex_state = 4}, - [1934] = {.lex_state = 127, .external_lex_state = 4}, - [1935] = {.lex_state = 127, .external_lex_state = 4}, - [1936] = {.lex_state = 127, .external_lex_state = 4}, - [1937] = {.lex_state = 127, .external_lex_state = 4}, - [1938] = {.lex_state = 127, .external_lex_state = 4}, - [1939] = {.lex_state = 127, .external_lex_state = 4}, - [1940] = {.lex_state = 127, .external_lex_state = 4}, - [1941] = {.lex_state = 127, .external_lex_state = 4}, - [1942] = {.lex_state = 127, .external_lex_state = 4}, - [1943] = {.lex_state = 127, .external_lex_state = 4}, - [1944] = {.lex_state = 127, .external_lex_state = 4}, - [1945] = {.lex_state = 127, .external_lex_state = 4}, - [1946] = {.lex_state = 127, .external_lex_state = 4}, - [1947] = {.lex_state = 127, .external_lex_state = 4}, - [1948] = {.lex_state = 127, .external_lex_state = 4}, - [1949] = {.lex_state = 127, .external_lex_state = 4}, - [1950] = {.lex_state = 127, .external_lex_state = 4}, - [1951] = {.lex_state = 127, .external_lex_state = 4}, - [1952] = {.lex_state = 127, .external_lex_state = 4}, - [1953] = {.lex_state = 127, .external_lex_state = 4}, - [1954] = {.lex_state = 127, .external_lex_state = 4}, - [1955] = {.lex_state = 127, .external_lex_state = 4}, - [1956] = {.lex_state = 127, .external_lex_state = 4}, - [1957] = {.lex_state = 127, .external_lex_state = 4}, - [1958] = {.lex_state = 127, .external_lex_state = 4}, - [1959] = {.lex_state = 127, .external_lex_state = 4}, - [1960] = {.lex_state = 127, .external_lex_state = 4}, - [1961] = {.lex_state = 127, .external_lex_state = 4}, - [1962] = {.lex_state = 127, .external_lex_state = 4}, - [1963] = {.lex_state = 127, .external_lex_state = 4}, - [1964] = {.lex_state = 127, .external_lex_state = 4}, - [1965] = {.lex_state = 127, .external_lex_state = 4}, - [1966] = {.lex_state = 127, .external_lex_state = 4}, - [1967] = {.lex_state = 127, .external_lex_state = 3}, - [1968] = {.lex_state = 127, .external_lex_state = 4}, - [1969] = {.lex_state = 127, .external_lex_state = 4}, - [1970] = {.lex_state = 127, .external_lex_state = 4}, - [1971] = {.lex_state = 127, .external_lex_state = 4}, - [1972] = {.lex_state = 127, .external_lex_state = 4}, - [1973] = {.lex_state = 127, .external_lex_state = 4}, - [1974] = {.lex_state = 127, .external_lex_state = 4}, - [1975] = {.lex_state = 128, .external_lex_state = 2}, - [1976] = {.lex_state = 127, .external_lex_state = 4}, - [1977] = {.lex_state = 127, .external_lex_state = 3}, - [1978] = {.lex_state = 127, .external_lex_state = 4}, - [1979] = {.lex_state = 127, .external_lex_state = 3}, - [1980] = {.lex_state = 127, .external_lex_state = 3}, - [1981] = {.lex_state = 127, .external_lex_state = 4}, - [1982] = {.lex_state = 127, .external_lex_state = 4}, - [1983] = {.lex_state = 127, .external_lex_state = 4}, - [1984] = {.lex_state = 128, .external_lex_state = 2}, - [1985] = {.lex_state = 128, .external_lex_state = 2}, - [1986] = {.lex_state = 127, .external_lex_state = 3}, - [1987] = {.lex_state = 128, .external_lex_state = 5}, - [1988] = {.lex_state = 128, .external_lex_state = 5}, - [1989] = {.lex_state = 128, .external_lex_state = 5}, - [1990] = {.lex_state = 128, .external_lex_state = 5}, - [1991] = {.lex_state = 127, .external_lex_state = 4}, - [1992] = {.lex_state = 127, .external_lex_state = 4}, - [1993] = {.lex_state = 127, .external_lex_state = 3}, - [1994] = {.lex_state = 128, .external_lex_state = 5}, - [1995] = {.lex_state = 127, .external_lex_state = 3}, - [1996] = {.lex_state = 127, .external_lex_state = 3}, - [1997] = {.lex_state = 128, .external_lex_state = 2}, - [1998] = {.lex_state = 127, .external_lex_state = 4}, - [1999] = {.lex_state = 127, .external_lex_state = 3}, - [2000] = {.lex_state = 127, .external_lex_state = 3}, - [2001] = {.lex_state = 127, .external_lex_state = 4}, - [2002] = {.lex_state = 127, .external_lex_state = 4}, - [2003] = {.lex_state = 128, .external_lex_state = 2}, - [2004] = {.lex_state = 127, .external_lex_state = 3}, - [2005] = {.lex_state = 127, .external_lex_state = 3}, - [2006] = {.lex_state = 127, .external_lex_state = 4}, - [2007] = {.lex_state = 127, .external_lex_state = 4}, - [2008] = {.lex_state = 127, .external_lex_state = 4}, - [2009] = {.lex_state = 127, .external_lex_state = 4}, - [2010] = {.lex_state = 128, .external_lex_state = 2}, - [2011] = {.lex_state = 127, .external_lex_state = 4}, - [2012] = {.lex_state = 127, .external_lex_state = 4}, - [2013] = {.lex_state = 127, .external_lex_state = 4}, - [2014] = {.lex_state = 127, .external_lex_state = 4}, - [2015] = {.lex_state = 127, .external_lex_state = 3}, - [2016] = {.lex_state = 127, .external_lex_state = 4}, - [2017] = {.lex_state = 128, .external_lex_state = 2}, - [2018] = {.lex_state = 128, .external_lex_state = 5}, - [2019] = {.lex_state = 128, .external_lex_state = 5}, - [2020] = {.lex_state = 128, .external_lex_state = 5}, - [2021] = {.lex_state = 127, .external_lex_state = 3}, - [2022] = {.lex_state = 127, .external_lex_state = 4}, - [2023] = {.lex_state = 128, .external_lex_state = 5}, - [2024] = {.lex_state = 128, .external_lex_state = 5}, - [2025] = {.lex_state = 128, .external_lex_state = 5}, - [2026] = {.lex_state = 127, .external_lex_state = 4}, - [2027] = {.lex_state = 127, .external_lex_state = 4}, - [2028] = {.lex_state = 127, .external_lex_state = 4}, - [2029] = {.lex_state = 127, .external_lex_state = 4}, - [2030] = {.lex_state = 127, .external_lex_state = 3}, - [2031] = {.lex_state = 127, .external_lex_state = 3}, - [2032] = {.lex_state = 127, .external_lex_state = 3}, - [2033] = {.lex_state = 127, .external_lex_state = 3}, - [2034] = {.lex_state = 127, .external_lex_state = 3}, - [2035] = {.lex_state = 127, .external_lex_state = 3}, - [2036] = {.lex_state = 127, .external_lex_state = 3}, - [2037] = {.lex_state = 127, .external_lex_state = 3}, - [2038] = {.lex_state = 127, .external_lex_state = 3}, - [2039] = {.lex_state = 127, .external_lex_state = 3}, - [2040] = {.lex_state = 127, .external_lex_state = 3}, - [2041] = {.lex_state = 127, .external_lex_state = 3}, - [2042] = {.lex_state = 127, .external_lex_state = 3}, - [2043] = {.lex_state = 127, .external_lex_state = 3}, - [2044] = {.lex_state = 127, .external_lex_state = 3}, - [2045] = {.lex_state = 127, .external_lex_state = 3}, - [2046] = {.lex_state = 127, .external_lex_state = 3}, - [2047] = {.lex_state = 127, .external_lex_state = 3}, - [2048] = {.lex_state = 127, .external_lex_state = 3}, - [2049] = {.lex_state = 127, .external_lex_state = 3}, - [2050] = {.lex_state = 127, .external_lex_state = 3}, - [2051] = {.lex_state = 127, .external_lex_state = 3}, - [2052] = {.lex_state = 127, .external_lex_state = 3}, - [2053] = {.lex_state = 127, .external_lex_state = 3}, - [2054] = {.lex_state = 127, .external_lex_state = 3}, - [2055] = {.lex_state = 127, .external_lex_state = 4}, - [2056] = {.lex_state = 127, .external_lex_state = 3}, - [2057] = {.lex_state = 127, .external_lex_state = 3}, - [2058] = {.lex_state = 127, .external_lex_state = 4}, - [2059] = {.lex_state = 127, .external_lex_state = 3}, - [2060] = {.lex_state = 127, .external_lex_state = 4}, - [2061] = {.lex_state = 127, .external_lex_state = 4}, - [2062] = {.lex_state = 127, .external_lex_state = 3}, - [2063] = {.lex_state = 128, .external_lex_state = 5}, - [2064] = {.lex_state = 127, .external_lex_state = 4}, - [2065] = {.lex_state = 127, .external_lex_state = 4}, - [2066] = {.lex_state = 127, .external_lex_state = 4}, - [2067] = {.lex_state = 127, .external_lex_state = 3}, - [2068] = {.lex_state = 127, .external_lex_state = 4}, - [2069] = {.lex_state = 127, .external_lex_state = 3}, - [2070] = {.lex_state = 127, .external_lex_state = 3}, - [2071] = {.lex_state = 127, .external_lex_state = 4}, - [2072] = {.lex_state = 128, .external_lex_state = 2}, - [2073] = {.lex_state = 128, .external_lex_state = 5}, - [2074] = {.lex_state = 128, .external_lex_state = 2}, - [2075] = {.lex_state = 127, .external_lex_state = 3}, - [2076] = {.lex_state = 127, .external_lex_state = 3}, - [2077] = {.lex_state = 128, .external_lex_state = 5}, - [2078] = {.lex_state = 128, .external_lex_state = 5}, - [2079] = {.lex_state = 4, .external_lex_state = 4}, - [2080] = {.lex_state = 127, .external_lex_state = 4}, - [2081] = {.lex_state = 127, .external_lex_state = 4}, - [2082] = {.lex_state = 127, .external_lex_state = 3}, - [2083] = {.lex_state = 127, .external_lex_state = 4}, - [2084] = {.lex_state = 128, .external_lex_state = 5}, - [2085] = {.lex_state = 127, .external_lex_state = 4}, - [2086] = {.lex_state = 127, .external_lex_state = 4}, - [2087] = {.lex_state = 127, .external_lex_state = 4}, - [2088] = {.lex_state = 127, .external_lex_state = 4}, - [2089] = {.lex_state = 127, .external_lex_state = 4}, - [2090] = {.lex_state = 127, .external_lex_state = 4}, - [2091] = {.lex_state = 128, .external_lex_state = 5}, - [2092] = {.lex_state = 128, .external_lex_state = 5}, - [2093] = {.lex_state = 128, .external_lex_state = 5}, - [2094] = {.lex_state = 127, .external_lex_state = 4}, - [2095] = {.lex_state = 127, .external_lex_state = 4}, - [2096] = {.lex_state = 127, .external_lex_state = 4}, - [2097] = {.lex_state = 127, .external_lex_state = 4}, - [2098] = {.lex_state = 127, .external_lex_state = 4}, - [2099] = {.lex_state = 127, .external_lex_state = 4}, - [2100] = {.lex_state = 127, .external_lex_state = 4}, - [2101] = {.lex_state = 128, .external_lex_state = 2}, - [2102] = {.lex_state = 127, .external_lex_state = 4}, - [2103] = {.lex_state = 128, .external_lex_state = 2}, - [2104] = {.lex_state = 127, .external_lex_state = 4}, - [2105] = {.lex_state = 127, .external_lex_state = 4}, - [2106] = {.lex_state = 127, .external_lex_state = 3}, - [2107] = {.lex_state = 127, .external_lex_state = 3}, - [2108] = {.lex_state = 127, .external_lex_state = 4}, - [2109] = {.lex_state = 127, .external_lex_state = 4}, - [2110] = {.lex_state = 127, .external_lex_state = 4}, - [2111] = {.lex_state = 127, .external_lex_state = 4}, - [2112] = {.lex_state = 128, .external_lex_state = 5}, - [2113] = {.lex_state = 127, .external_lex_state = 3}, - [2114] = {.lex_state = 127, .external_lex_state = 4}, - [2115] = {.lex_state = 127, .external_lex_state = 4}, - [2116] = {.lex_state = 127, .external_lex_state = 4}, - [2117] = {.lex_state = 127, .external_lex_state = 4}, - [2118] = {.lex_state = 127, .external_lex_state = 4}, - [2119] = {.lex_state = 128, .external_lex_state = 2}, - [2120] = {.lex_state = 127, .external_lex_state = 4}, - [2121] = {.lex_state = 128, .external_lex_state = 2}, - [2122] = {.lex_state = 128, .external_lex_state = 5}, - [2123] = {.lex_state = 128, .external_lex_state = 5}, - [2124] = {.lex_state = 127, .external_lex_state = 4}, - [2125] = {.lex_state = 127, .external_lex_state = 4}, - [2126] = {.lex_state = 127, .external_lex_state = 4}, - [2127] = {.lex_state = 127, .external_lex_state = 4}, - [2128] = {.lex_state = 4, .external_lex_state = 4}, - [2129] = {.lex_state = 127, .external_lex_state = 4}, - [2130] = {.lex_state = 127, .external_lex_state = 4}, - [2131] = {.lex_state = 127, .external_lex_state = 4}, - [2132] = {.lex_state = 128, .external_lex_state = 5}, - [2133] = {.lex_state = 128, .external_lex_state = 5}, - [2134] = {.lex_state = 127, .external_lex_state = 4}, - [2135] = {.lex_state = 127, .external_lex_state = 3}, - [2136] = {.lex_state = 127, .external_lex_state = 3}, - [2137] = {.lex_state = 128, .external_lex_state = 5}, - [2138] = {.lex_state = 128, .external_lex_state = 5}, - [2139] = {.lex_state = 128, .external_lex_state = 5}, - [2140] = {.lex_state = 128, .external_lex_state = 5}, - [2141] = {.lex_state = 128, .external_lex_state = 5}, - [2142] = {.lex_state = 128, .external_lex_state = 5}, - [2143] = {.lex_state = 127, .external_lex_state = 4}, - [2144] = {.lex_state = 127, .external_lex_state = 3}, - [2145] = {.lex_state = 127, .external_lex_state = 3}, - [2146] = {.lex_state = 127, .external_lex_state = 3}, - [2147] = {.lex_state = 127, .external_lex_state = 4}, - [2148] = {.lex_state = 127, .external_lex_state = 3}, - [2149] = {.lex_state = 127, .external_lex_state = 4}, - [2150] = {.lex_state = 127, .external_lex_state = 4}, - [2151] = {.lex_state = 127, .external_lex_state = 4}, - [2152] = {.lex_state = 127, .external_lex_state = 3}, - [2153] = {.lex_state = 127, .external_lex_state = 3}, - [2154] = {.lex_state = 127, .external_lex_state = 4}, - [2155] = {.lex_state = 127, .external_lex_state = 4}, - [2156] = {.lex_state = 127, .external_lex_state = 4}, - [2157] = {.lex_state = 127, .external_lex_state = 4}, - [2158] = {.lex_state = 127, .external_lex_state = 4}, - [2159] = {.lex_state = 127, .external_lex_state = 4}, - [2160] = {.lex_state = 127, .external_lex_state = 4}, - [2161] = {.lex_state = 127, .external_lex_state = 3}, - [2162] = {.lex_state = 127, .external_lex_state = 4}, - [2163] = {.lex_state = 127, .external_lex_state = 3}, - [2164] = {.lex_state = 127, .external_lex_state = 4}, - [2165] = {.lex_state = 127, .external_lex_state = 4}, - [2166] = {.lex_state = 127, .external_lex_state = 4}, - [2167] = {.lex_state = 127, .external_lex_state = 4}, - [2168] = {.lex_state = 127, .external_lex_state = 4}, - [2169] = {.lex_state = 127, .external_lex_state = 4}, - [2170] = {.lex_state = 127, .external_lex_state = 4}, - [2171] = {.lex_state = 127, .external_lex_state = 4}, - [2172] = {.lex_state = 127, .external_lex_state = 4}, - [2173] = {.lex_state = 127, .external_lex_state = 3}, - [2174] = {.lex_state = 127, .external_lex_state = 4}, - [2175] = {.lex_state = 127, .external_lex_state = 4}, - [2176] = {.lex_state = 127, .external_lex_state = 3}, - [2177] = {.lex_state = 127, .external_lex_state = 4}, - [2178] = {.lex_state = 127, .external_lex_state = 4}, - [2179] = {.lex_state = 127, .external_lex_state = 4}, - [2180] = {.lex_state = 127, .external_lex_state = 4}, - [2181] = {.lex_state = 127, .external_lex_state = 4}, - [2182] = {.lex_state = 127, .external_lex_state = 4}, - [2183] = {.lex_state = 127, .external_lex_state = 4}, - [2184] = {.lex_state = 127, .external_lex_state = 4}, - [2185] = {.lex_state = 127, .external_lex_state = 4}, - [2186] = {.lex_state = 127, .external_lex_state = 3}, - [2187] = {.lex_state = 127, .external_lex_state = 4}, - [2188] = {.lex_state = 128, .external_lex_state = 2}, - [2189] = {.lex_state = 127, .external_lex_state = 4}, - [2190] = {.lex_state = 127, .external_lex_state = 4}, - [2191] = {.lex_state = 127, .external_lex_state = 4}, - [2192] = {.lex_state = 127, .external_lex_state = 4}, - [2193] = {.lex_state = 127, .external_lex_state = 4}, - [2194] = {.lex_state = 127, .external_lex_state = 3}, - [2195] = {.lex_state = 127, .external_lex_state = 3}, - [2196] = {.lex_state = 127, .external_lex_state = 3}, - [2197] = {.lex_state = 127, .external_lex_state = 3}, - [2198] = {.lex_state = 127, .external_lex_state = 3}, - [2199] = {.lex_state = 127, .external_lex_state = 4}, - [2200] = {.lex_state = 128, .external_lex_state = 2}, - [2201] = {.lex_state = 127, .external_lex_state = 3}, - [2202] = {.lex_state = 128, .external_lex_state = 5}, - [2203] = {.lex_state = 127, .external_lex_state = 3}, - [2204] = {.lex_state = 127, .external_lex_state = 3}, - [2205] = {.lex_state = 127, .external_lex_state = 3}, - [2206] = {.lex_state = 127, .external_lex_state = 3}, - [2207] = {.lex_state = 128, .external_lex_state = 2}, - [2208] = {.lex_state = 127, .external_lex_state = 3}, - [2209] = {.lex_state = 127, .external_lex_state = 3}, - [2210] = {.lex_state = 128, .external_lex_state = 5}, - [2211] = {.lex_state = 128, .external_lex_state = 5}, - [2212] = {.lex_state = 127, .external_lex_state = 3}, - [2213] = {.lex_state = 127, .external_lex_state = 3}, - [2214] = {.lex_state = 128, .external_lex_state = 5}, - [2215] = {.lex_state = 127, .external_lex_state = 4}, - [2216] = {.lex_state = 127, .external_lex_state = 3}, - [2217] = {.lex_state = 127, .external_lex_state = 4}, - [2218] = {.lex_state = 127, .external_lex_state = 4}, - [2219] = {.lex_state = 128, .external_lex_state = 5}, - [2220] = {.lex_state = 127, .external_lex_state = 4}, - [2221] = {.lex_state = 128, .external_lex_state = 5}, - [2222] = {.lex_state = 128, .external_lex_state = 5}, - [2223] = {.lex_state = 128, .external_lex_state = 5}, - [2224] = {.lex_state = 127, .external_lex_state = 4}, - [2225] = {.lex_state = 127, .external_lex_state = 4}, - [2226] = {.lex_state = 127, .external_lex_state = 4}, - [2227] = {.lex_state = 127, .external_lex_state = 3}, - [2228] = {.lex_state = 128, .external_lex_state = 5}, - [2229] = {.lex_state = 127, .external_lex_state = 4}, - [2230] = {.lex_state = 127, .external_lex_state = 3}, - [2231] = {.lex_state = 128, .external_lex_state = 5}, - [2232] = {.lex_state = 127, .external_lex_state = 3}, - [2233] = {.lex_state = 127, .external_lex_state = 3}, - [2234] = {.lex_state = 128, .external_lex_state = 5}, - [2235] = {.lex_state = 127, .external_lex_state = 3}, - [2236] = {.lex_state = 128, .external_lex_state = 5}, - [2237] = {.lex_state = 127, .external_lex_state = 4}, - [2238] = {.lex_state = 127, .external_lex_state = 4}, - [2239] = {.lex_state = 127, .external_lex_state = 4}, - [2240] = {.lex_state = 127, .external_lex_state = 4}, - [2241] = {.lex_state = 128, .external_lex_state = 5}, - [2242] = {.lex_state = 128, .external_lex_state = 5}, - [2243] = {.lex_state = 128, .external_lex_state = 5}, - [2244] = {.lex_state = 127, .external_lex_state = 3}, - [2245] = {.lex_state = 127, .external_lex_state = 3}, - [2246] = {.lex_state = 127, .external_lex_state = 3}, - [2247] = {.lex_state = 127, .external_lex_state = 3}, - [2248] = {.lex_state = 127, .external_lex_state = 3}, - [2249] = {.lex_state = 127, .external_lex_state = 3}, - [2250] = {.lex_state = 127, .external_lex_state = 3}, - [2251] = {.lex_state = 127, .external_lex_state = 3}, - [2252] = {.lex_state = 127, .external_lex_state = 3}, - [2253] = {.lex_state = 127, .external_lex_state = 3}, - [2254] = {.lex_state = 127, .external_lex_state = 3}, - [2255] = {.lex_state = 127, .external_lex_state = 3}, - [2256] = {.lex_state = 127, .external_lex_state = 3}, - [2257] = {.lex_state = 127, .external_lex_state = 3}, - [2258] = {.lex_state = 127, .external_lex_state = 3}, - [2259] = {.lex_state = 127, .external_lex_state = 3}, - [2260] = {.lex_state = 127, .external_lex_state = 3}, - [2261] = {.lex_state = 127, .external_lex_state = 3}, - [2262] = {.lex_state = 127, .external_lex_state = 3}, - [2263] = {.lex_state = 127, .external_lex_state = 3}, - [2264] = {.lex_state = 127, .external_lex_state = 3}, - [2265] = {.lex_state = 127, .external_lex_state = 3}, - [2266] = {.lex_state = 127, .external_lex_state = 3}, - [2267] = {.lex_state = 127, .external_lex_state = 3}, - [2268] = {.lex_state = 127, .external_lex_state = 3}, - [2269] = {.lex_state = 128, .external_lex_state = 2}, - [2270] = {.lex_state = 128, .external_lex_state = 5}, - [2271] = {.lex_state = 127, .external_lex_state = 4}, - [2272] = {.lex_state = 127, .external_lex_state = 4}, - [2273] = {.lex_state = 127, .external_lex_state = 4}, - [2274] = {.lex_state = 127, .external_lex_state = 4}, - [2275] = {.lex_state = 127, .external_lex_state = 4}, - [2276] = {.lex_state = 127, .external_lex_state = 4}, - [2277] = {.lex_state = 127, .external_lex_state = 4}, - [2278] = {.lex_state = 127, .external_lex_state = 3}, - [2279] = {.lex_state = 127, .external_lex_state = 3}, - [2280] = {.lex_state = 127, .external_lex_state = 3}, - [2281] = {.lex_state = 127, .external_lex_state = 3}, - [2282] = {.lex_state = 127, .external_lex_state = 3}, - [2283] = {.lex_state = 127, .external_lex_state = 3}, - [2284] = {.lex_state = 127, .external_lex_state = 4}, - [2285] = {.lex_state = 127, .external_lex_state = 3}, - [2286] = {.lex_state = 128, .external_lex_state = 2}, - [2287] = {.lex_state = 127, .external_lex_state = 3}, - [2288] = {.lex_state = 127, .external_lex_state = 4}, - [2289] = {.lex_state = 127, .external_lex_state = 3}, - [2290] = {.lex_state = 127, .external_lex_state = 3}, - [2291] = {.lex_state = 128, .external_lex_state = 5}, - [2292] = {.lex_state = 127, .external_lex_state = 3}, - [2293] = {.lex_state = 128, .external_lex_state = 5}, - [2294] = {.lex_state = 128, .external_lex_state = 5}, - [2295] = {.lex_state = 128, .external_lex_state = 5}, - [2296] = {.lex_state = 128, .external_lex_state = 5}, - [2297] = {.lex_state = 128, .external_lex_state = 5}, - [2298] = {.lex_state = 128, .external_lex_state = 5}, - [2299] = {.lex_state = 127, .external_lex_state = 3}, - [2300] = {.lex_state = 127, .external_lex_state = 3}, - [2301] = {.lex_state = 127, .external_lex_state = 4}, - [2302] = {.lex_state = 127, .external_lex_state = 3}, - [2303] = {.lex_state = 127, .external_lex_state = 4}, - [2304] = {.lex_state = 128, .external_lex_state = 5}, - [2305] = {.lex_state = 127, .external_lex_state = 4}, - [2306] = {.lex_state = 128, .external_lex_state = 2}, - [2307] = {.lex_state = 128, .external_lex_state = 2}, - [2308] = {.lex_state = 127, .external_lex_state = 4}, - [2309] = {.lex_state = 128, .external_lex_state = 2}, - [2310] = {.lex_state = 127, .external_lex_state = 4}, - [2311] = {.lex_state = 127, .external_lex_state = 4}, - [2312] = {.lex_state = 127, .external_lex_state = 4}, - [2313] = {.lex_state = 127, .external_lex_state = 3}, - [2314] = {.lex_state = 127, .external_lex_state = 4}, - [2315] = {.lex_state = 127, .external_lex_state = 4}, - [2316] = {.lex_state = 128, .external_lex_state = 5}, - [2317] = {.lex_state = 127, .external_lex_state = 4}, - [2318] = {.lex_state = 127, .external_lex_state = 3}, - [2319] = {.lex_state = 127, .external_lex_state = 4}, - [2320] = {.lex_state = 127, .external_lex_state = 4}, - [2321] = {.lex_state = 127, .external_lex_state = 3}, - [2322] = {.lex_state = 127, .external_lex_state = 4}, - [2323] = {.lex_state = 127, .external_lex_state = 3}, - [2324] = {.lex_state = 127, .external_lex_state = 4}, - [2325] = {.lex_state = 127, .external_lex_state = 3}, - [2326] = {.lex_state = 127, .external_lex_state = 4}, - [2327] = {.lex_state = 127, .external_lex_state = 3}, - [2328] = {.lex_state = 127, .external_lex_state = 3}, - [2329] = {.lex_state = 127, .external_lex_state = 3}, - [2330] = {.lex_state = 127, .external_lex_state = 4}, - [2331] = {.lex_state = 128, .external_lex_state = 5}, - [2332] = {.lex_state = 127, .external_lex_state = 3}, - [2333] = {.lex_state = 127, .external_lex_state = 4}, - [2334] = {.lex_state = 127, .external_lex_state = 4}, - [2335] = {.lex_state = 127, .external_lex_state = 4}, - [2336] = {.lex_state = 127, .external_lex_state = 3}, - [2337] = {.lex_state = 127, .external_lex_state = 3}, - [2338] = {.lex_state = 127, .external_lex_state = 3}, - [2339] = {.lex_state = 127, .external_lex_state = 3}, - [2340] = {.lex_state = 127, .external_lex_state = 3}, - [2341] = {.lex_state = 127, .external_lex_state = 3}, - [2342] = {.lex_state = 127, .external_lex_state = 3}, - [2343] = {.lex_state = 127, .external_lex_state = 3}, - [2344] = {.lex_state = 127, .external_lex_state = 3}, - [2345] = {.lex_state = 127, .external_lex_state = 3}, - [2346] = {.lex_state = 127, .external_lex_state = 4}, - [2347] = {.lex_state = 127, .external_lex_state = 3}, - [2348] = {.lex_state = 127, .external_lex_state = 3}, - [2349] = {.lex_state = 127, .external_lex_state = 3}, - [2350] = {.lex_state = 127, .external_lex_state = 4}, - [2351] = {.lex_state = 127, .external_lex_state = 4}, - [2352] = {.lex_state = 127, .external_lex_state = 3}, - [2353] = {.lex_state = 128, .external_lex_state = 5}, - [2354] = {.lex_state = 127, .external_lex_state = 4}, - [2355] = {.lex_state = 127, .external_lex_state = 3}, - [2356] = {.lex_state = 128, .external_lex_state = 5}, - [2357] = {.lex_state = 128, .external_lex_state = 2}, - [2358] = {.lex_state = 128, .external_lex_state = 2}, - [2359] = {.lex_state = 127, .external_lex_state = 3}, - [2360] = {.lex_state = 128, .external_lex_state = 5}, - [2361] = {.lex_state = 128, .external_lex_state = 5}, - [2362] = {.lex_state = 128, .external_lex_state = 5}, - [2363] = {.lex_state = 128, .external_lex_state = 5}, - [2364] = {.lex_state = 127, .external_lex_state = 4}, - [2365] = {.lex_state = 128, .external_lex_state = 5}, - [2366] = {.lex_state = 127, .external_lex_state = 4}, - [2367] = {.lex_state = 127, .external_lex_state = 3}, - [2368] = {.lex_state = 127, .external_lex_state = 3}, - [2369] = {.lex_state = 127, .external_lex_state = 3}, - [2370] = {.lex_state = 128, .external_lex_state = 2}, - [2371] = {.lex_state = 128, .external_lex_state = 5}, - [2372] = {.lex_state = 127, .external_lex_state = 4}, - [2373] = {.lex_state = 127, .external_lex_state = 3}, - [2374] = {.lex_state = 127, .external_lex_state = 3}, - [2375] = {.lex_state = 128, .external_lex_state = 5}, - [2376] = {.lex_state = 127, .external_lex_state = 3}, - [2377] = {.lex_state = 128, .external_lex_state = 5}, - [2378] = {.lex_state = 128, .external_lex_state = 2}, - [2379] = {.lex_state = 127, .external_lex_state = 4}, - [2380] = {.lex_state = 127, .external_lex_state = 4}, - [2381] = {.lex_state = 127, .external_lex_state = 3}, - [2382] = {.lex_state = 128, .external_lex_state = 2}, - [2383] = {.lex_state = 127, .external_lex_state = 3}, - [2384] = {.lex_state = 127, .external_lex_state = 3}, - [2385] = {.lex_state = 128, .external_lex_state = 2}, - [2386] = {.lex_state = 127, .external_lex_state = 4}, - [2387] = {.lex_state = 127, .external_lex_state = 3}, - [2388] = {.lex_state = 128, .external_lex_state = 5}, - [2389] = {.lex_state = 128, .external_lex_state = 5}, - [2390] = {.lex_state = 128, .external_lex_state = 5}, - [2391] = {.lex_state = 128, .external_lex_state = 5}, - [2392] = {.lex_state = 127, .external_lex_state = 4}, - [2393] = {.lex_state = 127, .external_lex_state = 4}, - [2394] = {.lex_state = 127, .external_lex_state = 3}, - [2395] = {.lex_state = 127, .external_lex_state = 3}, - [2396] = {.lex_state = 128, .external_lex_state = 5}, - [2397] = {.lex_state = 128, .external_lex_state = 5}, - [2398] = {.lex_state = 128, .external_lex_state = 5}, - [2399] = {.lex_state = 128, .external_lex_state = 5}, - [2400] = {.lex_state = 128, .external_lex_state = 2}, - [2401] = {.lex_state = 128, .external_lex_state = 2}, - [2402] = {.lex_state = 127, .external_lex_state = 3}, - [2403] = {.lex_state = 128, .external_lex_state = 2}, - [2404] = {.lex_state = 128, .external_lex_state = 5}, - [2405] = {.lex_state = 128, .external_lex_state = 5}, - [2406] = {.lex_state = 128, .external_lex_state = 5}, - [2407] = {.lex_state = 128, .external_lex_state = 5}, - [2408] = {.lex_state = 128, .external_lex_state = 5}, - [2409] = {.lex_state = 128, .external_lex_state = 5}, - [2410] = {.lex_state = 127, .external_lex_state = 4}, - [2411] = {.lex_state = 128, .external_lex_state = 5}, - [2412] = {.lex_state = 127, .external_lex_state = 3}, - [2413] = {.lex_state = 127, .external_lex_state = 4}, - [2414] = {.lex_state = 127, .external_lex_state = 3}, - [2415] = {.lex_state = 127, .external_lex_state = 3}, - [2416] = {.lex_state = 127, .external_lex_state = 3}, - [2417] = {.lex_state = 127, .external_lex_state = 3}, - [2418] = {.lex_state = 127, .external_lex_state = 3}, - [2419] = {.lex_state = 127, .external_lex_state = 3}, - [2420] = {.lex_state = 127, .external_lex_state = 3}, - [2421] = {.lex_state = 127, .external_lex_state = 3}, - [2422] = {.lex_state = 127, .external_lex_state = 3}, - [2423] = {.lex_state = 127, .external_lex_state = 3}, - [2424] = {.lex_state = 127, .external_lex_state = 3}, - [2425] = {.lex_state = 127, .external_lex_state = 3}, - [2426] = {.lex_state = 127, .external_lex_state = 3}, - [2427] = {.lex_state = 127, .external_lex_state = 3}, - [2428] = {.lex_state = 127, .external_lex_state = 3}, - [2429] = {.lex_state = 127, .external_lex_state = 3}, - [2430] = {.lex_state = 127, .external_lex_state = 3}, - [2431] = {.lex_state = 127, .external_lex_state = 3}, - [2432] = {.lex_state = 127, .external_lex_state = 3}, - [2433] = {.lex_state = 127, .external_lex_state = 3}, - [2434] = {.lex_state = 127, .external_lex_state = 3}, - [2435] = {.lex_state = 127, .external_lex_state = 3}, - [2436] = {.lex_state = 127, .external_lex_state = 3}, - [2437] = {.lex_state = 127, .external_lex_state = 3}, - [2438] = {.lex_state = 127, .external_lex_state = 3}, - [2439] = {.lex_state = 127, .external_lex_state = 3}, - [2440] = {.lex_state = 127, .external_lex_state = 3}, - [2441] = {.lex_state = 127, .external_lex_state = 3}, - [2442] = {.lex_state = 127, .external_lex_state = 3}, - [2443] = {.lex_state = 127, .external_lex_state = 4}, - [2444] = {.lex_state = 128, .external_lex_state = 2}, - [2445] = {.lex_state = 4, .external_lex_state = 3}, - [2446] = {.lex_state = 127, .external_lex_state = 3}, - [2447] = {.lex_state = 127, .external_lex_state = 3}, - [2448] = {.lex_state = 127, .external_lex_state = 3}, - [2449] = {.lex_state = 127, .external_lex_state = 3}, - [2450] = {.lex_state = 127, .external_lex_state = 3}, - [2451] = {.lex_state = 127, .external_lex_state = 3}, - [2452] = {.lex_state = 127, .external_lex_state = 3}, - [2453] = {.lex_state = 127, .external_lex_state = 3}, - [2454] = {.lex_state = 127, .external_lex_state = 3}, - [2455] = {.lex_state = 127, .external_lex_state = 3}, - [2456] = {.lex_state = 127, .external_lex_state = 3}, - [2457] = {.lex_state = 127, .external_lex_state = 3}, - [2458] = {.lex_state = 127, .external_lex_state = 3}, - [2459] = {.lex_state = 127, .external_lex_state = 3}, - [2460] = {.lex_state = 127, .external_lex_state = 3}, - [2461] = {.lex_state = 127, .external_lex_state = 3}, - [2462] = {.lex_state = 127, .external_lex_state = 3}, - [2463] = {.lex_state = 127, .external_lex_state = 3}, - [2464] = {.lex_state = 127, .external_lex_state = 3}, - [2465] = {.lex_state = 127, .external_lex_state = 3}, - [2466] = {.lex_state = 127, .external_lex_state = 3}, - [2467] = {.lex_state = 127, .external_lex_state = 3}, - [2468] = {.lex_state = 127, .external_lex_state = 3}, - [2469] = {.lex_state = 127, .external_lex_state = 3}, - [2470] = {.lex_state = 127, .external_lex_state = 3}, - [2471] = {.lex_state = 127, .external_lex_state = 3}, - [2472] = {.lex_state = 127, .external_lex_state = 3}, - [2473] = {.lex_state = 127, .external_lex_state = 3}, - [2474] = {.lex_state = 127, .external_lex_state = 3}, - [2475] = {.lex_state = 127, .external_lex_state = 3}, - [2476] = {.lex_state = 127, .external_lex_state = 3}, - [2477] = {.lex_state = 127, .external_lex_state = 4}, - [2478] = {.lex_state = 127, .external_lex_state = 3}, - [2479] = {.lex_state = 127, .external_lex_state = 3}, - [2480] = {.lex_state = 127, .external_lex_state = 3}, - [2481] = {.lex_state = 127, .external_lex_state = 3}, - [2482] = {.lex_state = 127, .external_lex_state = 3}, - [2483] = {.lex_state = 127, .external_lex_state = 3}, - [2484] = {.lex_state = 127, .external_lex_state = 3}, - [2485] = {.lex_state = 128, .external_lex_state = 2}, - [2486] = {.lex_state = 127, .external_lex_state = 3}, - [2487] = {.lex_state = 127, .external_lex_state = 3}, - [2488] = {.lex_state = 128, .external_lex_state = 2}, - [2489] = {.lex_state = 127, .external_lex_state = 3}, - [2490] = {.lex_state = 127, .external_lex_state = 3}, - [2491] = {.lex_state = 127, .external_lex_state = 3}, - [2492] = {.lex_state = 127, .external_lex_state = 3}, - [2493] = {.lex_state = 127, .external_lex_state = 3}, - [2494] = {.lex_state = 127, .external_lex_state = 3}, - [2495] = {.lex_state = 127, .external_lex_state = 3}, - [2496] = {.lex_state = 127, .external_lex_state = 3}, - [2497] = {.lex_state = 127, .external_lex_state = 3}, - [2498] = {.lex_state = 127, .external_lex_state = 3}, - [2499] = {.lex_state = 127, .external_lex_state = 3}, - [2500] = {.lex_state = 127, .external_lex_state = 3}, - [2501] = {.lex_state = 127, .external_lex_state = 3}, - [2502] = {.lex_state = 127, .external_lex_state = 3}, - [2503] = {.lex_state = 127, .external_lex_state = 3}, - [2504] = {.lex_state = 127, .external_lex_state = 3}, - [2505] = {.lex_state = 127, .external_lex_state = 3}, - [2506] = {.lex_state = 127, .external_lex_state = 3}, - [2507] = {.lex_state = 127, .external_lex_state = 3}, - [2508] = {.lex_state = 127, .external_lex_state = 3}, - [2509] = {.lex_state = 127, .external_lex_state = 3}, - [2510] = {.lex_state = 127, .external_lex_state = 3}, - [2511] = {.lex_state = 127, .external_lex_state = 3}, - [2512] = {.lex_state = 127, .external_lex_state = 3}, - [2513] = {.lex_state = 128, .external_lex_state = 5}, - [2514] = {.lex_state = 128, .external_lex_state = 5}, - [2515] = {.lex_state = 128, .external_lex_state = 5}, - [2516] = {.lex_state = 128, .external_lex_state = 5}, - [2517] = {.lex_state = 127, .external_lex_state = 3}, - [2518] = {.lex_state = 127, .external_lex_state = 3}, - [2519] = {.lex_state = 127, .external_lex_state = 4}, - [2520] = {.lex_state = 127, .external_lex_state = 3}, - [2521] = {.lex_state = 128, .external_lex_state = 2}, - [2522] = {.lex_state = 127, .external_lex_state = 3}, - [2523] = {.lex_state = 128, .external_lex_state = 5}, - [2524] = {.lex_state = 127, .external_lex_state = 3}, - [2525] = {.lex_state = 128, .external_lex_state = 5}, - [2526] = {.lex_state = 127, .external_lex_state = 3}, - [2527] = {.lex_state = 127, .external_lex_state = 3}, - [2528] = {.lex_state = 127, .external_lex_state = 3}, - [2529] = {.lex_state = 127, .external_lex_state = 3}, - [2530] = {.lex_state = 127, .external_lex_state = 3}, - [2531] = {.lex_state = 128, .external_lex_state = 2}, - [2532] = {.lex_state = 127, .external_lex_state = 3}, - [2533] = {.lex_state = 128, .external_lex_state = 2}, - [2534] = {.lex_state = 127, .external_lex_state = 3}, - [2535] = {.lex_state = 127, .external_lex_state = 3}, - [2536] = {.lex_state = 127, .external_lex_state = 3}, - [2537] = {.lex_state = 127, .external_lex_state = 3}, - [2538] = {.lex_state = 128, .external_lex_state = 2}, - [2539] = {.lex_state = 127, .external_lex_state = 3}, - [2540] = {.lex_state = 128, .external_lex_state = 5}, - [2541] = {.lex_state = 128, .external_lex_state = 5}, - [2542] = {.lex_state = 128, .external_lex_state = 5}, - [2543] = {.lex_state = 128, .external_lex_state = 5}, - [2544] = {.lex_state = 128, .external_lex_state = 2}, - [2545] = {.lex_state = 127, .external_lex_state = 3}, - [2546] = {.lex_state = 127, .external_lex_state = 3}, - [2547] = {.lex_state = 127, .external_lex_state = 3}, - [2548] = {.lex_state = 127, .external_lex_state = 3}, - [2549] = {.lex_state = 127, .external_lex_state = 3}, - [2550] = {.lex_state = 127, .external_lex_state = 3}, - [2551] = {.lex_state = 127, .external_lex_state = 3}, - [2552] = {.lex_state = 127, .external_lex_state = 3}, - [2553] = {.lex_state = 128, .external_lex_state = 5}, - [2554] = {.lex_state = 127, .external_lex_state = 3}, - [2555] = {.lex_state = 128, .external_lex_state = 2}, - [2556] = {.lex_state = 127, .external_lex_state = 3}, - [2557] = {.lex_state = 127, .external_lex_state = 3}, - [2558] = {.lex_state = 127, .external_lex_state = 3}, - [2559] = {.lex_state = 128, .external_lex_state = 5}, - [2560] = {.lex_state = 127, .external_lex_state = 3}, - [2561] = {.lex_state = 127, .external_lex_state = 3}, - [2562] = {.lex_state = 128, .external_lex_state = 5}, - [2563] = {.lex_state = 128, .external_lex_state = 2}, - [2564] = {.lex_state = 128, .external_lex_state = 5}, - [2565] = {.lex_state = 4, .external_lex_state = 3}, - [2566] = {.lex_state = 128, .external_lex_state = 5}, - [2567] = {.lex_state = 127, .external_lex_state = 3}, - [2568] = {.lex_state = 128, .external_lex_state = 2}, - [2569] = {.lex_state = 128, .external_lex_state = 2}, - [2570] = {.lex_state = 128, .external_lex_state = 2}, - [2571] = {.lex_state = 128, .external_lex_state = 2}, - [2572] = {.lex_state = 128, .external_lex_state = 5}, - [2573] = {.lex_state = 128, .external_lex_state = 2}, - [2574] = {.lex_state = 127, .external_lex_state = 3}, - [2575] = {.lex_state = 128, .external_lex_state = 5}, - [2576] = {.lex_state = 128, .external_lex_state = 5}, - [2577] = {.lex_state = 128, .external_lex_state = 5}, - [2578] = {.lex_state = 127, .external_lex_state = 3}, - [2579] = {.lex_state = 128, .external_lex_state = 5}, - [2580] = {.lex_state = 128, .external_lex_state = 5}, - [2581] = {.lex_state = 128, .external_lex_state = 5}, - [2582] = {.lex_state = 128, .external_lex_state = 5}, - [2583] = {.lex_state = 128, .external_lex_state = 2}, - [2584] = {.lex_state = 128, .external_lex_state = 5}, - [2585] = {.lex_state = 128, .external_lex_state = 2}, - [2586] = {.lex_state = 128, .external_lex_state = 5}, - [2587] = {.lex_state = 127, .external_lex_state = 3}, - [2588] = {.lex_state = 128, .external_lex_state = 2}, - [2589] = {.lex_state = 128, .external_lex_state = 2}, - [2590] = {.lex_state = 128, .external_lex_state = 5}, - [2591] = {.lex_state = 128, .external_lex_state = 2}, - [2592] = {.lex_state = 128, .external_lex_state = 2}, - [2593] = {.lex_state = 128, .external_lex_state = 5}, - [2594] = {.lex_state = 128, .external_lex_state = 5}, - [2595] = {.lex_state = 128, .external_lex_state = 2}, - [2596] = {.lex_state = 128, .external_lex_state = 2}, - [2597] = {.lex_state = 128, .external_lex_state = 2}, - [2598] = {.lex_state = 127, .external_lex_state = 3}, - [2599] = {.lex_state = 128, .external_lex_state = 2}, - [2600] = {.lex_state = 127, .external_lex_state = 3}, + [1456] = {.lex_state = 127, .external_lex_state = 2}, + [1457] = {.lex_state = 127, .external_lex_state = 2}, + [1458] = {.lex_state = 127, .external_lex_state = 2}, + [1459] = {.lex_state = 126, .external_lex_state = 3}, + [1460] = {.lex_state = 127, .external_lex_state = 2}, + [1461] = {.lex_state = 127, .external_lex_state = 2}, + [1462] = {.lex_state = 127, .external_lex_state = 2}, + [1463] = {.lex_state = 126, .external_lex_state = 3}, + [1464] = {.lex_state = 127, .external_lex_state = 5}, + [1465] = {.lex_state = 126, .external_lex_state = 3}, + [1466] = {.lex_state = 126, .external_lex_state = 3}, + [1467] = {.lex_state = 127, .external_lex_state = 5}, + [1468] = {.lex_state = 126, .external_lex_state = 4}, + [1469] = {.lex_state = 126, .external_lex_state = 3}, + [1470] = {.lex_state = 126, .external_lex_state = 4}, + [1471] = {.lex_state = 126, .external_lex_state = 3}, + [1472] = {.lex_state = 126, .external_lex_state = 3}, + [1473] = {.lex_state = 126, .external_lex_state = 3}, + [1474] = {.lex_state = 126, .external_lex_state = 3}, + [1475] = {.lex_state = 126, .external_lex_state = 3}, + [1476] = {.lex_state = 126, .external_lex_state = 4}, + [1477] = {.lex_state = 126, .external_lex_state = 3}, + [1478] = {.lex_state = 126, .external_lex_state = 3}, + [1479] = {.lex_state = 126, .external_lex_state = 3}, + [1480] = {.lex_state = 126, .external_lex_state = 3}, + [1481] = {.lex_state = 126, .external_lex_state = 3}, + [1482] = {.lex_state = 126, .external_lex_state = 3}, + [1483] = {.lex_state = 126, .external_lex_state = 3}, + [1484] = {.lex_state = 126, .external_lex_state = 3}, + [1485] = {.lex_state = 126, .external_lex_state = 3}, + [1486] = {.lex_state = 127, .external_lex_state = 2}, + [1487] = {.lex_state = 126, .external_lex_state = 3}, + [1488] = {.lex_state = 126, .external_lex_state = 3}, + [1489] = {.lex_state = 126, .external_lex_state = 3}, + [1490] = {.lex_state = 126, .external_lex_state = 3}, + [1491] = {.lex_state = 126, .external_lex_state = 3}, + [1492] = {.lex_state = 126, .external_lex_state = 3}, + [1493] = {.lex_state = 126, .external_lex_state = 3}, + [1494] = {.lex_state = 126, .external_lex_state = 3}, + [1495] = {.lex_state = 126, .external_lex_state = 3}, + [1496] = {.lex_state = 126, .external_lex_state = 3}, + [1497] = {.lex_state = 126, .external_lex_state = 3}, + [1498] = {.lex_state = 126, .external_lex_state = 3}, + [1499] = {.lex_state = 126, .external_lex_state = 3}, + [1500] = {.lex_state = 126, .external_lex_state = 3}, + [1501] = {.lex_state = 126, .external_lex_state = 3}, + [1502] = {.lex_state = 126, .external_lex_state = 3}, + [1503] = {.lex_state = 126, .external_lex_state = 3}, + [1504] = {.lex_state = 126, .external_lex_state = 3}, + [1505] = {.lex_state = 126, .external_lex_state = 3}, + [1506] = {.lex_state = 126, .external_lex_state = 3}, + [1507] = {.lex_state = 126, .external_lex_state = 3}, + [1508] = {.lex_state = 126, .external_lex_state = 3}, + [1509] = {.lex_state = 126, .external_lex_state = 3}, + [1510] = {.lex_state = 126, .external_lex_state = 3}, + [1511] = {.lex_state = 126, .external_lex_state = 3}, + [1512] = {.lex_state = 126, .external_lex_state = 3}, + [1513] = {.lex_state = 126, .external_lex_state = 3}, + [1514] = {.lex_state = 126, .external_lex_state = 4}, + [1515] = {.lex_state = 126, .external_lex_state = 3}, + [1516] = {.lex_state = 126, .external_lex_state = 3}, + [1517] = {.lex_state = 126, .external_lex_state = 3}, + [1518] = {.lex_state = 126, .external_lex_state = 3}, + [1519] = {.lex_state = 126, .external_lex_state = 3}, + [1520] = {.lex_state = 126, .external_lex_state = 3}, + [1521] = {.lex_state = 126, .external_lex_state = 3}, + [1522] = {.lex_state = 126, .external_lex_state = 3}, + [1523] = {.lex_state = 126, .external_lex_state = 3}, + [1524] = {.lex_state = 126, .external_lex_state = 3}, + [1525] = {.lex_state = 126, .external_lex_state = 3}, + [1526] = {.lex_state = 126, .external_lex_state = 3}, + [1527] = {.lex_state = 126, .external_lex_state = 3}, + [1528] = {.lex_state = 126, .external_lex_state = 3}, + [1529] = {.lex_state = 126, .external_lex_state = 3}, + [1530] = {.lex_state = 126, .external_lex_state = 3}, + [1531] = {.lex_state = 126, .external_lex_state = 3}, + [1532] = {.lex_state = 126, .external_lex_state = 3}, + [1533] = {.lex_state = 126, .external_lex_state = 3}, + [1534] = {.lex_state = 126, .external_lex_state = 4}, + [1535] = {.lex_state = 126, .external_lex_state = 3}, + [1536] = {.lex_state = 126, .external_lex_state = 3}, + [1537] = {.lex_state = 126, .external_lex_state = 3}, + [1538] = {.lex_state = 126, .external_lex_state = 4}, + [1539] = {.lex_state = 126, .external_lex_state = 3}, + [1540] = {.lex_state = 126, .external_lex_state = 3}, + [1541] = {.lex_state = 126, .external_lex_state = 3}, + [1542] = {.lex_state = 126, .external_lex_state = 4}, + [1543] = {.lex_state = 126, .external_lex_state = 3}, + [1544] = {.lex_state = 126, .external_lex_state = 3}, + [1545] = {.lex_state = 126, .external_lex_state = 3}, + [1546] = {.lex_state = 126, .external_lex_state = 3}, + [1547] = {.lex_state = 126, .external_lex_state = 3}, + [1548] = {.lex_state = 126, .external_lex_state = 3}, + [1549] = {.lex_state = 126, .external_lex_state = 3}, + [1550] = {.lex_state = 126, .external_lex_state = 3}, + [1551] = {.lex_state = 126, .external_lex_state = 3}, + [1552] = {.lex_state = 126, .external_lex_state = 3}, + [1553] = {.lex_state = 126, .external_lex_state = 3}, + [1554] = {.lex_state = 126, .external_lex_state = 3}, + [1555] = {.lex_state = 126, .external_lex_state = 3}, + [1556] = {.lex_state = 126, .external_lex_state = 3}, + [1557] = {.lex_state = 126, .external_lex_state = 3}, + [1558] = {.lex_state = 126, .external_lex_state = 3}, + [1559] = {.lex_state = 126, .external_lex_state = 3}, + [1560] = {.lex_state = 126, .external_lex_state = 3}, + [1561] = {.lex_state = 126, .external_lex_state = 3}, + [1562] = {.lex_state = 126, .external_lex_state = 3}, + [1563] = {.lex_state = 126, .external_lex_state = 3}, + [1564] = {.lex_state = 126, .external_lex_state = 3}, + [1565] = {.lex_state = 126, .external_lex_state = 3}, + [1566] = {.lex_state = 126, .external_lex_state = 3}, + [1567] = {.lex_state = 126, .external_lex_state = 3}, + [1568] = {.lex_state = 126, .external_lex_state = 3}, + [1569] = {.lex_state = 126, .external_lex_state = 3}, + [1570] = {.lex_state = 126, .external_lex_state = 3}, + [1571] = {.lex_state = 126, .external_lex_state = 3}, + [1572] = {.lex_state = 126, .external_lex_state = 3}, + [1573] = {.lex_state = 126, .external_lex_state = 3}, + [1574] = {.lex_state = 126, .external_lex_state = 3}, + [1575] = {.lex_state = 126, .external_lex_state = 3}, + [1576] = {.lex_state = 126, .external_lex_state = 3}, + [1577] = {.lex_state = 126, .external_lex_state = 3}, + [1578] = {.lex_state = 126, .external_lex_state = 3}, + [1579] = {.lex_state = 126, .external_lex_state = 3}, + [1580] = {.lex_state = 126, .external_lex_state = 3}, + [1581] = {.lex_state = 126, .external_lex_state = 3}, + [1582] = {.lex_state = 126, .external_lex_state = 3}, + [1583] = {.lex_state = 126, .external_lex_state = 3}, + [1584] = {.lex_state = 126, .external_lex_state = 3}, + [1585] = {.lex_state = 126, .external_lex_state = 3}, + [1586] = {.lex_state = 126, .external_lex_state = 4}, + [1587] = {.lex_state = 126, .external_lex_state = 3}, + [1588] = {.lex_state = 126, .external_lex_state = 3}, + [1589] = {.lex_state = 126, .external_lex_state = 3}, + [1590] = {.lex_state = 126, .external_lex_state = 3}, + [1591] = {.lex_state = 126, .external_lex_state = 3}, + [1592] = {.lex_state = 126, .external_lex_state = 3}, + [1593] = {.lex_state = 126, .external_lex_state = 3}, + [1594] = {.lex_state = 126, .external_lex_state = 3}, + [1595] = {.lex_state = 126, .external_lex_state = 3}, + [1596] = {.lex_state = 126, .external_lex_state = 3}, + [1597] = {.lex_state = 126, .external_lex_state = 3}, + [1598] = {.lex_state = 126, .external_lex_state = 3}, + [1599] = {.lex_state = 126, .external_lex_state = 3}, + [1600] = {.lex_state = 126, .external_lex_state = 3}, + [1601] = {.lex_state = 126, .external_lex_state = 3}, + [1602] = {.lex_state = 126, .external_lex_state = 3}, + [1603] = {.lex_state = 126, .external_lex_state = 3}, + [1604] = {.lex_state = 126, .external_lex_state = 3}, + [1605] = {.lex_state = 126, .external_lex_state = 3}, + [1606] = {.lex_state = 126, .external_lex_state = 3}, + [1607] = {.lex_state = 126, .external_lex_state = 3}, + [1608] = {.lex_state = 126, .external_lex_state = 3}, + [1609] = {.lex_state = 126, .external_lex_state = 3}, + [1610] = {.lex_state = 126, .external_lex_state = 3}, + [1611] = {.lex_state = 126, .external_lex_state = 3}, + [1612] = {.lex_state = 126, .external_lex_state = 3}, + [1613] = {.lex_state = 126, .external_lex_state = 3}, + [1614] = {.lex_state = 126, .external_lex_state = 3}, + [1615] = {.lex_state = 126, .external_lex_state = 3}, + [1616] = {.lex_state = 126, .external_lex_state = 3}, + [1617] = {.lex_state = 126, .external_lex_state = 3}, + [1618] = {.lex_state = 126, .external_lex_state = 3}, + [1619] = {.lex_state = 126, .external_lex_state = 3}, + [1620] = {.lex_state = 126, .external_lex_state = 3}, + [1621] = {.lex_state = 126, .external_lex_state = 3}, + [1622] = {.lex_state = 126, .external_lex_state = 3}, + [1623] = {.lex_state = 126, .external_lex_state = 3}, + [1624] = {.lex_state = 126, .external_lex_state = 3}, + [1625] = {.lex_state = 126, .external_lex_state = 3}, + [1626] = {.lex_state = 126, .external_lex_state = 3}, + [1627] = {.lex_state = 126, .external_lex_state = 4}, + [1628] = {.lex_state = 126, .external_lex_state = 3}, + [1629] = {.lex_state = 126, .external_lex_state = 3}, + [1630] = {.lex_state = 126, .external_lex_state = 3}, + [1631] = {.lex_state = 126, .external_lex_state = 3}, + [1632] = {.lex_state = 126, .external_lex_state = 3}, + [1633] = {.lex_state = 126, .external_lex_state = 3}, + [1634] = {.lex_state = 126, .external_lex_state = 3}, + [1635] = {.lex_state = 126, .external_lex_state = 3}, + [1636] = {.lex_state = 126, .external_lex_state = 3}, + [1637] = {.lex_state = 126, .external_lex_state = 3}, + [1638] = {.lex_state = 126, .external_lex_state = 3}, + [1639] = {.lex_state = 126, .external_lex_state = 3}, + [1640] = {.lex_state = 126, .external_lex_state = 3}, + [1641] = {.lex_state = 126, .external_lex_state = 3}, + [1642] = {.lex_state = 126, .external_lex_state = 3}, + [1643] = {.lex_state = 126, .external_lex_state = 3}, + [1644] = {.lex_state = 126, .external_lex_state = 3}, + [1645] = {.lex_state = 126, .external_lex_state = 3}, + [1646] = {.lex_state = 126, .external_lex_state = 3}, + [1647] = {.lex_state = 126, .external_lex_state = 3}, + [1648] = {.lex_state = 126, .external_lex_state = 3}, + [1649] = {.lex_state = 126, .external_lex_state = 3}, + [1650] = {.lex_state = 126, .external_lex_state = 3}, + [1651] = {.lex_state = 126, .external_lex_state = 3}, + [1652] = {.lex_state = 126, .external_lex_state = 3}, + [1653] = {.lex_state = 126, .external_lex_state = 3}, + [1654] = {.lex_state = 126, .external_lex_state = 3}, + [1655] = {.lex_state = 126, .external_lex_state = 3}, + [1656] = {.lex_state = 126, .external_lex_state = 3}, + [1657] = {.lex_state = 126, .external_lex_state = 3}, + [1658] = {.lex_state = 126, .external_lex_state = 3}, + [1659] = {.lex_state = 126, .external_lex_state = 3}, + [1660] = {.lex_state = 126, .external_lex_state = 3}, + [1661] = {.lex_state = 126, .external_lex_state = 3}, + [1662] = {.lex_state = 126, .external_lex_state = 3}, + [1663] = {.lex_state = 126, .external_lex_state = 3}, + [1664] = {.lex_state = 126, .external_lex_state = 3}, + [1665] = {.lex_state = 126, .external_lex_state = 3}, + [1666] = {.lex_state = 126, .external_lex_state = 3}, + [1667] = {.lex_state = 126, .external_lex_state = 3}, + [1668] = {.lex_state = 126, .external_lex_state = 3}, + [1669] = {.lex_state = 126, .external_lex_state = 3}, + [1670] = {.lex_state = 126, .external_lex_state = 3}, + [1671] = {.lex_state = 126, .external_lex_state = 3}, + [1672] = {.lex_state = 126, .external_lex_state = 3}, + [1673] = {.lex_state = 126, .external_lex_state = 3}, + [1674] = {.lex_state = 126, .external_lex_state = 3}, + [1675] = {.lex_state = 126, .external_lex_state = 3}, + [1676] = {.lex_state = 126, .external_lex_state = 3}, + [1677] = {.lex_state = 126, .external_lex_state = 3}, + [1678] = {.lex_state = 126, .external_lex_state = 3}, + [1679] = {.lex_state = 127, .external_lex_state = 5}, + [1680] = {.lex_state = 126, .external_lex_state = 3}, + [1681] = {.lex_state = 126, .external_lex_state = 3}, + [1682] = {.lex_state = 126, .external_lex_state = 3}, + [1683] = {.lex_state = 126, .external_lex_state = 3}, + [1684] = {.lex_state = 126, .external_lex_state = 3}, + [1685] = {.lex_state = 126, .external_lex_state = 3}, + [1686] = {.lex_state = 126, .external_lex_state = 3}, + [1687] = {.lex_state = 126, .external_lex_state = 3}, + [1688] = {.lex_state = 126, .external_lex_state = 3}, + [1689] = {.lex_state = 126, .external_lex_state = 3}, + [1690] = {.lex_state = 126, .external_lex_state = 3}, + [1691] = {.lex_state = 126, .external_lex_state = 3}, + [1692] = {.lex_state = 126, .external_lex_state = 3}, + [1693] = {.lex_state = 126, .external_lex_state = 3}, + [1694] = {.lex_state = 126, .external_lex_state = 3}, + [1695] = {.lex_state = 126, .external_lex_state = 3}, + [1696] = {.lex_state = 126, .external_lex_state = 3}, + [1697] = {.lex_state = 126, .external_lex_state = 3}, + [1698] = {.lex_state = 126, .external_lex_state = 3}, + [1699] = {.lex_state = 126, .external_lex_state = 3}, + [1700] = {.lex_state = 126, .external_lex_state = 3}, + [1701] = {.lex_state = 126, .external_lex_state = 3}, + [1702] = {.lex_state = 126, .external_lex_state = 3}, + [1703] = {.lex_state = 126, .external_lex_state = 3}, + [1704] = {.lex_state = 126, .external_lex_state = 3}, + [1705] = {.lex_state = 126, .external_lex_state = 3}, + [1706] = {.lex_state = 127, .external_lex_state = 5}, + [1707] = {.lex_state = 126, .external_lex_state = 3}, + [1708] = {.lex_state = 126, .external_lex_state = 3}, + [1709] = {.lex_state = 126, .external_lex_state = 3}, + [1710] = {.lex_state = 126, .external_lex_state = 3}, + [1711] = {.lex_state = 126, .external_lex_state = 4}, + [1712] = {.lex_state = 126, .external_lex_state = 4}, + [1713] = {.lex_state = 126, .external_lex_state = 3}, + [1714] = {.lex_state = 127, .external_lex_state = 5}, + [1715] = {.lex_state = 126, .external_lex_state = 3}, + [1716] = {.lex_state = 126, .external_lex_state = 3}, + [1717] = {.lex_state = 126, .external_lex_state = 3}, + [1718] = {.lex_state = 126, .external_lex_state = 3}, + [1719] = {.lex_state = 127, .external_lex_state = 5}, + [1720] = {.lex_state = 126, .external_lex_state = 3}, + [1721] = {.lex_state = 126, .external_lex_state = 3}, + [1722] = {.lex_state = 126, .external_lex_state = 3}, + [1723] = {.lex_state = 126, .external_lex_state = 3}, + [1724] = {.lex_state = 126, .external_lex_state = 3}, + [1725] = {.lex_state = 127, .external_lex_state = 5}, + [1726] = {.lex_state = 126, .external_lex_state = 3}, + [1727] = {.lex_state = 127, .external_lex_state = 5}, + [1728] = {.lex_state = 126, .external_lex_state = 3}, + [1729] = {.lex_state = 126, .external_lex_state = 3}, + [1730] = {.lex_state = 126, .external_lex_state = 4}, + [1731] = {.lex_state = 127, .external_lex_state = 5}, + [1732] = {.lex_state = 127, .external_lex_state = 5}, + [1733] = {.lex_state = 126, .external_lex_state = 4}, + [1734] = {.lex_state = 126, .external_lex_state = 3}, + [1735] = {.lex_state = 126, .external_lex_state = 4}, + [1736] = {.lex_state = 126, .external_lex_state = 4}, + [1737] = {.lex_state = 127, .external_lex_state = 5}, + [1738] = {.lex_state = 126, .external_lex_state = 4}, + [1739] = {.lex_state = 127, .external_lex_state = 5}, + [1740] = {.lex_state = 126, .external_lex_state = 4}, + [1741] = {.lex_state = 126, .external_lex_state = 3}, + [1742] = {.lex_state = 126, .external_lex_state = 4}, + [1743] = {.lex_state = 126, .external_lex_state = 4}, + [1744] = {.lex_state = 126, .external_lex_state = 4}, + [1745] = {.lex_state = 127, .external_lex_state = 5}, + [1746] = {.lex_state = 127, .external_lex_state = 5}, + [1747] = {.lex_state = 126, .external_lex_state = 4}, + [1748] = {.lex_state = 126, .external_lex_state = 4}, + [1749] = {.lex_state = 127, .external_lex_state = 5}, + [1750] = {.lex_state = 127, .external_lex_state = 5}, + [1751] = {.lex_state = 127, .external_lex_state = 5}, + [1752] = {.lex_state = 126, .external_lex_state = 4}, + [1753] = {.lex_state = 127, .external_lex_state = 5}, + [1754] = {.lex_state = 127, .external_lex_state = 5}, + [1755] = {.lex_state = 127, .external_lex_state = 5}, + [1756] = {.lex_state = 126, .external_lex_state = 4}, + [1757] = {.lex_state = 126, .external_lex_state = 4}, + [1758] = {.lex_state = 126, .external_lex_state = 4}, + [1759] = {.lex_state = 126, .external_lex_state = 4}, + [1760] = {.lex_state = 4, .external_lex_state = 3}, + [1761] = {.lex_state = 126, .external_lex_state = 4}, + [1762] = {.lex_state = 126, .external_lex_state = 4}, + [1763] = {.lex_state = 126, .external_lex_state = 4}, + [1764] = {.lex_state = 126, .external_lex_state = 4}, + [1765] = {.lex_state = 126, .external_lex_state = 4}, + [1766] = {.lex_state = 126, .external_lex_state = 4}, + [1767] = {.lex_state = 126, .external_lex_state = 4}, + [1768] = {.lex_state = 126, .external_lex_state = 4}, + [1769] = {.lex_state = 126, .external_lex_state = 4}, + [1770] = {.lex_state = 126, .external_lex_state = 3}, + [1771] = {.lex_state = 126, .external_lex_state = 3}, + [1772] = {.lex_state = 126, .external_lex_state = 4}, + [1773] = {.lex_state = 127, .external_lex_state = 5}, + [1774] = {.lex_state = 126, .external_lex_state = 4}, + [1775] = {.lex_state = 126, .external_lex_state = 3}, + [1776] = {.lex_state = 127, .external_lex_state = 5}, + [1777] = {.lex_state = 126, .external_lex_state = 3}, + [1778] = {.lex_state = 126, .external_lex_state = 4}, + [1779] = {.lex_state = 127, .external_lex_state = 5}, + [1780] = {.lex_state = 126, .external_lex_state = 4}, + [1781] = {.lex_state = 126, .external_lex_state = 4}, + [1782] = {.lex_state = 126, .external_lex_state = 4}, + [1783] = {.lex_state = 127, .external_lex_state = 5}, + [1784] = {.lex_state = 126, .external_lex_state = 4}, + [1785] = {.lex_state = 126, .external_lex_state = 4}, + [1786] = {.lex_state = 126, .external_lex_state = 4}, + [1787] = {.lex_state = 126, .external_lex_state = 4}, + [1788] = {.lex_state = 126, .external_lex_state = 4}, + [1789] = {.lex_state = 126, .external_lex_state = 4}, + [1790] = {.lex_state = 126, .external_lex_state = 4}, + [1791] = {.lex_state = 126, .external_lex_state = 4}, + [1792] = {.lex_state = 127, .external_lex_state = 5}, + [1793] = {.lex_state = 126, .external_lex_state = 3}, + [1794] = {.lex_state = 126, .external_lex_state = 4}, + [1795] = {.lex_state = 126, .external_lex_state = 4}, + [1796] = {.lex_state = 126, .external_lex_state = 4}, + [1797] = {.lex_state = 126, .external_lex_state = 4}, + [1798] = {.lex_state = 126, .external_lex_state = 4}, + [1799] = {.lex_state = 126, .external_lex_state = 4}, + [1800] = {.lex_state = 126, .external_lex_state = 4}, + [1801] = {.lex_state = 126, .external_lex_state = 3}, + [1802] = {.lex_state = 126, .external_lex_state = 4}, + [1803] = {.lex_state = 126, .external_lex_state = 4}, + [1804] = {.lex_state = 126, .external_lex_state = 3}, + [1805] = {.lex_state = 126, .external_lex_state = 4}, + [1806] = {.lex_state = 126, .external_lex_state = 4}, + [1807] = {.lex_state = 126, .external_lex_state = 4}, + [1808] = {.lex_state = 126, .external_lex_state = 4}, + [1809] = {.lex_state = 126, .external_lex_state = 3}, + [1810] = {.lex_state = 126, .external_lex_state = 4}, + [1811] = {.lex_state = 126, .external_lex_state = 4}, + [1812] = {.lex_state = 126, .external_lex_state = 3}, + [1813] = {.lex_state = 126, .external_lex_state = 4}, + [1814] = {.lex_state = 126, .external_lex_state = 3}, + [1815] = {.lex_state = 126, .external_lex_state = 4}, + [1816] = {.lex_state = 126, .external_lex_state = 4}, + [1817] = {.lex_state = 126, .external_lex_state = 4}, + [1818] = {.lex_state = 126, .external_lex_state = 4}, + [1819] = {.lex_state = 126, .external_lex_state = 4}, + [1820] = {.lex_state = 126, .external_lex_state = 4}, + [1821] = {.lex_state = 126, .external_lex_state = 4}, + [1822] = {.lex_state = 126, .external_lex_state = 4}, + [1823] = {.lex_state = 126, .external_lex_state = 4}, + [1824] = {.lex_state = 126, .external_lex_state = 4}, + [1825] = {.lex_state = 126, .external_lex_state = 3}, + [1826] = {.lex_state = 127, .external_lex_state = 5}, + [1827] = {.lex_state = 126, .external_lex_state = 4}, + [1828] = {.lex_state = 126, .external_lex_state = 4}, + [1829] = {.lex_state = 127, .external_lex_state = 5}, + [1830] = {.lex_state = 126, .external_lex_state = 4}, + [1831] = {.lex_state = 126, .external_lex_state = 3}, + [1832] = {.lex_state = 126, .external_lex_state = 3}, + [1833] = {.lex_state = 126, .external_lex_state = 4}, + [1834] = {.lex_state = 126, .external_lex_state = 4}, + [1835] = {.lex_state = 126, .external_lex_state = 4}, + [1836] = {.lex_state = 126, .external_lex_state = 4}, + [1837] = {.lex_state = 126, .external_lex_state = 3}, + [1838] = {.lex_state = 126, .external_lex_state = 4}, + [1839] = {.lex_state = 126, .external_lex_state = 4}, + [1840] = {.lex_state = 126, .external_lex_state = 4}, + [1841] = {.lex_state = 126, .external_lex_state = 3}, + [1842] = {.lex_state = 126, .external_lex_state = 4}, + [1843] = {.lex_state = 126, .external_lex_state = 4}, + [1844] = {.lex_state = 127, .external_lex_state = 5}, + [1845] = {.lex_state = 126, .external_lex_state = 4}, + [1846] = {.lex_state = 126, .external_lex_state = 4}, + [1847] = {.lex_state = 126, .external_lex_state = 4}, + [1848] = {.lex_state = 126, .external_lex_state = 4}, + [1849] = {.lex_state = 126, .external_lex_state = 4}, + [1850] = {.lex_state = 126, .external_lex_state = 4}, + [1851] = {.lex_state = 126, .external_lex_state = 4}, + [1852] = {.lex_state = 126, .external_lex_state = 4}, + [1853] = {.lex_state = 126, .external_lex_state = 4}, + [1854] = {.lex_state = 126, .external_lex_state = 4}, + [1855] = {.lex_state = 126, .external_lex_state = 4}, + [1856] = {.lex_state = 126, .external_lex_state = 3}, + [1857] = {.lex_state = 126, .external_lex_state = 4}, + [1858] = {.lex_state = 127, .external_lex_state = 5}, + [1859] = {.lex_state = 126, .external_lex_state = 3}, + [1860] = {.lex_state = 126, .external_lex_state = 4}, + [1861] = {.lex_state = 126, .external_lex_state = 4}, + [1862] = {.lex_state = 126, .external_lex_state = 4}, + [1863] = {.lex_state = 126, .external_lex_state = 3}, + [1864] = {.lex_state = 126, .external_lex_state = 4}, + [1865] = {.lex_state = 127, .external_lex_state = 5}, + [1866] = {.lex_state = 126, .external_lex_state = 4}, + [1867] = {.lex_state = 126, .external_lex_state = 3}, + [1868] = {.lex_state = 127, .external_lex_state = 5}, + [1869] = {.lex_state = 126, .external_lex_state = 4}, + [1870] = {.lex_state = 126, .external_lex_state = 4}, + [1871] = {.lex_state = 126, .external_lex_state = 4}, + [1872] = {.lex_state = 126, .external_lex_state = 4}, + [1873] = {.lex_state = 126, .external_lex_state = 4}, + [1874] = {.lex_state = 126, .external_lex_state = 4}, + [1875] = {.lex_state = 126, .external_lex_state = 4}, + [1876] = {.lex_state = 126, .external_lex_state = 4}, + [1877] = {.lex_state = 126, .external_lex_state = 4}, + [1878] = {.lex_state = 126, .external_lex_state = 3}, + [1879] = {.lex_state = 126, .external_lex_state = 4}, + [1880] = {.lex_state = 126, .external_lex_state = 4}, + [1881] = {.lex_state = 126, .external_lex_state = 3}, + [1882] = {.lex_state = 126, .external_lex_state = 4}, + [1883] = {.lex_state = 126, .external_lex_state = 4}, + [1884] = {.lex_state = 126, .external_lex_state = 4}, + [1885] = {.lex_state = 126, .external_lex_state = 4}, + [1886] = {.lex_state = 126, .external_lex_state = 4}, + [1887] = {.lex_state = 126, .external_lex_state = 4}, + [1888] = {.lex_state = 126, .external_lex_state = 4}, + [1889] = {.lex_state = 126, .external_lex_state = 4}, + [1890] = {.lex_state = 126, .external_lex_state = 4}, + [1891] = {.lex_state = 126, .external_lex_state = 4}, + [1892] = {.lex_state = 126, .external_lex_state = 4}, + [1893] = {.lex_state = 126, .external_lex_state = 4}, + [1894] = {.lex_state = 126, .external_lex_state = 4}, + [1895] = {.lex_state = 126, .external_lex_state = 4}, + [1896] = {.lex_state = 126, .external_lex_state = 4}, + [1897] = {.lex_state = 126, .external_lex_state = 4}, + [1898] = {.lex_state = 126, .external_lex_state = 4}, + [1899] = {.lex_state = 126, .external_lex_state = 4}, + [1900] = {.lex_state = 126, .external_lex_state = 4}, + [1901] = {.lex_state = 126, .external_lex_state = 4}, + [1902] = {.lex_state = 126, .external_lex_state = 4}, + [1903] = {.lex_state = 126, .external_lex_state = 4}, + [1904] = {.lex_state = 126, .external_lex_state = 4}, + [1905] = {.lex_state = 126, .external_lex_state = 4}, + [1906] = {.lex_state = 126, .external_lex_state = 4}, + [1907] = {.lex_state = 126, .external_lex_state = 4}, + [1908] = {.lex_state = 126, .external_lex_state = 4}, + [1909] = {.lex_state = 126, .external_lex_state = 4}, + [1910] = {.lex_state = 126, .external_lex_state = 4}, + [1911] = {.lex_state = 126, .external_lex_state = 4}, + [1912] = {.lex_state = 126, .external_lex_state = 4}, + [1913] = {.lex_state = 126, .external_lex_state = 4}, + [1914] = {.lex_state = 126, .external_lex_state = 4}, + [1915] = {.lex_state = 126, .external_lex_state = 4}, + [1916] = {.lex_state = 126, .external_lex_state = 4}, + [1917] = {.lex_state = 126, .external_lex_state = 4}, + [1918] = {.lex_state = 126, .external_lex_state = 4}, + [1919] = {.lex_state = 126, .external_lex_state = 4}, + [1920] = {.lex_state = 126, .external_lex_state = 4}, + [1921] = {.lex_state = 126, .external_lex_state = 4}, + [1922] = {.lex_state = 126, .external_lex_state = 4}, + [1923] = {.lex_state = 126, .external_lex_state = 4}, + [1924] = {.lex_state = 126, .external_lex_state = 4}, + [1925] = {.lex_state = 127, .external_lex_state = 2}, + [1926] = {.lex_state = 126, .external_lex_state = 4}, + [1927] = {.lex_state = 126, .external_lex_state = 4}, + [1928] = {.lex_state = 126, .external_lex_state = 4}, + [1929] = {.lex_state = 126, .external_lex_state = 4}, + [1930] = {.lex_state = 126, .external_lex_state = 4}, + [1931] = {.lex_state = 126, .external_lex_state = 4}, + [1932] = {.lex_state = 126, .external_lex_state = 4}, + [1933] = {.lex_state = 126, .external_lex_state = 4}, + [1934] = {.lex_state = 126, .external_lex_state = 4}, + [1935] = {.lex_state = 126, .external_lex_state = 4}, + [1936] = {.lex_state = 126, .external_lex_state = 4}, + [1937] = {.lex_state = 126, .external_lex_state = 4}, + [1938] = {.lex_state = 126, .external_lex_state = 4}, + [1939] = {.lex_state = 126, .external_lex_state = 4}, + [1940] = {.lex_state = 126, .external_lex_state = 4}, + [1941] = {.lex_state = 126, .external_lex_state = 4}, + [1942] = {.lex_state = 126, .external_lex_state = 4}, + [1943] = {.lex_state = 126, .external_lex_state = 4}, + [1944] = {.lex_state = 126, .external_lex_state = 4}, + [1945] = {.lex_state = 126, .external_lex_state = 4}, + [1946] = {.lex_state = 126, .external_lex_state = 4}, + [1947] = {.lex_state = 126, .external_lex_state = 4}, + [1948] = {.lex_state = 126, .external_lex_state = 4}, + [1949] = {.lex_state = 126, .external_lex_state = 4}, + [1950] = {.lex_state = 126, .external_lex_state = 4}, + [1951] = {.lex_state = 126, .external_lex_state = 4}, + [1952] = {.lex_state = 126, .external_lex_state = 4}, + [1953] = {.lex_state = 127, .external_lex_state = 5}, + [1954] = {.lex_state = 127, .external_lex_state = 5}, + [1955] = {.lex_state = 127, .external_lex_state = 2}, + [1956] = {.lex_state = 126, .external_lex_state = 4}, + [1957] = {.lex_state = 127, .external_lex_state = 2}, + [1958] = {.lex_state = 126, .external_lex_state = 4}, + [1959] = {.lex_state = 127, .external_lex_state = 5}, + [1960] = {.lex_state = 126, .external_lex_state = 4}, + [1961] = {.lex_state = 127, .external_lex_state = 5}, + [1962] = {.lex_state = 126, .external_lex_state = 3}, + [1963] = {.lex_state = 127, .external_lex_state = 2}, + [1964] = {.lex_state = 126, .external_lex_state = 4}, + [1965] = {.lex_state = 126, .external_lex_state = 4}, + [1966] = {.lex_state = 126, .external_lex_state = 4}, + [1967] = {.lex_state = 127, .external_lex_state = 2}, + [1968] = {.lex_state = 126, .external_lex_state = 4}, + [1969] = {.lex_state = 127, .external_lex_state = 2}, + [1970] = {.lex_state = 126, .external_lex_state = 4}, + [1971] = {.lex_state = 126, .external_lex_state = 3}, + [1972] = {.lex_state = 126, .external_lex_state = 4}, + [1973] = {.lex_state = 126, .external_lex_state = 4}, + [1974] = {.lex_state = 126, .external_lex_state = 3}, + [1975] = {.lex_state = 126, .external_lex_state = 4}, + [1976] = {.lex_state = 126, .external_lex_state = 4}, + [1977] = {.lex_state = 126, .external_lex_state = 4}, + [1978] = {.lex_state = 126, .external_lex_state = 4}, + [1979] = {.lex_state = 126, .external_lex_state = 4}, + [1980] = {.lex_state = 126, .external_lex_state = 4}, + [1981] = {.lex_state = 126, .external_lex_state = 4}, + [1982] = {.lex_state = 126, .external_lex_state = 4}, + [1983] = {.lex_state = 126, .external_lex_state = 4}, + [1984] = {.lex_state = 126, .external_lex_state = 4}, + [1985] = {.lex_state = 126, .external_lex_state = 4}, + [1986] = {.lex_state = 126, .external_lex_state = 4}, + [1987] = {.lex_state = 126, .external_lex_state = 4}, + [1988] = {.lex_state = 126, .external_lex_state = 4}, + [1989] = {.lex_state = 126, .external_lex_state = 3}, + [1990] = {.lex_state = 126, .external_lex_state = 3}, + [1991] = {.lex_state = 127, .external_lex_state = 2}, + [1992] = {.lex_state = 126, .external_lex_state = 4}, + [1993] = {.lex_state = 126, .external_lex_state = 3}, + [1994] = {.lex_state = 126, .external_lex_state = 3}, + [1995] = {.lex_state = 126, .external_lex_state = 3}, + [1996] = {.lex_state = 126, .external_lex_state = 3}, + [1997] = {.lex_state = 126, .external_lex_state = 3}, + [1998] = {.lex_state = 126, .external_lex_state = 3}, + [1999] = {.lex_state = 126, .external_lex_state = 3}, + [2000] = {.lex_state = 126, .external_lex_state = 3}, + [2001] = {.lex_state = 126, .external_lex_state = 3}, + [2002] = {.lex_state = 126, .external_lex_state = 3}, + [2003] = {.lex_state = 126, .external_lex_state = 3}, + [2004] = {.lex_state = 126, .external_lex_state = 3}, + [2005] = {.lex_state = 126, .external_lex_state = 3}, + [2006] = {.lex_state = 126, .external_lex_state = 3}, + [2007] = {.lex_state = 126, .external_lex_state = 3}, + [2008] = {.lex_state = 126, .external_lex_state = 3}, + [2009] = {.lex_state = 126, .external_lex_state = 3}, + [2010] = {.lex_state = 126, .external_lex_state = 3}, + [2011] = {.lex_state = 126, .external_lex_state = 3}, + [2012] = {.lex_state = 126, .external_lex_state = 3}, + [2013] = {.lex_state = 126, .external_lex_state = 3}, + [2014] = {.lex_state = 126, .external_lex_state = 3}, + [2015] = {.lex_state = 126, .external_lex_state = 3}, + [2016] = {.lex_state = 126, .external_lex_state = 3}, + [2017] = {.lex_state = 126, .external_lex_state = 3}, + [2018] = {.lex_state = 126, .external_lex_state = 4}, + [2019] = {.lex_state = 126, .external_lex_state = 3}, + [2020] = {.lex_state = 127, .external_lex_state = 5}, + [2021] = {.lex_state = 126, .external_lex_state = 4}, + [2022] = {.lex_state = 126, .external_lex_state = 4}, + [2023] = {.lex_state = 127, .external_lex_state = 5}, + [2024] = {.lex_state = 126, .external_lex_state = 4}, + [2025] = {.lex_state = 126, .external_lex_state = 4}, + [2026] = {.lex_state = 126, .external_lex_state = 4}, + [2027] = {.lex_state = 126, .external_lex_state = 4}, + [2028] = {.lex_state = 126, .external_lex_state = 4}, + [2029] = {.lex_state = 127, .external_lex_state = 5}, + [2030] = {.lex_state = 126, .external_lex_state = 4}, + [2031] = {.lex_state = 126, .external_lex_state = 4}, + [2032] = {.lex_state = 127, .external_lex_state = 5}, + [2033] = {.lex_state = 127, .external_lex_state = 5}, + [2034] = {.lex_state = 126, .external_lex_state = 4}, + [2035] = {.lex_state = 126, .external_lex_state = 4}, + [2036] = {.lex_state = 126, .external_lex_state = 4}, + [2037] = {.lex_state = 126, .external_lex_state = 3}, + [2038] = {.lex_state = 126, .external_lex_state = 3}, + [2039] = {.lex_state = 126, .external_lex_state = 4}, + [2040] = {.lex_state = 126, .external_lex_state = 4}, + [2041] = {.lex_state = 126, .external_lex_state = 4}, + [2042] = {.lex_state = 126, .external_lex_state = 3}, + [2043] = {.lex_state = 126, .external_lex_state = 4}, + [2044] = {.lex_state = 126, .external_lex_state = 4}, + [2045] = {.lex_state = 126, .external_lex_state = 4}, + [2046] = {.lex_state = 126, .external_lex_state = 4}, + [2047] = {.lex_state = 126, .external_lex_state = 4}, + [2048] = {.lex_state = 126, .external_lex_state = 4}, + [2049] = {.lex_state = 127, .external_lex_state = 2}, + [2050] = {.lex_state = 126, .external_lex_state = 4}, + [2051] = {.lex_state = 126, .external_lex_state = 4}, + [2052] = {.lex_state = 126, .external_lex_state = 3}, + [2053] = {.lex_state = 126, .external_lex_state = 3}, + [2054] = {.lex_state = 126, .external_lex_state = 3}, + [2055] = {.lex_state = 126, .external_lex_state = 3}, + [2056] = {.lex_state = 126, .external_lex_state = 4}, + [2057] = {.lex_state = 126, .external_lex_state = 4}, + [2058] = {.lex_state = 127, .external_lex_state = 5}, + [2059] = {.lex_state = 126, .external_lex_state = 4}, + [2060] = {.lex_state = 126, .external_lex_state = 3}, + [2061] = {.lex_state = 126, .external_lex_state = 4}, + [2062] = {.lex_state = 127, .external_lex_state = 5}, + [2063] = {.lex_state = 126, .external_lex_state = 4}, + [2064] = {.lex_state = 126, .external_lex_state = 4}, + [2065] = {.lex_state = 127, .external_lex_state = 5}, + [2066] = {.lex_state = 126, .external_lex_state = 3}, + [2067] = {.lex_state = 127, .external_lex_state = 2}, + [2068] = {.lex_state = 126, .external_lex_state = 3}, + [2069] = {.lex_state = 126, .external_lex_state = 4}, + [2070] = {.lex_state = 127, .external_lex_state = 2}, + [2071] = {.lex_state = 126, .external_lex_state = 4}, + [2072] = {.lex_state = 126, .external_lex_state = 4}, + [2073] = {.lex_state = 126, .external_lex_state = 3}, + [2074] = {.lex_state = 126, .external_lex_state = 4}, + [2075] = {.lex_state = 127, .external_lex_state = 2}, + [2076] = {.lex_state = 126, .external_lex_state = 3}, + [2077] = {.lex_state = 126, .external_lex_state = 4}, + [2078] = {.lex_state = 126, .external_lex_state = 3}, + [2079] = {.lex_state = 127, .external_lex_state = 5}, + [2080] = {.lex_state = 126, .external_lex_state = 4}, + [2081] = {.lex_state = 126, .external_lex_state = 3}, + [2082] = {.lex_state = 126, .external_lex_state = 3}, + [2083] = {.lex_state = 126, .external_lex_state = 4}, + [2084] = {.lex_state = 126, .external_lex_state = 4}, + [2085] = {.lex_state = 126, .external_lex_state = 3}, + [2086] = {.lex_state = 127, .external_lex_state = 2}, + [2087] = {.lex_state = 127, .external_lex_state = 5}, + [2088] = {.lex_state = 126, .external_lex_state = 4}, + [2089] = {.lex_state = 126, .external_lex_state = 4}, + [2090] = {.lex_state = 126, .external_lex_state = 4}, + [2091] = {.lex_state = 127, .external_lex_state = 5}, + [2092] = {.lex_state = 126, .external_lex_state = 4}, + [2093] = {.lex_state = 127, .external_lex_state = 2}, + [2094] = {.lex_state = 126, .external_lex_state = 3}, + [2095] = {.lex_state = 126, .external_lex_state = 4}, + [2096] = {.lex_state = 126, .external_lex_state = 4}, + [2097] = {.lex_state = 126, .external_lex_state = 3}, + [2098] = {.lex_state = 126, .external_lex_state = 3}, + [2099] = {.lex_state = 126, .external_lex_state = 3}, + [2100] = {.lex_state = 126, .external_lex_state = 3}, + [2101] = {.lex_state = 126, .external_lex_state = 3}, + [2102] = {.lex_state = 126, .external_lex_state = 4}, + [2103] = {.lex_state = 126, .external_lex_state = 3}, + [2104] = {.lex_state = 126, .external_lex_state = 4}, + [2105] = {.lex_state = 126, .external_lex_state = 3}, + [2106] = {.lex_state = 126, .external_lex_state = 4}, + [2107] = {.lex_state = 126, .external_lex_state = 4}, + [2108] = {.lex_state = 127, .external_lex_state = 2}, + [2109] = {.lex_state = 126, .external_lex_state = 3}, + [2110] = {.lex_state = 127, .external_lex_state = 5}, + [2111] = {.lex_state = 127, .external_lex_state = 5}, + [2112] = {.lex_state = 126, .external_lex_state = 4}, + [2113] = {.lex_state = 126, .external_lex_state = 4}, + [2114] = {.lex_state = 126, .external_lex_state = 4}, + [2115] = {.lex_state = 126, .external_lex_state = 3}, + [2116] = {.lex_state = 126, .external_lex_state = 4}, + [2117] = {.lex_state = 127, .external_lex_state = 5}, + [2118] = {.lex_state = 126, .external_lex_state = 4}, + [2119] = {.lex_state = 126, .external_lex_state = 3}, + [2120] = {.lex_state = 126, .external_lex_state = 3}, + [2121] = {.lex_state = 127, .external_lex_state = 2}, + [2122] = {.lex_state = 126, .external_lex_state = 4}, + [2123] = {.lex_state = 126, .external_lex_state = 3}, + [2124] = {.lex_state = 126, .external_lex_state = 3}, + [2125] = {.lex_state = 126, .external_lex_state = 3}, + [2126] = {.lex_state = 126, .external_lex_state = 4}, + [2127] = {.lex_state = 126, .external_lex_state = 3}, + [2128] = {.lex_state = 126, .external_lex_state = 3}, + [2129] = {.lex_state = 126, .external_lex_state = 3}, + [2130] = {.lex_state = 126, .external_lex_state = 4}, + [2131] = {.lex_state = 126, .external_lex_state = 4}, + [2132] = {.lex_state = 126, .external_lex_state = 4}, + [2133] = {.lex_state = 126, .external_lex_state = 4}, + [2134] = {.lex_state = 126, .external_lex_state = 4}, + [2135] = {.lex_state = 127, .external_lex_state = 5}, + [2136] = {.lex_state = 126, .external_lex_state = 4}, + [2137] = {.lex_state = 126, .external_lex_state = 4}, + [2138] = {.lex_state = 126, .external_lex_state = 4}, + [2139] = {.lex_state = 126, .external_lex_state = 3}, + [2140] = {.lex_state = 126, .external_lex_state = 3}, + [2141] = {.lex_state = 126, .external_lex_state = 3}, + [2142] = {.lex_state = 127, .external_lex_state = 5}, + [2143] = {.lex_state = 126, .external_lex_state = 3}, + [2144] = {.lex_state = 126, .external_lex_state = 4}, + [2145] = {.lex_state = 126, .external_lex_state = 4}, + [2146] = {.lex_state = 126, .external_lex_state = 4}, + [2147] = {.lex_state = 126, .external_lex_state = 4}, + [2148] = {.lex_state = 126, .external_lex_state = 3}, + [2149] = {.lex_state = 126, .external_lex_state = 3}, + [2150] = {.lex_state = 126, .external_lex_state = 3}, + [2151] = {.lex_state = 126, .external_lex_state = 3}, + [2152] = {.lex_state = 126, .external_lex_state = 4}, + [2153] = {.lex_state = 126, .external_lex_state = 3}, + [2154] = {.lex_state = 126, .external_lex_state = 4}, + [2155] = {.lex_state = 126, .external_lex_state = 3}, + [2156] = {.lex_state = 126, .external_lex_state = 4}, + [2157] = {.lex_state = 126, .external_lex_state = 3}, + [2158] = {.lex_state = 126, .external_lex_state = 3}, + [2159] = {.lex_state = 126, .external_lex_state = 4}, + [2160] = {.lex_state = 126, .external_lex_state = 3}, + [2161] = {.lex_state = 127, .external_lex_state = 5}, + [2162] = {.lex_state = 126, .external_lex_state = 4}, + [2163] = {.lex_state = 126, .external_lex_state = 4}, + [2164] = {.lex_state = 126, .external_lex_state = 4}, + [2165] = {.lex_state = 127, .external_lex_state = 5}, + [2166] = {.lex_state = 126, .external_lex_state = 4}, + [2167] = {.lex_state = 126, .external_lex_state = 4}, + [2168] = {.lex_state = 126, .external_lex_state = 4}, + [2169] = {.lex_state = 126, .external_lex_state = 3}, + [2170] = {.lex_state = 127, .external_lex_state = 5}, + [2171] = {.lex_state = 126, .external_lex_state = 3}, + [2172] = {.lex_state = 126, .external_lex_state = 3}, + [2173] = {.lex_state = 126, .external_lex_state = 3}, + [2174] = {.lex_state = 127, .external_lex_state = 5}, + [2175] = {.lex_state = 126, .external_lex_state = 3}, + [2176] = {.lex_state = 126, .external_lex_state = 3}, + [2177] = {.lex_state = 126, .external_lex_state = 4}, + [2178] = {.lex_state = 127, .external_lex_state = 2}, + [2179] = {.lex_state = 127, .external_lex_state = 5}, + [2180] = {.lex_state = 126, .external_lex_state = 3}, + [2181] = {.lex_state = 126, .external_lex_state = 3}, + [2182] = {.lex_state = 126, .external_lex_state = 3}, + [2183] = {.lex_state = 126, .external_lex_state = 3}, + [2184] = {.lex_state = 127, .external_lex_state = 2}, + [2185] = {.lex_state = 126, .external_lex_state = 3}, + [2186] = {.lex_state = 127, .external_lex_state = 2}, + [2187] = {.lex_state = 126, .external_lex_state = 4}, + [2188] = {.lex_state = 126, .external_lex_state = 3}, + [2189] = {.lex_state = 126, .external_lex_state = 4}, + [2190] = {.lex_state = 126, .external_lex_state = 4}, + [2191] = {.lex_state = 126, .external_lex_state = 4}, + [2192] = {.lex_state = 126, .external_lex_state = 3}, + [2193] = {.lex_state = 126, .external_lex_state = 3}, + [2194] = {.lex_state = 126, .external_lex_state = 4}, + [2195] = {.lex_state = 126, .external_lex_state = 4}, + [2196] = {.lex_state = 126, .external_lex_state = 3}, + [2197] = {.lex_state = 126, .external_lex_state = 4}, + [2198] = {.lex_state = 126, .external_lex_state = 4}, + [2199] = {.lex_state = 126, .external_lex_state = 3}, + [2200] = {.lex_state = 126, .external_lex_state = 3}, + [2201] = {.lex_state = 126, .external_lex_state = 4}, + [2202] = {.lex_state = 4, .external_lex_state = 4}, + [2203] = {.lex_state = 126, .external_lex_state = 4}, + [2204] = {.lex_state = 126, .external_lex_state = 3}, + [2205] = {.lex_state = 126, .external_lex_state = 4}, + [2206] = {.lex_state = 126, .external_lex_state = 4}, + [2207] = {.lex_state = 127, .external_lex_state = 5}, + [2208] = {.lex_state = 126, .external_lex_state = 3}, + [2209] = {.lex_state = 126, .external_lex_state = 3}, + [2210] = {.lex_state = 127, .external_lex_state = 5}, + [2211] = {.lex_state = 127, .external_lex_state = 2}, + [2212] = {.lex_state = 127, .external_lex_state = 5}, + [2213] = {.lex_state = 126, .external_lex_state = 4}, + [2214] = {.lex_state = 126, .external_lex_state = 4}, + [2215] = {.lex_state = 126, .external_lex_state = 4}, + [2216] = {.lex_state = 126, .external_lex_state = 4}, + [2217] = {.lex_state = 126, .external_lex_state = 4}, + [2218] = {.lex_state = 126, .external_lex_state = 4}, + [2219] = {.lex_state = 126, .external_lex_state = 3}, + [2220] = {.lex_state = 126, .external_lex_state = 4}, + [2221] = {.lex_state = 126, .external_lex_state = 4}, + [2222] = {.lex_state = 127, .external_lex_state = 5}, + [2223] = {.lex_state = 4, .external_lex_state = 4}, + [2224] = {.lex_state = 126, .external_lex_state = 3}, + [2225] = {.lex_state = 126, .external_lex_state = 4}, + [2226] = {.lex_state = 127, .external_lex_state = 5}, + [2227] = {.lex_state = 126, .external_lex_state = 4}, + [2228] = {.lex_state = 126, .external_lex_state = 4}, + [2229] = {.lex_state = 126, .external_lex_state = 3}, + [2230] = {.lex_state = 126, .external_lex_state = 4}, + [2231] = {.lex_state = 126, .external_lex_state = 4}, + [2232] = {.lex_state = 127, .external_lex_state = 5}, + [2233] = {.lex_state = 126, .external_lex_state = 4}, + [2234] = {.lex_state = 126, .external_lex_state = 3}, + [2235] = {.lex_state = 126, .external_lex_state = 4}, + [2236] = {.lex_state = 126, .external_lex_state = 4}, + [2237] = {.lex_state = 127, .external_lex_state = 5}, + [2238] = {.lex_state = 127, .external_lex_state = 5}, + [2239] = {.lex_state = 126, .external_lex_state = 4}, + [2240] = {.lex_state = 126, .external_lex_state = 4}, + [2241] = {.lex_state = 126, .external_lex_state = 3}, + [2242] = {.lex_state = 126, .external_lex_state = 4}, + [2243] = {.lex_state = 126, .external_lex_state = 3}, + [2244] = {.lex_state = 126, .external_lex_state = 4}, + [2245] = {.lex_state = 126, .external_lex_state = 3}, + [2246] = {.lex_state = 126, .external_lex_state = 4}, + [2247] = {.lex_state = 126, .external_lex_state = 4}, + [2248] = {.lex_state = 126, .external_lex_state = 4}, + [2249] = {.lex_state = 126, .external_lex_state = 3}, + [2250] = {.lex_state = 126, .external_lex_state = 4}, + [2251] = {.lex_state = 126, .external_lex_state = 4}, + [2252] = {.lex_state = 127, .external_lex_state = 5}, + [2253] = {.lex_state = 126, .external_lex_state = 3}, + [2254] = {.lex_state = 126, .external_lex_state = 4}, + [2255] = {.lex_state = 126, .external_lex_state = 4}, + [2256] = {.lex_state = 127, .external_lex_state = 5}, + [2257] = {.lex_state = 127, .external_lex_state = 5}, + [2258] = {.lex_state = 126, .external_lex_state = 3}, + [2259] = {.lex_state = 127, .external_lex_state = 5}, + [2260] = {.lex_state = 126, .external_lex_state = 4}, + [2261] = {.lex_state = 126, .external_lex_state = 4}, + [2262] = {.lex_state = 126, .external_lex_state = 4}, + [2263] = {.lex_state = 126, .external_lex_state = 4}, + [2264] = {.lex_state = 126, .external_lex_state = 4}, + [2265] = {.lex_state = 127, .external_lex_state = 5}, + [2266] = {.lex_state = 127, .external_lex_state = 5}, + [2267] = {.lex_state = 126, .external_lex_state = 3}, + [2268] = {.lex_state = 126, .external_lex_state = 3}, + [2269] = {.lex_state = 126, .external_lex_state = 3}, + [2270] = {.lex_state = 126, .external_lex_state = 3}, + [2271] = {.lex_state = 126, .external_lex_state = 3}, + [2272] = {.lex_state = 127, .external_lex_state = 5}, + [2273] = {.lex_state = 126, .external_lex_state = 4}, + [2274] = {.lex_state = 127, .external_lex_state = 5}, + [2275] = {.lex_state = 126, .external_lex_state = 4}, + [2276] = {.lex_state = 127, .external_lex_state = 5}, + [2277] = {.lex_state = 126, .external_lex_state = 3}, + [2278] = {.lex_state = 126, .external_lex_state = 3}, + [2279] = {.lex_state = 127, .external_lex_state = 5}, + [2280] = {.lex_state = 126, .external_lex_state = 3}, + [2281] = {.lex_state = 126, .external_lex_state = 3}, + [2282] = {.lex_state = 126, .external_lex_state = 4}, + [2283] = {.lex_state = 126, .external_lex_state = 3}, + [2284] = {.lex_state = 126, .external_lex_state = 4}, + [2285] = {.lex_state = 126, .external_lex_state = 3}, + [2286] = {.lex_state = 126, .external_lex_state = 3}, + [2287] = {.lex_state = 126, .external_lex_state = 3}, + [2288] = {.lex_state = 127, .external_lex_state = 5}, + [2289] = {.lex_state = 126, .external_lex_state = 3}, + [2290] = {.lex_state = 126, .external_lex_state = 4}, + [2291] = {.lex_state = 126, .external_lex_state = 3}, + [2292] = {.lex_state = 126, .external_lex_state = 4}, + [2293] = {.lex_state = 126, .external_lex_state = 3}, + [2294] = {.lex_state = 126, .external_lex_state = 3}, + [2295] = {.lex_state = 127, .external_lex_state = 5}, + [2296] = {.lex_state = 126, .external_lex_state = 3}, + [2297] = {.lex_state = 126, .external_lex_state = 4}, + [2298] = {.lex_state = 126, .external_lex_state = 3}, + [2299] = {.lex_state = 126, .external_lex_state = 3}, + [2300] = {.lex_state = 126, .external_lex_state = 3}, + [2301] = {.lex_state = 126, .external_lex_state = 4}, + [2302] = {.lex_state = 126, .external_lex_state = 4}, + [2303] = {.lex_state = 126, .external_lex_state = 4}, + [2304] = {.lex_state = 126, .external_lex_state = 3}, + [2305] = {.lex_state = 127, .external_lex_state = 5}, + [2306] = {.lex_state = 126, .external_lex_state = 3}, + [2307] = {.lex_state = 127, .external_lex_state = 5}, + [2308] = {.lex_state = 126, .external_lex_state = 3}, + [2309] = {.lex_state = 126, .external_lex_state = 4}, + [2310] = {.lex_state = 126, .external_lex_state = 3}, + [2311] = {.lex_state = 126, .external_lex_state = 4}, + [2312] = {.lex_state = 126, .external_lex_state = 4}, + [2313] = {.lex_state = 126, .external_lex_state = 4}, + [2314] = {.lex_state = 126, .external_lex_state = 4}, + [2315] = {.lex_state = 126, .external_lex_state = 4}, + [2316] = {.lex_state = 126, .external_lex_state = 4}, + [2317] = {.lex_state = 126, .external_lex_state = 3}, + [2318] = {.lex_state = 127, .external_lex_state = 5}, + [2319] = {.lex_state = 126, .external_lex_state = 4}, + [2320] = {.lex_state = 126, .external_lex_state = 4}, + [2321] = {.lex_state = 126, .external_lex_state = 3}, + [2322] = {.lex_state = 126, .external_lex_state = 3}, + [2323] = {.lex_state = 127, .external_lex_state = 5}, + [2324] = {.lex_state = 126, .external_lex_state = 3}, + [2325] = {.lex_state = 126, .external_lex_state = 3}, + [2326] = {.lex_state = 127, .external_lex_state = 5}, + [2327] = {.lex_state = 126, .external_lex_state = 3}, + [2328] = {.lex_state = 127, .external_lex_state = 5}, + [2329] = {.lex_state = 126, .external_lex_state = 4}, + [2330] = {.lex_state = 127, .external_lex_state = 5}, + [2331] = {.lex_state = 126, .external_lex_state = 3}, + [2332] = {.lex_state = 126, .external_lex_state = 4}, + [2333] = {.lex_state = 127, .external_lex_state = 2}, + [2334] = {.lex_state = 126, .external_lex_state = 3}, + [2335] = {.lex_state = 127, .external_lex_state = 5}, + [2336] = {.lex_state = 126, .external_lex_state = 4}, + [2337] = {.lex_state = 127, .external_lex_state = 2}, + [2338] = {.lex_state = 126, .external_lex_state = 4}, + [2339] = {.lex_state = 126, .external_lex_state = 4}, + [2340] = {.lex_state = 127, .external_lex_state = 2}, + [2341] = {.lex_state = 126, .external_lex_state = 4}, + [2342] = {.lex_state = 126, .external_lex_state = 3}, + [2343] = {.lex_state = 127, .external_lex_state = 5}, + [2344] = {.lex_state = 127, .external_lex_state = 5}, + [2345] = {.lex_state = 126, .external_lex_state = 3}, + [2346] = {.lex_state = 127, .external_lex_state = 5}, + [2347] = {.lex_state = 126, .external_lex_state = 4}, + [2348] = {.lex_state = 126, .external_lex_state = 3}, + [2349] = {.lex_state = 126, .external_lex_state = 4}, + [2350] = {.lex_state = 126, .external_lex_state = 4}, + [2351] = {.lex_state = 126, .external_lex_state = 4}, + [2352] = {.lex_state = 126, .external_lex_state = 4}, + [2353] = {.lex_state = 126, .external_lex_state = 4}, + [2354] = {.lex_state = 126, .external_lex_state = 4}, + [2355] = {.lex_state = 126, .external_lex_state = 3}, + [2356] = {.lex_state = 126, .external_lex_state = 3}, + [2357] = {.lex_state = 127, .external_lex_state = 2}, + [2358] = {.lex_state = 127, .external_lex_state = 5}, + [2359] = {.lex_state = 127, .external_lex_state = 5}, + [2360] = {.lex_state = 127, .external_lex_state = 2}, + [2361] = {.lex_state = 126, .external_lex_state = 3}, + [2362] = {.lex_state = 127, .external_lex_state = 2}, + [2363] = {.lex_state = 127, .external_lex_state = 5}, + [2364] = {.lex_state = 127, .external_lex_state = 5}, + [2365] = {.lex_state = 127, .external_lex_state = 5}, + [2366] = {.lex_state = 127, .external_lex_state = 5}, + [2367] = {.lex_state = 127, .external_lex_state = 2}, + [2368] = {.lex_state = 127, .external_lex_state = 5}, + [2369] = {.lex_state = 127, .external_lex_state = 5}, + [2370] = {.lex_state = 127, .external_lex_state = 5}, + [2371] = {.lex_state = 127, .external_lex_state = 5}, + [2372] = {.lex_state = 127, .external_lex_state = 5}, + [2373] = {.lex_state = 127, .external_lex_state = 5}, + [2374] = {.lex_state = 127, .external_lex_state = 5}, + [2375] = {.lex_state = 127, .external_lex_state = 5}, + [2376] = {.lex_state = 127, .external_lex_state = 5}, + [2377] = {.lex_state = 126, .external_lex_state = 3}, + [2378] = {.lex_state = 127, .external_lex_state = 5}, + [2379] = {.lex_state = 127, .external_lex_state = 5}, + [2380] = {.lex_state = 127, .external_lex_state = 5}, + [2381] = {.lex_state = 126, .external_lex_state = 4}, + [2382] = {.lex_state = 126, .external_lex_state = 4}, + [2383] = {.lex_state = 127, .external_lex_state = 2}, + [2384] = {.lex_state = 4, .external_lex_state = 3}, + [2385] = {.lex_state = 126, .external_lex_state = 3}, + [2386] = {.lex_state = 126, .external_lex_state = 3}, + [2387] = {.lex_state = 127, .external_lex_state = 2}, + [2388] = {.lex_state = 127, .external_lex_state = 5}, + [2389] = {.lex_state = 127, .external_lex_state = 2}, + [2390] = {.lex_state = 127, .external_lex_state = 2}, + [2391] = {.lex_state = 126, .external_lex_state = 3}, + [2392] = {.lex_state = 127, .external_lex_state = 5}, + [2393] = {.lex_state = 126, .external_lex_state = 4}, + [2394] = {.lex_state = 126, .external_lex_state = 4}, + [2395] = {.lex_state = 126, .external_lex_state = 3}, + [2396] = {.lex_state = 126, .external_lex_state = 3}, + [2397] = {.lex_state = 126, .external_lex_state = 3}, + [2398] = {.lex_state = 127, .external_lex_state = 2}, + [2399] = {.lex_state = 126, .external_lex_state = 4}, + [2400] = {.lex_state = 126, .external_lex_state = 3}, + [2401] = {.lex_state = 126, .external_lex_state = 3}, + [2402] = {.lex_state = 126, .external_lex_state = 3}, + [2403] = {.lex_state = 127, .external_lex_state = 2}, + [2404] = {.lex_state = 126, .external_lex_state = 4}, + [2405] = {.lex_state = 126, .external_lex_state = 4}, + [2406] = {.lex_state = 126, .external_lex_state = 3}, + [2407] = {.lex_state = 126, .external_lex_state = 3}, + [2408] = {.lex_state = 126, .external_lex_state = 3}, + [2409] = {.lex_state = 126, .external_lex_state = 4}, + [2410] = {.lex_state = 126, .external_lex_state = 4}, + [2411] = {.lex_state = 126, .external_lex_state = 3}, + [2412] = {.lex_state = 127, .external_lex_state = 5}, + [2413] = {.lex_state = 127, .external_lex_state = 5}, + [2414] = {.lex_state = 127, .external_lex_state = 5}, + [2415] = {.lex_state = 127, .external_lex_state = 5}, + [2416] = {.lex_state = 126, .external_lex_state = 4}, + [2417] = {.lex_state = 126, .external_lex_state = 4}, + [2418] = {.lex_state = 126, .external_lex_state = 3}, + [2419] = {.lex_state = 126, .external_lex_state = 4}, + [2420] = {.lex_state = 126, .external_lex_state = 3}, + [2421] = {.lex_state = 126, .external_lex_state = 3}, + [2422] = {.lex_state = 126, .external_lex_state = 3}, + [2423] = {.lex_state = 126, .external_lex_state = 3}, + [2424] = {.lex_state = 126, .external_lex_state = 3}, + [2425] = {.lex_state = 126, .external_lex_state = 3}, + [2426] = {.lex_state = 126, .external_lex_state = 3}, + [2427] = {.lex_state = 126, .external_lex_state = 3}, + [2428] = {.lex_state = 126, .external_lex_state = 3}, + [2429] = {.lex_state = 126, .external_lex_state = 3}, + [2430] = {.lex_state = 126, .external_lex_state = 3}, + [2431] = {.lex_state = 126, .external_lex_state = 3}, + [2432] = {.lex_state = 126, .external_lex_state = 3}, + [2433] = {.lex_state = 126, .external_lex_state = 3}, + [2434] = {.lex_state = 126, .external_lex_state = 3}, + [2435] = {.lex_state = 126, .external_lex_state = 3}, + [2436] = {.lex_state = 126, .external_lex_state = 3}, + [2437] = {.lex_state = 126, .external_lex_state = 3}, + [2438] = {.lex_state = 126, .external_lex_state = 3}, + [2439] = {.lex_state = 126, .external_lex_state = 3}, + [2440] = {.lex_state = 126, .external_lex_state = 3}, + [2441] = {.lex_state = 126, .external_lex_state = 3}, + [2442] = {.lex_state = 126, .external_lex_state = 3}, + [2443] = {.lex_state = 126, .external_lex_state = 3}, + [2444] = {.lex_state = 126, .external_lex_state = 3}, + [2445] = {.lex_state = 126, .external_lex_state = 3}, + [2446] = {.lex_state = 126, .external_lex_state = 3}, + [2447] = {.lex_state = 126, .external_lex_state = 3}, + [2448] = {.lex_state = 126, .external_lex_state = 3}, + [2449] = {.lex_state = 126, .external_lex_state = 3}, + [2450] = {.lex_state = 126, .external_lex_state = 3}, + [2451] = {.lex_state = 126, .external_lex_state = 3}, + [2452] = {.lex_state = 126, .external_lex_state = 3}, + [2453] = {.lex_state = 126, .external_lex_state = 3}, + [2454] = {.lex_state = 126, .external_lex_state = 3}, + [2455] = {.lex_state = 126, .external_lex_state = 3}, + [2456] = {.lex_state = 126, .external_lex_state = 3}, + [2457] = {.lex_state = 126, .external_lex_state = 3}, + [2458] = {.lex_state = 126, .external_lex_state = 3}, + [2459] = {.lex_state = 126, .external_lex_state = 3}, + [2460] = {.lex_state = 126, .external_lex_state = 3}, + [2461] = {.lex_state = 126, .external_lex_state = 3}, + [2462] = {.lex_state = 126, .external_lex_state = 3}, + [2463] = {.lex_state = 126, .external_lex_state = 3}, + [2464] = {.lex_state = 126, .external_lex_state = 3}, + [2465] = {.lex_state = 126, .external_lex_state = 3}, + [2466] = {.lex_state = 126, .external_lex_state = 3}, + [2467] = {.lex_state = 126, .external_lex_state = 3}, + [2468] = {.lex_state = 126, .external_lex_state = 3}, + [2469] = {.lex_state = 126, .external_lex_state = 3}, + [2470] = {.lex_state = 126, .external_lex_state = 3}, + [2471] = {.lex_state = 126, .external_lex_state = 3}, + [2472] = {.lex_state = 126, .external_lex_state = 3}, + [2473] = {.lex_state = 126, .external_lex_state = 3}, + [2474] = {.lex_state = 126, .external_lex_state = 3}, + [2475] = {.lex_state = 126, .external_lex_state = 3}, + [2476] = {.lex_state = 126, .external_lex_state = 3}, + [2477] = {.lex_state = 126, .external_lex_state = 3}, + [2478] = {.lex_state = 126, .external_lex_state = 3}, + [2479] = {.lex_state = 126, .external_lex_state = 3}, + [2480] = {.lex_state = 126, .external_lex_state = 3}, + [2481] = {.lex_state = 126, .external_lex_state = 3}, + [2482] = {.lex_state = 126, .external_lex_state = 3}, + [2483] = {.lex_state = 126, .external_lex_state = 3}, + [2484] = {.lex_state = 126, .external_lex_state = 3}, + [2485] = {.lex_state = 126, .external_lex_state = 3}, + [2486] = {.lex_state = 126, .external_lex_state = 3}, + [2487] = {.lex_state = 126, .external_lex_state = 3}, + [2488] = {.lex_state = 126, .external_lex_state = 3}, + [2489] = {.lex_state = 126, .external_lex_state = 3}, + [2490] = {.lex_state = 126, .external_lex_state = 3}, + [2491] = {.lex_state = 126, .external_lex_state = 3}, + [2492] = {.lex_state = 126, .external_lex_state = 3}, + [2493] = {.lex_state = 126, .external_lex_state = 3}, + [2494] = {.lex_state = 126, .external_lex_state = 3}, + [2495] = {.lex_state = 126, .external_lex_state = 3}, + [2496] = {.lex_state = 127, .external_lex_state = 2}, + [2497] = {.lex_state = 126, .external_lex_state = 3}, + [2498] = {.lex_state = 127, .external_lex_state = 5}, + [2499] = {.lex_state = 127, .external_lex_state = 5}, + [2500] = {.lex_state = 127, .external_lex_state = 5}, + [2501] = {.lex_state = 127, .external_lex_state = 5}, + [2502] = {.lex_state = 126, .external_lex_state = 3}, + [2503] = {.lex_state = 126, .external_lex_state = 3}, + [2504] = {.lex_state = 126, .external_lex_state = 3}, + [2505] = {.lex_state = 126, .external_lex_state = 3}, + [2506] = {.lex_state = 126, .external_lex_state = 3}, + [2507] = {.lex_state = 126, .external_lex_state = 3}, + [2508] = {.lex_state = 126, .external_lex_state = 3}, + [2509] = {.lex_state = 126, .external_lex_state = 3}, + [2510] = {.lex_state = 126, .external_lex_state = 3}, + [2511] = {.lex_state = 126, .external_lex_state = 3}, + [2512] = {.lex_state = 126, .external_lex_state = 3}, + [2513] = {.lex_state = 126, .external_lex_state = 3}, + [2514] = {.lex_state = 126, .external_lex_state = 3}, + [2515] = {.lex_state = 127, .external_lex_state = 5}, + [2516] = {.lex_state = 127, .external_lex_state = 5}, + [2517] = {.lex_state = 127, .external_lex_state = 5}, + [2518] = {.lex_state = 127, .external_lex_state = 5}, + [2519] = {.lex_state = 127, .external_lex_state = 5}, + [2520] = {.lex_state = 126, .external_lex_state = 3}, + [2521] = {.lex_state = 127, .external_lex_state = 2}, + [2522] = {.lex_state = 127, .external_lex_state = 5}, + [2523] = {.lex_state = 127, .external_lex_state = 5}, + [2524] = {.lex_state = 127, .external_lex_state = 2}, + [2525] = {.lex_state = 126, .external_lex_state = 3}, + [2526] = {.lex_state = 126, .external_lex_state = 3}, + [2527] = {.lex_state = 126, .external_lex_state = 3}, + [2528] = {.lex_state = 126, .external_lex_state = 3}, + [2529] = {.lex_state = 127, .external_lex_state = 2}, + [2530] = {.lex_state = 126, .external_lex_state = 3}, + [2531] = {.lex_state = 126, .external_lex_state = 3}, + [2532] = {.lex_state = 126, .external_lex_state = 4}, + [2533] = {.lex_state = 126, .external_lex_state = 3}, + [2534] = {.lex_state = 126, .external_lex_state = 3}, + [2535] = {.lex_state = 126, .external_lex_state = 3}, + [2536] = {.lex_state = 127, .external_lex_state = 2}, + [2537] = {.lex_state = 126, .external_lex_state = 3}, + [2538] = {.lex_state = 127, .external_lex_state = 2}, + [2539] = {.lex_state = 126, .external_lex_state = 3}, + [2540] = {.lex_state = 126, .external_lex_state = 3}, + [2541] = {.lex_state = 126, .external_lex_state = 3}, + [2542] = {.lex_state = 126, .external_lex_state = 3}, + [2543] = {.lex_state = 126, .external_lex_state = 3}, + [2544] = {.lex_state = 126, .external_lex_state = 3}, + [2545] = {.lex_state = 126, .external_lex_state = 3}, + [2546] = {.lex_state = 127, .external_lex_state = 2}, + [2547] = {.lex_state = 126, .external_lex_state = 3}, + [2548] = {.lex_state = 126, .external_lex_state = 3}, + [2549] = {.lex_state = 126, .external_lex_state = 3}, + [2550] = {.lex_state = 126, .external_lex_state = 3}, + [2551] = {.lex_state = 126, .external_lex_state = 3}, + [2552] = {.lex_state = 126, .external_lex_state = 3}, + [2553] = {.lex_state = 126, .external_lex_state = 3}, + [2554] = {.lex_state = 126, .external_lex_state = 3}, + [2555] = {.lex_state = 126, .external_lex_state = 3}, + [2556] = {.lex_state = 127, .external_lex_state = 2}, + [2557] = {.lex_state = 126, .external_lex_state = 3}, + [2558] = {.lex_state = 126, .external_lex_state = 3}, + [2559] = {.lex_state = 126, .external_lex_state = 3}, + [2560] = {.lex_state = 126, .external_lex_state = 3}, + [2561] = {.lex_state = 127, .external_lex_state = 5}, + [2562] = {.lex_state = 127, .external_lex_state = 5}, + [2563] = {.lex_state = 127, .external_lex_state = 5}, + [2564] = {.lex_state = 127, .external_lex_state = 5}, + [2565] = {.lex_state = 127, .external_lex_state = 2}, + [2566] = {.lex_state = 127, .external_lex_state = 2}, + [2567] = {.lex_state = 127, .external_lex_state = 2}, + [2568] = {.lex_state = 127, .external_lex_state = 2}, + [2569] = {.lex_state = 127, .external_lex_state = 5}, + [2570] = {.lex_state = 127, .external_lex_state = 5}, + [2571] = {.lex_state = 127, .external_lex_state = 5}, + [2572] = {.lex_state = 127, .external_lex_state = 5}, + [2573] = {.lex_state = 127, .external_lex_state = 2}, + [2574] = {.lex_state = 127, .external_lex_state = 2}, + [2575] = {.lex_state = 127, .external_lex_state = 2}, + [2576] = {.lex_state = 127, .external_lex_state = 5}, + [2577] = {.lex_state = 127, .external_lex_state = 5}, + [2578] = {.lex_state = 127, .external_lex_state = 5}, + [2579] = {.lex_state = 127, .external_lex_state = 2}, + [2580] = {.lex_state = 126, .external_lex_state = 3}, + [2581] = {.lex_state = 127, .external_lex_state = 2}, + [2582] = {.lex_state = 4, .external_lex_state = 3}, + [2583] = {.lex_state = 127, .external_lex_state = 5}, + [2584] = {.lex_state = 127, .external_lex_state = 5}, + [2585] = {.lex_state = 127, .external_lex_state = 2}, + [2586] = {.lex_state = 127, .external_lex_state = 2}, + [2587] = {.lex_state = 127, .external_lex_state = 2}, + [2588] = {.lex_state = 127, .external_lex_state = 5}, + [2589] = {.lex_state = 127, .external_lex_state = 2}, + [2590] = {.lex_state = 127, .external_lex_state = 5}, + [2591] = {.lex_state = 127, .external_lex_state = 2}, + [2592] = {.lex_state = 127, .external_lex_state = 5}, + [2593] = {.lex_state = 127, .external_lex_state = 2}, + [2594] = {.lex_state = 127, .external_lex_state = 2}, + [2595] = {.lex_state = 127, .external_lex_state = 5}, + [2596] = {.lex_state = 126, .external_lex_state = 3}, + [2597] = {.lex_state = 126, .external_lex_state = 3}, + [2598] = {.lex_state = 126, .external_lex_state = 3}, + [2599] = {.lex_state = 126, .external_lex_state = 3}, + [2600] = {.lex_state = 9, .external_lex_state = 5}, [2601] = {.lex_state = 9, .external_lex_state = 5}, [2602] = {.lex_state = 9, .external_lex_state = 5}, - [2603] = {.lex_state = 127, .external_lex_state = 3}, + [2603] = {.lex_state = 9, .external_lex_state = 5}, [2604] = {.lex_state = 9, .external_lex_state = 5}, [2605] = {.lex_state = 9, .external_lex_state = 5}, - [2606] = {.lex_state = 128, .external_lex_state = 2}, + [2606] = {.lex_state = 9, .external_lex_state = 5}, [2607] = {.lex_state = 9, .external_lex_state = 5}, - [2608] = {.lex_state = 9, .external_lex_state = 5}, + [2608] = {.lex_state = 126, .external_lex_state = 3}, [2609] = {.lex_state = 9, .external_lex_state = 5}, [2610] = {.lex_state = 9, .external_lex_state = 5}, [2611] = {.lex_state = 9, .external_lex_state = 5}, [2612] = {.lex_state = 9, .external_lex_state = 5}, [2613] = {.lex_state = 9, .external_lex_state = 5}, - [2614] = {.lex_state = 9, .external_lex_state = 5}, + [2614] = {.lex_state = 126, .external_lex_state = 3}, [2615] = {.lex_state = 9, .external_lex_state = 5}, [2616] = {.lex_state = 9, .external_lex_state = 5}, [2617] = {.lex_state = 9, .external_lex_state = 5}, @@ -16310,213 +16513,213 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2619] = {.lex_state = 9, .external_lex_state = 5}, [2620] = {.lex_state = 9, .external_lex_state = 5}, [2621] = {.lex_state = 9, .external_lex_state = 5}, - [2622] = {.lex_state = 127, .external_lex_state = 3}, + [2622] = {.lex_state = 9, .external_lex_state = 5}, [2623] = {.lex_state = 9, .external_lex_state = 5}, [2624] = {.lex_state = 9, .external_lex_state = 5}, - [2625] = {.lex_state = 128, .external_lex_state = 2}, - [2626] = {.lex_state = 127, .external_lex_state = 3}, - [2627] = {.lex_state = 127, .external_lex_state = 3}, + [2625] = {.lex_state = 9, .external_lex_state = 5}, + [2626] = {.lex_state = 9, .external_lex_state = 5}, + [2627] = {.lex_state = 126, .external_lex_state = 3}, [2628] = {.lex_state = 9, .external_lex_state = 5}, [2629] = {.lex_state = 9, .external_lex_state = 5}, [2630] = {.lex_state = 9, .external_lex_state = 5}, [2631] = {.lex_state = 9, .external_lex_state = 5}, - [2632] = {.lex_state = 127, .external_lex_state = 3}, - [2633] = {.lex_state = 127, .external_lex_state = 3}, + [2632] = {.lex_state = 9, .external_lex_state = 5}, + [2633] = {.lex_state = 9, .external_lex_state = 5}, [2634] = {.lex_state = 9, .external_lex_state = 5}, - [2635] = {.lex_state = 9, .external_lex_state = 5}, + [2635] = {.lex_state = 126, .external_lex_state = 3}, [2636] = {.lex_state = 9, .external_lex_state = 5}, [2637] = {.lex_state = 9, .external_lex_state = 5}, [2638] = {.lex_state = 9, .external_lex_state = 5}, - [2639] = {.lex_state = 9, .external_lex_state = 5}, + [2639] = {.lex_state = 126, .external_lex_state = 3}, [2640] = {.lex_state = 9, .external_lex_state = 5}, [2641] = {.lex_state = 9, .external_lex_state = 5}, [2642] = {.lex_state = 9, .external_lex_state = 5}, - [2643] = {.lex_state = 9, .external_lex_state = 5}, + [2643] = {.lex_state = 126, .external_lex_state = 3}, [2644] = {.lex_state = 9, .external_lex_state = 5}, [2645] = {.lex_state = 9, .external_lex_state = 5}, - [2646] = {.lex_state = 9, .external_lex_state = 5}, + [2646] = {.lex_state = 126, .external_lex_state = 3}, [2647] = {.lex_state = 9, .external_lex_state = 5}, [2648] = {.lex_state = 9, .external_lex_state = 5}, - [2649] = {.lex_state = 9, .external_lex_state = 5}, + [2649] = {.lex_state = 126, .external_lex_state = 3}, [2650] = {.lex_state = 9, .external_lex_state = 5}, [2651] = {.lex_state = 9, .external_lex_state = 5}, - [2652] = {.lex_state = 9, .external_lex_state = 5}, + [2652] = {.lex_state = 126, .external_lex_state = 3}, [2653] = {.lex_state = 9, .external_lex_state = 5}, - [2654] = {.lex_state = 9, .external_lex_state = 5}, - [2655] = {.lex_state = 127, .external_lex_state = 3}, + [2654] = {.lex_state = 127, .external_lex_state = 2}, + [2655] = {.lex_state = 9, .external_lex_state = 5}, [2656] = {.lex_state = 9, .external_lex_state = 5}, [2657] = {.lex_state = 9, .external_lex_state = 5}, - [2658] = {.lex_state = 127, .external_lex_state = 3}, + [2658] = {.lex_state = 126, .external_lex_state = 3}, [2659] = {.lex_state = 9, .external_lex_state = 5}, [2660] = {.lex_state = 9, .external_lex_state = 5}, - [2661] = {.lex_state = 127, .external_lex_state = 3}, + [2661] = {.lex_state = 127, .external_lex_state = 2}, [2662] = {.lex_state = 9, .external_lex_state = 5}, [2663] = {.lex_state = 9, .external_lex_state = 5}, - [2664] = {.lex_state = 128, .external_lex_state = 2}, + [2664] = {.lex_state = 9, .external_lex_state = 2}, [2665] = {.lex_state = 9, .external_lex_state = 2}, - [2666] = {.lex_state = 128, .external_lex_state = 2}, - [2667] = {.lex_state = 128, .external_lex_state = 2}, + [2666] = {.lex_state = 127, .external_lex_state = 2}, + [2667] = {.lex_state = 126, .external_lex_state = 3}, [2668] = {.lex_state = 9, .external_lex_state = 2}, - [2669] = {.lex_state = 128, .external_lex_state = 2}, - [2670] = {.lex_state = 127, .external_lex_state = 3}, - [2671] = {.lex_state = 128, .external_lex_state = 2}, + [2669] = {.lex_state = 127, .external_lex_state = 2}, + [2670] = {.lex_state = 9, .external_lex_state = 2}, + [2671] = {.lex_state = 127, .external_lex_state = 2}, [2672] = {.lex_state = 9, .external_lex_state = 2}, [2673] = {.lex_state = 9, .external_lex_state = 2}, [2674] = {.lex_state = 9, .external_lex_state = 2}, - [2675] = {.lex_state = 9, .external_lex_state = 2}, - [2676] = {.lex_state = 9, .external_lex_state = 2}, - [2677] = {.lex_state = 128, .external_lex_state = 2}, - [2678] = {.lex_state = 128, .external_lex_state = 2}, - [2679] = {.lex_state = 128, .external_lex_state = 2}, - [2680] = {.lex_state = 128, .external_lex_state = 2}, - [2681] = {.lex_state = 128, .external_lex_state = 2}, - [2682] = {.lex_state = 128, .external_lex_state = 2}, - [2683] = {.lex_state = 128, .external_lex_state = 2}, - [2684] = {.lex_state = 128, .external_lex_state = 2}, - [2685] = {.lex_state = 128, .external_lex_state = 2}, - [2686] = {.lex_state = 128, .external_lex_state = 2}, - [2687] = {.lex_state = 128, .external_lex_state = 2}, - [2688] = {.lex_state = 128, .external_lex_state = 2}, - [2689] = {.lex_state = 128, .external_lex_state = 2}, - [2690] = {.lex_state = 128, .external_lex_state = 2}, - [2691] = {.lex_state = 128, .external_lex_state = 2}, - [2692] = {.lex_state = 128, .external_lex_state = 2}, - [2693] = {.lex_state = 128, .external_lex_state = 2}, - [2694] = {.lex_state = 128, .external_lex_state = 2}, - [2695] = {.lex_state = 128, .external_lex_state = 2}, - [2696] = {.lex_state = 128, .external_lex_state = 2}, - [2697] = {.lex_state = 128, .external_lex_state = 2}, - [2698] = {.lex_state = 128, .external_lex_state = 2}, - [2699] = {.lex_state = 128, .external_lex_state = 2}, - [2700] = {.lex_state = 128, .external_lex_state = 2}, - [2701] = {.lex_state = 128, .external_lex_state = 2}, - [2702] = {.lex_state = 128, .external_lex_state = 2}, - [2703] = {.lex_state = 128, .external_lex_state = 2}, - [2704] = {.lex_state = 128, .external_lex_state = 2}, - [2705] = {.lex_state = 128, .external_lex_state = 2}, - [2706] = {.lex_state = 128, .external_lex_state = 2}, - [2707] = {.lex_state = 128, .external_lex_state = 2}, - [2708] = {.lex_state = 128, .external_lex_state = 2}, - [2709] = {.lex_state = 128, .external_lex_state = 2}, - [2710] = {.lex_state = 128, .external_lex_state = 2}, - [2711] = {.lex_state = 128, .external_lex_state = 2}, - [2712] = {.lex_state = 128, .external_lex_state = 2}, - [2713] = {.lex_state = 128, .external_lex_state = 2}, - [2714] = {.lex_state = 128, .external_lex_state = 2}, - [2715] = {.lex_state = 128, .external_lex_state = 2}, - [2716] = {.lex_state = 128, .external_lex_state = 2}, - [2717] = {.lex_state = 128, .external_lex_state = 2}, - [2718] = {.lex_state = 128, .external_lex_state = 2}, - [2719] = {.lex_state = 128, .external_lex_state = 2}, - [2720] = {.lex_state = 128, .external_lex_state = 2}, - [2721] = {.lex_state = 128, .external_lex_state = 2}, - [2722] = {.lex_state = 128, .external_lex_state = 2}, - [2723] = {.lex_state = 128, .external_lex_state = 2}, - [2724] = {.lex_state = 128, .external_lex_state = 2}, - [2725] = {.lex_state = 128, .external_lex_state = 2}, - [2726] = {.lex_state = 128, .external_lex_state = 2}, - [2727] = {.lex_state = 128, .external_lex_state = 2}, - [2728] = {.lex_state = 128, .external_lex_state = 2}, - [2729] = {.lex_state = 128, .external_lex_state = 2}, - [2730] = {.lex_state = 128, .external_lex_state = 2}, - [2731] = {.lex_state = 128, .external_lex_state = 2}, - [2732] = {.lex_state = 128, .external_lex_state = 2}, - [2733] = {.lex_state = 128, .external_lex_state = 2}, - [2734] = {.lex_state = 128, .external_lex_state = 2}, - [2735] = {.lex_state = 128, .external_lex_state = 2}, - [2736] = {.lex_state = 128, .external_lex_state = 2}, - [2737] = {.lex_state = 128, .external_lex_state = 2}, - [2738] = {.lex_state = 128, .external_lex_state = 2}, - [2739] = {.lex_state = 128, .external_lex_state = 2}, - [2740] = {.lex_state = 128, .external_lex_state = 2}, - [2741] = {.lex_state = 128, .external_lex_state = 2}, - [2742] = {.lex_state = 128, .external_lex_state = 2}, - [2743] = {.lex_state = 128, .external_lex_state = 2}, - [2744] = {.lex_state = 128, .external_lex_state = 2}, - [2745] = {.lex_state = 128, .external_lex_state = 2}, - [2746] = {.lex_state = 128, .external_lex_state = 2}, - [2747] = {.lex_state = 128, .external_lex_state = 2}, - [2748] = {.lex_state = 128, .external_lex_state = 2}, - [2749] = {.lex_state = 128, .external_lex_state = 2}, - [2750] = {.lex_state = 128, .external_lex_state = 2}, - [2751] = {.lex_state = 128, .external_lex_state = 2}, - [2752] = {.lex_state = 128, .external_lex_state = 2}, - [2753] = {.lex_state = 128, .external_lex_state = 2}, - [2754] = {.lex_state = 128, .external_lex_state = 2}, - [2755] = {.lex_state = 128, .external_lex_state = 2}, - [2756] = {.lex_state = 128, .external_lex_state = 2}, - [2757] = {.lex_state = 128, .external_lex_state = 2}, - [2758] = {.lex_state = 128, .external_lex_state = 2}, - [2759] = {.lex_state = 128, .external_lex_state = 2}, - [2760] = {.lex_state = 128, .external_lex_state = 2}, - [2761] = {.lex_state = 128, .external_lex_state = 2}, - [2762] = {.lex_state = 128, .external_lex_state = 2}, - [2763] = {.lex_state = 128, .external_lex_state = 2}, - [2764] = {.lex_state = 128, .external_lex_state = 2}, - [2765] = {.lex_state = 128, .external_lex_state = 2}, - [2766] = {.lex_state = 128, .external_lex_state = 2}, - [2767] = {.lex_state = 128, .external_lex_state = 2}, - [2768] = {.lex_state = 128, .external_lex_state = 2}, - [2769] = {.lex_state = 128, .external_lex_state = 2}, - [2770] = {.lex_state = 128, .external_lex_state = 2}, - [2771] = {.lex_state = 128, .external_lex_state = 2}, - [2772] = {.lex_state = 128, .external_lex_state = 2}, - [2773] = {.lex_state = 128, .external_lex_state = 2}, - [2774] = {.lex_state = 128, .external_lex_state = 2}, - [2775] = {.lex_state = 128, .external_lex_state = 2}, - [2776] = {.lex_state = 128, .external_lex_state = 2}, - [2777] = {.lex_state = 128, .external_lex_state = 2}, - [2778] = {.lex_state = 128, .external_lex_state = 2}, - [2779] = {.lex_state = 128, .external_lex_state = 2}, - [2780] = {.lex_state = 128, .external_lex_state = 2}, - [2781] = {.lex_state = 128, .external_lex_state = 2}, - [2782] = {.lex_state = 128, .external_lex_state = 2}, - [2783] = {.lex_state = 128, .external_lex_state = 2}, - [2784] = {.lex_state = 128, .external_lex_state = 2}, - [2785] = {.lex_state = 128, .external_lex_state = 2}, - [2786] = {.lex_state = 128, .external_lex_state = 2}, - [2787] = {.lex_state = 128, .external_lex_state = 2}, - [2788] = {.lex_state = 128, .external_lex_state = 2}, - [2789] = {.lex_state = 128, .external_lex_state = 2}, - [2790] = {.lex_state = 128, .external_lex_state = 2}, - [2791] = {.lex_state = 128, .external_lex_state = 2}, - [2792] = {.lex_state = 128, .external_lex_state = 2}, - [2793] = {.lex_state = 128, .external_lex_state = 2}, - [2794] = {.lex_state = 128, .external_lex_state = 2}, - [2795] = {.lex_state = 128, .external_lex_state = 2}, - [2796] = {.lex_state = 128, .external_lex_state = 2}, - [2797] = {.lex_state = 128, .external_lex_state = 2}, - [2798] = {.lex_state = 128, .external_lex_state = 2}, - [2799] = {.lex_state = 128, .external_lex_state = 2}, - [2800] = {.lex_state = 128, .external_lex_state = 2}, - [2801] = {.lex_state = 128, .external_lex_state = 2}, - [2802] = {.lex_state = 128, .external_lex_state = 2}, - [2803] = {.lex_state = 128, .external_lex_state = 2}, - [2804] = {.lex_state = 128, .external_lex_state = 2}, - [2805] = {.lex_state = 128, .external_lex_state = 2}, - [2806] = {.lex_state = 128, .external_lex_state = 2}, - [2807] = {.lex_state = 128, .external_lex_state = 2}, - [2808] = {.lex_state = 128, .external_lex_state = 2}, - [2809] = {.lex_state = 128, .external_lex_state = 2}, - [2810] = {.lex_state = 128, .external_lex_state = 2}, - [2811] = {.lex_state = 128, .external_lex_state = 2}, - [2812] = {.lex_state = 128, .external_lex_state = 2}, - [2813] = {.lex_state = 128, .external_lex_state = 2}, - [2814] = {.lex_state = 128, .external_lex_state = 2}, - [2815] = {.lex_state = 128, .external_lex_state = 2}, - [2816] = {.lex_state = 128, .external_lex_state = 2}, - [2817] = {.lex_state = 128, .external_lex_state = 2}, - [2818] = {.lex_state = 128, .external_lex_state = 2}, - [2819] = {.lex_state = 128, .external_lex_state = 2}, - [2820] = {.lex_state = 128, .external_lex_state = 2}, - [2821] = {.lex_state = 128, .external_lex_state = 2}, - [2822] = {.lex_state = 128, .external_lex_state = 2}, - [2823] = {.lex_state = 128, .external_lex_state = 2}, - [2824] = {.lex_state = 128, .external_lex_state = 2}, - [2825] = {.lex_state = 128, .external_lex_state = 2}, - [2826] = {.lex_state = 128, .external_lex_state = 2}, - [2827] = {.lex_state = 128, .external_lex_state = 2}, - [2828] = {.lex_state = 128, .external_lex_state = 2}, + [2675] = {.lex_state = 127, .external_lex_state = 2}, + [2676] = {.lex_state = 127, .external_lex_state = 2}, + [2677] = {.lex_state = 127, .external_lex_state = 2}, + [2678] = {.lex_state = 127, .external_lex_state = 2}, + [2679] = {.lex_state = 127, .external_lex_state = 2}, + [2680] = {.lex_state = 127, .external_lex_state = 2}, + [2681] = {.lex_state = 127, .external_lex_state = 2}, + [2682] = {.lex_state = 127, .external_lex_state = 2}, + [2683] = {.lex_state = 127, .external_lex_state = 2}, + [2684] = {.lex_state = 127, .external_lex_state = 2}, + [2685] = {.lex_state = 127, .external_lex_state = 2}, + [2686] = {.lex_state = 127, .external_lex_state = 2}, + [2687] = {.lex_state = 127, .external_lex_state = 2}, + [2688] = {.lex_state = 127, .external_lex_state = 2}, + [2689] = {.lex_state = 127, .external_lex_state = 2}, + [2690] = {.lex_state = 127, .external_lex_state = 2}, + [2691] = {.lex_state = 127, .external_lex_state = 2}, + [2692] = {.lex_state = 127, .external_lex_state = 2}, + [2693] = {.lex_state = 127, .external_lex_state = 2}, + [2694] = {.lex_state = 127, .external_lex_state = 2}, + [2695] = {.lex_state = 127, .external_lex_state = 2}, + [2696] = {.lex_state = 127, .external_lex_state = 2}, + [2697] = {.lex_state = 127, .external_lex_state = 2}, + [2698] = {.lex_state = 127, .external_lex_state = 2}, + [2699] = {.lex_state = 127, .external_lex_state = 2}, + [2700] = {.lex_state = 127, .external_lex_state = 2}, + [2701] = {.lex_state = 127, .external_lex_state = 2}, + [2702] = {.lex_state = 127, .external_lex_state = 2}, + [2703] = {.lex_state = 127, .external_lex_state = 2}, + [2704] = {.lex_state = 127, .external_lex_state = 2}, + [2705] = {.lex_state = 127, .external_lex_state = 2}, + [2706] = {.lex_state = 127, .external_lex_state = 2}, + [2707] = {.lex_state = 127, .external_lex_state = 2}, + [2708] = {.lex_state = 127, .external_lex_state = 2}, + [2709] = {.lex_state = 127, .external_lex_state = 2}, + [2710] = {.lex_state = 127, .external_lex_state = 2}, + [2711] = {.lex_state = 127, .external_lex_state = 2}, + [2712] = {.lex_state = 127, .external_lex_state = 2}, + [2713] = {.lex_state = 127, .external_lex_state = 2}, + [2714] = {.lex_state = 127, .external_lex_state = 2}, + [2715] = {.lex_state = 127, .external_lex_state = 2}, + [2716] = {.lex_state = 127, .external_lex_state = 2}, + [2717] = {.lex_state = 127, .external_lex_state = 2}, + [2718] = {.lex_state = 127, .external_lex_state = 2}, + [2719] = {.lex_state = 127, .external_lex_state = 2}, + [2720] = {.lex_state = 127, .external_lex_state = 2}, + [2721] = {.lex_state = 127, .external_lex_state = 2}, + [2722] = {.lex_state = 127, .external_lex_state = 2}, + [2723] = {.lex_state = 127, .external_lex_state = 2}, + [2724] = {.lex_state = 127, .external_lex_state = 2}, + [2725] = {.lex_state = 127, .external_lex_state = 2}, + [2726] = {.lex_state = 127, .external_lex_state = 2}, + [2727] = {.lex_state = 127, .external_lex_state = 2}, + [2728] = {.lex_state = 127, .external_lex_state = 2}, + [2729] = {.lex_state = 127, .external_lex_state = 2}, + [2730] = {.lex_state = 127, .external_lex_state = 2}, + [2731] = {.lex_state = 127, .external_lex_state = 2}, + [2732] = {.lex_state = 127, .external_lex_state = 2}, + [2733] = {.lex_state = 127, .external_lex_state = 2}, + [2734] = {.lex_state = 127, .external_lex_state = 2}, + [2735] = {.lex_state = 127, .external_lex_state = 2}, + [2736] = {.lex_state = 127, .external_lex_state = 2}, + [2737] = {.lex_state = 127, .external_lex_state = 2}, + [2738] = {.lex_state = 127, .external_lex_state = 2}, + [2739] = {.lex_state = 127, .external_lex_state = 2}, + [2740] = {.lex_state = 127, .external_lex_state = 2}, + [2741] = {.lex_state = 127, .external_lex_state = 2}, + [2742] = {.lex_state = 127, .external_lex_state = 2}, + [2743] = {.lex_state = 127, .external_lex_state = 2}, + [2744] = {.lex_state = 127, .external_lex_state = 2}, + [2745] = {.lex_state = 127, .external_lex_state = 2}, + [2746] = {.lex_state = 127, .external_lex_state = 2}, + [2747] = {.lex_state = 127, .external_lex_state = 2}, + [2748] = {.lex_state = 127, .external_lex_state = 2}, + [2749] = {.lex_state = 127, .external_lex_state = 2}, + [2750] = {.lex_state = 127, .external_lex_state = 2}, + [2751] = {.lex_state = 127, .external_lex_state = 2}, + [2752] = {.lex_state = 127, .external_lex_state = 2}, + [2753] = {.lex_state = 127, .external_lex_state = 2}, + [2754] = {.lex_state = 127, .external_lex_state = 2}, + [2755] = {.lex_state = 127, .external_lex_state = 2}, + [2756] = {.lex_state = 127, .external_lex_state = 2}, + [2757] = {.lex_state = 127, .external_lex_state = 2}, + [2758] = {.lex_state = 127, .external_lex_state = 2}, + [2759] = {.lex_state = 127, .external_lex_state = 2}, + [2760] = {.lex_state = 127, .external_lex_state = 2}, + [2761] = {.lex_state = 127, .external_lex_state = 2}, + [2762] = {.lex_state = 127, .external_lex_state = 2}, + [2763] = {.lex_state = 127, .external_lex_state = 2}, + [2764] = {.lex_state = 127, .external_lex_state = 2}, + [2765] = {.lex_state = 127, .external_lex_state = 2}, + [2766] = {.lex_state = 127, .external_lex_state = 2}, + [2767] = {.lex_state = 127, .external_lex_state = 2}, + [2768] = {.lex_state = 127, .external_lex_state = 2}, + [2769] = {.lex_state = 127, .external_lex_state = 2}, + [2770] = {.lex_state = 127, .external_lex_state = 2}, + [2771] = {.lex_state = 127, .external_lex_state = 2}, + [2772] = {.lex_state = 127, .external_lex_state = 2}, + [2773] = {.lex_state = 127, .external_lex_state = 2}, + [2774] = {.lex_state = 127, .external_lex_state = 2}, + [2775] = {.lex_state = 127, .external_lex_state = 2}, + [2776] = {.lex_state = 127, .external_lex_state = 2}, + [2777] = {.lex_state = 127, .external_lex_state = 2}, + [2778] = {.lex_state = 127, .external_lex_state = 2}, + [2779] = {.lex_state = 127, .external_lex_state = 2}, + [2780] = {.lex_state = 127, .external_lex_state = 2}, + [2781] = {.lex_state = 127, .external_lex_state = 2}, + [2782] = {.lex_state = 127, .external_lex_state = 2}, + [2783] = {.lex_state = 127, .external_lex_state = 2}, + [2784] = {.lex_state = 127, .external_lex_state = 2}, + [2785] = {.lex_state = 127, .external_lex_state = 2}, + [2786] = {.lex_state = 127, .external_lex_state = 2}, + [2787] = {.lex_state = 127, .external_lex_state = 2}, + [2788] = {.lex_state = 127, .external_lex_state = 2}, + [2789] = {.lex_state = 127, .external_lex_state = 2}, + [2790] = {.lex_state = 127, .external_lex_state = 2}, + [2791] = {.lex_state = 127, .external_lex_state = 2}, + [2792] = {.lex_state = 127, .external_lex_state = 2}, + [2793] = {.lex_state = 127, .external_lex_state = 2}, + [2794] = {.lex_state = 127, .external_lex_state = 2}, + [2795] = {.lex_state = 127, .external_lex_state = 2}, + [2796] = {.lex_state = 127, .external_lex_state = 2}, + [2797] = {.lex_state = 127, .external_lex_state = 2}, + [2798] = {.lex_state = 127, .external_lex_state = 2}, + [2799] = {.lex_state = 127, .external_lex_state = 2}, + [2800] = {.lex_state = 127, .external_lex_state = 2}, + [2801] = {.lex_state = 127, .external_lex_state = 2}, + [2802] = {.lex_state = 127, .external_lex_state = 2}, + [2803] = {.lex_state = 127, .external_lex_state = 2}, + [2804] = {.lex_state = 127, .external_lex_state = 2}, + [2805] = {.lex_state = 127, .external_lex_state = 2}, + [2806] = {.lex_state = 127, .external_lex_state = 2}, + [2807] = {.lex_state = 127, .external_lex_state = 2}, + [2808] = {.lex_state = 127, .external_lex_state = 2}, + [2809] = {.lex_state = 127, .external_lex_state = 2}, + [2810] = {.lex_state = 127, .external_lex_state = 2}, + [2811] = {.lex_state = 127, .external_lex_state = 2}, + [2812] = {.lex_state = 127, .external_lex_state = 2}, + [2813] = {.lex_state = 127, .external_lex_state = 2}, + [2814] = {.lex_state = 127, .external_lex_state = 2}, + [2815] = {.lex_state = 127, .external_lex_state = 2}, + [2816] = {.lex_state = 127, .external_lex_state = 2}, + [2817] = {.lex_state = 127, .external_lex_state = 2}, + [2818] = {.lex_state = 127, .external_lex_state = 2}, + [2819] = {.lex_state = 127, .external_lex_state = 2}, + [2820] = {.lex_state = 127, .external_lex_state = 2}, + [2821] = {.lex_state = 127, .external_lex_state = 2}, + [2822] = {.lex_state = 127, .external_lex_state = 2}, + [2823] = {.lex_state = 127, .external_lex_state = 2}, + [2824] = {.lex_state = 127, .external_lex_state = 2}, + [2825] = {.lex_state = 127, .external_lex_state = 2}, + [2826] = {.lex_state = 127, .external_lex_state = 2}, + [2827] = {.lex_state = 127, .external_lex_state = 2}, + [2828] = {.lex_state = 127, .external_lex_state = 2}, [2829] = {.lex_state = 7, .external_lex_state = 2}, [2830] = {.lex_state = 7, .external_lex_state = 2}, [2831] = {.lex_state = 7, .external_lex_state = 2}, @@ -16554,3130 +16757,3133 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2863] = {.lex_state = 7, .external_lex_state = 2}, [2864] = {.lex_state = 7, .external_lex_state = 2}, [2865] = {.lex_state = 7, .external_lex_state = 2}, - [2866] = {.lex_state = 128, .external_lex_state = 5}, - [2867] = {.lex_state = 20, .external_lex_state = 2}, - [2868] = {.lex_state = 20, .external_lex_state = 2}, - [2869] = {.lex_state = 128, .external_lex_state = 2}, - [2870] = {.lex_state = 128, .external_lex_state = 5}, - [2871] = {.lex_state = 128, .external_lex_state = 2}, + [2866] = {.lex_state = 127, .external_lex_state = 5}, + [2867] = {.lex_state = 127, .external_lex_state = 5}, + [2868] = {.lex_state = 19, .external_lex_state = 2}, + [2869] = {.lex_state = 127, .external_lex_state = 2}, + [2870] = {.lex_state = 19, .external_lex_state = 2}, + [2871] = {.lex_state = 127, .external_lex_state = 2}, [2872] = {.lex_state = 7, .external_lex_state = 2}, [2873] = {.lex_state = 7, .external_lex_state = 2}, - [2874] = {.lex_state = 128, .external_lex_state = 2}, - [2875] = {.lex_state = 128, .external_lex_state = 2}, - [2876] = {.lex_state = 7, .external_lex_state = 2}, - [2877] = {.lex_state = 128, .external_lex_state = 2}, - [2878] = {.lex_state = 128, .external_lex_state = 2}, + [2874] = {.lex_state = 127, .external_lex_state = 2}, + [2875] = {.lex_state = 7, .external_lex_state = 2}, + [2876] = {.lex_state = 127, .external_lex_state = 2}, + [2877] = {.lex_state = 127, .external_lex_state = 2}, + [2878] = {.lex_state = 127, .external_lex_state = 2}, [2879] = {.lex_state = 7, .external_lex_state = 2}, - [2880] = {.lex_state = 7, .external_lex_state = 2}, - [2881] = {.lex_state = 128, .external_lex_state = 2}, - [2882] = {.lex_state = 128, .external_lex_state = 2}, - [2883] = {.lex_state = 7, .external_lex_state = 5}, - [2884] = {.lex_state = 7, .external_lex_state = 5}, - [2885] = {.lex_state = 128, .external_lex_state = 2}, - [2886] = {.lex_state = 128, .external_lex_state = 2}, + [2880] = {.lex_state = 127, .external_lex_state = 2}, + [2881] = {.lex_state = 7, .external_lex_state = 5}, + [2882] = {.lex_state = 7, .external_lex_state = 2}, + [2883] = {.lex_state = 127, .external_lex_state = 2}, + [2884] = {.lex_state = 127, .external_lex_state = 2}, + [2885] = {.lex_state = 7, .external_lex_state = 2}, + [2886] = {.lex_state = 127, .external_lex_state = 2}, [2887] = {.lex_state = 7, .external_lex_state = 5}, - [2888] = {.lex_state = 128, .external_lex_state = 2}, - [2889] = {.lex_state = 7, .external_lex_state = 2}, - [2890] = {.lex_state = 128, .external_lex_state = 2}, - [2891] = {.lex_state = 128, .external_lex_state = 2}, - [2892] = {.lex_state = 128, .external_lex_state = 2}, - [2893] = {.lex_state = 128, .external_lex_state = 2}, - [2894] = {.lex_state = 128, .external_lex_state = 2}, - [2895] = {.lex_state = 128, .external_lex_state = 2}, - [2896] = {.lex_state = 128, .external_lex_state = 2}, - [2897] = {.lex_state = 128, .external_lex_state = 2}, - [2898] = {.lex_state = 128, .external_lex_state = 2}, - [2899] = {.lex_state = 7, .external_lex_state = 5}, - [2900] = {.lex_state = 128, .external_lex_state = 2}, - [2901] = {.lex_state = 7, .external_lex_state = 5}, - [2902] = {.lex_state = 2, .external_lex_state = 2}, - [2903] = {.lex_state = 128, .external_lex_state = 2}, - [2904] = {.lex_state = 7, .external_lex_state = 5}, - [2905] = {.lex_state = 7, .external_lex_state = 5}, - [2906] = {.lex_state = 7, .external_lex_state = 5}, - [2907] = {.lex_state = 7, .external_lex_state = 5}, - [2908] = {.lex_state = 128, .external_lex_state = 2}, - [2909] = {.lex_state = 128, .external_lex_state = 2}, - [2910] = {.lex_state = 2, .external_lex_state = 2}, - [2911] = {.lex_state = 128, .external_lex_state = 2}, - [2912] = {.lex_state = 128, .external_lex_state = 2}, - [2913] = {.lex_state = 128, .external_lex_state = 2}, - [2914] = {.lex_state = 128, .external_lex_state = 2}, - [2915] = {.lex_state = 128, .external_lex_state = 2}, - [2916] = {.lex_state = 7, .external_lex_state = 5}, - [2917] = {.lex_state = 128, .external_lex_state = 2}, - [2918] = {.lex_state = 7, .external_lex_state = 5}, - [2919] = {.lex_state = 128, .external_lex_state = 2}, - [2920] = {.lex_state = 7, .external_lex_state = 5}, - [2921] = {.lex_state = 7, .external_lex_state = 5}, - [2922] = {.lex_state = 128, .external_lex_state = 2}, - [2923] = {.lex_state = 2, .external_lex_state = 2}, - [2924] = {.lex_state = 7, .external_lex_state = 5}, - [2925] = {.lex_state = 7, .external_lex_state = 5}, - [2926] = {.lex_state = 128, .external_lex_state = 2}, - [2927] = {.lex_state = 128, .external_lex_state = 2}, - [2928] = {.lex_state = 7, .external_lex_state = 5}, + [2888] = {.lex_state = 7, .external_lex_state = 5}, + [2889] = {.lex_state = 127, .external_lex_state = 2}, + [2890] = {.lex_state = 127, .external_lex_state = 2}, + [2891] = {.lex_state = 127, .external_lex_state = 2}, + [2892] = {.lex_state = 127, .external_lex_state = 2}, + [2893] = {.lex_state = 127, .external_lex_state = 2}, + [2894] = {.lex_state = 127, .external_lex_state = 2}, + [2895] = {.lex_state = 127, .external_lex_state = 2}, + [2896] = {.lex_state = 127, .external_lex_state = 2}, + [2897] = {.lex_state = 127, .external_lex_state = 2}, + [2898] = {.lex_state = 127, .external_lex_state = 2}, + [2899] = {.lex_state = 127, .external_lex_state = 2}, + [2900] = {.lex_state = 127, .external_lex_state = 2}, + [2901] = {.lex_state = 127, .external_lex_state = 2}, + [2902] = {.lex_state = 127, .external_lex_state = 2}, + [2903] = {.lex_state = 127, .external_lex_state = 2}, + [2904] = {.lex_state = 127, .external_lex_state = 2}, + [2905] = {.lex_state = 7, .external_lex_state = 6}, + [2906] = {.lex_state = 7, .external_lex_state = 6}, + [2907] = {.lex_state = 7, .external_lex_state = 6}, + [2908] = {.lex_state = 127, .external_lex_state = 2}, + [2909] = {.lex_state = 127, .external_lex_state = 2}, + [2910] = {.lex_state = 127, .external_lex_state = 2}, + [2911] = {.lex_state = 127, .external_lex_state = 2}, + [2912] = {.lex_state = 127, .external_lex_state = 2}, + [2913] = {.lex_state = 127, .external_lex_state = 2}, + [2914] = {.lex_state = 2, .external_lex_state = 2}, + [2915] = {.lex_state = 127, .external_lex_state = 2}, + [2916] = {.lex_state = 127, .external_lex_state = 2}, + [2917] = {.lex_state = 127, .external_lex_state = 2}, + [2918] = {.lex_state = 127, .external_lex_state = 2}, + [2919] = {.lex_state = 127, .external_lex_state = 2}, + [2920] = {.lex_state = 127, .external_lex_state = 2}, + [2921] = {.lex_state = 127, .external_lex_state = 2}, + [2922] = {.lex_state = 127, .external_lex_state = 2}, + [2923] = {.lex_state = 127, .external_lex_state = 2}, + [2924] = {.lex_state = 127, .external_lex_state = 2}, + [2925] = {.lex_state = 127, .external_lex_state = 2}, + [2926] = {.lex_state = 127, .external_lex_state = 2}, + [2927] = {.lex_state = 127, .external_lex_state = 2}, + [2928] = {.lex_state = 127, .external_lex_state = 2}, [2929] = {.lex_state = 7, .external_lex_state = 5}, [2930] = {.lex_state = 7, .external_lex_state = 5}, - [2931] = {.lex_state = 128, .external_lex_state = 2}, - [2932] = {.lex_state = 128, .external_lex_state = 2}, - [2933] = {.lex_state = 128, .external_lex_state = 2}, + [2931] = {.lex_state = 7, .external_lex_state = 5}, + [2932] = {.lex_state = 7, .external_lex_state = 5}, + [2933] = {.lex_state = 7, .external_lex_state = 5}, [2934] = {.lex_state = 7, .external_lex_state = 5}, - [2935] = {.lex_state = 128, .external_lex_state = 2}, - [2936] = {.lex_state = 128, .external_lex_state = 2}, - [2937] = {.lex_state = 128, .external_lex_state = 2}, - [2938] = {.lex_state = 128, .external_lex_state = 2}, - [2939] = {.lex_state = 128, .external_lex_state = 2}, - [2940] = {.lex_state = 128, .external_lex_state = 2}, + [2935] = {.lex_state = 7, .external_lex_state = 5}, + [2936] = {.lex_state = 2, .external_lex_state = 2}, + [2937] = {.lex_state = 7, .external_lex_state = 5}, + [2938] = {.lex_state = 7, .external_lex_state = 5}, + [2939] = {.lex_state = 7, .external_lex_state = 5}, + [2940] = {.lex_state = 7, .external_lex_state = 5}, [2941] = {.lex_state = 7, .external_lex_state = 5}, - [2942] = {.lex_state = 7, .external_lex_state = 5}, - [2943] = {.lex_state = 2, .external_lex_state = 2}, - [2944] = {.lex_state = 7, .external_lex_state = 5}, - [2945] = {.lex_state = 7, .external_lex_state = 5}, - [2946] = {.lex_state = 7, .external_lex_state = 6}, - [2947] = {.lex_state = 7, .external_lex_state = 6}, - [2948] = {.lex_state = 7, .external_lex_state = 6}, - [2949] = {.lex_state = 128, .external_lex_state = 2}, - [2950] = {.lex_state = 128, .external_lex_state = 2}, + [2942] = {.lex_state = 127, .external_lex_state = 2}, + [2943] = {.lex_state = 7, .external_lex_state = 5}, + [2944] = {.lex_state = 127, .external_lex_state = 2}, + [2945] = {.lex_state = 127, .external_lex_state = 2}, + [2946] = {.lex_state = 127, .external_lex_state = 2}, + [2947] = {.lex_state = 127, .external_lex_state = 2}, + [2948] = {.lex_state = 2, .external_lex_state = 2}, + [2949] = {.lex_state = 7, .external_lex_state = 5}, + [2950] = {.lex_state = 7, .external_lex_state = 5}, [2951] = {.lex_state = 7, .external_lex_state = 5}, - [2952] = {.lex_state = 128, .external_lex_state = 2}, + [2952] = {.lex_state = 7, .external_lex_state = 5}, [2953] = {.lex_state = 7, .external_lex_state = 5}, - [2954] = {.lex_state = 2, .external_lex_state = 2}, - [2955] = {.lex_state = 128, .external_lex_state = 2}, - [2956] = {.lex_state = 128, .external_lex_state = 2}, - [2957] = {.lex_state = 128, .external_lex_state = 2}, - [2958] = {.lex_state = 128, .external_lex_state = 2}, - [2959] = {.lex_state = 128, .external_lex_state = 2}, + [2954] = {.lex_state = 7, .external_lex_state = 5}, + [2955] = {.lex_state = 7, .external_lex_state = 5}, + [2956] = {.lex_state = 7, .external_lex_state = 5}, + [2957] = {.lex_state = 7, .external_lex_state = 5}, + [2958] = {.lex_state = 7, .external_lex_state = 5}, + [2959] = {.lex_state = 7, .external_lex_state = 5}, [2960] = {.lex_state = 7, .external_lex_state = 5}, [2961] = {.lex_state = 7, .external_lex_state = 5}, [2962] = {.lex_state = 7, .external_lex_state = 5}, - [2963] = {.lex_state = 128, .external_lex_state = 2}, - [2964] = {.lex_state = 2, .external_lex_state = 2}, + [2963] = {.lex_state = 7, .external_lex_state = 5}, + [2964] = {.lex_state = 7, .external_lex_state = 5}, [2965] = {.lex_state = 7, .external_lex_state = 5}, [2966] = {.lex_state = 7, .external_lex_state = 5}, [2967] = {.lex_state = 7, .external_lex_state = 5}, [2968] = {.lex_state = 7, .external_lex_state = 5}, - [2969] = {.lex_state = 2, .external_lex_state = 2}, - [2970] = {.lex_state = 128, .external_lex_state = 2}, - [2971] = {.lex_state = 7, .external_lex_state = 5}, - [2972] = {.lex_state = 128, .external_lex_state = 2}, - [2973] = {.lex_state = 128, .external_lex_state = 2}, - [2974] = {.lex_state = 7, .external_lex_state = 5}, - [2975] = {.lex_state = 7, .external_lex_state = 5}, - [2976] = {.lex_state = 128, .external_lex_state = 2}, - [2977] = {.lex_state = 128, .external_lex_state = 2}, - [2978] = {.lex_state = 128, .external_lex_state = 5}, - [2979] = {.lex_state = 7, .external_lex_state = 5}, - [2980] = {.lex_state = 128, .external_lex_state = 2}, - [2981] = {.lex_state = 128, .external_lex_state = 2}, - [2982] = {.lex_state = 128, .external_lex_state = 2}, - [2983] = {.lex_state = 128, .external_lex_state = 2}, - [2984] = {.lex_state = 128, .external_lex_state = 2}, - [2985] = {.lex_state = 128, .external_lex_state = 2}, - [2986] = {.lex_state = 128, .external_lex_state = 2}, - [2987] = {.lex_state = 128, .external_lex_state = 2}, - [2988] = {.lex_state = 128, .external_lex_state = 2}, - [2989] = {.lex_state = 128, .external_lex_state = 2}, - [2990] = {.lex_state = 2, .external_lex_state = 2}, - [2991] = {.lex_state = 7, .external_lex_state = 5}, - [2992] = {.lex_state = 128, .external_lex_state = 2}, - [2993] = {.lex_state = 128, .external_lex_state = 2}, - [2994] = {.lex_state = 128, .external_lex_state = 2}, - [2995] = {.lex_state = 128, .external_lex_state = 2}, - [2996] = {.lex_state = 2, .external_lex_state = 2}, - [2997] = {.lex_state = 128, .external_lex_state = 2}, - [2998] = {.lex_state = 128, .external_lex_state = 2}, - [2999] = {.lex_state = 128, .external_lex_state = 2}, - [3000] = {.lex_state = 128, .external_lex_state = 5}, - [3001] = {.lex_state = 128, .external_lex_state = 2}, - [3002] = {.lex_state = 128, .external_lex_state = 2}, - [3003] = {.lex_state = 128, .external_lex_state = 5}, - [3004] = {.lex_state = 128, .external_lex_state = 5}, - [3005] = {.lex_state = 128, .external_lex_state = 5}, - [3006] = {.lex_state = 128, .external_lex_state = 5}, - [3007] = {.lex_state = 128, .external_lex_state = 5}, - [3008] = {.lex_state = 128, .external_lex_state = 5}, - [3009] = {.lex_state = 128, .external_lex_state = 5}, - [3010] = {.lex_state = 128, .external_lex_state = 5}, - [3011] = {.lex_state = 128, .external_lex_state = 5}, - [3012] = {.lex_state = 128, .external_lex_state = 5}, - [3013] = {.lex_state = 128, .external_lex_state = 2}, - [3014] = {.lex_state = 128, .external_lex_state = 5}, - [3015] = {.lex_state = 128, .external_lex_state = 5}, - [3016] = {.lex_state = 128, .external_lex_state = 5}, - [3017] = {.lex_state = 128, .external_lex_state = 5}, - [3018] = {.lex_state = 128, .external_lex_state = 2}, - [3019] = {.lex_state = 128, .external_lex_state = 2}, - [3020] = {.lex_state = 128, .external_lex_state = 5}, - [3021] = {.lex_state = 128, .external_lex_state = 5}, - [3022] = {.lex_state = 128, .external_lex_state = 5}, - [3023] = {.lex_state = 128, .external_lex_state = 5}, - [3024] = {.lex_state = 128, .external_lex_state = 5}, - [3025] = {.lex_state = 20, .external_lex_state = 2}, - [3026] = {.lex_state = 128, .external_lex_state = 5}, - [3027] = {.lex_state = 128, .external_lex_state = 5}, - [3028] = {.lex_state = 128, .external_lex_state = 5}, - [3029] = {.lex_state = 128, .external_lex_state = 5}, - [3030] = {.lex_state = 128, .external_lex_state = 2}, - [3031] = {.lex_state = 128, .external_lex_state = 5}, - [3032] = {.lex_state = 128, .external_lex_state = 5}, - [3033] = {.lex_state = 128, .external_lex_state = 5}, - [3034] = {.lex_state = 128, .external_lex_state = 5}, - [3035] = {.lex_state = 128, .external_lex_state = 2}, - [3036] = {.lex_state = 128, .external_lex_state = 2}, - [3037] = {.lex_state = 128, .external_lex_state = 2}, - [3038] = {.lex_state = 128, .external_lex_state = 2}, - [3039] = {.lex_state = 128, .external_lex_state = 5}, - [3040] = {.lex_state = 128, .external_lex_state = 5}, - [3041] = {.lex_state = 128, .external_lex_state = 2}, - [3042] = {.lex_state = 7, .external_lex_state = 6}, - [3043] = {.lex_state = 7, .external_lex_state = 5}, - [3044] = {.lex_state = 128, .external_lex_state = 5}, - [3045] = {.lex_state = 7, .external_lex_state = 6}, - [3046] = {.lex_state = 7, .external_lex_state = 5}, - [3047] = {.lex_state = 7, .external_lex_state = 5}, - [3048] = {.lex_state = 128, .external_lex_state = 5}, + [2969] = {.lex_state = 127, .external_lex_state = 2}, + [2970] = {.lex_state = 127, .external_lex_state = 2}, + [2971] = {.lex_state = 127, .external_lex_state = 2}, + [2972] = {.lex_state = 127, .external_lex_state = 2}, + [2973] = {.lex_state = 2, .external_lex_state = 2}, + [2974] = {.lex_state = 127, .external_lex_state = 2}, + [2975] = {.lex_state = 127, .external_lex_state = 2}, + [2976] = {.lex_state = 127, .external_lex_state = 2}, + [2977] = {.lex_state = 2, .external_lex_state = 2}, + [2978] = {.lex_state = 127, .external_lex_state = 2}, + [2979] = {.lex_state = 127, .external_lex_state = 2}, + [2980] = {.lex_state = 127, .external_lex_state = 2}, + [2981] = {.lex_state = 127, .external_lex_state = 2}, + [2982] = {.lex_state = 2, .external_lex_state = 2}, + [2983] = {.lex_state = 127, .external_lex_state = 5}, + [2984] = {.lex_state = 2, .external_lex_state = 2}, + [2985] = {.lex_state = 127, .external_lex_state = 2}, + [2986] = {.lex_state = 2, .external_lex_state = 2}, + [2987] = {.lex_state = 127, .external_lex_state = 2}, + [2988] = {.lex_state = 127, .external_lex_state = 2}, + [2989] = {.lex_state = 127, .external_lex_state = 2}, + [2990] = {.lex_state = 127, .external_lex_state = 2}, + [2991] = {.lex_state = 2, .external_lex_state = 2}, + [2992] = {.lex_state = 127, .external_lex_state = 2}, + [2993] = {.lex_state = 127, .external_lex_state = 2}, + [2994] = {.lex_state = 127, .external_lex_state = 2}, + [2995] = {.lex_state = 127, .external_lex_state = 2}, + [2996] = {.lex_state = 127, .external_lex_state = 2}, + [2997] = {.lex_state = 127, .external_lex_state = 2}, + [2998] = {.lex_state = 127, .external_lex_state = 2}, + [2999] = {.lex_state = 7, .external_lex_state = 5}, + [3000] = {.lex_state = 127, .external_lex_state = 2}, + [3001] = {.lex_state = 127, .external_lex_state = 2}, + [3002] = {.lex_state = 127, .external_lex_state = 2}, + [3003] = {.lex_state = 127, .external_lex_state = 2}, + [3004] = {.lex_state = 127, .external_lex_state = 5}, + [3005] = {.lex_state = 127, .external_lex_state = 5}, + [3006] = {.lex_state = 127, .external_lex_state = 5}, + [3007] = {.lex_state = 127, .external_lex_state = 5}, + [3008] = {.lex_state = 127, .external_lex_state = 2}, + [3009] = {.lex_state = 127, .external_lex_state = 5}, + [3010] = {.lex_state = 127, .external_lex_state = 2}, + [3011] = {.lex_state = 127, .external_lex_state = 5}, + [3012] = {.lex_state = 127, .external_lex_state = 5}, + [3013] = {.lex_state = 127, .external_lex_state = 5}, + [3014] = {.lex_state = 127, .external_lex_state = 5}, + [3015] = {.lex_state = 127, .external_lex_state = 5}, + [3016] = {.lex_state = 127, .external_lex_state = 2}, + [3017] = {.lex_state = 127, .external_lex_state = 5}, + [3018] = {.lex_state = 127, .external_lex_state = 5}, + [3019] = {.lex_state = 127, .external_lex_state = 5}, + [3020] = {.lex_state = 127, .external_lex_state = 5}, + [3021] = {.lex_state = 127, .external_lex_state = 5}, + [3022] = {.lex_state = 127, .external_lex_state = 5}, + [3023] = {.lex_state = 127, .external_lex_state = 5}, + [3024] = {.lex_state = 127, .external_lex_state = 5}, + [3025] = {.lex_state = 127, .external_lex_state = 5}, + [3026] = {.lex_state = 127, .external_lex_state = 5}, + [3027] = {.lex_state = 127, .external_lex_state = 2}, + [3028] = {.lex_state = 127, .external_lex_state = 5}, + [3029] = {.lex_state = 127, .external_lex_state = 2}, + [3030] = {.lex_state = 19, .external_lex_state = 2}, + [3031] = {.lex_state = 127, .external_lex_state = 5}, + [3032] = {.lex_state = 127, .external_lex_state = 2}, + [3033] = {.lex_state = 127, .external_lex_state = 5}, + [3034] = {.lex_state = 127, .external_lex_state = 2}, + [3035] = {.lex_state = 127, .external_lex_state = 5}, + [3036] = {.lex_state = 127, .external_lex_state = 5}, + [3037] = {.lex_state = 127, .external_lex_state = 5}, + [3038] = {.lex_state = 127, .external_lex_state = 5}, + [3039] = {.lex_state = 127, .external_lex_state = 5}, + [3040] = {.lex_state = 127, .external_lex_state = 5}, + [3041] = {.lex_state = 127, .external_lex_state = 5}, + [3042] = {.lex_state = 127, .external_lex_state = 5}, + [3043] = {.lex_state = 127, .external_lex_state = 5}, + [3044] = {.lex_state = 127, .external_lex_state = 5}, + [3045] = {.lex_state = 19, .external_lex_state = 2}, + [3046] = {.lex_state = 127, .external_lex_state = 5}, + [3047] = {.lex_state = 127, .external_lex_state = 5}, + [3048] = {.lex_state = 7, .external_lex_state = 6}, [3049] = {.lex_state = 7, .external_lex_state = 6}, [3050] = {.lex_state = 7, .external_lex_state = 6}, [3051] = {.lex_state = 7, .external_lex_state = 6}, - [3052] = {.lex_state = 20, .external_lex_state = 2}, - [3053] = {.lex_state = 128, .external_lex_state = 5}, - [3054] = {.lex_state = 128, .external_lex_state = 5}, - [3055] = {.lex_state = 128, .external_lex_state = 5}, + [3052] = {.lex_state = 7, .external_lex_state = 6}, + [3053] = {.lex_state = 127, .external_lex_state = 2}, + [3054] = {.lex_state = 127, .external_lex_state = 2}, + [3055] = {.lex_state = 127, .external_lex_state = 5}, [3056] = {.lex_state = 7, .external_lex_state = 6}, - [3057] = {.lex_state = 7, .external_lex_state = 6}, - [3058] = {.lex_state = 128, .external_lex_state = 2}, - [3059] = {.lex_state = 7, .external_lex_state = 6}, - [3060] = {.lex_state = 128, .external_lex_state = 5}, - [3061] = {.lex_state = 128, .external_lex_state = 2}, - [3062] = {.lex_state = 128, .external_lex_state = 5}, - [3063] = {.lex_state = 128, .external_lex_state = 2}, - [3064] = {.lex_state = 128, .external_lex_state = 2}, - [3065] = {.lex_state = 128, .external_lex_state = 5}, - [3066] = {.lex_state = 128, .external_lex_state = 2}, - [3067] = {.lex_state = 128, .external_lex_state = 2}, - [3068] = {.lex_state = 128, .external_lex_state = 2}, - [3069] = {.lex_state = 128, .external_lex_state = 5}, - [3070] = {.lex_state = 128, .external_lex_state = 5}, - [3071] = {.lex_state = 7, .external_lex_state = 5}, + [3057] = {.lex_state = 17, .external_lex_state = 7}, + [3058] = {.lex_state = 7, .external_lex_state = 6}, + [3059] = {.lex_state = 127, .external_lex_state = 5}, + [3060] = {.lex_state = 127, .external_lex_state = 2}, + [3061] = {.lex_state = 127, .external_lex_state = 2}, + [3062] = {.lex_state = 17, .external_lex_state = 7}, + [3063] = {.lex_state = 19, .external_lex_state = 2}, + [3064] = {.lex_state = 7, .external_lex_state = 6}, + [3065] = {.lex_state = 17, .external_lex_state = 7}, + [3066] = {.lex_state = 7, .external_lex_state = 6}, + [3067] = {.lex_state = 7, .external_lex_state = 6}, + [3068] = {.lex_state = 7, .external_lex_state = 6}, + [3069] = {.lex_state = 7, .external_lex_state = 6}, + [3070] = {.lex_state = 7, .external_lex_state = 6}, + [3071] = {.lex_state = 127, .external_lex_state = 5}, [3072] = {.lex_state = 7, .external_lex_state = 6}, - [3073] = {.lex_state = 128, .external_lex_state = 5}, - [3074] = {.lex_state = 20, .external_lex_state = 2}, - [3075] = {.lex_state = 128, .external_lex_state = 5}, + [3073] = {.lex_state = 7, .external_lex_state = 6}, + [3074] = {.lex_state = 127, .external_lex_state = 6}, + [3075] = {.lex_state = 17, .external_lex_state = 7}, [3076] = {.lex_state = 7, .external_lex_state = 6}, [3077] = {.lex_state = 7, .external_lex_state = 6}, - [3078] = {.lex_state = 7, .external_lex_state = 5}, + [3078] = {.lex_state = 17, .external_lex_state = 7}, [3079] = {.lex_state = 7, .external_lex_state = 5}, - [3080] = {.lex_state = 128, .external_lex_state = 5}, - [3081] = {.lex_state = 128, .external_lex_state = 5}, - [3082] = {.lex_state = 128, .external_lex_state = 2}, - [3083] = {.lex_state = 128, .external_lex_state = 5}, - [3084] = {.lex_state = 128, .external_lex_state = 6}, - [3085] = {.lex_state = 7, .external_lex_state = 6}, + [3080] = {.lex_state = 127, .external_lex_state = 5}, + [3081] = {.lex_state = 7, .external_lex_state = 6}, + [3082] = {.lex_state = 7, .external_lex_state = 5}, + [3083] = {.lex_state = 7, .external_lex_state = 6}, + [3084] = {.lex_state = 17, .external_lex_state = 7}, + [3085] = {.lex_state = 17, .external_lex_state = 7}, [3086] = {.lex_state = 7, .external_lex_state = 6}, [3087] = {.lex_state = 7, .external_lex_state = 6}, [3088] = {.lex_state = 7, .external_lex_state = 6}, - [3089] = {.lex_state = 7, .external_lex_state = 6}, + [3089] = {.lex_state = 127, .external_lex_state = 5}, [3090] = {.lex_state = 7, .external_lex_state = 6}, - [3091] = {.lex_state = 7, .external_lex_state = 6}, - [3092] = {.lex_state = 7, .external_lex_state = 6}, + [3091] = {.lex_state = 17, .external_lex_state = 7}, + [3092] = {.lex_state = 7, .external_lex_state = 5}, [3093] = {.lex_state = 7, .external_lex_state = 6}, - [3094] = {.lex_state = 7, .external_lex_state = 6}, + [3094] = {.lex_state = 127, .external_lex_state = 5}, [3095] = {.lex_state = 7, .external_lex_state = 6}, [3096] = {.lex_state = 7, .external_lex_state = 6}, [3097] = {.lex_state = 7, .external_lex_state = 6}, [3098] = {.lex_state = 7, .external_lex_state = 6}, - [3099] = {.lex_state = 7, .external_lex_state = 5}, - [3100] = {.lex_state = 128, .external_lex_state = 5}, - [3101] = {.lex_state = 7, .external_lex_state = 6}, - [3102] = {.lex_state = 128, .external_lex_state = 5}, - [3103] = {.lex_state = 7, .external_lex_state = 6}, - [3104] = {.lex_state = 7, .external_lex_state = 6}, + [3099] = {.lex_state = 127, .external_lex_state = 5}, + [3100] = {.lex_state = 7, .external_lex_state = 5}, + [3101] = {.lex_state = 7, .external_lex_state = 5}, + [3102] = {.lex_state = 7, .external_lex_state = 6}, + [3103] = {.lex_state = 127, .external_lex_state = 2}, + [3104] = {.lex_state = 7, .external_lex_state = 5}, [3105] = {.lex_state = 7, .external_lex_state = 6}, - [3106] = {.lex_state = 7, .external_lex_state = 6}, - [3107] = {.lex_state = 7, .external_lex_state = 6}, - [3108] = {.lex_state = 7, .external_lex_state = 6}, - [3109] = {.lex_state = 7, .external_lex_state = 6}, - [3110] = {.lex_state = 128, .external_lex_state = 5}, - [3111] = {.lex_state = 128, .external_lex_state = 5}, - [3112] = {.lex_state = 128, .external_lex_state = 2}, - [3113] = {.lex_state = 7, .external_lex_state = 6}, - [3114] = {.lex_state = 7, .external_lex_state = 5}, - [3115] = {.lex_state = 128, .external_lex_state = 2}, - [3116] = {.lex_state = 128, .external_lex_state = 5}, - [3117] = {.lex_state = 20, .external_lex_state = 2}, - [3118] = {.lex_state = 128, .external_lex_state = 5}, - [3119] = {.lex_state = 128, .external_lex_state = 5}, - [3120] = {.lex_state = 128, .external_lex_state = 5}, - [3121] = {.lex_state = 128, .external_lex_state = 5}, - [3122] = {.lex_state = 128, .external_lex_state = 5}, - [3123] = {.lex_state = 128, .external_lex_state = 5}, - [3124] = {.lex_state = 128, .external_lex_state = 5}, - [3125] = {.lex_state = 20, .external_lex_state = 2}, - [3126] = {.lex_state = 128, .external_lex_state = 5}, - [3127] = {.lex_state = 128, .external_lex_state = 6}, - [3128] = {.lex_state = 128, .external_lex_state = 6}, - [3129] = {.lex_state = 128, .external_lex_state = 5}, - [3130] = {.lex_state = 128, .external_lex_state = 5}, - [3131] = {.lex_state = 128, .external_lex_state = 5}, - [3132] = {.lex_state = 128, .external_lex_state = 5}, - [3133] = {.lex_state = 128, .external_lex_state = 5}, - [3134] = {.lex_state = 128, .external_lex_state = 5}, - [3135] = {.lex_state = 128, .external_lex_state = 5}, - [3136] = {.lex_state = 128, .external_lex_state = 5}, - [3137] = {.lex_state = 128, .external_lex_state = 5}, - [3138] = {.lex_state = 128, .external_lex_state = 5}, - [3139] = {.lex_state = 20, .external_lex_state = 2}, - [3140] = {.lex_state = 128, .external_lex_state = 5}, - [3141] = {.lex_state = 128, .external_lex_state = 5}, - [3142] = {.lex_state = 128, .external_lex_state = 5}, - [3143] = {.lex_state = 128, .external_lex_state = 5}, - [3144] = {.lex_state = 128, .external_lex_state = 5}, - [3145] = {.lex_state = 128, .external_lex_state = 5}, - [3146] = {.lex_state = 128, .external_lex_state = 5}, - [3147] = {.lex_state = 128, .external_lex_state = 5}, - [3148] = {.lex_state = 128, .external_lex_state = 5}, - [3149] = {.lex_state = 128, .external_lex_state = 5}, - [3150] = {.lex_state = 128, .external_lex_state = 5}, - [3151] = {.lex_state = 128, .external_lex_state = 5}, - [3152] = {.lex_state = 128, .external_lex_state = 5}, - [3153] = {.lex_state = 128, .external_lex_state = 2}, - [3154] = {.lex_state = 128, .external_lex_state = 5}, - [3155] = {.lex_state = 128, .external_lex_state = 2}, - [3156] = {.lex_state = 128, .external_lex_state = 5}, - [3157] = {.lex_state = 128, .external_lex_state = 2}, - [3158] = {.lex_state = 128, .external_lex_state = 5}, - [3159] = {.lex_state = 128, .external_lex_state = 5}, - [3160] = {.lex_state = 128, .external_lex_state = 5}, - [3161] = {.lex_state = 128, .external_lex_state = 5}, - [3162] = {.lex_state = 128, .external_lex_state = 5}, - [3163] = {.lex_state = 128, .external_lex_state = 5}, - [3164] = {.lex_state = 7, .external_lex_state = 2}, - [3165] = {.lex_state = 7, .external_lex_state = 2}, - [3166] = {.lex_state = 7, .external_lex_state = 2}, - [3167] = {.lex_state = 128, .external_lex_state = 5}, - [3168] = {.lex_state = 128, .external_lex_state = 5}, - [3169] = {.lex_state = 128, .external_lex_state = 5}, - [3170] = {.lex_state = 20, .external_lex_state = 2}, - [3171] = {.lex_state = 128, .external_lex_state = 5}, - [3172] = {.lex_state = 128, .external_lex_state = 5}, - [3173] = {.lex_state = 128, .external_lex_state = 5}, - [3174] = {.lex_state = 128, .external_lex_state = 5}, - [3175] = {.lex_state = 128, .external_lex_state = 5}, - [3176] = {.lex_state = 128, .external_lex_state = 5}, - [3177] = {.lex_state = 128, .external_lex_state = 5}, - [3178] = {.lex_state = 128, .external_lex_state = 5}, - [3179] = {.lex_state = 128, .external_lex_state = 5}, - [3180] = {.lex_state = 128, .external_lex_state = 5}, - [3181] = {.lex_state = 128, .external_lex_state = 6}, - [3182] = {.lex_state = 18, .external_lex_state = 7}, - [3183] = {.lex_state = 128, .external_lex_state = 6}, - [3184] = {.lex_state = 128, .external_lex_state = 5}, - [3185] = {.lex_state = 18, .external_lex_state = 7}, - [3186] = {.lex_state = 7, .external_lex_state = 6}, - [3187] = {.lex_state = 7, .external_lex_state = 6}, - [3188] = {.lex_state = 128, .external_lex_state = 5}, - [3189] = {.lex_state = 128, .external_lex_state = 5}, - [3190] = {.lex_state = 7, .external_lex_state = 6}, - [3191] = {.lex_state = 128, .external_lex_state = 6}, - [3192] = {.lex_state = 128, .external_lex_state = 5}, - [3193] = {.lex_state = 128, .external_lex_state = 5}, - [3194] = {.lex_state = 128, .external_lex_state = 5}, - [3195] = {.lex_state = 128, .external_lex_state = 5}, - [3196] = {.lex_state = 128, .external_lex_state = 2}, - [3197] = {.lex_state = 128, .external_lex_state = 5}, - [3198] = {.lex_state = 128, .external_lex_state = 5}, - [3199] = {.lex_state = 18, .external_lex_state = 7}, - [3200] = {.lex_state = 128, .external_lex_state = 5}, - [3201] = {.lex_state = 128, .external_lex_state = 5}, - [3202] = {.lex_state = 128, .external_lex_state = 5}, - [3203] = {.lex_state = 128, .external_lex_state = 5}, - [3204] = {.lex_state = 128, .external_lex_state = 5}, - [3205] = {.lex_state = 7, .external_lex_state = 6}, - [3206] = {.lex_state = 128, .external_lex_state = 5}, - [3207] = {.lex_state = 128, .external_lex_state = 5}, - [3208] = {.lex_state = 7, .external_lex_state = 6}, - [3209] = {.lex_state = 128, .external_lex_state = 5}, - [3210] = {.lex_state = 128, .external_lex_state = 5}, - [3211] = {.lex_state = 128, .external_lex_state = 5}, - [3212] = {.lex_state = 7, .external_lex_state = 6}, - [3213] = {.lex_state = 128, .external_lex_state = 5}, - [3214] = {.lex_state = 128, .external_lex_state = 5}, - [3215] = {.lex_state = 128, .external_lex_state = 5}, - [3216] = {.lex_state = 18, .external_lex_state = 7}, - [3217] = {.lex_state = 128, .external_lex_state = 5}, - [3218] = {.lex_state = 128, .external_lex_state = 5}, - [3219] = {.lex_state = 128, .external_lex_state = 5}, - [3220] = {.lex_state = 128, .external_lex_state = 6}, - [3221] = {.lex_state = 128, .external_lex_state = 5}, - [3222] = {.lex_state = 128, .external_lex_state = 6}, - [3223] = {.lex_state = 128, .external_lex_state = 5}, - [3224] = {.lex_state = 128, .external_lex_state = 6}, - [3225] = {.lex_state = 128, .external_lex_state = 6}, - [3226] = {.lex_state = 128, .external_lex_state = 5}, - [3227] = {.lex_state = 128, .external_lex_state = 5}, - [3228] = {.lex_state = 128, .external_lex_state = 5}, - [3229] = {.lex_state = 128, .external_lex_state = 6}, - [3230] = {.lex_state = 128, .external_lex_state = 6}, - [3231] = {.lex_state = 128, .external_lex_state = 5}, - [3232] = {.lex_state = 128, .external_lex_state = 5}, - [3233] = {.lex_state = 128, .external_lex_state = 5}, - [3234] = {.lex_state = 7, .external_lex_state = 6}, - [3235] = {.lex_state = 128, .external_lex_state = 5}, - [3236] = {.lex_state = 128, .external_lex_state = 5}, - [3237] = {.lex_state = 7, .external_lex_state = 6}, - [3238] = {.lex_state = 18, .external_lex_state = 7}, - [3239] = {.lex_state = 128, .external_lex_state = 5}, - [3240] = {.lex_state = 128, .external_lex_state = 5}, - [3241] = {.lex_state = 128, .external_lex_state = 5}, - [3242] = {.lex_state = 128, .external_lex_state = 5}, - [3243] = {.lex_state = 128, .external_lex_state = 5}, - [3244] = {.lex_state = 128, .external_lex_state = 5}, - [3245] = {.lex_state = 128, .external_lex_state = 5}, - [3246] = {.lex_state = 128, .external_lex_state = 5}, - [3247] = {.lex_state = 18, .external_lex_state = 7}, - [3248] = {.lex_state = 128, .external_lex_state = 5}, - [3249] = {.lex_state = 128, .external_lex_state = 5}, - [3250] = {.lex_state = 128, .external_lex_state = 5}, - [3251] = {.lex_state = 18, .external_lex_state = 7}, - [3252] = {.lex_state = 18, .external_lex_state = 7}, - [3253] = {.lex_state = 128, .external_lex_state = 5}, - [3254] = {.lex_state = 128, .external_lex_state = 2}, - [3255] = {.lex_state = 128, .external_lex_state = 5}, - [3256] = {.lex_state = 128, .external_lex_state = 5}, - [3257] = {.lex_state = 128, .external_lex_state = 5}, - [3258] = {.lex_state = 128, .external_lex_state = 2}, - [3259] = {.lex_state = 128, .external_lex_state = 2}, - [3260] = {.lex_state = 128, .external_lex_state = 2}, - [3261] = {.lex_state = 128, .external_lex_state = 6}, - [3262] = {.lex_state = 128, .external_lex_state = 2}, - [3263] = {.lex_state = 128, .external_lex_state = 2}, - [3264] = {.lex_state = 20, .external_lex_state = 2}, - [3265] = {.lex_state = 20, .external_lex_state = 2}, - [3266] = {.lex_state = 128, .external_lex_state = 5}, - [3267] = {.lex_state = 128, .external_lex_state = 5}, - [3268] = {.lex_state = 128, .external_lex_state = 5}, - [3269] = {.lex_state = 128, .external_lex_state = 2}, - [3270] = {.lex_state = 128, .external_lex_state = 2}, - [3271] = {.lex_state = 128, .external_lex_state = 5}, - [3272] = {.lex_state = 20, .external_lex_state = 2}, - [3273] = {.lex_state = 18, .external_lex_state = 7}, - [3274] = {.lex_state = 128, .external_lex_state = 2}, - [3275] = {.lex_state = 128, .external_lex_state = 6}, - [3276] = {.lex_state = 128, .external_lex_state = 2}, - [3277] = {.lex_state = 128, .external_lex_state = 2}, - [3278] = {.lex_state = 128, .external_lex_state = 2}, - [3279] = {.lex_state = 128, .external_lex_state = 5}, - [3280] = {.lex_state = 128, .external_lex_state = 6}, - [3281] = {.lex_state = 128, .external_lex_state = 2}, - [3282] = {.lex_state = 128, .external_lex_state = 2}, - [3283] = {.lex_state = 128, .external_lex_state = 2}, - [3284] = {.lex_state = 128, .external_lex_state = 6}, - [3285] = {.lex_state = 128, .external_lex_state = 6}, - [3286] = {.lex_state = 128, .external_lex_state = 6}, - [3287] = {.lex_state = 128, .external_lex_state = 6}, - [3288] = {.lex_state = 128, .external_lex_state = 2}, - [3289] = {.lex_state = 128, .external_lex_state = 2}, - [3290] = {.lex_state = 128, .external_lex_state = 5}, - [3291] = {.lex_state = 128, .external_lex_state = 2}, - [3292] = {.lex_state = 128, .external_lex_state = 6}, - [3293] = {.lex_state = 20, .external_lex_state = 2}, - [3294] = {.lex_state = 128, .external_lex_state = 2}, - [3295] = {.lex_state = 128, .external_lex_state = 5}, - [3296] = {.lex_state = 128, .external_lex_state = 6}, - [3297] = {.lex_state = 128, .external_lex_state = 5}, - [3298] = {.lex_state = 128, .external_lex_state = 5}, - [3299] = {.lex_state = 20, .external_lex_state = 2}, - [3300] = {.lex_state = 128, .external_lex_state = 2}, - [3301] = {.lex_state = 128, .external_lex_state = 5}, - [3302] = {.lex_state = 128, .external_lex_state = 5}, - [3303] = {.lex_state = 128, .external_lex_state = 5}, - [3304] = {.lex_state = 20, .external_lex_state = 2}, - [3305] = {.lex_state = 128, .external_lex_state = 5}, - [3306] = {.lex_state = 128, .external_lex_state = 6}, - [3307] = {.lex_state = 20, .external_lex_state = 2}, - [3308] = {.lex_state = 20, .external_lex_state = 2}, - [3309] = {.lex_state = 20, .external_lex_state = 2}, - [3310] = {.lex_state = 20, .external_lex_state = 2}, - [3311] = {.lex_state = 20, .external_lex_state = 2}, - [3312] = {.lex_state = 128, .external_lex_state = 5}, - [3313] = {.lex_state = 20, .external_lex_state = 2}, - [3314] = {.lex_state = 20, .external_lex_state = 2}, - [3315] = {.lex_state = 128, .external_lex_state = 5}, - [3316] = {.lex_state = 20, .external_lex_state = 2}, - [3317] = {.lex_state = 128, .external_lex_state = 2}, - [3318] = {.lex_state = 20, .external_lex_state = 2}, - [3319] = {.lex_state = 128, .external_lex_state = 5}, - [3320] = {.lex_state = 128, .external_lex_state = 5}, - [3321] = {.lex_state = 128, .external_lex_state = 6}, - [3322] = {.lex_state = 128, .external_lex_state = 2}, - [3323] = {.lex_state = 128, .external_lex_state = 6}, - [3324] = {.lex_state = 128, .external_lex_state = 2}, - [3325] = {.lex_state = 128, .external_lex_state = 6}, - [3326] = {.lex_state = 128, .external_lex_state = 6}, - [3327] = {.lex_state = 20, .external_lex_state = 2}, - [3328] = {.lex_state = 128, .external_lex_state = 2}, - [3329] = {.lex_state = 128, .external_lex_state = 6}, - [3330] = {.lex_state = 128, .external_lex_state = 6}, - [3331] = {.lex_state = 20, .external_lex_state = 2}, - [3332] = {.lex_state = 128, .external_lex_state = 2}, - [3333] = {.lex_state = 128, .external_lex_state = 5}, - [3334] = {.lex_state = 128, .external_lex_state = 6}, - [3335] = {.lex_state = 128, .external_lex_state = 2}, - [3336] = {.lex_state = 128, .external_lex_state = 5}, - [3337] = {.lex_state = 20, .external_lex_state = 2}, - [3338] = {.lex_state = 128, .external_lex_state = 6}, - [3339] = {.lex_state = 20, .external_lex_state = 2}, - [3340] = {.lex_state = 20, .external_lex_state = 2}, - [3341] = {.lex_state = 20, .external_lex_state = 2}, - [3342] = {.lex_state = 128, .external_lex_state = 5}, - [3343] = {.lex_state = 128, .external_lex_state = 6}, - [3344] = {.lex_state = 128, .external_lex_state = 2}, - [3345] = {.lex_state = 20, .external_lex_state = 2}, - [3346] = {.lex_state = 128, .external_lex_state = 6}, - [3347] = {.lex_state = 128, .external_lex_state = 2}, - [3348] = {.lex_state = 20, .external_lex_state = 2}, - [3349] = {.lex_state = 20, .external_lex_state = 2}, - [3350] = {.lex_state = 20, .external_lex_state = 2}, - [3351] = {.lex_state = 128, .external_lex_state = 6}, - [3352] = {.lex_state = 128, .external_lex_state = 6}, - [3353] = {.lex_state = 128, .external_lex_state = 6}, - [3354] = {.lex_state = 128, .external_lex_state = 6}, - [3355] = {.lex_state = 128, .external_lex_state = 6}, - [3356] = {.lex_state = 128, .external_lex_state = 6}, - [3357] = {.lex_state = 128, .external_lex_state = 6}, - [3358] = {.lex_state = 128, .external_lex_state = 6}, - [3359] = {.lex_state = 128, .external_lex_state = 6}, - [3360] = {.lex_state = 128, .external_lex_state = 6}, - [3361] = {.lex_state = 128, .external_lex_state = 2}, - [3362] = {.lex_state = 128, .external_lex_state = 6}, - [3363] = {.lex_state = 20, .external_lex_state = 2}, - [3364] = {.lex_state = 20, .external_lex_state = 2}, - [3365] = {.lex_state = 20, .external_lex_state = 2}, - [3366] = {.lex_state = 128, .external_lex_state = 5}, - [3367] = {.lex_state = 128, .external_lex_state = 5}, - [3368] = {.lex_state = 128, .external_lex_state = 2}, - [3369] = {.lex_state = 20, .external_lex_state = 2}, - [3370] = {.lex_state = 20, .external_lex_state = 2}, - [3371] = {.lex_state = 128, .external_lex_state = 6}, - [3372] = {.lex_state = 128, .external_lex_state = 5}, - [3373] = {.lex_state = 20, .external_lex_state = 2}, - [3374] = {.lex_state = 128, .external_lex_state = 2}, - [3375] = {.lex_state = 128, .external_lex_state = 5}, - [3376] = {.lex_state = 128, .external_lex_state = 2}, - [3377] = {.lex_state = 128, .external_lex_state = 2}, - [3378] = {.lex_state = 128, .external_lex_state = 5}, - [3379] = {.lex_state = 128, .external_lex_state = 5}, - [3380] = {.lex_state = 128, .external_lex_state = 5}, - [3381] = {.lex_state = 128, .external_lex_state = 6}, - [3382] = {.lex_state = 128, .external_lex_state = 6}, - [3383] = {.lex_state = 128, .external_lex_state = 5}, - [3384] = {.lex_state = 20, .external_lex_state = 2}, - [3385] = {.lex_state = 128, .external_lex_state = 2}, - [3386] = {.lex_state = 128, .external_lex_state = 5}, - [3387] = {.lex_state = 128, .external_lex_state = 2}, - [3388] = {.lex_state = 128, .external_lex_state = 2}, - [3389] = {.lex_state = 128, .external_lex_state = 6}, - [3390] = {.lex_state = 128, .external_lex_state = 2}, - [3391] = {.lex_state = 128, .external_lex_state = 2}, - [3392] = {.lex_state = 128, .external_lex_state = 6}, - [3393] = {.lex_state = 128, .external_lex_state = 2}, - [3394] = {.lex_state = 128, .external_lex_state = 5}, - [3395] = {.lex_state = 20, .external_lex_state = 2}, - [3396] = {.lex_state = 128, .external_lex_state = 6}, - [3397] = {.lex_state = 20, .external_lex_state = 2}, - [3398] = {.lex_state = 128, .external_lex_state = 6}, - [3399] = {.lex_state = 128, .external_lex_state = 5}, - [3400] = {.lex_state = 128, .external_lex_state = 2}, - [3401] = {.lex_state = 128, .external_lex_state = 5}, - [3402] = {.lex_state = 128, .external_lex_state = 5}, - [3403] = {.lex_state = 128, .external_lex_state = 6}, - [3404] = {.lex_state = 128, .external_lex_state = 6}, - [3405] = {.lex_state = 128, .external_lex_state = 6}, - [3406] = {.lex_state = 128, .external_lex_state = 5}, - [3407] = {.lex_state = 128, .external_lex_state = 6}, - [3408] = {.lex_state = 128, .external_lex_state = 5}, - [3409] = {.lex_state = 128, .external_lex_state = 2}, - [3410] = {.lex_state = 20, .external_lex_state = 2}, - [3411] = {.lex_state = 128, .external_lex_state = 6}, - [3412] = {.lex_state = 20, .external_lex_state = 2}, - [3413] = {.lex_state = 128, .external_lex_state = 2}, - [3414] = {.lex_state = 128, .external_lex_state = 6}, - [3415] = {.lex_state = 128, .external_lex_state = 6}, - [3416] = {.lex_state = 128, .external_lex_state = 6}, - [3417] = {.lex_state = 128, .external_lex_state = 5}, - [3418] = {.lex_state = 128, .external_lex_state = 6}, - [3419] = {.lex_state = 128, .external_lex_state = 5}, - [3420] = {.lex_state = 128, .external_lex_state = 6}, - [3421] = {.lex_state = 128, .external_lex_state = 5}, - [3422] = {.lex_state = 128, .external_lex_state = 2}, - [3423] = {.lex_state = 128, .external_lex_state = 5}, - [3424] = {.lex_state = 128, .external_lex_state = 6}, - [3425] = {.lex_state = 128, .external_lex_state = 6}, - [3426] = {.lex_state = 128, .external_lex_state = 6}, - [3427] = {.lex_state = 128, .external_lex_state = 6}, - [3428] = {.lex_state = 20, .external_lex_state = 2}, - [3429] = {.lex_state = 128, .external_lex_state = 2}, - [3430] = {.lex_state = 128, .external_lex_state = 5}, - [3431] = {.lex_state = 128, .external_lex_state = 5}, - [3432] = {.lex_state = 128, .external_lex_state = 5}, - [3433] = {.lex_state = 128, .external_lex_state = 5}, - [3434] = {.lex_state = 20, .external_lex_state = 2}, - [3435] = {.lex_state = 128, .external_lex_state = 5}, - [3436] = {.lex_state = 128, .external_lex_state = 5}, - [3437] = {.lex_state = 128, .external_lex_state = 5}, - [3438] = {.lex_state = 20, .external_lex_state = 2}, - [3439] = {.lex_state = 128, .external_lex_state = 5}, - [3440] = {.lex_state = 128, .external_lex_state = 6}, - [3441] = {.lex_state = 128, .external_lex_state = 6}, - [3442] = {.lex_state = 128, .external_lex_state = 6}, - [3443] = {.lex_state = 128, .external_lex_state = 6}, - [3444] = {.lex_state = 128, .external_lex_state = 5}, - [3445] = {.lex_state = 128, .external_lex_state = 5}, - [3446] = {.lex_state = 128, .external_lex_state = 6}, - [3447] = {.lex_state = 128, .external_lex_state = 2}, - [3448] = {.lex_state = 128, .external_lex_state = 6}, - [3449] = {.lex_state = 128, .external_lex_state = 6}, - [3450] = {.lex_state = 128, .external_lex_state = 6}, - [3451] = {.lex_state = 128, .external_lex_state = 5}, - [3452] = {.lex_state = 128, .external_lex_state = 5}, - [3453] = {.lex_state = 128, .external_lex_state = 2}, - [3454] = {.lex_state = 128, .external_lex_state = 5}, - [3455] = {.lex_state = 128, .external_lex_state = 5}, - [3456] = {.lex_state = 128, .external_lex_state = 6}, - [3457] = {.lex_state = 128, .external_lex_state = 2}, - [3458] = {.lex_state = 20, .external_lex_state = 2}, - [3459] = {.lex_state = 128, .external_lex_state = 2}, - [3460] = {.lex_state = 128, .external_lex_state = 2}, - [3461] = {.lex_state = 128, .external_lex_state = 2}, - [3462] = {.lex_state = 128, .external_lex_state = 2}, - [3463] = {.lex_state = 128, .external_lex_state = 6}, - [3464] = {.lex_state = 128, .external_lex_state = 2}, - [3465] = {.lex_state = 128, .external_lex_state = 2}, - [3466] = {.lex_state = 128, .external_lex_state = 5}, - [3467] = {.lex_state = 128, .external_lex_state = 5}, - [3468] = {.lex_state = 20, .external_lex_state = 2}, - [3469] = {.lex_state = 128, .external_lex_state = 5}, - [3470] = {.lex_state = 128, .external_lex_state = 6}, - [3471] = {.lex_state = 128, .external_lex_state = 2}, - [3472] = {.lex_state = 128, .external_lex_state = 6}, - [3473] = {.lex_state = 128, .external_lex_state = 5}, - [3474] = {.lex_state = 128, .external_lex_state = 2}, - [3475] = {.lex_state = 20, .external_lex_state = 2}, - [3476] = {.lex_state = 128, .external_lex_state = 2}, - [3477] = {.lex_state = 11, .external_lex_state = 2}, - [3478] = {.lex_state = 128, .external_lex_state = 2}, - [3479] = {.lex_state = 128, .external_lex_state = 2}, - [3480] = {.lex_state = 128, .external_lex_state = 5}, - [3481] = {.lex_state = 128, .external_lex_state = 2}, - [3482] = {.lex_state = 128, .external_lex_state = 6}, - [3483] = {.lex_state = 128, .external_lex_state = 2}, - [3484] = {.lex_state = 128, .external_lex_state = 2}, - [3485] = {.lex_state = 18, .external_lex_state = 8}, - [3486] = {.lex_state = 20, .external_lex_state = 2}, - [3487] = {.lex_state = 128, .external_lex_state = 2}, - [3488] = {.lex_state = 20, .external_lex_state = 2}, - [3489] = {.lex_state = 20, .external_lex_state = 2}, - [3490] = {.lex_state = 7, .external_lex_state = 2}, - [3491] = {.lex_state = 128, .external_lex_state = 2}, + [3106] = {.lex_state = 7, .external_lex_state = 5}, + [3107] = {.lex_state = 127, .external_lex_state = 2}, + [3108] = {.lex_state = 127, .external_lex_state = 2}, + [3109] = {.lex_state = 7, .external_lex_state = 5}, + [3110] = {.lex_state = 7, .external_lex_state = 6}, + [3111] = {.lex_state = 7, .external_lex_state = 6}, + [3112] = {.lex_state = 127, .external_lex_state = 2}, + [3113] = {.lex_state = 127, .external_lex_state = 5}, + [3114] = {.lex_state = 127, .external_lex_state = 5}, + [3115] = {.lex_state = 127, .external_lex_state = 2}, + [3116] = {.lex_state = 127, .external_lex_state = 5}, + [3117] = {.lex_state = 127, .external_lex_state = 5}, + [3118] = {.lex_state = 7, .external_lex_state = 6}, + [3119] = {.lex_state = 127, .external_lex_state = 5}, + [3120] = {.lex_state = 127, .external_lex_state = 5}, + [3121] = {.lex_state = 127, .external_lex_state = 2}, + [3122] = {.lex_state = 7, .external_lex_state = 6}, + [3123] = {.lex_state = 127, .external_lex_state = 5}, + [3124] = {.lex_state = 127, .external_lex_state = 5}, + [3125] = {.lex_state = 127, .external_lex_state = 5}, + [3126] = {.lex_state = 127, .external_lex_state = 5}, + [3127] = {.lex_state = 127, .external_lex_state = 5}, + [3128] = {.lex_state = 127, .external_lex_state = 5}, + [3129] = {.lex_state = 127, .external_lex_state = 5}, + [3130] = {.lex_state = 127, .external_lex_state = 5}, + [3131] = {.lex_state = 127, .external_lex_state = 5}, + [3132] = {.lex_state = 127, .external_lex_state = 5}, + [3133] = {.lex_state = 127, .external_lex_state = 5}, + [3134] = {.lex_state = 127, .external_lex_state = 5}, + [3135] = {.lex_state = 127, .external_lex_state = 5}, + [3136] = {.lex_state = 127, .external_lex_state = 5}, + [3137] = {.lex_state = 127, .external_lex_state = 5}, + [3138] = {.lex_state = 127, .external_lex_state = 5}, + [3139] = {.lex_state = 127, .external_lex_state = 2}, + [3140] = {.lex_state = 19, .external_lex_state = 2}, + [3141] = {.lex_state = 127, .external_lex_state = 5}, + [3142] = {.lex_state = 7, .external_lex_state = 2}, + [3143] = {.lex_state = 127, .external_lex_state = 5}, + [3144] = {.lex_state = 127, .external_lex_state = 5}, + [3145] = {.lex_state = 127, .external_lex_state = 5}, + [3146] = {.lex_state = 127, .external_lex_state = 5}, + [3147] = {.lex_state = 127, .external_lex_state = 5}, + [3148] = {.lex_state = 127, .external_lex_state = 5}, + [3149] = {.lex_state = 127, .external_lex_state = 5}, + [3150] = {.lex_state = 127, .external_lex_state = 5}, + [3151] = {.lex_state = 7, .external_lex_state = 2}, + [3152] = {.lex_state = 127, .external_lex_state = 5}, + [3153] = {.lex_state = 127, .external_lex_state = 5}, + [3154] = {.lex_state = 127, .external_lex_state = 5}, + [3155] = {.lex_state = 19, .external_lex_state = 2}, + [3156] = {.lex_state = 127, .external_lex_state = 5}, + [3157] = {.lex_state = 127, .external_lex_state = 6}, + [3158] = {.lex_state = 127, .external_lex_state = 5}, + [3159] = {.lex_state = 127, .external_lex_state = 5}, + [3160] = {.lex_state = 127, .external_lex_state = 2}, + [3161] = {.lex_state = 127, .external_lex_state = 5}, + [3162] = {.lex_state = 19, .external_lex_state = 2}, + [3163] = {.lex_state = 17, .external_lex_state = 7}, + [3164] = {.lex_state = 127, .external_lex_state = 5}, + [3165] = {.lex_state = 127, .external_lex_state = 5}, + [3166] = {.lex_state = 127, .external_lex_state = 5}, + [3167] = {.lex_state = 127, .external_lex_state = 5}, + [3168] = {.lex_state = 127, .external_lex_state = 5}, + [3169] = {.lex_state = 127, .external_lex_state = 5}, + [3170] = {.lex_state = 127, .external_lex_state = 5}, + [3171] = {.lex_state = 127, .external_lex_state = 2}, + [3172] = {.lex_state = 127, .external_lex_state = 5}, + [3173] = {.lex_state = 7, .external_lex_state = 2}, + [3174] = {.lex_state = 127, .external_lex_state = 5}, + [3175] = {.lex_state = 19, .external_lex_state = 2}, + [3176] = {.lex_state = 127, .external_lex_state = 6}, + [3177] = {.lex_state = 127, .external_lex_state = 5}, + [3178] = {.lex_state = 127, .external_lex_state = 5}, + [3179] = {.lex_state = 127, .external_lex_state = 5}, + [3180] = {.lex_state = 127, .external_lex_state = 5}, + [3181] = {.lex_state = 127, .external_lex_state = 5}, + [3182] = {.lex_state = 127, .external_lex_state = 5}, + [3183] = {.lex_state = 127, .external_lex_state = 5}, + [3184] = {.lex_state = 127, .external_lex_state = 5}, + [3185] = {.lex_state = 127, .external_lex_state = 5}, + [3186] = {.lex_state = 127, .external_lex_state = 5}, + [3187] = {.lex_state = 127, .external_lex_state = 5}, + [3188] = {.lex_state = 7, .external_lex_state = 6}, + [3189] = {.lex_state = 7, .external_lex_state = 6}, + [3190] = {.lex_state = 127, .external_lex_state = 5}, + [3191] = {.lex_state = 127, .external_lex_state = 5}, + [3192] = {.lex_state = 127, .external_lex_state = 5}, + [3193] = {.lex_state = 127, .external_lex_state = 6}, + [3194] = {.lex_state = 127, .external_lex_state = 5}, + [3195] = {.lex_state = 127, .external_lex_state = 6}, + [3196] = {.lex_state = 127, .external_lex_state = 5}, + [3197] = {.lex_state = 127, .external_lex_state = 5}, + [3198] = {.lex_state = 127, .external_lex_state = 6}, + [3199] = {.lex_state = 127, .external_lex_state = 5}, + [3200] = {.lex_state = 127, .external_lex_state = 6}, + [3201] = {.lex_state = 127, .external_lex_state = 6}, + [3202] = {.lex_state = 127, .external_lex_state = 6}, + [3203] = {.lex_state = 7, .external_lex_state = 6}, + [3204] = {.lex_state = 127, .external_lex_state = 5}, + [3205] = {.lex_state = 127, .external_lex_state = 5}, + [3206] = {.lex_state = 127, .external_lex_state = 5}, + [3207] = {.lex_state = 127, .external_lex_state = 5}, + [3208] = {.lex_state = 127, .external_lex_state = 5}, + [3209] = {.lex_state = 127, .external_lex_state = 5}, + [3210] = {.lex_state = 127, .external_lex_state = 5}, + [3211] = {.lex_state = 127, .external_lex_state = 6}, + [3212] = {.lex_state = 127, .external_lex_state = 5}, + [3213] = {.lex_state = 127, .external_lex_state = 5}, + [3214] = {.lex_state = 127, .external_lex_state = 5}, + [3215] = {.lex_state = 127, .external_lex_state = 5}, + [3216] = {.lex_state = 127, .external_lex_state = 5}, + [3217] = {.lex_state = 7, .external_lex_state = 6}, + [3218] = {.lex_state = 127, .external_lex_state = 5}, + [3219] = {.lex_state = 127, .external_lex_state = 5}, + [3220] = {.lex_state = 127, .external_lex_state = 5}, + [3221] = {.lex_state = 127, .external_lex_state = 5}, + [3222] = {.lex_state = 127, .external_lex_state = 5}, + [3223] = {.lex_state = 7, .external_lex_state = 6}, + [3224] = {.lex_state = 127, .external_lex_state = 5}, + [3225] = {.lex_state = 127, .external_lex_state = 5}, + [3226] = {.lex_state = 127, .external_lex_state = 5}, + [3227] = {.lex_state = 7, .external_lex_state = 6}, + [3228] = {.lex_state = 127, .external_lex_state = 5}, + [3229] = {.lex_state = 127, .external_lex_state = 5}, + [3230] = {.lex_state = 127, .external_lex_state = 5}, + [3231] = {.lex_state = 127, .external_lex_state = 5}, + [3232] = {.lex_state = 127, .external_lex_state = 5}, + [3233] = {.lex_state = 127, .external_lex_state = 6}, + [3234] = {.lex_state = 127, .external_lex_state = 6}, + [3235] = {.lex_state = 127, .external_lex_state = 5}, + [3236] = {.lex_state = 127, .external_lex_state = 5}, + [3237] = {.lex_state = 127, .external_lex_state = 5}, + [3238] = {.lex_state = 127, .external_lex_state = 5}, + [3239] = {.lex_state = 127, .external_lex_state = 5}, + [3240] = {.lex_state = 127, .external_lex_state = 5}, + [3241] = {.lex_state = 127, .external_lex_state = 5}, + [3242] = {.lex_state = 127, .external_lex_state = 5}, + [3243] = {.lex_state = 7, .external_lex_state = 6}, + [3244] = {.lex_state = 127, .external_lex_state = 5}, + [3245] = {.lex_state = 127, .external_lex_state = 5}, + [3246] = {.lex_state = 127, .external_lex_state = 5}, + [3247] = {.lex_state = 127, .external_lex_state = 5}, + [3248] = {.lex_state = 127, .external_lex_state = 2}, + [3249] = {.lex_state = 127, .external_lex_state = 5}, + [3250] = {.lex_state = 127, .external_lex_state = 5}, + [3251] = {.lex_state = 127, .external_lex_state = 2}, + [3252] = {.lex_state = 127, .external_lex_state = 5}, + [3253] = {.lex_state = 127, .external_lex_state = 5}, + [3254] = {.lex_state = 127, .external_lex_state = 5}, + [3255] = {.lex_state = 7, .external_lex_state = 6}, + [3256] = {.lex_state = 127, .external_lex_state = 5}, + [3257] = {.lex_state = 127, .external_lex_state = 5}, + [3258] = {.lex_state = 127, .external_lex_state = 5}, + [3259] = {.lex_state = 127, .external_lex_state = 2}, + [3260] = {.lex_state = 127, .external_lex_state = 6}, + [3261] = {.lex_state = 127, .external_lex_state = 6}, + [3262] = {.lex_state = 127, .external_lex_state = 6}, + [3263] = {.lex_state = 127, .external_lex_state = 5}, + [3264] = {.lex_state = 127, .external_lex_state = 2}, + [3265] = {.lex_state = 19, .external_lex_state = 2}, + [3266] = {.lex_state = 127, .external_lex_state = 2}, + [3267] = {.lex_state = 127, .external_lex_state = 5}, + [3268] = {.lex_state = 127, .external_lex_state = 2}, + [3269] = {.lex_state = 127, .external_lex_state = 5}, + [3270] = {.lex_state = 19, .external_lex_state = 2}, + [3271] = {.lex_state = 127, .external_lex_state = 6}, + [3272] = {.lex_state = 127, .external_lex_state = 2}, + [3273] = {.lex_state = 127, .external_lex_state = 5}, + [3274] = {.lex_state = 127, .external_lex_state = 5}, + [3275] = {.lex_state = 127, .external_lex_state = 6}, + [3276] = {.lex_state = 127, .external_lex_state = 2}, + [3277] = {.lex_state = 127, .external_lex_state = 2}, + [3278] = {.lex_state = 127, .external_lex_state = 2}, + [3279] = {.lex_state = 127, .external_lex_state = 2}, + [3280] = {.lex_state = 127, .external_lex_state = 2}, + [3281] = {.lex_state = 127, .external_lex_state = 2}, + [3282] = {.lex_state = 127, .external_lex_state = 2}, + [3283] = {.lex_state = 127, .external_lex_state = 2}, + [3284] = {.lex_state = 127, .external_lex_state = 2}, + [3285] = {.lex_state = 127, .external_lex_state = 5}, + [3286] = {.lex_state = 19, .external_lex_state = 2}, + [3287] = {.lex_state = 127, .external_lex_state = 6}, + [3288] = {.lex_state = 127, .external_lex_state = 2}, + [3289] = {.lex_state = 127, .external_lex_state = 6}, + [3290] = {.lex_state = 127, .external_lex_state = 2}, + [3291] = {.lex_state = 127, .external_lex_state = 2}, + [3292] = {.lex_state = 127, .external_lex_state = 6}, + [3293] = {.lex_state = 19, .external_lex_state = 2}, + [3294] = {.lex_state = 127, .external_lex_state = 5}, + [3295] = {.lex_state = 127, .external_lex_state = 6}, + [3296] = {.lex_state = 19, .external_lex_state = 2}, + [3297] = {.lex_state = 127, .external_lex_state = 6}, + [3298] = {.lex_state = 127, .external_lex_state = 6}, + [3299] = {.lex_state = 127, .external_lex_state = 6}, + [3300] = {.lex_state = 19, .external_lex_state = 2}, + [3301] = {.lex_state = 19, .external_lex_state = 2}, + [3302] = {.lex_state = 19, .external_lex_state = 2}, + [3303] = {.lex_state = 19, .external_lex_state = 2}, + [3304] = {.lex_state = 19, .external_lex_state = 2}, + [3305] = {.lex_state = 19, .external_lex_state = 2}, + [3306] = {.lex_state = 127, .external_lex_state = 2}, + [3307] = {.lex_state = 19, .external_lex_state = 2}, + [3308] = {.lex_state = 19, .external_lex_state = 2}, + [3309] = {.lex_state = 127, .external_lex_state = 5}, + [3310] = {.lex_state = 127, .external_lex_state = 6}, + [3311] = {.lex_state = 127, .external_lex_state = 6}, + [3312] = {.lex_state = 127, .external_lex_state = 5}, + [3313] = {.lex_state = 127, .external_lex_state = 5}, + [3314] = {.lex_state = 127, .external_lex_state = 6}, + [3315] = {.lex_state = 127, .external_lex_state = 6}, + [3316] = {.lex_state = 127, .external_lex_state = 6}, + [3317] = {.lex_state = 127, .external_lex_state = 6}, + [3318] = {.lex_state = 127, .external_lex_state = 6}, + [3319] = {.lex_state = 127, .external_lex_state = 5}, + [3320] = {.lex_state = 127, .external_lex_state = 6}, + [3321] = {.lex_state = 127, .external_lex_state = 6}, + [3322] = {.lex_state = 127, .external_lex_state = 6}, + [3323] = {.lex_state = 127, .external_lex_state = 6}, + [3324] = {.lex_state = 127, .external_lex_state = 6}, + [3325] = {.lex_state = 127, .external_lex_state = 6}, + [3326] = {.lex_state = 19, .external_lex_state = 2}, + [3327] = {.lex_state = 127, .external_lex_state = 2}, + [3328] = {.lex_state = 127, .external_lex_state = 6}, + [3329] = {.lex_state = 127, .external_lex_state = 6}, + [3330] = {.lex_state = 127, .external_lex_state = 6}, + [3331] = {.lex_state = 127, .external_lex_state = 2}, + [3332] = {.lex_state = 127, .external_lex_state = 6}, + [3333] = {.lex_state = 127, .external_lex_state = 6}, + [3334] = {.lex_state = 127, .external_lex_state = 6}, + [3335] = {.lex_state = 127, .external_lex_state = 6}, + [3336] = {.lex_state = 127, .external_lex_state = 6}, + [3337] = {.lex_state = 127, .external_lex_state = 6}, + [3338] = {.lex_state = 127, .external_lex_state = 6}, + [3339] = {.lex_state = 127, .external_lex_state = 6}, + [3340] = {.lex_state = 127, .external_lex_state = 6}, + [3341] = {.lex_state = 127, .external_lex_state = 6}, + [3342] = {.lex_state = 127, .external_lex_state = 6}, + [3343] = {.lex_state = 127, .external_lex_state = 6}, + [3344] = {.lex_state = 127, .external_lex_state = 6}, + [3345] = {.lex_state = 127, .external_lex_state = 6}, + [3346] = {.lex_state = 127, .external_lex_state = 6}, + [3347] = {.lex_state = 127, .external_lex_state = 6}, + [3348] = {.lex_state = 127, .external_lex_state = 6}, + [3349] = {.lex_state = 127, .external_lex_state = 6}, + [3350] = {.lex_state = 127, .external_lex_state = 2}, + [3351] = {.lex_state = 127, .external_lex_state = 5}, + [3352] = {.lex_state = 127, .external_lex_state = 6}, + [3353] = {.lex_state = 127, .external_lex_state = 2}, + [3354] = {.lex_state = 127, .external_lex_state = 6}, + [3355] = {.lex_state = 127, .external_lex_state = 5}, + [3356] = {.lex_state = 127, .external_lex_state = 6}, + [3357] = {.lex_state = 127, .external_lex_state = 5}, + [3358] = {.lex_state = 127, .external_lex_state = 6}, + [3359] = {.lex_state = 127, .external_lex_state = 6}, + [3360] = {.lex_state = 19, .external_lex_state = 2}, + [3361] = {.lex_state = 127, .external_lex_state = 5}, + [3362] = {.lex_state = 127, .external_lex_state = 2}, + [3363] = {.lex_state = 127, .external_lex_state = 5}, + [3364] = {.lex_state = 127, .external_lex_state = 5}, + [3365] = {.lex_state = 127, .external_lex_state = 5}, + [3366] = {.lex_state = 127, .external_lex_state = 5}, + [3367] = {.lex_state = 127, .external_lex_state = 6}, + [3368] = {.lex_state = 127, .external_lex_state = 5}, + [3369] = {.lex_state = 127, .external_lex_state = 2}, + [3370] = {.lex_state = 127, .external_lex_state = 5}, + [3371] = {.lex_state = 127, .external_lex_state = 5}, + [3372] = {.lex_state = 19, .external_lex_state = 2}, + [3373] = {.lex_state = 127, .external_lex_state = 5}, + [3374] = {.lex_state = 127, .external_lex_state = 5}, + [3375] = {.lex_state = 127, .external_lex_state = 2}, + [3376] = {.lex_state = 127, .external_lex_state = 2}, + [3377] = {.lex_state = 127, .external_lex_state = 5}, + [3378] = {.lex_state = 127, .external_lex_state = 5}, + [3379] = {.lex_state = 127, .external_lex_state = 5}, + [3380] = {.lex_state = 127, .external_lex_state = 6}, + [3381] = {.lex_state = 127, .external_lex_state = 5}, + [3382] = {.lex_state = 127, .external_lex_state = 5}, + [3383] = {.lex_state = 127, .external_lex_state = 5}, + [3384] = {.lex_state = 127, .external_lex_state = 2}, + [3385] = {.lex_state = 127, .external_lex_state = 5}, + [3386] = {.lex_state = 127, .external_lex_state = 5}, + [3387] = {.lex_state = 19, .external_lex_state = 2}, + [3388] = {.lex_state = 127, .external_lex_state = 2}, + [3389] = {.lex_state = 127, .external_lex_state = 6}, + [3390] = {.lex_state = 127, .external_lex_state = 2}, + [3391] = {.lex_state = 127, .external_lex_state = 2}, + [3392] = {.lex_state = 127, .external_lex_state = 6}, + [3393] = {.lex_state = 19, .external_lex_state = 2}, + [3394] = {.lex_state = 127, .external_lex_state = 2}, + [3395] = {.lex_state = 19, .external_lex_state = 2}, + [3396] = {.lex_state = 127, .external_lex_state = 6}, + [3397] = {.lex_state = 19, .external_lex_state = 2}, + [3398] = {.lex_state = 19, .external_lex_state = 2}, + [3399] = {.lex_state = 19, .external_lex_state = 2}, + [3400] = {.lex_state = 19, .external_lex_state = 2}, + [3401] = {.lex_state = 127, .external_lex_state = 5}, + [3402] = {.lex_state = 127, .external_lex_state = 2}, + [3403] = {.lex_state = 19, .external_lex_state = 2}, + [3404] = {.lex_state = 127, .external_lex_state = 6}, + [3405] = {.lex_state = 127, .external_lex_state = 5}, + [3406] = {.lex_state = 127, .external_lex_state = 6}, + [3407] = {.lex_state = 19, .external_lex_state = 2}, + [3408] = {.lex_state = 127, .external_lex_state = 5}, + [3409] = {.lex_state = 127, .external_lex_state = 2}, + [3410] = {.lex_state = 19, .external_lex_state = 2}, + [3411] = {.lex_state = 19, .external_lex_state = 2}, + [3412] = {.lex_state = 19, .external_lex_state = 2}, + [3413] = {.lex_state = 127, .external_lex_state = 2}, + [3414] = {.lex_state = 127, .external_lex_state = 2}, + [3415] = {.lex_state = 127, .external_lex_state = 2}, + [3416] = {.lex_state = 19, .external_lex_state = 2}, + [3417] = {.lex_state = 127, .external_lex_state = 2}, + [3418] = {.lex_state = 127, .external_lex_state = 2}, + [3419] = {.lex_state = 127, .external_lex_state = 2}, + [3420] = {.lex_state = 19, .external_lex_state = 2}, + [3421] = {.lex_state = 127, .external_lex_state = 2}, + [3422] = {.lex_state = 127, .external_lex_state = 5}, + [3423] = {.lex_state = 19, .external_lex_state = 2}, + [3424] = {.lex_state = 127, .external_lex_state = 6}, + [3425] = {.lex_state = 127, .external_lex_state = 2}, + [3426] = {.lex_state = 127, .external_lex_state = 2}, + [3427] = {.lex_state = 127, .external_lex_state = 2}, + [3428] = {.lex_state = 19, .external_lex_state = 2}, + [3429] = {.lex_state = 127, .external_lex_state = 5}, + [3430] = {.lex_state = 127, .external_lex_state = 6}, + [3431] = {.lex_state = 19, .external_lex_state = 2}, + [3432] = {.lex_state = 127, .external_lex_state = 6}, + [3433] = {.lex_state = 127, .external_lex_state = 2}, + [3434] = {.lex_state = 127, .external_lex_state = 5}, + [3435] = {.lex_state = 127, .external_lex_state = 5}, + [3436] = {.lex_state = 127, .external_lex_state = 5}, + [3437] = {.lex_state = 127, .external_lex_state = 5}, + [3438] = {.lex_state = 127, .external_lex_state = 5}, + [3439] = {.lex_state = 127, .external_lex_state = 5}, + [3440] = {.lex_state = 19, .external_lex_state = 2}, + [3441] = {.lex_state = 127, .external_lex_state = 5}, + [3442] = {.lex_state = 19, .external_lex_state = 2}, + [3443] = {.lex_state = 19, .external_lex_state = 2}, + [3444] = {.lex_state = 127, .external_lex_state = 5}, + [3445] = {.lex_state = 127, .external_lex_state = 5}, + [3446] = {.lex_state = 127, .external_lex_state = 2}, + [3447] = {.lex_state = 127, .external_lex_state = 5}, + [3448] = {.lex_state = 19, .external_lex_state = 2}, + [3449] = {.lex_state = 19, .external_lex_state = 2}, + [3450] = {.lex_state = 127, .external_lex_state = 5}, + [3451] = {.lex_state = 19, .external_lex_state = 2}, + [3452] = {.lex_state = 127, .external_lex_state = 2}, + [3453] = {.lex_state = 127, .external_lex_state = 2}, + [3454] = {.lex_state = 127, .external_lex_state = 2}, + [3455] = {.lex_state = 127, .external_lex_state = 2}, + [3456] = {.lex_state = 127, .external_lex_state = 5}, + [3457] = {.lex_state = 127, .external_lex_state = 2}, + [3458] = {.lex_state = 127, .external_lex_state = 5}, + [3459] = {.lex_state = 127, .external_lex_state = 5}, + [3460] = {.lex_state = 127, .external_lex_state = 5}, + [3461] = {.lex_state = 127, .external_lex_state = 5}, + [3462] = {.lex_state = 127, .external_lex_state = 5}, + [3463] = {.lex_state = 127, .external_lex_state = 6}, + [3464] = {.lex_state = 127, .external_lex_state = 2}, + [3465] = {.lex_state = 127, .external_lex_state = 5}, + [3466] = {.lex_state = 127, .external_lex_state = 5}, + [3467] = {.lex_state = 127, .external_lex_state = 2}, + [3468] = {.lex_state = 127, .external_lex_state = 2}, + [3469] = {.lex_state = 127, .external_lex_state = 2}, + [3470] = {.lex_state = 127, .external_lex_state = 6}, + [3471] = {.lex_state = 127, .external_lex_state = 6}, + [3472] = {.lex_state = 19, .external_lex_state = 2}, + [3473] = {.lex_state = 19, .external_lex_state = 2}, + [3474] = {.lex_state = 127, .external_lex_state = 5}, + [3475] = {.lex_state = 127, .external_lex_state = 2}, + [3476] = {.lex_state = 19, .external_lex_state = 2}, + [3477] = {.lex_state = 127, .external_lex_state = 2}, + [3478] = {.lex_state = 7, .external_lex_state = 2}, + [3479] = {.lex_state = 19, .external_lex_state = 2}, + [3480] = {.lex_state = 17, .external_lex_state = 8}, + [3481] = {.lex_state = 127, .external_lex_state = 2}, + [3482] = {.lex_state = 127, .external_lex_state = 2}, + [3483] = {.lex_state = 19, .external_lex_state = 2}, + [3484] = {.lex_state = 127, .external_lex_state = 5}, + [3485] = {.lex_state = 17, .external_lex_state = 8}, + [3486] = {.lex_state = 17, .external_lex_state = 8}, + [3487] = {.lex_state = 19, .external_lex_state = 2}, + [3488] = {.lex_state = 17, .external_lex_state = 8}, + [3489] = {.lex_state = 19, .external_lex_state = 2}, + [3490] = {.lex_state = 19, .external_lex_state = 2}, + [3491] = {.lex_state = 7, .external_lex_state = 2}, [3492] = {.lex_state = 7, .external_lex_state = 2}, - [3493] = {.lex_state = 7, .external_lex_state = 2}, - [3494] = {.lex_state = 18, .external_lex_state = 8}, - [3495] = {.lex_state = 18, .external_lex_state = 8}, - [3496] = {.lex_state = 20, .external_lex_state = 2}, - [3497] = {.lex_state = 20, .external_lex_state = 2}, - [3498] = {.lex_state = 128, .external_lex_state = 2}, - [3499] = {.lex_state = 18, .external_lex_state = 8}, - [3500] = {.lex_state = 11, .external_lex_state = 2}, - [3501] = {.lex_state = 128, .external_lex_state = 2}, - [3502] = {.lex_state = 128, .external_lex_state = 5}, - [3503] = {.lex_state = 128, .external_lex_state = 2}, - [3504] = {.lex_state = 128, .external_lex_state = 5}, - [3505] = {.lex_state = 128, .external_lex_state = 2}, - [3506] = {.lex_state = 18, .external_lex_state = 8}, - [3507] = {.lex_state = 18, .external_lex_state = 8}, - [3508] = {.lex_state = 18, .external_lex_state = 8}, - [3509] = {.lex_state = 128, .external_lex_state = 2}, - [3510] = {.lex_state = 18, .external_lex_state = 8}, - [3511] = {.lex_state = 128, .external_lex_state = 2}, - [3512] = {.lex_state = 20, .external_lex_state = 2}, - [3513] = {.lex_state = 20, .external_lex_state = 2}, - [3514] = {.lex_state = 128, .external_lex_state = 2}, - [3515] = {.lex_state = 20, .external_lex_state = 2}, - [3516] = {.lex_state = 128, .external_lex_state = 5}, - [3517] = {.lex_state = 128, .external_lex_state = 5}, - [3518] = {.lex_state = 128, .external_lex_state = 5}, - [3519] = {.lex_state = 20, .external_lex_state = 2}, - [3520] = {.lex_state = 20, .external_lex_state = 2}, - [3521] = {.lex_state = 128, .external_lex_state = 5}, - [3522] = {.lex_state = 128, .external_lex_state = 2}, - [3523] = {.lex_state = 128, .external_lex_state = 2}, - [3524] = {.lex_state = 128, .external_lex_state = 5}, - [3525] = {.lex_state = 128, .external_lex_state = 2}, - [3526] = {.lex_state = 128, .external_lex_state = 2}, - [3527] = {.lex_state = 128, .external_lex_state = 2}, - [3528] = {.lex_state = 128, .external_lex_state = 2}, - [3529] = {.lex_state = 128, .external_lex_state = 5}, - [3530] = {.lex_state = 128, .external_lex_state = 5}, - [3531] = {.lex_state = 128, .external_lex_state = 5}, - [3532] = {.lex_state = 128, .external_lex_state = 5}, - [3533] = {.lex_state = 128, .external_lex_state = 5}, - [3534] = {.lex_state = 128, .external_lex_state = 5}, - [3535] = {.lex_state = 128, .external_lex_state = 5}, - [3536] = {.lex_state = 128, .external_lex_state = 2}, - [3537] = {.lex_state = 128, .external_lex_state = 5}, - [3538] = {.lex_state = 128, .external_lex_state = 5}, - [3539] = {.lex_state = 128, .external_lex_state = 5}, - [3540] = {.lex_state = 128, .external_lex_state = 5}, - [3541] = {.lex_state = 128, .external_lex_state = 2}, - [3542] = {.lex_state = 128, .external_lex_state = 5}, - [3543] = {.lex_state = 128, .external_lex_state = 5}, - [3544] = {.lex_state = 128, .external_lex_state = 5}, - [3545] = {.lex_state = 128, .external_lex_state = 5}, - [3546] = {.lex_state = 128, .external_lex_state = 5}, - [3547] = {.lex_state = 128, .external_lex_state = 5}, - [3548] = {.lex_state = 128, .external_lex_state = 5}, - [3549] = {.lex_state = 128, .external_lex_state = 5}, - [3550] = {.lex_state = 128, .external_lex_state = 5}, - [3551] = {.lex_state = 128, .external_lex_state = 2}, - [3552] = {.lex_state = 20, .external_lex_state = 2}, - [3553] = {.lex_state = 128, .external_lex_state = 5}, - [3554] = {.lex_state = 128, .external_lex_state = 5}, - [3555] = {.lex_state = 7, .external_lex_state = 2}, - [3556] = {.lex_state = 128, .external_lex_state = 5}, - [3557] = {.lex_state = 128, .external_lex_state = 5}, - [3558] = {.lex_state = 128, .external_lex_state = 2}, - [3559] = {.lex_state = 128, .external_lex_state = 2}, - [3560] = {.lex_state = 128, .external_lex_state = 5}, - [3561] = {.lex_state = 128, .external_lex_state = 5}, - [3562] = {.lex_state = 128, .external_lex_state = 2}, - [3563] = {.lex_state = 128, .external_lex_state = 5}, - [3564] = {.lex_state = 128, .external_lex_state = 5}, - [3565] = {.lex_state = 128, .external_lex_state = 5}, - [3566] = {.lex_state = 128, .external_lex_state = 2}, - [3567] = {.lex_state = 128, .external_lex_state = 2}, - [3568] = {.lex_state = 128, .external_lex_state = 2}, - [3569] = {.lex_state = 128, .external_lex_state = 5}, - [3570] = {.lex_state = 128, .external_lex_state = 2}, - [3571] = {.lex_state = 128, .external_lex_state = 2}, - [3572] = {.lex_state = 128, .external_lex_state = 5}, - [3573] = {.lex_state = 128, .external_lex_state = 5}, - [3574] = {.lex_state = 128, .external_lex_state = 5}, - [3575] = {.lex_state = 128, .external_lex_state = 5}, - [3576] = {.lex_state = 128, .external_lex_state = 5}, - [3577] = {.lex_state = 128, .external_lex_state = 2}, - [3578] = {.lex_state = 128, .external_lex_state = 5}, - [3579] = {.lex_state = 128, .external_lex_state = 5}, - [3580] = {.lex_state = 128, .external_lex_state = 5}, - [3581] = {.lex_state = 128, .external_lex_state = 5}, - [3582] = {.lex_state = 7, .external_lex_state = 2}, - [3583] = {.lex_state = 128, .external_lex_state = 5}, - [3584] = {.lex_state = 128, .external_lex_state = 5}, - [3585] = {.lex_state = 128, .external_lex_state = 5}, - [3586] = {.lex_state = 128, .external_lex_state = 5}, - [3587] = {.lex_state = 7, .external_lex_state = 2}, - [3588] = {.lex_state = 128, .external_lex_state = 2}, - [3589] = {.lex_state = 128, .external_lex_state = 5}, - [3590] = {.lex_state = 128, .external_lex_state = 5}, - [3591] = {.lex_state = 128, .external_lex_state = 5}, - [3592] = {.lex_state = 128, .external_lex_state = 5}, - [3593] = {.lex_state = 128, .external_lex_state = 2}, - [3594] = {.lex_state = 128, .external_lex_state = 5}, - [3595] = {.lex_state = 128, .external_lex_state = 2}, - [3596] = {.lex_state = 128, .external_lex_state = 2}, - [3597] = {.lex_state = 128, .external_lex_state = 5}, - [3598] = {.lex_state = 128, .external_lex_state = 5}, - [3599] = {.lex_state = 128, .external_lex_state = 5}, - [3600] = {.lex_state = 128, .external_lex_state = 5}, - [3601] = {.lex_state = 128, .external_lex_state = 5}, - [3602] = {.lex_state = 128, .external_lex_state = 5}, - [3603] = {.lex_state = 128, .external_lex_state = 2}, - [3604] = {.lex_state = 128, .external_lex_state = 5}, - [3605] = {.lex_state = 128, .external_lex_state = 5}, - [3606] = {.lex_state = 128, .external_lex_state = 5}, - [3607] = {.lex_state = 7, .external_lex_state = 2}, - [3608] = {.lex_state = 128, .external_lex_state = 5}, - [3609] = {.lex_state = 128, .external_lex_state = 5}, - [3610] = {.lex_state = 128, .external_lex_state = 5}, - [3611] = {.lex_state = 128, .external_lex_state = 5}, - [3612] = {.lex_state = 7, .external_lex_state = 2}, - [3613] = {.lex_state = 128, .external_lex_state = 5}, - [3614] = {.lex_state = 128, .external_lex_state = 2}, - [3615] = {.lex_state = 128, .external_lex_state = 5}, - [3616] = {.lex_state = 128, .external_lex_state = 5}, - [3617] = {.lex_state = 7, .external_lex_state = 2}, - [3618] = {.lex_state = 128, .external_lex_state = 5}, - [3619] = {.lex_state = 128, .external_lex_state = 5}, - [3620] = {.lex_state = 128, .external_lex_state = 5}, - [3621] = {.lex_state = 128, .external_lex_state = 5}, - [3622] = {.lex_state = 128, .external_lex_state = 5}, - [3623] = {.lex_state = 128, .external_lex_state = 5}, - [3624] = {.lex_state = 128, .external_lex_state = 5}, - [3625] = {.lex_state = 128, .external_lex_state = 5}, - [3626] = {.lex_state = 128, .external_lex_state = 2}, - [3627] = {.lex_state = 128, .external_lex_state = 2}, - [3628] = {.lex_state = 128, .external_lex_state = 2}, - [3629] = {.lex_state = 128, .external_lex_state = 5}, - [3630] = {.lex_state = 128, .external_lex_state = 5}, - [3631] = {.lex_state = 128, .external_lex_state = 2}, - [3632] = {.lex_state = 128, .external_lex_state = 2}, - [3633] = {.lex_state = 7, .external_lex_state = 2}, - [3634] = {.lex_state = 128, .external_lex_state = 2}, - [3635] = {.lex_state = 128, .external_lex_state = 2}, - [3636] = {.lex_state = 7, .external_lex_state = 2}, - [3637] = {.lex_state = 128, .external_lex_state = 5}, - [3638] = {.lex_state = 128, .external_lex_state = 2}, - [3639] = {.lex_state = 128, .external_lex_state = 2}, - [3640] = {.lex_state = 128, .external_lex_state = 5}, - [3641] = {.lex_state = 128, .external_lex_state = 5}, - [3642] = {.lex_state = 128, .external_lex_state = 2}, - [3643] = {.lex_state = 128, .external_lex_state = 2}, - [3644] = {.lex_state = 7, .external_lex_state = 2}, - [3645] = {.lex_state = 7, .external_lex_state = 2}, - [3646] = {.lex_state = 128, .external_lex_state = 5}, - [3647] = {.lex_state = 128, .external_lex_state = 2}, - [3648] = {.lex_state = 128, .external_lex_state = 2}, - [3649] = {.lex_state = 128, .external_lex_state = 2}, - [3650] = {.lex_state = 128, .external_lex_state = 5}, - [3651] = {.lex_state = 7, .external_lex_state = 2}, - [3652] = {.lex_state = 128, .external_lex_state = 2}, - [3653] = {.lex_state = 128, .external_lex_state = 5}, - [3654] = {.lex_state = 128, .external_lex_state = 2}, - [3655] = {.lex_state = 7, .external_lex_state = 2}, - [3656] = {.lex_state = 8, .external_lex_state = 2}, - [3657] = {.lex_state = 128, .external_lex_state = 5}, - [3658] = {.lex_state = 128, .external_lex_state = 2}, - [3659] = {.lex_state = 128, .external_lex_state = 5}, - [3660] = {.lex_state = 128, .external_lex_state = 5}, - [3661] = {.lex_state = 7, .external_lex_state = 2}, - [3662] = {.lex_state = 128, .external_lex_state = 5}, - [3663] = {.lex_state = 128, .external_lex_state = 2}, - [3664] = {.lex_state = 128, .external_lex_state = 5}, - [3665] = {.lex_state = 128, .external_lex_state = 5}, - [3666] = {.lex_state = 128, .external_lex_state = 5}, - [3667] = {.lex_state = 128, .external_lex_state = 5}, - [3668] = {.lex_state = 128, .external_lex_state = 2}, - [3669] = {.lex_state = 128, .external_lex_state = 5}, - [3670] = {.lex_state = 128, .external_lex_state = 5}, - [3671] = {.lex_state = 128, .external_lex_state = 5}, - [3672] = {.lex_state = 128, .external_lex_state = 5}, - [3673] = {.lex_state = 128, .external_lex_state = 5}, - [3674] = {.lex_state = 128, .external_lex_state = 5}, - [3675] = {.lex_state = 128, .external_lex_state = 5}, - [3676] = {.lex_state = 128, .external_lex_state = 5}, - [3677] = {.lex_state = 128, .external_lex_state = 5}, - [3678] = {.lex_state = 128, .external_lex_state = 5}, - [3679] = {.lex_state = 128, .external_lex_state = 2}, - [3680] = {.lex_state = 128, .external_lex_state = 2}, - [3681] = {.lex_state = 128, .external_lex_state = 2}, - [3682] = {.lex_state = 128, .external_lex_state = 5}, - [3683] = {.lex_state = 128, .external_lex_state = 5}, - [3684] = {.lex_state = 7, .external_lex_state = 2}, - [3685] = {.lex_state = 128, .external_lex_state = 5}, - [3686] = {.lex_state = 128, .external_lex_state = 2}, - [3687] = {.lex_state = 128, .external_lex_state = 5}, - [3688] = {.lex_state = 128, .external_lex_state = 5}, - [3689] = {.lex_state = 128, .external_lex_state = 5}, - [3690] = {.lex_state = 128, .external_lex_state = 5}, - [3691] = {.lex_state = 128, .external_lex_state = 5}, - [3692] = {.lex_state = 128, .external_lex_state = 2}, - [3693] = {.lex_state = 8, .external_lex_state = 2}, - [3694] = {.lex_state = 128, .external_lex_state = 2}, - [3695] = {.lex_state = 128, .external_lex_state = 2}, - [3696] = {.lex_state = 128, .external_lex_state = 5}, - [3697] = {.lex_state = 128, .external_lex_state = 2}, - [3698] = {.lex_state = 128, .external_lex_state = 5}, - [3699] = {.lex_state = 128, .external_lex_state = 5}, - [3700] = {.lex_state = 128, .external_lex_state = 5}, - [3701] = {.lex_state = 128, .external_lex_state = 5}, - [3702] = {.lex_state = 128, .external_lex_state = 5}, - [3703] = {.lex_state = 8, .external_lex_state = 2}, - [3704] = {.lex_state = 7, .external_lex_state = 2}, - [3705] = {.lex_state = 128, .external_lex_state = 2}, - [3706] = {.lex_state = 128, .external_lex_state = 2}, - [3707] = {.lex_state = 128, .external_lex_state = 5}, - [3708] = {.lex_state = 128, .external_lex_state = 5}, - [3709] = {.lex_state = 128, .external_lex_state = 5}, - [3710] = {.lex_state = 128, .external_lex_state = 2}, - [3711] = {.lex_state = 128, .external_lex_state = 5}, - [3712] = {.lex_state = 128, .external_lex_state = 5}, - [3713] = {.lex_state = 128, .external_lex_state = 2}, - [3714] = {.lex_state = 128, .external_lex_state = 5}, - [3715] = {.lex_state = 128, .external_lex_state = 5}, - [3716] = {.lex_state = 128, .external_lex_state = 5}, - [3717] = {.lex_state = 128, .external_lex_state = 5}, - [3718] = {.lex_state = 128, .external_lex_state = 5}, - [3719] = {.lex_state = 128, .external_lex_state = 2}, - [3720] = {.lex_state = 128, .external_lex_state = 5}, - [3721] = {.lex_state = 128, .external_lex_state = 5}, - [3722] = {.lex_state = 128, .external_lex_state = 5}, - [3723] = {.lex_state = 128, .external_lex_state = 2}, - [3724] = {.lex_state = 128, .external_lex_state = 5}, - [3725] = {.lex_state = 128, .external_lex_state = 2}, - [3726] = {.lex_state = 128, .external_lex_state = 2}, - [3727] = {.lex_state = 128, .external_lex_state = 5}, - [3728] = {.lex_state = 128, .external_lex_state = 5}, - [3729] = {.lex_state = 128, .external_lex_state = 2}, - [3730] = {.lex_state = 128, .external_lex_state = 5}, - [3731] = {.lex_state = 128, .external_lex_state = 5}, - [3732] = {.lex_state = 128, .external_lex_state = 5}, - [3733] = {.lex_state = 128, .external_lex_state = 2}, - [3734] = {.lex_state = 128, .external_lex_state = 5}, - [3735] = {.lex_state = 128, .external_lex_state = 5}, - [3736] = {.lex_state = 128, .external_lex_state = 5}, - [3737] = {.lex_state = 128, .external_lex_state = 2}, - [3738] = {.lex_state = 128, .external_lex_state = 5}, - [3739] = {.lex_state = 128, .external_lex_state = 5}, - [3740] = {.lex_state = 128, .external_lex_state = 2}, - [3741] = {.lex_state = 128, .external_lex_state = 2}, - [3742] = {.lex_state = 128, .external_lex_state = 2}, - [3743] = {.lex_state = 128, .external_lex_state = 2}, - [3744] = {.lex_state = 128, .external_lex_state = 5}, - [3745] = {.lex_state = 128, .external_lex_state = 2}, - [3746] = {.lex_state = 128, .external_lex_state = 5}, - [3747] = {.lex_state = 128, .external_lex_state = 5}, - [3748] = {.lex_state = 128, .external_lex_state = 5}, - [3749] = {.lex_state = 128, .external_lex_state = 2}, - [3750] = {.lex_state = 128, .external_lex_state = 5}, - [3751] = {.lex_state = 128, .external_lex_state = 5}, - [3752] = {.lex_state = 128, .external_lex_state = 2}, - [3753] = {.lex_state = 128, .external_lex_state = 2}, - [3754] = {.lex_state = 128, .external_lex_state = 2}, - [3755] = {.lex_state = 7, .external_lex_state = 2}, - [3756] = {.lex_state = 128, .external_lex_state = 5}, - [3757] = {.lex_state = 128, .external_lex_state = 2}, - [3758] = {.lex_state = 128, .external_lex_state = 2}, - [3759] = {.lex_state = 128, .external_lex_state = 5}, - [3760] = {.lex_state = 128, .external_lex_state = 5}, - [3761] = {.lex_state = 128, .external_lex_state = 5}, - [3762] = {.lex_state = 128, .external_lex_state = 5}, - [3763] = {.lex_state = 128, .external_lex_state = 5}, - [3764] = {.lex_state = 128, .external_lex_state = 5}, - [3765] = {.lex_state = 128, .external_lex_state = 5}, - [3766] = {.lex_state = 128, .external_lex_state = 2}, - [3767] = {.lex_state = 128, .external_lex_state = 6}, - [3768] = {.lex_state = 128, .external_lex_state = 2}, - [3769] = {.lex_state = 128, .external_lex_state = 5}, - [3770] = {.lex_state = 128, .external_lex_state = 5}, - [3771] = {.lex_state = 128, .external_lex_state = 5}, - [3772] = {.lex_state = 18, .external_lex_state = 8}, - [3773] = {.lex_state = 128, .external_lex_state = 5}, - [3774] = {.lex_state = 128, .external_lex_state = 2}, - [3775] = {.lex_state = 128, .external_lex_state = 2}, - [3776] = {.lex_state = 8, .external_lex_state = 2}, - [3777] = {.lex_state = 128, .external_lex_state = 2}, - [3778] = {.lex_state = 128, .external_lex_state = 2}, - [3779] = {.lex_state = 128, .external_lex_state = 2}, - [3780] = {.lex_state = 128, .external_lex_state = 5}, - [3781] = {.lex_state = 128, .external_lex_state = 2}, - [3782] = {.lex_state = 128, .external_lex_state = 2}, - [3783] = {.lex_state = 128, .external_lex_state = 6}, - [3784] = {.lex_state = 128, .external_lex_state = 2}, - [3785] = {.lex_state = 128, .external_lex_state = 2}, - [3786] = {.lex_state = 128, .external_lex_state = 6}, - [3787] = {.lex_state = 20, .external_lex_state = 2}, - [3788] = {.lex_state = 128, .external_lex_state = 6}, - [3789] = {.lex_state = 128, .external_lex_state = 6}, - [3790] = {.lex_state = 128, .external_lex_state = 2}, - [3791] = {.lex_state = 128, .external_lex_state = 2}, - [3792] = {.lex_state = 128, .external_lex_state = 2}, - [3793] = {.lex_state = 128, .external_lex_state = 2}, - [3794] = {.lex_state = 18, .external_lex_state = 8}, - [3795] = {.lex_state = 128, .external_lex_state = 2}, - [3796] = {.lex_state = 20, .external_lex_state = 2}, - [3797] = {.lex_state = 20, .external_lex_state = 2}, - [3798] = {.lex_state = 128, .external_lex_state = 2}, - [3799] = {.lex_state = 128, .external_lex_state = 2}, - [3800] = {.lex_state = 128, .external_lex_state = 2}, - [3801] = {.lex_state = 128, .external_lex_state = 2}, - [3802] = {.lex_state = 128, .external_lex_state = 2}, - [3803] = {.lex_state = 128, .external_lex_state = 2}, - [3804] = {.lex_state = 128, .external_lex_state = 2}, - [3805] = {.lex_state = 128, .external_lex_state = 2}, - [3806] = {.lex_state = 128, .external_lex_state = 2}, - [3807] = {.lex_state = 8, .external_lex_state = 2}, - [3808] = {.lex_state = 128, .external_lex_state = 6}, - [3809] = {.lex_state = 128, .external_lex_state = 2}, - [3810] = {.lex_state = 128, .external_lex_state = 6}, - [3811] = {.lex_state = 128, .external_lex_state = 6}, - [3812] = {.lex_state = 18, .external_lex_state = 8}, - [3813] = {.lex_state = 128, .external_lex_state = 2}, - [3814] = {.lex_state = 128, .external_lex_state = 2}, - [3815] = {.lex_state = 128, .external_lex_state = 5}, - [3816] = {.lex_state = 128, .external_lex_state = 2}, - [3817] = {.lex_state = 128, .external_lex_state = 6}, - [3818] = {.lex_state = 128, .external_lex_state = 5}, - [3819] = {.lex_state = 18, .external_lex_state = 8}, - [3820] = {.lex_state = 128, .external_lex_state = 5}, - [3821] = {.lex_state = 20, .external_lex_state = 2}, - [3822] = {.lex_state = 128, .external_lex_state = 2}, - [3823] = {.lex_state = 128, .external_lex_state = 6}, - [3824] = {.lex_state = 128, .external_lex_state = 5}, - [3825] = {.lex_state = 11, .external_lex_state = 2}, - [3826] = {.lex_state = 128, .external_lex_state = 2}, - [3827] = {.lex_state = 128, .external_lex_state = 2}, - [3828] = {.lex_state = 128, .external_lex_state = 5}, - [3829] = {.lex_state = 128, .external_lex_state = 2}, - [3830] = {.lex_state = 128, .external_lex_state = 5}, - [3831] = {.lex_state = 128, .external_lex_state = 5}, - [3832] = {.lex_state = 128, .external_lex_state = 5}, - [3833] = {.lex_state = 128, .external_lex_state = 2}, - [3834] = {.lex_state = 128, .external_lex_state = 2}, - [3835] = {.lex_state = 128, .external_lex_state = 5}, - [3836] = {.lex_state = 128, .external_lex_state = 5}, - [3837] = {.lex_state = 11, .external_lex_state = 2}, - [3838] = {.lex_state = 128, .external_lex_state = 2}, - [3839] = {.lex_state = 128, .external_lex_state = 6}, - [3840] = {.lex_state = 128, .external_lex_state = 2}, - [3841] = {.lex_state = 128, .external_lex_state = 2}, - [3842] = {.lex_state = 128, .external_lex_state = 2}, - [3843] = {.lex_state = 128, .external_lex_state = 6}, - [3844] = {.lex_state = 128, .external_lex_state = 5}, - [3845] = {.lex_state = 20, .external_lex_state = 2}, - [3846] = {.lex_state = 128, .external_lex_state = 2}, - [3847] = {.lex_state = 128, .external_lex_state = 6}, - [3848] = {.lex_state = 128, .external_lex_state = 2}, - [3849] = {.lex_state = 128, .external_lex_state = 2}, - [3850] = {.lex_state = 128, .external_lex_state = 2}, - [3851] = {.lex_state = 128, .external_lex_state = 2}, - [3852] = {.lex_state = 128, .external_lex_state = 2}, - [3853] = {.lex_state = 128, .external_lex_state = 2}, - [3854] = {.lex_state = 128, .external_lex_state = 2}, - [3855] = {.lex_state = 128, .external_lex_state = 5}, - [3856] = {.lex_state = 128, .external_lex_state = 6}, - [3857] = {.lex_state = 128, .external_lex_state = 2}, - [3858] = {.lex_state = 128, .external_lex_state = 2}, - [3859] = {.lex_state = 128, .external_lex_state = 2}, - [3860] = {.lex_state = 128, .external_lex_state = 2}, - [3861] = {.lex_state = 128, .external_lex_state = 2}, - [3862] = {.lex_state = 128, .external_lex_state = 2}, - [3863] = {.lex_state = 128, .external_lex_state = 2}, - [3864] = {.lex_state = 128, .external_lex_state = 2}, - [3865] = {.lex_state = 128, .external_lex_state = 2}, - [3866] = {.lex_state = 128, .external_lex_state = 2}, - [3867] = {.lex_state = 128, .external_lex_state = 2}, - [3868] = {.lex_state = 128, .external_lex_state = 2}, - [3869] = {.lex_state = 128, .external_lex_state = 2}, - [3870] = {.lex_state = 128, .external_lex_state = 2}, - [3871] = {.lex_state = 128, .external_lex_state = 5}, - [3872] = {.lex_state = 128, .external_lex_state = 2}, - [3873] = {.lex_state = 128, .external_lex_state = 2}, - [3874] = {.lex_state = 128, .external_lex_state = 2}, - [3875] = {.lex_state = 128, .external_lex_state = 2}, - [3876] = {.lex_state = 128, .external_lex_state = 5}, - [3877] = {.lex_state = 128, .external_lex_state = 2}, - [3878] = {.lex_state = 128, .external_lex_state = 5}, - [3879] = {.lex_state = 128, .external_lex_state = 2}, - [3880] = {.lex_state = 128, .external_lex_state = 2}, - [3881] = {.lex_state = 128, .external_lex_state = 6}, - [3882] = {.lex_state = 128, .external_lex_state = 6}, - [3883] = {.lex_state = 128, .external_lex_state = 2}, - [3884] = {.lex_state = 128, .external_lex_state = 2}, - [3885] = {.lex_state = 128, .external_lex_state = 5}, - [3886] = {.lex_state = 128, .external_lex_state = 5}, - [3887] = {.lex_state = 128, .external_lex_state = 2}, - [3888] = {.lex_state = 128, .external_lex_state = 2}, - [3889] = {.lex_state = 128, .external_lex_state = 5}, - [3890] = {.lex_state = 128, .external_lex_state = 2}, - [3891] = {.lex_state = 128, .external_lex_state = 2}, - [3892] = {.lex_state = 128, .external_lex_state = 2}, - [3893] = {.lex_state = 128, .external_lex_state = 2}, - [3894] = {.lex_state = 128, .external_lex_state = 2}, - [3895] = {.lex_state = 18, .external_lex_state = 8}, - [3896] = {.lex_state = 128, .external_lex_state = 5}, - [3897] = {.lex_state = 128, .external_lex_state = 6}, - [3898] = {.lex_state = 128, .external_lex_state = 2}, - [3899] = {.lex_state = 128, .external_lex_state = 6}, - [3900] = {.lex_state = 128, .external_lex_state = 6}, - [3901] = {.lex_state = 128, .external_lex_state = 6}, - [3902] = {.lex_state = 128, .external_lex_state = 2}, - [3903] = {.lex_state = 128, .external_lex_state = 5}, - [3904] = {.lex_state = 128, .external_lex_state = 6}, - [3905] = {.lex_state = 128, .external_lex_state = 2}, - [3906] = {.lex_state = 128, .external_lex_state = 5}, - [3907] = {.lex_state = 128, .external_lex_state = 2}, - [3908] = {.lex_state = 128, .external_lex_state = 2}, - [3909] = {.lex_state = 128, .external_lex_state = 2}, - [3910] = {.lex_state = 128, .external_lex_state = 2}, - [3911] = {.lex_state = 128, .external_lex_state = 2}, - [3912] = {.lex_state = 128, .external_lex_state = 6}, - [3913] = {.lex_state = 128, .external_lex_state = 6}, - [3914] = {.lex_state = 128, .external_lex_state = 2}, - [3915] = {.lex_state = 128, .external_lex_state = 6}, - [3916] = {.lex_state = 128, .external_lex_state = 2}, - [3917] = {.lex_state = 128, .external_lex_state = 2}, - [3918] = {.lex_state = 128, .external_lex_state = 6}, - [3919] = {.lex_state = 128, .external_lex_state = 2}, - [3920] = {.lex_state = 128, .external_lex_state = 5}, - [3921] = {.lex_state = 128, .external_lex_state = 6}, - [3922] = {.lex_state = 128, .external_lex_state = 2}, - [3923] = {.lex_state = 128, .external_lex_state = 5}, - [3924] = {.lex_state = 128, .external_lex_state = 2}, - [3925] = {.lex_state = 128, .external_lex_state = 5}, - [3926] = {.lex_state = 128, .external_lex_state = 2}, - [3927] = {.lex_state = 128, .external_lex_state = 5}, - [3928] = {.lex_state = 18, .external_lex_state = 7}, - [3929] = {.lex_state = 128, .external_lex_state = 5}, - [3930] = {.lex_state = 128, .external_lex_state = 5}, - [3931] = {.lex_state = 128, .external_lex_state = 2}, - [3932] = {.lex_state = 128, .external_lex_state = 5}, - [3933] = {.lex_state = 128, .external_lex_state = 5}, - [3934] = {.lex_state = 128, .external_lex_state = 5}, - [3935] = {.lex_state = 128, .external_lex_state = 5}, - [3936] = {.lex_state = 18, .external_lex_state = 7}, - [3937] = {.lex_state = 128, .external_lex_state = 5}, - [3938] = {.lex_state = 128, .external_lex_state = 5}, - [3939] = {.lex_state = 128, .external_lex_state = 5}, - [3940] = {.lex_state = 128, .external_lex_state = 5}, - [3941] = {.lex_state = 128, .external_lex_state = 5}, - [3942] = {.lex_state = 18, .external_lex_state = 7}, - [3943] = {.lex_state = 128, .external_lex_state = 5}, - [3944] = {.lex_state = 128, .external_lex_state = 5}, - [3945] = {.lex_state = 128, .external_lex_state = 5}, - [3946] = {.lex_state = 128, .external_lex_state = 2}, - [3947] = {.lex_state = 128, .external_lex_state = 5}, - [3948] = {.lex_state = 128, .external_lex_state = 2}, - [3949] = {.lex_state = 128, .external_lex_state = 5}, - [3950] = {.lex_state = 128, .external_lex_state = 5}, - [3951] = {.lex_state = 18, .external_lex_state = 7}, - [3952] = {.lex_state = 128, .external_lex_state = 5}, - [3953] = {.lex_state = 20, .external_lex_state = 2}, - [3954] = {.lex_state = 128, .external_lex_state = 5}, - [3955] = {.lex_state = 128, .external_lex_state = 5}, - [3956] = {.lex_state = 128, .external_lex_state = 5}, - [3957] = {.lex_state = 128, .external_lex_state = 5}, - [3958] = {.lex_state = 128, .external_lex_state = 6}, - [3959] = {.lex_state = 128, .external_lex_state = 6}, - [3960] = {.lex_state = 128, .external_lex_state = 6}, - [3961] = {.lex_state = 128, .external_lex_state = 5}, - [3962] = {.lex_state = 128, .external_lex_state = 5}, - [3963] = {.lex_state = 128, .external_lex_state = 5}, - [3964] = {.lex_state = 128, .external_lex_state = 5}, - [3965] = {.lex_state = 128, .external_lex_state = 5}, - [3966] = {.lex_state = 128, .external_lex_state = 5}, - [3967] = {.lex_state = 128, .external_lex_state = 5}, - [3968] = {.lex_state = 128, .external_lex_state = 5}, - [3969] = {.lex_state = 128, .external_lex_state = 5}, - [3970] = {.lex_state = 128, .external_lex_state = 5}, - [3971] = {.lex_state = 128, .external_lex_state = 5}, - [3972] = {.lex_state = 128, .external_lex_state = 2}, - [3973] = {.lex_state = 128, .external_lex_state = 5}, - [3974] = {.lex_state = 128, .external_lex_state = 5}, - [3975] = {.lex_state = 128, .external_lex_state = 5}, - [3976] = {.lex_state = 128, .external_lex_state = 5}, - [3977] = {.lex_state = 128, .external_lex_state = 5}, - [3978] = {.lex_state = 128, .external_lex_state = 2}, - [3979] = {.lex_state = 128, .external_lex_state = 2}, - [3980] = {.lex_state = 128, .external_lex_state = 5}, - [3981] = {.lex_state = 128, .external_lex_state = 5}, - [3982] = {.lex_state = 128, .external_lex_state = 5}, - [3983] = {.lex_state = 128, .external_lex_state = 5}, - [3984] = {.lex_state = 128, .external_lex_state = 5}, - [3985] = {.lex_state = 128, .external_lex_state = 5}, - [3986] = {.lex_state = 128, .external_lex_state = 5}, - [3987] = {.lex_state = 128, .external_lex_state = 5}, - [3988] = {.lex_state = 128, .external_lex_state = 5}, - [3989] = {.lex_state = 128, .external_lex_state = 5}, - [3990] = {.lex_state = 128, .external_lex_state = 5}, - [3991] = {.lex_state = 128, .external_lex_state = 2}, - [3992] = {.lex_state = 128, .external_lex_state = 2}, - [3993] = {.lex_state = 11, .external_lex_state = 2}, - [3994] = {.lex_state = 128, .external_lex_state = 5}, - [3995] = {.lex_state = 128, .external_lex_state = 5}, - [3996] = {.lex_state = 128, .external_lex_state = 2}, - [3997] = {.lex_state = 128, .external_lex_state = 2}, - [3998] = {.lex_state = 18, .external_lex_state = 7}, - [3999] = {.lex_state = 18, .external_lex_state = 9}, - [4000] = {.lex_state = 128, .external_lex_state = 5}, - [4001] = {.lex_state = 128, .external_lex_state = 5}, - [4002] = {.lex_state = 128, .external_lex_state = 6}, - [4003] = {.lex_state = 128, .external_lex_state = 5}, - [4004] = {.lex_state = 128, .external_lex_state = 5}, - [4005] = {.lex_state = 128, .external_lex_state = 2}, - [4006] = {.lex_state = 128, .external_lex_state = 2}, - [4007] = {.lex_state = 128, .external_lex_state = 2}, - [4008] = {.lex_state = 2, .external_lex_state = 2}, - [4009] = {.lex_state = 128, .external_lex_state = 6}, - [4010] = {.lex_state = 128, .external_lex_state = 5}, - [4011] = {.lex_state = 128, .external_lex_state = 5}, - [4012] = {.lex_state = 128, .external_lex_state = 5}, - [4013] = {.lex_state = 128, .external_lex_state = 5}, - [4014] = {.lex_state = 128, .external_lex_state = 5}, - [4015] = {.lex_state = 128, .external_lex_state = 5}, - [4016] = {.lex_state = 128, .external_lex_state = 5}, - [4017] = {.lex_state = 128, .external_lex_state = 5}, - [4018] = {.lex_state = 128, .external_lex_state = 5}, - [4019] = {.lex_state = 128, .external_lex_state = 2}, - [4020] = {.lex_state = 128, .external_lex_state = 2}, - [4021] = {.lex_state = 128, .external_lex_state = 6}, - [4022] = {.lex_state = 20, .external_lex_state = 2}, - [4023] = {.lex_state = 128, .external_lex_state = 5}, - [4024] = {.lex_state = 128, .external_lex_state = 5}, - [4025] = {.lex_state = 128, .external_lex_state = 5}, - [4026] = {.lex_state = 18, .external_lex_state = 9}, - [4027] = {.lex_state = 128, .external_lex_state = 2}, - [4028] = {.lex_state = 128, .external_lex_state = 5}, - [4029] = {.lex_state = 128, .external_lex_state = 5}, - [4030] = {.lex_state = 128, .external_lex_state = 6}, - [4031] = {.lex_state = 128, .external_lex_state = 5}, - [4032] = {.lex_state = 128, .external_lex_state = 5}, - [4033] = {.lex_state = 128, .external_lex_state = 5}, - [4034] = {.lex_state = 128, .external_lex_state = 5}, - [4035] = {.lex_state = 128, .external_lex_state = 5}, - [4036] = {.lex_state = 128, .external_lex_state = 5}, - [4037] = {.lex_state = 128, .external_lex_state = 2}, - [4038] = {.lex_state = 128, .external_lex_state = 5}, - [4039] = {.lex_state = 128, .external_lex_state = 5}, - [4040] = {.lex_state = 128, .external_lex_state = 2}, - [4041] = {.lex_state = 128, .external_lex_state = 2}, - [4042] = {.lex_state = 128, .external_lex_state = 5}, - [4043] = {.lex_state = 128, .external_lex_state = 6}, - [4044] = {.lex_state = 128, .external_lex_state = 5}, - [4045] = {.lex_state = 128, .external_lex_state = 5}, - [4046] = {.lex_state = 128, .external_lex_state = 5}, - [4047] = {.lex_state = 128, .external_lex_state = 5}, - [4048] = {.lex_state = 128, .external_lex_state = 2}, - [4049] = {.lex_state = 128, .external_lex_state = 2}, - [4050] = {.lex_state = 128, .external_lex_state = 5}, - [4051] = {.lex_state = 128, .external_lex_state = 2}, - [4052] = {.lex_state = 128, .external_lex_state = 5}, - [4053] = {.lex_state = 128, .external_lex_state = 5}, - [4054] = {.lex_state = 128, .external_lex_state = 5}, - [4055] = {.lex_state = 128, .external_lex_state = 5}, - [4056] = {.lex_state = 128, .external_lex_state = 2}, - [4057] = {.lex_state = 128, .external_lex_state = 5}, - [4058] = {.lex_state = 128, .external_lex_state = 5}, - [4059] = {.lex_state = 128, .external_lex_state = 5}, - [4060] = {.lex_state = 128, .external_lex_state = 5}, - [4061] = {.lex_state = 128, .external_lex_state = 5}, - [4062] = {.lex_state = 128, .external_lex_state = 2}, - [4063] = {.lex_state = 20, .external_lex_state = 2}, - [4064] = {.lex_state = 128, .external_lex_state = 2}, - [4065] = {.lex_state = 128, .external_lex_state = 6}, - [4066] = {.lex_state = 128, .external_lex_state = 5}, - [4067] = {.lex_state = 128, .external_lex_state = 5}, - [4068] = {.lex_state = 128, .external_lex_state = 5}, - [4069] = {.lex_state = 128, .external_lex_state = 5}, - [4070] = {.lex_state = 128, .external_lex_state = 2}, - [4071] = {.lex_state = 128, .external_lex_state = 5}, - [4072] = {.lex_state = 128, .external_lex_state = 5}, - [4073] = {.lex_state = 128, .external_lex_state = 5}, - [4074] = {.lex_state = 128, .external_lex_state = 2}, - [4075] = {.lex_state = 128, .external_lex_state = 2}, - [4076] = {.lex_state = 128, .external_lex_state = 2}, - [4077] = {.lex_state = 128, .external_lex_state = 2}, - [4078] = {.lex_state = 128, .external_lex_state = 2}, - [4079] = {.lex_state = 128, .external_lex_state = 5}, - [4080] = {.lex_state = 128, .external_lex_state = 5}, - [4081] = {.lex_state = 128, .external_lex_state = 5}, - [4082] = {.lex_state = 128, .external_lex_state = 5}, - [4083] = {.lex_state = 128, .external_lex_state = 5}, - [4084] = {.lex_state = 128, .external_lex_state = 2}, - [4085] = {.lex_state = 128, .external_lex_state = 5}, - [4086] = {.lex_state = 128, .external_lex_state = 5}, - [4087] = {.lex_state = 128, .external_lex_state = 5}, - [4088] = {.lex_state = 128, .external_lex_state = 2}, - [4089] = {.lex_state = 128, .external_lex_state = 5}, - [4090] = {.lex_state = 128, .external_lex_state = 5}, - [4091] = {.lex_state = 128, .external_lex_state = 5}, - [4092] = {.lex_state = 128, .external_lex_state = 5}, - [4093] = {.lex_state = 128, .external_lex_state = 5}, - [4094] = {.lex_state = 128, .external_lex_state = 5}, - [4095] = {.lex_state = 128, .external_lex_state = 5}, - [4096] = {.lex_state = 128, .external_lex_state = 5}, - [4097] = {.lex_state = 128, .external_lex_state = 5}, - [4098] = {.lex_state = 128, .external_lex_state = 5}, - [4099] = {.lex_state = 128, .external_lex_state = 5}, - [4100] = {.lex_state = 128, .external_lex_state = 5}, - [4101] = {.lex_state = 128, .external_lex_state = 5}, - [4102] = {.lex_state = 128, .external_lex_state = 2}, - [4103] = {.lex_state = 128, .external_lex_state = 5}, - [4104] = {.lex_state = 128, .external_lex_state = 5}, - [4105] = {.lex_state = 128, .external_lex_state = 2}, - [4106] = {.lex_state = 11, .external_lex_state = 2}, - [4107] = {.lex_state = 128, .external_lex_state = 5}, - [4108] = {.lex_state = 18, .external_lex_state = 9}, - [4109] = {.lex_state = 128, .external_lex_state = 6}, - [4110] = {.lex_state = 128, .external_lex_state = 5}, - [4111] = {.lex_state = 128, .external_lex_state = 5}, - [4112] = {.lex_state = 128, .external_lex_state = 5}, - [4113] = {.lex_state = 128, .external_lex_state = 2}, - [4114] = {.lex_state = 128, .external_lex_state = 5}, - [4115] = {.lex_state = 18, .external_lex_state = 9}, - [4116] = {.lex_state = 128, .external_lex_state = 6}, - [4117] = {.lex_state = 128, .external_lex_state = 5}, - [4118] = {.lex_state = 128, .external_lex_state = 5}, - [4119] = {.lex_state = 128, .external_lex_state = 5}, - [4120] = {.lex_state = 128, .external_lex_state = 5}, - [4121] = {.lex_state = 128, .external_lex_state = 5}, - [4122] = {.lex_state = 128, .external_lex_state = 5}, - [4123] = {.lex_state = 128, .external_lex_state = 5}, - [4124] = {.lex_state = 128, .external_lex_state = 5}, - [4125] = {.lex_state = 128, .external_lex_state = 5}, - [4126] = {.lex_state = 128, .external_lex_state = 5}, - [4127] = {.lex_state = 128, .external_lex_state = 5}, - [4128] = {.lex_state = 128, .external_lex_state = 5}, - [4129] = {.lex_state = 128, .external_lex_state = 5}, - [4130] = {.lex_state = 128, .external_lex_state = 5}, - [4131] = {.lex_state = 128, .external_lex_state = 5}, - [4132] = {.lex_state = 128, .external_lex_state = 2}, - [4133] = {.lex_state = 11, .external_lex_state = 2}, - [4134] = {.lex_state = 128, .external_lex_state = 5}, - [4135] = {.lex_state = 128, .external_lex_state = 2}, - [4136] = {.lex_state = 18, .external_lex_state = 9}, - [4137] = {.lex_state = 128, .external_lex_state = 5}, - [4138] = {.lex_state = 128, .external_lex_state = 5}, - [4139] = {.lex_state = 128, .external_lex_state = 5}, - [4140] = {.lex_state = 128, .external_lex_state = 5}, - [4141] = {.lex_state = 128, .external_lex_state = 5}, - [4142] = {.lex_state = 18, .external_lex_state = 9}, - [4143] = {.lex_state = 128, .external_lex_state = 5}, - [4144] = {.lex_state = 128, .external_lex_state = 5}, - [4145] = {.lex_state = 128, .external_lex_state = 5}, - [4146] = {.lex_state = 128, .external_lex_state = 5}, - [4147] = {.lex_state = 128, .external_lex_state = 5}, - [4148] = {.lex_state = 128, .external_lex_state = 5}, - [4149] = {.lex_state = 128, .external_lex_state = 2}, - [4150] = {.lex_state = 128, .external_lex_state = 5}, - [4151] = {.lex_state = 128, .external_lex_state = 2}, - [4152] = {.lex_state = 128, .external_lex_state = 2}, - [4153] = {.lex_state = 128, .external_lex_state = 5}, - [4154] = {.lex_state = 128, .external_lex_state = 2}, - [4155] = {.lex_state = 128, .external_lex_state = 5}, - [4156] = {.lex_state = 128, .external_lex_state = 5}, - [4157] = {.lex_state = 18, .external_lex_state = 9}, - [4158] = {.lex_state = 128, .external_lex_state = 5}, - [4159] = {.lex_state = 128, .external_lex_state = 5}, - [4160] = {.lex_state = 128, .external_lex_state = 5}, - [4161] = {.lex_state = 128, .external_lex_state = 5}, - [4162] = {.lex_state = 18, .external_lex_state = 9}, - [4163] = {.lex_state = 128, .external_lex_state = 5}, - [4164] = {.lex_state = 128, .external_lex_state = 5}, - [4165] = {.lex_state = 128, .external_lex_state = 5}, - [4166] = {.lex_state = 128, .external_lex_state = 5}, - [4167] = {.lex_state = 128, .external_lex_state = 2}, - [4168] = {.lex_state = 128, .external_lex_state = 5}, - [4169] = {.lex_state = 128, .external_lex_state = 5}, - [4170] = {.lex_state = 128, .external_lex_state = 5}, - [4171] = {.lex_state = 128, .external_lex_state = 5}, - [4172] = {.lex_state = 128, .external_lex_state = 5}, - [4173] = {.lex_state = 128, .external_lex_state = 5}, - [4174] = {.lex_state = 18, .external_lex_state = 7}, - [4175] = {.lex_state = 18, .external_lex_state = 7}, - [4176] = {.lex_state = 128, .external_lex_state = 5}, - [4177] = {.lex_state = 128, .external_lex_state = 5}, - [4178] = {.lex_state = 128, .external_lex_state = 5}, - [4179] = {.lex_state = 128, .external_lex_state = 5}, - [4180] = {.lex_state = 128, .external_lex_state = 5}, - [4181] = {.lex_state = 128, .external_lex_state = 2}, - [4182] = {.lex_state = 128, .external_lex_state = 5}, - [4183] = {.lex_state = 128, .external_lex_state = 5}, - [4184] = {.lex_state = 128, .external_lex_state = 5}, - [4185] = {.lex_state = 128, .external_lex_state = 2}, - [4186] = {.lex_state = 128, .external_lex_state = 5}, - [4187] = {.lex_state = 18, .external_lex_state = 7}, - [4188] = {.lex_state = 128, .external_lex_state = 5}, - [4189] = {.lex_state = 128, .external_lex_state = 5}, - [4190] = {.lex_state = 18, .external_lex_state = 7}, - [4191] = {.lex_state = 128, .external_lex_state = 5}, - [4192] = {.lex_state = 128, .external_lex_state = 5}, - [4193] = {.lex_state = 128, .external_lex_state = 2}, - [4194] = {.lex_state = 128, .external_lex_state = 2}, - [4195] = {.lex_state = 18, .external_lex_state = 7}, - [4196] = {.lex_state = 18, .external_lex_state = 7}, - [4197] = {.lex_state = 128, .external_lex_state = 5}, - [4198] = {.lex_state = 128, .external_lex_state = 2}, - [4199] = {.lex_state = 128, .external_lex_state = 5}, - [4200] = {.lex_state = 11, .external_lex_state = 2}, - [4201] = {.lex_state = 128, .external_lex_state = 2}, - [4202] = {.lex_state = 128, .external_lex_state = 5}, - [4203] = {.lex_state = 128, .external_lex_state = 5}, - [4204] = {.lex_state = 128, .external_lex_state = 2}, - [4205] = {.lex_state = 128, .external_lex_state = 5}, - [4206] = {.lex_state = 128, .external_lex_state = 5}, - [4207] = {.lex_state = 128, .external_lex_state = 5}, - [4208] = {.lex_state = 128, .external_lex_state = 5}, - [4209] = {.lex_state = 128, .external_lex_state = 2}, - [4210] = {.lex_state = 128, .external_lex_state = 5}, - [4211] = {.lex_state = 128, .external_lex_state = 2}, - [4212] = {.lex_state = 128, .external_lex_state = 2}, - [4213] = {.lex_state = 128, .external_lex_state = 5}, - [4214] = {.lex_state = 128, .external_lex_state = 2}, - [4215] = {.lex_state = 128, .external_lex_state = 2}, - [4216] = {.lex_state = 128, .external_lex_state = 5}, - [4217] = {.lex_state = 128, .external_lex_state = 5}, - [4218] = {.lex_state = 128, .external_lex_state = 5}, - [4219] = {.lex_state = 128, .external_lex_state = 5}, - [4220] = {.lex_state = 128, .external_lex_state = 5}, - [4221] = {.lex_state = 128, .external_lex_state = 2}, - [4222] = {.lex_state = 128, .external_lex_state = 2}, - [4223] = {.lex_state = 18, .external_lex_state = 9}, - [4224] = {.lex_state = 128, .external_lex_state = 5}, - [4225] = {.lex_state = 128, .external_lex_state = 5}, - [4226] = {.lex_state = 128, .external_lex_state = 5}, - [4227] = {.lex_state = 128, .external_lex_state = 5}, - [4228] = {.lex_state = 128, .external_lex_state = 2}, - [4229] = {.lex_state = 18, .external_lex_state = 7}, - [4230] = {.lex_state = 18, .external_lex_state = 7}, - [4231] = {.lex_state = 18, .external_lex_state = 7}, - [4232] = {.lex_state = 18, .external_lex_state = 7}, - [4233] = {.lex_state = 18, .external_lex_state = 7}, - [4234] = {.lex_state = 18, .external_lex_state = 7}, - [4235] = {.lex_state = 128, .external_lex_state = 5}, - [4236] = {.lex_state = 128, .external_lex_state = 5}, - [4237] = {.lex_state = 128, .external_lex_state = 2}, - [4238] = {.lex_state = 128, .external_lex_state = 5}, - [4239] = {.lex_state = 128, .external_lex_state = 5}, - [4240] = {.lex_state = 18, .external_lex_state = 7}, - [4241] = {.lex_state = 18, .external_lex_state = 7}, - [4242] = {.lex_state = 128, .external_lex_state = 5}, - [4243] = {.lex_state = 128, .external_lex_state = 5}, - [4244] = {.lex_state = 128, .external_lex_state = 2}, - [4245] = {.lex_state = 128, .external_lex_state = 5}, - [4246] = {.lex_state = 128, .external_lex_state = 2}, - [4247] = {.lex_state = 128, .external_lex_state = 2}, - [4248] = {.lex_state = 128, .external_lex_state = 5}, - [4249] = {.lex_state = 128, .external_lex_state = 5}, - [4250] = {.lex_state = 128, .external_lex_state = 5}, - [4251] = {.lex_state = 2, .external_lex_state = 2}, - [4252] = {.lex_state = 128, .external_lex_state = 2}, - [4253] = {.lex_state = 20, .external_lex_state = 2}, - [4254] = {.lex_state = 20, .external_lex_state = 2}, - [4255] = {.lex_state = 18, .external_lex_state = 7}, - [4256] = {.lex_state = 18, .external_lex_state = 7}, - [4257] = {.lex_state = 128, .external_lex_state = 2}, - [4258] = {.lex_state = 128, .external_lex_state = 2}, - [4259] = {.lex_state = 128, .external_lex_state = 5}, - [4260] = {.lex_state = 128, .external_lex_state = 2}, - [4261] = {.lex_state = 128, .external_lex_state = 2}, - [4262] = {.lex_state = 128, .external_lex_state = 5}, - [4263] = {.lex_state = 128, .external_lex_state = 5}, - [4264] = {.lex_state = 128, .external_lex_state = 5}, - [4265] = {.lex_state = 128, .external_lex_state = 5}, - [4266] = {.lex_state = 128, .external_lex_state = 5}, - [4267] = {.lex_state = 128, .external_lex_state = 5}, - [4268] = {.lex_state = 18, .external_lex_state = 7}, - [4269] = {.lex_state = 18, .external_lex_state = 7}, - [4270] = {.lex_state = 128, .external_lex_state = 5}, - [4271] = {.lex_state = 128, .external_lex_state = 5}, - [4272] = {.lex_state = 128, .external_lex_state = 2}, - [4273] = {.lex_state = 128, .external_lex_state = 5}, - [4274] = {.lex_state = 128, .external_lex_state = 5}, - [4275] = {.lex_state = 128, .external_lex_state = 5}, - [4276] = {.lex_state = 128, .external_lex_state = 2}, - [4277] = {.lex_state = 128, .external_lex_state = 5}, - [4278] = {.lex_state = 128, .external_lex_state = 5}, - [4279] = {.lex_state = 128, .external_lex_state = 5}, - [4280] = {.lex_state = 128, .external_lex_state = 2}, - [4281] = {.lex_state = 128, .external_lex_state = 2}, - [4282] = {.lex_state = 128, .external_lex_state = 5}, - [4283] = {.lex_state = 128, .external_lex_state = 5}, - [4284] = {.lex_state = 128, .external_lex_state = 2}, - [4285] = {.lex_state = 128, .external_lex_state = 5}, - [4286] = {.lex_state = 128, .external_lex_state = 5}, - [4287] = {.lex_state = 128, .external_lex_state = 2}, - [4288] = {.lex_state = 128, .external_lex_state = 5}, - [4289] = {.lex_state = 128, .external_lex_state = 2}, - [4290] = {.lex_state = 128, .external_lex_state = 2}, - [4291] = {.lex_state = 128, .external_lex_state = 2}, - [4292] = {.lex_state = 128, .external_lex_state = 2}, - [4293] = {.lex_state = 128, .external_lex_state = 5}, - [4294] = {.lex_state = 128, .external_lex_state = 2}, - [4295] = {.lex_state = 128, .external_lex_state = 5}, - [4296] = {.lex_state = 128, .external_lex_state = 5}, - [4297] = {.lex_state = 128, .external_lex_state = 5}, - [4298] = {.lex_state = 128, .external_lex_state = 5}, - [4299] = {.lex_state = 128, .external_lex_state = 2}, - [4300] = {.lex_state = 128, .external_lex_state = 2}, - [4301] = {.lex_state = 128, .external_lex_state = 2}, - [4302] = {.lex_state = 128, .external_lex_state = 2}, - [4303] = {.lex_state = 128, .external_lex_state = 2}, - [4304] = {.lex_state = 20, .external_lex_state = 2}, - [4305] = {.lex_state = 20, .external_lex_state = 2}, - [4306] = {.lex_state = 128, .external_lex_state = 5}, - [4307] = {.lex_state = 128, .external_lex_state = 5}, - [4308] = {.lex_state = 128, .external_lex_state = 2}, - [4309] = {.lex_state = 128, .external_lex_state = 5}, - [4310] = {.lex_state = 128, .external_lex_state = 2}, - [4311] = {.lex_state = 128, .external_lex_state = 5}, - [4312] = {.lex_state = 7, .external_lex_state = 2}, - [4313] = {.lex_state = 128, .external_lex_state = 5}, - [4314] = {.lex_state = 128, .external_lex_state = 5}, - [4315] = {.lex_state = 20, .external_lex_state = 2}, - [4316] = {.lex_state = 20, .external_lex_state = 2}, - [4317] = {.lex_state = 128, .external_lex_state = 5}, - [4318] = {.lex_state = 128, .external_lex_state = 2}, - [4319] = {.lex_state = 128, .external_lex_state = 5}, - [4320] = {.lex_state = 20, .external_lex_state = 2}, - [4321] = {.lex_state = 20, .external_lex_state = 2}, - [4322] = {.lex_state = 128, .external_lex_state = 5}, - [4323] = {.lex_state = 128, .external_lex_state = 5}, - [4324] = {.lex_state = 128, .external_lex_state = 5}, - [4325] = {.lex_state = 128, .external_lex_state = 5}, - [4326] = {.lex_state = 128, .external_lex_state = 5}, - [4327] = {.lex_state = 128, .external_lex_state = 5}, - [4328] = {.lex_state = 128, .external_lex_state = 5}, - [4329] = {.lex_state = 128, .external_lex_state = 5}, - [4330] = {.lex_state = 128, .external_lex_state = 2}, - [4331] = {.lex_state = 128, .external_lex_state = 5}, - [4332] = {.lex_state = 128, .external_lex_state = 5}, - [4333] = {.lex_state = 128, .external_lex_state = 2}, - [4334] = {.lex_state = 128, .external_lex_state = 5}, - [4335] = {.lex_state = 128, .external_lex_state = 5}, - [4336] = {.lex_state = 128, .external_lex_state = 5}, - [4337] = {.lex_state = 20, .external_lex_state = 2}, - [4338] = {.lex_state = 20, .external_lex_state = 2}, - [4339] = {.lex_state = 20, .external_lex_state = 2}, - [4340] = {.lex_state = 128, .external_lex_state = 5}, - [4341] = {.lex_state = 20, .external_lex_state = 2}, - [4342] = {.lex_state = 20, .external_lex_state = 2}, - [4343] = {.lex_state = 20, .external_lex_state = 2}, - [4344] = {.lex_state = 128, .external_lex_state = 2}, - [4345] = {.lex_state = 128, .external_lex_state = 5}, - [4346] = {.lex_state = 20, .external_lex_state = 2}, - [4347] = {.lex_state = 20, .external_lex_state = 2}, - [4348] = {.lex_state = 128, .external_lex_state = 5}, - [4349] = {.lex_state = 128, .external_lex_state = 2}, - [4350] = {.lex_state = 128, .external_lex_state = 5}, - [4351] = {.lex_state = 128, .external_lex_state = 5}, - [4352] = {.lex_state = 128, .external_lex_state = 5}, - [4353] = {.lex_state = 128, .external_lex_state = 5}, - [4354] = {.lex_state = 128, .external_lex_state = 5}, - [4355] = {.lex_state = 128, .external_lex_state = 5}, - [4356] = {.lex_state = 128, .external_lex_state = 5}, - [4357] = {.lex_state = 128, .external_lex_state = 5}, - [4358] = {.lex_state = 128, .external_lex_state = 5}, - [4359] = {.lex_state = 128, .external_lex_state = 5}, - [4360] = {.lex_state = 128, .external_lex_state = 5}, - [4361] = {.lex_state = 20, .external_lex_state = 2}, - [4362] = {.lex_state = 20, .external_lex_state = 2}, - [4363] = {.lex_state = 128, .external_lex_state = 5}, - [4364] = {.lex_state = 128, .external_lex_state = 2}, - [4365] = {.lex_state = 128, .external_lex_state = 2}, - [4366] = {.lex_state = 128, .external_lex_state = 5}, - [4367] = {.lex_state = 128, .external_lex_state = 2}, - [4368] = {.lex_state = 128, .external_lex_state = 5}, - [4369] = {.lex_state = 128, .external_lex_state = 2}, - [4370] = {.lex_state = 128, .external_lex_state = 5}, - [4371] = {.lex_state = 128, .external_lex_state = 5}, - [4372] = {.lex_state = 128, .external_lex_state = 5}, - [4373] = {.lex_state = 128, .external_lex_state = 5}, - [4374] = {.lex_state = 18, .external_lex_state = 9}, - [4375] = {.lex_state = 128, .external_lex_state = 5}, - [4376] = {.lex_state = 128, .external_lex_state = 5}, - [4377] = {.lex_state = 128, .external_lex_state = 5}, - [4378] = {.lex_state = 128, .external_lex_state = 5}, - [4379] = {.lex_state = 128, .external_lex_state = 2}, - [4380] = {.lex_state = 128, .external_lex_state = 2}, - [4381] = {.lex_state = 128, .external_lex_state = 2}, - [4382] = {.lex_state = 128, .external_lex_state = 5}, - [4383] = {.lex_state = 128, .external_lex_state = 2}, - [4384] = {.lex_state = 128, .external_lex_state = 2}, - [4385] = {.lex_state = 128, .external_lex_state = 2}, - [4386] = {.lex_state = 128, .external_lex_state = 2}, - [4387] = {.lex_state = 128, .external_lex_state = 2}, - [4388] = {.lex_state = 128, .external_lex_state = 6}, - [4389] = {.lex_state = 128, .external_lex_state = 5}, - [4390] = {.lex_state = 128, .external_lex_state = 5}, - [4391] = {.lex_state = 128, .external_lex_state = 5}, - [4392] = {.lex_state = 128, .external_lex_state = 5}, - [4393] = {.lex_state = 128, .external_lex_state = 5}, - [4394] = {.lex_state = 128, .external_lex_state = 5}, - [4395] = {.lex_state = 18, .external_lex_state = 9}, - [4396] = {.lex_state = 128, .external_lex_state = 5}, - [4397] = {.lex_state = 128, .external_lex_state = 5}, - [4398] = {.lex_state = 128, .external_lex_state = 5}, - [4399] = {.lex_state = 128, .external_lex_state = 5}, - [4400] = {.lex_state = 128, .external_lex_state = 5}, - [4401] = {.lex_state = 20, .external_lex_state = 2}, - [4402] = {.lex_state = 128, .external_lex_state = 5}, - [4403] = {.lex_state = 8, .external_lex_state = 2}, - [4404] = {.lex_state = 128, .external_lex_state = 5}, - [4405] = {.lex_state = 128, .external_lex_state = 5}, - [4406] = {.lex_state = 128, .external_lex_state = 5}, - [4407] = {.lex_state = 128, .external_lex_state = 5}, - [4408] = {.lex_state = 128, .external_lex_state = 5}, - [4409] = {.lex_state = 128, .external_lex_state = 2}, - [4410] = {.lex_state = 128, .external_lex_state = 2}, - [4411] = {.lex_state = 128, .external_lex_state = 2}, - [4412] = {.lex_state = 128, .external_lex_state = 2}, - [4413] = {.lex_state = 128, .external_lex_state = 6}, - [4414] = {.lex_state = 128, .external_lex_state = 5}, - [4415] = {.lex_state = 128, .external_lex_state = 5}, - [4416] = {.lex_state = 128, .external_lex_state = 5}, - [4417] = {.lex_state = 18, .external_lex_state = 7}, - [4418] = {.lex_state = 128, .external_lex_state = 5}, - [4419] = {.lex_state = 18, .external_lex_state = 7}, - [4420] = {.lex_state = 128, .external_lex_state = 5}, - [4421] = {.lex_state = 20, .external_lex_state = 2}, - [4422] = {.lex_state = 128, .external_lex_state = 5}, - [4423] = {.lex_state = 128, .external_lex_state = 5}, - [4424] = {.lex_state = 128, .external_lex_state = 2}, - [4425] = {.lex_state = 128, .external_lex_state = 5}, - [4426] = {.lex_state = 128, .external_lex_state = 5}, - [4427] = {.lex_state = 18, .external_lex_state = 7}, - [4428] = {.lex_state = 128, .external_lex_state = 6}, - [4429] = {.lex_state = 8, .external_lex_state = 2}, - [4430] = {.lex_state = 128, .external_lex_state = 5}, - [4431] = {.lex_state = 128, .external_lex_state = 5}, - [4432] = {.lex_state = 8, .external_lex_state = 2}, - [4433] = {.lex_state = 128, .external_lex_state = 5}, - [4434] = {.lex_state = 128, .external_lex_state = 5}, - [4435] = {.lex_state = 128, .external_lex_state = 2}, - [4436] = {.lex_state = 128, .external_lex_state = 5}, - [4437] = {.lex_state = 18, .external_lex_state = 7}, - [4438] = {.lex_state = 128, .external_lex_state = 5}, - [4439] = {.lex_state = 128, .external_lex_state = 5}, - [4440] = {.lex_state = 18, .external_lex_state = 7}, - [4441] = {.lex_state = 128, .external_lex_state = 2}, - [4442] = {.lex_state = 128, .external_lex_state = 5}, - [4443] = {.lex_state = 128, .external_lex_state = 5}, - [4444] = {.lex_state = 128, .external_lex_state = 2}, - [4445] = {.lex_state = 128, .external_lex_state = 5}, - [4446] = {.lex_state = 128, .external_lex_state = 5}, - [4447] = {.lex_state = 128, .external_lex_state = 5}, - [4448] = {.lex_state = 18, .external_lex_state = 7}, - [4449] = {.lex_state = 128, .external_lex_state = 2}, - [4450] = {.lex_state = 128, .external_lex_state = 2}, - [4451] = {.lex_state = 128, .external_lex_state = 5}, - [4452] = {.lex_state = 7, .external_lex_state = 2}, - [4453] = {.lex_state = 128, .external_lex_state = 5}, - [4454] = {.lex_state = 128, .external_lex_state = 5}, - [4455] = {.lex_state = 128, .external_lex_state = 5}, - [4456] = {.lex_state = 128, .external_lex_state = 5}, - [4457] = {.lex_state = 128, .external_lex_state = 2}, - [4458] = {.lex_state = 128, .external_lex_state = 5}, - [4459] = {.lex_state = 128, .external_lex_state = 5}, - [4460] = {.lex_state = 128, .external_lex_state = 2}, - [4461] = {.lex_state = 12, .external_lex_state = 2}, - [4462] = {.lex_state = 14, .external_lex_state = 10}, - [4463] = {.lex_state = 23, .external_lex_state = 10}, - [4464] = {.lex_state = 128, .external_lex_state = 2}, - [4465] = {.lex_state = 128, .external_lex_state = 2}, - [4466] = {.lex_state = 128, .external_lex_state = 2}, - [4467] = {.lex_state = 128, .external_lex_state = 2}, - [4468] = {.lex_state = 128, .external_lex_state = 2}, - [4469] = {.lex_state = 2, .external_lex_state = 2}, - [4470] = {.lex_state = 128, .external_lex_state = 5}, - [4471] = {.lex_state = 128, .external_lex_state = 2}, - [4472] = {.lex_state = 128, .external_lex_state = 5}, - [4473] = {.lex_state = 128, .external_lex_state = 5}, - [4474] = {.lex_state = 128, .external_lex_state = 2}, - [4475] = {.lex_state = 14, .external_lex_state = 10}, - [4476] = {.lex_state = 128, .external_lex_state = 5}, - [4477] = {.lex_state = 128, .external_lex_state = 2}, - [4478] = {.lex_state = 128, .external_lex_state = 5}, - [4479] = {.lex_state = 128, .external_lex_state = 2}, - [4480] = {.lex_state = 128, .external_lex_state = 2}, - [4481] = {.lex_state = 128, .external_lex_state = 2}, - [4482] = {.lex_state = 128, .external_lex_state = 2}, - [4483] = {.lex_state = 128, .external_lex_state = 2}, - [4484] = {.lex_state = 128, .external_lex_state = 5}, - [4485] = {.lex_state = 128, .external_lex_state = 2}, - [4486] = {.lex_state = 128, .external_lex_state = 2}, - [4487] = {.lex_state = 128, .external_lex_state = 5}, - [4488] = {.lex_state = 128, .external_lex_state = 2}, - [4489] = {.lex_state = 128, .external_lex_state = 5}, - [4490] = {.lex_state = 128, .external_lex_state = 2}, - [4491] = {.lex_state = 128, .external_lex_state = 2}, - [4492] = {.lex_state = 128, .external_lex_state = 2}, - [4493] = {.lex_state = 128, .external_lex_state = 2}, - [4494] = {.lex_state = 18, .external_lex_state = 8}, - [4495] = {.lex_state = 128, .external_lex_state = 2}, - [4496] = {.lex_state = 128, .external_lex_state = 5}, - [4497] = {.lex_state = 14, .external_lex_state = 10}, - [4498] = {.lex_state = 23, .external_lex_state = 10}, - [4499] = {.lex_state = 128, .external_lex_state = 2}, - [4500] = {.lex_state = 128, .external_lex_state = 2}, - [4501] = {.lex_state = 14, .external_lex_state = 10}, - [4502] = {.lex_state = 128, .external_lex_state = 2}, - [4503] = {.lex_state = 23, .external_lex_state = 10}, - [4504] = {.lex_state = 128, .external_lex_state = 2}, - [4505] = {.lex_state = 128, .external_lex_state = 2}, - [4506] = {.lex_state = 128, .external_lex_state = 5}, - [4507] = {.lex_state = 23, .external_lex_state = 10}, - [4508] = {.lex_state = 128, .external_lex_state = 2}, - [4509] = {.lex_state = 128, .external_lex_state = 2}, - [4510] = {.lex_state = 128, .external_lex_state = 5}, - [4511] = {.lex_state = 128, .external_lex_state = 2}, - [4512] = {.lex_state = 128, .external_lex_state = 2}, - [4513] = {.lex_state = 128, .external_lex_state = 2}, - [4514] = {.lex_state = 128, .external_lex_state = 2}, - [4515] = {.lex_state = 128, .external_lex_state = 2}, - [4516] = {.lex_state = 128, .external_lex_state = 5}, - [4517] = {.lex_state = 128, .external_lex_state = 5}, - [4518] = {.lex_state = 128, .external_lex_state = 2}, - [4519] = {.lex_state = 128, .external_lex_state = 2}, - [4520] = {.lex_state = 128, .external_lex_state = 2}, - [4521] = {.lex_state = 128, .external_lex_state = 2}, - [4522] = {.lex_state = 12, .external_lex_state = 2}, - [4523] = {.lex_state = 21, .external_lex_state = 2}, - [4524] = {.lex_state = 128, .external_lex_state = 2}, - [4525] = {.lex_state = 128, .external_lex_state = 2}, - [4526] = {.lex_state = 128, .external_lex_state = 6}, - [4527] = {.lex_state = 128, .external_lex_state = 2}, - [4528] = {.lex_state = 2, .external_lex_state = 2}, - [4529] = {.lex_state = 14, .external_lex_state = 10}, - [4530] = {.lex_state = 128, .external_lex_state = 2}, - [4531] = {.lex_state = 128, .external_lex_state = 2}, - [4532] = {.lex_state = 128, .external_lex_state = 2}, - [4533] = {.lex_state = 128, .external_lex_state = 2}, - [4534] = {.lex_state = 7, .external_lex_state = 2}, - [4535] = {.lex_state = 128, .external_lex_state = 2}, - [4536] = {.lex_state = 14, .external_lex_state = 10}, - [4537] = {.lex_state = 128, .external_lex_state = 2}, - [4538] = {.lex_state = 23, .external_lex_state = 10}, - [4539] = {.lex_state = 128, .external_lex_state = 2}, - [4540] = {.lex_state = 128, .external_lex_state = 2}, - [4541] = {.lex_state = 23, .external_lex_state = 10}, - [4542] = {.lex_state = 128, .external_lex_state = 2}, - [4543] = {.lex_state = 128, .external_lex_state = 2}, - [4544] = {.lex_state = 14, .external_lex_state = 10}, - [4545] = {.lex_state = 23, .external_lex_state = 10}, - [4546] = {.lex_state = 14, .external_lex_state = 10}, - [4547] = {.lex_state = 12, .external_lex_state = 2}, - [4548] = {.lex_state = 23, .external_lex_state = 10}, - [4549] = {.lex_state = 128, .external_lex_state = 2}, - [4550] = {.lex_state = 128, .external_lex_state = 2}, - [4551] = {.lex_state = 21, .external_lex_state = 2}, - [4552] = {.lex_state = 128, .external_lex_state = 2}, - [4553] = {.lex_state = 14, .external_lex_state = 10}, - [4554] = {.lex_state = 128, .external_lex_state = 2}, - [4555] = {.lex_state = 128, .external_lex_state = 5}, - [4556] = {.lex_state = 23, .external_lex_state = 10}, - [4557] = {.lex_state = 14, .external_lex_state = 10}, - [4558] = {.lex_state = 23, .external_lex_state = 10}, - [4559] = {.lex_state = 128, .external_lex_state = 2}, - [4560] = {.lex_state = 128, .external_lex_state = 2}, - [4561] = {.lex_state = 18, .external_lex_state = 8}, - [4562] = {.lex_state = 23, .external_lex_state = 10}, - [4563] = {.lex_state = 14, .external_lex_state = 10}, - [4564] = {.lex_state = 128, .external_lex_state = 2}, - [4565] = {.lex_state = 128, .external_lex_state = 2}, - [4566] = {.lex_state = 128, .external_lex_state = 2}, - [4567] = {.lex_state = 14, .external_lex_state = 10}, - [4568] = {.lex_state = 23, .external_lex_state = 10}, - [4569] = {.lex_state = 128, .external_lex_state = 2}, - [4570] = {.lex_state = 128, .external_lex_state = 2}, - [4571] = {.lex_state = 14, .external_lex_state = 10}, - [4572] = {.lex_state = 23, .external_lex_state = 10}, - [4573] = {.lex_state = 128, .external_lex_state = 2}, - [4574] = {.lex_state = 128, .external_lex_state = 2}, - [4575] = {.lex_state = 128, .external_lex_state = 5}, - [4576] = {.lex_state = 128, .external_lex_state = 2}, - [4577] = {.lex_state = 128, .external_lex_state = 2}, - [4578] = {.lex_state = 128, .external_lex_state = 2}, - [4579] = {.lex_state = 128, .external_lex_state = 2}, - [4580] = {.lex_state = 128, .external_lex_state = 2}, - [4581] = {.lex_state = 23, .external_lex_state = 10}, - [4582] = {.lex_state = 128, .external_lex_state = 2}, - [4583] = {.lex_state = 128, .external_lex_state = 2}, - [4584] = {.lex_state = 128, .external_lex_state = 5}, - [4585] = {.lex_state = 21, .external_lex_state = 2}, - [4586] = {.lex_state = 7, .external_lex_state = 2}, - [4587] = {.lex_state = 128, .external_lex_state = 5}, - [4588] = {.lex_state = 14, .external_lex_state = 10}, - [4589] = {.lex_state = 128, .external_lex_state = 2}, - [4590] = {.lex_state = 128, .external_lex_state = 2}, - [4591] = {.lex_state = 23, .external_lex_state = 10}, - [4592] = {.lex_state = 128, .external_lex_state = 2}, - [4593] = {.lex_state = 128, .external_lex_state = 2}, - [4594] = {.lex_state = 128, .external_lex_state = 2}, - [4595] = {.lex_state = 128, .external_lex_state = 2}, - [4596] = {.lex_state = 128, .external_lex_state = 2}, - [4597] = {.lex_state = 128, .external_lex_state = 2}, - [4598] = {.lex_state = 2, .external_lex_state = 2}, - [4599] = {.lex_state = 128, .external_lex_state = 2}, - [4600] = {.lex_state = 128, .external_lex_state = 2}, - [4601] = {.lex_state = 2, .external_lex_state = 2}, - [4602] = {.lex_state = 2, .external_lex_state = 2}, - [4603] = {.lex_state = 128, .external_lex_state = 2}, - [4604] = {.lex_state = 14, .external_lex_state = 10}, - [4605] = {.lex_state = 128, .external_lex_state = 5}, - [4606] = {.lex_state = 128, .external_lex_state = 2}, - [4607] = {.lex_state = 128, .external_lex_state = 2}, - [4608] = {.lex_state = 128, .external_lex_state = 2}, - [4609] = {.lex_state = 128, .external_lex_state = 2}, - [4610] = {.lex_state = 128, .external_lex_state = 2}, - [4611] = {.lex_state = 128, .external_lex_state = 5}, - [4612] = {.lex_state = 128, .external_lex_state = 2}, - [4613] = {.lex_state = 128, .external_lex_state = 5}, - [4614] = {.lex_state = 128, .external_lex_state = 5}, - [4615] = {.lex_state = 128, .external_lex_state = 2}, - [4616] = {.lex_state = 128, .external_lex_state = 5}, - [4617] = {.lex_state = 128, .external_lex_state = 2}, - [4618] = {.lex_state = 128, .external_lex_state = 2}, - [4619] = {.lex_state = 128, .external_lex_state = 2}, - [4620] = {.lex_state = 128, .external_lex_state = 2}, - [4621] = {.lex_state = 128, .external_lex_state = 5}, - [4622] = {.lex_state = 128, .external_lex_state = 2}, - [4623] = {.lex_state = 128, .external_lex_state = 5}, - [4624] = {.lex_state = 128, .external_lex_state = 2}, - [4625] = {.lex_state = 128, .external_lex_state = 2}, - [4626] = {.lex_state = 128, .external_lex_state = 5}, - [4627] = {.lex_state = 128, .external_lex_state = 5}, - [4628] = {.lex_state = 128, .external_lex_state = 5}, - [4629] = {.lex_state = 128, .external_lex_state = 2}, - [4630] = {.lex_state = 128, .external_lex_state = 5}, - [4631] = {.lex_state = 128, .external_lex_state = 5}, - [4632] = {.lex_state = 128, .external_lex_state = 5}, - [4633] = {.lex_state = 128, .external_lex_state = 2}, - [4634] = {.lex_state = 128, .external_lex_state = 5}, - [4635] = {.lex_state = 128, .external_lex_state = 5}, - [4636] = {.lex_state = 128, .external_lex_state = 5}, - [4637] = {.lex_state = 128, .external_lex_state = 5}, - [4638] = {.lex_state = 128, .external_lex_state = 5}, - [4639] = {.lex_state = 128, .external_lex_state = 5}, - [4640] = {.lex_state = 128, .external_lex_state = 2}, - [4641] = {.lex_state = 128, .external_lex_state = 2}, - [4642] = {.lex_state = 128, .external_lex_state = 2}, - [4643] = {.lex_state = 128, .external_lex_state = 5}, - [4644] = {.lex_state = 128, .external_lex_state = 5}, - [4645] = {.lex_state = 128, .external_lex_state = 5}, - [4646] = {.lex_state = 128, .external_lex_state = 2}, - [4647] = {.lex_state = 128, .external_lex_state = 5}, - [4648] = {.lex_state = 128, .external_lex_state = 2}, - [4649] = {.lex_state = 128, .external_lex_state = 2}, - [4650] = {.lex_state = 128, .external_lex_state = 2}, - [4651] = {.lex_state = 128, .external_lex_state = 5}, - [4652] = {.lex_state = 128, .external_lex_state = 2}, - [4653] = {.lex_state = 128, .external_lex_state = 5}, - [4654] = {.lex_state = 128, .external_lex_state = 2}, - [4655] = {.lex_state = 128, .external_lex_state = 2}, - [4656] = {.lex_state = 128, .external_lex_state = 5}, - [4657] = {.lex_state = 128, .external_lex_state = 2}, - [4658] = {.lex_state = 128, .external_lex_state = 2}, - [4659] = {.lex_state = 128, .external_lex_state = 2}, - [4660] = {.lex_state = 128, .external_lex_state = 5}, - [4661] = {.lex_state = 128, .external_lex_state = 5}, - [4662] = {.lex_state = 128, .external_lex_state = 5}, - [4663] = {.lex_state = 128, .external_lex_state = 2}, - [4664] = {.lex_state = 128, .external_lex_state = 5}, - [4665] = {.lex_state = 128, .external_lex_state = 2}, - [4666] = {.lex_state = 128, .external_lex_state = 2}, - [4667] = {.lex_state = 2, .external_lex_state = 2}, - [4668] = {.lex_state = 128, .external_lex_state = 5}, - [4669] = {.lex_state = 128, .external_lex_state = 5}, - [4670] = {.lex_state = 128, .external_lex_state = 5}, - [4671] = {.lex_state = 128, .external_lex_state = 5}, - [4672] = {.lex_state = 2, .external_lex_state = 2}, - [4673] = {.lex_state = 128, .external_lex_state = 2}, - [4674] = {.lex_state = 128, .external_lex_state = 2}, - [4675] = {.lex_state = 128, .external_lex_state = 2}, - [4676] = {.lex_state = 128, .external_lex_state = 2}, - [4677] = {.lex_state = 128, .external_lex_state = 5}, - [4678] = {.lex_state = 128, .external_lex_state = 2}, - [4679] = {.lex_state = 128, .external_lex_state = 5}, - [4680] = {.lex_state = 128, .external_lex_state = 5}, - [4681] = {.lex_state = 128, .external_lex_state = 5}, - [4682] = {.lex_state = 128, .external_lex_state = 2}, - [4683] = {.lex_state = 128, .external_lex_state = 2}, - [4684] = {.lex_state = 128, .external_lex_state = 2}, - [4685] = {.lex_state = 128, .external_lex_state = 5}, - [4686] = {.lex_state = 128, .external_lex_state = 2}, - [4687] = {.lex_state = 128, .external_lex_state = 2}, - [4688] = {.lex_state = 128, .external_lex_state = 5}, - [4689] = {.lex_state = 128, .external_lex_state = 5}, - [4690] = {.lex_state = 128, .external_lex_state = 2}, - [4691] = {.lex_state = 128, .external_lex_state = 2}, - [4692] = {.lex_state = 128, .external_lex_state = 2}, - [4693] = {.lex_state = 128, .external_lex_state = 2}, - [4694] = {.lex_state = 128, .external_lex_state = 5}, - [4695] = {.lex_state = 128, .external_lex_state = 2}, - [4696] = {.lex_state = 128, .external_lex_state = 5}, - [4697] = {.lex_state = 128, .external_lex_state = 5}, - [4698] = {.lex_state = 128, .external_lex_state = 5}, - [4699] = {.lex_state = 128, .external_lex_state = 5}, - [4700] = {.lex_state = 128, .external_lex_state = 5}, - [4701] = {.lex_state = 128, .external_lex_state = 5}, - [4702] = {.lex_state = 128, .external_lex_state = 5}, - [4703] = {.lex_state = 128, .external_lex_state = 5}, - [4704] = {.lex_state = 128, .external_lex_state = 5}, - [4705] = {.lex_state = 128, .external_lex_state = 5}, - [4706] = {.lex_state = 128, .external_lex_state = 5}, - [4707] = {.lex_state = 128, .external_lex_state = 2}, - [4708] = {.lex_state = 128, .external_lex_state = 2}, - [4709] = {.lex_state = 128, .external_lex_state = 5}, - [4710] = {.lex_state = 128, .external_lex_state = 5}, - [4711] = {.lex_state = 128, .external_lex_state = 2}, - [4712] = {.lex_state = 128, .external_lex_state = 5}, - [4713] = {.lex_state = 128, .external_lex_state = 2}, - [4714] = {.lex_state = 128, .external_lex_state = 2}, - [4715] = {.lex_state = 128, .external_lex_state = 2}, - [4716] = {.lex_state = 128, .external_lex_state = 5}, - [4717] = {.lex_state = 128, .external_lex_state = 5}, - [4718] = {.lex_state = 128, .external_lex_state = 2}, - [4719] = {.lex_state = 128, .external_lex_state = 5}, - [4720] = {.lex_state = 128, .external_lex_state = 5}, - [4721] = {.lex_state = 128, .external_lex_state = 2}, - [4722] = {.lex_state = 128, .external_lex_state = 5}, - [4723] = {.lex_state = 128, .external_lex_state = 2}, - [4724] = {.lex_state = 128, .external_lex_state = 2}, - [4725] = {.lex_state = 128, .external_lex_state = 5}, - [4726] = {.lex_state = 128, .external_lex_state = 2}, - [4727] = {.lex_state = 128, .external_lex_state = 5}, - [4728] = {.lex_state = 128, .external_lex_state = 5}, - [4729] = {.lex_state = 128, .external_lex_state = 2}, - [4730] = {.lex_state = 128, .external_lex_state = 5}, - [4731] = {.lex_state = 128, .external_lex_state = 2}, - [4732] = {.lex_state = 128, .external_lex_state = 5}, - [4733] = {.lex_state = 128, .external_lex_state = 5}, - [4734] = {.lex_state = 128, .external_lex_state = 5}, - [4735] = {.lex_state = 128, .external_lex_state = 5}, - [4736] = {.lex_state = 128, .external_lex_state = 5}, - [4737] = {.lex_state = 128, .external_lex_state = 5}, - [4738] = {.lex_state = 128, .external_lex_state = 5}, - [4739] = {.lex_state = 128, .external_lex_state = 5}, - [4740] = {.lex_state = 128, .external_lex_state = 5}, - [4741] = {.lex_state = 128, .external_lex_state = 5}, - [4742] = {.lex_state = 128, .external_lex_state = 5}, - [4743] = {.lex_state = 128, .external_lex_state = 2}, - [4744] = {.lex_state = 128, .external_lex_state = 5}, - [4745] = {.lex_state = 128, .external_lex_state = 5}, - [4746] = {.lex_state = 128, .external_lex_state = 5}, - [4747] = {.lex_state = 128, .external_lex_state = 5}, - [4748] = {.lex_state = 128, .external_lex_state = 5}, - [4749] = {.lex_state = 128, .external_lex_state = 2}, - [4750] = {.lex_state = 128, .external_lex_state = 2}, - [4751] = {.lex_state = 128, .external_lex_state = 5}, - [4752] = {.lex_state = 128, .external_lex_state = 5}, - [4753] = {.lex_state = 128, .external_lex_state = 2}, - [4754] = {.lex_state = 128, .external_lex_state = 5}, - [4755] = {.lex_state = 128, .external_lex_state = 5}, - [4756] = {.lex_state = 128, .external_lex_state = 5}, - [4757] = {.lex_state = 128, .external_lex_state = 5}, - [4758] = {.lex_state = 128, .external_lex_state = 5}, - [4759] = {.lex_state = 128, .external_lex_state = 5}, - [4760] = {.lex_state = 128, .external_lex_state = 2}, - [4761] = {.lex_state = 128, .external_lex_state = 2}, - [4762] = {.lex_state = 128, .external_lex_state = 5}, - [4763] = {.lex_state = 128, .external_lex_state = 5}, - [4764] = {.lex_state = 128, .external_lex_state = 2}, - [4765] = {.lex_state = 128, .external_lex_state = 5}, - [4766] = {.lex_state = 128, .external_lex_state = 5}, - [4767] = {.lex_state = 128, .external_lex_state = 5}, - [4768] = {.lex_state = 128, .external_lex_state = 2}, - [4769] = {.lex_state = 128, .external_lex_state = 2}, - [4770] = {.lex_state = 128, .external_lex_state = 5}, - [4771] = {.lex_state = 128, .external_lex_state = 5}, - [4772] = {.lex_state = 128, .external_lex_state = 5}, - [4773] = {.lex_state = 128, .external_lex_state = 5}, - [4774] = {.lex_state = 128, .external_lex_state = 5}, - [4775] = {.lex_state = 128, .external_lex_state = 5}, - [4776] = {.lex_state = 128, .external_lex_state = 5}, - [4777] = {.lex_state = 128, .external_lex_state = 5}, - [4778] = {.lex_state = 128, .external_lex_state = 5}, - [4779] = {.lex_state = 128, .external_lex_state = 5}, - [4780] = {.lex_state = 128, .external_lex_state = 5}, - [4781] = {.lex_state = 128, .external_lex_state = 5}, - [4782] = {.lex_state = 128, .external_lex_state = 5}, - [4783] = {.lex_state = 128, .external_lex_state = 2}, - [4784] = {.lex_state = 128, .external_lex_state = 2}, - [4785] = {.lex_state = 128, .external_lex_state = 5}, - [4786] = {.lex_state = 128, .external_lex_state = 2}, - [4787] = {.lex_state = 128, .external_lex_state = 2}, - [4788] = {.lex_state = 128, .external_lex_state = 2}, - [4789] = {.lex_state = 128, .external_lex_state = 2}, - [4790] = {.lex_state = 128, .external_lex_state = 5}, - [4791] = {.lex_state = 128, .external_lex_state = 2}, - [4792] = {.lex_state = 128, .external_lex_state = 5}, - [4793] = {.lex_state = 128, .external_lex_state = 2}, - [4794] = {.lex_state = 128, .external_lex_state = 5}, - [4795] = {.lex_state = 128, .external_lex_state = 5}, - [4796] = {.lex_state = 128, .external_lex_state = 5}, - [4797] = {.lex_state = 128, .external_lex_state = 5}, - [4798] = {.lex_state = 128, .external_lex_state = 5}, - [4799] = {.lex_state = 128, .external_lex_state = 5}, - [4800] = {.lex_state = 128, .external_lex_state = 2}, - [4801] = {.lex_state = 128, .external_lex_state = 2}, - [4802] = {.lex_state = 128, .external_lex_state = 5}, - [4803] = {.lex_state = 128, .external_lex_state = 5}, - [4804] = {.lex_state = 128, .external_lex_state = 5}, - [4805] = {.lex_state = 128, .external_lex_state = 2}, - [4806] = {.lex_state = 128, .external_lex_state = 5}, - [4807] = {.lex_state = 2, .external_lex_state = 2}, - [4808] = {.lex_state = 128, .external_lex_state = 5}, - [4809] = {.lex_state = 128, .external_lex_state = 2}, - [4810] = {.lex_state = 128, .external_lex_state = 5}, - [4811] = {.lex_state = 128, .external_lex_state = 5}, - [4812] = {.lex_state = 128, .external_lex_state = 5}, - [4813] = {.lex_state = 128, .external_lex_state = 5}, - [4814] = {.lex_state = 128, .external_lex_state = 5}, - [4815] = {.lex_state = 128, .external_lex_state = 2}, - [4816] = {.lex_state = 128, .external_lex_state = 5}, - [4817] = {.lex_state = 128, .external_lex_state = 2}, - [4818] = {.lex_state = 128, .external_lex_state = 5}, - [4819] = {.lex_state = 128, .external_lex_state = 2}, - [4820] = {.lex_state = 128, .external_lex_state = 5}, - [4821] = {.lex_state = 2, .external_lex_state = 2}, - [4822] = {.lex_state = 128, .external_lex_state = 5}, - [4823] = {.lex_state = 128, .external_lex_state = 2}, - [4824] = {.lex_state = 128, .external_lex_state = 5}, - [4825] = {.lex_state = 128, .external_lex_state = 5}, - [4826] = {.lex_state = 128, .external_lex_state = 2}, - [4827] = {.lex_state = 128, .external_lex_state = 5}, - [4828] = {.lex_state = 128, .external_lex_state = 2}, - [4829] = {.lex_state = 128, .external_lex_state = 5}, - [4830] = {.lex_state = 128, .external_lex_state = 2}, - [4831] = {.lex_state = 128, .external_lex_state = 5}, - [4832] = {.lex_state = 128, .external_lex_state = 5}, - [4833] = {.lex_state = 128, .external_lex_state = 2}, - [4834] = {.lex_state = 128, .external_lex_state = 2}, - [4835] = {.lex_state = 128, .external_lex_state = 2}, - [4836] = {.lex_state = 128, .external_lex_state = 5}, - [4837] = {.lex_state = 128, .external_lex_state = 5}, - [4838] = {.lex_state = 128, .external_lex_state = 5}, - [4839] = {.lex_state = 128, .external_lex_state = 5}, - [4840] = {.lex_state = 128, .external_lex_state = 5}, - [4841] = {.lex_state = 128, .external_lex_state = 2}, - [4842] = {.lex_state = 128, .external_lex_state = 5}, - [4843] = {.lex_state = 128, .external_lex_state = 5}, - [4844] = {.lex_state = 128, .external_lex_state = 2}, - [4845] = {.lex_state = 128, .external_lex_state = 5}, - [4846] = {.lex_state = 128, .external_lex_state = 5}, - [4847] = {.lex_state = 128, .external_lex_state = 2}, - [4848] = {.lex_state = 128, .external_lex_state = 2}, - [4849] = {.lex_state = 128, .external_lex_state = 2}, - [4850] = {.lex_state = 128, .external_lex_state = 5}, - [4851] = {.lex_state = 128, .external_lex_state = 5}, - [4852] = {.lex_state = 128, .external_lex_state = 5}, - [4853] = {.lex_state = 128, .external_lex_state = 5}, - [4854] = {.lex_state = 128, .external_lex_state = 5}, - [4855] = {.lex_state = 128, .external_lex_state = 2}, - [4856] = {.lex_state = 128, .external_lex_state = 5}, - [4857] = {.lex_state = 128, .external_lex_state = 5}, - [4858] = {.lex_state = 128, .external_lex_state = 5}, - [4859] = {.lex_state = 128, .external_lex_state = 5}, - [4860] = {.lex_state = 128, .external_lex_state = 5}, - [4861] = {.lex_state = 128, .external_lex_state = 2}, - [4862] = {.lex_state = 128, .external_lex_state = 5}, - [4863] = {.lex_state = 128, .external_lex_state = 5}, - [4864] = {.lex_state = 128, .external_lex_state = 5}, - [4865] = {.lex_state = 128, .external_lex_state = 5}, - [4866] = {.lex_state = 128, .external_lex_state = 5}, - [4867] = {.lex_state = 128, .external_lex_state = 5}, - [4868] = {.lex_state = 128, .external_lex_state = 2}, - [4869] = {.lex_state = 128, .external_lex_state = 5}, - [4870] = {.lex_state = 128, .external_lex_state = 2}, - [4871] = {.lex_state = 128, .external_lex_state = 5}, - [4872] = {.lex_state = 128, .external_lex_state = 5}, - [4873] = {.lex_state = 128, .external_lex_state = 2}, - [4874] = {.lex_state = 128, .external_lex_state = 5}, - [4875] = {.lex_state = 128, .external_lex_state = 5}, - [4876] = {.lex_state = 128, .external_lex_state = 2}, - [4877] = {.lex_state = 128, .external_lex_state = 5}, - [4878] = {.lex_state = 128, .external_lex_state = 5}, - [4879] = {.lex_state = 128, .external_lex_state = 5}, - [4880] = {.lex_state = 128, .external_lex_state = 5}, - [4881] = {.lex_state = 128, .external_lex_state = 2}, - [4882] = {.lex_state = 128, .external_lex_state = 5}, - [4883] = {.lex_state = 128, .external_lex_state = 5}, - [4884] = {.lex_state = 128, .external_lex_state = 5}, - [4885] = {.lex_state = 128, .external_lex_state = 2}, - [4886] = {.lex_state = 128, .external_lex_state = 5}, - [4887] = {.lex_state = 128, .external_lex_state = 2}, - [4888] = {.lex_state = 128, .external_lex_state = 5}, - [4889] = {.lex_state = 128, .external_lex_state = 2}, - [4890] = {.lex_state = 128, .external_lex_state = 5}, - [4891] = {.lex_state = 128, .external_lex_state = 5}, - [4892] = {.lex_state = 128, .external_lex_state = 5}, - [4893] = {.lex_state = 128, .external_lex_state = 5}, - [4894] = {.lex_state = 128, .external_lex_state = 5}, - [4895] = {.lex_state = 128, .external_lex_state = 5}, - [4896] = {.lex_state = 128, .external_lex_state = 5}, - [4897] = {.lex_state = 128, .external_lex_state = 5}, - [4898] = {.lex_state = 128, .external_lex_state = 5}, - [4899] = {.lex_state = 128, .external_lex_state = 5}, - [4900] = {.lex_state = 128, .external_lex_state = 5}, - [4901] = {.lex_state = 128, .external_lex_state = 2}, - [4902] = {.lex_state = 128, .external_lex_state = 5}, - [4903] = {.lex_state = 128, .external_lex_state = 5}, - [4904] = {.lex_state = 128, .external_lex_state = 5}, - [4905] = {.lex_state = 128, .external_lex_state = 5}, - [4906] = {.lex_state = 128, .external_lex_state = 5}, - [4907] = {.lex_state = 128, .external_lex_state = 5}, - [4908] = {.lex_state = 128, .external_lex_state = 5}, - [4909] = {.lex_state = 128, .external_lex_state = 5}, - [4910] = {.lex_state = 128, .external_lex_state = 5}, - [4911] = {.lex_state = 128, .external_lex_state = 5}, - [4912] = {.lex_state = 128, .external_lex_state = 2}, - [4913] = {.lex_state = 128, .external_lex_state = 5}, - [4914] = {.lex_state = 128, .external_lex_state = 5}, - [4915] = {.lex_state = 128, .external_lex_state = 5}, - [4916] = {.lex_state = 128, .external_lex_state = 5}, - [4917] = {.lex_state = 128, .external_lex_state = 5}, - [4918] = {.lex_state = 128, .external_lex_state = 5}, - [4919] = {.lex_state = 128, .external_lex_state = 2}, - [4920] = {.lex_state = 128, .external_lex_state = 5}, - [4921] = {.lex_state = 128, .external_lex_state = 2}, - [4922] = {.lex_state = 128, .external_lex_state = 5}, - [4923] = {.lex_state = 128, .external_lex_state = 2}, - [4924] = {.lex_state = 128, .external_lex_state = 2}, - [4925] = {.lex_state = 2, .external_lex_state = 2}, - [4926] = {.lex_state = 128, .external_lex_state = 5}, - [4927] = {.lex_state = 128, .external_lex_state = 5}, - [4928] = {.lex_state = 128, .external_lex_state = 5}, - [4929] = {.lex_state = 128, .external_lex_state = 5}, - [4930] = {.lex_state = 128, .external_lex_state = 5}, - [4931] = {.lex_state = 128, .external_lex_state = 5}, - [4932] = {.lex_state = 128, .external_lex_state = 5}, - [4933] = {.lex_state = 128, .external_lex_state = 5}, - [4934] = {.lex_state = 128, .external_lex_state = 5}, - [4935] = {.lex_state = 128, .external_lex_state = 2}, - [4936] = {.lex_state = 128, .external_lex_state = 5}, - [4937] = {.lex_state = 128, .external_lex_state = 5}, - [4938] = {.lex_state = 128, .external_lex_state = 5}, - [4939] = {.lex_state = 128, .external_lex_state = 5}, - [4940] = {.lex_state = 128, .external_lex_state = 5}, - [4941] = {.lex_state = 128, .external_lex_state = 5}, - [4942] = {.lex_state = 128, .external_lex_state = 2}, - [4943] = {.lex_state = 128, .external_lex_state = 2}, - [4944] = {.lex_state = 128, .external_lex_state = 2}, - [4945] = {.lex_state = 128, .external_lex_state = 5}, - [4946] = {.lex_state = 128, .external_lex_state = 5}, - [4947] = {.lex_state = 128, .external_lex_state = 5}, - [4948] = {.lex_state = 128, .external_lex_state = 5}, - [4949] = {.lex_state = 128, .external_lex_state = 5}, - [4950] = {.lex_state = 128, .external_lex_state = 5}, - [4951] = {.lex_state = 128, .external_lex_state = 5}, - [4952] = {.lex_state = 128, .external_lex_state = 5}, - [4953] = {.lex_state = 128, .external_lex_state = 5}, - [4954] = {.lex_state = 128, .external_lex_state = 5}, - [4955] = {.lex_state = 128, .external_lex_state = 5}, - [4956] = {.lex_state = 128, .external_lex_state = 5}, - [4957] = {.lex_state = 128, .external_lex_state = 5}, - [4958] = {.lex_state = 128, .external_lex_state = 2}, - [4959] = {.lex_state = 128, .external_lex_state = 5}, - [4960] = {.lex_state = 128, .external_lex_state = 5}, - [4961] = {.lex_state = 128, .external_lex_state = 5}, - [4962] = {.lex_state = 128, .external_lex_state = 5}, - [4963] = {.lex_state = 128, .external_lex_state = 5}, - [4964] = {.lex_state = 128, .external_lex_state = 5}, - [4965] = {.lex_state = 128, .external_lex_state = 5}, - [4966] = {.lex_state = 128, .external_lex_state = 5}, - [4967] = {.lex_state = 128, .external_lex_state = 5}, - [4968] = {.lex_state = 128, .external_lex_state = 5}, - [4969] = {.lex_state = 128, .external_lex_state = 5}, - [4970] = {.lex_state = 128, .external_lex_state = 5}, - [4971] = {.lex_state = 128, .external_lex_state = 5}, - [4972] = {.lex_state = 128, .external_lex_state = 5}, - [4973] = {.lex_state = 128, .external_lex_state = 5}, - [4974] = {.lex_state = 128, .external_lex_state = 5}, - [4975] = {.lex_state = 128, .external_lex_state = 5}, - [4976] = {.lex_state = 128, .external_lex_state = 5}, - [4977] = {.lex_state = 128, .external_lex_state = 5}, - [4978] = {.lex_state = 128, .external_lex_state = 5}, - [4979] = {.lex_state = 128, .external_lex_state = 5}, - [4980] = {.lex_state = 128, .external_lex_state = 5}, - [4981] = {.lex_state = 128, .external_lex_state = 5}, - [4982] = {.lex_state = 128, .external_lex_state = 5}, - [4983] = {.lex_state = 128, .external_lex_state = 5}, - [4984] = {.lex_state = 128, .external_lex_state = 5}, - [4985] = {.lex_state = 128, .external_lex_state = 2}, - [4986] = {.lex_state = 128, .external_lex_state = 5}, - [4987] = {.lex_state = 128, .external_lex_state = 5}, - [4988] = {.lex_state = 128, .external_lex_state = 5}, - [4989] = {.lex_state = 128, .external_lex_state = 5}, - [4990] = {.lex_state = 128, .external_lex_state = 5}, - [4991] = {.lex_state = 128, .external_lex_state = 5}, - [4992] = {.lex_state = 128, .external_lex_state = 5}, - [4993] = {.lex_state = 128, .external_lex_state = 5}, - [4994] = {.lex_state = 128, .external_lex_state = 5}, - [4995] = {.lex_state = 128, .external_lex_state = 5}, - [4996] = {.lex_state = 128, .external_lex_state = 5}, - [4997] = {.lex_state = 128, .external_lex_state = 5}, - [4998] = {.lex_state = 128, .external_lex_state = 5}, - [4999] = {.lex_state = 128, .external_lex_state = 2}, - [5000] = {.lex_state = 128, .external_lex_state = 5}, - [5001] = {.lex_state = 128, .external_lex_state = 5}, - [5002] = {.lex_state = 128, .external_lex_state = 5}, - [5003] = {.lex_state = 128, .external_lex_state = 5}, - [5004] = {.lex_state = 128, .external_lex_state = 5}, - [5005] = {.lex_state = 128, .external_lex_state = 5}, - [5006] = {.lex_state = 128, .external_lex_state = 5}, - [5007] = {.lex_state = 128, .external_lex_state = 5}, - [5008] = {.lex_state = 128, .external_lex_state = 5}, - [5009] = {.lex_state = 128, .external_lex_state = 5}, - [5010] = {.lex_state = 128, .external_lex_state = 5}, - [5011] = {.lex_state = 128, .external_lex_state = 2}, - [5012] = {.lex_state = 128, .external_lex_state = 5}, - [5013] = {.lex_state = 128, .external_lex_state = 5}, - [5014] = {.lex_state = 128, .external_lex_state = 5}, - [5015] = {.lex_state = 128, .external_lex_state = 5}, - [5016] = {.lex_state = 128, .external_lex_state = 5}, - [5017] = {.lex_state = 128, .external_lex_state = 5}, - [5018] = {.lex_state = 128, .external_lex_state = 5}, - [5019] = {.lex_state = 128, .external_lex_state = 5}, - [5020] = {.lex_state = 128, .external_lex_state = 5}, - [5021] = {.lex_state = 128, .external_lex_state = 5}, - [5022] = {.lex_state = 2, .external_lex_state = 2}, - [5023] = {.lex_state = 128, .external_lex_state = 2}, - [5024] = {.lex_state = 2, .external_lex_state = 2}, - [5025] = {.lex_state = 128, .external_lex_state = 5}, - [5026] = {.lex_state = 128, .external_lex_state = 5}, - [5027] = {.lex_state = 128, .external_lex_state = 2}, - [5028] = {.lex_state = 128, .external_lex_state = 5}, - [5029] = {.lex_state = 128, .external_lex_state = 2}, - [5030] = {.lex_state = 128, .external_lex_state = 5}, - [5031] = {.lex_state = 128, .external_lex_state = 5}, - [5032] = {.lex_state = 128, .external_lex_state = 5}, - [5033] = {.lex_state = 128, .external_lex_state = 5}, - [5034] = {.lex_state = 128, .external_lex_state = 5}, - [5035] = {.lex_state = 128, .external_lex_state = 5}, - [5036] = {.lex_state = 128, .external_lex_state = 5}, - [5037] = {.lex_state = 128, .external_lex_state = 5}, - [5038] = {.lex_state = 128, .external_lex_state = 5}, - [5039] = {.lex_state = 128, .external_lex_state = 5}, - [5040] = {.lex_state = 128, .external_lex_state = 5}, - [5041] = {.lex_state = 128, .external_lex_state = 5}, - [5042] = {.lex_state = 128, .external_lex_state = 5}, - [5043] = {.lex_state = 128, .external_lex_state = 5}, - [5044] = {.lex_state = 128, .external_lex_state = 5}, - [5045] = {.lex_state = 128, .external_lex_state = 5}, - [5046] = {.lex_state = 128, .external_lex_state = 5}, - [5047] = {.lex_state = 128, .external_lex_state = 2}, - [5048] = {.lex_state = 128, .external_lex_state = 5}, - [5049] = {.lex_state = 128, .external_lex_state = 5}, - [5050] = {.lex_state = 128, .external_lex_state = 5}, - [5051] = {.lex_state = 128, .external_lex_state = 5}, - [5052] = {.lex_state = 128, .external_lex_state = 5}, - [5053] = {.lex_state = 128, .external_lex_state = 5}, - [5054] = {.lex_state = 128, .external_lex_state = 5}, - [5055] = {.lex_state = 128, .external_lex_state = 5}, - [5056] = {.lex_state = 128, .external_lex_state = 5}, - [5057] = {.lex_state = 128, .external_lex_state = 5}, - [5058] = {.lex_state = 128, .external_lex_state = 5}, - [5059] = {.lex_state = 128, .external_lex_state = 5}, - [5060] = {.lex_state = 128, .external_lex_state = 2}, - [5061] = {.lex_state = 128, .external_lex_state = 2}, - [5062] = {.lex_state = 128, .external_lex_state = 5}, - [5063] = {.lex_state = 128, .external_lex_state = 5}, - [5064] = {.lex_state = 128, .external_lex_state = 5}, - [5065] = {.lex_state = 128, .external_lex_state = 5}, - [5066] = {.lex_state = 128, .external_lex_state = 2}, - [5067] = {.lex_state = 128, .external_lex_state = 5}, - [5068] = {.lex_state = 128, .external_lex_state = 5}, - [5069] = {.lex_state = 2, .external_lex_state = 2}, - [5070] = {.lex_state = 128, .external_lex_state = 5}, - [5071] = {.lex_state = 2, .external_lex_state = 2}, - [5072] = {.lex_state = 128, .external_lex_state = 2}, - [5073] = {.lex_state = 128, .external_lex_state = 5}, - [5074] = {.lex_state = 128, .external_lex_state = 5}, - [5075] = {.lex_state = 128, .external_lex_state = 5}, - [5076] = {.lex_state = 128, .external_lex_state = 5}, - [5077] = {.lex_state = 128, .external_lex_state = 2}, - [5078] = {.lex_state = 128, .external_lex_state = 5}, - [5079] = {.lex_state = 128, .external_lex_state = 5}, - [5080] = {.lex_state = 128, .external_lex_state = 5}, - [5081] = {.lex_state = 128, .external_lex_state = 5}, - [5082] = {.lex_state = 128, .external_lex_state = 5}, - [5083] = {.lex_state = 128, .external_lex_state = 2}, - [5084] = {.lex_state = 128, .external_lex_state = 5}, - [5085] = {.lex_state = 128, .external_lex_state = 5}, - [5086] = {.lex_state = 128, .external_lex_state = 5}, - [5087] = {.lex_state = 128, .external_lex_state = 5}, - [5088] = {.lex_state = 128, .external_lex_state = 2}, - [5089] = {.lex_state = 128, .external_lex_state = 2}, - [5090] = {.lex_state = 128, .external_lex_state = 5}, - [5091] = {.lex_state = 128, .external_lex_state = 5}, - [5092] = {.lex_state = 128, .external_lex_state = 5}, - [5093] = {.lex_state = 128, .external_lex_state = 2}, - [5094] = {.lex_state = 128, .external_lex_state = 2}, - [5095] = {.lex_state = 128, .external_lex_state = 2}, - [5096] = {.lex_state = 128, .external_lex_state = 5}, - [5097] = {.lex_state = 128, .external_lex_state = 5}, - [5098] = {.lex_state = 128, .external_lex_state = 5}, - [5099] = {.lex_state = 128, .external_lex_state = 2}, - [5100] = {.lex_state = 128, .external_lex_state = 2}, - [5101] = {.lex_state = 128, .external_lex_state = 2}, - [5102] = {.lex_state = 128, .external_lex_state = 5}, - [5103] = {.lex_state = 128, .external_lex_state = 5}, - [5104] = {.lex_state = 128, .external_lex_state = 2}, - [5105] = {.lex_state = 128, .external_lex_state = 5}, - [5106] = {.lex_state = 128, .external_lex_state = 2}, - [5107] = {.lex_state = 18, .external_lex_state = 9}, - [5108] = {.lex_state = 128, .external_lex_state = 5}, - [5109] = {.lex_state = 128, .external_lex_state = 2}, - [5110] = {.lex_state = 128, .external_lex_state = 5}, - [5111] = {.lex_state = 128, .external_lex_state = 2}, - [5112] = {.lex_state = 128, .external_lex_state = 2}, - [5113] = {.lex_state = 128, .external_lex_state = 5}, - [5114] = {.lex_state = 128, .external_lex_state = 5}, - [5115] = {.lex_state = 128, .external_lex_state = 2}, - [5116] = {.lex_state = 128, .external_lex_state = 2}, - [5117] = {.lex_state = 128, .external_lex_state = 5}, - [5118] = {.lex_state = 128, .external_lex_state = 5}, - [5119] = {.lex_state = 128, .external_lex_state = 2}, - [5120] = {.lex_state = 128, .external_lex_state = 5}, - [5121] = {.lex_state = 128, .external_lex_state = 5}, - [5122] = {.lex_state = 128, .external_lex_state = 5}, - [5123] = {.lex_state = 128, .external_lex_state = 5}, - [5124] = {.lex_state = 2, .external_lex_state = 2}, - [5125] = {.lex_state = 128, .external_lex_state = 5}, - [5126] = {.lex_state = 128, .external_lex_state = 5}, - [5127] = {.lex_state = 128, .external_lex_state = 5}, - [5128] = {.lex_state = 128, .external_lex_state = 5}, - [5129] = {.lex_state = 128, .external_lex_state = 2}, - [5130] = {.lex_state = 128, .external_lex_state = 5}, - [5131] = {.lex_state = 128, .external_lex_state = 2}, - [5132] = {.lex_state = 128, .external_lex_state = 2}, - [5133] = {.lex_state = 128, .external_lex_state = 2}, - [5134] = {.lex_state = 128, .external_lex_state = 2}, - [5135] = {.lex_state = 128, .external_lex_state = 5}, - [5136] = {.lex_state = 128, .external_lex_state = 2}, - [5137] = {.lex_state = 128, .external_lex_state = 2}, - [5138] = {.lex_state = 128, .external_lex_state = 5}, - [5139] = {.lex_state = 128, .external_lex_state = 2}, - [5140] = {.lex_state = 128, .external_lex_state = 2}, - [5141] = {.lex_state = 128, .external_lex_state = 2}, - [5142] = {.lex_state = 128, .external_lex_state = 5}, - [5143] = {.lex_state = 2, .external_lex_state = 2}, - [5144] = {.lex_state = 128, .external_lex_state = 5}, - [5145] = {.lex_state = 128, .external_lex_state = 5}, - [5146] = {.lex_state = 128, .external_lex_state = 5}, - [5147] = {.lex_state = 128, .external_lex_state = 5}, - [5148] = {.lex_state = 128, .external_lex_state = 5}, - [5149] = {.lex_state = 2, .external_lex_state = 2}, - [5150] = {.lex_state = 128, .external_lex_state = 5}, - [5151] = {.lex_state = 128, .external_lex_state = 5}, - [5152] = {.lex_state = 128, .external_lex_state = 5}, - [5153] = {.lex_state = 128, .external_lex_state = 2}, - [5154] = {.lex_state = 128, .external_lex_state = 5}, - [5155] = {.lex_state = 128, .external_lex_state = 5}, - [5156] = {.lex_state = 128, .external_lex_state = 5}, - [5157] = {.lex_state = 128, .external_lex_state = 5}, - [5158] = {.lex_state = 128, .external_lex_state = 5}, - [5159] = {.lex_state = 128, .external_lex_state = 5}, - [5160] = {.lex_state = 128, .external_lex_state = 5}, - [5161] = {.lex_state = 128, .external_lex_state = 2}, - [5162] = {.lex_state = 128, .external_lex_state = 2}, - [5163] = {.lex_state = 128, .external_lex_state = 5}, - [5164] = {.lex_state = 128, .external_lex_state = 5}, - [5165] = {.lex_state = 128, .external_lex_state = 5}, - [5166] = {.lex_state = 128, .external_lex_state = 2}, - [5167] = {.lex_state = 128, .external_lex_state = 2}, - [5168] = {.lex_state = 128, .external_lex_state = 2}, - [5169] = {.lex_state = 128, .external_lex_state = 5}, - [5170] = {.lex_state = 128, .external_lex_state = 5}, - [5171] = {.lex_state = 128, .external_lex_state = 5}, - [5172] = {.lex_state = 128, .external_lex_state = 5}, - [5173] = {.lex_state = 128, .external_lex_state = 5}, - [5174] = {.lex_state = 128, .external_lex_state = 2}, - [5175] = {.lex_state = 128, .external_lex_state = 2}, - [5176] = {.lex_state = 128, .external_lex_state = 5}, - [5177] = {.lex_state = 128, .external_lex_state = 2}, - [5178] = {.lex_state = 128, .external_lex_state = 2}, - [5179] = {.lex_state = 128, .external_lex_state = 2}, - [5180] = {.lex_state = 128, .external_lex_state = 2}, - [5181] = {.lex_state = 128, .external_lex_state = 5}, - [5182] = {.lex_state = 128, .external_lex_state = 5}, - [5183] = {.lex_state = 128, .external_lex_state = 2}, - [5184] = {.lex_state = 128, .external_lex_state = 5}, - [5185] = {.lex_state = 128, .external_lex_state = 5}, - [5186] = {.lex_state = 128, .external_lex_state = 5}, - [5187] = {.lex_state = 128, .external_lex_state = 5}, - [5188] = {.lex_state = 128, .external_lex_state = 2}, - [5189] = {.lex_state = 128, .external_lex_state = 5}, - [5190] = {.lex_state = 128, .external_lex_state = 5}, - [5191] = {.lex_state = 128, .external_lex_state = 2}, - [5192] = {.lex_state = 128, .external_lex_state = 2}, - [5193] = {.lex_state = 128, .external_lex_state = 5}, - [5194] = {.lex_state = 128, .external_lex_state = 2}, - [5195] = {.lex_state = 128, .external_lex_state = 5}, - [5196] = {.lex_state = 128, .external_lex_state = 5}, - [5197] = {.lex_state = 128, .external_lex_state = 2}, - [5198] = {.lex_state = 128, .external_lex_state = 5}, - [5199] = {.lex_state = 128, .external_lex_state = 5}, - [5200] = {.lex_state = 128, .external_lex_state = 5}, - [5201] = {.lex_state = 128, .external_lex_state = 2}, - [5202] = {.lex_state = 128, .external_lex_state = 5}, - [5203] = {.lex_state = 128, .external_lex_state = 5}, - [5204] = {.lex_state = 128, .external_lex_state = 5}, - [5205] = {.lex_state = 128, .external_lex_state = 5}, - [5206] = {.lex_state = 128, .external_lex_state = 5}, - [5207] = {.lex_state = 128, .external_lex_state = 2}, - [5208] = {.lex_state = 128, .external_lex_state = 5}, - [5209] = {.lex_state = 128, .external_lex_state = 2}, - [5210] = {.lex_state = 128, .external_lex_state = 5}, - [5211] = {.lex_state = 128, .external_lex_state = 2}, - [5212] = {.lex_state = 128, .external_lex_state = 5}, - [5213] = {.lex_state = 128, .external_lex_state = 5}, - [5214] = {.lex_state = 128, .external_lex_state = 5}, - [5215] = {.lex_state = 128, .external_lex_state = 5}, - [5216] = {.lex_state = 128, .external_lex_state = 5}, - [5217] = {.lex_state = 2, .external_lex_state = 2}, - [5218] = {.lex_state = 128, .external_lex_state = 5}, - [5219] = {.lex_state = 128, .external_lex_state = 5}, - [5220] = {.lex_state = 128, .external_lex_state = 5}, - [5221] = {.lex_state = 128, .external_lex_state = 2}, - [5222] = {.lex_state = 128, .external_lex_state = 2}, - [5223] = {.lex_state = 128, .external_lex_state = 2}, - [5224] = {.lex_state = 128, .external_lex_state = 2}, - [5225] = {.lex_state = 128, .external_lex_state = 2}, - [5226] = {.lex_state = 128, .external_lex_state = 2}, - [5227] = {.lex_state = 128, .external_lex_state = 2}, - [5228] = {.lex_state = 128, .external_lex_state = 2}, - [5229] = {.lex_state = 128, .external_lex_state = 2}, - [5230] = {.lex_state = 128, .external_lex_state = 2}, - [5231] = {.lex_state = 128, .external_lex_state = 2}, - [5232] = {.lex_state = 128, .external_lex_state = 2}, - [5233] = {.lex_state = 128, .external_lex_state = 2}, - [5234] = {.lex_state = 128, .external_lex_state = 2}, - [5235] = {.lex_state = 128, .external_lex_state = 2}, - [5236] = {.lex_state = 128, .external_lex_state = 5}, - [5237] = {.lex_state = 128, .external_lex_state = 2}, - [5238] = {.lex_state = 128, .external_lex_state = 2}, - [5239] = {.lex_state = 128, .external_lex_state = 2}, - [5240] = {.lex_state = 128, .external_lex_state = 2}, - [5241] = {.lex_state = 128, .external_lex_state = 5}, - [5242] = {.lex_state = 128, .external_lex_state = 2}, - [5243] = {.lex_state = 128, .external_lex_state = 2}, - [5244] = {.lex_state = 128, .external_lex_state = 2}, - [5245] = {.lex_state = 128, .external_lex_state = 2}, - [5246] = {.lex_state = 128, .external_lex_state = 2}, - [5247] = {.lex_state = 128, .external_lex_state = 2}, - [5248] = {.lex_state = 128, .external_lex_state = 2}, - [5249] = {.lex_state = 128, .external_lex_state = 2}, - [5250] = {.lex_state = 128, .external_lex_state = 2}, - [5251] = {.lex_state = 128, .external_lex_state = 2}, - [5252] = {.lex_state = 128, .external_lex_state = 2}, - [5253] = {.lex_state = 128, .external_lex_state = 2}, - [5254] = {.lex_state = 128, .external_lex_state = 2}, - [5255] = {.lex_state = 128, .external_lex_state = 2}, - [5256] = {.lex_state = 128, .external_lex_state = 2}, - [5257] = {.lex_state = 128, .external_lex_state = 2}, - [5258] = {.lex_state = 128, .external_lex_state = 2}, - [5259] = {.lex_state = 128, .external_lex_state = 2}, - [5260] = {.lex_state = 128, .external_lex_state = 2}, - [5261] = {.lex_state = 128, .external_lex_state = 2}, - [5262] = {.lex_state = 128, .external_lex_state = 2}, - [5263] = {.lex_state = 128, .external_lex_state = 2}, - [5264] = {.lex_state = 128, .external_lex_state = 2}, - [5265] = {.lex_state = 128, .external_lex_state = 2}, - [5266] = {.lex_state = 128, .external_lex_state = 2}, - [5267] = {.lex_state = 128, .external_lex_state = 2}, - [5268] = {.lex_state = 128, .external_lex_state = 2}, - [5269] = {.lex_state = 128, .external_lex_state = 2}, - [5270] = {.lex_state = 128, .external_lex_state = 2}, - [5271] = {.lex_state = 128, .external_lex_state = 5}, - [5272] = {.lex_state = 128, .external_lex_state = 2}, - [5273] = {.lex_state = 128, .external_lex_state = 2}, - [5274] = {.lex_state = 128, .external_lex_state = 2}, - [5275] = {.lex_state = 128, .external_lex_state = 2}, - [5276] = {.lex_state = 128, .external_lex_state = 2}, - [5277] = {.lex_state = 128, .external_lex_state = 2}, - [5278] = {.lex_state = 128, .external_lex_state = 2}, - [5279] = {.lex_state = 128, .external_lex_state = 2}, - [5280] = {.lex_state = 128, .external_lex_state = 2}, - [5281] = {.lex_state = 128, .external_lex_state = 2}, - [5282] = {.lex_state = 128, .external_lex_state = 2}, - [5283] = {.lex_state = 128, .external_lex_state = 2}, - [5284] = {.lex_state = 128, .external_lex_state = 2}, - [5285] = {.lex_state = 128, .external_lex_state = 2}, - [5286] = {.lex_state = 128, .external_lex_state = 2}, - [5287] = {.lex_state = 128, .external_lex_state = 2}, - [5288] = {.lex_state = 128, .external_lex_state = 2}, - [5289] = {.lex_state = 128, .external_lex_state = 2}, - [5290] = {.lex_state = 128, .external_lex_state = 2}, - [5291] = {.lex_state = 128, .external_lex_state = 2}, - [5292] = {.lex_state = 128, .external_lex_state = 5}, - [5293] = {.lex_state = 128, .external_lex_state = 2}, - [5294] = {.lex_state = 128, .external_lex_state = 2}, - [5295] = {.lex_state = 128, .external_lex_state = 5}, - [5296] = {.lex_state = 128, .external_lex_state = 5}, - [5297] = {.lex_state = 128, .external_lex_state = 5}, - [5298] = {.lex_state = 128, .external_lex_state = 2}, - [5299] = {.lex_state = 128, .external_lex_state = 2}, - [5300] = {.lex_state = 128, .external_lex_state = 2}, - [5301] = {.lex_state = 128, .external_lex_state = 5}, - [5302] = {.lex_state = 128, .external_lex_state = 2}, - [5303] = {.lex_state = 128, .external_lex_state = 2}, - [5304] = {.lex_state = 128, .external_lex_state = 5}, - [5305] = {.lex_state = 128, .external_lex_state = 2}, - [5306] = {.lex_state = 128, .external_lex_state = 2}, - [5307] = {.lex_state = 128, .external_lex_state = 2}, - [5308] = {.lex_state = 128, .external_lex_state = 2}, - [5309] = {.lex_state = 128, .external_lex_state = 2}, - [5310] = {.lex_state = 128, .external_lex_state = 2}, - [5311] = {.lex_state = 128, .external_lex_state = 2}, - [5312] = {.lex_state = 128, .external_lex_state = 2}, - [5313] = {.lex_state = 128, .external_lex_state = 2}, - [5314] = {.lex_state = 128, .external_lex_state = 2}, - [5315] = {.lex_state = 128, .external_lex_state = 2}, - [5316] = {.lex_state = 128, .external_lex_state = 2}, - [5317] = {.lex_state = 128, .external_lex_state = 2}, - [5318] = {.lex_state = 128, .external_lex_state = 2}, - [5319] = {.lex_state = 128, .external_lex_state = 5}, - [5320] = {.lex_state = 128, .external_lex_state = 2}, - [5321] = {.lex_state = 128, .external_lex_state = 2}, - [5322] = {.lex_state = 128, .external_lex_state = 2}, - [5323] = {.lex_state = 128, .external_lex_state = 2}, - [5324] = {.lex_state = 128, .external_lex_state = 5}, - [5325] = {.lex_state = 128, .external_lex_state = 2}, - [5326] = {.lex_state = 128, .external_lex_state = 2}, - [5327] = {.lex_state = 128, .external_lex_state = 2}, - [5328] = {.lex_state = 128, .external_lex_state = 2}, - [5329] = {.lex_state = 128, .external_lex_state = 2}, - [5330] = {.lex_state = 128, .external_lex_state = 2}, - [5331] = {.lex_state = 128, .external_lex_state = 5}, - [5332] = {.lex_state = 128, .external_lex_state = 2}, - [5333] = {.lex_state = 128, .external_lex_state = 2}, - [5334] = {.lex_state = 128, .external_lex_state = 2}, - [5335] = {.lex_state = 128, .external_lex_state = 2}, - [5336] = {.lex_state = 128, .external_lex_state = 2}, - [5337] = {.lex_state = 128, .external_lex_state = 2}, - [5338] = {.lex_state = 128, .external_lex_state = 2}, - [5339] = {.lex_state = 128, .external_lex_state = 2}, - [5340] = {.lex_state = 128, .external_lex_state = 2}, - [5341] = {.lex_state = 128, .external_lex_state = 5}, - [5342] = {.lex_state = 128, .external_lex_state = 2}, - [5343] = {.lex_state = 128, .external_lex_state = 2}, - [5344] = {.lex_state = 128, .external_lex_state = 2}, - [5345] = {.lex_state = 128, .external_lex_state = 2}, - [5346] = {.lex_state = 128, .external_lex_state = 2}, - [5347] = {.lex_state = 128, .external_lex_state = 2}, - [5348] = {.lex_state = 128, .external_lex_state = 2}, - [5349] = {.lex_state = 128, .external_lex_state = 2}, - [5350] = {.lex_state = 128, .external_lex_state = 5}, - [5351] = {.lex_state = 128, .external_lex_state = 2}, - [5352] = {.lex_state = 128, .external_lex_state = 2}, - [5353] = {.lex_state = 128, .external_lex_state = 5}, - [5354] = {.lex_state = 128, .external_lex_state = 2}, - [5355] = {.lex_state = 128, .external_lex_state = 2}, - [5356] = {.lex_state = 128, .external_lex_state = 2}, - [5357] = {.lex_state = 128, .external_lex_state = 2}, - [5358] = {.lex_state = 128, .external_lex_state = 2}, - [5359] = {.lex_state = 128, .external_lex_state = 2}, - [5360] = {.lex_state = 128, .external_lex_state = 2}, - [5361] = {.lex_state = 128, .external_lex_state = 2}, - [5362] = {.lex_state = 128, .external_lex_state = 2}, - [5363] = {.lex_state = 128, .external_lex_state = 2}, - [5364] = {.lex_state = 128, .external_lex_state = 2}, - [5365] = {.lex_state = 128, .external_lex_state = 2}, - [5366] = {.lex_state = 128, .external_lex_state = 2}, - [5367] = {.lex_state = 128, .external_lex_state = 2}, - [5368] = {.lex_state = 128, .external_lex_state = 2}, - [5369] = {.lex_state = 128, .external_lex_state = 2}, - [5370] = {.lex_state = 128, .external_lex_state = 2}, - [5371] = {.lex_state = 128, .external_lex_state = 2}, - [5372] = {.lex_state = 128, .external_lex_state = 2}, - [5373] = {.lex_state = 128, .external_lex_state = 2}, - [5374] = {.lex_state = 128, .external_lex_state = 2}, - [5375] = {.lex_state = 128, .external_lex_state = 2}, - [5376] = {.lex_state = 128, .external_lex_state = 2}, - [5377] = {.lex_state = 128, .external_lex_state = 2}, - [5378] = {.lex_state = 128, .external_lex_state = 5}, - [5379] = {.lex_state = 128, .external_lex_state = 2}, - [5380] = {.lex_state = 128, .external_lex_state = 2}, - [5381] = {.lex_state = 128, .external_lex_state = 2}, - [5382] = {.lex_state = 128, .external_lex_state = 2}, - [5383] = {.lex_state = 128, .external_lex_state = 2}, - [5384] = {.lex_state = 128, .external_lex_state = 2}, - [5385] = {.lex_state = 128, .external_lex_state = 2}, - [5386] = {.lex_state = 128, .external_lex_state = 2}, - [5387] = {.lex_state = 128, .external_lex_state = 2}, - [5388] = {.lex_state = 128, .external_lex_state = 2}, - [5389] = {.lex_state = 128, .external_lex_state = 5}, - [5390] = {.lex_state = 128, .external_lex_state = 2}, - [5391] = {.lex_state = 128, .external_lex_state = 5}, - [5392] = {.lex_state = 128, .external_lex_state = 2}, - [5393] = {.lex_state = 128, .external_lex_state = 2}, - [5394] = {.lex_state = 128, .external_lex_state = 2}, - [5395] = {.lex_state = 128, .external_lex_state = 2}, - [5396] = {.lex_state = 128, .external_lex_state = 2}, - [5397] = {.lex_state = 128, .external_lex_state = 2}, - [5398] = {.lex_state = 128, .external_lex_state = 2}, - [5399] = {.lex_state = 128, .external_lex_state = 2}, - [5400] = {.lex_state = 128, .external_lex_state = 2}, - [5401] = {.lex_state = 128, .external_lex_state = 2}, - [5402] = {.lex_state = 128, .external_lex_state = 2}, - [5403] = {.lex_state = 128, .external_lex_state = 2}, - [5404] = {.lex_state = 128, .external_lex_state = 2}, - [5405] = {.lex_state = 128, .external_lex_state = 2}, - [5406] = {.lex_state = 128, .external_lex_state = 2}, - [5407] = {.lex_state = 128, .external_lex_state = 2}, - [5408] = {.lex_state = 128, .external_lex_state = 2}, - [5409] = {.lex_state = 128, .external_lex_state = 2}, - [5410] = {.lex_state = 128, .external_lex_state = 2}, - [5411] = {.lex_state = 128, .external_lex_state = 2}, - [5412] = {.lex_state = 128, .external_lex_state = 2}, - [5413] = {.lex_state = 128, .external_lex_state = 2}, - [5414] = {.lex_state = 128, .external_lex_state = 2}, - [5415] = {.lex_state = 128, .external_lex_state = 2}, - [5416] = {.lex_state = 128, .external_lex_state = 2}, - [5417] = {.lex_state = 128, .external_lex_state = 2}, - [5418] = {.lex_state = 128, .external_lex_state = 2}, - [5419] = {.lex_state = 128, .external_lex_state = 2}, - [5420] = {.lex_state = 128, .external_lex_state = 2}, - [5421] = {.lex_state = 128, .external_lex_state = 2}, - [5422] = {.lex_state = 128, .external_lex_state = 2}, - [5423] = {.lex_state = 128, .external_lex_state = 2}, - [5424] = {.lex_state = 128, .external_lex_state = 2}, - [5425] = {.lex_state = 128, .external_lex_state = 2}, - [5426] = {.lex_state = 128, .external_lex_state = 2}, - [5427] = {.lex_state = 128, .external_lex_state = 2}, - [5428] = {.lex_state = 128, .external_lex_state = 2}, - [5429] = {.lex_state = 128, .external_lex_state = 2}, - [5430] = {.lex_state = 128, .external_lex_state = 2}, - [5431] = {.lex_state = 128, .external_lex_state = 2}, - [5432] = {.lex_state = 128, .external_lex_state = 2}, - [5433] = {.lex_state = 128, .external_lex_state = 2}, - [5434] = {.lex_state = 128, .external_lex_state = 2}, - [5435] = {.lex_state = 128, .external_lex_state = 2}, - [5436] = {.lex_state = 128, .external_lex_state = 2}, - [5437] = {.lex_state = 128, .external_lex_state = 2}, - [5438] = {.lex_state = 128, .external_lex_state = 5}, - [5439] = {.lex_state = 128, .external_lex_state = 2}, - [5440] = {.lex_state = 128, .external_lex_state = 5}, - [5441] = {.lex_state = 128, .external_lex_state = 2}, - [5442] = {.lex_state = 128, .external_lex_state = 2}, - [5443] = {.lex_state = 128, .external_lex_state = 2}, - [5444] = {.lex_state = 128, .external_lex_state = 2}, - [5445] = {.lex_state = 128, .external_lex_state = 2}, - [5446] = {.lex_state = 128, .external_lex_state = 2}, - [5447] = {.lex_state = 128, .external_lex_state = 2}, - [5448] = {.lex_state = 128, .external_lex_state = 2}, - [5449] = {.lex_state = 128, .external_lex_state = 2}, - [5450] = {.lex_state = 128, .external_lex_state = 5}, - [5451] = {.lex_state = 128, .external_lex_state = 2}, - [5452] = {.lex_state = 128, .external_lex_state = 2}, - [5453] = {.lex_state = 128, .external_lex_state = 2}, - [5454] = {.lex_state = 128, .external_lex_state = 2}, - [5455] = {.lex_state = 128, .external_lex_state = 2}, - [5456] = {.lex_state = 128, .external_lex_state = 2}, - [5457] = {.lex_state = 128, .external_lex_state = 2}, - [5458] = {.lex_state = 128, .external_lex_state = 2}, - [5459] = {.lex_state = 128, .external_lex_state = 2}, - [5460] = {.lex_state = 128, .external_lex_state = 2}, - [5461] = {.lex_state = 128, .external_lex_state = 2}, - [5462] = {.lex_state = 128, .external_lex_state = 2}, - [5463] = {.lex_state = 128, .external_lex_state = 2}, - [5464] = {.lex_state = 128, .external_lex_state = 2}, - [5465] = {.lex_state = 128, .external_lex_state = 2}, - [5466] = {.lex_state = 128, .external_lex_state = 2}, - [5467] = {.lex_state = 128, .external_lex_state = 5}, - [5468] = {.lex_state = 128, .external_lex_state = 2}, - [5469] = {.lex_state = 128, .external_lex_state = 2}, - [5470] = {.lex_state = 128, .external_lex_state = 2}, - [5471] = {.lex_state = 128, .external_lex_state = 2}, - [5472] = {.lex_state = 128, .external_lex_state = 2}, - [5473] = {.lex_state = 128, .external_lex_state = 2}, - [5474] = {.lex_state = 128, .external_lex_state = 2}, - [5475] = {.lex_state = 128, .external_lex_state = 2}, - [5476] = {.lex_state = 128, .external_lex_state = 2}, - [5477] = {.lex_state = 128, .external_lex_state = 2}, - [5478] = {.lex_state = 128, .external_lex_state = 2}, - [5479] = {.lex_state = 128, .external_lex_state = 2}, - [5480] = {.lex_state = 128, .external_lex_state = 2}, - [5481] = {.lex_state = 128, .external_lex_state = 2}, - [5482] = {.lex_state = 128, .external_lex_state = 2}, - [5483] = {.lex_state = 128, .external_lex_state = 2}, - [5484] = {.lex_state = 128, .external_lex_state = 2}, - [5485] = {.lex_state = 128, .external_lex_state = 2}, - [5486] = {.lex_state = 128, .external_lex_state = 5}, - [5487] = {.lex_state = 128, .external_lex_state = 2}, - [5488] = {.lex_state = 128, .external_lex_state = 2}, - [5489] = {.lex_state = 128, .external_lex_state = 2}, - [5490] = {.lex_state = 128, .external_lex_state = 2}, - [5491] = {.lex_state = 128, .external_lex_state = 2}, - [5492] = {.lex_state = 128, .external_lex_state = 2}, - [5493] = {.lex_state = 128, .external_lex_state = 2}, - [5494] = {.lex_state = 128, .external_lex_state = 2}, - [5495] = {.lex_state = 128, .external_lex_state = 2}, - [5496] = {.lex_state = 128, .external_lex_state = 5}, - [5497] = {.lex_state = 128, .external_lex_state = 2}, - [5498] = {.lex_state = 128, .external_lex_state = 2}, - [5499] = {.lex_state = 128, .external_lex_state = 2}, - [5500] = {.lex_state = 128, .external_lex_state = 2}, - [5501] = {.lex_state = 128, .external_lex_state = 2}, - [5502] = {.lex_state = 128, .external_lex_state = 2}, - [5503] = {.lex_state = 128, .external_lex_state = 2}, - [5504] = {.lex_state = 128, .external_lex_state = 2}, - [5505] = {.lex_state = 128, .external_lex_state = 2}, - [5506] = {.lex_state = 128, .external_lex_state = 2}, - [5507] = {.lex_state = 128, .external_lex_state = 2}, - [5508] = {.lex_state = 128, .external_lex_state = 2}, - [5509] = {.lex_state = 128, .external_lex_state = 2}, - [5510] = {.lex_state = 11, .external_lex_state = 2}, - [5511] = {.lex_state = 128, .external_lex_state = 2}, - [5512] = {.lex_state = 128, .external_lex_state = 2}, - [5513] = {.lex_state = 128, .external_lex_state = 2}, - [5514] = {.lex_state = 128, .external_lex_state = 2}, - [5515] = {.lex_state = 128, .external_lex_state = 2}, - [5516] = {.lex_state = 128, .external_lex_state = 2}, - [5517] = {.lex_state = 128, .external_lex_state = 5}, - [5518] = {.lex_state = 128, .external_lex_state = 2}, - [5519] = {.lex_state = 128, .external_lex_state = 2}, - [5520] = {.lex_state = 128, .external_lex_state = 2}, - [5521] = {.lex_state = 128, .external_lex_state = 5}, - [5522] = {.lex_state = 128, .external_lex_state = 2}, - [5523] = {.lex_state = 128, .external_lex_state = 2}, - [5524] = {.lex_state = 128, .external_lex_state = 2}, - [5525] = {.lex_state = 128, .external_lex_state = 2}, - [5526] = {.lex_state = 128, .external_lex_state = 2}, - [5527] = {.lex_state = 128, .external_lex_state = 2}, - [5528] = {.lex_state = 128, .external_lex_state = 2}, - [5529] = {.lex_state = 128, .external_lex_state = 2}, - [5530] = {.lex_state = 128, .external_lex_state = 2}, - [5531] = {.lex_state = 128, .external_lex_state = 2}, - [5532] = {.lex_state = 128, .external_lex_state = 2}, - [5533] = {.lex_state = 128, .external_lex_state = 5}, - [5534] = {.lex_state = 128, .external_lex_state = 2}, - [5535] = {.lex_state = 128, .external_lex_state = 2}, - [5536] = {.lex_state = 128, .external_lex_state = 2}, - [5537] = {.lex_state = 128, .external_lex_state = 2}, - [5538] = {.lex_state = 128, .external_lex_state = 2}, - [5539] = {.lex_state = 128, .external_lex_state = 2}, - [5540] = {.lex_state = 128, .external_lex_state = 2}, - [5541] = {.lex_state = 128, .external_lex_state = 2}, - [5542] = {.lex_state = 128, .external_lex_state = 2}, - [5543] = {.lex_state = 128, .external_lex_state = 2}, - [5544] = {.lex_state = 128, .external_lex_state = 2}, - [5545] = {.lex_state = 128, .external_lex_state = 2}, - [5546] = {.lex_state = 128, .external_lex_state = 2}, - [5547] = {.lex_state = 128, .external_lex_state = 5}, - [5548] = {.lex_state = 128, .external_lex_state = 2}, - [5549] = {.lex_state = 128, .external_lex_state = 2}, - [5550] = {.lex_state = 128, .external_lex_state = 2}, - [5551] = {.lex_state = 128, .external_lex_state = 2}, - [5552] = {.lex_state = 128, .external_lex_state = 2}, - [5553] = {.lex_state = 128, .external_lex_state = 2}, - [5554] = {.lex_state = 128, .external_lex_state = 2}, - [5555] = {.lex_state = 128, .external_lex_state = 2}, - [5556] = {.lex_state = 128, .external_lex_state = 2}, - [5557] = {.lex_state = 128, .external_lex_state = 2}, - [5558] = {.lex_state = 128, .external_lex_state = 2}, - [5559] = {.lex_state = 128, .external_lex_state = 2}, - [5560] = {.lex_state = 128, .external_lex_state = 2}, - [5561] = {.lex_state = 128, .external_lex_state = 2}, - [5562] = {.lex_state = 128, .external_lex_state = 2}, - [5563] = {.lex_state = 128, .external_lex_state = 2}, - [5564] = {.lex_state = 128, .external_lex_state = 2}, - [5565] = {.lex_state = 128, .external_lex_state = 2}, - [5566] = {.lex_state = 128, .external_lex_state = 2}, - [5567] = {.lex_state = 128, .external_lex_state = 2}, - [5568] = {.lex_state = 128, .external_lex_state = 2}, - [5569] = {.lex_state = 128, .external_lex_state = 2}, - [5570] = {.lex_state = 128, .external_lex_state = 2}, - [5571] = {.lex_state = 128, .external_lex_state = 2}, - [5572] = {.lex_state = 128, .external_lex_state = 2}, - [5573] = {.lex_state = 128, .external_lex_state = 2}, - [5574] = {.lex_state = 128, .external_lex_state = 2}, - [5575] = {.lex_state = 128, .external_lex_state = 2}, - [5576] = {.lex_state = 128, .external_lex_state = 2}, - [5577] = {.lex_state = 128, .external_lex_state = 2}, - [5578] = {.lex_state = 128, .external_lex_state = 2}, - [5579] = {.lex_state = 128, .external_lex_state = 2}, - [5580] = {.lex_state = 128, .external_lex_state = 2}, - [5581] = {.lex_state = 128, .external_lex_state = 2}, - [5582] = {.lex_state = 128, .external_lex_state = 2}, - [5583] = {.lex_state = 128, .external_lex_state = 2}, - [5584] = {.lex_state = 128, .external_lex_state = 2}, - [5585] = {.lex_state = 128, .external_lex_state = 2}, - [5586] = {.lex_state = 128, .external_lex_state = 2}, - [5587] = {.lex_state = 128, .external_lex_state = 2}, - [5588] = {.lex_state = 128, .external_lex_state = 2}, - [5589] = {.lex_state = 128, .external_lex_state = 2}, - [5590] = {.lex_state = 128, .external_lex_state = 2}, - [5591] = {.lex_state = 128, .external_lex_state = 2}, - [5592] = {.lex_state = 128, .external_lex_state = 2}, - [5593] = {.lex_state = 128, .external_lex_state = 2}, - [5594] = {.lex_state = 128, .external_lex_state = 2}, - [5595] = {.lex_state = 128, .external_lex_state = 2}, - [5596] = {.lex_state = 128, .external_lex_state = 2}, - [5597] = {.lex_state = 128, .external_lex_state = 2}, - [5598] = {.lex_state = 128, .external_lex_state = 2}, - [5599] = {.lex_state = 128, .external_lex_state = 2}, - [5600] = {.lex_state = 128, .external_lex_state = 2}, - [5601] = {.lex_state = 128, .external_lex_state = 2}, - [5602] = {.lex_state = 128, .external_lex_state = 2}, - [5603] = {.lex_state = 128, .external_lex_state = 2}, - [5604] = {.lex_state = 128, .external_lex_state = 2}, - [5605] = {.lex_state = 128, .external_lex_state = 2}, - [5606] = {.lex_state = 128, .external_lex_state = 2}, - [5607] = {.lex_state = 128, .external_lex_state = 2}, - [5608] = {.lex_state = 128, .external_lex_state = 2}, - [5609] = {.lex_state = 128, .external_lex_state = 2}, - [5610] = {.lex_state = 128, .external_lex_state = 2}, - [5611] = {.lex_state = 128, .external_lex_state = 2}, - [5612] = {.lex_state = 128, .external_lex_state = 2}, - [5613] = {.lex_state = 128, .external_lex_state = 2}, - [5614] = {.lex_state = 128, .external_lex_state = 2}, - [5615] = {.lex_state = 128, .external_lex_state = 2}, - [5616] = {.lex_state = 128, .external_lex_state = 2}, - [5617] = {.lex_state = 128, .external_lex_state = 2}, - [5618] = {.lex_state = 128, .external_lex_state = 2}, - [5619] = {.lex_state = 128, .external_lex_state = 2}, - [5620] = {.lex_state = 128, .external_lex_state = 2}, - [5621] = {.lex_state = 128, .external_lex_state = 2}, - [5622] = {.lex_state = 128, .external_lex_state = 2}, - [5623] = {.lex_state = 128, .external_lex_state = 2}, - [5624] = {.lex_state = 128, .external_lex_state = 2}, - [5625] = {.lex_state = 128, .external_lex_state = 2}, - [5626] = {.lex_state = 128, .external_lex_state = 2}, - [5627] = {.lex_state = 1, .external_lex_state = 11}, - [5628] = {.lex_state = 128, .external_lex_state = 2}, - [5629] = {.lex_state = 128, .external_lex_state = 2}, - [5630] = {.lex_state = 128, .external_lex_state = 2}, - [5631] = {.lex_state = 128, .external_lex_state = 2}, - [5632] = {.lex_state = 128, .external_lex_state = 2}, - [5633] = {.lex_state = 128, .external_lex_state = 2}, - [5634] = {.lex_state = 128, .external_lex_state = 2}, - [5635] = {.lex_state = 128, .external_lex_state = 2}, - [5636] = {.lex_state = 128, .external_lex_state = 2}, - [5637] = {.lex_state = 128, .external_lex_state = 2}, - [5638] = {.lex_state = 128, .external_lex_state = 2}, - [5639] = {.lex_state = 128, .external_lex_state = 2}, - [5640] = {.lex_state = 128, .external_lex_state = 2}, - [5641] = {.lex_state = 128, .external_lex_state = 2}, - [5642] = {.lex_state = 128, .external_lex_state = 2}, - [5643] = {.lex_state = 128, .external_lex_state = 2}, - [5644] = {.lex_state = 128, .external_lex_state = 2}, - [5645] = {.lex_state = 128, .external_lex_state = 2}, - [5646] = {.lex_state = 128, .external_lex_state = 2}, - [5647] = {.lex_state = 128, .external_lex_state = 2}, - [5648] = {.lex_state = 128, .external_lex_state = 2}, - [5649] = {.lex_state = 128, .external_lex_state = 2}, - [5650] = {.lex_state = 128, .external_lex_state = 2}, - [5651] = {.lex_state = 128, .external_lex_state = 2}, - [5652] = {.lex_state = 128, .external_lex_state = 2}, - [5653] = {.lex_state = 128, .external_lex_state = 2}, - [5654] = {.lex_state = 128, .external_lex_state = 2}, - [5655] = {.lex_state = 128, .external_lex_state = 2}, - [5656] = {.lex_state = 128, .external_lex_state = 2}, - [5657] = {.lex_state = 128, .external_lex_state = 2}, - [5658] = {.lex_state = 128, .external_lex_state = 2}, - [5659] = {.lex_state = 128, .external_lex_state = 2}, - [5660] = {.lex_state = 128, .external_lex_state = 2}, - [5661] = {.lex_state = 128, .external_lex_state = 2}, - [5662] = {.lex_state = 128, .external_lex_state = 2}, - [5663] = {.lex_state = 128, .external_lex_state = 2}, - [5664] = {.lex_state = 128, .external_lex_state = 2}, - [5665] = {.lex_state = 128, .external_lex_state = 2}, - [5666] = {.lex_state = 128, .external_lex_state = 2}, - [5667] = {.lex_state = 128, .external_lex_state = 2}, - [5668] = {.lex_state = 128, .external_lex_state = 2}, - [5669] = {.lex_state = 128, .external_lex_state = 2}, - [5670] = {.lex_state = 128, .external_lex_state = 2}, - [5671] = {.lex_state = 128, .external_lex_state = 2}, - [5672] = {.lex_state = 128, .external_lex_state = 2}, - [5673] = {.lex_state = 128, .external_lex_state = 2}, - [5674] = {.lex_state = 128, .external_lex_state = 2}, - [5675] = {.lex_state = 128, .external_lex_state = 2}, - [5676] = {.lex_state = 128, .external_lex_state = 2}, - [5677] = {.lex_state = 128, .external_lex_state = 2}, - [5678] = {.lex_state = 128, .external_lex_state = 2}, - [5679] = {.lex_state = 128, .external_lex_state = 2}, - [5680] = {.lex_state = 128, .external_lex_state = 2}, - [5681] = {.lex_state = 128, .external_lex_state = 2}, - [5682] = {.lex_state = 128, .external_lex_state = 2}, - [5683] = {.lex_state = 128, .external_lex_state = 2}, - [5684] = {.lex_state = 128, .external_lex_state = 2}, - [5685] = {.lex_state = 128, .external_lex_state = 2}, - [5686] = {.lex_state = 128, .external_lex_state = 2}, - [5687] = {.lex_state = 128, .external_lex_state = 2}, - [5688] = {.lex_state = 128, .external_lex_state = 2}, - [5689] = {.lex_state = 128, .external_lex_state = 2}, - [5690] = {.lex_state = 128, .external_lex_state = 2}, - [5691] = {.lex_state = 128, .external_lex_state = 2}, - [5692] = {.lex_state = 128, .external_lex_state = 2}, - [5693] = {.lex_state = 128, .external_lex_state = 2}, - [5694] = {.lex_state = 128, .external_lex_state = 2}, - [5695] = {.lex_state = 128, .external_lex_state = 2}, - [5696] = {.lex_state = 128, .external_lex_state = 2}, - [5697] = {.lex_state = 128, .external_lex_state = 2}, - [5698] = {.lex_state = 128, .external_lex_state = 2}, - [5699] = {.lex_state = 128, .external_lex_state = 2}, - [5700] = {.lex_state = 128, .external_lex_state = 2}, - [5701] = {.lex_state = 128, .external_lex_state = 2}, - [5702] = {.lex_state = 128, .external_lex_state = 2}, - [5703] = {.lex_state = 128, .external_lex_state = 2}, - [5704] = {.lex_state = 128, .external_lex_state = 2}, - [5705] = {.lex_state = 128, .external_lex_state = 2}, - [5706] = {.lex_state = 128, .external_lex_state = 2}, - [5707] = {.lex_state = 128, .external_lex_state = 2}, - [5708] = {.lex_state = 128, .external_lex_state = 2}, - [5709] = {.lex_state = 128, .external_lex_state = 2}, - [5710] = {.lex_state = 128, .external_lex_state = 2}, - [5711] = {.lex_state = 128, .external_lex_state = 2}, - [5712] = {.lex_state = 128, .external_lex_state = 2}, - [5713] = {.lex_state = 128, .external_lex_state = 2}, - [5714] = {.lex_state = 128, .external_lex_state = 2}, - [5715] = {.lex_state = 128, .external_lex_state = 2}, - [5716] = {.lex_state = 128, .external_lex_state = 2}, - [5717] = {.lex_state = 128, .external_lex_state = 2}, - [5718] = {.lex_state = 128, .external_lex_state = 2}, - [5719] = {.lex_state = 128, .external_lex_state = 2}, - [5720] = {.lex_state = 128, .external_lex_state = 2}, - [5721] = {.lex_state = 128, .external_lex_state = 2}, - [5722] = {.lex_state = 128, .external_lex_state = 2}, - [5723] = {.lex_state = 128, .external_lex_state = 2}, - [5724] = {.lex_state = 128, .external_lex_state = 2}, - [5725] = {.lex_state = 128, .external_lex_state = 2}, - [5726] = {.lex_state = 128, .external_lex_state = 2}, - [5727] = {.lex_state = 128, .external_lex_state = 2}, - [5728] = {.lex_state = 128, .external_lex_state = 2}, - [5729] = {.lex_state = 1, .external_lex_state = 11}, - [5730] = {.lex_state = 128, .external_lex_state = 2}, - [5731] = {.lex_state = 128, .external_lex_state = 2}, - [5732] = {.lex_state = 128, .external_lex_state = 2}, - [5733] = {.lex_state = 128, .external_lex_state = 2}, - [5734] = {.lex_state = 128, .external_lex_state = 2}, - [5735] = {.lex_state = 128, .external_lex_state = 2}, - [5736] = {.lex_state = 128, .external_lex_state = 2}, - [5737] = {.lex_state = 128, .external_lex_state = 2}, - [5738] = {.lex_state = 128, .external_lex_state = 2}, - [5739] = {.lex_state = 128, .external_lex_state = 2}, - [5740] = {.lex_state = 128, .external_lex_state = 2}, - [5741] = {.lex_state = 128, .external_lex_state = 2}, - [5742] = {.lex_state = 128, .external_lex_state = 2}, - [5743] = {.lex_state = 128, .external_lex_state = 2}, - [5744] = {.lex_state = 128, .external_lex_state = 2}, - [5745] = {.lex_state = 128, .external_lex_state = 2}, - [5746] = {.lex_state = 128, .external_lex_state = 2}, - [5747] = {.lex_state = 128, .external_lex_state = 2}, - [5748] = {.lex_state = 128, .external_lex_state = 2}, - [5749] = {.lex_state = 128, .external_lex_state = 2}, - [5750] = {.lex_state = 33, .external_lex_state = 2}, - [5751] = {.lex_state = 128, .external_lex_state = 2}, - [5752] = {.lex_state = 128, .external_lex_state = 2}, - [5753] = {.lex_state = 128, .external_lex_state = 2}, - [5754] = {.lex_state = 128, .external_lex_state = 2}, - [5755] = {.lex_state = 128, .external_lex_state = 2}, - [5756] = {.lex_state = 128, .external_lex_state = 2}, - [5757] = {.lex_state = 128, .external_lex_state = 2}, - [5758] = {.lex_state = 128, .external_lex_state = 2}, - [5759] = {.lex_state = 128, .external_lex_state = 2}, - [5760] = {.lex_state = 128, .external_lex_state = 2}, - [5761] = {.lex_state = 128, .external_lex_state = 2}, - [5762] = {.lex_state = 128, .external_lex_state = 2}, - [5763] = {.lex_state = 128, .external_lex_state = 2}, - [5764] = {.lex_state = 128, .external_lex_state = 2}, - [5765] = {.lex_state = 128, .external_lex_state = 2}, - [5766] = {.lex_state = 128, .external_lex_state = 2}, - [5767] = {.lex_state = 128, .external_lex_state = 2}, - [5768] = {.lex_state = 128, .external_lex_state = 2}, - [5769] = {.lex_state = 128, .external_lex_state = 2}, - [5770] = {.lex_state = 128, .external_lex_state = 2}, - [5771] = {.lex_state = 128, .external_lex_state = 2}, - [5772] = {.lex_state = 128, .external_lex_state = 2}, - [5773] = {.lex_state = 128, .external_lex_state = 2}, - [5774] = {.lex_state = 128, .external_lex_state = 2}, - [5775] = {.lex_state = 128, .external_lex_state = 2}, - [5776] = {.lex_state = 128, .external_lex_state = 2}, - [5777] = {.lex_state = 128, .external_lex_state = 2}, - [5778] = {.lex_state = 128, .external_lex_state = 2}, - [5779] = {.lex_state = 128, .external_lex_state = 2}, - [5780] = {.lex_state = 128, .external_lex_state = 2}, - [5781] = {.lex_state = 128, .external_lex_state = 2}, - [5782] = {.lex_state = 128, .external_lex_state = 2}, - [5783] = {.lex_state = 128, .external_lex_state = 2}, - [5784] = {.lex_state = 128, .external_lex_state = 2}, - [5785] = {.lex_state = 128, .external_lex_state = 2}, - [5786] = {.lex_state = 128, .external_lex_state = 2}, - [5787] = {.lex_state = 128, .external_lex_state = 2}, - [5788] = {.lex_state = 128, .external_lex_state = 2}, - [5789] = {.lex_state = 128, .external_lex_state = 2}, - [5790] = {.lex_state = 128, .external_lex_state = 2}, - [5791] = {.lex_state = 128, .external_lex_state = 2}, - [5792] = {.lex_state = 128, .external_lex_state = 2}, - [5793] = {.lex_state = 128, .external_lex_state = 2}, - [5794] = {.lex_state = 128, .external_lex_state = 2}, - [5795] = {.lex_state = 128, .external_lex_state = 2}, - [5796] = {.lex_state = 128, .external_lex_state = 2}, - [5797] = {.lex_state = 128, .external_lex_state = 2}, - [5798] = {.lex_state = 128, .external_lex_state = 2}, - [5799] = {.lex_state = 1, .external_lex_state = 11}, - [5800] = {.lex_state = 128, .external_lex_state = 2}, - [5801] = {.lex_state = 128, .external_lex_state = 2}, - [5802] = {.lex_state = 128, .external_lex_state = 2}, - [5803] = {.lex_state = 128, .external_lex_state = 2}, - [5804] = {.lex_state = 128, .external_lex_state = 2}, - [5805] = {.lex_state = 128, .external_lex_state = 2}, - [5806] = {.lex_state = 128, .external_lex_state = 2}, - [5807] = {.lex_state = 128, .external_lex_state = 2}, - [5808] = {.lex_state = 128, .external_lex_state = 2}, - [5809] = {.lex_state = 128, .external_lex_state = 2}, - [5810] = {.lex_state = 128, .external_lex_state = 2}, - [5811] = {.lex_state = 128, .external_lex_state = 2}, - [5812] = {.lex_state = 128, .external_lex_state = 2}, - [5813] = {.lex_state = 128, .external_lex_state = 2}, - [5814] = {.lex_state = 128, .external_lex_state = 2}, - [5815] = {.lex_state = 128, .external_lex_state = 2}, - [5816] = {.lex_state = 128, .external_lex_state = 2}, - [5817] = {.lex_state = 128, .external_lex_state = 2}, - [5818] = {.lex_state = 128, .external_lex_state = 2}, - [5819] = {.lex_state = 128, .external_lex_state = 2}, - [5820] = {.lex_state = 128, .external_lex_state = 2}, - [5821] = {.lex_state = 128, .external_lex_state = 2}, - [5822] = {.lex_state = 128, .external_lex_state = 2}, - [5823] = {.lex_state = 128, .external_lex_state = 2}, - [5824] = {.lex_state = 128, .external_lex_state = 2}, - [5825] = {.lex_state = 128, .external_lex_state = 2}, - [5826] = {.lex_state = 128, .external_lex_state = 2}, - [5827] = {.lex_state = 128, .external_lex_state = 2}, - [5828] = {.lex_state = 128, .external_lex_state = 2}, - [5829] = {.lex_state = 128, .external_lex_state = 2}, - [5830] = {.lex_state = 128, .external_lex_state = 2}, - [5831] = {.lex_state = 128, .external_lex_state = 2}, - [5832] = {.lex_state = 128, .external_lex_state = 2}, - [5833] = {.lex_state = 128, .external_lex_state = 2}, - [5834] = {.lex_state = 128, .external_lex_state = 2}, - [5835] = {.lex_state = 128, .external_lex_state = 2}, - [5836] = {.lex_state = 128, .external_lex_state = 2}, - [5837] = {.lex_state = 128, .external_lex_state = 2}, - [5838] = {.lex_state = 128, .external_lex_state = 2}, - [5839] = {.lex_state = 128, .external_lex_state = 2}, - [5840] = {.lex_state = 128, .external_lex_state = 2}, - [5841] = {.lex_state = 128, .external_lex_state = 2}, - [5842] = {.lex_state = 128, .external_lex_state = 2}, - [5843] = {.lex_state = 128, .external_lex_state = 2}, - [5844] = {.lex_state = 128, .external_lex_state = 2}, - [5845] = {.lex_state = 128, .external_lex_state = 2}, - [5846] = {.lex_state = 128, .external_lex_state = 2}, - [5847] = {.lex_state = 128, .external_lex_state = 2}, - [5848] = {.lex_state = 128, .external_lex_state = 2}, - [5849] = {.lex_state = 128, .external_lex_state = 2}, - [5850] = {.lex_state = 128, .external_lex_state = 2}, - [5851] = {.lex_state = 128, .external_lex_state = 2}, - [5852] = {.lex_state = 128, .external_lex_state = 2}, - [5853] = {.lex_state = 128, .external_lex_state = 2}, - [5854] = {.lex_state = 128, .external_lex_state = 2}, - [5855] = {.lex_state = 128, .external_lex_state = 2}, - [5856] = {.lex_state = 128, .external_lex_state = 2}, - [5857] = {.lex_state = 128, .external_lex_state = 2}, - [5858] = {.lex_state = 128, .external_lex_state = 2}, - [5859] = {.lex_state = 128, .external_lex_state = 2}, - [5860] = {.lex_state = 128, .external_lex_state = 2}, - [5861] = {.lex_state = 128, .external_lex_state = 2}, - [5862] = {.lex_state = 128, .external_lex_state = 2}, - [5863] = {.lex_state = 128, .external_lex_state = 2}, - [5864] = {.lex_state = 128, .external_lex_state = 2}, - [5865] = {.lex_state = 128, .external_lex_state = 2}, - [5866] = {.lex_state = 33, .external_lex_state = 2}, - [5867] = {.lex_state = 128, .external_lex_state = 2}, - [5868] = {.lex_state = 128, .external_lex_state = 2}, - [5869] = {.lex_state = 128, .external_lex_state = 2}, - [5870] = {.lex_state = 128, .external_lex_state = 2}, - [5871] = {.lex_state = 128, .external_lex_state = 2}, - [5872] = {.lex_state = 128, .external_lex_state = 2}, - [5873] = {.lex_state = 128, .external_lex_state = 2}, - [5874] = {.lex_state = 33, .external_lex_state = 2}, - [5875] = {.lex_state = 128, .external_lex_state = 2}, - [5876] = {.lex_state = 128, .external_lex_state = 2}, - [5877] = {.lex_state = 128, .external_lex_state = 2}, - [5878] = {.lex_state = 128, .external_lex_state = 2}, - [5879] = {.lex_state = 128, .external_lex_state = 2}, - [5880] = {.lex_state = 128, .external_lex_state = 2}, - [5881] = {.lex_state = 128, .external_lex_state = 2}, - [5882] = {.lex_state = 128, .external_lex_state = 2}, - [5883] = {.lex_state = 128, .external_lex_state = 2}, - [5884] = {.lex_state = 128, .external_lex_state = 2}, - [5885] = {.lex_state = 128, .external_lex_state = 2}, - [5886] = {.lex_state = 128, .external_lex_state = 2}, - [5887] = {.lex_state = 128, .external_lex_state = 2}, - [5888] = {.lex_state = 128, .external_lex_state = 2}, - [5889] = {.lex_state = 128, .external_lex_state = 2}, - [5890] = {.lex_state = 128, .external_lex_state = 2}, - [5891] = {.lex_state = 128, .external_lex_state = 2}, - [5892] = {.lex_state = 128, .external_lex_state = 2}, - [5893] = {.lex_state = 128, .external_lex_state = 2}, - [5894] = {.lex_state = 128, .external_lex_state = 2}, - [5895] = {.lex_state = 128, .external_lex_state = 2}, - [5896] = {.lex_state = 128, .external_lex_state = 2}, - [5897] = {.lex_state = 128, .external_lex_state = 2}, - [5898] = {.lex_state = 128, .external_lex_state = 2}, - [5899] = {.lex_state = 128, .external_lex_state = 2}, - [5900] = {.lex_state = 128, .external_lex_state = 2}, - [5901] = {.lex_state = 128, .external_lex_state = 2}, - [5902] = {.lex_state = 128, .external_lex_state = 2}, - [5903] = {.lex_state = 128, .external_lex_state = 2}, - [5904] = {.lex_state = 128, .external_lex_state = 2}, - [5905] = {.lex_state = 128, .external_lex_state = 2}, - [5906] = {.lex_state = 128, .external_lex_state = 2}, - [5907] = {.lex_state = 128, .external_lex_state = 2}, - [5908] = {.lex_state = 128, .external_lex_state = 2}, - [5909] = {.lex_state = 128, .external_lex_state = 2}, - [5910] = {.lex_state = 128, .external_lex_state = 2}, - [5911] = {.lex_state = 128, .external_lex_state = 2}, - [5912] = {.lex_state = 128, .external_lex_state = 2}, - [5913] = {.lex_state = 128, .external_lex_state = 2}, - [5914] = {.lex_state = 1, .external_lex_state = 11}, - [5915] = {.lex_state = 128, .external_lex_state = 2}, - [5916] = {.lex_state = 128, .external_lex_state = 2}, - [5917] = {.lex_state = 128, .external_lex_state = 2}, - [5918] = {.lex_state = 128, .external_lex_state = 2}, - [5919] = {.lex_state = 128, .external_lex_state = 2}, - [5920] = {.lex_state = 128, .external_lex_state = 2}, - [5921] = {.lex_state = 128, .external_lex_state = 2}, - [5922] = {.lex_state = 128, .external_lex_state = 2}, - [5923] = {.lex_state = 128, .external_lex_state = 2}, - [5924] = {.lex_state = 128, .external_lex_state = 2}, - [5925] = {.lex_state = 128, .external_lex_state = 2}, - [5926] = {.lex_state = 128, .external_lex_state = 2}, - [5927] = {.lex_state = 128, .external_lex_state = 2}, - [5928] = {.lex_state = 128, .external_lex_state = 2}, - [5929] = {.lex_state = 128, .external_lex_state = 2}, - [5930] = {.lex_state = 128, .external_lex_state = 2}, - [5931] = {.lex_state = 128, .external_lex_state = 2}, - [5932] = {.lex_state = 128, .external_lex_state = 2}, - [5933] = {.lex_state = 128, .external_lex_state = 2}, - [5934] = {.lex_state = 128, .external_lex_state = 2}, - [5935] = {.lex_state = 128, .external_lex_state = 2}, - [5936] = {.lex_state = 128, .external_lex_state = 2}, - [5937] = {.lex_state = 128, .external_lex_state = 2}, - [5938] = {.lex_state = 128, .external_lex_state = 2}, - [5939] = {.lex_state = 128, .external_lex_state = 2}, - [5940] = {.lex_state = 128, .external_lex_state = 2}, - [5941] = {.lex_state = 128, .external_lex_state = 2}, - [5942] = {.lex_state = 128, .external_lex_state = 2}, - [5943] = {.lex_state = 128, .external_lex_state = 2}, - [5944] = {.lex_state = 128, .external_lex_state = 2}, - [5945] = {.lex_state = 128, .external_lex_state = 2}, - [5946] = {.lex_state = 128, .external_lex_state = 2}, - [5947] = {.lex_state = 128, .external_lex_state = 2}, - [5948] = {.lex_state = 128, .external_lex_state = 2}, - [5949] = {.lex_state = 128, .external_lex_state = 2}, - [5950] = {.lex_state = 128, .external_lex_state = 2}, - [5951] = {.lex_state = 128, .external_lex_state = 2}, - [5952] = {.lex_state = 128, .external_lex_state = 2}, - [5953] = {.lex_state = 128, .external_lex_state = 2}, - [5954] = {.lex_state = 128, .external_lex_state = 2}, - [5955] = {.lex_state = 128, .external_lex_state = 2}, - [5956] = {.lex_state = 128, .external_lex_state = 2}, - [5957] = {.lex_state = 128, .external_lex_state = 2}, - [5958] = {.lex_state = 1, .external_lex_state = 11}, - [5959] = {.lex_state = 128, .external_lex_state = 2}, - [5960] = {.lex_state = 128, .external_lex_state = 2}, - [5961] = {.lex_state = 128, .external_lex_state = 2}, - [5962] = {.lex_state = 128, .external_lex_state = 2}, - [5963] = {.lex_state = 128, .external_lex_state = 2}, - [5964] = {.lex_state = 128, .external_lex_state = 2}, - [5965] = {.lex_state = 128, .external_lex_state = 2}, - [5966] = {.lex_state = 128, .external_lex_state = 2}, - [5967] = {.lex_state = 128, .external_lex_state = 2}, - [5968] = {.lex_state = 128, .external_lex_state = 2}, - [5969] = {.lex_state = 128, .external_lex_state = 2}, - [5970] = {.lex_state = 128, .external_lex_state = 2}, - [5971] = {.lex_state = 33, .external_lex_state = 2}, - [5972] = {.lex_state = 128, .external_lex_state = 2}, - [5973] = {.lex_state = 128, .external_lex_state = 2}, - [5974] = {.lex_state = 128, .external_lex_state = 2}, - [5975] = {.lex_state = 128, .external_lex_state = 2}, - [5976] = {.lex_state = 33, .external_lex_state = 2}, - [5977] = {.lex_state = 128, .external_lex_state = 2}, - [5978] = {.lex_state = 128, .external_lex_state = 2}, - [5979] = {.lex_state = 128, .external_lex_state = 2}, - [5980] = {.lex_state = 128, .external_lex_state = 2}, - [5981] = {.lex_state = 128, .external_lex_state = 2}, - [5982] = {.lex_state = 128, .external_lex_state = 2}, - [5983] = {.lex_state = 128, .external_lex_state = 2}, - [5984] = {.lex_state = 128, .external_lex_state = 2}, - [5985] = {.lex_state = 128, .external_lex_state = 2}, + [3493] = {.lex_state = 19, .external_lex_state = 2}, + [3494] = {.lex_state = 127, .external_lex_state = 5}, + [3495] = {.lex_state = 127, .external_lex_state = 2}, + [3496] = {.lex_state = 127, .external_lex_state = 5}, + [3497] = {.lex_state = 127, .external_lex_state = 5}, + [3498] = {.lex_state = 127, .external_lex_state = 2}, + [3499] = {.lex_state = 127, .external_lex_state = 2}, + [3500] = {.lex_state = 127, .external_lex_state = 6}, + [3501] = {.lex_state = 19, .external_lex_state = 2}, + [3502] = {.lex_state = 19, .external_lex_state = 2}, + [3503] = {.lex_state = 17, .external_lex_state = 8}, + [3504] = {.lex_state = 19, .external_lex_state = 2}, + [3505] = {.lex_state = 127, .external_lex_state = 5}, + [3506] = {.lex_state = 17, .external_lex_state = 8}, + [3507] = {.lex_state = 11, .external_lex_state = 2}, + [3508] = {.lex_state = 127, .external_lex_state = 2}, + [3509] = {.lex_state = 127, .external_lex_state = 2}, + [3510] = {.lex_state = 17, .external_lex_state = 8}, + [3511] = {.lex_state = 19, .external_lex_state = 2}, + [3512] = {.lex_state = 127, .external_lex_state = 2}, + [3513] = {.lex_state = 17, .external_lex_state = 8}, + [3514] = {.lex_state = 11, .external_lex_state = 2}, + [3515] = {.lex_state = 127, .external_lex_state = 2}, + [3516] = {.lex_state = 127, .external_lex_state = 2}, + [3517] = {.lex_state = 127, .external_lex_state = 2}, + [3518] = {.lex_state = 127, .external_lex_state = 2}, + [3519] = {.lex_state = 127, .external_lex_state = 2}, + [3520] = {.lex_state = 127, .external_lex_state = 5}, + [3521] = {.lex_state = 127, .external_lex_state = 5}, + [3522] = {.lex_state = 127, .external_lex_state = 5}, + [3523] = {.lex_state = 127, .external_lex_state = 5}, + [3524] = {.lex_state = 127, .external_lex_state = 2}, + [3525] = {.lex_state = 127, .external_lex_state = 5}, + [3526] = {.lex_state = 127, .external_lex_state = 5}, + [3527] = {.lex_state = 127, .external_lex_state = 5}, + [3528] = {.lex_state = 127, .external_lex_state = 5}, + [3529] = {.lex_state = 127, .external_lex_state = 5}, + [3530] = {.lex_state = 127, .external_lex_state = 5}, + [3531] = {.lex_state = 127, .external_lex_state = 5}, + [3532] = {.lex_state = 127, .external_lex_state = 2}, + [3533] = {.lex_state = 127, .external_lex_state = 5}, + [3534] = {.lex_state = 127, .external_lex_state = 5}, + [3535] = {.lex_state = 127, .external_lex_state = 5}, + [3536] = {.lex_state = 127, .external_lex_state = 2}, + [3537] = {.lex_state = 127, .external_lex_state = 2}, + [3538] = {.lex_state = 127, .external_lex_state = 2}, + [3539] = {.lex_state = 127, .external_lex_state = 2}, + [3540] = {.lex_state = 127, .external_lex_state = 5}, + [3541] = {.lex_state = 127, .external_lex_state = 2}, + [3542] = {.lex_state = 127, .external_lex_state = 5}, + [3543] = {.lex_state = 127, .external_lex_state = 5}, + [3544] = {.lex_state = 127, .external_lex_state = 2}, + [3545] = {.lex_state = 127, .external_lex_state = 2}, + [3546] = {.lex_state = 127, .external_lex_state = 5}, + [3547] = {.lex_state = 127, .external_lex_state = 5}, + [3548] = {.lex_state = 127, .external_lex_state = 5}, + [3549] = {.lex_state = 127, .external_lex_state = 5}, + [3550] = {.lex_state = 127, .external_lex_state = 2}, + [3551] = {.lex_state = 127, .external_lex_state = 2}, + [3552] = {.lex_state = 7, .external_lex_state = 2}, + [3553] = {.lex_state = 127, .external_lex_state = 5}, + [3554] = {.lex_state = 127, .external_lex_state = 2}, + [3555] = {.lex_state = 127, .external_lex_state = 5}, + [3556] = {.lex_state = 127, .external_lex_state = 5}, + [3557] = {.lex_state = 127, .external_lex_state = 5}, + [3558] = {.lex_state = 127, .external_lex_state = 2}, + [3559] = {.lex_state = 19, .external_lex_state = 2}, + [3560] = {.lex_state = 127, .external_lex_state = 2}, + [3561] = {.lex_state = 127, .external_lex_state = 5}, + [3562] = {.lex_state = 127, .external_lex_state = 5}, + [3563] = {.lex_state = 127, .external_lex_state = 5}, + [3564] = {.lex_state = 127, .external_lex_state = 5}, + [3565] = {.lex_state = 127, .external_lex_state = 5}, + [3566] = {.lex_state = 127, .external_lex_state = 2}, + [3567] = {.lex_state = 127, .external_lex_state = 5}, + [3568] = {.lex_state = 127, .external_lex_state = 2}, + [3569] = {.lex_state = 127, .external_lex_state = 5}, + [3570] = {.lex_state = 127, .external_lex_state = 5}, + [3571] = {.lex_state = 127, .external_lex_state = 5}, + [3572] = {.lex_state = 127, .external_lex_state = 2}, + [3573] = {.lex_state = 127, .external_lex_state = 5}, + [3574] = {.lex_state = 7, .external_lex_state = 2}, + [3575] = {.lex_state = 127, .external_lex_state = 5}, + [3576] = {.lex_state = 127, .external_lex_state = 5}, + [3577] = {.lex_state = 127, .external_lex_state = 5}, + [3578] = {.lex_state = 127, .external_lex_state = 5}, + [3579] = {.lex_state = 127, .external_lex_state = 5}, + [3580] = {.lex_state = 127, .external_lex_state = 5}, + [3581] = {.lex_state = 127, .external_lex_state = 5}, + [3582] = {.lex_state = 127, .external_lex_state = 5}, + [3583] = {.lex_state = 127, .external_lex_state = 5}, + [3584] = {.lex_state = 127, .external_lex_state = 2}, + [3585] = {.lex_state = 127, .external_lex_state = 2}, + [3586] = {.lex_state = 127, .external_lex_state = 5}, + [3587] = {.lex_state = 127, .external_lex_state = 2}, + [3588] = {.lex_state = 127, .external_lex_state = 5}, + [3589] = {.lex_state = 7, .external_lex_state = 2}, + [3590] = {.lex_state = 127, .external_lex_state = 2}, + [3591] = {.lex_state = 127, .external_lex_state = 5}, + [3592] = {.lex_state = 7, .external_lex_state = 2}, + [3593] = {.lex_state = 127, .external_lex_state = 5}, + [3594] = {.lex_state = 127, .external_lex_state = 5}, + [3595] = {.lex_state = 127, .external_lex_state = 2}, + [3596] = {.lex_state = 127, .external_lex_state = 2}, + [3597] = {.lex_state = 127, .external_lex_state = 5}, + [3598] = {.lex_state = 127, .external_lex_state = 5}, + [3599] = {.lex_state = 127, .external_lex_state = 5}, + [3600] = {.lex_state = 127, .external_lex_state = 5}, + [3601] = {.lex_state = 127, .external_lex_state = 2}, + [3602] = {.lex_state = 127, .external_lex_state = 2}, + [3603] = {.lex_state = 127, .external_lex_state = 2}, + [3604] = {.lex_state = 127, .external_lex_state = 5}, + [3605] = {.lex_state = 127, .external_lex_state = 2}, + [3606] = {.lex_state = 127, .external_lex_state = 5}, + [3607] = {.lex_state = 127, .external_lex_state = 5}, + [3608] = {.lex_state = 127, .external_lex_state = 2}, + [3609] = {.lex_state = 127, .external_lex_state = 5}, + [3610] = {.lex_state = 8, .external_lex_state = 2}, + [3611] = {.lex_state = 127, .external_lex_state = 2}, + [3612] = {.lex_state = 127, .external_lex_state = 5}, + [3613] = {.lex_state = 127, .external_lex_state = 2}, + [3614] = {.lex_state = 127, .external_lex_state = 5}, + [3615] = {.lex_state = 127, .external_lex_state = 5}, + [3616] = {.lex_state = 127, .external_lex_state = 2}, + [3617] = {.lex_state = 127, .external_lex_state = 5}, + [3618] = {.lex_state = 127, .external_lex_state = 2}, + [3619] = {.lex_state = 127, .external_lex_state = 5}, + [3620] = {.lex_state = 127, .external_lex_state = 2}, + [3621] = {.lex_state = 127, .external_lex_state = 2}, + [3622] = {.lex_state = 127, .external_lex_state = 5}, + [3623] = {.lex_state = 127, .external_lex_state = 2}, + [3624] = {.lex_state = 127, .external_lex_state = 5}, + [3625] = {.lex_state = 127, .external_lex_state = 2}, + [3626] = {.lex_state = 127, .external_lex_state = 5}, + [3627] = {.lex_state = 127, .external_lex_state = 2}, + [3628] = {.lex_state = 127, .external_lex_state = 5}, + [3629] = {.lex_state = 127, .external_lex_state = 5}, + [3630] = {.lex_state = 127, .external_lex_state = 2}, + [3631] = {.lex_state = 127, .external_lex_state = 2}, + [3632] = {.lex_state = 127, .external_lex_state = 5}, + [3633] = {.lex_state = 8, .external_lex_state = 2}, + [3634] = {.lex_state = 127, .external_lex_state = 5}, + [3635] = {.lex_state = 127, .external_lex_state = 5}, + [3636] = {.lex_state = 127, .external_lex_state = 2}, + [3637] = {.lex_state = 127, .external_lex_state = 5}, + [3638] = {.lex_state = 127, .external_lex_state = 5}, + [3639] = {.lex_state = 127, .external_lex_state = 5}, + [3640] = {.lex_state = 127, .external_lex_state = 2}, + [3641] = {.lex_state = 7, .external_lex_state = 2}, + [3642] = {.lex_state = 127, .external_lex_state = 5}, + [3643] = {.lex_state = 127, .external_lex_state = 5}, + [3644] = {.lex_state = 127, .external_lex_state = 2}, + [3645] = {.lex_state = 127, .external_lex_state = 5}, + [3646] = {.lex_state = 127, .external_lex_state = 5}, + [3647] = {.lex_state = 7, .external_lex_state = 2}, + [3648] = {.lex_state = 127, .external_lex_state = 5}, + [3649] = {.lex_state = 127, .external_lex_state = 5}, + [3650] = {.lex_state = 127, .external_lex_state = 2}, + [3651] = {.lex_state = 127, .external_lex_state = 2}, + [3652] = {.lex_state = 127, .external_lex_state = 2}, + [3653] = {.lex_state = 127, .external_lex_state = 5}, + [3654] = {.lex_state = 127, .external_lex_state = 2}, + [3655] = {.lex_state = 127, .external_lex_state = 5}, + [3656] = {.lex_state = 127, .external_lex_state = 2}, + [3657] = {.lex_state = 127, .external_lex_state = 2}, + [3658] = {.lex_state = 127, .external_lex_state = 2}, + [3659] = {.lex_state = 7, .external_lex_state = 2}, + [3660] = {.lex_state = 127, .external_lex_state = 2}, + [3661] = {.lex_state = 127, .external_lex_state = 5}, + [3662] = {.lex_state = 127, .external_lex_state = 5}, + [3663] = {.lex_state = 127, .external_lex_state = 2}, + [3664] = {.lex_state = 127, .external_lex_state = 5}, + [3665] = {.lex_state = 127, .external_lex_state = 5}, + [3666] = {.lex_state = 127, .external_lex_state = 5}, + [3667] = {.lex_state = 127, .external_lex_state = 5}, + [3668] = {.lex_state = 127, .external_lex_state = 2}, + [3669] = {.lex_state = 127, .external_lex_state = 5}, + [3670] = {.lex_state = 127, .external_lex_state = 5}, + [3671] = {.lex_state = 127, .external_lex_state = 5}, + [3672] = {.lex_state = 127, .external_lex_state = 5}, + [3673] = {.lex_state = 127, .external_lex_state = 5}, + [3674] = {.lex_state = 127, .external_lex_state = 5}, + [3675] = {.lex_state = 127, .external_lex_state = 5}, + [3676] = {.lex_state = 127, .external_lex_state = 5}, + [3677] = {.lex_state = 127, .external_lex_state = 5}, + [3678] = {.lex_state = 127, .external_lex_state = 5}, + [3679] = {.lex_state = 127, .external_lex_state = 2}, + [3680] = {.lex_state = 127, .external_lex_state = 2}, + [3681] = {.lex_state = 127, .external_lex_state = 2}, + [3682] = {.lex_state = 127, .external_lex_state = 5}, + [3683] = {.lex_state = 127, .external_lex_state = 5}, + [3684] = {.lex_state = 127, .external_lex_state = 2}, + [3685] = {.lex_state = 127, .external_lex_state = 5}, + [3686] = {.lex_state = 127, .external_lex_state = 5}, + [3687] = {.lex_state = 127, .external_lex_state = 5}, + [3688] = {.lex_state = 127, .external_lex_state = 5}, + [3689] = {.lex_state = 127, .external_lex_state = 5}, + [3690] = {.lex_state = 7, .external_lex_state = 2}, + [3691] = {.lex_state = 127, .external_lex_state = 5}, + [3692] = {.lex_state = 127, .external_lex_state = 5}, + [3693] = {.lex_state = 127, .external_lex_state = 5}, + [3694] = {.lex_state = 7, .external_lex_state = 2}, + [3695] = {.lex_state = 127, .external_lex_state = 5}, + [3696] = {.lex_state = 127, .external_lex_state = 5}, + [3697] = {.lex_state = 127, .external_lex_state = 5}, + [3698] = {.lex_state = 127, .external_lex_state = 5}, + [3699] = {.lex_state = 127, .external_lex_state = 5}, + [3700] = {.lex_state = 127, .external_lex_state = 5}, + [3701] = {.lex_state = 127, .external_lex_state = 5}, + [3702] = {.lex_state = 127, .external_lex_state = 5}, + [3703] = {.lex_state = 127, .external_lex_state = 5}, + [3704] = {.lex_state = 127, .external_lex_state = 5}, + [3705] = {.lex_state = 127, .external_lex_state = 5}, + [3706] = {.lex_state = 127, .external_lex_state = 5}, + [3707] = {.lex_state = 127, .external_lex_state = 5}, + [3708] = {.lex_state = 127, .external_lex_state = 2}, + [3709] = {.lex_state = 127, .external_lex_state = 5}, + [3710] = {.lex_state = 127, .external_lex_state = 2}, + [3711] = {.lex_state = 127, .external_lex_state = 5}, + [3712] = {.lex_state = 127, .external_lex_state = 5}, + [3713] = {.lex_state = 127, .external_lex_state = 5}, + [3714] = {.lex_state = 127, .external_lex_state = 5}, + [3715] = {.lex_state = 127, .external_lex_state = 5}, + [3716] = {.lex_state = 127, .external_lex_state = 5}, + [3717] = {.lex_state = 127, .external_lex_state = 2}, + [3718] = {.lex_state = 7, .external_lex_state = 2}, + [3719] = {.lex_state = 127, .external_lex_state = 5}, + [3720] = {.lex_state = 7, .external_lex_state = 2}, + [3721] = {.lex_state = 7, .external_lex_state = 2}, + [3722] = {.lex_state = 127, .external_lex_state = 5}, + [3723] = {.lex_state = 127, .external_lex_state = 5}, + [3724] = {.lex_state = 7, .external_lex_state = 2}, + [3725] = {.lex_state = 127, .external_lex_state = 5}, + [3726] = {.lex_state = 127, .external_lex_state = 5}, + [3727] = {.lex_state = 127, .external_lex_state = 5}, + [3728] = {.lex_state = 127, .external_lex_state = 5}, + [3729] = {.lex_state = 127, .external_lex_state = 2}, + [3730] = {.lex_state = 127, .external_lex_state = 5}, + [3731] = {.lex_state = 127, .external_lex_state = 5}, + [3732] = {.lex_state = 127, .external_lex_state = 2}, + [3733] = {.lex_state = 127, .external_lex_state = 5}, + [3734] = {.lex_state = 127, .external_lex_state = 2}, + [3735] = {.lex_state = 127, .external_lex_state = 2}, + [3736] = {.lex_state = 127, .external_lex_state = 5}, + [3737] = {.lex_state = 127, .external_lex_state = 5}, + [3738] = {.lex_state = 127, .external_lex_state = 2}, + [3739] = {.lex_state = 127, .external_lex_state = 2}, + [3740] = {.lex_state = 127, .external_lex_state = 2}, + [3741] = {.lex_state = 7, .external_lex_state = 2}, + [3742] = {.lex_state = 127, .external_lex_state = 5}, + [3743] = {.lex_state = 127, .external_lex_state = 2}, + [3744] = {.lex_state = 127, .external_lex_state = 5}, + [3745] = {.lex_state = 127, .external_lex_state = 5}, + [3746] = {.lex_state = 127, .external_lex_state = 2}, + [3747] = {.lex_state = 127, .external_lex_state = 5}, + [3748] = {.lex_state = 127, .external_lex_state = 5}, + [3749] = {.lex_state = 127, .external_lex_state = 5}, + [3750] = {.lex_state = 127, .external_lex_state = 5}, + [3751] = {.lex_state = 7, .external_lex_state = 2}, + [3752] = {.lex_state = 127, .external_lex_state = 5}, + [3753] = {.lex_state = 127, .external_lex_state = 5}, + [3754] = {.lex_state = 127, .external_lex_state = 5}, + [3755] = {.lex_state = 127, .external_lex_state = 5}, + [3756] = {.lex_state = 127, .external_lex_state = 2}, + [3757] = {.lex_state = 7, .external_lex_state = 2}, + [3758] = {.lex_state = 127, .external_lex_state = 2}, + [3759] = {.lex_state = 127, .external_lex_state = 5}, + [3760] = {.lex_state = 127, .external_lex_state = 2}, + [3761] = {.lex_state = 127, .external_lex_state = 5}, + [3762] = {.lex_state = 127, .external_lex_state = 2}, + [3763] = {.lex_state = 127, .external_lex_state = 2}, + [3764] = {.lex_state = 8, .external_lex_state = 2}, + [3765] = {.lex_state = 127, .external_lex_state = 5}, + [3766] = {.lex_state = 127, .external_lex_state = 2}, + [3767] = {.lex_state = 127, .external_lex_state = 2}, + [3768] = {.lex_state = 17, .external_lex_state = 8}, + [3769] = {.lex_state = 127, .external_lex_state = 2}, + [3770] = {.lex_state = 127, .external_lex_state = 5}, + [3771] = {.lex_state = 127, .external_lex_state = 2}, + [3772] = {.lex_state = 127, .external_lex_state = 2}, + [3773] = {.lex_state = 19, .external_lex_state = 2}, + [3774] = {.lex_state = 127, .external_lex_state = 5}, + [3775] = {.lex_state = 127, .external_lex_state = 2}, + [3776] = {.lex_state = 127, .external_lex_state = 2}, + [3777] = {.lex_state = 127, .external_lex_state = 2}, + [3778] = {.lex_state = 127, .external_lex_state = 5}, + [3779] = {.lex_state = 127, .external_lex_state = 2}, + [3780] = {.lex_state = 127, .external_lex_state = 5}, + [3781] = {.lex_state = 127, .external_lex_state = 5}, + [3782] = {.lex_state = 127, .external_lex_state = 5}, + [3783] = {.lex_state = 127, .external_lex_state = 2}, + [3784] = {.lex_state = 11, .external_lex_state = 2}, + [3785] = {.lex_state = 127, .external_lex_state = 6}, + [3786] = {.lex_state = 127, .external_lex_state = 6}, + [3787] = {.lex_state = 127, .external_lex_state = 2}, + [3788] = {.lex_state = 127, .external_lex_state = 2}, + [3789] = {.lex_state = 127, .external_lex_state = 5}, + [3790] = {.lex_state = 17, .external_lex_state = 7}, + [3791] = {.lex_state = 127, .external_lex_state = 2}, + [3792] = {.lex_state = 127, .external_lex_state = 5}, + [3793] = {.lex_state = 127, .external_lex_state = 5}, + [3794] = {.lex_state = 127, .external_lex_state = 5}, + [3795] = {.lex_state = 17, .external_lex_state = 7}, + [3796] = {.lex_state = 17, .external_lex_state = 7}, + [3797] = {.lex_state = 127, .external_lex_state = 5}, + [3798] = {.lex_state = 127, .external_lex_state = 2}, + [3799] = {.lex_state = 127, .external_lex_state = 5}, + [3800] = {.lex_state = 127, .external_lex_state = 5}, + [3801] = {.lex_state = 127, .external_lex_state = 5}, + [3802] = {.lex_state = 127, .external_lex_state = 5}, + [3803] = {.lex_state = 127, .external_lex_state = 2}, + [3804] = {.lex_state = 127, .external_lex_state = 5}, + [3805] = {.lex_state = 17, .external_lex_state = 7}, + [3806] = {.lex_state = 127, .external_lex_state = 2}, + [3807] = {.lex_state = 127, .external_lex_state = 5}, + [3808] = {.lex_state = 127, .external_lex_state = 5}, + [3809] = {.lex_state = 127, .external_lex_state = 5}, + [3810] = {.lex_state = 127, .external_lex_state = 2}, + [3811] = {.lex_state = 127, .external_lex_state = 5}, + [3812] = {.lex_state = 127, .external_lex_state = 5}, + [3813] = {.lex_state = 127, .external_lex_state = 2}, + [3814] = {.lex_state = 17, .external_lex_state = 7}, + [3815] = {.lex_state = 17, .external_lex_state = 7}, + [3816] = {.lex_state = 17, .external_lex_state = 7}, + [3817] = {.lex_state = 17, .external_lex_state = 7}, + [3818] = {.lex_state = 127, .external_lex_state = 5}, + [3819] = {.lex_state = 127, .external_lex_state = 5}, + [3820] = {.lex_state = 127, .external_lex_state = 5}, + [3821] = {.lex_state = 127, .external_lex_state = 2}, + [3822] = {.lex_state = 127, .external_lex_state = 2}, + [3823] = {.lex_state = 127, .external_lex_state = 2}, + [3824] = {.lex_state = 12, .external_lex_state = 2}, + [3825] = {.lex_state = 20, .external_lex_state = 2}, + [3826] = {.lex_state = 8, .external_lex_state = 2}, + [3827] = {.lex_state = 19, .external_lex_state = 2}, + [3828] = {.lex_state = 127, .external_lex_state = 2}, + [3829] = {.lex_state = 127, .external_lex_state = 2}, + [3830] = {.lex_state = 127, .external_lex_state = 2}, + [3831] = {.lex_state = 127, .external_lex_state = 2}, + [3832] = {.lex_state = 127, .external_lex_state = 6}, + [3833] = {.lex_state = 127, .external_lex_state = 6}, + [3834] = {.lex_state = 127, .external_lex_state = 2}, + [3835] = {.lex_state = 127, .external_lex_state = 6}, + [3836] = {.lex_state = 127, .external_lex_state = 2}, + [3837] = {.lex_state = 17, .external_lex_state = 7}, + [3838] = {.lex_state = 127, .external_lex_state = 2}, + [3839] = {.lex_state = 127, .external_lex_state = 2}, + [3840] = {.lex_state = 127, .external_lex_state = 2}, + [3841] = {.lex_state = 127, .external_lex_state = 2}, + [3842] = {.lex_state = 127, .external_lex_state = 2}, + [3843] = {.lex_state = 17, .external_lex_state = 7}, + [3844] = {.lex_state = 17, .external_lex_state = 7}, + [3845] = {.lex_state = 17, .external_lex_state = 7}, + [3846] = {.lex_state = 17, .external_lex_state = 7}, + [3847] = {.lex_state = 17, .external_lex_state = 7}, + [3848] = {.lex_state = 17, .external_lex_state = 7}, + [3849] = {.lex_state = 127, .external_lex_state = 6}, + [3850] = {.lex_state = 127, .external_lex_state = 2}, + [3851] = {.lex_state = 127, .external_lex_state = 6}, + [3852] = {.lex_state = 127, .external_lex_state = 2}, + [3853] = {.lex_state = 127, .external_lex_state = 2}, + [3854] = {.lex_state = 127, .external_lex_state = 6}, + [3855] = {.lex_state = 17, .external_lex_state = 7}, + [3856] = {.lex_state = 17, .external_lex_state = 7}, + [3857] = {.lex_state = 127, .external_lex_state = 2}, + [3858] = {.lex_state = 127, .external_lex_state = 2}, + [3859] = {.lex_state = 127, .external_lex_state = 6}, + [3860] = {.lex_state = 127, .external_lex_state = 2}, + [3861] = {.lex_state = 12, .external_lex_state = 2}, + [3862] = {.lex_state = 20, .external_lex_state = 2}, + [3863] = {.lex_state = 127, .external_lex_state = 5}, + [3864] = {.lex_state = 127, .external_lex_state = 2}, + [3865] = {.lex_state = 17, .external_lex_state = 7}, + [3866] = {.lex_state = 127, .external_lex_state = 2}, + [3867] = {.lex_state = 127, .external_lex_state = 2}, + [3868] = {.lex_state = 17, .external_lex_state = 7}, + [3869] = {.lex_state = 17, .external_lex_state = 7}, + [3870] = {.lex_state = 17, .external_lex_state = 7}, + [3871] = {.lex_state = 127, .external_lex_state = 2}, + [3872] = {.lex_state = 127, .external_lex_state = 6}, + [3873] = {.lex_state = 127, .external_lex_state = 2}, + [3874] = {.lex_state = 127, .external_lex_state = 2}, + [3875] = {.lex_state = 17, .external_lex_state = 7}, + [3876] = {.lex_state = 127, .external_lex_state = 2}, + [3877] = {.lex_state = 127, .external_lex_state = 2}, + [3878] = {.lex_state = 127, .external_lex_state = 2}, + [3879] = {.lex_state = 127, .external_lex_state = 2}, + [3880] = {.lex_state = 127, .external_lex_state = 2}, + [3881] = {.lex_state = 19, .external_lex_state = 2}, + [3882] = {.lex_state = 127, .external_lex_state = 2}, + [3883] = {.lex_state = 17, .external_lex_state = 8}, + [3884] = {.lex_state = 127, .external_lex_state = 6}, + [3885] = {.lex_state = 127, .external_lex_state = 2}, + [3886] = {.lex_state = 127, .external_lex_state = 2}, + [3887] = {.lex_state = 17, .external_lex_state = 7}, + [3888] = {.lex_state = 19, .external_lex_state = 2}, + [3889] = {.lex_state = 127, .external_lex_state = 2}, + [3890] = {.lex_state = 17, .external_lex_state = 7}, + [3891] = {.lex_state = 127, .external_lex_state = 6}, + [3892] = {.lex_state = 127, .external_lex_state = 2}, + [3893] = {.lex_state = 17, .external_lex_state = 8}, + [3894] = {.lex_state = 127, .external_lex_state = 2}, + [3895] = {.lex_state = 17, .external_lex_state = 8}, + [3896] = {.lex_state = 11, .external_lex_state = 2}, + [3897] = {.lex_state = 127, .external_lex_state = 2}, + [3898] = {.lex_state = 127, .external_lex_state = 2}, + [3899] = {.lex_state = 17, .external_lex_state = 8}, + [3900] = {.lex_state = 12, .external_lex_state = 2}, + [3901] = {.lex_state = 20, .external_lex_state = 2}, + [3902] = {.lex_state = 127, .external_lex_state = 2}, + [3903] = {.lex_state = 127, .external_lex_state = 2}, + [3904] = {.lex_state = 127, .external_lex_state = 6}, + [3905] = {.lex_state = 127, .external_lex_state = 6}, + [3906] = {.lex_state = 127, .external_lex_state = 2}, + [3907] = {.lex_state = 127, .external_lex_state = 2}, + [3908] = {.lex_state = 127, .external_lex_state = 6}, + [3909] = {.lex_state = 127, .external_lex_state = 2}, + [3910] = {.lex_state = 127, .external_lex_state = 6}, + [3911] = {.lex_state = 127, .external_lex_state = 6}, + [3912] = {.lex_state = 19, .external_lex_state = 2}, + [3913] = {.lex_state = 127, .external_lex_state = 2}, + [3914] = {.lex_state = 127, .external_lex_state = 2}, + [3915] = {.lex_state = 127, .external_lex_state = 2}, + [3916] = {.lex_state = 127, .external_lex_state = 2}, + [3917] = {.lex_state = 127, .external_lex_state = 2}, + [3918] = {.lex_state = 127, .external_lex_state = 5}, + [3919] = {.lex_state = 17, .external_lex_state = 7}, + [3920] = {.lex_state = 127, .external_lex_state = 2}, + [3921] = {.lex_state = 127, .external_lex_state = 6}, + [3922] = {.lex_state = 127, .external_lex_state = 6}, + [3923] = {.lex_state = 127, .external_lex_state = 6}, + [3924] = {.lex_state = 127, .external_lex_state = 2}, + [3925] = {.lex_state = 127, .external_lex_state = 5}, + [3926] = {.lex_state = 127, .external_lex_state = 2}, + [3927] = {.lex_state = 127, .external_lex_state = 5}, + [3928] = {.lex_state = 127, .external_lex_state = 2}, + [3929] = {.lex_state = 127, .external_lex_state = 2}, + [3930] = {.lex_state = 127, .external_lex_state = 6}, + [3931] = {.lex_state = 17, .external_lex_state = 7}, + [3932] = {.lex_state = 127, .external_lex_state = 2}, + [3933] = {.lex_state = 127, .external_lex_state = 2}, + [3934] = {.lex_state = 127, .external_lex_state = 2}, + [3935] = {.lex_state = 127, .external_lex_state = 2}, + [3936] = {.lex_state = 127, .external_lex_state = 2}, + [3937] = {.lex_state = 127, .external_lex_state = 5}, + [3938] = {.lex_state = 127, .external_lex_state = 2}, + [3939] = {.lex_state = 127, .external_lex_state = 6}, + [3940] = {.lex_state = 127, .external_lex_state = 2}, + [3941] = {.lex_state = 127, .external_lex_state = 2}, + [3942] = {.lex_state = 127, .external_lex_state = 2}, + [3943] = {.lex_state = 127, .external_lex_state = 6}, + [3944] = {.lex_state = 127, .external_lex_state = 2}, + [3945] = {.lex_state = 127, .external_lex_state = 2}, + [3946] = {.lex_state = 127, .external_lex_state = 2}, + [3947] = {.lex_state = 127, .external_lex_state = 2}, + [3948] = {.lex_state = 17, .external_lex_state = 7}, + [3949] = {.lex_state = 17, .external_lex_state = 7}, + [3950] = {.lex_state = 127, .external_lex_state = 6}, + [3951] = {.lex_state = 127, .external_lex_state = 6}, + [3952] = {.lex_state = 127, .external_lex_state = 2}, + [3953] = {.lex_state = 17, .external_lex_state = 7}, + [3954] = {.lex_state = 127, .external_lex_state = 2}, + [3955] = {.lex_state = 17, .external_lex_state = 7}, + [3956] = {.lex_state = 127, .external_lex_state = 6}, + [3957] = {.lex_state = 127, .external_lex_state = 2}, + [3958] = {.lex_state = 8, .external_lex_state = 2}, + [3959] = {.lex_state = 127, .external_lex_state = 2}, + [3960] = {.lex_state = 127, .external_lex_state = 2}, + [3961] = {.lex_state = 127, .external_lex_state = 2}, + [3962] = {.lex_state = 127, .external_lex_state = 2}, + [3963] = {.lex_state = 127, .external_lex_state = 5}, + [3964] = {.lex_state = 127, .external_lex_state = 6}, + [3965] = {.lex_state = 8, .external_lex_state = 2}, + [3966] = {.lex_state = 127, .external_lex_state = 5}, + [3967] = {.lex_state = 127, .external_lex_state = 5}, + [3968] = {.lex_state = 127, .external_lex_state = 5}, + [3969] = {.lex_state = 127, .external_lex_state = 5}, + [3970] = {.lex_state = 127, .external_lex_state = 5}, + [3971] = {.lex_state = 127, .external_lex_state = 5}, + [3972] = {.lex_state = 127, .external_lex_state = 5}, + [3973] = {.lex_state = 127, .external_lex_state = 5}, + [3974] = {.lex_state = 127, .external_lex_state = 2}, + [3975] = {.lex_state = 127, .external_lex_state = 5}, + [3976] = {.lex_state = 127, .external_lex_state = 5}, + [3977] = {.lex_state = 127, .external_lex_state = 5}, + [3978] = {.lex_state = 127, .external_lex_state = 5}, + [3979] = {.lex_state = 127, .external_lex_state = 5}, + [3980] = {.lex_state = 127, .external_lex_state = 5}, + [3981] = {.lex_state = 127, .external_lex_state = 5}, + [3982] = {.lex_state = 127, .external_lex_state = 2}, + [3983] = {.lex_state = 19, .external_lex_state = 2}, + [3984] = {.lex_state = 127, .external_lex_state = 2}, + [3985] = {.lex_state = 127, .external_lex_state = 2}, + [3986] = {.lex_state = 127, .external_lex_state = 5}, + [3987] = {.lex_state = 127, .external_lex_state = 2}, + [3988] = {.lex_state = 8, .external_lex_state = 2}, + [3989] = {.lex_state = 127, .external_lex_state = 5}, + [3990] = {.lex_state = 127, .external_lex_state = 5}, + [3991] = {.lex_state = 7, .external_lex_state = 2}, + [3992] = {.lex_state = 127, .external_lex_state = 5}, + [3993] = {.lex_state = 127, .external_lex_state = 2}, + [3994] = {.lex_state = 127, .external_lex_state = 2}, + [3995] = {.lex_state = 127, .external_lex_state = 5}, + [3996] = {.lex_state = 127, .external_lex_state = 5}, + [3997] = {.lex_state = 127, .external_lex_state = 2}, + [3998] = {.lex_state = 127, .external_lex_state = 5}, + [3999] = {.lex_state = 127, .external_lex_state = 2}, + [4000] = {.lex_state = 127, .external_lex_state = 5}, + [4001] = {.lex_state = 127, .external_lex_state = 5}, + [4002] = {.lex_state = 127, .external_lex_state = 2}, + [4003] = {.lex_state = 127, .external_lex_state = 5}, + [4004] = {.lex_state = 127, .external_lex_state = 2}, + [4005] = {.lex_state = 127, .external_lex_state = 5}, + [4006] = {.lex_state = 127, .external_lex_state = 5}, + [4007] = {.lex_state = 127, .external_lex_state = 2}, + [4008] = {.lex_state = 127, .external_lex_state = 2}, + [4009] = {.lex_state = 127, .external_lex_state = 2}, + [4010] = {.lex_state = 127, .external_lex_state = 2}, + [4011] = {.lex_state = 127, .external_lex_state = 5}, + [4012] = {.lex_state = 127, .external_lex_state = 2}, + [4013] = {.lex_state = 127, .external_lex_state = 2}, + [4014] = {.lex_state = 127, .external_lex_state = 5}, + [4015] = {.lex_state = 127, .external_lex_state = 5}, + [4016] = {.lex_state = 127, .external_lex_state = 2}, + [4017] = {.lex_state = 127, .external_lex_state = 2}, + [4018] = {.lex_state = 127, .external_lex_state = 5}, + [4019] = {.lex_state = 127, .external_lex_state = 2}, + [4020] = {.lex_state = 127, .external_lex_state = 5}, + [4021] = {.lex_state = 127, .external_lex_state = 2}, + [4022] = {.lex_state = 127, .external_lex_state = 5}, + [4023] = {.lex_state = 127, .external_lex_state = 2}, + [4024] = {.lex_state = 127, .external_lex_state = 2}, + [4025] = {.lex_state = 127, .external_lex_state = 2}, + [4026] = {.lex_state = 127, .external_lex_state = 5}, + [4027] = {.lex_state = 127, .external_lex_state = 5}, + [4028] = {.lex_state = 127, .external_lex_state = 5}, + [4029] = {.lex_state = 127, .external_lex_state = 5}, + [4030] = {.lex_state = 127, .external_lex_state = 5}, + [4031] = {.lex_state = 127, .external_lex_state = 2}, + [4032] = {.lex_state = 17, .external_lex_state = 9}, + [4033] = {.lex_state = 127, .external_lex_state = 5}, + [4034] = {.lex_state = 127, .external_lex_state = 2}, + [4035] = {.lex_state = 127, .external_lex_state = 2}, + [4036] = {.lex_state = 11, .external_lex_state = 2}, + [4037] = {.lex_state = 127, .external_lex_state = 2}, + [4038] = {.lex_state = 127, .external_lex_state = 6}, + [4039] = {.lex_state = 127, .external_lex_state = 5}, + [4040] = {.lex_state = 127, .external_lex_state = 5}, + [4041] = {.lex_state = 127, .external_lex_state = 5}, + [4042] = {.lex_state = 127, .external_lex_state = 2}, + [4043] = {.lex_state = 127, .external_lex_state = 5}, + [4044] = {.lex_state = 127, .external_lex_state = 2}, + [4045] = {.lex_state = 127, .external_lex_state = 2}, + [4046] = {.lex_state = 127, .external_lex_state = 5}, + [4047] = {.lex_state = 127, .external_lex_state = 5}, + [4048] = {.lex_state = 127, .external_lex_state = 2}, + [4049] = {.lex_state = 127, .external_lex_state = 2}, + [4050] = {.lex_state = 17, .external_lex_state = 9}, + [4051] = {.lex_state = 127, .external_lex_state = 5}, + [4052] = {.lex_state = 127, .external_lex_state = 5}, + [4053] = {.lex_state = 127, .external_lex_state = 2}, + [4054] = {.lex_state = 127, .external_lex_state = 5}, + [4055] = {.lex_state = 127, .external_lex_state = 2}, + [4056] = {.lex_state = 127, .external_lex_state = 5}, + [4057] = {.lex_state = 127, .external_lex_state = 2}, + [4058] = {.lex_state = 127, .external_lex_state = 2}, + [4059] = {.lex_state = 127, .external_lex_state = 2}, + [4060] = {.lex_state = 127, .external_lex_state = 5}, + [4061] = {.lex_state = 127, .external_lex_state = 2}, + [4062] = {.lex_state = 127, .external_lex_state = 6}, + [4063] = {.lex_state = 127, .external_lex_state = 2}, + [4064] = {.lex_state = 127, .external_lex_state = 5}, + [4065] = {.lex_state = 127, .external_lex_state = 2}, + [4066] = {.lex_state = 127, .external_lex_state = 5}, + [4067] = {.lex_state = 127, .external_lex_state = 5}, + [4068] = {.lex_state = 127, .external_lex_state = 5}, + [4069] = {.lex_state = 127, .external_lex_state = 5}, + [4070] = {.lex_state = 127, .external_lex_state = 2}, + [4071] = {.lex_state = 127, .external_lex_state = 5}, + [4072] = {.lex_state = 127, .external_lex_state = 5}, + [4073] = {.lex_state = 127, .external_lex_state = 5}, + [4074] = {.lex_state = 127, .external_lex_state = 5}, + [4075] = {.lex_state = 127, .external_lex_state = 5}, + [4076] = {.lex_state = 127, .external_lex_state = 2}, + [4077] = {.lex_state = 17, .external_lex_state = 9}, + [4078] = {.lex_state = 127, .external_lex_state = 5}, + [4079] = {.lex_state = 127, .external_lex_state = 5}, + [4080] = {.lex_state = 127, .external_lex_state = 5}, + [4081] = {.lex_state = 127, .external_lex_state = 2}, + [4082] = {.lex_state = 127, .external_lex_state = 5}, + [4083] = {.lex_state = 127, .external_lex_state = 5}, + [4084] = {.lex_state = 19, .external_lex_state = 2}, + [4085] = {.lex_state = 127, .external_lex_state = 2}, + [4086] = {.lex_state = 19, .external_lex_state = 2}, + [4087] = {.lex_state = 127, .external_lex_state = 2}, + [4088] = {.lex_state = 127, .external_lex_state = 5}, + [4089] = {.lex_state = 127, .external_lex_state = 5}, + [4090] = {.lex_state = 127, .external_lex_state = 5}, + [4091] = {.lex_state = 127, .external_lex_state = 2}, + [4092] = {.lex_state = 127, .external_lex_state = 2}, + [4093] = {.lex_state = 127, .external_lex_state = 5}, + [4094] = {.lex_state = 127, .external_lex_state = 5}, + [4095] = {.lex_state = 127, .external_lex_state = 5}, + [4096] = {.lex_state = 127, .external_lex_state = 5}, + [4097] = {.lex_state = 127, .external_lex_state = 5}, + [4098] = {.lex_state = 17, .external_lex_state = 9}, + [4099] = {.lex_state = 127, .external_lex_state = 5}, + [4100] = {.lex_state = 127, .external_lex_state = 5}, + [4101] = {.lex_state = 127, .external_lex_state = 5}, + [4102] = {.lex_state = 127, .external_lex_state = 5}, + [4103] = {.lex_state = 127, .external_lex_state = 5}, + [4104] = {.lex_state = 127, .external_lex_state = 2}, + [4105] = {.lex_state = 127, .external_lex_state = 5}, + [4106] = {.lex_state = 127, .external_lex_state = 5}, + [4107] = {.lex_state = 127, .external_lex_state = 5}, + [4108] = {.lex_state = 127, .external_lex_state = 5}, + [4109] = {.lex_state = 127, .external_lex_state = 5}, + [4110] = {.lex_state = 127, .external_lex_state = 2}, + [4111] = {.lex_state = 127, .external_lex_state = 5}, + [4112] = {.lex_state = 127, .external_lex_state = 5}, + [4113] = {.lex_state = 127, .external_lex_state = 5}, + [4114] = {.lex_state = 127, .external_lex_state = 5}, + [4115] = {.lex_state = 11, .external_lex_state = 2}, + [4116] = {.lex_state = 127, .external_lex_state = 5}, + [4117] = {.lex_state = 127, .external_lex_state = 5}, + [4118] = {.lex_state = 127, .external_lex_state = 5}, + [4119] = {.lex_state = 127, .external_lex_state = 5}, + [4120] = {.lex_state = 127, .external_lex_state = 5}, + [4121] = {.lex_state = 127, .external_lex_state = 5}, + [4122] = {.lex_state = 127, .external_lex_state = 5}, + [4123] = {.lex_state = 127, .external_lex_state = 5}, + [4124] = {.lex_state = 127, .external_lex_state = 5}, + [4125] = {.lex_state = 127, .external_lex_state = 5}, + [4126] = {.lex_state = 127, .external_lex_state = 5}, + [4127] = {.lex_state = 127, .external_lex_state = 5}, + [4128] = {.lex_state = 127, .external_lex_state = 5}, + [4129] = {.lex_state = 127, .external_lex_state = 5}, + [4130] = {.lex_state = 127, .external_lex_state = 5}, + [4131] = {.lex_state = 127, .external_lex_state = 5}, + [4132] = {.lex_state = 127, .external_lex_state = 5}, + [4133] = {.lex_state = 127, .external_lex_state = 5}, + [4134] = {.lex_state = 127, .external_lex_state = 5}, + [4135] = {.lex_state = 127, .external_lex_state = 2}, + [4136] = {.lex_state = 127, .external_lex_state = 2}, + [4137] = {.lex_state = 127, .external_lex_state = 5}, + [4138] = {.lex_state = 127, .external_lex_state = 5}, + [4139] = {.lex_state = 127, .external_lex_state = 5}, + [4140] = {.lex_state = 127, .external_lex_state = 5}, + [4141] = {.lex_state = 127, .external_lex_state = 5}, + [4142] = {.lex_state = 127, .external_lex_state = 5}, + [4143] = {.lex_state = 127, .external_lex_state = 5}, + [4144] = {.lex_state = 127, .external_lex_state = 5}, + [4145] = {.lex_state = 127, .external_lex_state = 2}, + [4146] = {.lex_state = 127, .external_lex_state = 5}, + [4147] = {.lex_state = 17, .external_lex_state = 9}, + [4148] = {.lex_state = 127, .external_lex_state = 2}, + [4149] = {.lex_state = 127, .external_lex_state = 5}, + [4150] = {.lex_state = 127, .external_lex_state = 2}, + [4151] = {.lex_state = 19, .external_lex_state = 2}, + [4152] = {.lex_state = 127, .external_lex_state = 5}, + [4153] = {.lex_state = 127, .external_lex_state = 5}, + [4154] = {.lex_state = 127, .external_lex_state = 5}, + [4155] = {.lex_state = 127, .external_lex_state = 5}, + [4156] = {.lex_state = 127, .external_lex_state = 2}, + [4157] = {.lex_state = 127, .external_lex_state = 2}, + [4158] = {.lex_state = 127, .external_lex_state = 6}, + [4159] = {.lex_state = 127, .external_lex_state = 5}, + [4160] = {.lex_state = 127, .external_lex_state = 5}, + [4161] = {.lex_state = 127, .external_lex_state = 2}, + [4162] = {.lex_state = 127, .external_lex_state = 5}, + [4163] = {.lex_state = 127, .external_lex_state = 2}, + [4164] = {.lex_state = 127, .external_lex_state = 5}, + [4165] = {.lex_state = 127, .external_lex_state = 5}, + [4166] = {.lex_state = 127, .external_lex_state = 5}, + [4167] = {.lex_state = 127, .external_lex_state = 5}, + [4168] = {.lex_state = 127, .external_lex_state = 5}, + [4169] = {.lex_state = 127, .external_lex_state = 5}, + [4170] = {.lex_state = 127, .external_lex_state = 5}, + [4171] = {.lex_state = 127, .external_lex_state = 5}, + [4172] = {.lex_state = 127, .external_lex_state = 5}, + [4173] = {.lex_state = 127, .external_lex_state = 5}, + [4174] = {.lex_state = 127, .external_lex_state = 5}, + [4175] = {.lex_state = 127, .external_lex_state = 5}, + [4176] = {.lex_state = 127, .external_lex_state = 5}, + [4177] = {.lex_state = 127, .external_lex_state = 5}, + [4178] = {.lex_state = 19, .external_lex_state = 2}, + [4179] = {.lex_state = 127, .external_lex_state = 5}, + [4180] = {.lex_state = 127, .external_lex_state = 5}, + [4181] = {.lex_state = 127, .external_lex_state = 5}, + [4182] = {.lex_state = 127, .external_lex_state = 5}, + [4183] = {.lex_state = 127, .external_lex_state = 5}, + [4184] = {.lex_state = 127, .external_lex_state = 5}, + [4185] = {.lex_state = 127, .external_lex_state = 5}, + [4186] = {.lex_state = 127, .external_lex_state = 5}, + [4187] = {.lex_state = 127, .external_lex_state = 5}, + [4188] = {.lex_state = 127, .external_lex_state = 2}, + [4189] = {.lex_state = 127, .external_lex_state = 5}, + [4190] = {.lex_state = 127, .external_lex_state = 2}, + [4191] = {.lex_state = 127, .external_lex_state = 5}, + [4192] = {.lex_state = 127, .external_lex_state = 5}, + [4193] = {.lex_state = 127, .external_lex_state = 2}, + [4194] = {.lex_state = 127, .external_lex_state = 5}, + [4195] = {.lex_state = 127, .external_lex_state = 5}, + [4196] = {.lex_state = 127, .external_lex_state = 5}, + [4197] = {.lex_state = 127, .external_lex_state = 5}, + [4198] = {.lex_state = 127, .external_lex_state = 5}, + [4199] = {.lex_state = 127, .external_lex_state = 2}, + [4200] = {.lex_state = 127, .external_lex_state = 5}, + [4201] = {.lex_state = 127, .external_lex_state = 5}, + [4202] = {.lex_state = 127, .external_lex_state = 5}, + [4203] = {.lex_state = 127, .external_lex_state = 2}, + [4204] = {.lex_state = 127, .external_lex_state = 2}, + [4205] = {.lex_state = 127, .external_lex_state = 5}, + [4206] = {.lex_state = 127, .external_lex_state = 5}, + [4207] = {.lex_state = 127, .external_lex_state = 5}, + [4208] = {.lex_state = 127, .external_lex_state = 5}, + [4209] = {.lex_state = 127, .external_lex_state = 5}, + [4210] = {.lex_state = 127, .external_lex_state = 5}, + [4211] = {.lex_state = 127, .external_lex_state = 5}, + [4212] = {.lex_state = 19, .external_lex_state = 2}, + [4213] = {.lex_state = 19, .external_lex_state = 2}, + [4214] = {.lex_state = 127, .external_lex_state = 5}, + [4215] = {.lex_state = 127, .external_lex_state = 5}, + [4216] = {.lex_state = 127, .external_lex_state = 5}, + [4217] = {.lex_state = 127, .external_lex_state = 5}, + [4218] = {.lex_state = 127, .external_lex_state = 2}, + [4219] = {.lex_state = 127, .external_lex_state = 5}, + [4220] = {.lex_state = 11, .external_lex_state = 2}, + [4221] = {.lex_state = 127, .external_lex_state = 5}, + [4222] = {.lex_state = 127, .external_lex_state = 5}, + [4223] = {.lex_state = 17, .external_lex_state = 9}, + [4224] = {.lex_state = 127, .external_lex_state = 5}, + [4225] = {.lex_state = 127, .external_lex_state = 2}, + [4226] = {.lex_state = 127, .external_lex_state = 2}, + [4227] = {.lex_state = 127, .external_lex_state = 5}, + [4228] = {.lex_state = 127, .external_lex_state = 5}, + [4229] = {.lex_state = 127, .external_lex_state = 2}, + [4230] = {.lex_state = 127, .external_lex_state = 2}, + [4231] = {.lex_state = 127, .external_lex_state = 6}, + [4232] = {.lex_state = 127, .external_lex_state = 6}, + [4233] = {.lex_state = 127, .external_lex_state = 5}, + [4234] = {.lex_state = 127, .external_lex_state = 2}, + [4235] = {.lex_state = 17, .external_lex_state = 9}, + [4236] = {.lex_state = 127, .external_lex_state = 5}, + [4237] = {.lex_state = 19, .external_lex_state = 2}, + [4238] = {.lex_state = 127, .external_lex_state = 2}, + [4239] = {.lex_state = 127, .external_lex_state = 5}, + [4240] = {.lex_state = 127, .external_lex_state = 6}, + [4241] = {.lex_state = 127, .external_lex_state = 2}, + [4242] = {.lex_state = 127, .external_lex_state = 5}, + [4243] = {.lex_state = 127, .external_lex_state = 2}, + [4244] = {.lex_state = 127, .external_lex_state = 2}, + [4245] = {.lex_state = 127, .external_lex_state = 5}, + [4246] = {.lex_state = 127, .external_lex_state = 5}, + [4247] = {.lex_state = 127, .external_lex_state = 2}, + [4248] = {.lex_state = 127, .external_lex_state = 5}, + [4249] = {.lex_state = 2, .external_lex_state = 2}, + [4250] = {.lex_state = 19, .external_lex_state = 2}, + [4251] = {.lex_state = 19, .external_lex_state = 2}, + [4252] = {.lex_state = 127, .external_lex_state = 5}, + [4253] = {.lex_state = 127, .external_lex_state = 5}, + [4254] = {.lex_state = 127, .external_lex_state = 5}, + [4255] = {.lex_state = 19, .external_lex_state = 2}, + [4256] = {.lex_state = 127, .external_lex_state = 2}, + [4257] = {.lex_state = 127, .external_lex_state = 5}, + [4258] = {.lex_state = 127, .external_lex_state = 5}, + [4259] = {.lex_state = 17, .external_lex_state = 9}, + [4260] = {.lex_state = 127, .external_lex_state = 5}, + [4261] = {.lex_state = 127, .external_lex_state = 5}, + [4262] = {.lex_state = 127, .external_lex_state = 5}, + [4263] = {.lex_state = 127, .external_lex_state = 5}, + [4264] = {.lex_state = 127, .external_lex_state = 2}, + [4265] = {.lex_state = 127, .external_lex_state = 5}, + [4266] = {.lex_state = 127, .external_lex_state = 2}, + [4267] = {.lex_state = 2, .external_lex_state = 2}, + [4268] = {.lex_state = 127, .external_lex_state = 5}, + [4269] = {.lex_state = 19, .external_lex_state = 2}, + [4270] = {.lex_state = 127, .external_lex_state = 2}, + [4271] = {.lex_state = 127, .external_lex_state = 5}, + [4272] = {.lex_state = 127, .external_lex_state = 5}, + [4273] = {.lex_state = 19, .external_lex_state = 2}, + [4274] = {.lex_state = 127, .external_lex_state = 5}, + [4275] = {.lex_state = 127, .external_lex_state = 5}, + [4276] = {.lex_state = 127, .external_lex_state = 5}, + [4277] = {.lex_state = 127, .external_lex_state = 5}, + [4278] = {.lex_state = 127, .external_lex_state = 5}, + [4279] = {.lex_state = 127, .external_lex_state = 5}, + [4280] = {.lex_state = 127, .external_lex_state = 5}, + [4281] = {.lex_state = 127, .external_lex_state = 6}, + [4282] = {.lex_state = 127, .external_lex_state = 5}, + [4283] = {.lex_state = 127, .external_lex_state = 2}, + [4284] = {.lex_state = 127, .external_lex_state = 5}, + [4285] = {.lex_state = 127, .external_lex_state = 5}, + [4286] = {.lex_state = 127, .external_lex_state = 5}, + [4287] = {.lex_state = 127, .external_lex_state = 5}, + [4288] = {.lex_state = 127, .external_lex_state = 5}, + [4289] = {.lex_state = 127, .external_lex_state = 5}, + [4290] = {.lex_state = 17, .external_lex_state = 9}, + [4291] = {.lex_state = 127, .external_lex_state = 5}, + [4292] = {.lex_state = 127, .external_lex_state = 5}, + [4293] = {.lex_state = 127, .external_lex_state = 5}, + [4294] = {.lex_state = 17, .external_lex_state = 9}, + [4295] = {.lex_state = 127, .external_lex_state = 5}, + [4296] = {.lex_state = 127, .external_lex_state = 5}, + [4297] = {.lex_state = 127, .external_lex_state = 5}, + [4298] = {.lex_state = 127, .external_lex_state = 6}, + [4299] = {.lex_state = 127, .external_lex_state = 5}, + [4300] = {.lex_state = 127, .external_lex_state = 2}, + [4301] = {.lex_state = 127, .external_lex_state = 5}, + [4302] = {.lex_state = 127, .external_lex_state = 5}, + [4303] = {.lex_state = 127, .external_lex_state = 2}, + [4304] = {.lex_state = 127, .external_lex_state = 5}, + [4305] = {.lex_state = 127, .external_lex_state = 5}, + [4306] = {.lex_state = 127, .external_lex_state = 5}, + [4307] = {.lex_state = 127, .external_lex_state = 2}, + [4308] = {.lex_state = 127, .external_lex_state = 2}, + [4309] = {.lex_state = 127, .external_lex_state = 2}, + [4310] = {.lex_state = 127, .external_lex_state = 5}, + [4311] = {.lex_state = 127, .external_lex_state = 2}, + [4312] = {.lex_state = 127, .external_lex_state = 2}, + [4313] = {.lex_state = 127, .external_lex_state = 2}, + [4314] = {.lex_state = 127, .external_lex_state = 2}, + [4315] = {.lex_state = 127, .external_lex_state = 2}, + [4316] = {.lex_state = 127, .external_lex_state = 5}, + [4317] = {.lex_state = 127, .external_lex_state = 5}, + [4318] = {.lex_state = 127, .external_lex_state = 2}, + [4319] = {.lex_state = 127, .external_lex_state = 2}, + [4320] = {.lex_state = 127, .external_lex_state = 2}, + [4321] = {.lex_state = 127, .external_lex_state = 5}, + [4322] = {.lex_state = 127, .external_lex_state = 6}, + [4323] = {.lex_state = 127, .external_lex_state = 5}, + [4324] = {.lex_state = 127, .external_lex_state = 2}, + [4325] = {.lex_state = 127, .external_lex_state = 5}, + [4326] = {.lex_state = 127, .external_lex_state = 5}, + [4327] = {.lex_state = 127, .external_lex_state = 5}, + [4328] = {.lex_state = 127, .external_lex_state = 5}, + [4329] = {.lex_state = 127, .external_lex_state = 5}, + [4330] = {.lex_state = 127, .external_lex_state = 5}, + [4331] = {.lex_state = 127, .external_lex_state = 2}, + [4332] = {.lex_state = 127, .external_lex_state = 5}, + [4333] = {.lex_state = 127, .external_lex_state = 5}, + [4334] = {.lex_state = 127, .external_lex_state = 5}, + [4335] = {.lex_state = 127, .external_lex_state = 5}, + [4336] = {.lex_state = 127, .external_lex_state = 2}, + [4337] = {.lex_state = 127, .external_lex_state = 5}, + [4338] = {.lex_state = 127, .external_lex_state = 5}, + [4339] = {.lex_state = 127, .external_lex_state = 5}, + [4340] = {.lex_state = 127, .external_lex_state = 5}, + [4341] = {.lex_state = 127, .external_lex_state = 5}, + [4342] = {.lex_state = 127, .external_lex_state = 6}, + [4343] = {.lex_state = 127, .external_lex_state = 5}, + [4344] = {.lex_state = 127, .external_lex_state = 5}, + [4345] = {.lex_state = 127, .external_lex_state = 5}, + [4346] = {.lex_state = 127, .external_lex_state = 5}, + [4347] = {.lex_state = 127, .external_lex_state = 2}, + [4348] = {.lex_state = 127, .external_lex_state = 5}, + [4349] = {.lex_state = 127, .external_lex_state = 5}, + [4350] = {.lex_state = 127, .external_lex_state = 5}, + [4351] = {.lex_state = 127, .external_lex_state = 5}, + [4352] = {.lex_state = 127, .external_lex_state = 5}, + [4353] = {.lex_state = 127, .external_lex_state = 5}, + [4354] = {.lex_state = 127, .external_lex_state = 5}, + [4355] = {.lex_state = 127, .external_lex_state = 5}, + [4356] = {.lex_state = 127, .external_lex_state = 5}, + [4357] = {.lex_state = 127, .external_lex_state = 5}, + [4358] = {.lex_state = 127, .external_lex_state = 5}, + [4359] = {.lex_state = 127, .external_lex_state = 5}, + [4360] = {.lex_state = 127, .external_lex_state = 5}, + [4361] = {.lex_state = 127, .external_lex_state = 5}, + [4362] = {.lex_state = 127, .external_lex_state = 5}, + [4363] = {.lex_state = 127, .external_lex_state = 5}, + [4364] = {.lex_state = 127, .external_lex_state = 2}, + [4365] = {.lex_state = 127, .external_lex_state = 5}, + [4366] = {.lex_state = 127, .external_lex_state = 5}, + [4367] = {.lex_state = 127, .external_lex_state = 5}, + [4368] = {.lex_state = 127, .external_lex_state = 5}, + [4369] = {.lex_state = 127, .external_lex_state = 5}, + [4370] = {.lex_state = 127, .external_lex_state = 5}, + [4371] = {.lex_state = 127, .external_lex_state = 5}, + [4372] = {.lex_state = 127, .external_lex_state = 5}, + [4373] = {.lex_state = 127, .external_lex_state = 6}, + [4374] = {.lex_state = 127, .external_lex_state = 5}, + [4375] = {.lex_state = 17, .external_lex_state = 9}, + [4376] = {.lex_state = 127, .external_lex_state = 5}, + [4377] = {.lex_state = 19, .external_lex_state = 2}, + [4378] = {.lex_state = 19, .external_lex_state = 2}, + [4379] = {.lex_state = 127, .external_lex_state = 5}, + [4380] = {.lex_state = 127, .external_lex_state = 5}, + [4381] = {.lex_state = 127, .external_lex_state = 5}, + [4382] = {.lex_state = 127, .external_lex_state = 2}, + [4383] = {.lex_state = 127, .external_lex_state = 5}, + [4384] = {.lex_state = 127, .external_lex_state = 5}, + [4385] = {.lex_state = 127, .external_lex_state = 5}, + [4386] = {.lex_state = 127, .external_lex_state = 2}, + [4387] = {.lex_state = 127, .external_lex_state = 6}, + [4388] = {.lex_state = 19, .external_lex_state = 2}, + [4389] = {.lex_state = 127, .external_lex_state = 2}, + [4390] = {.lex_state = 127, .external_lex_state = 5}, + [4391] = {.lex_state = 127, .external_lex_state = 2}, + [4392] = {.lex_state = 19, .external_lex_state = 2}, + [4393] = {.lex_state = 19, .external_lex_state = 2}, + [4394] = {.lex_state = 19, .external_lex_state = 2}, + [4395] = {.lex_state = 127, .external_lex_state = 5}, + [4396] = {.lex_state = 127, .external_lex_state = 5}, + [4397] = {.lex_state = 127, .external_lex_state = 5}, + [4398] = {.lex_state = 127, .external_lex_state = 5}, + [4399] = {.lex_state = 127, .external_lex_state = 5}, + [4400] = {.lex_state = 19, .external_lex_state = 2}, + [4401] = {.lex_state = 19, .external_lex_state = 2}, + [4402] = {.lex_state = 127, .external_lex_state = 5}, + [4403] = {.lex_state = 127, .external_lex_state = 5}, + [4404] = {.lex_state = 127, .external_lex_state = 6}, + [4405] = {.lex_state = 127, .external_lex_state = 5}, + [4406] = {.lex_state = 127, .external_lex_state = 5}, + [4407] = {.lex_state = 127, .external_lex_state = 5}, + [4408] = {.lex_state = 127, .external_lex_state = 5}, + [4409] = {.lex_state = 127, .external_lex_state = 5}, + [4410] = {.lex_state = 11, .external_lex_state = 2}, + [4411] = {.lex_state = 127, .external_lex_state = 5}, + [4412] = {.lex_state = 127, .external_lex_state = 5}, + [4413] = {.lex_state = 127, .external_lex_state = 5}, + [4414] = {.lex_state = 127, .external_lex_state = 5}, + [4415] = {.lex_state = 127, .external_lex_state = 5}, + [4416] = {.lex_state = 127, .external_lex_state = 5}, + [4417] = {.lex_state = 127, .external_lex_state = 2}, + [4418] = {.lex_state = 127, .external_lex_state = 2}, + [4419] = {.lex_state = 127, .external_lex_state = 5}, + [4420] = {.lex_state = 127, .external_lex_state = 5}, + [4421] = {.lex_state = 127, .external_lex_state = 5}, + [4422] = {.lex_state = 127, .external_lex_state = 5}, + [4423] = {.lex_state = 127, .external_lex_state = 5}, + [4424] = {.lex_state = 127, .external_lex_state = 2}, + [4425] = {.lex_state = 127, .external_lex_state = 5}, + [4426] = {.lex_state = 127, .external_lex_state = 5}, + [4427] = {.lex_state = 127, .external_lex_state = 5}, + [4428] = {.lex_state = 127, .external_lex_state = 5}, + [4429] = {.lex_state = 127, .external_lex_state = 2}, + [4430] = {.lex_state = 127, .external_lex_state = 5}, + [4431] = {.lex_state = 127, .external_lex_state = 5}, + [4432] = {.lex_state = 127, .external_lex_state = 5}, + [4433] = {.lex_state = 127, .external_lex_state = 5}, + [4434] = {.lex_state = 127, .external_lex_state = 2}, + [4435] = {.lex_state = 127, .external_lex_state = 2}, + [4436] = {.lex_state = 127, .external_lex_state = 2}, + [4437] = {.lex_state = 127, .external_lex_state = 5}, + [4438] = {.lex_state = 127, .external_lex_state = 5}, + [4439] = {.lex_state = 19, .external_lex_state = 2}, + [4440] = {.lex_state = 127, .external_lex_state = 5}, + [4441] = {.lex_state = 19, .external_lex_state = 2}, + [4442] = {.lex_state = 127, .external_lex_state = 5}, + [4443] = {.lex_state = 127, .external_lex_state = 5}, + [4444] = {.lex_state = 8, .external_lex_state = 2}, + [4445] = {.lex_state = 127, .external_lex_state = 5}, + [4446] = {.lex_state = 127, .external_lex_state = 5}, + [4447] = {.lex_state = 127, .external_lex_state = 2}, + [4448] = {.lex_state = 7, .external_lex_state = 2}, + [4449] = {.lex_state = 127, .external_lex_state = 5}, + [4450] = {.lex_state = 127, .external_lex_state = 5}, + [4451] = {.lex_state = 127, .external_lex_state = 5}, + [4452] = {.lex_state = 127, .external_lex_state = 5}, + [4453] = {.lex_state = 127, .external_lex_state = 5}, + [4454] = {.lex_state = 127, .external_lex_state = 5}, + [4455] = {.lex_state = 127, .external_lex_state = 5}, + [4456] = {.lex_state = 127, .external_lex_state = 5}, + [4457] = {.lex_state = 127, .external_lex_state = 5}, + [4458] = {.lex_state = 127, .external_lex_state = 2}, + [4459] = {.lex_state = 127, .external_lex_state = 5}, + [4460] = {.lex_state = 127, .external_lex_state = 5}, + [4461] = {.lex_state = 127, .external_lex_state = 5}, + [4462] = {.lex_state = 127, .external_lex_state = 5}, + [4463] = {.lex_state = 127, .external_lex_state = 5}, + [4464] = {.lex_state = 127, .external_lex_state = 5}, + [4465] = {.lex_state = 127, .external_lex_state = 2}, + [4466] = {.lex_state = 127, .external_lex_state = 5}, + [4467] = {.lex_state = 127, .external_lex_state = 2}, + [4468] = {.lex_state = 2, .external_lex_state = 2}, + [4469] = {.lex_state = 127, .external_lex_state = 5}, + [4470] = {.lex_state = 127, .external_lex_state = 2}, + [4471] = {.lex_state = 127, .external_lex_state = 2}, + [4472] = {.lex_state = 14, .external_lex_state = 10}, + [4473] = {.lex_state = 127, .external_lex_state = 5}, + [4474] = {.lex_state = 22, .external_lex_state = 10}, + [4475] = {.lex_state = 127, .external_lex_state = 2}, + [4476] = {.lex_state = 127, .external_lex_state = 2}, + [4477] = {.lex_state = 127, .external_lex_state = 2}, + [4478] = {.lex_state = 14, .external_lex_state = 10}, + [4479] = {.lex_state = 127, .external_lex_state = 2}, + [4480] = {.lex_state = 22, .external_lex_state = 10}, + [4481] = {.lex_state = 127, .external_lex_state = 2}, + [4482] = {.lex_state = 127, .external_lex_state = 2}, + [4483] = {.lex_state = 127, .external_lex_state = 2}, + [4484] = {.lex_state = 17, .external_lex_state = 8}, + [4485] = {.lex_state = 127, .external_lex_state = 2}, + [4486] = {.lex_state = 127, .external_lex_state = 5}, + [4487] = {.lex_state = 127, .external_lex_state = 2}, + [4488] = {.lex_state = 22, .external_lex_state = 10}, + [4489] = {.lex_state = 14, .external_lex_state = 10}, + [4490] = {.lex_state = 22, .external_lex_state = 10}, + [4491] = {.lex_state = 127, .external_lex_state = 2}, + [4492] = {.lex_state = 14, .external_lex_state = 10}, + [4493] = {.lex_state = 127, .external_lex_state = 2}, + [4494] = {.lex_state = 7, .external_lex_state = 2}, + [4495] = {.lex_state = 127, .external_lex_state = 2}, + [4496] = {.lex_state = 127, .external_lex_state = 5}, + [4497] = {.lex_state = 127, .external_lex_state = 2}, + [4498] = {.lex_state = 127, .external_lex_state = 2}, + [4499] = {.lex_state = 127, .external_lex_state = 2}, + [4500] = {.lex_state = 127, .external_lex_state = 2}, + [4501] = {.lex_state = 2, .external_lex_state = 2}, + [4502] = {.lex_state = 127, .external_lex_state = 2}, + [4503] = {.lex_state = 127, .external_lex_state = 2}, + [4504] = {.lex_state = 127, .external_lex_state = 2}, + [4505] = {.lex_state = 127, .external_lex_state = 2}, + [4506] = {.lex_state = 127, .external_lex_state = 2}, + [4507] = {.lex_state = 127, .external_lex_state = 2}, + [4508] = {.lex_state = 127, .external_lex_state = 2}, + [4509] = {.lex_state = 22, .external_lex_state = 10}, + [4510] = {.lex_state = 14, .external_lex_state = 10}, + [4511] = {.lex_state = 14, .external_lex_state = 10}, + [4512] = {.lex_state = 127, .external_lex_state = 2}, + [4513] = {.lex_state = 127, .external_lex_state = 2}, + [4514] = {.lex_state = 127, .external_lex_state = 2}, + [4515] = {.lex_state = 14, .external_lex_state = 10}, + [4516] = {.lex_state = 22, .external_lex_state = 10}, + [4517] = {.lex_state = 127, .external_lex_state = 2}, + [4518] = {.lex_state = 127, .external_lex_state = 5}, + [4519] = {.lex_state = 127, .external_lex_state = 2}, + [4520] = {.lex_state = 14, .external_lex_state = 10}, + [4521] = {.lex_state = 127, .external_lex_state = 5}, + [4522] = {.lex_state = 127, .external_lex_state = 5}, + [4523] = {.lex_state = 127, .external_lex_state = 2}, + [4524] = {.lex_state = 22, .external_lex_state = 10}, + [4525] = {.lex_state = 127, .external_lex_state = 2}, + [4526] = {.lex_state = 22, .external_lex_state = 10}, + [4527] = {.lex_state = 127, .external_lex_state = 2}, + [4528] = {.lex_state = 22, .external_lex_state = 10}, + [4529] = {.lex_state = 127, .external_lex_state = 2}, + [4530] = {.lex_state = 127, .external_lex_state = 2}, + [4531] = {.lex_state = 127, .external_lex_state = 2}, + [4532] = {.lex_state = 127, .external_lex_state = 2}, + [4533] = {.lex_state = 127, .external_lex_state = 5}, + [4534] = {.lex_state = 127, .external_lex_state = 5}, + [4535] = {.lex_state = 127, .external_lex_state = 2}, + [4536] = {.lex_state = 127, .external_lex_state = 2}, + [4537] = {.lex_state = 14, .external_lex_state = 10}, + [4538] = {.lex_state = 127, .external_lex_state = 2}, + [4539] = {.lex_state = 127, .external_lex_state = 2}, + [4540] = {.lex_state = 127, .external_lex_state = 2}, + [4541] = {.lex_state = 22, .external_lex_state = 10}, + [4542] = {.lex_state = 127, .external_lex_state = 2}, + [4543] = {.lex_state = 127, .external_lex_state = 2}, + [4544] = {.lex_state = 7, .external_lex_state = 2}, + [4545] = {.lex_state = 127, .external_lex_state = 2}, + [4546] = {.lex_state = 127, .external_lex_state = 2}, + [4547] = {.lex_state = 127, .external_lex_state = 2}, + [4548] = {.lex_state = 127, .external_lex_state = 2}, + [4549] = {.lex_state = 14, .external_lex_state = 10}, + [4550] = {.lex_state = 17, .external_lex_state = 8}, + [4551] = {.lex_state = 127, .external_lex_state = 2}, + [4552] = {.lex_state = 127, .external_lex_state = 2}, + [4553] = {.lex_state = 127, .external_lex_state = 5}, + [4554] = {.lex_state = 127, .external_lex_state = 5}, + [4555] = {.lex_state = 2, .external_lex_state = 2}, + [4556] = {.lex_state = 127, .external_lex_state = 5}, + [4557] = {.lex_state = 127, .external_lex_state = 5}, + [4558] = {.lex_state = 127, .external_lex_state = 5}, + [4559] = {.lex_state = 14, .external_lex_state = 10}, + [4560] = {.lex_state = 127, .external_lex_state = 2}, + [4561] = {.lex_state = 2, .external_lex_state = 2}, + [4562] = {.lex_state = 127, .external_lex_state = 2}, + [4563] = {.lex_state = 127, .external_lex_state = 2}, + [4564] = {.lex_state = 127, .external_lex_state = 2}, + [4565] = {.lex_state = 127, .external_lex_state = 6}, + [4566] = {.lex_state = 127, .external_lex_state = 2}, + [4567] = {.lex_state = 127, .external_lex_state = 2}, + [4568] = {.lex_state = 127, .external_lex_state = 2}, + [4569] = {.lex_state = 127, .external_lex_state = 2}, + [4570] = {.lex_state = 127, .external_lex_state = 2}, + [4571] = {.lex_state = 12, .external_lex_state = 2}, + [4572] = {.lex_state = 127, .external_lex_state = 2}, + [4573] = {.lex_state = 127, .external_lex_state = 2}, + [4574] = {.lex_state = 127, .external_lex_state = 2}, + [4575] = {.lex_state = 127, .external_lex_state = 2}, + [4576] = {.lex_state = 22, .external_lex_state = 10}, + [4577] = {.lex_state = 14, .external_lex_state = 10}, + [4578] = {.lex_state = 22, .external_lex_state = 10}, + [4579] = {.lex_state = 127, .external_lex_state = 2}, + [4580] = {.lex_state = 14, .external_lex_state = 10}, + [4581] = {.lex_state = 22, .external_lex_state = 10}, + [4582] = {.lex_state = 14, .external_lex_state = 10}, + [4583] = {.lex_state = 127, .external_lex_state = 2}, + [4584] = {.lex_state = 127, .external_lex_state = 2}, + [4585] = {.lex_state = 127, .external_lex_state = 2}, + [4586] = {.lex_state = 127, .external_lex_state = 2}, + [4587] = {.lex_state = 22, .external_lex_state = 10}, + [4588] = {.lex_state = 127, .external_lex_state = 2}, + [4589] = {.lex_state = 22, .external_lex_state = 10}, + [4590] = {.lex_state = 127, .external_lex_state = 5}, + [4591] = {.lex_state = 20, .external_lex_state = 2}, + [4592] = {.lex_state = 14, .external_lex_state = 10}, + [4593] = {.lex_state = 127, .external_lex_state = 2}, + [4594] = {.lex_state = 127, .external_lex_state = 2}, + [4595] = {.lex_state = 127, .external_lex_state = 2}, + [4596] = {.lex_state = 127, .external_lex_state = 2}, + [4597] = {.lex_state = 127, .external_lex_state = 2}, + [4598] = {.lex_state = 127, .external_lex_state = 2}, + [4599] = {.lex_state = 127, .external_lex_state = 2}, + [4600] = {.lex_state = 127, .external_lex_state = 2}, + [4601] = {.lex_state = 127, .external_lex_state = 5}, + [4602] = {.lex_state = 127, .external_lex_state = 5}, + [4603] = {.lex_state = 127, .external_lex_state = 2}, + [4604] = {.lex_state = 127, .external_lex_state = 2}, + [4605] = {.lex_state = 127, .external_lex_state = 2}, + [4606] = {.lex_state = 127, .external_lex_state = 2}, + [4607] = {.lex_state = 2, .external_lex_state = 2}, + [4608] = {.lex_state = 127, .external_lex_state = 2}, + [4609] = {.lex_state = 127, .external_lex_state = 2}, + [4610] = {.lex_state = 127, .external_lex_state = 2}, + [4611] = {.lex_state = 127, .external_lex_state = 2}, + [4612] = {.lex_state = 127, .external_lex_state = 2}, + [4613] = {.lex_state = 127, .external_lex_state = 5}, + [4614] = {.lex_state = 127, .external_lex_state = 2}, + [4615] = {.lex_state = 127, .external_lex_state = 5}, + [4616] = {.lex_state = 127, .external_lex_state = 5}, + [4617] = {.lex_state = 127, .external_lex_state = 5}, + [4618] = {.lex_state = 127, .external_lex_state = 5}, + [4619] = {.lex_state = 127, .external_lex_state = 5}, + [4620] = {.lex_state = 127, .external_lex_state = 2}, + [4621] = {.lex_state = 127, .external_lex_state = 5}, + [4622] = {.lex_state = 127, .external_lex_state = 5}, + [4623] = {.lex_state = 127, .external_lex_state = 5}, + [4624] = {.lex_state = 127, .external_lex_state = 5}, + [4625] = {.lex_state = 127, .external_lex_state = 2}, + [4626] = {.lex_state = 127, .external_lex_state = 5}, + [4627] = {.lex_state = 127, .external_lex_state = 5}, + [4628] = {.lex_state = 127, .external_lex_state = 5}, + [4629] = {.lex_state = 127, .external_lex_state = 5}, + [4630] = {.lex_state = 2, .external_lex_state = 2}, + [4631] = {.lex_state = 127, .external_lex_state = 5}, + [4632] = {.lex_state = 127, .external_lex_state = 5}, + [4633] = {.lex_state = 127, .external_lex_state = 5}, + [4634] = {.lex_state = 127, .external_lex_state = 2}, + [4635] = {.lex_state = 2, .external_lex_state = 2}, + [4636] = {.lex_state = 2, .external_lex_state = 2}, + [4637] = {.lex_state = 127, .external_lex_state = 5}, + [4638] = {.lex_state = 127, .external_lex_state = 2}, + [4639] = {.lex_state = 127, .external_lex_state = 2}, + [4640] = {.lex_state = 127, .external_lex_state = 5}, + [4641] = {.lex_state = 127, .external_lex_state = 5}, + [4642] = {.lex_state = 127, .external_lex_state = 5}, + [4643] = {.lex_state = 127, .external_lex_state = 5}, + [4644] = {.lex_state = 127, .external_lex_state = 5}, + [4645] = {.lex_state = 127, .external_lex_state = 5}, + [4646] = {.lex_state = 127, .external_lex_state = 2}, + [4647] = {.lex_state = 127, .external_lex_state = 2}, + [4648] = {.lex_state = 127, .external_lex_state = 5}, + [4649] = {.lex_state = 127, .external_lex_state = 5}, + [4650] = {.lex_state = 127, .external_lex_state = 2}, + [4651] = {.lex_state = 127, .external_lex_state = 5}, + [4652] = {.lex_state = 127, .external_lex_state = 2}, + [4653] = {.lex_state = 127, .external_lex_state = 5}, + [4654] = {.lex_state = 127, .external_lex_state = 2}, + [4655] = {.lex_state = 127, .external_lex_state = 2}, + [4656] = {.lex_state = 127, .external_lex_state = 2}, + [4657] = {.lex_state = 127, .external_lex_state = 5}, + [4658] = {.lex_state = 127, .external_lex_state = 2}, + [4659] = {.lex_state = 127, .external_lex_state = 2}, + [4660] = {.lex_state = 127, .external_lex_state = 5}, + [4661] = {.lex_state = 127, .external_lex_state = 5}, + [4662] = {.lex_state = 127, .external_lex_state = 2}, + [4663] = {.lex_state = 127, .external_lex_state = 2}, + [4664] = {.lex_state = 127, .external_lex_state = 5}, + [4665] = {.lex_state = 127, .external_lex_state = 5}, + [4666] = {.lex_state = 127, .external_lex_state = 5}, + [4667] = {.lex_state = 127, .external_lex_state = 5}, + [4668] = {.lex_state = 127, .external_lex_state = 5}, + [4669] = {.lex_state = 127, .external_lex_state = 5}, + [4670] = {.lex_state = 127, .external_lex_state = 2}, + [4671] = {.lex_state = 127, .external_lex_state = 2}, + [4672] = {.lex_state = 127, .external_lex_state = 5}, + [4673] = {.lex_state = 127, .external_lex_state = 5}, + [4674] = {.lex_state = 127, .external_lex_state = 5}, + [4675] = {.lex_state = 127, .external_lex_state = 5}, + [4676] = {.lex_state = 127, .external_lex_state = 5}, + [4677] = {.lex_state = 127, .external_lex_state = 2}, + [4678] = {.lex_state = 127, .external_lex_state = 2}, + [4679] = {.lex_state = 127, .external_lex_state = 2}, + [4680] = {.lex_state = 127, .external_lex_state = 2}, + [4681] = {.lex_state = 127, .external_lex_state = 5}, + [4682] = {.lex_state = 127, .external_lex_state = 5}, + [4683] = {.lex_state = 127, .external_lex_state = 5}, + [4684] = {.lex_state = 127, .external_lex_state = 5}, + [4685] = {.lex_state = 127, .external_lex_state = 5}, + [4686] = {.lex_state = 127, .external_lex_state = 5}, + [4687] = {.lex_state = 127, .external_lex_state = 5}, + [4688] = {.lex_state = 127, .external_lex_state = 2}, + [4689] = {.lex_state = 127, .external_lex_state = 2}, + [4690] = {.lex_state = 127, .external_lex_state = 2}, + [4691] = {.lex_state = 127, .external_lex_state = 5}, + [4692] = {.lex_state = 127, .external_lex_state = 2}, + [4693] = {.lex_state = 127, .external_lex_state = 5}, + [4694] = {.lex_state = 127, .external_lex_state = 2}, + [4695] = {.lex_state = 127, .external_lex_state = 5}, + [4696] = {.lex_state = 127, .external_lex_state = 2}, + [4697] = {.lex_state = 127, .external_lex_state = 2}, + [4698] = {.lex_state = 127, .external_lex_state = 2}, + [4699] = {.lex_state = 127, .external_lex_state = 2}, + [4700] = {.lex_state = 127, .external_lex_state = 5}, + [4701] = {.lex_state = 127, .external_lex_state = 2}, + [4702] = {.lex_state = 127, .external_lex_state = 5}, + [4703] = {.lex_state = 127, .external_lex_state = 5}, + [4704] = {.lex_state = 127, .external_lex_state = 5}, + [4705] = {.lex_state = 127, .external_lex_state = 5}, + [4706] = {.lex_state = 127, .external_lex_state = 5}, + [4707] = {.lex_state = 127, .external_lex_state = 5}, + [4708] = {.lex_state = 127, .external_lex_state = 5}, + [4709] = {.lex_state = 127, .external_lex_state = 5}, + [4710] = {.lex_state = 127, .external_lex_state = 2}, + [4711] = {.lex_state = 127, .external_lex_state = 2}, + [4712] = {.lex_state = 127, .external_lex_state = 5}, + [4713] = {.lex_state = 127, .external_lex_state = 5}, + [4714] = {.lex_state = 127, .external_lex_state = 2}, + [4715] = {.lex_state = 127, .external_lex_state = 2}, + [4716] = {.lex_state = 127, .external_lex_state = 5}, + [4717] = {.lex_state = 127, .external_lex_state = 5}, + [4718] = {.lex_state = 127, .external_lex_state = 5}, + [4719] = {.lex_state = 127, .external_lex_state = 2}, + [4720] = {.lex_state = 127, .external_lex_state = 5}, + [4721] = {.lex_state = 127, .external_lex_state = 2}, + [4722] = {.lex_state = 127, .external_lex_state = 5}, + [4723] = {.lex_state = 127, .external_lex_state = 5}, + [4724] = {.lex_state = 127, .external_lex_state = 5}, + [4725] = {.lex_state = 127, .external_lex_state = 5}, + [4726] = {.lex_state = 127, .external_lex_state = 5}, + [4727] = {.lex_state = 127, .external_lex_state = 5}, + [4728] = {.lex_state = 127, .external_lex_state = 5}, + [4729] = {.lex_state = 127, .external_lex_state = 5}, + [4730] = {.lex_state = 127, .external_lex_state = 5}, + [4731] = {.lex_state = 127, .external_lex_state = 5}, + [4732] = {.lex_state = 127, .external_lex_state = 2}, + [4733] = {.lex_state = 127, .external_lex_state = 2}, + [4734] = {.lex_state = 127, .external_lex_state = 5}, + [4735] = {.lex_state = 127, .external_lex_state = 5}, + [4736] = {.lex_state = 127, .external_lex_state = 5}, + [4737] = {.lex_state = 127, .external_lex_state = 2}, + [4738] = {.lex_state = 127, .external_lex_state = 5}, + [4739] = {.lex_state = 127, .external_lex_state = 2}, + [4740] = {.lex_state = 127, .external_lex_state = 5}, + [4741] = {.lex_state = 127, .external_lex_state = 5}, + [4742] = {.lex_state = 127, .external_lex_state = 5}, + [4743] = {.lex_state = 127, .external_lex_state = 5}, + [4744] = {.lex_state = 127, .external_lex_state = 5}, + [4745] = {.lex_state = 127, .external_lex_state = 5}, + [4746] = {.lex_state = 127, .external_lex_state = 5}, + [4747] = {.lex_state = 127, .external_lex_state = 5}, + [4748] = {.lex_state = 127, .external_lex_state = 5}, + [4749] = {.lex_state = 127, .external_lex_state = 2}, + [4750] = {.lex_state = 127, .external_lex_state = 5}, + [4751] = {.lex_state = 127, .external_lex_state = 5}, + [4752] = {.lex_state = 127, .external_lex_state = 5}, + [4753] = {.lex_state = 127, .external_lex_state = 5}, + [4754] = {.lex_state = 127, .external_lex_state = 5}, + [4755] = {.lex_state = 127, .external_lex_state = 5}, + [4756] = {.lex_state = 127, .external_lex_state = 2}, + [4757] = {.lex_state = 127, .external_lex_state = 2}, + [4758] = {.lex_state = 127, .external_lex_state = 2}, + [4759] = {.lex_state = 127, .external_lex_state = 2}, + [4760] = {.lex_state = 127, .external_lex_state = 5}, + [4761] = {.lex_state = 127, .external_lex_state = 5}, + [4762] = {.lex_state = 17, .external_lex_state = 9}, + [4763] = {.lex_state = 127, .external_lex_state = 5}, + [4764] = {.lex_state = 127, .external_lex_state = 5}, + [4765] = {.lex_state = 127, .external_lex_state = 5}, + [4766] = {.lex_state = 127, .external_lex_state = 2}, + [4767] = {.lex_state = 127, .external_lex_state = 5}, + [4768] = {.lex_state = 127, .external_lex_state = 2}, + [4769] = {.lex_state = 127, .external_lex_state = 5}, + [4770] = {.lex_state = 127, .external_lex_state = 2}, + [4771] = {.lex_state = 127, .external_lex_state = 2}, + [4772] = {.lex_state = 127, .external_lex_state = 5}, + [4773] = {.lex_state = 127, .external_lex_state = 2}, + [4774] = {.lex_state = 127, .external_lex_state = 5}, + [4775] = {.lex_state = 127, .external_lex_state = 5}, + [4776] = {.lex_state = 127, .external_lex_state = 2}, + [4777] = {.lex_state = 127, .external_lex_state = 2}, + [4778] = {.lex_state = 127, .external_lex_state = 2}, + [4779] = {.lex_state = 2, .external_lex_state = 2}, + [4780] = {.lex_state = 127, .external_lex_state = 2}, + [4781] = {.lex_state = 127, .external_lex_state = 5}, + [4782] = {.lex_state = 127, .external_lex_state = 2}, + [4783] = {.lex_state = 127, .external_lex_state = 2}, + [4784] = {.lex_state = 2, .external_lex_state = 2}, + [4785] = {.lex_state = 127, .external_lex_state = 2}, + [4786] = {.lex_state = 127, .external_lex_state = 5}, + [4787] = {.lex_state = 127, .external_lex_state = 5}, + [4788] = {.lex_state = 2, .external_lex_state = 2}, + [4789] = {.lex_state = 127, .external_lex_state = 5}, + [4790] = {.lex_state = 127, .external_lex_state = 5}, + [4791] = {.lex_state = 2, .external_lex_state = 2}, + [4792] = {.lex_state = 127, .external_lex_state = 5}, + [4793] = {.lex_state = 127, .external_lex_state = 2}, + [4794] = {.lex_state = 127, .external_lex_state = 2}, + [4795] = {.lex_state = 127, .external_lex_state = 2}, + [4796] = {.lex_state = 127, .external_lex_state = 5}, + [4797] = {.lex_state = 127, .external_lex_state = 2}, + [4798] = {.lex_state = 127, .external_lex_state = 5}, + [4799] = {.lex_state = 127, .external_lex_state = 5}, + [4800] = {.lex_state = 127, .external_lex_state = 5}, + [4801] = {.lex_state = 127, .external_lex_state = 5}, + [4802] = {.lex_state = 127, .external_lex_state = 2}, + [4803] = {.lex_state = 127, .external_lex_state = 5}, + [4804] = {.lex_state = 127, .external_lex_state = 2}, + [4805] = {.lex_state = 127, .external_lex_state = 5}, + [4806] = {.lex_state = 127, .external_lex_state = 2}, + [4807] = {.lex_state = 127, .external_lex_state = 5}, + [4808] = {.lex_state = 127, .external_lex_state = 5}, + [4809] = {.lex_state = 127, .external_lex_state = 5}, + [4810] = {.lex_state = 127, .external_lex_state = 5}, + [4811] = {.lex_state = 127, .external_lex_state = 5}, + [4812] = {.lex_state = 127, .external_lex_state = 2}, + [4813] = {.lex_state = 127, .external_lex_state = 5}, + [4814] = {.lex_state = 127, .external_lex_state = 5}, + [4815] = {.lex_state = 127, .external_lex_state = 2}, + [4816] = {.lex_state = 127, .external_lex_state = 2}, + [4817] = {.lex_state = 127, .external_lex_state = 2}, + [4818] = {.lex_state = 127, .external_lex_state = 2}, + [4819] = {.lex_state = 127, .external_lex_state = 5}, + [4820] = {.lex_state = 127, .external_lex_state = 5}, + [4821] = {.lex_state = 127, .external_lex_state = 2}, + [4822] = {.lex_state = 127, .external_lex_state = 5}, + [4823] = {.lex_state = 127, .external_lex_state = 2}, + [4824] = {.lex_state = 127, .external_lex_state = 2}, + [4825] = {.lex_state = 127, .external_lex_state = 5}, + [4826] = {.lex_state = 127, .external_lex_state = 5}, + [4827] = {.lex_state = 127, .external_lex_state = 5}, + [4828] = {.lex_state = 127, .external_lex_state = 5}, + [4829] = {.lex_state = 127, .external_lex_state = 5}, + [4830] = {.lex_state = 127, .external_lex_state = 5}, + [4831] = {.lex_state = 127, .external_lex_state = 5}, + [4832] = {.lex_state = 127, .external_lex_state = 5}, + [4833] = {.lex_state = 127, .external_lex_state = 2}, + [4834] = {.lex_state = 127, .external_lex_state = 2}, + [4835] = {.lex_state = 127, .external_lex_state = 2}, + [4836] = {.lex_state = 127, .external_lex_state = 2}, + [4837] = {.lex_state = 127, .external_lex_state = 2}, + [4838] = {.lex_state = 127, .external_lex_state = 2}, + [4839] = {.lex_state = 127, .external_lex_state = 5}, + [4840] = {.lex_state = 127, .external_lex_state = 2}, + [4841] = {.lex_state = 2, .external_lex_state = 2}, + [4842] = {.lex_state = 127, .external_lex_state = 5}, + [4843] = {.lex_state = 127, .external_lex_state = 5}, + [4844] = {.lex_state = 127, .external_lex_state = 5}, + [4845] = {.lex_state = 127, .external_lex_state = 5}, + [4846] = {.lex_state = 127, .external_lex_state = 5}, + [4847] = {.lex_state = 127, .external_lex_state = 5}, + [4848] = {.lex_state = 127, .external_lex_state = 5}, + [4849] = {.lex_state = 127, .external_lex_state = 5}, + [4850] = {.lex_state = 127, .external_lex_state = 5}, + [4851] = {.lex_state = 127, .external_lex_state = 2}, + [4852] = {.lex_state = 127, .external_lex_state = 5}, + [4853] = {.lex_state = 127, .external_lex_state = 2}, + [4854] = {.lex_state = 127, .external_lex_state = 2}, + [4855] = {.lex_state = 127, .external_lex_state = 2}, + [4856] = {.lex_state = 127, .external_lex_state = 5}, + [4857] = {.lex_state = 127, .external_lex_state = 2}, + [4858] = {.lex_state = 127, .external_lex_state = 2}, + [4859] = {.lex_state = 127, .external_lex_state = 5}, + [4860] = {.lex_state = 127, .external_lex_state = 5}, + [4861] = {.lex_state = 127, .external_lex_state = 5}, + [4862] = {.lex_state = 127, .external_lex_state = 5}, + [4863] = {.lex_state = 127, .external_lex_state = 5}, + [4864] = {.lex_state = 127, .external_lex_state = 5}, + [4865] = {.lex_state = 127, .external_lex_state = 5}, + [4866] = {.lex_state = 127, .external_lex_state = 2}, + [4867] = {.lex_state = 127, .external_lex_state = 5}, + [4868] = {.lex_state = 127, .external_lex_state = 5}, + [4869] = {.lex_state = 127, .external_lex_state = 5}, + [4870] = {.lex_state = 127, .external_lex_state = 5}, + [4871] = {.lex_state = 127, .external_lex_state = 5}, + [4872] = {.lex_state = 127, .external_lex_state = 5}, + [4873] = {.lex_state = 127, .external_lex_state = 5}, + [4874] = {.lex_state = 127, .external_lex_state = 2}, + [4875] = {.lex_state = 127, .external_lex_state = 2}, + [4876] = {.lex_state = 127, .external_lex_state = 5}, + [4877] = {.lex_state = 127, .external_lex_state = 5}, + [4878] = {.lex_state = 127, .external_lex_state = 5}, + [4879] = {.lex_state = 127, .external_lex_state = 5}, + [4880] = {.lex_state = 127, .external_lex_state = 5}, + [4881] = {.lex_state = 127, .external_lex_state = 5}, + [4882] = {.lex_state = 127, .external_lex_state = 5}, + [4883] = {.lex_state = 127, .external_lex_state = 5}, + [4884] = {.lex_state = 127, .external_lex_state = 5}, + [4885] = {.lex_state = 127, .external_lex_state = 5}, + [4886] = {.lex_state = 127, .external_lex_state = 2}, + [4887] = {.lex_state = 127, .external_lex_state = 5}, + [4888] = {.lex_state = 127, .external_lex_state = 2}, + [4889] = {.lex_state = 127, .external_lex_state = 5}, + [4890] = {.lex_state = 127, .external_lex_state = 2}, + [4891] = {.lex_state = 127, .external_lex_state = 5}, + [4892] = {.lex_state = 127, .external_lex_state = 5}, + [4893] = {.lex_state = 127, .external_lex_state = 5}, + [4894] = {.lex_state = 127, .external_lex_state = 5}, + [4895] = {.lex_state = 127, .external_lex_state = 5}, + [4896] = {.lex_state = 127, .external_lex_state = 5}, + [4897] = {.lex_state = 127, .external_lex_state = 5}, + [4898] = {.lex_state = 127, .external_lex_state = 5}, + [4899] = {.lex_state = 127, .external_lex_state = 5}, + [4900] = {.lex_state = 127, .external_lex_state = 5}, + [4901] = {.lex_state = 127, .external_lex_state = 5}, + [4902] = {.lex_state = 127, .external_lex_state = 2}, + [4903] = {.lex_state = 127, .external_lex_state = 5}, + [4904] = {.lex_state = 127, .external_lex_state = 2}, + [4905] = {.lex_state = 127, .external_lex_state = 2}, + [4906] = {.lex_state = 127, .external_lex_state = 2}, + [4907] = {.lex_state = 127, .external_lex_state = 5}, + [4908] = {.lex_state = 127, .external_lex_state = 5}, + [4909] = {.lex_state = 127, .external_lex_state = 5}, + [4910] = {.lex_state = 127, .external_lex_state = 5}, + [4911] = {.lex_state = 127, .external_lex_state = 5}, + [4912] = {.lex_state = 127, .external_lex_state = 5}, + [4913] = {.lex_state = 127, .external_lex_state = 5}, + [4914] = {.lex_state = 127, .external_lex_state = 5}, + [4915] = {.lex_state = 127, .external_lex_state = 2}, + [4916] = {.lex_state = 127, .external_lex_state = 2}, + [4917] = {.lex_state = 127, .external_lex_state = 5}, + [4918] = {.lex_state = 127, .external_lex_state = 2}, + [4919] = {.lex_state = 127, .external_lex_state = 2}, + [4920] = {.lex_state = 127, .external_lex_state = 5}, + [4921] = {.lex_state = 127, .external_lex_state = 5}, + [4922] = {.lex_state = 127, .external_lex_state = 5}, + [4923] = {.lex_state = 127, .external_lex_state = 5}, + [4924] = {.lex_state = 127, .external_lex_state = 5}, + [4925] = {.lex_state = 127, .external_lex_state = 5}, + [4926] = {.lex_state = 127, .external_lex_state = 5}, + [4927] = {.lex_state = 127, .external_lex_state = 5}, + [4928] = {.lex_state = 127, .external_lex_state = 5}, + [4929] = {.lex_state = 127, .external_lex_state = 5}, + [4930] = {.lex_state = 127, .external_lex_state = 5}, + [4931] = {.lex_state = 127, .external_lex_state = 5}, + [4932] = {.lex_state = 127, .external_lex_state = 5}, + [4933] = {.lex_state = 127, .external_lex_state = 2}, + [4934] = {.lex_state = 127, .external_lex_state = 2}, + [4935] = {.lex_state = 127, .external_lex_state = 5}, + [4936] = {.lex_state = 127, .external_lex_state = 2}, + [4937] = {.lex_state = 127, .external_lex_state = 5}, + [4938] = {.lex_state = 127, .external_lex_state = 5}, + [4939] = {.lex_state = 127, .external_lex_state = 5}, + [4940] = {.lex_state = 127, .external_lex_state = 5}, + [4941] = {.lex_state = 127, .external_lex_state = 2}, + [4942] = {.lex_state = 2, .external_lex_state = 2}, + [4943] = {.lex_state = 127, .external_lex_state = 5}, + [4944] = {.lex_state = 127, .external_lex_state = 2}, + [4945] = {.lex_state = 127, .external_lex_state = 2}, + [4946] = {.lex_state = 127, .external_lex_state = 5}, + [4947] = {.lex_state = 127, .external_lex_state = 2}, + [4948] = {.lex_state = 127, .external_lex_state = 5}, + [4949] = {.lex_state = 127, .external_lex_state = 5}, + [4950] = {.lex_state = 127, .external_lex_state = 5}, + [4951] = {.lex_state = 127, .external_lex_state = 5}, + [4952] = {.lex_state = 127, .external_lex_state = 2}, + [4953] = {.lex_state = 127, .external_lex_state = 5}, + [4954] = {.lex_state = 127, .external_lex_state = 5}, + [4955] = {.lex_state = 127, .external_lex_state = 5}, + [4956] = {.lex_state = 2, .external_lex_state = 2}, + [4957] = {.lex_state = 127, .external_lex_state = 5}, + [4958] = {.lex_state = 127, .external_lex_state = 5}, + [4959] = {.lex_state = 127, .external_lex_state = 5}, + [4960] = {.lex_state = 127, .external_lex_state = 5}, + [4961] = {.lex_state = 127, .external_lex_state = 5}, + [4962] = {.lex_state = 127, .external_lex_state = 5}, + [4963] = {.lex_state = 127, .external_lex_state = 2}, + [4964] = {.lex_state = 127, .external_lex_state = 2}, + [4965] = {.lex_state = 127, .external_lex_state = 2}, + [4966] = {.lex_state = 127, .external_lex_state = 2}, + [4967] = {.lex_state = 127, .external_lex_state = 2}, + [4968] = {.lex_state = 127, .external_lex_state = 5}, + [4969] = {.lex_state = 127, .external_lex_state = 5}, + [4970] = {.lex_state = 127, .external_lex_state = 5}, + [4971] = {.lex_state = 127, .external_lex_state = 2}, + [4972] = {.lex_state = 127, .external_lex_state = 5}, + [4973] = {.lex_state = 127, .external_lex_state = 5}, + [4974] = {.lex_state = 127, .external_lex_state = 5}, + [4975] = {.lex_state = 127, .external_lex_state = 2}, + [4976] = {.lex_state = 127, .external_lex_state = 5}, + [4977] = {.lex_state = 127, .external_lex_state = 2}, + [4978] = {.lex_state = 127, .external_lex_state = 2}, + [4979] = {.lex_state = 127, .external_lex_state = 5}, + [4980] = {.lex_state = 127, .external_lex_state = 5}, + [4981] = {.lex_state = 127, .external_lex_state = 2}, + [4982] = {.lex_state = 127, .external_lex_state = 5}, + [4983] = {.lex_state = 127, .external_lex_state = 5}, + [4984] = {.lex_state = 127, .external_lex_state = 5}, + [4985] = {.lex_state = 127, .external_lex_state = 5}, + [4986] = {.lex_state = 2, .external_lex_state = 2}, + [4987] = {.lex_state = 127, .external_lex_state = 5}, + [4988] = {.lex_state = 127, .external_lex_state = 2}, + [4989] = {.lex_state = 127, .external_lex_state = 2}, + [4990] = {.lex_state = 127, .external_lex_state = 2}, + [4991] = {.lex_state = 127, .external_lex_state = 5}, + [4992] = {.lex_state = 127, .external_lex_state = 5}, + [4993] = {.lex_state = 127, .external_lex_state = 5}, + [4994] = {.lex_state = 127, .external_lex_state = 5}, + [4995] = {.lex_state = 127, .external_lex_state = 5}, + [4996] = {.lex_state = 127, .external_lex_state = 5}, + [4997] = {.lex_state = 127, .external_lex_state = 5}, + [4998] = {.lex_state = 2, .external_lex_state = 2}, + [4999] = {.lex_state = 127, .external_lex_state = 5}, + [5000] = {.lex_state = 127, .external_lex_state = 5}, + [5001] = {.lex_state = 127, .external_lex_state = 2}, + [5002] = {.lex_state = 127, .external_lex_state = 2}, + [5003] = {.lex_state = 127, .external_lex_state = 5}, + [5004] = {.lex_state = 127, .external_lex_state = 5}, + [5005] = {.lex_state = 127, .external_lex_state = 2}, + [5006] = {.lex_state = 127, .external_lex_state = 5}, + [5007] = {.lex_state = 127, .external_lex_state = 5}, + [5008] = {.lex_state = 127, .external_lex_state = 5}, + [5009] = {.lex_state = 127, .external_lex_state = 2}, + [5010] = {.lex_state = 127, .external_lex_state = 5}, + [5011] = {.lex_state = 127, .external_lex_state = 5}, + [5012] = {.lex_state = 127, .external_lex_state = 5}, + [5013] = {.lex_state = 127, .external_lex_state = 2}, + [5014] = {.lex_state = 127, .external_lex_state = 5}, + [5015] = {.lex_state = 127, .external_lex_state = 2}, + [5016] = {.lex_state = 127, .external_lex_state = 5}, + [5017] = {.lex_state = 127, .external_lex_state = 5}, + [5018] = {.lex_state = 127, .external_lex_state = 5}, + [5019] = {.lex_state = 127, .external_lex_state = 5}, + [5020] = {.lex_state = 127, .external_lex_state = 5}, + [5021] = {.lex_state = 127, .external_lex_state = 5}, + [5022] = {.lex_state = 127, .external_lex_state = 2}, + [5023] = {.lex_state = 127, .external_lex_state = 5}, + [5024] = {.lex_state = 127, .external_lex_state = 5}, + [5025] = {.lex_state = 127, .external_lex_state = 5}, + [5026] = {.lex_state = 127, .external_lex_state = 5}, + [5027] = {.lex_state = 127, .external_lex_state = 2}, + [5028] = {.lex_state = 127, .external_lex_state = 5}, + [5029] = {.lex_state = 127, .external_lex_state = 5}, + [5030] = {.lex_state = 127, .external_lex_state = 5}, + [5031] = {.lex_state = 127, .external_lex_state = 5}, + [5032] = {.lex_state = 127, .external_lex_state = 5}, + [5033] = {.lex_state = 127, .external_lex_state = 5}, + [5034] = {.lex_state = 127, .external_lex_state = 5}, + [5035] = {.lex_state = 127, .external_lex_state = 5}, + [5036] = {.lex_state = 127, .external_lex_state = 5}, + [5037] = {.lex_state = 127, .external_lex_state = 5}, + [5038] = {.lex_state = 127, .external_lex_state = 5}, + [5039] = {.lex_state = 127, .external_lex_state = 5}, + [5040] = {.lex_state = 127, .external_lex_state = 5}, + [5041] = {.lex_state = 127, .external_lex_state = 5}, + [5042] = {.lex_state = 127, .external_lex_state = 5}, + [5043] = {.lex_state = 127, .external_lex_state = 2}, + [5044] = {.lex_state = 127, .external_lex_state = 5}, + [5045] = {.lex_state = 127, .external_lex_state = 5}, + [5046] = {.lex_state = 127, .external_lex_state = 5}, + [5047] = {.lex_state = 127, .external_lex_state = 5}, + [5048] = {.lex_state = 127, .external_lex_state = 5}, + [5049] = {.lex_state = 127, .external_lex_state = 5}, + [5050] = {.lex_state = 127, .external_lex_state = 5}, + [5051] = {.lex_state = 127, .external_lex_state = 5}, + [5052] = {.lex_state = 127, .external_lex_state = 5}, + [5053] = {.lex_state = 127, .external_lex_state = 5}, + [5054] = {.lex_state = 127, .external_lex_state = 5}, + [5055] = {.lex_state = 127, .external_lex_state = 5}, + [5056] = {.lex_state = 127, .external_lex_state = 5}, + [5057] = {.lex_state = 127, .external_lex_state = 5}, + [5058] = {.lex_state = 127, .external_lex_state = 5}, + [5059] = {.lex_state = 127, .external_lex_state = 5}, + [5060] = {.lex_state = 127, .external_lex_state = 5}, + [5061] = {.lex_state = 127, .external_lex_state = 5}, + [5062] = {.lex_state = 127, .external_lex_state = 2}, + [5063] = {.lex_state = 127, .external_lex_state = 2}, + [5064] = {.lex_state = 127, .external_lex_state = 5}, + [5065] = {.lex_state = 127, .external_lex_state = 5}, + [5066] = {.lex_state = 127, .external_lex_state = 5}, + [5067] = {.lex_state = 127, .external_lex_state = 5}, + [5068] = {.lex_state = 127, .external_lex_state = 5}, + [5069] = {.lex_state = 127, .external_lex_state = 5}, + [5070] = {.lex_state = 127, .external_lex_state = 2}, + [5071] = {.lex_state = 127, .external_lex_state = 2}, + [5072] = {.lex_state = 127, .external_lex_state = 5}, + [5073] = {.lex_state = 127, .external_lex_state = 2}, + [5074] = {.lex_state = 127, .external_lex_state = 5}, + [5075] = {.lex_state = 127, .external_lex_state = 5}, + [5076] = {.lex_state = 127, .external_lex_state = 5}, + [5077] = {.lex_state = 127, .external_lex_state = 5}, + [5078] = {.lex_state = 127, .external_lex_state = 5}, + [5079] = {.lex_state = 127, .external_lex_state = 5}, + [5080] = {.lex_state = 127, .external_lex_state = 5}, + [5081] = {.lex_state = 127, .external_lex_state = 5}, + [5082] = {.lex_state = 127, .external_lex_state = 5}, + [5083] = {.lex_state = 127, .external_lex_state = 5}, + [5084] = {.lex_state = 127, .external_lex_state = 5}, + [5085] = {.lex_state = 127, .external_lex_state = 5}, + [5086] = {.lex_state = 127, .external_lex_state = 5}, + [5087] = {.lex_state = 127, .external_lex_state = 5}, + [5088] = {.lex_state = 127, .external_lex_state = 2}, + [5089] = {.lex_state = 127, .external_lex_state = 5}, + [5090] = {.lex_state = 127, .external_lex_state = 5}, + [5091] = {.lex_state = 127, .external_lex_state = 5}, + [5092] = {.lex_state = 127, .external_lex_state = 2}, + [5093] = {.lex_state = 127, .external_lex_state = 5}, + [5094] = {.lex_state = 127, .external_lex_state = 5}, + [5095] = {.lex_state = 127, .external_lex_state = 5}, + [5096] = {.lex_state = 127, .external_lex_state = 5}, + [5097] = {.lex_state = 127, .external_lex_state = 5}, + [5098] = {.lex_state = 127, .external_lex_state = 2}, + [5099] = {.lex_state = 127, .external_lex_state = 5}, + [5100] = {.lex_state = 127, .external_lex_state = 5}, + [5101] = {.lex_state = 127, .external_lex_state = 5}, + [5102] = {.lex_state = 127, .external_lex_state = 2}, + [5103] = {.lex_state = 127, .external_lex_state = 5}, + [5104] = {.lex_state = 127, .external_lex_state = 2}, + [5105] = {.lex_state = 127, .external_lex_state = 5}, + [5106] = {.lex_state = 127, .external_lex_state = 5}, + [5107] = {.lex_state = 127, .external_lex_state = 5}, + [5108] = {.lex_state = 2, .external_lex_state = 2}, + [5109] = {.lex_state = 127, .external_lex_state = 5}, + [5110] = {.lex_state = 127, .external_lex_state = 5}, + [5111] = {.lex_state = 127, .external_lex_state = 5}, + [5112] = {.lex_state = 127, .external_lex_state = 5}, + [5113] = {.lex_state = 127, .external_lex_state = 5}, + [5114] = {.lex_state = 127, .external_lex_state = 5}, + [5115] = {.lex_state = 127, .external_lex_state = 5}, + [5116] = {.lex_state = 127, .external_lex_state = 2}, + [5117] = {.lex_state = 127, .external_lex_state = 5}, + [5118] = {.lex_state = 127, .external_lex_state = 5}, + [5119] = {.lex_state = 127, .external_lex_state = 5}, + [5120] = {.lex_state = 127, .external_lex_state = 5}, + [5121] = {.lex_state = 127, .external_lex_state = 5}, + [5122] = {.lex_state = 127, .external_lex_state = 5}, + [5123] = {.lex_state = 127, .external_lex_state = 5}, + [5124] = {.lex_state = 127, .external_lex_state = 5}, + [5125] = {.lex_state = 127, .external_lex_state = 5}, + [5126] = {.lex_state = 127, .external_lex_state = 5}, + [5127] = {.lex_state = 127, .external_lex_state = 5}, + [5128] = {.lex_state = 127, .external_lex_state = 5}, + [5129] = {.lex_state = 127, .external_lex_state = 5}, + [5130] = {.lex_state = 127, .external_lex_state = 5}, + [5131] = {.lex_state = 127, .external_lex_state = 5}, + [5132] = {.lex_state = 127, .external_lex_state = 2}, + [5133] = {.lex_state = 127, .external_lex_state = 5}, + [5134] = {.lex_state = 127, .external_lex_state = 5}, + [5135] = {.lex_state = 127, .external_lex_state = 5}, + [5136] = {.lex_state = 127, .external_lex_state = 5}, + [5137] = {.lex_state = 127, .external_lex_state = 5}, + [5138] = {.lex_state = 127, .external_lex_state = 5}, + [5139] = {.lex_state = 127, .external_lex_state = 5}, + [5140] = {.lex_state = 127, .external_lex_state = 5}, + [5141] = {.lex_state = 127, .external_lex_state = 5}, + [5142] = {.lex_state = 127, .external_lex_state = 2}, + [5143] = {.lex_state = 127, .external_lex_state = 5}, + [5144] = {.lex_state = 127, .external_lex_state = 5}, + [5145] = {.lex_state = 127, .external_lex_state = 5}, + [5146] = {.lex_state = 127, .external_lex_state = 5}, + [5147] = {.lex_state = 127, .external_lex_state = 5}, + [5148] = {.lex_state = 127, .external_lex_state = 5}, + [5149] = {.lex_state = 127, .external_lex_state = 2}, + [5150] = {.lex_state = 127, .external_lex_state = 2}, + [5151] = {.lex_state = 127, .external_lex_state = 5}, + [5152] = {.lex_state = 127, .external_lex_state = 5}, + [5153] = {.lex_state = 127, .external_lex_state = 5}, + [5154] = {.lex_state = 127, .external_lex_state = 2}, + [5155] = {.lex_state = 127, .external_lex_state = 2}, + [5156] = {.lex_state = 127, .external_lex_state = 2}, + [5157] = {.lex_state = 127, .external_lex_state = 5}, + [5158] = {.lex_state = 127, .external_lex_state = 2}, + [5159] = {.lex_state = 127, .external_lex_state = 5}, + [5160] = {.lex_state = 127, .external_lex_state = 2}, + [5161] = {.lex_state = 127, .external_lex_state = 5}, + [5162] = {.lex_state = 127, .external_lex_state = 2}, + [5163] = {.lex_state = 127, .external_lex_state = 2}, + [5164] = {.lex_state = 127, .external_lex_state = 2}, + [5165] = {.lex_state = 127, .external_lex_state = 5}, + [5166] = {.lex_state = 127, .external_lex_state = 5}, + [5167] = {.lex_state = 127, .external_lex_state = 5}, + [5168] = {.lex_state = 127, .external_lex_state = 2}, + [5169] = {.lex_state = 127, .external_lex_state = 5}, + [5170] = {.lex_state = 127, .external_lex_state = 2}, + [5171] = {.lex_state = 127, .external_lex_state = 5}, + [5172] = {.lex_state = 127, .external_lex_state = 2}, + [5173] = {.lex_state = 127, .external_lex_state = 5}, + [5174] = {.lex_state = 127, .external_lex_state = 2}, + [5175] = {.lex_state = 127, .external_lex_state = 5}, + [5176] = {.lex_state = 127, .external_lex_state = 5}, + [5177] = {.lex_state = 127, .external_lex_state = 5}, + [5178] = {.lex_state = 127, .external_lex_state = 5}, + [5179] = {.lex_state = 127, .external_lex_state = 5}, + [5180] = {.lex_state = 127, .external_lex_state = 5}, + [5181] = {.lex_state = 127, .external_lex_state = 5}, + [5182] = {.lex_state = 127, .external_lex_state = 2}, + [5183] = {.lex_state = 127, .external_lex_state = 2}, + [5184] = {.lex_state = 127, .external_lex_state = 2}, + [5185] = {.lex_state = 127, .external_lex_state = 5}, + [5186] = {.lex_state = 127, .external_lex_state = 5}, + [5187] = {.lex_state = 127, .external_lex_state = 5}, + [5188] = {.lex_state = 127, .external_lex_state = 5}, + [5189] = {.lex_state = 127, .external_lex_state = 5}, + [5190] = {.lex_state = 127, .external_lex_state = 5}, + [5191] = {.lex_state = 127, .external_lex_state = 5}, + [5192] = {.lex_state = 127, .external_lex_state = 5}, + [5193] = {.lex_state = 127, .external_lex_state = 5}, + [5194] = {.lex_state = 127, .external_lex_state = 5}, + [5195] = {.lex_state = 127, .external_lex_state = 2}, + [5196] = {.lex_state = 127, .external_lex_state = 2}, + [5197] = {.lex_state = 127, .external_lex_state = 5}, + [5198] = {.lex_state = 127, .external_lex_state = 5}, + [5199] = {.lex_state = 127, .external_lex_state = 5}, + [5200] = {.lex_state = 127, .external_lex_state = 2}, + [5201] = {.lex_state = 127, .external_lex_state = 5}, + [5202] = {.lex_state = 127, .external_lex_state = 2}, + [5203] = {.lex_state = 127, .external_lex_state = 5}, + [5204] = {.lex_state = 127, .external_lex_state = 5}, + [5205] = {.lex_state = 127, .external_lex_state = 5}, + [5206] = {.lex_state = 127, .external_lex_state = 5}, + [5207] = {.lex_state = 127, .external_lex_state = 5}, + [5208] = {.lex_state = 127, .external_lex_state = 5}, + [5209] = {.lex_state = 127, .external_lex_state = 5}, + [5210] = {.lex_state = 127, .external_lex_state = 5}, + [5211] = {.lex_state = 127, .external_lex_state = 2}, + [5212] = {.lex_state = 127, .external_lex_state = 5}, + [5213] = {.lex_state = 127, .external_lex_state = 2}, + [5214] = {.lex_state = 127, .external_lex_state = 2}, + [5215] = {.lex_state = 127, .external_lex_state = 2}, + [5216] = {.lex_state = 127, .external_lex_state = 5}, + [5217] = {.lex_state = 127, .external_lex_state = 5}, + [5218] = {.lex_state = 127, .external_lex_state = 5}, + [5219] = {.lex_state = 127, .external_lex_state = 2}, + [5220] = {.lex_state = 127, .external_lex_state = 5}, + [5221] = {.lex_state = 127, .external_lex_state = 2}, + [5222] = {.lex_state = 127, .external_lex_state = 2}, + [5223] = {.lex_state = 127, .external_lex_state = 5}, + [5224] = {.lex_state = 127, .external_lex_state = 2}, + [5225] = {.lex_state = 127, .external_lex_state = 2}, + [5226] = {.lex_state = 127, .external_lex_state = 5}, + [5227] = {.lex_state = 127, .external_lex_state = 2}, + [5228] = {.lex_state = 127, .external_lex_state = 2}, + [5229] = {.lex_state = 127, .external_lex_state = 2}, + [5230] = {.lex_state = 127, .external_lex_state = 2}, + [5231] = {.lex_state = 127, .external_lex_state = 2}, + [5232] = {.lex_state = 127, .external_lex_state = 5}, + [5233] = {.lex_state = 127, .external_lex_state = 5}, + [5234] = {.lex_state = 127, .external_lex_state = 2}, + [5235] = {.lex_state = 127, .external_lex_state = 2}, + [5236] = {.lex_state = 127, .external_lex_state = 2}, + [5237] = {.lex_state = 127, .external_lex_state = 2}, + [5238] = {.lex_state = 127, .external_lex_state = 2}, + [5239] = {.lex_state = 127, .external_lex_state = 2}, + [5240] = {.lex_state = 127, .external_lex_state = 2}, + [5241] = {.lex_state = 127, .external_lex_state = 2}, + [5242] = {.lex_state = 127, .external_lex_state = 5}, + [5243] = {.lex_state = 127, .external_lex_state = 2}, + [5244] = {.lex_state = 127, .external_lex_state = 2}, + [5245] = {.lex_state = 127, .external_lex_state = 2}, + [5246] = {.lex_state = 127, .external_lex_state = 2}, + [5247] = {.lex_state = 127, .external_lex_state = 2}, + [5248] = {.lex_state = 127, .external_lex_state = 2}, + [5249] = {.lex_state = 127, .external_lex_state = 2}, + [5250] = {.lex_state = 127, .external_lex_state = 2}, + [5251] = {.lex_state = 127, .external_lex_state = 2}, + [5252] = {.lex_state = 127, .external_lex_state = 2}, + [5253] = {.lex_state = 127, .external_lex_state = 2}, + [5254] = {.lex_state = 127, .external_lex_state = 2}, + [5255] = {.lex_state = 127, .external_lex_state = 2}, + [5256] = {.lex_state = 127, .external_lex_state = 2}, + [5257] = {.lex_state = 127, .external_lex_state = 2}, + [5258] = {.lex_state = 127, .external_lex_state = 5}, + [5259] = {.lex_state = 127, .external_lex_state = 2}, + [5260] = {.lex_state = 127, .external_lex_state = 2}, + [5261] = {.lex_state = 127, .external_lex_state = 2}, + [5262] = {.lex_state = 127, .external_lex_state = 2}, + [5263] = {.lex_state = 127, .external_lex_state = 2}, + [5264] = {.lex_state = 127, .external_lex_state = 2}, + [5265] = {.lex_state = 127, .external_lex_state = 2}, + [5266] = {.lex_state = 127, .external_lex_state = 2}, + [5267] = {.lex_state = 127, .external_lex_state = 2}, + [5268] = {.lex_state = 127, .external_lex_state = 2}, + [5269] = {.lex_state = 127, .external_lex_state = 2}, + [5270] = {.lex_state = 127, .external_lex_state = 2}, + [5271] = {.lex_state = 127, .external_lex_state = 2}, + [5272] = {.lex_state = 127, .external_lex_state = 5}, + [5273] = {.lex_state = 127, .external_lex_state = 2}, + [5274] = {.lex_state = 127, .external_lex_state = 2}, + [5275] = {.lex_state = 127, .external_lex_state = 2}, + [5276] = {.lex_state = 127, .external_lex_state = 2}, + [5277] = {.lex_state = 127, .external_lex_state = 2}, + [5278] = {.lex_state = 127, .external_lex_state = 2}, + [5279] = {.lex_state = 127, .external_lex_state = 2}, + [5280] = {.lex_state = 127, .external_lex_state = 2}, + [5281] = {.lex_state = 127, .external_lex_state = 5}, + [5282] = {.lex_state = 127, .external_lex_state = 2}, + [5283] = {.lex_state = 127, .external_lex_state = 5}, + [5284] = {.lex_state = 127, .external_lex_state = 2}, + [5285] = {.lex_state = 127, .external_lex_state = 2}, + [5286] = {.lex_state = 127, .external_lex_state = 2}, + [5287] = {.lex_state = 127, .external_lex_state = 2}, + [5288] = {.lex_state = 127, .external_lex_state = 2}, + [5289] = {.lex_state = 127, .external_lex_state = 2}, + [5290] = {.lex_state = 127, .external_lex_state = 2}, + [5291] = {.lex_state = 127, .external_lex_state = 2}, + [5292] = {.lex_state = 127, .external_lex_state = 2}, + [5293] = {.lex_state = 127, .external_lex_state = 2}, + [5294] = {.lex_state = 127, .external_lex_state = 5}, + [5295] = {.lex_state = 127, .external_lex_state = 2}, + [5296] = {.lex_state = 127, .external_lex_state = 2}, + [5297] = {.lex_state = 127, .external_lex_state = 2}, + [5298] = {.lex_state = 127, .external_lex_state = 2}, + [5299] = {.lex_state = 127, .external_lex_state = 2}, + [5300] = {.lex_state = 127, .external_lex_state = 2}, + [5301] = {.lex_state = 127, .external_lex_state = 2}, + [5302] = {.lex_state = 127, .external_lex_state = 2}, + [5303] = {.lex_state = 127, .external_lex_state = 2}, + [5304] = {.lex_state = 127, .external_lex_state = 2}, + [5305] = {.lex_state = 127, .external_lex_state = 2}, + [5306] = {.lex_state = 127, .external_lex_state = 5}, + [5307] = {.lex_state = 127, .external_lex_state = 2}, + [5308] = {.lex_state = 127, .external_lex_state = 5}, + [5309] = {.lex_state = 127, .external_lex_state = 5}, + [5310] = {.lex_state = 127, .external_lex_state = 2}, + [5311] = {.lex_state = 127, .external_lex_state = 2}, + [5312] = {.lex_state = 127, .external_lex_state = 2}, + [5313] = {.lex_state = 127, .external_lex_state = 2}, + [5314] = {.lex_state = 127, .external_lex_state = 2}, + [5315] = {.lex_state = 127, .external_lex_state = 2}, + [5316] = {.lex_state = 127, .external_lex_state = 2}, + [5317] = {.lex_state = 127, .external_lex_state = 2}, + [5318] = {.lex_state = 127, .external_lex_state = 2}, + [5319] = {.lex_state = 127, .external_lex_state = 2}, + [5320] = {.lex_state = 127, .external_lex_state = 2}, + [5321] = {.lex_state = 127, .external_lex_state = 2}, + [5322] = {.lex_state = 127, .external_lex_state = 2}, + [5323] = {.lex_state = 127, .external_lex_state = 2}, + [5324] = {.lex_state = 127, .external_lex_state = 2}, + [5325] = {.lex_state = 127, .external_lex_state = 2}, + [5326] = {.lex_state = 127, .external_lex_state = 2}, + [5327] = {.lex_state = 127, .external_lex_state = 2}, + [5328] = {.lex_state = 127, .external_lex_state = 2}, + [5329] = {.lex_state = 127, .external_lex_state = 2}, + [5330] = {.lex_state = 127, .external_lex_state = 2}, + [5331] = {.lex_state = 127, .external_lex_state = 2}, + [5332] = {.lex_state = 127, .external_lex_state = 2}, + [5333] = {.lex_state = 127, .external_lex_state = 2}, + [5334] = {.lex_state = 127, .external_lex_state = 2}, + [5335] = {.lex_state = 127, .external_lex_state = 2}, + [5336] = {.lex_state = 127, .external_lex_state = 2}, + [5337] = {.lex_state = 127, .external_lex_state = 2}, + [5338] = {.lex_state = 127, .external_lex_state = 2}, + [5339] = {.lex_state = 127, .external_lex_state = 2}, + [5340] = {.lex_state = 127, .external_lex_state = 5}, + [5341] = {.lex_state = 127, .external_lex_state = 2}, + [5342] = {.lex_state = 127, .external_lex_state = 2}, + [5343] = {.lex_state = 127, .external_lex_state = 2}, + [5344] = {.lex_state = 127, .external_lex_state = 2}, + [5345] = {.lex_state = 127, .external_lex_state = 2}, + [5346] = {.lex_state = 127, .external_lex_state = 2}, + [5347] = {.lex_state = 127, .external_lex_state = 2}, + [5348] = {.lex_state = 127, .external_lex_state = 5}, + [5349] = {.lex_state = 127, .external_lex_state = 2}, + [5350] = {.lex_state = 127, .external_lex_state = 2}, + [5351] = {.lex_state = 127, .external_lex_state = 2}, + [5352] = {.lex_state = 127, .external_lex_state = 2}, + [5353] = {.lex_state = 127, .external_lex_state = 2}, + [5354] = {.lex_state = 127, .external_lex_state = 2}, + [5355] = {.lex_state = 127, .external_lex_state = 2}, + [5356] = {.lex_state = 127, .external_lex_state = 2}, + [5357] = {.lex_state = 127, .external_lex_state = 2}, + [5358] = {.lex_state = 127, .external_lex_state = 2}, + [5359] = {.lex_state = 127, .external_lex_state = 2}, + [5360] = {.lex_state = 127, .external_lex_state = 2}, + [5361] = {.lex_state = 127, .external_lex_state = 2}, + [5362] = {.lex_state = 127, .external_lex_state = 2}, + [5363] = {.lex_state = 127, .external_lex_state = 2}, + [5364] = {.lex_state = 127, .external_lex_state = 2}, + [5365] = {.lex_state = 127, .external_lex_state = 2}, + [5366] = {.lex_state = 127, .external_lex_state = 2}, + [5367] = {.lex_state = 127, .external_lex_state = 2}, + [5368] = {.lex_state = 127, .external_lex_state = 5}, + [5369] = {.lex_state = 127, .external_lex_state = 2}, + [5370] = {.lex_state = 127, .external_lex_state = 5}, + [5371] = {.lex_state = 127, .external_lex_state = 5}, + [5372] = {.lex_state = 127, .external_lex_state = 5}, + [5373] = {.lex_state = 127, .external_lex_state = 2}, + [5374] = {.lex_state = 127, .external_lex_state = 2}, + [5375] = {.lex_state = 127, .external_lex_state = 2}, + [5376] = {.lex_state = 127, .external_lex_state = 2}, + [5377] = {.lex_state = 127, .external_lex_state = 5}, + [5378] = {.lex_state = 127, .external_lex_state = 2}, + [5379] = {.lex_state = 127, .external_lex_state = 2}, + [5380] = {.lex_state = 127, .external_lex_state = 2}, + [5381] = {.lex_state = 127, .external_lex_state = 2}, + [5382] = {.lex_state = 127, .external_lex_state = 2}, + [5383] = {.lex_state = 127, .external_lex_state = 2}, + [5384] = {.lex_state = 127, .external_lex_state = 2}, + [5385] = {.lex_state = 127, .external_lex_state = 2}, + [5386] = {.lex_state = 127, .external_lex_state = 2}, + [5387] = {.lex_state = 127, .external_lex_state = 2}, + [5388] = {.lex_state = 127, .external_lex_state = 2}, + [5389] = {.lex_state = 127, .external_lex_state = 2}, + [5390] = {.lex_state = 127, .external_lex_state = 2}, + [5391] = {.lex_state = 127, .external_lex_state = 2}, + [5392] = {.lex_state = 127, .external_lex_state = 2}, + [5393] = {.lex_state = 127, .external_lex_state = 2}, + [5394] = {.lex_state = 127, .external_lex_state = 2}, + [5395] = {.lex_state = 127, .external_lex_state = 2}, + [5396] = {.lex_state = 127, .external_lex_state = 2}, + [5397] = {.lex_state = 127, .external_lex_state = 2}, + [5398] = {.lex_state = 127, .external_lex_state = 2}, + [5399] = {.lex_state = 127, .external_lex_state = 2}, + [5400] = {.lex_state = 127, .external_lex_state = 2}, + [5401] = {.lex_state = 127, .external_lex_state = 2}, + [5402] = {.lex_state = 127, .external_lex_state = 2}, + [5403] = {.lex_state = 127, .external_lex_state = 2}, + [5404] = {.lex_state = 127, .external_lex_state = 2}, + [5405] = {.lex_state = 127, .external_lex_state = 2}, + [5406] = {.lex_state = 127, .external_lex_state = 2}, + [5407] = {.lex_state = 127, .external_lex_state = 2}, + [5408] = {.lex_state = 127, .external_lex_state = 2}, + [5409] = {.lex_state = 127, .external_lex_state = 2}, + [5410] = {.lex_state = 127, .external_lex_state = 2}, + [5411] = {.lex_state = 127, .external_lex_state = 2}, + [5412] = {.lex_state = 127, .external_lex_state = 2}, + [5413] = {.lex_state = 127, .external_lex_state = 2}, + [5414] = {.lex_state = 127, .external_lex_state = 2}, + [5415] = {.lex_state = 127, .external_lex_state = 2}, + [5416] = {.lex_state = 127, .external_lex_state = 2}, + [5417] = {.lex_state = 127, .external_lex_state = 2}, + [5418] = {.lex_state = 127, .external_lex_state = 2}, + [5419] = {.lex_state = 127, .external_lex_state = 2}, + [5420] = {.lex_state = 127, .external_lex_state = 2}, + [5421] = {.lex_state = 127, .external_lex_state = 2}, + [5422] = {.lex_state = 127, .external_lex_state = 2}, + [5423] = {.lex_state = 127, .external_lex_state = 2}, + [5424] = {.lex_state = 127, .external_lex_state = 2}, + [5425] = {.lex_state = 127, .external_lex_state = 2}, + [5426] = {.lex_state = 127, .external_lex_state = 2}, + [5427] = {.lex_state = 127, .external_lex_state = 2}, + [5428] = {.lex_state = 127, .external_lex_state = 5}, + [5429] = {.lex_state = 127, .external_lex_state = 2}, + [5430] = {.lex_state = 127, .external_lex_state = 2}, + [5431] = {.lex_state = 127, .external_lex_state = 2}, + [5432] = {.lex_state = 127, .external_lex_state = 2}, + [5433] = {.lex_state = 127, .external_lex_state = 2}, + [5434] = {.lex_state = 127, .external_lex_state = 2}, + [5435] = {.lex_state = 127, .external_lex_state = 2}, + [5436] = {.lex_state = 127, .external_lex_state = 2}, + [5437] = {.lex_state = 127, .external_lex_state = 5}, + [5438] = {.lex_state = 127, .external_lex_state = 2}, + [5439] = {.lex_state = 127, .external_lex_state = 2}, + [5440] = {.lex_state = 127, .external_lex_state = 2}, + [5441] = {.lex_state = 127, .external_lex_state = 2}, + [5442] = {.lex_state = 127, .external_lex_state = 2}, + [5443] = {.lex_state = 127, .external_lex_state = 2}, + [5444] = {.lex_state = 127, .external_lex_state = 2}, + [5445] = {.lex_state = 127, .external_lex_state = 2}, + [5446] = {.lex_state = 127, .external_lex_state = 2}, + [5447] = {.lex_state = 127, .external_lex_state = 2}, + [5448] = {.lex_state = 127, .external_lex_state = 2}, + [5449] = {.lex_state = 127, .external_lex_state = 2}, + [5450] = {.lex_state = 127, .external_lex_state = 2}, + [5451] = {.lex_state = 127, .external_lex_state = 2}, + [5452] = {.lex_state = 127, .external_lex_state = 2}, + [5453] = {.lex_state = 127, .external_lex_state = 2}, + [5454] = {.lex_state = 127, .external_lex_state = 2}, + [5455] = {.lex_state = 127, .external_lex_state = 2}, + [5456] = {.lex_state = 127, .external_lex_state = 2}, + [5457] = {.lex_state = 127, .external_lex_state = 2}, + [5458] = {.lex_state = 127, .external_lex_state = 2}, + [5459] = {.lex_state = 127, .external_lex_state = 5}, + [5460] = {.lex_state = 127, .external_lex_state = 2}, + [5461] = {.lex_state = 127, .external_lex_state = 2}, + [5462] = {.lex_state = 127, .external_lex_state = 2}, + [5463] = {.lex_state = 127, .external_lex_state = 2}, + [5464] = {.lex_state = 127, .external_lex_state = 2}, + [5465] = {.lex_state = 127, .external_lex_state = 2}, + [5466] = {.lex_state = 11, .external_lex_state = 2}, + [5467] = {.lex_state = 127, .external_lex_state = 2}, + [5468] = {.lex_state = 127, .external_lex_state = 2}, + [5469] = {.lex_state = 127, .external_lex_state = 2}, + [5470] = {.lex_state = 127, .external_lex_state = 2}, + [5471] = {.lex_state = 127, .external_lex_state = 2}, + [5472] = {.lex_state = 127, .external_lex_state = 2}, + [5473] = {.lex_state = 127, .external_lex_state = 2}, + [5474] = {.lex_state = 127, .external_lex_state = 2}, + [5475] = {.lex_state = 127, .external_lex_state = 2}, + [5476] = {.lex_state = 127, .external_lex_state = 2}, + [5477] = {.lex_state = 127, .external_lex_state = 5}, + [5478] = {.lex_state = 127, .external_lex_state = 2}, + [5479] = {.lex_state = 127, .external_lex_state = 2}, + [5480] = {.lex_state = 127, .external_lex_state = 2}, + [5481] = {.lex_state = 127, .external_lex_state = 5}, + [5482] = {.lex_state = 127, .external_lex_state = 2}, + [5483] = {.lex_state = 127, .external_lex_state = 2}, + [5484] = {.lex_state = 127, .external_lex_state = 2}, + [5485] = {.lex_state = 127, .external_lex_state = 2}, + [5486] = {.lex_state = 127, .external_lex_state = 2}, + [5487] = {.lex_state = 127, .external_lex_state = 2}, + [5488] = {.lex_state = 127, .external_lex_state = 2}, + [5489] = {.lex_state = 127, .external_lex_state = 2}, + [5490] = {.lex_state = 127, .external_lex_state = 2}, + [5491] = {.lex_state = 127, .external_lex_state = 2}, + [5492] = {.lex_state = 127, .external_lex_state = 2}, + [5493] = {.lex_state = 127, .external_lex_state = 2}, + [5494] = {.lex_state = 127, .external_lex_state = 2}, + [5495] = {.lex_state = 127, .external_lex_state = 2}, + [5496] = {.lex_state = 127, .external_lex_state = 2}, + [5497] = {.lex_state = 127, .external_lex_state = 2}, + [5498] = {.lex_state = 127, .external_lex_state = 2}, + [5499] = {.lex_state = 127, .external_lex_state = 2}, + [5500] = {.lex_state = 127, .external_lex_state = 2}, + [5501] = {.lex_state = 127, .external_lex_state = 2}, + [5502] = {.lex_state = 127, .external_lex_state = 2}, + [5503] = {.lex_state = 127, .external_lex_state = 2}, + [5504] = {.lex_state = 127, .external_lex_state = 2}, + [5505] = {.lex_state = 127, .external_lex_state = 2}, + [5506] = {.lex_state = 127, .external_lex_state = 2}, + [5507] = {.lex_state = 127, .external_lex_state = 2}, + [5508] = {.lex_state = 127, .external_lex_state = 2}, + [5509] = {.lex_state = 127, .external_lex_state = 2}, + [5510] = {.lex_state = 127, .external_lex_state = 2}, + [5511] = {.lex_state = 127, .external_lex_state = 2}, + [5512] = {.lex_state = 127, .external_lex_state = 2}, + [5513] = {.lex_state = 127, .external_lex_state = 2}, + [5514] = {.lex_state = 127, .external_lex_state = 2}, + [5515] = {.lex_state = 127, .external_lex_state = 2}, + [5516] = {.lex_state = 127, .external_lex_state = 2}, + [5517] = {.lex_state = 127, .external_lex_state = 2}, + [5518] = {.lex_state = 127, .external_lex_state = 2}, + [5519] = {.lex_state = 127, .external_lex_state = 2}, + [5520] = {.lex_state = 127, .external_lex_state = 2}, + [5521] = {.lex_state = 127, .external_lex_state = 2}, + [5522] = {.lex_state = 127, .external_lex_state = 2}, + [5523] = {.lex_state = 127, .external_lex_state = 2}, + [5524] = {.lex_state = 127, .external_lex_state = 2}, + [5525] = {.lex_state = 127, .external_lex_state = 2}, + [5526] = {.lex_state = 127, .external_lex_state = 2}, + [5527] = {.lex_state = 127, .external_lex_state = 2}, + [5528] = {.lex_state = 127, .external_lex_state = 2}, + [5529] = {.lex_state = 127, .external_lex_state = 2}, + [5530] = {.lex_state = 127, .external_lex_state = 2}, + [5531] = {.lex_state = 127, .external_lex_state = 2}, + [5532] = {.lex_state = 127, .external_lex_state = 2}, + [5533] = {.lex_state = 127, .external_lex_state = 2}, + [5534] = {.lex_state = 127, .external_lex_state = 2}, + [5535] = {.lex_state = 127, .external_lex_state = 2}, + [5536] = {.lex_state = 127, .external_lex_state = 2}, + [5537] = {.lex_state = 127, .external_lex_state = 2}, + [5538] = {.lex_state = 127, .external_lex_state = 2}, + [5539] = {.lex_state = 127, .external_lex_state = 5}, + [5540] = {.lex_state = 127, .external_lex_state = 2}, + [5541] = {.lex_state = 127, .external_lex_state = 2}, + [5542] = {.lex_state = 127, .external_lex_state = 2}, + [5543] = {.lex_state = 127, .external_lex_state = 2}, + [5544] = {.lex_state = 127, .external_lex_state = 2}, + [5545] = {.lex_state = 127, .external_lex_state = 2}, + [5546] = {.lex_state = 127, .external_lex_state = 5}, + [5547] = {.lex_state = 127, .external_lex_state = 2}, + [5548] = {.lex_state = 127, .external_lex_state = 2}, + [5549] = {.lex_state = 127, .external_lex_state = 2}, + [5550] = {.lex_state = 127, .external_lex_state = 2}, + [5551] = {.lex_state = 127, .external_lex_state = 2}, + [5552] = {.lex_state = 127, .external_lex_state = 2}, + [5553] = {.lex_state = 127, .external_lex_state = 2}, + [5554] = {.lex_state = 127, .external_lex_state = 2}, + [5555] = {.lex_state = 127, .external_lex_state = 2}, + [5556] = {.lex_state = 127, .external_lex_state = 2}, + [5557] = {.lex_state = 127, .external_lex_state = 2}, + [5558] = {.lex_state = 127, .external_lex_state = 2}, + [5559] = {.lex_state = 127, .external_lex_state = 2}, + [5560] = {.lex_state = 127, .external_lex_state = 2}, + [5561] = {.lex_state = 127, .external_lex_state = 2}, + [5562] = {.lex_state = 127, .external_lex_state = 2}, + [5563] = {.lex_state = 127, .external_lex_state = 2}, + [5564] = {.lex_state = 127, .external_lex_state = 2}, + [5565] = {.lex_state = 127, .external_lex_state = 5}, + [5566] = {.lex_state = 127, .external_lex_state = 2}, + [5567] = {.lex_state = 127, .external_lex_state = 2}, + [5568] = {.lex_state = 127, .external_lex_state = 2}, + [5569] = {.lex_state = 127, .external_lex_state = 2}, + [5570] = {.lex_state = 127, .external_lex_state = 2}, + [5571] = {.lex_state = 127, .external_lex_state = 5}, + [5572] = {.lex_state = 127, .external_lex_state = 2}, + [5573] = {.lex_state = 127, .external_lex_state = 2}, + [5574] = {.lex_state = 127, .external_lex_state = 2}, + [5575] = {.lex_state = 127, .external_lex_state = 2}, + [5576] = {.lex_state = 127, .external_lex_state = 2}, + [5577] = {.lex_state = 127, .external_lex_state = 2}, + [5578] = {.lex_state = 127, .external_lex_state = 2}, + [5579] = {.lex_state = 127, .external_lex_state = 2}, + [5580] = {.lex_state = 127, .external_lex_state = 2}, + [5581] = {.lex_state = 127, .external_lex_state = 2}, + [5582] = {.lex_state = 127, .external_lex_state = 2}, + [5583] = {.lex_state = 127, .external_lex_state = 2}, + [5584] = {.lex_state = 127, .external_lex_state = 2}, + [5585] = {.lex_state = 127, .external_lex_state = 2}, + [5586] = {.lex_state = 127, .external_lex_state = 2}, + [5587] = {.lex_state = 127, .external_lex_state = 2}, + [5588] = {.lex_state = 127, .external_lex_state = 2}, + [5589] = {.lex_state = 127, .external_lex_state = 2}, + [5590] = {.lex_state = 127, .external_lex_state = 2}, + [5591] = {.lex_state = 127, .external_lex_state = 2}, + [5592] = {.lex_state = 127, .external_lex_state = 2}, + [5593] = {.lex_state = 127, .external_lex_state = 2}, + [5594] = {.lex_state = 127, .external_lex_state = 2}, + [5595] = {.lex_state = 127, .external_lex_state = 2}, + [5596] = {.lex_state = 127, .external_lex_state = 2}, + [5597] = {.lex_state = 127, .external_lex_state = 2}, + [5598] = {.lex_state = 32, .external_lex_state = 2}, + [5599] = {.lex_state = 127, .external_lex_state = 2}, + [5600] = {.lex_state = 127, .external_lex_state = 2}, + [5601] = {.lex_state = 127, .external_lex_state = 2}, + [5602] = {.lex_state = 127, .external_lex_state = 2}, + [5603] = {.lex_state = 127, .external_lex_state = 2}, + [5604] = {.lex_state = 127, .external_lex_state = 2}, + [5605] = {.lex_state = 127, .external_lex_state = 2}, + [5606] = {.lex_state = 127, .external_lex_state = 2}, + [5607] = {.lex_state = 127, .external_lex_state = 2}, + [5608] = {.lex_state = 127, .external_lex_state = 2}, + [5609] = {.lex_state = 1, .external_lex_state = 11}, + [5610] = {.lex_state = 127, .external_lex_state = 2}, + [5611] = {.lex_state = 127, .external_lex_state = 2}, + [5612] = {.lex_state = 127, .external_lex_state = 2}, + [5613] = {.lex_state = 127, .external_lex_state = 2}, + [5614] = {.lex_state = 127, .external_lex_state = 2}, + [5615] = {.lex_state = 127, .external_lex_state = 2}, + [5616] = {.lex_state = 127, .external_lex_state = 2}, + [5617] = {.lex_state = 127, .external_lex_state = 2}, + [5618] = {.lex_state = 127, .external_lex_state = 2}, + [5619] = {.lex_state = 127, .external_lex_state = 2}, + [5620] = {.lex_state = 127, .external_lex_state = 2}, + [5621] = {.lex_state = 127, .external_lex_state = 2}, + [5622] = {.lex_state = 127, .external_lex_state = 2}, + [5623] = {.lex_state = 127, .external_lex_state = 2}, + [5624] = {.lex_state = 127, .external_lex_state = 2}, + [5625] = {.lex_state = 127, .external_lex_state = 2}, + [5626] = {.lex_state = 127, .external_lex_state = 2}, + [5627] = {.lex_state = 127, .external_lex_state = 2}, + [5628] = {.lex_state = 127, .external_lex_state = 2}, + [5629] = {.lex_state = 127, .external_lex_state = 2}, + [5630] = {.lex_state = 127, .external_lex_state = 2}, + [5631] = {.lex_state = 127, .external_lex_state = 2}, + [5632] = {.lex_state = 127, .external_lex_state = 2}, + [5633] = {.lex_state = 127, .external_lex_state = 2}, + [5634] = {.lex_state = 127, .external_lex_state = 2}, + [5635] = {.lex_state = 1, .external_lex_state = 11}, + [5636] = {.lex_state = 127, .external_lex_state = 2}, + [5637] = {.lex_state = 127, .external_lex_state = 2}, + [5638] = {.lex_state = 127, .external_lex_state = 2}, + [5639] = {.lex_state = 127, .external_lex_state = 2}, + [5640] = {.lex_state = 127, .external_lex_state = 2}, + [5641] = {.lex_state = 127, .external_lex_state = 2}, + [5642] = {.lex_state = 127, .external_lex_state = 2}, + [5643] = {.lex_state = 127, .external_lex_state = 2}, + [5644] = {.lex_state = 127, .external_lex_state = 2}, + [5645] = {.lex_state = 127, .external_lex_state = 2}, + [5646] = {.lex_state = 127, .external_lex_state = 2}, + [5647] = {.lex_state = 127, .external_lex_state = 2}, + [5648] = {.lex_state = 127, .external_lex_state = 2}, + [5649] = {.lex_state = 127, .external_lex_state = 2}, + [5650] = {.lex_state = 127, .external_lex_state = 2}, + [5651] = {.lex_state = 127, .external_lex_state = 2}, + [5652] = {.lex_state = 127, .external_lex_state = 2}, + [5653] = {.lex_state = 127, .external_lex_state = 2}, + [5654] = {.lex_state = 127, .external_lex_state = 2}, + [5655] = {.lex_state = 127, .external_lex_state = 2}, + [5656] = {.lex_state = 127, .external_lex_state = 2}, + [5657] = {.lex_state = 127, .external_lex_state = 2}, + [5658] = {.lex_state = 127, .external_lex_state = 2}, + [5659] = {.lex_state = 127, .external_lex_state = 2}, + [5660] = {.lex_state = 127, .external_lex_state = 2}, + [5661] = {.lex_state = 127, .external_lex_state = 2}, + [5662] = {.lex_state = 127, .external_lex_state = 2}, + [5663] = {.lex_state = 127, .external_lex_state = 2}, + [5664] = {.lex_state = 127, .external_lex_state = 2}, + [5665] = {.lex_state = 127, .external_lex_state = 2}, + [5666] = {.lex_state = 127, .external_lex_state = 2}, + [5667] = {.lex_state = 127, .external_lex_state = 2}, + [5668] = {.lex_state = 127, .external_lex_state = 2}, + [5669] = {.lex_state = 127, .external_lex_state = 2}, + [5670] = {.lex_state = 127, .external_lex_state = 2}, + [5671] = {.lex_state = 127, .external_lex_state = 2}, + [5672] = {.lex_state = 127, .external_lex_state = 2}, + [5673] = {.lex_state = 127, .external_lex_state = 2}, + [5674] = {.lex_state = 127, .external_lex_state = 2}, + [5675] = {.lex_state = 127, .external_lex_state = 2}, + [5676] = {.lex_state = 127, .external_lex_state = 2}, + [5677] = {.lex_state = 127, .external_lex_state = 2}, + [5678] = {.lex_state = 127, .external_lex_state = 2}, + [5679] = {.lex_state = 127, .external_lex_state = 2}, + [5680] = {.lex_state = 127, .external_lex_state = 2}, + [5681] = {.lex_state = 127, .external_lex_state = 2}, + [5682] = {.lex_state = 127, .external_lex_state = 2}, + [5683] = {.lex_state = 127, .external_lex_state = 2}, + [5684] = {.lex_state = 127, .external_lex_state = 2}, + [5685] = {.lex_state = 127, .external_lex_state = 2}, + [5686] = {.lex_state = 127, .external_lex_state = 2}, + [5687] = {.lex_state = 127, .external_lex_state = 2}, + [5688] = {.lex_state = 127, .external_lex_state = 2}, + [5689] = {.lex_state = 127, .external_lex_state = 2}, + [5690] = {.lex_state = 127, .external_lex_state = 2}, + [5691] = {.lex_state = 127, .external_lex_state = 2}, + [5692] = {.lex_state = 127, .external_lex_state = 2}, + [5693] = {.lex_state = 127, .external_lex_state = 2}, + [5694] = {.lex_state = 127, .external_lex_state = 2}, + [5695] = {.lex_state = 127, .external_lex_state = 2}, + [5696] = {.lex_state = 127, .external_lex_state = 2}, + [5697] = {.lex_state = 127, .external_lex_state = 2}, + [5698] = {.lex_state = 127, .external_lex_state = 2}, + [5699] = {.lex_state = 127, .external_lex_state = 2}, + [5700] = {.lex_state = 127, .external_lex_state = 2}, + [5701] = {.lex_state = 127, .external_lex_state = 2}, + [5702] = {.lex_state = 127, .external_lex_state = 2}, + [5703] = {.lex_state = 127, .external_lex_state = 2}, + [5704] = {.lex_state = 127, .external_lex_state = 2}, + [5705] = {.lex_state = 127, .external_lex_state = 2}, + [5706] = {.lex_state = 127, .external_lex_state = 2}, + [5707] = {.lex_state = 127, .external_lex_state = 2}, + [5708] = {.lex_state = 127, .external_lex_state = 2}, + [5709] = {.lex_state = 127, .external_lex_state = 2}, + [5710] = {.lex_state = 127, .external_lex_state = 2}, + [5711] = {.lex_state = 127, .external_lex_state = 2}, + [5712] = {.lex_state = 127, .external_lex_state = 2}, + [5713] = {.lex_state = 127, .external_lex_state = 2}, + [5714] = {.lex_state = 127, .external_lex_state = 2}, + [5715] = {.lex_state = 127, .external_lex_state = 2}, + [5716] = {.lex_state = 127, .external_lex_state = 2}, + [5717] = {.lex_state = 127, .external_lex_state = 2}, + [5718] = {.lex_state = 127, .external_lex_state = 2}, + [5719] = {.lex_state = 127, .external_lex_state = 2}, + [5720] = {.lex_state = 127, .external_lex_state = 2}, + [5721] = {.lex_state = 127, .external_lex_state = 2}, + [5722] = {.lex_state = 127, .external_lex_state = 2}, + [5723] = {.lex_state = 127, .external_lex_state = 2}, + [5724] = {.lex_state = 127, .external_lex_state = 2}, + [5725] = {.lex_state = 127, .external_lex_state = 2}, + [5726] = {.lex_state = 127, .external_lex_state = 2}, + [5727] = {.lex_state = 127, .external_lex_state = 2}, + [5728] = {.lex_state = 127, .external_lex_state = 2}, + [5729] = {.lex_state = 127, .external_lex_state = 2}, + [5730] = {.lex_state = 127, .external_lex_state = 2}, + [5731] = {.lex_state = 127, .external_lex_state = 2}, + [5732] = {.lex_state = 127, .external_lex_state = 2}, + [5733] = {.lex_state = 127, .external_lex_state = 2}, + [5734] = {.lex_state = 127, .external_lex_state = 2}, + [5735] = {.lex_state = 127, .external_lex_state = 2}, + [5736] = {.lex_state = 127, .external_lex_state = 2}, + [5737] = {.lex_state = 127, .external_lex_state = 2}, + [5738] = {.lex_state = 127, .external_lex_state = 2}, + [5739] = {.lex_state = 127, .external_lex_state = 2}, + [5740] = {.lex_state = 127, .external_lex_state = 2}, + [5741] = {.lex_state = 127, .external_lex_state = 2}, + [5742] = {.lex_state = 127, .external_lex_state = 2}, + [5743] = {.lex_state = 127, .external_lex_state = 2}, + [5744] = {.lex_state = 127, .external_lex_state = 2}, + [5745] = {.lex_state = 127, .external_lex_state = 2}, + [5746] = {.lex_state = 127, .external_lex_state = 2}, + [5747] = {.lex_state = 127, .external_lex_state = 2}, + [5748] = {.lex_state = 127, .external_lex_state = 2}, + [5749] = {.lex_state = 127, .external_lex_state = 2}, + [5750] = {.lex_state = 127, .external_lex_state = 2}, + [5751] = {.lex_state = 127, .external_lex_state = 2}, + [5752] = {.lex_state = 127, .external_lex_state = 2}, + [5753] = {.lex_state = 127, .external_lex_state = 2}, + [5754] = {.lex_state = 127, .external_lex_state = 2}, + [5755] = {.lex_state = 127, .external_lex_state = 2}, + [5756] = {.lex_state = 127, .external_lex_state = 2}, + [5757] = {.lex_state = 127, .external_lex_state = 2}, + [5758] = {.lex_state = 127, .external_lex_state = 2}, + [5759] = {.lex_state = 127, .external_lex_state = 2}, + [5760] = {.lex_state = 127, .external_lex_state = 2}, + [5761] = {.lex_state = 127, .external_lex_state = 2}, + [5762] = {.lex_state = 127, .external_lex_state = 2}, + [5763] = {.lex_state = 127, .external_lex_state = 2}, + [5764] = {.lex_state = 127, .external_lex_state = 2}, + [5765] = {.lex_state = 127, .external_lex_state = 2}, + [5766] = {.lex_state = 127, .external_lex_state = 2}, + [5767] = {.lex_state = 127, .external_lex_state = 2}, + [5768] = {.lex_state = 127, .external_lex_state = 2}, + [5769] = {.lex_state = 127, .external_lex_state = 2}, + [5770] = {.lex_state = 127, .external_lex_state = 2}, + [5771] = {.lex_state = 127, .external_lex_state = 2}, + [5772] = {.lex_state = 127, .external_lex_state = 2}, + [5773] = {.lex_state = 127, .external_lex_state = 2}, + [5774] = {.lex_state = 127, .external_lex_state = 2}, + [5775] = {.lex_state = 127, .external_lex_state = 2}, + [5776] = {.lex_state = 127, .external_lex_state = 2}, + [5777] = {.lex_state = 127, .external_lex_state = 2}, + [5778] = {.lex_state = 127, .external_lex_state = 2}, + [5779] = {.lex_state = 127, .external_lex_state = 2}, + [5780] = {.lex_state = 127, .external_lex_state = 2}, + [5781] = {.lex_state = 127, .external_lex_state = 2}, + [5782] = {.lex_state = 127, .external_lex_state = 2}, + [5783] = {.lex_state = 127, .external_lex_state = 2}, + [5784] = {.lex_state = 127, .external_lex_state = 2}, + [5785] = {.lex_state = 127, .external_lex_state = 2}, + [5786] = {.lex_state = 127, .external_lex_state = 2}, + [5787] = {.lex_state = 127, .external_lex_state = 2}, + [5788] = {.lex_state = 127, .external_lex_state = 2}, + [5789] = {.lex_state = 127, .external_lex_state = 2}, + [5790] = {.lex_state = 127, .external_lex_state = 2}, + [5791] = {.lex_state = 127, .external_lex_state = 2}, + [5792] = {.lex_state = 127, .external_lex_state = 2}, + [5793] = {.lex_state = 127, .external_lex_state = 2}, + [5794] = {.lex_state = 127, .external_lex_state = 2}, + [5795] = {.lex_state = 127, .external_lex_state = 2}, + [5796] = {.lex_state = 127, .external_lex_state = 2}, + [5797] = {.lex_state = 127, .external_lex_state = 2}, + [5798] = {.lex_state = 127, .external_lex_state = 2}, + [5799] = {.lex_state = 127, .external_lex_state = 2}, + [5800] = {.lex_state = 127, .external_lex_state = 2}, + [5801] = {.lex_state = 127, .external_lex_state = 2}, + [5802] = {.lex_state = 127, .external_lex_state = 2}, + [5803] = {.lex_state = 127, .external_lex_state = 2}, + [5804] = {.lex_state = 127, .external_lex_state = 2}, + [5805] = {.lex_state = 127, .external_lex_state = 2}, + [5806] = {.lex_state = 127, .external_lex_state = 2}, + [5807] = {.lex_state = 127, .external_lex_state = 2}, + [5808] = {.lex_state = 127, .external_lex_state = 2}, + [5809] = {.lex_state = 127, .external_lex_state = 2}, + [5810] = {.lex_state = 127, .external_lex_state = 2}, + [5811] = {.lex_state = 127, .external_lex_state = 2}, + [5812] = {.lex_state = 127, .external_lex_state = 2}, + [5813] = {.lex_state = 127, .external_lex_state = 2}, + [5814] = {.lex_state = 127, .external_lex_state = 2}, + [5815] = {.lex_state = 127, .external_lex_state = 2}, + [5816] = {.lex_state = 127, .external_lex_state = 2}, + [5817] = {.lex_state = 127, .external_lex_state = 2}, + [5818] = {.lex_state = 127, .external_lex_state = 2}, + [5819] = {.lex_state = 127, .external_lex_state = 2}, + [5820] = {.lex_state = 127, .external_lex_state = 2}, + [5821] = {.lex_state = 127, .external_lex_state = 2}, + [5822] = {.lex_state = 127, .external_lex_state = 2}, + [5823] = {.lex_state = 127, .external_lex_state = 2}, + [5824] = {.lex_state = 127, .external_lex_state = 2}, + [5825] = {.lex_state = 127, .external_lex_state = 2}, + [5826] = {.lex_state = 1, .external_lex_state = 11}, + [5827] = {.lex_state = 127, .external_lex_state = 2}, + [5828] = {.lex_state = 127, .external_lex_state = 2}, + [5829] = {.lex_state = 127, .external_lex_state = 2}, + [5830] = {.lex_state = 1, .external_lex_state = 11}, + [5831] = {.lex_state = 127, .external_lex_state = 2}, + [5832] = {.lex_state = 127, .external_lex_state = 2}, + [5833] = {.lex_state = 127, .external_lex_state = 2}, + [5834] = {.lex_state = 127, .external_lex_state = 2}, + [5835] = {.lex_state = 127, .external_lex_state = 2}, + [5836] = {.lex_state = 127, .external_lex_state = 2}, + [5837] = {.lex_state = 127, .external_lex_state = 2}, + [5838] = {.lex_state = 32, .external_lex_state = 2}, + [5839] = {.lex_state = 127, .external_lex_state = 2}, + [5840] = {.lex_state = 127, .external_lex_state = 2}, + [5841] = {.lex_state = 127, .external_lex_state = 2}, + [5842] = {.lex_state = 127, .external_lex_state = 2}, + [5843] = {.lex_state = 127, .external_lex_state = 2}, + [5844] = {.lex_state = 127, .external_lex_state = 2}, + [5845] = {.lex_state = 127, .external_lex_state = 2}, + [5846] = {.lex_state = 127, .external_lex_state = 2}, + [5847] = {.lex_state = 127, .external_lex_state = 2}, + [5848] = {.lex_state = 127, .external_lex_state = 2}, + [5849] = {.lex_state = 127, .external_lex_state = 2}, + [5850] = {.lex_state = 127, .external_lex_state = 2}, + [5851] = {.lex_state = 127, .external_lex_state = 2}, + [5852] = {.lex_state = 127, .external_lex_state = 2}, + [5853] = {.lex_state = 127, .external_lex_state = 2}, + [5854] = {.lex_state = 127, .external_lex_state = 2}, + [5855] = {.lex_state = 127, .external_lex_state = 2}, + [5856] = {.lex_state = 127, .external_lex_state = 2}, + [5857] = {.lex_state = 127, .external_lex_state = 2}, + [5858] = {.lex_state = 127, .external_lex_state = 2}, + [5859] = {.lex_state = 127, .external_lex_state = 2}, + [5860] = {.lex_state = 127, .external_lex_state = 2}, + [5861] = {.lex_state = 127, .external_lex_state = 2}, + [5862] = {.lex_state = 127, .external_lex_state = 2}, + [5863] = {.lex_state = 127, .external_lex_state = 2}, + [5864] = {.lex_state = 127, .external_lex_state = 2}, + [5865] = {.lex_state = 127, .external_lex_state = 2}, + [5866] = {.lex_state = 127, .external_lex_state = 2}, + [5867] = {.lex_state = 127, .external_lex_state = 2}, + [5868] = {.lex_state = 127, .external_lex_state = 2}, + [5869] = {.lex_state = 127, .external_lex_state = 2}, + [5870] = {.lex_state = 127, .external_lex_state = 2}, + [5871] = {.lex_state = 127, .external_lex_state = 2}, + [5872] = {.lex_state = 127, .external_lex_state = 2}, + [5873] = {.lex_state = 127, .external_lex_state = 2}, + [5874] = {.lex_state = 127, .external_lex_state = 2}, + [5875] = {.lex_state = 127, .external_lex_state = 2}, + [5876] = {.lex_state = 127, .external_lex_state = 2}, + [5877] = {.lex_state = 127, .external_lex_state = 2}, + [5878] = {.lex_state = 127, .external_lex_state = 2}, + [5879] = {.lex_state = 127, .external_lex_state = 2}, + [5880] = {.lex_state = 127, .external_lex_state = 2}, + [5881] = {.lex_state = 127, .external_lex_state = 2}, + [5882] = {.lex_state = 127, .external_lex_state = 2}, + [5883] = {.lex_state = 127, .external_lex_state = 2}, + [5884] = {.lex_state = 127, .external_lex_state = 2}, + [5885] = {.lex_state = 127, .external_lex_state = 2}, + [5886] = {.lex_state = 127, .external_lex_state = 2}, + [5887] = {.lex_state = 127, .external_lex_state = 2}, + [5888] = {.lex_state = 127, .external_lex_state = 2}, + [5889] = {.lex_state = 127, .external_lex_state = 2}, + [5890] = {.lex_state = 127, .external_lex_state = 2}, + [5891] = {.lex_state = 127, .external_lex_state = 2}, + [5892] = {.lex_state = 127, .external_lex_state = 2}, + [5893] = {.lex_state = 127, .external_lex_state = 2}, + [5894] = {.lex_state = 127, .external_lex_state = 2}, + [5895] = {.lex_state = 32, .external_lex_state = 2}, + [5896] = {.lex_state = 127, .external_lex_state = 2}, + [5897] = {.lex_state = 127, .external_lex_state = 2}, + [5898] = {.lex_state = 127, .external_lex_state = 2}, + [5899] = {.lex_state = 127, .external_lex_state = 2}, + [5900] = {.lex_state = 127, .external_lex_state = 2}, + [5901] = {.lex_state = 127, .external_lex_state = 2}, + [5902] = {.lex_state = 127, .external_lex_state = 2}, + [5903] = {.lex_state = 127, .external_lex_state = 2}, + [5904] = {.lex_state = 127, .external_lex_state = 2}, + [5905] = {.lex_state = 127, .external_lex_state = 2}, + [5906] = {.lex_state = 127, .external_lex_state = 2}, + [5907] = {.lex_state = 127, .external_lex_state = 2}, + [5908] = {.lex_state = 127, .external_lex_state = 2}, + [5909] = {.lex_state = 127, .external_lex_state = 2}, + [5910] = {.lex_state = 32, .external_lex_state = 2}, + [5911] = {.lex_state = 127, .external_lex_state = 2}, + [5912] = {.lex_state = 127, .external_lex_state = 2}, + [5913] = {.lex_state = 127, .external_lex_state = 2}, + [5914] = {.lex_state = 127, .external_lex_state = 2}, + [5915] = {.lex_state = 127, .external_lex_state = 2}, + [5916] = {.lex_state = 32, .external_lex_state = 2}, + [5917] = {.lex_state = 127, .external_lex_state = 2}, + [5918] = {.lex_state = 127, .external_lex_state = 2}, + [5919] = {.lex_state = 127, .external_lex_state = 2}, + [5920] = {.lex_state = 127, .external_lex_state = 2}, + [5921] = {.lex_state = 127, .external_lex_state = 2}, + [5922] = {.lex_state = 127, .external_lex_state = 2}, + [5923] = {.lex_state = 127, .external_lex_state = 2}, + [5924] = {.lex_state = 127, .external_lex_state = 2}, + [5925] = {.lex_state = 127, .external_lex_state = 2}, + [5926] = {.lex_state = 127, .external_lex_state = 2}, + [5927] = {.lex_state = 127, .external_lex_state = 2}, + [5928] = {.lex_state = 127, .external_lex_state = 2}, + [5929] = {.lex_state = 127, .external_lex_state = 2}, + [5930] = {.lex_state = 127, .external_lex_state = 2}, + [5931] = {.lex_state = 127, .external_lex_state = 2}, + [5932] = {.lex_state = 127, .external_lex_state = 2}, + [5933] = {.lex_state = 127, .external_lex_state = 2}, + [5934] = {.lex_state = 127, .external_lex_state = 2}, + [5935] = {.lex_state = 127, .external_lex_state = 2}, + [5936] = {.lex_state = 127, .external_lex_state = 2}, + [5937] = {.lex_state = 127, .external_lex_state = 2}, + [5938] = {.lex_state = 127, .external_lex_state = 2}, + [5939] = {.lex_state = 127, .external_lex_state = 2}, + [5940] = {.lex_state = 127, .external_lex_state = 2}, + [5941] = {.lex_state = 127, .external_lex_state = 2}, + [5942] = {.lex_state = 127, .external_lex_state = 2}, + [5943] = {.lex_state = 127, .external_lex_state = 2}, + [5944] = {.lex_state = 127, .external_lex_state = 2}, + [5945] = {.lex_state = 127, .external_lex_state = 2}, + [5946] = {.lex_state = 127, .external_lex_state = 2}, + [5947] = {.lex_state = 127, .external_lex_state = 2}, + [5948] = {.lex_state = 127, .external_lex_state = 2}, + [5949] = {.lex_state = 127, .external_lex_state = 2}, + [5950] = {.lex_state = 127, .external_lex_state = 2}, + [5951] = {.lex_state = 127, .external_lex_state = 2}, + [5952] = {.lex_state = 127, .external_lex_state = 2}, + [5953] = {.lex_state = 127, .external_lex_state = 2}, + [5954] = {.lex_state = 127, .external_lex_state = 2}, + [5955] = {.lex_state = 127, .external_lex_state = 2}, + [5956] = {.lex_state = 127, .external_lex_state = 2}, + [5957] = {.lex_state = 127, .external_lex_state = 2}, + [5958] = {.lex_state = 127, .external_lex_state = 2}, + [5959] = {.lex_state = 127, .external_lex_state = 2}, + [5960] = {.lex_state = 127, .external_lex_state = 2}, + [5961] = {.lex_state = 127, .external_lex_state = 2}, + [5962] = {.lex_state = 127, .external_lex_state = 2}, + [5963] = {.lex_state = 127, .external_lex_state = 2}, + [5964] = {.lex_state = 127, .external_lex_state = 2}, + [5965] = {.lex_state = 127, .external_lex_state = 2}, + [5966] = {.lex_state = 127, .external_lex_state = 2}, + [5967] = {.lex_state = 127, .external_lex_state = 2}, + [5968] = {.lex_state = 127, .external_lex_state = 2}, + [5969] = {.lex_state = 127, .external_lex_state = 2}, + [5970] = {.lex_state = 127, .external_lex_state = 2}, + [5971] = {.lex_state = 127, .external_lex_state = 2}, + [5972] = {.lex_state = 127, .external_lex_state = 2}, + [5973] = {.lex_state = 127, .external_lex_state = 2}, + [5974] = {.lex_state = 127, .external_lex_state = 2}, + [5975] = {.lex_state = 127, .external_lex_state = 2}, + [5976] = {.lex_state = 127, .external_lex_state = 2}, + [5977] = {.lex_state = 127, .external_lex_state = 2}, + [5978] = {.lex_state = 127, .external_lex_state = 2}, + [5979] = {.lex_state = 127, .external_lex_state = 2}, + [5980] = {.lex_state = 127, .external_lex_state = 2}, + [5981] = {.lex_state = 127, .external_lex_state = 2}, + [5982] = {.lex_state = 127, .external_lex_state = 2}, + [5983] = {.lex_state = 127, .external_lex_state = 2}, + [5984] = {.lex_state = 127, .external_lex_state = 2}, + [5985] = {.lex_state = 127, .external_lex_state = 2}, + [5986] = {.lex_state = 127, .external_lex_state = 2}, + [5987] = {.lex_state = 127, .external_lex_state = 2}, + [5988] = {.lex_state = 1, .external_lex_state = 11}, }; 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), @@ -19730,6 +19936,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_SLASH] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_AMP2] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_async] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), @@ -19743,22 +19951,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(1), [anon_sym_PERCENT_EQ] = ACTIONS(1), [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), [anon_sym_PIPE_EQ] = ACTIONS(1), [anon_sym_GT_GT_EQ] = ACTIONS(1), [anon_sym_GT_GT_GT_EQ] = ACTIONS(1), [anon_sym_LT_LT_EQ] = ACTIONS(1), [anon_sym_STAR_STAR_EQ] = ACTIONS(1), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1), [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_GT_GT_GT] = ACTIONS(1), [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), + [anon_sym_AMP3] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), @@ -19841,87 +20046,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__function_signature_automatic_semicolon] = ACTIONS(1), [sym___error_recovery] = ACTIONS(1), }, - [1] = { - [sym_program] = STATE(5712), - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(1)] = { + [sym_program] = STATE(5919), + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3882), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -20000,79 +20205,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [2] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(2)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), @@ -20082,390 +20287,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(194), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(193), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(202), + [anon_sym_readonly] = ACTIONS(201), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_QMARK] = ACTIONS(203), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), [anon_sym_protected] = ACTIONS(113), [anon_sym_override] = ACTIONS(113), [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [3] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(3)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(115), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(194), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(193), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(202), + [anon_sym_readonly] = ACTIONS(201), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(204), + [anon_sym_QMARK] = ACTIONS(203), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), [anon_sym_protected] = ACTIONS(113), [anon_sym_override] = ACTIONS(113), [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [4] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5647), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5647), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5647), - [sym_spread_element] = STATE(4687), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2134), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4687), - [sym_pair] = STATE(4687), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3705), - [sym_computed_property_name] = STATE(3705), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_accessibility_modifier] = STATE(2732), - [sym_override_modifier] = STATE(2743), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3919), - [aux_sym_object_repeat1] = STATE(4618), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(4)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5590), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5590), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5590), + [sym_spread_element] = STATE(4638), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2240), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4638), + [sym_pair] = STATE(4638), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3668), + [sym_computed_property_name] = STATE(3668), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_accessibility_modifier] = STATE(2720), + [sym_override_modifier] = STATE(2744), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3882), + [aux_sym_object_repeat1] = STATE(4694), + [aux_sym_object_pattern_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(227), [anon_sym_export] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), @@ -20546,111 +20751,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [5] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5647), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5647), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5647), - [sym_spread_element] = STATE(4687), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2134), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4687), - [sym_pair] = STATE(4687), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3705), - [sym_computed_property_name] = STATE(3705), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_accessibility_modifier] = STATE(2732), - [sym_override_modifier] = STATE(2743), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3919), - [aux_sym_object_repeat1] = STATE(4618), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(227), - [anon_sym_export] = ACTIONS(229), + [STATE(5)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5590), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5590), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5590), + [sym_spread_element] = STATE(4836), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2240), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3668), + [sym_computed_property_name] = STATE(3668), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_accessibility_modifier] = STATE(2720), + [sym_override_modifier] = STATE(2744), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3882), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(271), + [anon_sym_export] = ACTIONS(273), [anon_sym_STAR] = ACTIONS(231), - [anon_sym_type] = ACTIONS(233), - [anon_sym_namespace] = ACTIONS(235), + [anon_sym_type] = ACTIONS(275), + [anon_sym_namespace] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(279), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(241), + [anon_sym_let] = ACTIONS(281), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20672,9 +20877,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(245), + [anon_sym_async] = ACTIONS(283), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(247), + [anon_sym_new] = ACTIONS(285), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), @@ -20697,132 +20902,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(255), - [anon_sym_readonly] = ACTIONS(257), - [anon_sym_get] = ACTIONS(259), - [anon_sym_set] = ACTIONS(259), - [anon_sym_declare] = ACTIONS(261), - [anon_sym_public] = ACTIONS(263), - [anon_sym_private] = ACTIONS(263), - [anon_sym_protected] = ACTIONS(263), - [anon_sym_override] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_any] = ACTIONS(269), - [anon_sym_number] = ACTIONS(269), - [anon_sym_boolean] = ACTIONS(269), - [anon_sym_string] = ACTIONS(269), - [anon_sym_symbol] = ACTIONS(269), - [anon_sym_object] = ACTIONS(269), + [anon_sym_static] = ACTIONS(287), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_get] = ACTIONS(291), + [anon_sym_set] = ACTIONS(291), + [anon_sym_declare] = ACTIONS(293), + [anon_sym_public] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_override] = ACTIONS(297), + [anon_sym_module] = ACTIONS(299), + [anon_sym_any] = ACTIONS(301), + [anon_sym_number] = ACTIONS(301), + [anon_sym_boolean] = ACTIONS(301), + [anon_sym_string] = ACTIONS(301), + [anon_sym_symbol] = ACTIONS(301), + [anon_sym_object] = ACTIONS(301), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [6] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5647), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5647), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5647), - [sym_spread_element] = STATE(4841), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2134), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3705), - [sym_computed_property_name] = STATE(3705), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_accessibility_modifier] = STATE(2732), - [sym_override_modifier] = STATE(2743), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(3919), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(273), - [anon_sym_export] = ACTIONS(275), + [STATE(6)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5590), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5590), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5590), + [sym_spread_element] = STATE(4638), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2240), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4638), + [sym_pair] = STATE(4638), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3668), + [sym_computed_property_name] = STATE(3668), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_accessibility_modifier] = STATE(2720), + [sym_override_modifier] = STATE(2744), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(3882), + [aux_sym_object_repeat1] = STATE(4694), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), - [anon_sym_type] = ACTIONS(277), - [anon_sym_namespace] = ACTIONS(279), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(283), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -20844,9 +21049,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(285), + [anon_sym_async] = ACTIONS(245), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(287), + [anon_sym_new] = ACTIONS(247), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), @@ -20869,132 +21074,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(289), - [anon_sym_readonly] = ACTIONS(291), - [anon_sym_get] = ACTIONS(293), - [anon_sym_set] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(295), - [anon_sym_public] = ACTIONS(297), - [anon_sym_private] = ACTIONS(297), - [anon_sym_protected] = ACTIONS(297), - [anon_sym_override] = ACTIONS(299), - [anon_sym_module] = ACTIONS(301), - [anon_sym_any] = ACTIONS(303), - [anon_sym_number] = ACTIONS(303), - [anon_sym_boolean] = ACTIONS(303), - [anon_sym_string] = ACTIONS(303), - [anon_sym_symbol] = ACTIONS(303), - [anon_sym_object] = ACTIONS(303), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [7] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5647), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5647), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5647), - [sym_spread_element] = STATE(4687), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2134), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4687), - [sym_pair] = STATE(4687), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3705), - [sym_computed_property_name] = STATE(3705), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_accessibility_modifier] = STATE(2732), - [sym_override_modifier] = STATE(2743), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3919), - [aux_sym_object_repeat1] = STATE(4618), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(227), - [anon_sym_export] = ACTIONS(229), + [STATE(7)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5590), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5590), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5590), + [sym_spread_element] = STATE(4836), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2240), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3668), + [sym_computed_property_name] = STATE(3668), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_accessibility_modifier] = STATE(2720), + [sym_override_modifier] = STATE(2744), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3882), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(305), + [anon_sym_export] = ACTIONS(307), [anon_sym_STAR] = ACTIONS(231), - [anon_sym_type] = ACTIONS(233), - [anon_sym_namespace] = ACTIONS(235), + [anon_sym_type] = ACTIONS(309), + [anon_sym_namespace] = ACTIONS(311), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(279), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(241), + [anon_sym_let] = ACTIONS(313), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -21016,9 +21221,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(245), + [anon_sym_async] = ACTIONS(315), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(247), + [anon_sym_new] = ACTIONS(317), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), @@ -21041,132 +21246,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(255), - [anon_sym_readonly] = ACTIONS(257), - [anon_sym_get] = ACTIONS(259), - [anon_sym_set] = ACTIONS(259), - [anon_sym_declare] = ACTIONS(261), - [anon_sym_public] = ACTIONS(263), - [anon_sym_private] = ACTIONS(263), - [anon_sym_protected] = ACTIONS(263), - [anon_sym_override] = ACTIONS(265), - [anon_sym_module] = ACTIONS(267), - [anon_sym_any] = ACTIONS(269), - [anon_sym_number] = ACTIONS(269), - [anon_sym_boolean] = ACTIONS(269), - [anon_sym_string] = ACTIONS(269), - [anon_sym_symbol] = ACTIONS(269), - [anon_sym_object] = ACTIONS(269), + [anon_sym_static] = ACTIONS(319), + [anon_sym_readonly] = ACTIONS(321), + [anon_sym_get] = ACTIONS(323), + [anon_sym_set] = ACTIONS(323), + [anon_sym_declare] = ACTIONS(325), + [anon_sym_public] = ACTIONS(327), + [anon_sym_private] = ACTIONS(327), + [anon_sym_protected] = ACTIONS(327), + [anon_sym_override] = ACTIONS(329), + [anon_sym_module] = ACTIONS(331), + [anon_sym_any] = ACTIONS(333), + [anon_sym_number] = ACTIONS(333), + [anon_sym_boolean] = ACTIONS(333), + [anon_sym_string] = ACTIONS(333), + [anon_sym_symbol] = ACTIONS(333), + [anon_sym_object] = ACTIONS(333), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [8] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5647), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5647), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5647), - [sym_spread_element] = STATE(4841), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2134), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3705), - [sym_computed_property_name] = STATE(3705), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_accessibility_modifier] = STATE(2732), - [sym_override_modifier] = STATE(2743), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(3919), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(307), - [anon_sym_export] = ACTIONS(309), + [STATE(8)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5590), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5590), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5590), + [sym_spread_element] = STATE(4638), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2240), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4638), + [sym_pair] = STATE(4638), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3668), + [sym_computed_property_name] = STATE(3668), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_accessibility_modifier] = STATE(2720), + [sym_override_modifier] = STATE(2744), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3882), + [aux_sym_object_repeat1] = STATE(4694), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), - [anon_sym_type] = ACTIONS(311), - [anon_sym_namespace] = ACTIONS(313), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(335), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(315), + [anon_sym_let] = ACTIONS(241), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), [anon_sym_if] = ACTIONS(35), @@ -21188,9 +21393,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(317), + [anon_sym_async] = ACTIONS(245), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(319), + [anon_sym_new] = ACTIONS(247), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(21), @@ -21213,107 +21418,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(321), - [anon_sym_readonly] = ACTIONS(323), - [anon_sym_get] = ACTIONS(325), - [anon_sym_set] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_public] = ACTIONS(329), - [anon_sym_private] = ACTIONS(329), - [anon_sym_protected] = ACTIONS(329), - [anon_sym_override] = ACTIONS(331), - [anon_sym_module] = ACTIONS(333), - [anon_sym_any] = ACTIONS(335), - [anon_sym_number] = ACTIONS(335), - [anon_sym_boolean] = ACTIONS(335), - [anon_sym_string] = ACTIONS(335), - [anon_sym_symbol] = ACTIONS(335), - [anon_sym_object] = ACTIONS(335), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [9] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [STATE(9)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3882), [ts_builtin_sym_end] = ACTIONS(337), [sym_identifier] = ACTIONS(339), [anon_sym_export] = ACTIONS(342), @@ -21394,86 +21599,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(488), [sym_html_comment] = ACTIONS(5), }, - [10] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [STATE(10)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(491), @@ -21553,86 +21758,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [11] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [STATE(11)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), [sym_statement] = STATE(10), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), [aux_sym_program_repeat1] = STATE(10), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(495), @@ -21712,86 +21917,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [12] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [STATE(12)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(499), @@ -21871,86 +22076,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [13] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [STATE(13)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(503), @@ -22030,92 +22235,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [14] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [STATE(14)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), - [ts_builtin_sym_end] = ACTIONS(507), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(507), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22187,86 +22392,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [15] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [STATE(15)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3882), [ts_builtin_sym_end] = ACTIONS(509), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -22344,92 +22549,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [16] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [STATE(16)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3882), + [ts_builtin_sym_end] = ACTIONS(511), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(511), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22501,92 +22706,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [17] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(17)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3882), + [ts_builtin_sym_end] = ACTIONS(511), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(513), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22658,92 +22863,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [18] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(18)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(513), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22815,92 +23020,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [19] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), + [STATE(19)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(515), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -22972,92 +23177,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [20] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(19), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(20)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(519), + [anon_sym_RBRACE] = ACTIONS(517), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23129,92 +23334,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [21] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(21)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_RBRACE] = ACTIONS(519), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23286,92 +23491,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [22] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(22)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(523), + [anon_sym_RBRACE] = ACTIONS(521), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23443,92 +23648,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [23] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(23)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_RBRACE] = ACTIONS(523), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23600,92 +23805,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [24] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(24)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_RBRACE] = ACTIONS(525), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23757,92 +23962,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [25] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(25)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_RBRACE] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -23914,92 +24119,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [26] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(26)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(25), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24071,92 +24276,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [27] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(29), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(27)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_RBRACE] = ACTIONS(531), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24228,92 +24433,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [28] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(28)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(30), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24385,92 +24590,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [29] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(29)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(27), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24542,92 +24747,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [30] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3919), - [ts_builtin_sym_end] = ACTIONS(509), + [STATE(30)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -24699,259 +24904,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [31] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(895), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [STATE(31)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), [anon_sym_namespace] = ACTIONS(545), [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(565), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [32] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(32)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(5870), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -24963,10 +25168,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -24988,106 +25193,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [33] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(854), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(33)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(812), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25164,85 +25369,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [34] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(861), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(34)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(760), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25319,240 +25524,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [35] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2302), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5119), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(5132), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [36] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(822), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(35)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25629,240 +25679,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [37] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(5774), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), - [anon_sym_do] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_debugger] = ACTIONS(57), - [anon_sym_return] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [38] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(860), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(36)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25939,85 +25834,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [39] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(878), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(37)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(830), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26094,85 +25989,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(881), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(38)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(888), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26249,85 +26144,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(882), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(39)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(838), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26404,85 +26299,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(884), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(40)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(839), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26559,85 +26454,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(894), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(41)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(840), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26714,85 +26609,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(895), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(42)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(844), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26869,104 +26764,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(897), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [STATE(43)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(783), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(47), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -26978,10 +26873,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27003,106 +26898,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(99), - [anon_sym_readonly] = ACTIONS(99), - [anon_sym_get] = ACTIONS(99), - [anon_sym_set] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_public] = ACTIONS(99), - [anon_sym_private] = ACTIONS(99), - [anon_sym_protected] = ACTIONS(99), - [anon_sym_override] = ACTIONS(99), - [anon_sym_module] = ACTIONS(103), - [anon_sym_any] = ACTIONS(99), - [anon_sym_number] = ACTIONS(99), - [anon_sym_boolean] = ACTIONS(99), - [anon_sym_string] = ACTIONS(99), - [anon_sym_symbol] = ACTIONS(99), - [anon_sym_object] = ACTIONS(99), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(44)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(902), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27179,104 +27074,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(878), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(45)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(869), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27288,10 +27183,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27313,125 +27208,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(826), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(46)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(4795), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27443,10 +27338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27468,125 +27363,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(4783), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(47)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(888), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27598,10 +27493,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27623,125 +27518,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(48)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(902), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27753,10 +27648,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27778,125 +27673,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [51] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(861), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(49)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(863), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -27908,10 +27803,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -27933,125 +27828,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [52] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(854), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), + [STATE(50)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), [sym_identifier] = ACTIONS(539), [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), [anon_sym_namespace] = ACTIONS(545), [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(51)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(901), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28063,10 +28113,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -28088,280 +28138,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [54] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(822), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(52)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(812), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28373,10 +28268,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -28398,125 +28293,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [55] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(860), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(53)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28528,10 +28423,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -28553,125 +28448,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [56] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(881), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(54)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28683,10 +28578,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -28708,125 +28603,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(882), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(55)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(830), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28838,10 +28733,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -28863,125 +28758,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(884), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(56)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(838), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -28993,10 +28888,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29018,125 +28913,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [59] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(894), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(57)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(839), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29148,10 +29043,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29173,125 +29068,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [60] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(897), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(58)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(840), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29303,10 +29198,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29328,125 +29223,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [61] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(899), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3805), - [sym_identifier] = ACTIONS(539), - [anon_sym_export] = ACTIONS(541), - [anon_sym_type] = ACTIONS(543), - [anon_sym_namespace] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(59)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(844), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(549), + [anon_sym_with] = ACTIONS(615), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(551), + [anon_sym_let] = ACTIONS(617), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(553), + [anon_sym_if] = ACTIONS(619), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(555), + [anon_sym_for] = ACTIONS(621), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(557), + [anon_sym_while] = ACTIONS(623), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -29458,10 +29353,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(561), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(565), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -29483,261 +29378,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(567), - [anon_sym_readonly] = ACTIONS(567), - [anon_sym_get] = ACTIONS(567), - [anon_sym_set] = ACTIONS(567), - [anon_sym_declare] = ACTIONS(569), - [anon_sym_public] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_override] = ACTIONS(567), - [anon_sym_module] = ACTIONS(571), - [anon_sym_any] = ACTIONS(567), - [anon_sym_number] = ACTIONS(567), - [anon_sym_boolean] = ACTIONS(567), - [anon_sym_string] = ACTIONS(567), - [anon_sym_symbol] = ACTIONS(567), - [anon_sym_object] = ACTIONS(567), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [62] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [63] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(826), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(60)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(783), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -29814,240 +29554,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [64] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), + [STATE(61)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [65] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(768), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(62)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(5168), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(63)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(863), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -30124,85 +30019,1170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [66] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3919), + [STATE(64)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(65)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(673), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(66)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2125), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4875), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4967), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(67)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2125), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4875), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4967), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(68)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(69)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(70)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5214), + [sym_optional_tuple_parameter] = STATE(5214), + [sym_optional_type] = STATE(5214), + [sym_rest_type] = STATE(5214), + [sym__tuple_type_member] = STATE(5214), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(71)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(901), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -30279,104 +31259,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(5166), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(72)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(783), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -30388,10 +31368,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -30413,900 +31393,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [68] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [69] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2302), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5119), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(5132), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [70] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [71] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [72] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5194), - [sym_optional_tuple_parameter] = STATE(5194), - [sym_optional_type] = STATE(5194), - [sym_rest_type] = STATE(5194), - [sym__tuple_type_member] = STATE(5194), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(681), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [73] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(878), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(73)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(869), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31318,10 +31523,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -31343,125 +31548,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(826), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(74)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(888), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31473,10 +31678,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -31498,125 +31703,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(75)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(902), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31628,10 +31833,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -31653,125 +31858,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(861), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(76)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(863), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31783,10 +31988,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -31808,125 +32013,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(854), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(77)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(901), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -31938,10 +32143,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -31963,125 +32168,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(822), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(78)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(812), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32093,10 +32298,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32118,125 +32323,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(860), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(79)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32248,10 +32453,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32273,125 +32478,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(881), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(80)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32403,10 +32608,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32428,125 +32633,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(882), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(81)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(830), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32558,10 +32763,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32583,125 +32788,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(884), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(82)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(838), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32713,10 +32918,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32738,125 +32943,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(894), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(83)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(839), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -32868,10 +33073,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -32893,125 +33098,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(895), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(84)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(840), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33023,10 +33228,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -33048,125 +33253,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_export_statement] = STATE(844), - [sym_declaration] = STATE(844), - [sym_import] = STATE(3555), - [sym_import_statement] = STATE(844), - [sym_statement] = STATE(897), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_statement_block] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_for_in_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_with_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_debugger_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_empty_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5350), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(3867), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(575), - [anon_sym_type] = ACTIONS(577), - [anon_sym_namespace] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(547), + [STATE(85)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(844), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(581), + [anon_sym_with] = ACTIONS(647), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(583), + [anon_sym_let] = ACTIONS(649), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(33), - [anon_sym_if] = ACTIONS(585), + [anon_sym_if] = ACTIONS(651), [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(587), + [anon_sym_for] = ACTIONS(653), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(43), [anon_sym_await] = ACTIONS(45), - [anon_sym_while] = ACTIONS(589), + [anon_sym_while] = ACTIONS(655), [anon_sym_do] = ACTIONS(49), [anon_sym_try] = ACTIONS(51), [anon_sym_break] = ACTIONS(53), @@ -33178,10 +33383,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(593), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -33203,228 +33408,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(595), - [anon_sym_readonly] = ACTIONS(595), - [anon_sym_get] = ACTIONS(595), - [anon_sym_set] = ACTIONS(595), - [anon_sym_declare] = ACTIONS(597), - [anon_sym_public] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_override] = ACTIONS(595), - [anon_sym_module] = ACTIONS(599), - [anon_sym_any] = ACTIONS(595), - [anon_sym_number] = ACTIONS(595), - [anon_sym_boolean] = ACTIONS(595), - [anon_sym_string] = ACTIONS(595), - [anon_sym_symbol] = ACTIONS(595), - [anon_sym_object] = ACTIONS(595), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_import] = STATE(3645), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4380), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3991), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5560), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(601), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_COMMA] = ACTIONS(611), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(685), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(627), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(653), + [STATE(86)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(869), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(655), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(659), - [anon_sym_number] = ACTIONS(659), - [anon_sym_boolean] = ACTIONS(659), - [anon_sym_string] = ACTIONS(659), - [anon_sym_symbol] = ACTIONS(659), - [anon_sym_object] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [87] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(87)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), @@ -33433,18 +33638,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -33454,55 +33659,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -33528,56 +33733,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [88] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(88)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), @@ -33586,18 +33791,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -33607,55 +33812,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -33681,56 +33886,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [89] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(89)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), @@ -33739,18 +33944,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -33760,55 +33965,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -33834,146 +34039,450 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [90] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4149), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(90)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5832), + [sym_string] = STATE(2324), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4513), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(744), + [sym_number] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_undefined] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_override] = ACTIONS(760), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(762), + [anon_sym_number] = ACTIONS(762), + [anon_sym_boolean] = ACTIONS(762), + [anon_sym_string] = ACTIONS(762), + [anon_sym_symbol] = ACTIONS(762), + [anon_sym_object] = ACTIONS(762), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(91)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5832), + [sym_string] = STATE(2324), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4508), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(744), + [sym_number] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_undefined] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_override] = ACTIONS(760), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(762), + [anon_sym_number] = ACTIONS(762), + [anon_sym_boolean] = ACTIONS(762), + [anon_sym_string] = ACTIONS(762), + [anon_sym_symbol] = ACTIONS(762), + [anon_sym_object] = ACTIONS(762), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(92)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(746), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), @@ -33987,297 +34496,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [91] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5728), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4479), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(752), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(762), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(770), - [sym_number] = ACTIONS(772), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(774), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(776), - [sym_false] = ACTIONS(776), - [sym_null] = ACTIONS(776), - [sym_undefined] = ACTIONS(778), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(780), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_override] = ACTIONS(786), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(788), - [anon_sym_number] = ACTIONS(788), - [anon_sym_boolean] = ACTIONS(788), - [anon_sym_string] = ACTIONS(788), - [anon_sym_symbol] = ACTIONS(788), - [anon_sym_object] = ACTIONS(788), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [92] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4308), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(93)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(3974), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(790), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), @@ -34291,145 +34648,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [93] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4135), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(94)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4035), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(792), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), @@ -34443,145 +34800,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [94] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4152), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(95)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4247), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(794), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), @@ -34595,297 +34952,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(96)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4300), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(796), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [95] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5728), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4500), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(752), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(762), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(770), - [sym_number] = ACTIONS(772), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(774), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(776), - [sym_false] = ACTIONS(776), - [sym_null] = ACTIONS(776), - [sym_undefined] = ACTIONS(778), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(780), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_override] = ACTIONS(786), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(788), - [anon_sym_number] = ACTIONS(788), - [anon_sym_boolean] = ACTIONS(788), - [anon_sym_string] = ACTIONS(788), - [anon_sym_symbol] = ACTIONS(788), - [anon_sym_object] = ACTIONS(788), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [96] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4252), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(97)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5869), + [sym_string] = STATE(2324), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4513), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(744), + [sym_number] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_undefined] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_override] = ACTIONS(760), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(762), + [anon_sym_number] = ACTIONS(762), + [anon_sym_boolean] = ACTIONS(762), + [anon_sym_string] = ACTIONS(762), + [anon_sym_symbol] = ACTIONS(762), + [anon_sym_object] = ACTIONS(762), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(98)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(796), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), @@ -34899,145 +35408,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [97] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(99)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4467), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(766), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(798), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), @@ -35051,145 +35560,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [98] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4289), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(100)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4234), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(800), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), @@ -35203,2167 +35712,1714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(113), [anon_sym_object] = ACTIONS(113), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [99] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1793), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5974), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4479), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(752), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(762), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(770), - [sym_number] = ACTIONS(772), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(774), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(776), - [sym_false] = ACTIONS(776), - [sym_null] = ACTIONS(776), - [sym_undefined] = ACTIONS(778), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(780), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_override] = ACTIONS(786), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(788), - [anon_sym_number] = ACTIONS(788), - [anon_sym_boolean] = ACTIONS(788), - [anon_sym_string] = ACTIONS(788), - [anon_sym_symbol] = ACTIONS(788), - [anon_sym_object] = ACTIONS(788), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [100] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(101)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(185), - [anon_sym_DASH_DASH] = ACTIONS(185), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(741), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(798), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [101] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4520), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(111), - [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(102)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(804), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [102] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4479), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(103)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4514), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(848), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [103] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(104)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [104] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4483), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(105)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4508), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(848), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [105] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4500), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(106)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4540), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(848), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [106] = { - [sym_import] = STATE(3582), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4466), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(284), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(107)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4543), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), [sym_identifier] = ACTIONS(111), [anon_sym_export] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(129), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(160), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(172), - [anon_sym_DASH] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(802), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(200), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(848), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [107] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(108)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(836), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(109)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(110)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), + [anon_sym_type] = ACTIONS(828), [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_COMMA] = ACTIONS(126), [anon_sym_RBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [110] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [111] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [112] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(111)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4513), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [113] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(848), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(112)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), @@ -37372,17 +37428,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -37392,55 +37448,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -37465,54 +37521,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [114] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(113)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), @@ -37521,17 +37577,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -37541,55 +37597,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -37614,54 +37670,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [115] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(114)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), @@ -37670,17 +37726,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -37690,55 +37746,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -37763,131 +37819,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [116] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(687), - [anon_sym_export] = ACTIONS(689), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(115)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(858), + [anon_sym_export] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(689), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_type] = ACTIONS(860), + [anon_sym_EQ] = ACTIONS(862), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(693), + [anon_sym_namespace] = ACTIONS(864), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(860), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(708), + [anon_sym_async] = ACTIONS(866), [anon_sym_function] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(870), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -37895,297 +37951,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(689), - [anon_sym_readonly] = ACTIONS(689), - [anon_sym_get] = ACTIONS(689), - [anon_sym_set] = ACTIONS(689), - [anon_sym_declare] = ACTIONS(689), - [anon_sym_public] = ACTIONS(689), - [anon_sym_private] = ACTIONS(689), - [anon_sym_protected] = ACTIONS(689), - [anon_sym_override] = ACTIONS(689), - [anon_sym_module] = ACTIONS(689), - [anon_sym_any] = ACTIONS(689), - [anon_sym_number] = ACTIONS(689), - [anon_sym_boolean] = ACTIONS(689), - [anon_sym_string] = ACTIONS(689), - [anon_sym_symbol] = ACTIONS(689), - [anon_sym_object] = ACTIONS(689), + [anon_sym_static] = ACTIONS(860), + [anon_sym_readonly] = ACTIONS(860), + [anon_sym_get] = ACTIONS(860), + [anon_sym_set] = ACTIONS(860), + [anon_sym_declare] = ACTIONS(860), + [anon_sym_public] = ACTIONS(860), + [anon_sym_private] = ACTIONS(860), + [anon_sym_protected] = ACTIONS(860), + [anon_sym_override] = ACTIONS(860), + [anon_sym_module] = ACTIONS(860), + [anon_sym_any] = ACTIONS(860), + [anon_sym_number] = ACTIONS(860), + [anon_sym_boolean] = ACTIONS(860), + [anon_sym_string] = ACTIONS(860), + [anon_sym_symbol] = ACTIONS(860), + [anon_sym_object] = ACTIONS(860), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [117] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(116)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(868), - [anon_sym_function] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(872), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_object] = ACTIONS(862), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [118] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(117)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(858), + [anon_sym_export] = ACTIONS(860), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(862), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(860), + [anon_sym_EQ] = ACTIONS(862), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(866), + [anon_sym_namespace] = ACTIONS(864), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_let] = ACTIONS(860), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(868), + [anon_sym_async] = ACTIONS(866), [anon_sym_function] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(872), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(870), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -38193,71 +38249,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_object] = ACTIONS(862), + [anon_sym_static] = ACTIONS(860), + [anon_sym_readonly] = ACTIONS(860), + [anon_sym_get] = ACTIONS(860), + [anon_sym_set] = ACTIONS(860), + [anon_sym_declare] = ACTIONS(860), + [anon_sym_public] = ACTIONS(860), + [anon_sym_private] = ACTIONS(860), + [anon_sym_protected] = ACTIONS(860), + [anon_sym_override] = ACTIONS(860), + [anon_sym_module] = ACTIONS(860), + [anon_sym_any] = ACTIONS(860), + [anon_sym_number] = ACTIONS(860), + [anon_sym_boolean] = ACTIONS(860), + [anon_sym_string] = ACTIONS(860), + [anon_sym_symbol] = ACTIONS(860), + [anon_sym_object] = ACTIONS(860), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [119] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(118)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(119)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(120)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(687), [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), @@ -38266,17 +38620,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(693), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), [anon_sym_import] = ACTIONS(699), [anon_sym_let] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(183), + [anon_sym_BANG] = ACTIONS(182), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), @@ -38286,55 +38640,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(708), [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(714), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -38359,945 +38713,796 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(689), [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [120] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(121)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [121] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(122)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [122] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(123)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [123] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(878), - [anon_sym_of] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(878), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(124)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(881), + [anon_sym_of] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [125] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(125)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(878), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(126)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(886), [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), @@ -39305,82 +39510,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(895), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(888), [anon_sym_readonly] = ACTIONS(888), @@ -39399,53 +39604,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(888), [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [127] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(127)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(886), [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), @@ -39453,81 +39658,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(903), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(895), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(888), [anon_sym_readonly] = ACTIONS(888), @@ -39546,53 +39751,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(888), [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [128] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(128)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(905), [anon_sym_export] = ACTIONS(907), [anon_sym_STAR] = ACTIONS(120), @@ -39600,80 +39805,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(909), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(913), - [anon_sym_function] = ACTIONS(710), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(917), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(907), [anon_sym_readonly] = ACTIONS(907), @@ -39692,1964 +39898,1817 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(907), [anon_sym_object] = ACTIONS(907), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(129)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(927), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(931), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(933), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + [anon_sym_object] = ACTIONS(921), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(130)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(886), - [anon_sym_export] = ACTIONS(888), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4318), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5559), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(888), - [anon_sym_readonly] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [anon_sym_declare] = ACTIONS(888), - [anon_sym_public] = ACTIONS(888), - [anon_sym_private] = ACTIONS(888), - [anon_sym_protected] = ACTIONS(888), - [anon_sym_override] = ACTIONS(888), - [anon_sym_module] = ACTIONS(888), - [anon_sym_any] = ACTIONS(888), - [anon_sym_number] = ACTIONS(888), - [anon_sym_boolean] = ACTIONS(888), - [anon_sym_string] = ACTIONS(888), - [anon_sym_symbol] = ACTIONS(888), - [anon_sym_object] = ACTIONS(888), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [131] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1289), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(1640), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(2661), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(905), - [anon_sym_export] = ACTIONS(907), + [STATE(131)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(907), - [anon_sym_EQ] = ACTIONS(909), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(913), - [anon_sym_function] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(917), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(907), - [anon_sym_readonly] = ACTIONS(907), - [anon_sym_get] = ACTIONS(907), - [anon_sym_set] = ACTIONS(907), - [anon_sym_declare] = ACTIONS(907), - [anon_sym_public] = ACTIONS(907), - [anon_sym_private] = ACTIONS(907), - [anon_sym_protected] = ACTIONS(907), - [anon_sym_override] = ACTIONS(907), - [anon_sym_module] = ACTIONS(907), - [anon_sym_any] = ACTIONS(907), - [anon_sym_number] = ACTIONS(907), - [anon_sym_boolean] = ACTIONS(907), - [anon_sym_string] = ACTIONS(907), - [anon_sym_symbol] = ACTIONS(907), - [anon_sym_object] = ACTIONS(907), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [132] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(132)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(886), - [anon_sym_export] = ACTIONS(888), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(890), + [anon_sym_type] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(927), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(931), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(933), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(888), - [anon_sym_readonly] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [anon_sym_declare] = ACTIONS(888), - [anon_sym_public] = ACTIONS(888), - [anon_sym_private] = ACTIONS(888), - [anon_sym_protected] = ACTIONS(888), - [anon_sym_override] = ACTIONS(888), - [anon_sym_module] = ACTIONS(888), - [anon_sym_any] = ACTIONS(888), - [anon_sym_number] = ACTIONS(888), - [anon_sym_boolean] = ACTIONS(888), - [anon_sym_string] = ACTIONS(888), - [anon_sym_symbol] = ACTIONS(888), - [anon_sym_object] = ACTIONS(888), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + [anon_sym_object] = ACTIONS(921), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [133] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(133)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4040), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5465), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4311), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5472), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(134)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(921), - [anon_sym_export] = ACTIONS(923), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(925), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(903), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(929), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(933), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), - [anon_sym_object] = ACTIONS(923), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [135] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4383), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5563), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(135)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(937), + [anon_sym_export] = ACTIONS(939), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_type] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(941), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(852), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(949), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(840), - [anon_sym_readonly] = ACTIONS(840), - [anon_sym_get] = ACTIONS(840), - [anon_sym_set] = ACTIONS(840), - [anon_sym_declare] = ACTIONS(840), - [anon_sym_public] = ACTIONS(840), - [anon_sym_private] = ACTIONS(840), - [anon_sym_protected] = ACTIONS(840), - [anon_sym_override] = ACTIONS(840), - [anon_sym_module] = ACTIONS(840), - [anon_sym_any] = ACTIONS(840), - [anon_sym_number] = ACTIONS(840), - [anon_sym_boolean] = ACTIONS(840), - [anon_sym_string] = ACTIONS(840), - [anon_sym_symbol] = ACTIONS(840), - [anon_sym_object] = ACTIONS(840), + [anon_sym_static] = ACTIONS(939), + [anon_sym_readonly] = ACTIONS(939), + [anon_sym_get] = ACTIONS(939), + [anon_sym_set] = ACTIONS(939), + [anon_sym_declare] = ACTIONS(939), + [anon_sym_public] = ACTIONS(939), + [anon_sym_private] = ACTIONS(939), + [anon_sym_protected] = ACTIONS(939), + [anon_sym_override] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_any] = ACTIONS(939), + [anon_sym_number] = ACTIONS(939), + [anon_sym_boolean] = ACTIONS(939), + [anon_sym_string] = ACTIONS(939), + [anon_sym_symbol] = ACTIONS(939), + [anon_sym_object] = ACTIONS(939), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [136] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(136)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(937), + [anon_sym_export] = ACTIONS(939), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_type] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(941), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(947), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(949), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(937), - [anon_sym_readonly] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [anon_sym_declare] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_override] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_any] = ACTIONS(937), - [anon_sym_number] = ACTIONS(937), - [anon_sym_boolean] = ACTIONS(937), - [anon_sym_string] = ACTIONS(937), - [anon_sym_symbol] = ACTIONS(937), - [anon_sym_object] = ACTIONS(937), + [anon_sym_static] = ACTIONS(939), + [anon_sym_readonly] = ACTIONS(939), + [anon_sym_get] = ACTIONS(939), + [anon_sym_set] = ACTIONS(939), + [anon_sym_declare] = ACTIONS(939), + [anon_sym_public] = ACTIONS(939), + [anon_sym_private] = ACTIONS(939), + [anon_sym_protected] = ACTIONS(939), + [anon_sym_override] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_any] = ACTIONS(939), + [anon_sym_number] = ACTIONS(939), + [anon_sym_boolean] = ACTIONS(939), + [anon_sym_string] = ACTIONS(939), + [anon_sym_symbol] = ACTIONS(939), + [anon_sym_object] = ACTIONS(939), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(137)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(905), + [anon_sym_export] = ACTIONS(907), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(909), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(913), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(917), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(907), + [anon_sym_readonly] = ACTIONS(907), + [anon_sym_get] = ACTIONS(907), + [anon_sym_set] = ACTIONS(907), + [anon_sym_declare] = ACTIONS(907), + [anon_sym_public] = ACTIONS(907), + [anon_sym_private] = ACTIONS(907), + [anon_sym_protected] = ACTIONS(907), + [anon_sym_override] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_any] = ACTIONS(907), + [anon_sym_number] = ACTIONS(907), + [anon_sym_boolean] = ACTIONS(907), + [anon_sym_string] = ACTIONS(907), + [anon_sym_symbol] = ACTIONS(907), + [anon_sym_object] = ACTIONS(907), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [138] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(138)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(935), - [anon_sym_export] = ACTIONS(937), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(947), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(937), - [anon_sym_readonly] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [anon_sym_declare] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_override] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_any] = ACTIONS(937), - [anon_sym_number] = ACTIONS(937), - [anon_sym_boolean] = ACTIONS(937), - [anon_sym_string] = ACTIONS(937), - [anon_sym_symbol] = ACTIONS(937), - [anon_sym_object] = ACTIONS(937), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [139] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(139)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(921), - [anon_sym_export] = ACTIONS(923), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(925), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(929), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(933), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(923), - [anon_sym_readonly] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_override] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), - [anon_sym_object] = ACTIONS(923), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [140] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(140)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [141] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(878), - [anon_sym_of] = ACTIONS(881), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [142] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(141)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(886), [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), @@ -41657,80 +41716,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(903), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(888), [anon_sym_readonly] = ACTIONS(888), @@ -41749,53 +41808,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(888), [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [143] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(142)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(951), [anon_sym_export] = ACTIONS(953), [anon_sym_STAR] = ACTIONS(120), @@ -41803,80 +41862,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(955), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(963), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), [anon_sym_SLASH] = ACTIONS(965), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(953), [anon_sym_readonly] = ACTIONS(953), @@ -41895,2600 +41954,2746 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(953), [anon_sym_object] = ACTIONS(953), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [144] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(143)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [145] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(144)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(886), - [anon_sym_export] = ACTIONS(888), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(951), + [anon_sym_export] = ACTIONS(953), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_type] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(955), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(897), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(901), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(959), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(963), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(965), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(888), - [anon_sym_readonly] = ACTIONS(888), - [anon_sym_get] = ACTIONS(888), - [anon_sym_set] = ACTIONS(888), - [anon_sym_declare] = ACTIONS(888), - [anon_sym_public] = ACTIONS(888), - [anon_sym_private] = ACTIONS(888), - [anon_sym_protected] = ACTIONS(888), - [anon_sym_override] = ACTIONS(888), - [anon_sym_module] = ACTIONS(888), - [anon_sym_any] = ACTIONS(888), - [anon_sym_number] = ACTIONS(888), - [anon_sym_boolean] = ACTIONS(888), - [anon_sym_string] = ACTIONS(888), - [anon_sym_symbol] = ACTIONS(888), - [anon_sym_object] = ACTIONS(888), + [anon_sym_static] = ACTIONS(953), + [anon_sym_readonly] = ACTIONS(953), + [anon_sym_get] = ACTIONS(953), + [anon_sym_set] = ACTIONS(953), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(953), + [anon_sym_private] = ACTIONS(953), + [anon_sym_protected] = ACTIONS(953), + [anon_sym_override] = ACTIONS(953), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(953), + [anon_sym_number] = ACTIONS(953), + [anon_sym_boolean] = ACTIONS(953), + [anon_sym_string] = ACTIONS(953), + [anon_sym_symbol] = ACTIONS(953), + [anon_sym_object] = ACTIONS(953), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [146] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(145)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [147] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(146)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(881), + [anon_sym_of] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(147)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(951), - [anon_sym_export] = ACTIONS(953), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(955), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(903), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(963), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(953), - [anon_sym_readonly] = ACTIONS(953), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(953), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_public] = ACTIONS(953), - [anon_sym_private] = ACTIONS(953), - [anon_sym_protected] = ACTIONS(953), - [anon_sym_override] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_any] = ACTIONS(953), - [anon_sym_number] = ACTIONS(953), - [anon_sym_boolean] = ACTIONS(953), - [anon_sym_string] = ACTIONS(953), - [anon_sym_symbol] = ACTIONS(953), - [anon_sym_object] = ACTIONS(953), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(148)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(967), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(149)] = { + [sym_import] = STATE(3718), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(5380), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5979), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1918), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4266), + [sym_pattern] = STATE(5009), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3267), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(967), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(981), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(989), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(991), + [sym_number] = ACTIONS(993), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(995), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(997), + [sym_false] = ACTIONS(997), + [sym_null] = ACTIONS(997), + [sym_undefined] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(1001), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(1005), + [anon_sym_number] = ACTIONS(1005), + [anon_sym_boolean] = ACTIONS(1005), + [anon_sym_string] = ACTIONS(1005), + [anon_sym_symbol] = ACTIONS(1005), + [anon_sym_object] = ACTIONS(1005), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(150)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [150] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(151)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(969), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1021), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(152)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(971), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(153)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(973), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1023), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(154)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1025), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [154] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(155)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(975), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [155] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(156)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(977), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1027), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(157)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(979), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1029), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(158)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(981), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1031), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [STATE(159)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3992), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5432), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1033), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [159] = { - [sym_import] = STATE(3661), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5398), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5834), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2006), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(4019), - [sym_pattern] = STATE(5047), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3279), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5410), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(983), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_typeof] = ACTIONS(989), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(995), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(997), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(1005), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1007), - [sym_number] = ACTIONS(1009), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(1011), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_null] = ACTIONS(1013), - [sym_undefined] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(1017), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(1021), - [anon_sym_number] = ACTIONS(1021), - [anon_sym_boolean] = ACTIONS(1021), - [anon_sym_string] = ACTIONS(1021), - [anon_sym_symbol] = ACTIONS(1021), - [anon_sym_object] = ACTIONS(1021), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [160] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(160)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1459), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(812), + [anon_sym_type] = ACTIONS(828), [anon_sym_EQ] = ACTIONS(1035), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(120), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [161] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5894), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5077), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(4221), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(4521), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(161)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2176), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5583), + [sym_string] = STATE(2324), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4888), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(4055), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(4597), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1037), [anon_sym_export] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_typeof] = ACTIONS(756), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1049), - [anon_sym_using] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(770), - [sym_number] = ACTIONS(772), - [sym_private_property_identifier] = ACTIONS(649), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(744), + [sym_number] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(587), [sym_this] = ACTIONS(1051), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(776), - [sym_false] = ACTIONS(776), - [sym_null] = ACTIONS(776), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), [sym_undefined] = ACTIONS(1053), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), [anon_sym_readonly] = ACTIONS(1055), [anon_sym_get] = ACTIONS(1039), [anon_sym_set] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(1039), [anon_sym_public] = ACTIONS(1039), [anon_sym_private] = ACTIONS(1039), @@ -44501,114 +44706,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1057), [anon_sym_symbol] = ACTIONS(1057), [anon_sym_object] = ACTIONS(1057), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [162] = { - [sym_import] = STATE(3612), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1986), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(162)] = { + [sym_import] = STATE(3724), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2115), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2008), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(1061), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), [anon_sym_LBRACE] = ACTIONS(1065), [anon_sym_typeof] = ACTIONS(1067), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1079), [anon_sym_using] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), [anon_sym_PLUS] = ACTIONS(1083), [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1085), [anon_sym_delete] = ACTIONS(1087), @@ -44619,7 +44824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1093), [sym_private_property_identifier] = ACTIONS(1095), [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(196), + [sym_super] = ACTIONS(195), [sym_true] = ACTIONS(1099), [sym_false] = ACTIONS(1099), [sym_null] = ACTIONS(1099), @@ -44629,7 +44834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1103), [anon_sym_get] = ACTIONS(1061), [anon_sym_set] = ACTIONS(1061), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(1061), [anon_sym_public] = ACTIONS(1061), [anon_sym_private] = ACTIONS(1061), @@ -44642,840 +44847,699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1105), [anon_sym_symbol] = ACTIONS(1105), [anon_sym_object] = ACTIONS(1105), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [163] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2035), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1675), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(163)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(4429), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(4429), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1333), + [sym_subscript_expression] = STATE(1333), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(4429), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1333), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3984), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1107), [anon_sym_export] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1109), [anon_sym_namespace] = ACTIONS(1111), [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_typeof] = ACTIONS(1115), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1109), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1127), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1131), - [anon_sym_DASH] = ACTIONS(1131), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1133), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1139), - [sym_number] = ACTIONS(1141), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(1145), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [sym_null] = ACTIONS(1147), - [sym_undefined] = ACTIONS(1149), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1115), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1117), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1151), + [anon_sym_readonly] = ACTIONS(1121), [anon_sym_get] = ACTIONS(1109), [anon_sym_set] = ACTIONS(1109), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(1109), [anon_sym_public] = ACTIONS(1109), [anon_sym_private] = ACTIONS(1109), [anon_sym_protected] = ACTIONS(1109), [anon_sym_override] = ACTIONS(1109), [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1153), - [anon_sym_number] = ACTIONS(1153), - [anon_sym_boolean] = ACTIONS(1153), - [anon_sym_string] = ACTIONS(1153), - [anon_sym_symbol] = ACTIONS(1153), - [anon_sym_object] = ACTIONS(1153), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [164] = { - [sym_import] = STATE(3612), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2493), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1986), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1155), - [anon_sym_export] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_typeof] = ACTIONS(1159), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1161), - [anon_sym_using] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1163), - [anon_sym_DASH] = ACTIONS(1163), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_any] = ACTIONS(1123), + [anon_sym_number] = ACTIONS(1123), + [anon_sym_boolean] = ACTIONS(1123), + [anon_sym_string] = ACTIONS(1123), + [anon_sym_symbol] = ACTIONS(1123), + [anon_sym_object] = ACTIONS(1123), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(164)] = { + [sym_import] = STATE(3694), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2047), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1125), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_typeof] = ACTIONS(1133), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1141), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1145), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1091), - [sym_number] = ACTIONS(1093), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1099), - [sym_false] = ACTIONS(1099), - [sym_null] = ACTIONS(1099), - [sym_undefined] = ACTIONS(1165), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(1167), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(1169), - [anon_sym_number] = ACTIONS(1169), - [anon_sym_boolean] = ACTIONS(1169), - [anon_sym_string] = ACTIONS(1169), - [anon_sym_symbol] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(1169), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [165] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2015), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(4027), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(4027), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(4027), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2313), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1328), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4209), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1171), - [anon_sym_export] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1173), - [anon_sym_namespace] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_typeof] = ACTIONS(613), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1173), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1179), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1181), - [anon_sym_using] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(637), - [anon_sym_DASH] = ACTIONS(637), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(188), - [sym_number] = ACTIONS(190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(198), - [sym_false] = ACTIONS(198), - [sym_null] = ACTIONS(198), - [sym_undefined] = ACTIONS(1183), + [anon_sym_BQUOTE] = ACTIONS(1147), + [sym_number] = ACTIONS(1149), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1151), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [sym_null] = ACTIONS(1153), + [sym_undefined] = ACTIONS(1155), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_readonly] = ACTIONS(1185), - [anon_sym_get] = ACTIONS(1173), - [anon_sym_set] = ACTIONS(1173), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(1173), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(1173), - [anon_sym_any] = ACTIONS(1187), - [anon_sym_number] = ACTIONS(1187), - [anon_sym_boolean] = ACTIONS(1187), - [anon_sym_string] = ACTIONS(1187), - [anon_sym_symbol] = ACTIONS(1187), - [anon_sym_object] = ACTIONS(1187), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [166] = { - [sym_import] = STATE(3612), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3639), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3639), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1409), - [sym_subscript_expression] = STATE(1409), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3639), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(2529), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1409), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4209), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1189), - [anon_sym_export] = ACTIONS(1191), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1191), - [anon_sym_namespace] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1191), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1199), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1201), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1203), - [anon_sym_using] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(181), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1207), - [sym_number] = ACTIONS(1209), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1211), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1213), - [sym_false] = ACTIONS(1213), - [sym_null] = ACTIONS(1213), - [sym_undefined] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(165)] = { + [sym_import] = STATE(3694), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1757), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2047), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1161), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_typeof] = ACTIONS(1167), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1177), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1183), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1147), + [sym_number] = ACTIONS(1149), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(1151), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [sym_null] = ACTIONS(1153), + [sym_undefined] = ACTIONS(1191), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_readonly] = ACTIONS(1217), - [anon_sym_get] = ACTIONS(1191), - [anon_sym_set] = ACTIONS(1191), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(1191), - [anon_sym_public] = ACTIONS(1191), - [anon_sym_private] = ACTIONS(1191), - [anon_sym_protected] = ACTIONS(1191), - [anon_sym_override] = ACTIONS(1191), - [anon_sym_module] = ACTIONS(1191), - [anon_sym_any] = ACTIONS(1219), - [anon_sym_number] = ACTIONS(1219), - [anon_sym_boolean] = ACTIONS(1219), - [anon_sym_string] = ACTIONS(1219), - [anon_sym_symbol] = ACTIONS(1219), - [anon_sym_object] = ACTIONS(1219), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [167] = { - [sym_import] = STATE(3651), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2419), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1986), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1221), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1237), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1243), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1091), - [sym_number] = ACTIONS(1093), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1099), - [sym_false] = ACTIONS(1099), - [sym_null] = ACTIONS(1099), - [sym_undefined] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(166)] = { + [sym_import] = STATE(3741), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2191), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2404), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1197), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1203), + [anon_sym_typeof] = ACTIONS(1205), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1217), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1223), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1229), + [sym_number] = ACTIONS(1231), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(1235), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_null] = ACTIONS(1237), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1253), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1255), - [anon_sym_number] = ACTIONS(1255), - [anon_sym_boolean] = ACTIONS(1255), - [anon_sym_string] = ACTIONS(1255), - [anon_sym_symbol] = ACTIONS(1255), - [anon_sym_object] = ACTIONS(1255), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [168] = { - [sym_import] = STATE(3755), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1657), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1675), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1257), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1241), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1243), + [anon_sym_number] = ACTIONS(1243), + [anon_sym_boolean] = ACTIONS(1243), + [anon_sym_string] = ACTIONS(1243), + [anon_sym_symbol] = ACTIONS(1243), + [anon_sym_object] = ACTIONS(1243), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(167)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1634), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1645), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1245), [anon_sym_export] = ACTIONS(1039), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_typeof] = ACTIONS(1259), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_typeof] = ACTIONS(1249), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(138), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1049), - [anon_sym_using] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(643), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1139), - [sym_number] = ACTIONS(1141), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(1145), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(1147), - [sym_false] = ACTIONS(1147), - [sym_null] = ACTIONS(1147), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1255), + [sym_number] = ACTIONS(1257), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1259), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1261), + [sym_false] = ACTIONS(1261), + [sym_null] = ACTIONS(1261), [sym_undefined] = ACTIONS(1263), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), [anon_sym_readonly] = ACTIONS(1055), [anon_sym_get] = ACTIONS(1039), [anon_sym_set] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(1039), [anon_sym_public] = ACTIONS(1039), [anon_sym_private] = ACTIONS(1039), @@ -45488,396 +45552,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1265), [anon_sym_symbol] = ACTIONS(1265), [anon_sym_object] = ACTIONS(1265), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [169] = { - [sym_import] = STATE(3633), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2160), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2379), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3877), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(168)] = { + [sym_import] = STATE(3589), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2008), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1267), [anon_sym_export] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1269), [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_typeof] = ACTIONS(1275), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1289), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1295), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1301), - [sym_number] = ACTIONS(1303), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(1307), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [sym_null] = ACTIONS(1309), - [sym_undefined] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1283), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1289), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1099), + [sym_false] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1297), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1313), + [anon_sym_readonly] = ACTIONS(1299), [anon_sym_get] = ACTIONS(1269), [anon_sym_set] = ACTIONS(1269), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(1269), [anon_sym_public] = ACTIONS(1269), [anon_sym_private] = ACTIONS(1269), [anon_sym_protected] = ACTIONS(1269), [anon_sym_override] = ACTIONS(1269), [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1315), - [anon_sym_number] = ACTIONS(1315), - [anon_sym_boolean] = ACTIONS(1315), - [anon_sym_string] = ACTIONS(1315), - [anon_sym_symbol] = ACTIONS(1315), - [anon_sym_object] = ACTIONS(1315), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [170] = { - [sym_import] = STATE(3704), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3877), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1317), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1325), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(1279), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1331), - [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(1335), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(169)] = { + [sym_import] = STATE(3724), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2557), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2008), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1303), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_typeof] = ACTIONS(1307), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1099), + [sym_false] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1313), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(1317), + [anon_sym_number] = ACTIONS(1317), + [anon_sym_boolean] = ACTIONS(1317), + [anon_sym_string] = ACTIONS(1317), + [anon_sym_symbol] = ACTIONS(1317), + [anon_sym_object] = ACTIONS(1317), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(170)] = { + [sym_import] = STATE(3724), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3636), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3636), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1413), + [sym_subscript_expression] = STATE(1413), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3636), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2542), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1413), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3984), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1319), + [anon_sym_export] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_namespace] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1331), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1333), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1337), [sym_number] = ACTIONS(1339), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1341), - [sym_super] = ACTIONS(93), + [sym_super] = ACTIONS(195), [sym_true] = ACTIONS(1343), [sym_false] = ACTIONS(1343), [sym_null] = ACTIONS(1343), [sym_undefined] = ACTIONS(1345), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1321), [anon_sym_readonly] = ACTIONS(1347), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(1321), + [anon_sym_set] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1321), + [anon_sym_public] = ACTIONS(1321), + [anon_sym_private] = ACTIONS(1321), + [anon_sym_protected] = ACTIONS(1321), + [anon_sym_override] = ACTIONS(1321), + [anon_sym_module] = ACTIONS(1321), [anon_sym_any] = ACTIONS(1349), [anon_sym_number] = ACTIONS(1349), [anon_sym_boolean] = ACTIONS(1349), [anon_sym_string] = ACTIONS(1349), [anon_sym_symbol] = ACTIONS(1349), [anon_sym_object] = ACTIONS(1349), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [171] = { - [sym_import] = STATE(3612), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1986), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(171)] = { + [sym_import] = STATE(3724), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2008), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1351), [anon_sym_export] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1305), [anon_sym_typeof] = ACTIONS(1357), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), [anon_sym_LBRACK] = ACTIONS(1075), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1367), [anon_sym_using] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), [anon_sym_PLUS] = ACTIONS(1371), [anon_sym_DASH] = ACTIONS(1371), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1373), [anon_sym_delete] = ACTIONS(1375), @@ -45888,7 +46093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1093), [sym_private_property_identifier] = ACTIONS(1379), [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(196), + [sym_super] = ACTIONS(195), [sym_true] = ACTIONS(1099), [sym_false] = ACTIONS(1099), [sym_null] = ACTIONS(1099), @@ -45898,7 +46103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1383), [anon_sym_get] = ACTIONS(1353), [anon_sym_set] = ACTIONS(1353), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(1353), [anon_sym_public] = ACTIONS(1353), [anon_sym_private] = ACTIONS(1353), @@ -45911,135 +46116,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1385), [anon_sym_symbol] = ACTIONS(1385), [anon_sym_object] = ACTIONS(1385), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [172] = { - [sym_import] = STATE(3704), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_nested_identifier] = STATE(5753), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(1873), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3948), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3877), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5431), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(172)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1998), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1645), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1387), [anon_sym_export] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_type] = ACTIONS(1389), [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1247), [anon_sym_typeof] = ACTIONS(1393), - [anon_sym_import] = ACTIONS(699), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(137), [anon_sym_await] = ACTIONS(1397), [anon_sym_yield] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(710), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1403), [anon_sym_using] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), [anon_sym_PLUS] = ACTIONS(1407), [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1395), [anon_sym_void] = ACTIONS(1409), [anon_sym_delete] = ACTIONS(1411), [anon_sym_PLUS_PLUS] = ACTIONS(1413), [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1337), - [sym_number] = ACTIONS(1339), + [anon_sym_BQUOTE] = ACTIONS(1255), + [sym_number] = ACTIONS(1257), [sym_private_property_identifier] = ACTIONS(1415), - [sym_this] = ACTIONS(1341), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [sym_null] = ACTIONS(1343), + [sym_this] = ACTIONS(1259), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1261), + [sym_false] = ACTIONS(1261), + [sym_null] = ACTIONS(1261), [sym_undefined] = ACTIONS(1417), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1389), [anon_sym_readonly] = ACTIONS(1419), [anon_sym_get] = ACTIONS(1389), [anon_sym_set] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(782), + [anon_sym_QMARK] = ACTIONS(756), [anon_sym_declare] = ACTIONS(1389), [anon_sym_public] = ACTIONS(1389), [anon_sym_private] = ACTIONS(1389), @@ -46052,105 +46257,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1421), [anon_sym_symbol] = ACTIONS(1421), [anon_sym_object] = ACTIONS(1421), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [173] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1710), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(173)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_STAR] = ACTIONS(1425), [anon_sym_type] = ACTIONS(1039), [anon_sym_as] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_COMMA] = ACTIONS(1429), [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_SEMI] = ACTIONS(1429), [anon_sym_RPAREN] = ACTIONS(1429), - [anon_sym_await] = ACTIONS(617), + [anon_sym_await] = ACTIONS(555), [anon_sym_in] = ACTIONS(1427), [anon_sym_COLON] = ACTIONS(1429), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_RBRACK] = ACTIONS(1429), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), [anon_sym_GT_GT_GT] = ACTIONS(1429), [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_AMP3] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -46159,20 +46364,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -46195,62 +46400,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, - [174] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1768), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(174)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), + [anon_sym_export] = ACTIONS(1127), [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1127), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_COMMA] = ACTIONS(1429), [anon_sym_RBRACE] = ACTIONS(1429), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(1429), @@ -46263,7 +46468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1439), @@ -46273,7 +46478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(1427), [anon_sym_GT_GT_GT] = ACTIONS(1429), [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_AMP3] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), [anon_sym_PLUS] = ACTIONS(21), @@ -46306,111 +46511,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), [anon_sym_satisfies] = ACTIONS(1427), [sym__automatic_semicolon] = ACTIONS(1429), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, - [175] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(175)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), + [anon_sym_export] = ACTIONS(1163), [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1163), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_namespace] = ACTIONS(1165), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1185), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_await] = ACTIONS(1397), + [anon_sym_await] = ACTIONS(1171), [anon_sym_in] = ACTIONS(1427), [anon_sym_of] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), + [anon_sym_using] = ACTIONS(1179), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), [anon_sym_GT_GT_GT] = ACTIONS(1429), [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_AMP3] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), [anon_sym_LT] = ACTIONS(1441), @@ -46422,15 +46627,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1189), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -46438,112 +46643,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), [anon_sym_satisfies] = ACTIONS(1427), [sym__automatic_semicolon] = ACTIONS(1429), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, - [176] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2354), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(176)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2054), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), + [anon_sym_export] = ACTIONS(1389), [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_type] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1389), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_await] = ACTIONS(1281), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), [anon_sym_in] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), + [anon_sym_using] = ACTIONS(1405), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), [anon_sym_GT_GT_GT] = ACTIONS(1429), [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_AMP3] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -46552,259 +46757,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_satisfies] = ACTIONS(1427), - [sym__automatic_semicolon] = ACTIONS(1429), - [sym__ternary_qmark] = ACTIONS(1429), - [sym_html_comment] = ACTIONS(5), - }, - [177] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2057), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_in] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_GT] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(1429), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_PIPE_PIPE] = ACTIONS(1429), - [anon_sym_GT_GT] = ACTIONS(1427), - [anon_sym_GT_GT_GT] = ACTIONS(1429), - [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), - [anon_sym_GT_EQ] = ACTIONS(1429), - [anon_sym_QMARK_QMARK] = ACTIONS(1429), - [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [anon_sym_satisfies] = ACTIONS(1427), [anon_sym_implements] = ACTIONS(1427), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, - [178] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(177)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2101), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), - [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1461), [anon_sym_type] = ACTIONS(1061), [anon_sym_as] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_RBRACE] = ACTIONS(1429), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_in] = ACTIONS(1427), [anon_sym_COLON] = ACTIONS(1429), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), [anon_sym_GT_GT_GT] = ACTIONS(1429), [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_AMP3] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -46819,15 +46894,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -46849,91 +46924,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, - [179] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(178)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2230), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP3] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1429), + [sym__ternary_qmark] = ACTIONS(1429), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(179)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), + [anon_sym_export] = ACTIONS(1269), [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1223), + [anon_sym_type] = ACTIONS(1269), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), [anon_sym_in] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), [anon_sym_RBRACK] = ACTIONS(1429), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), + [anon_sym_using] = ACTIONS(1285), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), [anon_sym_GT_GT_GT] = ACTIONS(1429), [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_AMP3] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -46942,110 +47147,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [anon_sym_satisfies] = ACTIONS(1427), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, - [180] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2473), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(180)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_STAR] = ACTIONS(1485), [anon_sym_type] = ACTIONS(1353), [anon_sym_as] = ACTIONS(1427), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_in] = ACTIONS(1427), [anon_sym_of] = ACTIONS(1427), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), @@ -47054,7 +47259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(1427), [anon_sym_GT_GT_GT] = ACTIONS(1429), [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_AMP3] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), [anon_sym_PLUS] = ACTIONS(1375), @@ -47062,7 +47267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(965), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -47077,14 +47282,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -47107,90 +47312,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, - [181] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2550), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), + [STATE(181)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2507), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(812), + [anon_sym_type] = ACTIONS(828), [anon_sym_as] = ACTIONS(1427), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), [anon_sym_in] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_GT] = ACTIONS(1427), [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1429), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(1429), [anon_sym_PIPE_PIPE] = ACTIONS(1429), [anon_sym_GT_GT] = ACTIONS(1427), [anon_sym_GT_GT_GT] = ACTIONS(1429), [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_AMP3] = ACTIONS(1427), [anon_sym_CARET] = ACTIONS(1429), [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(1429), [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(176), [anon_sym_LT_EQ] = ACTIONS(1429), [anon_sym_EQ_EQ] = ACTIONS(1427), [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), @@ -47199,139 +47404,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1429), [anon_sym_QMARK_QMARK] = ACTIONS(1429), [anon_sym_instanceof] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), [anon_sym_satisfies] = ACTIONS(1427), [sym__ternary_qmark] = ACTIONS(1429), [sym_html_comment] = ACTIONS(5), }, - [182] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [STATE(182)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(806), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -47341,68 +47546,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [183] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(183)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(862), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1503), @@ -47410,49 +47615,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -47462,70 +47667,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [184] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(184)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(120), @@ -47533,170 +47738,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [185] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -47706,1205 +47789,1328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [186] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(842), - [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [187] = { - [sym_declaration] = STATE(859), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4193), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(185)] = { + [sym_declaration] = STATE(4295), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(4060), + [sym_lexical_declaration] = STATE(4060), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2409), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(4060), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(4060), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(4060), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(4060), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(4060), + [sym_abstract_class_declaration] = STATE(4060), + [sym_module] = STATE(4060), + [sym_internal_module] = STATE(2381), + [sym_import_alias] = STATE(4060), + [sym_interface_declaration] = STATE(4060), + [sym_enum_declaration] = STATE(4060), + [sym_type_alias_declaration] = STATE(4060), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4145), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(1527), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(1531), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1537), + [anon_sym_function] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1533), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_abstract] = ACTIONS(105), - [anon_sym_interface] = ACTIONS(107), - [anon_sym_enum] = ACTIONS(109), - [sym_html_comment] = ACTIONS(5), - }, - [188] = { - [sym_declaration] = STATE(4028), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(4393), - [sym_lexical_declaration] = STATE(4393), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2393), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(4393), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(4393), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(4393), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(4393), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(4393), - [sym_abstract_class_declaration] = STATE(4393), - [sym_module] = STATE(4393), - [sym_internal_module] = STATE(2413), - [sym_import_alias] = STATE(4393), - [sym_interface_declaration] = STATE(4393), - [sym_enum_declaration] = STATE(4393), - [sym_type_alias_declaration] = STATE(4393), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4287), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1541), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_interface] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1549), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(186)] = { + [sym_declaration] = STATE(889), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1547), - [anon_sym_async] = ACTIONS(1549), - [anon_sym_function] = ACTIONS(1551), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_abstract] = ACTIONS(1557), - [anon_sym_interface] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [189] = { - [sym_declaration] = STATE(4431), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(4393), - [sym_lexical_declaration] = STATE(4393), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2386), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(4393), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(4393), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(4393), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(4393), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(4393), - [sym_abstract_class_declaration] = STATE(4393), - [sym_module] = STATE(4393), - [sym_internal_module] = STATE(2413), - [sym_import_alias] = STATE(4393), - [sym_interface_declaration] = STATE(4393), - [sym_enum_declaration] = STATE(4393), - [sym_type_alias_declaration] = STATE(4393), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4287), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1271), + [STATE(187)] = { + [sym_declaration] = STATE(4165), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(4060), + [sym_lexical_declaration] = STATE(4060), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2410), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(4060), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(4060), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(4060), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(4060), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(4060), + [sym_abstract_class_declaration] = STATE(4060), + [sym_module] = STATE(4060), + [sym_internal_module] = STATE(2381), + [sym_import_alias] = STATE(4060), + [sym_interface_declaration] = STATE(4060), + [sym_enum_declaration] = STATE(4060), + [sym_type_alias_declaration] = STATE(4060), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4145), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1541), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1527), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1547), - [anon_sym_async] = ACTIONS(1549), - [anon_sym_function] = ACTIONS(1551), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1537), + [anon_sym_function] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_abstract] = ACTIONS(1557), - [anon_sym_interface] = ACTIONS(1559), - [anon_sym_enum] = ACTIONS(1561), - [sym_html_comment] = ACTIONS(5), - }, - [190] = { - [sym_declaration] = STATE(806), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4193), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1541), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_interface] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1549), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(188)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(189)] = { + [sym_declaration] = STATE(889), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4012), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1563), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1527), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1555), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(1531), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1533), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1567), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [191] = { - [sym_declaration] = STATE(806), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4193), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1271), + [STATE(190)] = { + [sym_declaration] = STATE(826), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4012), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1563), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1527), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1555), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(1531), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1567), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [192] = { - [sym_declaration] = STATE(806), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2392), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4333), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1567), + [STATE(191)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(192)] = { + [sym_declaration] = STATE(889), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1527), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1555), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1569), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1567), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [193] = { - [sym_declaration] = STATE(859), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(253), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4333), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1567), + [STATE(193)] = { + [sym_declaration] = STATE(826), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1527), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1555), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1569), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [194] = { - [sym_declaration] = STATE(859), - [sym_import] = STATE(3555), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2477), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_class_declaration] = STATE(852), - [sym_function_expression] = STATE(2272), - [sym_function_declaration] = STATE(852), - [sym_generator_function] = STATE(2272), - [sym_generator_function_declaration] = STATE(852), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_function_signature] = STATE(852), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(2410), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4193), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1525), - [anon_sym_namespace] = ACTIONS(1271), + [STATE(194)] = { + [sym_declaration] = STATE(826), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(1527), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1555), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(559), - [anon_sym_async] = ACTIONS(1531), - [anon_sym_function] = ACTIONS(563), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1567), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), [anon_sym_abstract] = ACTIONS(105), [anon_sym_interface] = ACTIONS(107), [anon_sym_enum] = ACTIONS(109), [sym_html_comment] = ACTIONS(5), }, - [195] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [STATE(195)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3652), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(222), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(1573), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(1575), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -48913,238 +49119,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [196] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3246), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_EQ] = ACTIONS(117), - [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(1031), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1605), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [197] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(196)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(909), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(158), [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49154,118 +49240,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [198] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(197)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49275,117 +49359,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [199] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3766), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_implements] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(198)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3213), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(199)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(941), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(126), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49394,117 +49598,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [200] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(200)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(836), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49514,56 +49719,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [201] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(201)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(903), @@ -49571,59 +49776,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49633,56 +49838,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [202] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(202)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), [anon_sym_EQ] = ACTIONS(955), @@ -49690,7 +49895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), @@ -49701,48 +49906,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49752,64 +49957,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [203] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(203)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), [anon_sym_STAR] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_in] = ACTIONS(120), @@ -49818,49 +50023,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(168), + [anon_sym_AMP3] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(169), [anon_sym_PLUS] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1511), [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1513), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_void] = ACTIONS(216), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -49870,353 +50075,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(204), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [204] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5728), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(204)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5869), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), [sym_this] = ACTIONS(1621), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), + [anon_sym_static] = ACTIONS(541), [anon_sym_readonly] = ACTIONS(1625), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_override] = ACTIONS(786), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [205] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1793), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5974), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_override] = ACTIONS(760), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(205)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5832), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), [sym_this] = ACTIONS(1621), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), + [anon_sym_static] = ACTIONS(541), [anon_sym_readonly] = ACTIONS(1625), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(784), - [anon_sym_private] = ACTIONS(784), - [anon_sym_protected] = ACTIONS(784), - [anon_sym_override] = ACTIONS(786), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [206] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(726), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_override] = ACTIONS(760), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(206)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(4851), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(4851), + [sym_optional_parameter] = STATE(4851), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(1633), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -50226,109 +50431,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [207] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(726), + [STATE(207)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(1635), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(1633), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -50338,109 +50543,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [208] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5109), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5109), - [sym_optional_parameter] = STATE(5109), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(726), + [STATE(208)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(1637), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(1633), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -50450,109 +50655,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [209] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(726), + [STATE(209)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5158), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5158), + [sym_optional_parameter] = STATE(5158), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(1639), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(1633), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -50562,109 +50767,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [210] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(726), + [STATE(210)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(1633), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -50674,109 +50879,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [211] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4861), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4861), - [sym_optional_parameter] = STATE(4861), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(726), + [STATE(211)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(1633), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -50786,109 +50991,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [212] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(4889), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(4889), - [sym_optional_parameter] = STATE(4889), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(726), + [STATE(212)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(1633), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -50898,109 +51103,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [213] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(726), + [STATE(213)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(1633), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -51010,109 +51215,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [214] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(726), + [STATE(214)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(1633), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -51122,441 +51327,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [215] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [STATE(215)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_RBRACK] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [216] = { - [sym_statement_block] = STATE(247), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_as] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_COMMA] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_in] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1653), - [anon_sym_STAR_STAR] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1653), - [anon_sym_QMARK_QMARK] = ACTIONS(1653), - [anon_sym_instanceof] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_satisfies] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [sym__automatic_semicolon] = ACTIONS(1653), - [sym__ternary_qmark] = ACTIONS(1653), - [sym_html_comment] = ACTIONS(5), - }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_EQ] = ACTIONS(1665), - [anon_sym_as] = ACTIONS(1663), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_in] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_debugger] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_throw] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1663), - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_QMARK_DOT] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1667), - [anon_sym_PIPE_PIPE] = ACTIONS(1667), - [anon_sym_GT_GT] = ACTIONS(1663), - [anon_sym_GT_GT_GT] = ACTIONS(1667), - [anon_sym_LT_LT] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_PERCENT] = ACTIONS(1667), - [anon_sym_STAR_STAR] = ACTIONS(1667), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1667), - [anon_sym_EQ_EQ] = ACTIONS(1663), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1667), - [anon_sym_BANG_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1667), - [anon_sym_QMARK_QMARK] = ACTIONS(1667), - [anon_sym_instanceof] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_object] = ACTIONS(1661), - [anon_sym_abstract] = ACTIONS(1661), - [anon_sym_satisfies] = ACTIONS(1663), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [sym__automatic_semicolon] = ACTIONS(1669), - [sym__ternary_qmark] = ACTIONS(1667), - [sym_html_comment] = ACTIONS(5), - }, - [218] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym__formal_parameter] = STATE(5508), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4261), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(300), - [sym_override_modifier] = STATE(314), - [sym_required_parameter] = STATE(5508), - [sym_optional_parameter] = STATE(5508), - [sym__parameter_name] = STATE(3523), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(726), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(216)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(217)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), [sym_this] = ACTIONS(1631), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(1633), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -51566,1016 +51660,1127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [219] = { - [sym_statement_block] = STATE(247), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_as] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_COMMA] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_in] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), + [STATE(218)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_RBRACK] = ACTIONS(1655), [anon_sym_GT] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP3] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1653), - [anon_sym_STAR_STAR] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1653), - [anon_sym_QMARK_QMARK] = ACTIONS(1653), - [anon_sym_instanceof] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_satisfies] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [sym__automatic_semicolon] = ACTIONS(1653), - [sym__ternary_qmark] = ACTIONS(1653), - [sym_html_comment] = ACTIONS(5), - }, - [220] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2145), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5119), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(5132), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [221] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(219)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [222] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(220)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [223] = { - [sym_statement_block] = STATE(247), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_as] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_COMMA] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_in] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1655), - [anon_sym_DOT] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_QMARK_DOT] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_AMP_AMP] = ACTIONS(1653), - [anon_sym_PIPE_PIPE] = ACTIONS(1653), - [anon_sym_GT_GT] = ACTIONS(1655), - [anon_sym_GT_GT_GT] = ACTIONS(1653), - [anon_sym_LT_LT] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1653), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_PERCENT] = ACTIONS(1653), - [anon_sym_STAR_STAR] = ACTIONS(1653), - [anon_sym_LT] = ACTIONS(1655), - [anon_sym_LT_EQ] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1655), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1653), - [anon_sym_BANG_EQ] = ACTIONS(1655), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1653), - [anon_sym_GT_EQ] = ACTIONS(1653), - [anon_sym_QMARK_QMARK] = ACTIONS(1653), - [anon_sym_instanceof] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_satisfies] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [sym__automatic_semicolon] = ACTIONS(1653), - [sym__ternary_qmark] = ACTIONS(1653), - [sym_html_comment] = ACTIONS(5), - }, - [224] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(221)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [225] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2302), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5119), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(5132), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(222)] = { + [sym_statement_block] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_QMARK_DOT] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1667), + [anon_sym_GT_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_AMP3] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_QMARK_QMARK] = ACTIONS(1665), + [anon_sym_instanceof] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_satisfies] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym__automatic_semicolon] = ACTIONS(1665), + [sym__ternary_qmark] = ACTIONS(1665), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(223)] = { + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1673), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_EQ] = ACTIONS(1677), + [anon_sym_as] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_COMMA] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_typeof] = ACTIONS(1673), + [anon_sym_import] = ACTIONS(1673), + [anon_sym_with] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_await] = ACTIONS(1673), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_debugger] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_throw] = ACTIONS(1673), + [anon_sym_case] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_class] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_function] = ACTIONS(1673), + [anon_sym_QMARK_DOT] = ACTIONS(1679), + [anon_sym_new] = ACTIONS(1673), + [anon_sym_using] = ACTIONS(1673), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_GT_GT] = ACTIONS(1675), + [anon_sym_GT_GT_GT] = ACTIONS(1679), + [anon_sym_LT_LT] = ACTIONS(1679), + [anon_sym_AMP3] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1679), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1679), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_QMARK_QMARK] = ACTIONS(1679), + [anon_sym_instanceof] = ACTIONS(1675), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_delete] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [sym_private_property_identifier] = ACTIONS(1671), + [sym_this] = ACTIONS(1673), + [sym_super] = ACTIONS(1673), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [sym_null] = ACTIONS(1673), + [sym_undefined] = ACTIONS(1673), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_get] = ACTIONS(1673), + [anon_sym_set] = ACTIONS(1673), + [anon_sym_declare] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1673), + [anon_sym_private] = ACTIONS(1673), + [anon_sym_protected] = ACTIONS(1673), + [anon_sym_override] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_number] = ACTIONS(1673), + [anon_sym_boolean] = ACTIONS(1673), + [anon_sym_string] = ACTIONS(1673), + [anon_sym_symbol] = ACTIONS(1673), + [anon_sym_object] = ACTIONS(1673), + [anon_sym_abstract] = ACTIONS(1673), + [anon_sym_satisfies] = ACTIONS(1675), + [anon_sym_interface] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [sym__automatic_semicolon] = ACTIONS(1681), + [sym__ternary_qmark] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(224)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2141), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4875), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4967), + [aux_sym_array_pattern_repeat1] = STATE(4975), [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [226] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_QMARK] = ACTIONS(1683), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [227] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(4912), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4921), - [aux_sym_array_pattern_repeat1] = STATE(5134), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(225)] = { + [sym_statement_block] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_QMARK_DOT] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1667), + [anon_sym_GT_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_AMP3] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_QMARK_QMARK] = ACTIONS(1665), + [anon_sym_instanceof] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_satisfies] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym__automatic_semicolon] = ACTIONS(1665), + [sym__ternary_qmark] = ACTIONS(1665), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(226)] = { + [sym_statement_block] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_QMARK_DOT] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1667), + [anon_sym_GT_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_AMP3] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_QMARK_QMARK] = ACTIONS(1665), + [anon_sym_instanceof] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_satisfies] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym__automatic_semicolon] = ACTIONS(1665), + [sym__ternary_qmark] = ACTIONS(1665), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(227)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2125), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4875), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4967), + [aux_sym_array_pattern_repeat1] = STATE(4975), [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [228] = { + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(228)] = { [ts_builtin_sym_end] = ACTIONS(1689), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1691), [anon_sym_default] = ACTIONS(1691), [anon_sym_type] = ACTIONS(1691), - [anon_sym_as] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1691), [anon_sym_namespace] = ACTIONS(1691), [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_COMMA] = ACTIONS(1695), + [anon_sym_COMMA] = ACTIONS(1689), [anon_sym_RBRACE] = ACTIONS(1689), [anon_sym_typeof] = ACTIONS(1691), [anon_sym_import] = ACTIONS(1691), @@ -52591,7 +52796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1689), [anon_sym_SEMI] = ACTIONS(1689), [anon_sym_await] = ACTIONS(1691), - [anon_sym_in] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(1691), [anon_sym_while] = ACTIONS(1691), [anon_sym_do] = ACTIONS(1691), [anon_sym_try] = ACTIONS(1691), @@ -52603,38 +52808,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1691), [anon_sym_yield] = ACTIONS(1691), [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_DOT] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_DOT] = ACTIONS(1691), [anon_sym_DQUOTE] = ACTIONS(1689), [anon_sym_SQUOTE] = ACTIONS(1689), [anon_sym_class] = ACTIONS(1691), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(1691), - [anon_sym_QMARK_DOT] = ACTIONS(1695), + [anon_sym_QMARK_DOT] = ACTIONS(1689), [anon_sym_new] = ACTIONS(1691), [anon_sym_using] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_GT_GT] = ACTIONS(1693), - [anon_sym_GT_GT_GT] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1689), + [anon_sym_PIPE_PIPE] = ACTIONS(1689), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_GT_GT_GT] = ACTIONS(1689), + [anon_sym_LT_LT] = ACTIONS(1689), + [anon_sym_AMP3] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1691), [anon_sym_PLUS] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1691), [anon_sym_SLASH] = ACTIONS(1691), - [anon_sym_PERCENT] = ACTIONS(1695), - [anon_sym_STAR_STAR] = ACTIONS(1695), + [anon_sym_PERCENT] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1689), [anon_sym_LT] = ACTIONS(1691), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_EQ_EQ] = ACTIONS(1693), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1693), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_QMARK_QMARK] = ACTIONS(1695), - [anon_sym_instanceof] = ACTIONS(1693), + [anon_sym_LT_EQ] = ACTIONS(1689), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1689), + [anon_sym_QMARK_QMARK] = ACTIONS(1689), + [anon_sym_instanceof] = ACTIONS(1691), [anon_sym_TILDE] = ACTIONS(1689), [anon_sym_void] = ACTIONS(1691), [anon_sym_delete] = ACTIONS(1691), @@ -52668,134 +52873,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1691), [anon_sym_object] = ACTIONS(1691), [anon_sym_abstract] = ACTIONS(1691), - [anon_sym_satisfies] = ACTIONS(1693), + [anon_sym_satisfies] = ACTIONS(1691), [anon_sym_interface] = ACTIONS(1691), [anon_sym_enum] = ACTIONS(1691), - [sym__automatic_semicolon] = ACTIONS(1697), - [sym__ternary_qmark] = ACTIONS(1695), - [sym_html_comment] = ACTIONS(5), - }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1701), - [anon_sym_export] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_as] = ACTIONS(1701), - [anon_sym_namespace] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1699), + [sym__automatic_semicolon] = ACTIONS(1689), + [sym__ternary_qmark] = ACTIONS(1689), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(229)] = { + [ts_builtin_sym_end] = ACTIONS(1693), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_as] = ACTIONS(1697), + [anon_sym_namespace] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1693), [anon_sym_COMMA] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_typeof] = ACTIONS(1701), - [anon_sym_import] = ACTIONS(1701), - [anon_sym_with] = ACTIONS(1701), - [anon_sym_var] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_switch] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_await] = ACTIONS(1701), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_debugger] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_throw] = ACTIONS(1701), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_async] = ACTIONS(1701), - [anon_sym_function] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym_import] = ACTIONS(1695), + [anon_sym_with] = ACTIONS(1695), + [anon_sym_var] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_else] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_switch] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_await] = ACTIONS(1695), + [anon_sym_in] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_do] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_debugger] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_throw] = ACTIONS(1695), + [anon_sym_case] = ACTIONS(1695), + [anon_sym_yield] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(1697), + [anon_sym_DOT] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_class] = ACTIONS(1695), + [anon_sym_async] = ACTIONS(1695), + [anon_sym_function] = ACTIONS(1695), [anon_sym_QMARK_DOT] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1701), - [anon_sym_using] = ACTIONS(1701), + [anon_sym_new] = ACTIONS(1695), + [anon_sym_using] = ACTIONS(1695), [anon_sym_AMP_AMP] = ACTIONS(1699), [anon_sym_PIPE_PIPE] = ACTIONS(1699), - [anon_sym_GT_GT] = ACTIONS(1701), + [anon_sym_GT_GT] = ACTIONS(1697), [anon_sym_GT_GT_GT] = ACTIONS(1699), [anon_sym_LT_LT] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_AMP3] = ACTIONS(1697), [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_PIPE] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1695), [anon_sym_PERCENT] = ACTIONS(1699), [anon_sym_STAR_STAR] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1695), [anon_sym_LT_EQ] = ACTIONS(1699), - [anon_sym_EQ_EQ] = ACTIONS(1701), + [anon_sym_EQ_EQ] = ACTIONS(1697), [anon_sym_EQ_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1701), + [anon_sym_BANG_EQ] = ACTIONS(1697), [anon_sym_BANG_EQ_EQ] = ACTIONS(1699), [anon_sym_GT_EQ] = ACTIONS(1699), [anon_sym_QMARK_QMARK] = ACTIONS(1699), - [anon_sym_instanceof] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_void] = ACTIONS(1701), - [anon_sym_delete] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1699), - [sym_number] = ACTIONS(1699), - [sym_private_property_identifier] = ACTIONS(1699), - [sym_this] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_true] = ACTIONS(1701), - [sym_false] = ACTIONS(1701), - [sym_null] = ACTIONS(1701), - [sym_undefined] = ACTIONS(1701), - [anon_sym_AT] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_readonly] = ACTIONS(1701), - [anon_sym_get] = ACTIONS(1701), - [anon_sym_set] = ACTIONS(1701), - [anon_sym_declare] = ACTIONS(1701), - [anon_sym_public] = ACTIONS(1701), - [anon_sym_private] = ACTIONS(1701), - [anon_sym_protected] = ACTIONS(1701), - [anon_sym_override] = ACTIONS(1701), - [anon_sym_module] = ACTIONS(1701), - [anon_sym_any] = ACTIONS(1701), - [anon_sym_number] = ACTIONS(1701), - [anon_sym_boolean] = ACTIONS(1701), - [anon_sym_string] = ACTIONS(1701), - [anon_sym_symbol] = ACTIONS(1701), - [anon_sym_object] = ACTIONS(1701), - [anon_sym_abstract] = ACTIONS(1701), - [anon_sym_satisfies] = ACTIONS(1701), - [anon_sym_interface] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [sym__automatic_semicolon] = ACTIONS(1699), + [anon_sym_instanceof] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(1693), + [anon_sym_void] = ACTIONS(1695), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1693), + [sym_number] = ACTIONS(1693), + [sym_private_property_identifier] = ACTIONS(1693), + [sym_this] = ACTIONS(1695), + [sym_super] = ACTIONS(1695), + [sym_true] = ACTIONS(1695), + [sym_false] = ACTIONS(1695), + [sym_null] = ACTIONS(1695), + [sym_undefined] = ACTIONS(1695), + [anon_sym_AT] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_readonly] = ACTIONS(1695), + [anon_sym_get] = ACTIONS(1695), + [anon_sym_set] = ACTIONS(1695), + [anon_sym_declare] = ACTIONS(1695), + [anon_sym_public] = ACTIONS(1695), + [anon_sym_private] = ACTIONS(1695), + [anon_sym_protected] = ACTIONS(1695), + [anon_sym_override] = ACTIONS(1695), + [anon_sym_module] = ACTIONS(1695), + [anon_sym_any] = ACTIONS(1695), + [anon_sym_number] = ACTIONS(1695), + [anon_sym_boolean] = ACTIONS(1695), + [anon_sym_string] = ACTIONS(1695), + [anon_sym_symbol] = ACTIONS(1695), + [anon_sym_object] = ACTIONS(1695), + [anon_sym_abstract] = ACTIONS(1695), + [anon_sym_satisfies] = ACTIONS(1697), + [anon_sym_interface] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [sym__automatic_semicolon] = ACTIONS(1701), [sym__ternary_qmark] = ACTIONS(1699), [sym_html_comment] = ACTIONS(5), }, - [230] = { + [STATE(230)] = { [ts_builtin_sym_end] = ACTIONS(1703), [sym_identifier] = ACTIONS(1705), [anon_sym_export] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(1705), [anon_sym_default] = ACTIONS(1705), [anon_sym_type] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1707), + [anon_sym_as] = ACTIONS(1705), [anon_sym_namespace] = ACTIONS(1705), [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1703), [anon_sym_RBRACE] = ACTIONS(1703), [anon_sym_typeof] = ACTIONS(1705), [anon_sym_import] = ACTIONS(1705), @@ -52811,7 +53016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1703), [anon_sym_SEMI] = ACTIONS(1703), [anon_sym_await] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1707), + [anon_sym_in] = ACTIONS(1705), [anon_sym_while] = ACTIONS(1705), [anon_sym_do] = ACTIONS(1705), [anon_sym_try] = ACTIONS(1705), @@ -52823,38 +53028,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1705), [anon_sym_yield] = ACTIONS(1705), [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1705), [anon_sym_DQUOTE] = ACTIONS(1703), [anon_sym_SQUOTE] = ACTIONS(1703), [anon_sym_class] = ACTIONS(1705), [anon_sym_async] = ACTIONS(1705), [anon_sym_function] = ACTIONS(1705), - [anon_sym_QMARK_DOT] = ACTIONS(1709), + [anon_sym_QMARK_DOT] = ACTIONS(1703), [anon_sym_new] = ACTIONS(1705), [anon_sym_using] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1707), - [anon_sym_GT_GT_GT] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_CARET] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_AMP_AMP] = ACTIONS(1703), + [anon_sym_PIPE_PIPE] = ACTIONS(1703), + [anon_sym_GT_GT] = ACTIONS(1705), + [anon_sym_GT_GT_GT] = ACTIONS(1703), + [anon_sym_LT_LT] = ACTIONS(1703), + [anon_sym_AMP3] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1705), [anon_sym_PLUS] = ACTIONS(1705), [anon_sym_DASH] = ACTIONS(1705), [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1709), - [anon_sym_STAR_STAR] = ACTIONS(1709), + [anon_sym_PERCENT] = ACTIONS(1703), + [anon_sym_STAR_STAR] = ACTIONS(1703), [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1707), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_QMARK_QMARK] = ACTIONS(1709), - [anon_sym_instanceof] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1703), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1703), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1703), + [anon_sym_GT_EQ] = ACTIONS(1703), + [anon_sym_QMARK_QMARK] = ACTIONS(1703), + [anon_sym_instanceof] = ACTIONS(1705), [anon_sym_TILDE] = ACTIONS(1703), [anon_sym_void] = ACTIONS(1705), [anon_sym_delete] = ACTIONS(1705), @@ -52888,14 +53093,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1705), [anon_sym_object] = ACTIONS(1705), [anon_sym_abstract] = ACTIONS(1705), - [anon_sym_satisfies] = ACTIONS(1707), + [anon_sym_satisfies] = ACTIONS(1705), [anon_sym_interface] = ACTIONS(1705), [anon_sym_enum] = ACTIONS(1705), + [sym__automatic_semicolon] = ACTIONS(1703), + [sym__ternary_qmark] = ACTIONS(1703), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(231)] = { + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1709), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_default] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_namespace] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_typeof] = ACTIONS(1709), + [anon_sym_import] = ACTIONS(1709), + [anon_sym_with] = ACTIONS(1709), + [anon_sym_var] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_switch] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1709), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_debugger] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_throw] = ACTIONS(1709), + [anon_sym_case] = ACTIONS(1709), + [anon_sym_yield] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1707), + [anon_sym_SQUOTE] = ACTIONS(1707), + [anon_sym_class] = ACTIONS(1709), + [anon_sym_async] = ACTIONS(1709), + [anon_sym_function] = ACTIONS(1709), + [anon_sym_QMARK_DOT] = ACTIONS(1707), + [anon_sym_new] = ACTIONS(1709), + [anon_sym_using] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(1709), + [anon_sym_GT_GT_GT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1707), + [anon_sym_AMP3] = ACTIONS(1709), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_PERCENT] = ACTIONS(1707), + [anon_sym_STAR_STAR] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_EQ_EQ] = ACTIONS(1709), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_QMARK_QMARK] = ACTIONS(1707), + [anon_sym_instanceof] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_void] = ACTIONS(1709), + [anon_sym_delete] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1707), + [sym_number] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(1709), + [sym_super] = ACTIONS(1709), + [sym_true] = ACTIONS(1709), + [sym_false] = ACTIONS(1709), + [sym_null] = ACTIONS(1709), + [sym_undefined] = ACTIONS(1709), + [anon_sym_AT] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1709), + [anon_sym_readonly] = ACTIONS(1709), + [anon_sym_get] = ACTIONS(1709), + [anon_sym_set] = ACTIONS(1709), + [anon_sym_declare] = ACTIONS(1709), + [anon_sym_public] = ACTIONS(1709), + [anon_sym_private] = ACTIONS(1709), + [anon_sym_protected] = ACTIONS(1709), + [anon_sym_override] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_any] = ACTIONS(1709), + [anon_sym_number] = ACTIONS(1709), + [anon_sym_boolean] = ACTIONS(1709), + [anon_sym_string] = ACTIONS(1709), + [anon_sym_symbol] = ACTIONS(1709), + [anon_sym_object] = ACTIONS(1709), + [anon_sym_abstract] = ACTIONS(1709), + [anon_sym_satisfies] = ACTIONS(1709), + [anon_sym_interface] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [sym__automatic_semicolon] = ACTIONS(1707), + [sym__ternary_qmark] = ACTIONS(1707), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(232)] = { + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1673), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_as] = ACTIONS(1673), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_COMMA] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_typeof] = ACTIONS(1673), + [anon_sym_import] = ACTIONS(1673), + [anon_sym_with] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_await] = ACTIONS(1673), + [anon_sym_in] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_debugger] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_throw] = ACTIONS(1673), + [anon_sym_case] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_DOT] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_class] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_function] = ACTIONS(1673), + [anon_sym_QMARK_DOT] = ACTIONS(1671), + [anon_sym_new] = ACTIONS(1673), + [anon_sym_using] = ACTIONS(1673), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1673), + [anon_sym_GT_GT_GT] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_AMP3] = ACTIONS(1673), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_PERCENT] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(1671), + [anon_sym_QMARK_QMARK] = ACTIONS(1671), + [anon_sym_instanceof] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_delete] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [sym_private_property_identifier] = ACTIONS(1671), + [sym_this] = ACTIONS(1673), + [sym_super] = ACTIONS(1673), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [sym_null] = ACTIONS(1673), + [sym_undefined] = ACTIONS(1673), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_get] = ACTIONS(1673), + [anon_sym_set] = ACTIONS(1673), + [anon_sym_declare] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1673), + [anon_sym_private] = ACTIONS(1673), + [anon_sym_protected] = ACTIONS(1673), + [anon_sym_override] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_number] = ACTIONS(1673), + [anon_sym_boolean] = ACTIONS(1673), + [anon_sym_string] = ACTIONS(1673), + [anon_sym_symbol] = ACTIONS(1673), + [anon_sym_object] = ACTIONS(1673), + [anon_sym_abstract] = ACTIONS(1673), + [anon_sym_satisfies] = ACTIONS(1673), + [anon_sym_interface] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), [sym__automatic_semicolon] = ACTIONS(1711), - [sym__ternary_qmark] = ACTIONS(1709), + [sym__ternary_qmark] = ACTIONS(1671), [sym_html_comment] = ACTIONS(5), }, - [231] = { + [STATE(233)] = { [ts_builtin_sym_end] = ACTIONS(1713), [sym_identifier] = ACTIONS(1715), [anon_sym_export] = ACTIONS(1715), @@ -52948,7 +53373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(1717), [anon_sym_GT_GT_GT] = ACTIONS(1719), [anon_sym_LT_LT] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_AMP3] = ACTIONS(1717), [anon_sym_CARET] = ACTIONS(1719), [anon_sym_PIPE] = ACTIONS(1717), [anon_sym_PLUS] = ACTIONS(1715), @@ -53005,7 +53430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [232] = { + [STATE(234)] = { [ts_builtin_sym_end] = ACTIONS(1723), [sym_identifier] = ACTIONS(1725), [anon_sym_export] = ACTIONS(1725), @@ -53058,7 +53483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(1725), [anon_sym_GT_GT_GT] = ACTIONS(1723), [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_AMP3] = ACTIONS(1725), [anon_sym_CARET] = ACTIONS(1723), [anon_sym_PIPE] = ACTIONS(1725), [anon_sym_PLUS] = ACTIONS(1725), @@ -53115,7 +53540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1723), [sym_html_comment] = ACTIONS(5), }, - [233] = { + [STATE(235)] = { [ts_builtin_sym_end] = ACTIONS(1727), [sym_identifier] = ACTIONS(1729), [anon_sym_export] = ACTIONS(1729), @@ -53168,7 +53593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(1731), [anon_sym_GT_GT_GT] = ACTIONS(1733), [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1731), + [anon_sym_AMP3] = ACTIONS(1731), [anon_sym_CARET] = ACTIONS(1733), [anon_sym_PIPE] = ACTIONS(1731), [anon_sym_PLUS] = ACTIONS(1729), @@ -53225,17 +53650,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1733), [sym_html_comment] = ACTIONS(5), }, - [234] = { + [STATE(236)] = { [ts_builtin_sym_end] = ACTIONS(1737), [sym_identifier] = ACTIONS(1739), [anon_sym_export] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1741), [anon_sym_default] = ACTIONS(1739), [anon_sym_type] = ACTIONS(1739), - [anon_sym_as] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1741), [anon_sym_namespace] = ACTIONS(1739), [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_COMMA] = ACTIONS(1737), + [anon_sym_COMMA] = ACTIONS(1743), [anon_sym_RBRACE] = ACTIONS(1737), [anon_sym_typeof] = ACTIONS(1739), [anon_sym_import] = ACTIONS(1739), @@ -53251,7 +53676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1737), [anon_sym_SEMI] = ACTIONS(1737), [anon_sym_await] = ACTIONS(1739), - [anon_sym_in] = ACTIONS(1739), + [anon_sym_in] = ACTIONS(1741), [anon_sym_while] = ACTIONS(1739), [anon_sym_do] = ACTIONS(1739), [anon_sym_try] = ACTIONS(1739), @@ -53263,38 +53688,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1739), [anon_sym_yield] = ACTIONS(1739), [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_DOT] = ACTIONS(1739), + [anon_sym_GT] = ACTIONS(1741), + [anon_sym_DOT] = ACTIONS(1741), [anon_sym_DQUOTE] = ACTIONS(1737), [anon_sym_SQUOTE] = ACTIONS(1737), [anon_sym_class] = ACTIONS(1739), [anon_sym_async] = ACTIONS(1739), [anon_sym_function] = ACTIONS(1739), - [anon_sym_QMARK_DOT] = ACTIONS(1737), + [anon_sym_QMARK_DOT] = ACTIONS(1743), [anon_sym_new] = ACTIONS(1739), [anon_sym_using] = ACTIONS(1739), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_GT_GT] = ACTIONS(1739), - [anon_sym_GT_GT_GT] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1739), + [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PIPE_PIPE] = ACTIONS(1743), + [anon_sym_GT_GT] = ACTIONS(1741), + [anon_sym_GT_GT_GT] = ACTIONS(1743), + [anon_sym_LT_LT] = ACTIONS(1743), + [anon_sym_AMP3] = ACTIONS(1741), + [anon_sym_CARET] = ACTIONS(1743), + [anon_sym_PIPE] = ACTIONS(1741), [anon_sym_PLUS] = ACTIONS(1739), [anon_sym_DASH] = ACTIONS(1739), [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_PERCENT] = ACTIONS(1737), - [anon_sym_STAR_STAR] = ACTIONS(1737), + [anon_sym_PERCENT] = ACTIONS(1743), + [anon_sym_STAR_STAR] = ACTIONS(1743), [anon_sym_LT] = ACTIONS(1739), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1739), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ] = ACTIONS(1739), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_QMARK_QMARK] = ACTIONS(1737), - [anon_sym_instanceof] = ACTIONS(1739), + [anon_sym_LT_EQ] = ACTIONS(1743), + [anon_sym_EQ_EQ] = ACTIONS(1741), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1743), + [anon_sym_BANG_EQ] = ACTIONS(1741), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1743), + [anon_sym_GT_EQ] = ACTIONS(1743), + [anon_sym_QMARK_QMARK] = ACTIONS(1743), + [anon_sym_instanceof] = ACTIONS(1741), [anon_sym_TILDE] = ACTIONS(1737), [anon_sym_void] = ACTIONS(1739), [anon_sym_delete] = ACTIONS(1739), @@ -53328,435 +53753,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1739), [anon_sym_object] = ACTIONS(1739), [anon_sym_abstract] = ACTIONS(1739), - [anon_sym_satisfies] = ACTIONS(1739), + [anon_sym_satisfies] = ACTIONS(1741), [anon_sym_interface] = ACTIONS(1739), [anon_sym_enum] = ACTIONS(1739), - [sym__automatic_semicolon] = ACTIONS(1737), - [sym__ternary_qmark] = ACTIONS(1737), - [sym_html_comment] = ACTIONS(5), - }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1741), - [sym_identifier] = ACTIONS(1743), - [anon_sym_export] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_type] = ACTIONS(1743), - [anon_sym_as] = ACTIONS(1745), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_COMMA] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_typeof] = ACTIONS(1743), - [anon_sym_import] = ACTIONS(1743), - [anon_sym_with] = ACTIONS(1743), - [anon_sym_var] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_else] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_switch] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_await] = ACTIONS(1743), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_debugger] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_throw] = ACTIONS(1743), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_yield] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_GT] = ACTIONS(1745), - [anon_sym_DOT] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_async] = ACTIONS(1743), - [anon_sym_function] = ACTIONS(1743), - [anon_sym_QMARK_DOT] = ACTIONS(1747), - [anon_sym_new] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1747), - [anon_sym_PIPE_PIPE] = ACTIONS(1747), - [anon_sym_GT_GT] = ACTIONS(1745), - [anon_sym_GT_GT_GT] = ACTIONS(1747), - [anon_sym_LT_LT] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_PERCENT] = ACTIONS(1747), - [anon_sym_STAR_STAR] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_LT_EQ] = ACTIONS(1747), - [anon_sym_EQ_EQ] = ACTIONS(1745), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ] = ACTIONS(1745), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1747), - [anon_sym_GT_EQ] = ACTIONS(1747), - [anon_sym_QMARK_QMARK] = ACTIONS(1747), - [anon_sym_instanceof] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_void] = ACTIONS(1743), - [anon_sym_delete] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1741), - [sym_number] = ACTIONS(1741), - [sym_private_property_identifier] = ACTIONS(1741), - [sym_this] = ACTIONS(1743), - [sym_super] = ACTIONS(1743), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [sym_undefined] = ACTIONS(1743), - [anon_sym_AT] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_readonly] = ACTIONS(1743), - [anon_sym_get] = ACTIONS(1743), - [anon_sym_set] = ACTIONS(1743), - [anon_sym_declare] = ACTIONS(1743), - [anon_sym_public] = ACTIONS(1743), - [anon_sym_private] = ACTIONS(1743), - [anon_sym_protected] = ACTIONS(1743), - [anon_sym_override] = ACTIONS(1743), - [anon_sym_module] = ACTIONS(1743), - [anon_sym_any] = ACTIONS(1743), - [anon_sym_number] = ACTIONS(1743), - [anon_sym_boolean] = ACTIONS(1743), - [anon_sym_string] = ACTIONS(1743), - [anon_sym_symbol] = ACTIONS(1743), - [anon_sym_object] = ACTIONS(1743), - [anon_sym_abstract] = ACTIONS(1743), - [anon_sym_satisfies] = ACTIONS(1745), - [anon_sym_interface] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [sym__automatic_semicolon] = ACTIONS(1749), - [sym__ternary_qmark] = ACTIONS(1747), - [sym_html_comment] = ACTIONS(5), - }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_export] = ACTIONS(1753), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_as] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_COMMA] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_typeof] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1753), - [anon_sym_var] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(1753), - [anon_sym_in] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_debugger] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_GT] = ACTIONS(1755), - [anon_sym_DOT] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_function] = ACTIONS(1753), - [anon_sym_QMARK_DOT] = ACTIONS(1757), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_using] = ACTIONS(1753), - [anon_sym_AMP_AMP] = ACTIONS(1757), - [anon_sym_PIPE_PIPE] = ACTIONS(1757), - [anon_sym_GT_GT] = ACTIONS(1755), - [anon_sym_GT_GT_GT] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1753), - [anon_sym_PERCENT] = ACTIONS(1757), - [anon_sym_STAR_STAR] = ACTIONS(1757), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_LT_EQ] = ACTIONS(1757), - [anon_sym_EQ_EQ] = ACTIONS(1755), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1757), - [anon_sym_BANG_EQ] = ACTIONS(1755), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(1757), - [anon_sym_QMARK_QMARK] = ACTIONS(1757), - [anon_sym_instanceof] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_delete] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_number] = ACTIONS(1751), - [sym_private_property_identifier] = ACTIONS(1751), - [sym_this] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_undefined] = ACTIONS(1753), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_get] = ACTIONS(1753), - [anon_sym_set] = ACTIONS(1753), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_public] = ACTIONS(1753), - [anon_sym_private] = ACTIONS(1753), - [anon_sym_protected] = ACTIONS(1753), - [anon_sym_override] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1753), - [anon_sym_any] = ACTIONS(1753), - [anon_sym_number] = ACTIONS(1753), - [anon_sym_boolean] = ACTIONS(1753), - [anon_sym_string] = ACTIONS(1753), - [anon_sym_symbol] = ACTIONS(1753), - [anon_sym_object] = ACTIONS(1753), - [anon_sym_abstract] = ACTIONS(1753), - [anon_sym_satisfies] = ACTIONS(1755), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [sym__automatic_semicolon] = ACTIONS(1759), - [sym__ternary_qmark] = ACTIONS(1757), - [sym_html_comment] = ACTIONS(5), - }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1761), - [sym_identifier] = ACTIONS(1763), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_type] = ACTIONS(1763), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_namespace] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1761), + [sym__automatic_semicolon] = ACTIONS(1745), + [sym__ternary_qmark] = ACTIONS(1743), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(237)] = { + [ts_builtin_sym_end] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1751), + [anon_sym_namespace] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_COMMA] = ACTIONS(1753), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_typeof] = ACTIONS(1749), + [anon_sym_import] = ACTIONS(1749), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_var] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_switch] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_in] = ACTIONS(1751), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_debugger] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_throw] = ACTIONS(1749), + [anon_sym_case] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_GT] = ACTIONS(1751), + [anon_sym_DOT] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1747), + [anon_sym_class] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_function] = ACTIONS(1749), + [anon_sym_QMARK_DOT] = ACTIONS(1753), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_using] = ACTIONS(1749), + [anon_sym_AMP_AMP] = ACTIONS(1753), + [anon_sym_PIPE_PIPE] = ACTIONS(1753), + [anon_sym_GT_GT] = ACTIONS(1751), + [anon_sym_GT_GT_GT] = ACTIONS(1753), + [anon_sym_LT_LT] = ACTIONS(1753), + [anon_sym_AMP3] = ACTIONS(1751), + [anon_sym_CARET] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_PLUS] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_SLASH] = ACTIONS(1749), + [anon_sym_PERCENT] = ACTIONS(1753), + [anon_sym_STAR_STAR] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1749), + [anon_sym_LT_EQ] = ACTIONS(1753), + [anon_sym_EQ_EQ] = ACTIONS(1751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ] = ACTIONS(1751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1753), + [anon_sym_GT_EQ] = ACTIONS(1753), + [anon_sym_QMARK_QMARK] = ACTIONS(1753), + [anon_sym_instanceof] = ACTIONS(1751), + [anon_sym_TILDE] = ACTIONS(1747), + [anon_sym_void] = ACTIONS(1749), + [anon_sym_delete] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [sym_private_property_identifier] = ACTIONS(1747), + [sym_this] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), + [sym_null] = ACTIONS(1749), + [sym_undefined] = ACTIONS(1749), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_static] = ACTIONS(1749), + [anon_sym_readonly] = ACTIONS(1749), + [anon_sym_get] = ACTIONS(1749), + [anon_sym_set] = ACTIONS(1749), + [anon_sym_declare] = ACTIONS(1749), + [anon_sym_public] = ACTIONS(1749), + [anon_sym_private] = ACTIONS(1749), + [anon_sym_protected] = ACTIONS(1749), + [anon_sym_override] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_any] = ACTIONS(1749), + [anon_sym_number] = ACTIONS(1749), + [anon_sym_boolean] = ACTIONS(1749), + [anon_sym_string] = ACTIONS(1749), + [anon_sym_symbol] = ACTIONS(1749), + [anon_sym_object] = ACTIONS(1749), + [anon_sym_abstract] = ACTIONS(1749), + [anon_sym_satisfies] = ACTIONS(1751), + [anon_sym_interface] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [sym__automatic_semicolon] = ACTIONS(1755), + [sym__ternary_qmark] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(238)] = { + [ts_builtin_sym_end] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_as] = ACTIONS(1761), + [anon_sym_namespace] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_typeof] = ACTIONS(1759), + [anon_sym_import] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + [anon_sym_var] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1759), + [anon_sym_else] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_switch] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_debugger] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_throw] = ACTIONS(1759), + [anon_sym_case] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_class] = ACTIONS(1759), + [anon_sym_async] = ACTIONS(1759), + [anon_sym_function] = ACTIONS(1759), + [anon_sym_QMARK_DOT] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_using] = ACTIONS(1759), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1761), + [anon_sym_GT_GT_GT] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1763), + [anon_sym_AMP3] = ACTIONS(1761), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_SLASH] = ACTIONS(1759), + [anon_sym_PERCENT] = ACTIONS(1763), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1759), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1761), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1761), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_QMARK_QMARK] = ACTIONS(1763), + [anon_sym_instanceof] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_void] = ACTIONS(1759), + [anon_sym_delete] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1757), + [sym_number] = ACTIONS(1757), + [sym_private_property_identifier] = ACTIONS(1757), + [sym_this] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_null] = ACTIONS(1759), + [sym_undefined] = ACTIONS(1759), + [anon_sym_AT] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1759), + [anon_sym_satisfies] = ACTIONS(1761), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(1765), + [sym__ternary_qmark] = ACTIONS(1763), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(239)] = { + [ts_builtin_sym_end] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_type] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_namespace] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1767), [anon_sym_COMMA] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_typeof] = ACTIONS(1763), - [anon_sym_import] = ACTIONS(1763), - [anon_sym_with] = ACTIONS(1763), - [anon_sym_var] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_debugger] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_throw] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_yield] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_async] = ACTIONS(1763), - [anon_sym_function] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_typeof] = ACTIONS(1769), + [anon_sym_import] = ACTIONS(1769), + [anon_sym_with] = ACTIONS(1769), + [anon_sym_var] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_switch] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_debugger] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1769), + [anon_sym_case] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_class] = ACTIONS(1769), + [anon_sym_async] = ACTIONS(1769), + [anon_sym_function] = ACTIONS(1769), [anon_sym_QMARK_DOT] = ACTIONS(1767), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1769), [anon_sym_AMP_AMP] = ACTIONS(1767), [anon_sym_PIPE_PIPE] = ACTIONS(1767), - [anon_sym_GT_GT] = ACTIONS(1765), + [anon_sym_GT_GT] = ACTIONS(1769), [anon_sym_GT_GT_GT] = ACTIONS(1767), [anon_sym_LT_LT] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_AMP3] = ACTIONS(1769), [anon_sym_CARET] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), [anon_sym_PERCENT] = ACTIONS(1767), [anon_sym_STAR_STAR] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1769), [anon_sym_LT_EQ] = ACTIONS(1767), - [anon_sym_EQ_EQ] = ACTIONS(1765), + [anon_sym_EQ_EQ] = ACTIONS(1769), [anon_sym_EQ_EQ_EQ] = ACTIONS(1767), - [anon_sym_BANG_EQ] = ACTIONS(1765), + [anon_sym_BANG_EQ] = ACTIONS(1769), [anon_sym_BANG_EQ_EQ] = ACTIONS(1767), [anon_sym_GT_EQ] = ACTIONS(1767), [anon_sym_QMARK_QMARK] = ACTIONS(1767), - [anon_sym_instanceof] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_void] = ACTIONS(1763), - [anon_sym_delete] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1761), - [sym_number] = ACTIONS(1761), - [sym_private_property_identifier] = ACTIONS(1761), - [sym_this] = ACTIONS(1763), - [sym_super] = ACTIONS(1763), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_undefined] = ACTIONS(1763), - [anon_sym_AT] = ACTIONS(1761), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_readonly] = ACTIONS(1763), - [anon_sym_get] = ACTIONS(1763), - [anon_sym_set] = ACTIONS(1763), - [anon_sym_declare] = ACTIONS(1763), - [anon_sym_public] = ACTIONS(1763), - [anon_sym_private] = ACTIONS(1763), - [anon_sym_protected] = ACTIONS(1763), - [anon_sym_override] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_any] = ACTIONS(1763), - [anon_sym_number] = ACTIONS(1763), - [anon_sym_boolean] = ACTIONS(1763), - [anon_sym_string] = ACTIONS(1763), - [anon_sym_symbol] = ACTIONS(1763), - [anon_sym_object] = ACTIONS(1763), - [anon_sym_abstract] = ACTIONS(1763), - [anon_sym_satisfies] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [sym__automatic_semicolon] = ACTIONS(1769), + [anon_sym_instanceof] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_void] = ACTIONS(1769), + [anon_sym_delete] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1767), + [sym_number] = ACTIONS(1767), + [sym_private_property_identifier] = ACTIONS(1767), + [sym_this] = ACTIONS(1769), + [sym_super] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_null] = ACTIONS(1769), + [sym_undefined] = ACTIONS(1769), + [anon_sym_AT] = ACTIONS(1767), + [anon_sym_static] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_get] = ACTIONS(1769), + [anon_sym_set] = ACTIONS(1769), + [anon_sym_declare] = ACTIONS(1769), + [anon_sym_public] = ACTIONS(1769), + [anon_sym_private] = ACTIONS(1769), + [anon_sym_protected] = ACTIONS(1769), + [anon_sym_override] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_any] = ACTIONS(1769), + [anon_sym_number] = ACTIONS(1769), + [anon_sym_boolean] = ACTIONS(1769), + [anon_sym_string] = ACTIONS(1769), + [anon_sym_symbol] = ACTIONS(1769), + [anon_sym_object] = ACTIONS(1769), + [anon_sym_abstract] = ACTIONS(1769), + [anon_sym_satisfies] = ACTIONS(1769), + [anon_sym_interface] = ACTIONS(1769), + [anon_sym_enum] = ACTIONS(1769), + [sym__automatic_semicolon] = ACTIONS(1767), [sym__ternary_qmark] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, - [238] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5183), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5183), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5183), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1370), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_mapped_type_clause] = STATE(5583), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(1771), + [STATE(240)] = { + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1773), [anon_sym_export] = ACTIONS(1773), + [anon_sym_STAR] = ACTIONS(1775), + [anon_sym_default] = ACTIONS(1773), [anon_sym_type] = ACTIONS(1773), - [anon_sym_namespace] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), + [anon_sym_as] = ACTIONS(1775), + [anon_sym_namespace] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_typeof] = ACTIONS(1773), + [anon_sym_import] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + [anon_sym_var] = ACTIONS(1773), [anon_sym_let] = ACTIONS(1773), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1789), - [anon_sym_AT] = ACTIONS(97), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_else] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1775), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_debugger] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_throw] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_class] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1773), + [anon_sym_function] = ACTIONS(1773), + [anon_sym_QMARK_DOT] = ACTIONS(1777), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_using] = ACTIONS(1773), + [anon_sym_AMP_AMP] = ACTIONS(1777), + [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [anon_sym_GT_GT] = ACTIONS(1775), + [anon_sym_GT_GT_GT] = ACTIONS(1777), + [anon_sym_LT_LT] = ACTIONS(1777), + [anon_sym_AMP3] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_SLASH] = ACTIONS(1773), + [anon_sym_PERCENT] = ACTIONS(1777), + [anon_sym_STAR_STAR] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1773), + [anon_sym_LT_EQ] = ACTIONS(1777), + [anon_sym_EQ_EQ] = ACTIONS(1775), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1777), + [anon_sym_BANG_EQ] = ACTIONS(1775), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1777), + [anon_sym_GT_EQ] = ACTIONS(1777), + [anon_sym_QMARK_QMARK] = ACTIONS(1777), + [anon_sym_instanceof] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_void] = ACTIONS(1773), + [anon_sym_delete] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1771), + [sym_number] = ACTIONS(1771), + [sym_private_property_identifier] = ACTIONS(1771), + [sym_this] = ACTIONS(1773), + [sym_super] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_null] = ACTIONS(1773), + [sym_undefined] = ACTIONS(1773), + [anon_sym_AT] = ACTIONS(1771), [anon_sym_static] = ACTIONS(1773), [anon_sym_readonly] = ACTIONS(1773), [anon_sym_get] = ACTIONS(1773), @@ -53773,1857 +54192,1643 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1773), [anon_sym_symbol] = ACTIONS(1773), [anon_sym_object] = ACTIONS(1773), - [sym_html_comment] = ACTIONS(5), - }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_identifier] = ACTIONS(1793), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1793), - [anon_sym_namespace] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1793), - [anon_sym_import] = ACTIONS(1793), - [anon_sym_with] = ACTIONS(1793), - [anon_sym_var] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_switch] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_await] = ACTIONS(1793), - [anon_sym_in] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_debugger] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_throw] = ACTIONS(1793), - [anon_sym_case] = ACTIONS(1793), - [anon_sym_yield] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1793), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_function] = ACTIONS(1793), - [anon_sym_QMARK_DOT] = ACTIONS(1791), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1793), - [anon_sym_AMP_AMP] = ACTIONS(1791), - [anon_sym_PIPE_PIPE] = ACTIONS(1791), - [anon_sym_GT_GT] = ACTIONS(1793), - [anon_sym_GT_GT_GT] = ACTIONS(1791), - [anon_sym_LT_LT] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1793), - [anon_sym_PERCENT] = ACTIONS(1791), - [anon_sym_STAR_STAR] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_LT_EQ] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1793), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), - [anon_sym_BANG_EQ] = ACTIONS(1793), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1791), - [anon_sym_QMARK_QMARK] = ACTIONS(1791), - [anon_sym_instanceof] = ACTIONS(1793), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_void] = ACTIONS(1793), - [anon_sym_delete] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1791), - [sym_number] = ACTIONS(1791), - [sym_private_property_identifier] = ACTIONS(1791), - [sym_this] = ACTIONS(1793), - [sym_super] = ACTIONS(1793), - [sym_true] = ACTIONS(1793), - [sym_false] = ACTIONS(1793), - [sym_null] = ACTIONS(1793), - [sym_undefined] = ACTIONS(1793), - [anon_sym_AT] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_readonly] = ACTIONS(1793), - [anon_sym_get] = ACTIONS(1793), - [anon_sym_set] = ACTIONS(1793), - [anon_sym_declare] = ACTIONS(1793), - [anon_sym_public] = ACTIONS(1793), - [anon_sym_private] = ACTIONS(1793), - [anon_sym_protected] = ACTIONS(1793), - [anon_sym_override] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_any] = ACTIONS(1793), - [anon_sym_number] = ACTIONS(1793), - [anon_sym_boolean] = ACTIONS(1793), - [anon_sym_string] = ACTIONS(1793), - [anon_sym_symbol] = ACTIONS(1793), - [anon_sym_object] = ACTIONS(1793), - [anon_sym_abstract] = ACTIONS(1793), - [anon_sym_satisfies] = ACTIONS(1793), - [anon_sym_interface] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [sym__automatic_semicolon] = ACTIONS(1791), - [sym__ternary_qmark] = ACTIONS(1791), - [sym_html_comment] = ACTIONS(5), - }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_export] = ACTIONS(1797), + [anon_sym_abstract] = ACTIONS(1773), + [anon_sym_satisfies] = ACTIONS(1775), + [anon_sym_interface] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [sym__automatic_semicolon] = ACTIONS(1777), + [sym__ternary_qmark] = ACTIONS(1777), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(241)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_as] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_in] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_QMARK_DOT] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_AMP_AMP] = ACTIONS(1779), + [anon_sym_PIPE_PIPE] = ACTIONS(1779), + [anon_sym_GT_GT] = ACTIONS(1781), + [anon_sym_GT_GT_GT] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(1779), + [anon_sym_AMP3] = ACTIONS(1781), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_PERCENT] = ACTIONS(1779), + [anon_sym_STAR_STAR] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1779), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1779), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1779), + [anon_sym_QMARK_QMARK] = ACTIONS(1779), + [anon_sym_instanceof] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_satisfies] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym__automatic_semicolon] = ACTIONS(1783), + [sym__ternary_qmark] = ACTIONS(1779), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(242)] = { + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_as] = ACTIONS(1787), + [anon_sym_namespace] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_typeof] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_with] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_await] = ACTIONS(1787), + [anon_sym_in] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_debugger] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_QMARK_DOT] = ACTIONS(1785), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_AMP3] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_STAR_STAR] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1787), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1785), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_instanceof] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_void] = ACTIONS(1787), + [anon_sym_delete] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1785), + [sym_number] = ACTIONS(1785), + [sym_private_property_identifier] = ACTIONS(1785), + [sym_this] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_null] = ACTIONS(1787), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_readonly] = ACTIONS(1787), + [anon_sym_get] = ACTIONS(1787), + [anon_sym_set] = ACTIONS(1787), + [anon_sym_declare] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_protected] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_module] = ACTIONS(1787), + [anon_sym_any] = ACTIONS(1787), + [anon_sym_number] = ACTIONS(1787), + [anon_sym_boolean] = ACTIONS(1787), + [anon_sym_string] = ACTIONS(1787), + [anon_sym_symbol] = ACTIONS(1787), + [anon_sym_object] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_satisfies] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [sym__automatic_semicolon] = ACTIONS(1785), + [sym__ternary_qmark] = ACTIONS(1785), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(243)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [anon_sym_extends] = ACTIONS(1657), + [anon_sym_PIPE_RBRACE] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1655), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(244)] = { + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_GT_GT] = ACTIONS(1791), + [anon_sym_GT_GT_GT] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(1789), + [anon_sym_AMP3] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1789), + [anon_sym_STAR_STAR] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_QMARK_QMARK] = ACTIONS(1789), + [anon_sym_instanceof] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_satisfies] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [sym__automatic_semicolon] = ACTIONS(1789), + [sym__ternary_qmark] = ACTIONS(1789), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(245)] = { + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_as] = ACTIONS(1795), + [anon_sym_namespace] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_typeof] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_var] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_else] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_debugger] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_case] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_GT] = ACTIONS(1795), + [anon_sym_DOT] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(1795), + [anon_sym_QMARK_DOT] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_AMP_AMP] = ACTIONS(1793), + [anon_sym_PIPE_PIPE] = ACTIONS(1793), + [anon_sym_GT_GT] = ACTIONS(1795), + [anon_sym_GT_GT_GT] = ACTIONS(1793), + [anon_sym_LT_LT] = ACTIONS(1793), + [anon_sym_AMP3] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_PERCENT] = ACTIONS(1793), + [anon_sym_STAR_STAR] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_LT_EQ] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1795), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1793), + [anon_sym_BANG_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(1793), + [anon_sym_QMARK_QMARK] = ACTIONS(1793), + [anon_sym_instanceof] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_void] = ACTIONS(1795), + [anon_sym_delete] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_number] = ACTIONS(1793), + [sym_private_property_identifier] = ACTIONS(1793), + [sym_this] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_null] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_readonly] = ACTIONS(1795), + [anon_sym_get] = ACTIONS(1795), + [anon_sym_set] = ACTIONS(1795), + [anon_sym_declare] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_private] = ACTIONS(1795), + [anon_sym_protected] = ACTIONS(1795), + [anon_sym_override] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_any] = ACTIONS(1795), + [anon_sym_number] = ACTIONS(1795), + [anon_sym_boolean] = ACTIONS(1795), + [anon_sym_string] = ACTIONS(1795), + [anon_sym_symbol] = ACTIONS(1795), + [anon_sym_object] = ACTIONS(1795), + [anon_sym_abstract] = ACTIONS(1795), + [anon_sym_satisfies] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [sym__automatic_semicolon] = ACTIONS(1793), + [sym__ternary_qmark] = ACTIONS(1793), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(246)] = { + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1799), [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), [anon_sym_as] = ACTIONS(1799), - [anon_sym_namespace] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_COMMA] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_typeof] = ACTIONS(1797), - [anon_sym_import] = ACTIONS(1797), - [anon_sym_with] = ACTIONS(1797), - [anon_sym_var] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_else] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_switch] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_await] = ACTIONS(1797), + [anon_sym_namespace] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1799), + [anon_sym_import] = ACTIONS(1799), + [anon_sym_with] = ACTIONS(1799), + [anon_sym_var] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_await] = ACTIONS(1799), [anon_sym_in] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_do] = ACTIONS(1797), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_debugger] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_throw] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_debugger] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1799), + [anon_sym_case] = ACTIONS(1799), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), [anon_sym_GT] = ACTIONS(1799), [anon_sym_DOT] = ACTIONS(1799), - [anon_sym_DQUOTE] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_function] = ACTIONS(1797), - [anon_sym_QMARK_DOT] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1797), - [anon_sym_using] = ACTIONS(1797), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_function] = ACTIONS(1799), + [anon_sym_QMARK_DOT] = ACTIONS(1797), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_using] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1797), [anon_sym_GT_GT] = ACTIONS(1799), - [anon_sym_GT_GT_GT] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_GT_GT_GT] = ACTIONS(1797), + [anon_sym_LT_LT] = ACTIONS(1797), + [anon_sym_AMP3] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1797), [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1797), - [anon_sym_PERCENT] = ACTIONS(1801), - [anon_sym_STAR_STAR] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_LT_EQ] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1797), + [anon_sym_STAR_STAR] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_LT_EQ] = ACTIONS(1797), [anon_sym_EQ_EQ] = ACTIONS(1799), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1801), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1797), [anon_sym_BANG_EQ] = ACTIONS(1799), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1801), - [anon_sym_GT_EQ] = ACTIONS(1801), - [anon_sym_QMARK_QMARK] = ACTIONS(1801), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1797), + [anon_sym_GT_EQ] = ACTIONS(1797), + [anon_sym_QMARK_QMARK] = ACTIONS(1797), [anon_sym_instanceof] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_void] = ACTIONS(1797), - [anon_sym_delete] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1795), - [sym_number] = ACTIONS(1795), - [sym_private_property_identifier] = ACTIONS(1795), - [sym_this] = ACTIONS(1797), - [sym_super] = ACTIONS(1797), - [sym_true] = ACTIONS(1797), - [sym_false] = ACTIONS(1797), - [sym_null] = ACTIONS(1797), - [sym_undefined] = ACTIONS(1797), - [anon_sym_AT] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_readonly] = ACTIONS(1797), - [anon_sym_get] = ACTIONS(1797), - [anon_sym_set] = ACTIONS(1797), - [anon_sym_declare] = ACTIONS(1797), - [anon_sym_public] = ACTIONS(1797), - [anon_sym_private] = ACTIONS(1797), - [anon_sym_protected] = ACTIONS(1797), - [anon_sym_override] = ACTIONS(1797), - [anon_sym_module] = ACTIONS(1797), - [anon_sym_any] = ACTIONS(1797), - [anon_sym_number] = ACTIONS(1797), - [anon_sym_boolean] = ACTIONS(1797), - [anon_sym_string] = ACTIONS(1797), - [anon_sym_symbol] = ACTIONS(1797), - [anon_sym_object] = ACTIONS(1797), - [anon_sym_abstract] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_void] = ACTIONS(1799), + [anon_sym_delete] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1797), + [sym_number] = ACTIONS(1797), + [sym_private_property_identifier] = ACTIONS(1797), + [sym_this] = ACTIONS(1799), + [sym_super] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_null] = ACTIONS(1799), + [sym_undefined] = ACTIONS(1799), + [anon_sym_AT] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_readonly] = ACTIONS(1799), + [anon_sym_get] = ACTIONS(1799), + [anon_sym_set] = ACTIONS(1799), + [anon_sym_declare] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_private] = ACTIONS(1799), + [anon_sym_protected] = ACTIONS(1799), + [anon_sym_override] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_any] = ACTIONS(1799), + [anon_sym_number] = ACTIONS(1799), + [anon_sym_boolean] = ACTIONS(1799), + [anon_sym_string] = ACTIONS(1799), + [anon_sym_symbol] = ACTIONS(1799), + [anon_sym_object] = ACTIONS(1799), + [anon_sym_abstract] = ACTIONS(1799), [anon_sym_satisfies] = ACTIONS(1799), - [anon_sym_interface] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [sym__automatic_semicolon] = ACTIONS(1803), - [sym__ternary_qmark] = ACTIONS(1801), - [sym_html_comment] = ACTIONS(5), - }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_as] = ACTIONS(1807), - [anon_sym_namespace] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_typeof] = ACTIONS(1807), - [anon_sym_import] = ACTIONS(1807), - [anon_sym_with] = ACTIONS(1807), - [anon_sym_var] = ACTIONS(1807), - [anon_sym_let] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_else] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_switch] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_await] = ACTIONS(1807), - [anon_sym_in] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_do] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_debugger] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_throw] = ACTIONS(1807), - [anon_sym_case] = ACTIONS(1807), - [anon_sym_yield] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_DOT] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_async] = ACTIONS(1807), - [anon_sym_function] = ACTIONS(1807), - [anon_sym_QMARK_DOT] = ACTIONS(1805), - [anon_sym_new] = ACTIONS(1807), - [anon_sym_using] = ACTIONS(1807), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_GT_GT_GT] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_PERCENT] = ACTIONS(1805), - [anon_sym_STAR_STAR] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_QMARK_QMARK] = ACTIONS(1805), - [anon_sym_instanceof] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_void] = ACTIONS(1807), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1805), - [sym_number] = ACTIONS(1805), - [sym_private_property_identifier] = ACTIONS(1805), - [sym_this] = ACTIONS(1807), - [sym_super] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_null] = ACTIONS(1807), - [sym_undefined] = ACTIONS(1807), - [anon_sym_AT] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_readonly] = ACTIONS(1807), - [anon_sym_get] = ACTIONS(1807), - [anon_sym_set] = ACTIONS(1807), - [anon_sym_declare] = ACTIONS(1807), - [anon_sym_public] = ACTIONS(1807), - [anon_sym_private] = ACTIONS(1807), - [anon_sym_protected] = ACTIONS(1807), - [anon_sym_override] = ACTIONS(1807), - [anon_sym_module] = ACTIONS(1807), - [anon_sym_any] = ACTIONS(1807), - [anon_sym_number] = ACTIONS(1807), - [anon_sym_boolean] = ACTIONS(1807), - [anon_sym_string] = ACTIONS(1807), - [anon_sym_symbol] = ACTIONS(1807), - [anon_sym_object] = ACTIONS(1807), - [anon_sym_abstract] = ACTIONS(1807), - [anon_sym_satisfies] = ACTIONS(1807), - [anon_sym_interface] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [sym__automatic_semicolon] = ACTIONS(1805), - [sym__ternary_qmark] = ACTIONS(1805), - [sym_html_comment] = ACTIONS(5), - }, - [242] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_as] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_in] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1811), - [anon_sym_DOT] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1811), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_STAR_STAR] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1811), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_QMARK_QMARK] = ACTIONS(1809), - [anon_sym_instanceof] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_private_property_identifier] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_override] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_object] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_satisfies] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [sym__automatic_semicolon] = ACTIONS(1797), + [sym__ternary_qmark] = ACTIONS(1797), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(247)] = { + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_namespace] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_typeof] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_with] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_else] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_switch] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_in] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_debugger] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1803), + [anon_sym_case] = ACTIONS(1803), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_class] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_function] = ACTIONS(1803), + [anon_sym_QMARK_DOT] = ACTIONS(1807), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1803), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_GT_GT] = ACTIONS(1805), + [anon_sym_GT_GT_GT] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_AMP3] = ACTIONS(1805), + [anon_sym_CARET] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_PERCENT] = ACTIONS(1807), + [anon_sym_STAR_STAR] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_EQ_EQ] = ACTIONS(1805), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1805), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_QMARK_QMARK] = ACTIONS(1807), + [anon_sym_instanceof] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_void] = ACTIONS(1803), + [anon_sym_delete] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1801), + [sym_number] = ACTIONS(1801), + [sym_private_property_identifier] = ACTIONS(1801), + [sym_this] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_null] = ACTIONS(1803), + [sym_undefined] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_readonly] = ACTIONS(1803), + [anon_sym_get] = ACTIONS(1803), + [anon_sym_set] = ACTIONS(1803), + [anon_sym_declare] = ACTIONS(1803), + [anon_sym_public] = ACTIONS(1803), + [anon_sym_private] = ACTIONS(1803), + [anon_sym_protected] = ACTIONS(1803), + [anon_sym_override] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_any] = ACTIONS(1803), + [anon_sym_number] = ACTIONS(1803), + [anon_sym_boolean] = ACTIONS(1803), + [anon_sym_string] = ACTIONS(1803), + [anon_sym_symbol] = ACTIONS(1803), + [anon_sym_object] = ACTIONS(1803), + [anon_sym_abstract] = ACTIONS(1803), + [anon_sym_satisfies] = ACTIONS(1805), + [anon_sym_interface] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), [sym__automatic_semicolon] = ACTIONS(1809), - [sym__ternary_qmark] = ACTIONS(1809), - [sym_html_comment] = ACTIONS(5), - }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1813), - [sym_identifier] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_as] = ACTIONS(1817), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_COMMA] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_typeof] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_with] = ACTIONS(1815), - [anon_sym_var] = ACTIONS(1815), - [anon_sym_let] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_else] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_in] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_debugger] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_function] = ACTIONS(1815), - [anon_sym_QMARK_DOT] = ACTIONS(1819), - [anon_sym_new] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1819), - [anon_sym_PIPE_PIPE] = ACTIONS(1819), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_GT_GT_GT] = ACTIONS(1819), - [anon_sym_LT_LT] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_PERCENT] = ACTIONS(1819), - [anon_sym_STAR_STAR] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_LT_EQ] = ACTIONS(1819), - [anon_sym_EQ_EQ] = ACTIONS(1817), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1819), - [anon_sym_BANG_EQ] = ACTIONS(1817), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1819), - [anon_sym_GT_EQ] = ACTIONS(1819), - [anon_sym_QMARK_QMARK] = ACTIONS(1819), - [anon_sym_instanceof] = ACTIONS(1817), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1813), - [sym_number] = ACTIONS(1813), - [sym_private_property_identifier] = ACTIONS(1813), - [sym_this] = ACTIONS(1815), - [sym_super] = ACTIONS(1815), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_undefined] = ACTIONS(1815), - [anon_sym_AT] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_readonly] = ACTIONS(1815), - [anon_sym_get] = ACTIONS(1815), - [anon_sym_set] = ACTIONS(1815), - [anon_sym_declare] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [anon_sym_override] = ACTIONS(1815), - [anon_sym_module] = ACTIONS(1815), - [anon_sym_any] = ACTIONS(1815), - [anon_sym_number] = ACTIONS(1815), - [anon_sym_boolean] = ACTIONS(1815), - [anon_sym_string] = ACTIONS(1815), - [anon_sym_symbol] = ACTIONS(1815), - [anon_sym_object] = ACTIONS(1815), - [anon_sym_abstract] = ACTIONS(1815), - [anon_sym_satisfies] = ACTIONS(1817), - [anon_sym_interface] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [sym__automatic_semicolon] = ACTIONS(1821), - [sym__ternary_qmark] = ACTIONS(1819), - [sym_html_comment] = ACTIONS(5), - }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_export] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_as] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_typeof] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1825), - [anon_sym_with] = ACTIONS(1825), - [anon_sym_var] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_switch] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_await] = ACTIONS(1825), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_do] = ACTIONS(1825), - [anon_sym_try] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_debugger] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_throw] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(1825), - [anon_sym_QMARK_DOT] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_PIPE_PIPE] = ACTIONS(1829), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1829), - [anon_sym_LT_LT] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_SLASH] = ACTIONS(1825), - [anon_sym_PERCENT] = ACTIONS(1829), - [anon_sym_STAR_STAR] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_LT_EQ] = ACTIONS(1829), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1829), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1829), - [anon_sym_GT_EQ] = ACTIONS(1829), - [anon_sym_QMARK_QMARK] = ACTIONS(1829), - [anon_sym_instanceof] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_void] = ACTIONS(1825), - [anon_sym_delete] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [sym_private_property_identifier] = ACTIONS(1823), - [sym_this] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_true] = ACTIONS(1825), - [sym_false] = ACTIONS(1825), - [sym_null] = ACTIONS(1825), - [sym_undefined] = ACTIONS(1825), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_readonly] = ACTIONS(1825), - [anon_sym_get] = ACTIONS(1825), - [anon_sym_set] = ACTIONS(1825), - [anon_sym_declare] = ACTIONS(1825), - [anon_sym_public] = ACTIONS(1825), - [anon_sym_private] = ACTIONS(1825), - [anon_sym_protected] = ACTIONS(1825), - [anon_sym_override] = ACTIONS(1825), - [anon_sym_module] = ACTIONS(1825), - [anon_sym_any] = ACTIONS(1825), - [anon_sym_number] = ACTIONS(1825), - [anon_sym_boolean] = ACTIONS(1825), - [anon_sym_string] = ACTIONS(1825), - [anon_sym_symbol] = ACTIONS(1825), - [anon_sym_object] = ACTIONS(1825), - [anon_sym_abstract] = ACTIONS(1825), - [anon_sym_satisfies] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [sym__automatic_semicolon] = ACTIONS(1831), - [sym__ternary_qmark] = ACTIONS(1829), - [sym_html_comment] = ACTIONS(5), - }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_export] = ACTIONS(1835), + [sym__ternary_qmark] = ACTIONS(1807), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(248)] = { + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_default] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1815), + [anon_sym_namespace] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_typeof] = ACTIONS(1813), + [anon_sym_import] = ACTIONS(1813), + [anon_sym_with] = ACTIONS(1813), + [anon_sym_var] = ACTIONS(1813), + [anon_sym_let] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_else] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_switch] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_await] = ACTIONS(1813), + [anon_sym_in] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_do] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_debugger] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_throw] = ACTIONS(1813), + [anon_sym_case] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_GT] = ACTIONS(1815), + [anon_sym_DOT] = ACTIONS(1815), + [anon_sym_DQUOTE] = ACTIONS(1811), + [anon_sym_SQUOTE] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1813), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_function] = ACTIONS(1813), + [anon_sym_QMARK_DOT] = ACTIONS(1817), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_using] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1817), + [anon_sym_PIPE_PIPE] = ACTIONS(1817), + [anon_sym_GT_GT] = ACTIONS(1815), + [anon_sym_GT_GT_GT] = ACTIONS(1817), + [anon_sym_LT_LT] = ACTIONS(1817), + [anon_sym_AMP3] = ACTIONS(1815), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_PERCENT] = ACTIONS(1817), + [anon_sym_STAR_STAR] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_LT_EQ] = ACTIONS(1817), + [anon_sym_EQ_EQ] = ACTIONS(1815), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), + [anon_sym_BANG_EQ] = ACTIONS(1815), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), + [anon_sym_GT_EQ] = ACTIONS(1817), + [anon_sym_QMARK_QMARK] = ACTIONS(1817), + [anon_sym_instanceof] = ACTIONS(1815), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_void] = ACTIONS(1813), + [anon_sym_delete] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1811), + [sym_number] = ACTIONS(1811), + [sym_private_property_identifier] = ACTIONS(1811), + [sym_this] = ACTIONS(1813), + [sym_super] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_null] = ACTIONS(1813), + [sym_undefined] = ACTIONS(1813), + [anon_sym_AT] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1813), + [anon_sym_readonly] = ACTIONS(1813), + [anon_sym_get] = ACTIONS(1813), + [anon_sym_set] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1813), + [anon_sym_public] = ACTIONS(1813), + [anon_sym_private] = ACTIONS(1813), + [anon_sym_protected] = ACTIONS(1813), + [anon_sym_override] = ACTIONS(1813), + [anon_sym_module] = ACTIONS(1813), + [anon_sym_any] = ACTIONS(1813), + [anon_sym_number] = ACTIONS(1813), + [anon_sym_boolean] = ACTIONS(1813), + [anon_sym_string] = ACTIONS(1813), + [anon_sym_symbol] = ACTIONS(1813), + [anon_sym_object] = ACTIONS(1813), + [anon_sym_abstract] = ACTIONS(1813), + [anon_sym_satisfies] = ACTIONS(1815), + [anon_sym_interface] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [sym__automatic_semicolon] = ACTIONS(1819), + [sym__ternary_qmark] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(249)] = { + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_as] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_COMMA] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_typeof] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_with] = ACTIONS(1823), + [anon_sym_var] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_switch] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_in] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_debugger] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_throw] = ACTIONS(1823), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1825), + [anon_sym_DOT] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_QMARK_DOT] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1825), + [anon_sym_GT_GT_GT] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_AMP3] = ACTIONS(1825), + [anon_sym_CARET] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1827), + [anon_sym_STAR_STAR] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1825), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), + [anon_sym_BANG_EQ] = ACTIONS(1825), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), + [anon_sym_GT_EQ] = ACTIONS(1827), + [anon_sym_QMARK_QMARK] = ACTIONS(1827), + [anon_sym_instanceof] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_void] = ACTIONS(1823), + [anon_sym_delete] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1821), + [sym_number] = ACTIONS(1821), + [sym_private_property_identifier] = ACTIONS(1821), + [sym_this] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_true] = ACTIONS(1823), + [sym_false] = ACTIONS(1823), + [sym_null] = ACTIONS(1823), + [sym_undefined] = ACTIONS(1823), + [anon_sym_AT] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_readonly] = ACTIONS(1823), + [anon_sym_get] = ACTIONS(1823), + [anon_sym_set] = ACTIONS(1823), + [anon_sym_declare] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_private] = ACTIONS(1823), + [anon_sym_protected] = ACTIONS(1823), + [anon_sym_override] = ACTIONS(1823), + [anon_sym_module] = ACTIONS(1823), + [anon_sym_any] = ACTIONS(1823), + [anon_sym_number] = ACTIONS(1823), + [anon_sym_boolean] = ACTIONS(1823), + [anon_sym_string] = ACTIONS(1823), + [anon_sym_symbol] = ACTIONS(1823), + [anon_sym_object] = ACTIONS(1823), + [anon_sym_abstract] = ACTIONS(1823), + [anon_sym_satisfies] = ACTIONS(1825), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1829), + [sym__ternary_qmark] = ACTIONS(1827), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(250)] = { + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1833), [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), [anon_sym_as] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_COMMA] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_typeof] = ACTIONS(1835), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_var] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_await] = ACTIONS(1835), + [anon_sym_namespace] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_typeof] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1833), + [anon_sym_with] = ACTIONS(1833), + [anon_sym_var] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_await] = ACTIONS(1833), [anon_sym_in] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_debugger] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_debugger] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_case] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1831), [anon_sym_GT] = ACTIONS(1835), [anon_sym_DOT] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_function] = ACTIONS(1835), - [anon_sym_QMARK_DOT] = ACTIONS(1833), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1833), - [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1833), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), [anon_sym_GT_GT] = ACTIONS(1835), - [anon_sym_GT_GT_GT] = ACTIONS(1833), - [anon_sym_LT_LT] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1833), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_AMP3] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1837), [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1833), - [anon_sym_STAR_STAR] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1833), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_LT_EQ] = ACTIONS(1837), [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1833), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1833), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_QMARK_QMARK] = ACTIONS(1833), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_QMARK_QMARK] = ACTIONS(1837), [anon_sym_instanceof] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_void] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1833), - [sym_number] = ACTIONS(1833), - [sym_private_property_identifier] = ACTIONS(1833), - [sym_this] = ACTIONS(1835), - [sym_super] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_readonly] = ACTIONS(1835), - [anon_sym_get] = ACTIONS(1835), - [anon_sym_set] = ACTIONS(1835), - [anon_sym_declare] = ACTIONS(1835), - [anon_sym_public] = ACTIONS(1835), - [anon_sym_private] = ACTIONS(1835), - [anon_sym_protected] = ACTIONS(1835), - [anon_sym_override] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_any] = ACTIONS(1835), - [anon_sym_number] = ACTIONS(1835), - [anon_sym_boolean] = ACTIONS(1835), - [anon_sym_string] = ACTIONS(1835), - [anon_sym_symbol] = ACTIONS(1835), - [anon_sym_object] = ACTIONS(1835), - [anon_sym_abstract] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1833), + [anon_sym_delete] = ACTIONS(1833), + [anon_sym_PLUS_PLUS] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_number] = ACTIONS(1831), + [sym_private_property_identifier] = ACTIONS(1831), + [sym_this] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_null] = ACTIONS(1833), + [sym_undefined] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1833), + [anon_sym_get] = ACTIONS(1833), + [anon_sym_set] = ACTIONS(1833), + [anon_sym_declare] = ACTIONS(1833), + [anon_sym_public] = ACTIONS(1833), + [anon_sym_private] = ACTIONS(1833), + [anon_sym_protected] = ACTIONS(1833), + [anon_sym_override] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_any] = ACTIONS(1833), + [anon_sym_number] = ACTIONS(1833), + [anon_sym_boolean] = ACTIONS(1833), + [anon_sym_string] = ACTIONS(1833), + [anon_sym_symbol] = ACTIONS(1833), + [anon_sym_object] = ACTIONS(1833), + [anon_sym_abstract] = ACTIONS(1833), [anon_sym_satisfies] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [sym__automatic_semicolon] = ACTIONS(1833), - [sym__ternary_qmark] = ACTIONS(1833), - [sym_html_comment] = ACTIONS(5), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_as] = ACTIONS(1661), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_in] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_debugger] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_throw] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_DOT] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_QMARK_DOT] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [anon_sym_GT_GT] = ACTIONS(1661), - [anon_sym_GT_GT_GT] = ACTIONS(1659), - [anon_sym_LT_LT] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_PERCENT] = ACTIONS(1659), - [anon_sym_STAR_STAR] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_LT_EQ] = ACTIONS(1659), - [anon_sym_EQ_EQ] = ACTIONS(1661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1659), - [anon_sym_BANG_EQ] = ACTIONS(1661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1659), - [anon_sym_GT_EQ] = ACTIONS(1659), - [anon_sym_QMARK_QMARK] = ACTIONS(1659), - [anon_sym_instanceof] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_object] = ACTIONS(1661), - [anon_sym_abstract] = ACTIONS(1661), - [anon_sym_satisfies] = ACTIONS(1661), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [sym__automatic_semicolon] = ACTIONS(1837), - [sym__ternary_qmark] = ACTIONS(1659), - [sym_html_comment] = ACTIONS(5), - }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_as] = ACTIONS(1841), - [anon_sym_namespace] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_typeof] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_with] = ACTIONS(1841), - [anon_sym_var] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_switch] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_in] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_debugger] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_throw] = ACTIONS(1841), - [anon_sym_case] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1841), - [anon_sym_DOT] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_function] = ACTIONS(1841), - [anon_sym_QMARK_DOT] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1841), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_GT_GT] = ACTIONS(1841), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_LT_EQ] = ACTIONS(1839), - [anon_sym_EQ_EQ] = ACTIONS(1841), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), - [anon_sym_BANG_EQ] = ACTIONS(1841), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_QMARK_QMARK] = ACTIONS(1839), - [anon_sym_instanceof] = ACTIONS(1841), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_delete] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1839), - [sym_number] = ACTIONS(1839), - [sym_private_property_identifier] = ACTIONS(1839), - [sym_this] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_null] = ACTIONS(1841), - [sym_undefined] = ACTIONS(1841), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1841), - [anon_sym_public] = ACTIONS(1841), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_protected] = ACTIONS(1841), - [anon_sym_override] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_any] = ACTIONS(1841), - [anon_sym_number] = ACTIONS(1841), - [anon_sym_boolean] = ACTIONS(1841), - [anon_sym_string] = ACTIONS(1841), - [anon_sym_symbol] = ACTIONS(1841), - [anon_sym_object] = ACTIONS(1841), - [anon_sym_abstract] = ACTIONS(1841), - [anon_sym_satisfies] = ACTIONS(1841), - [anon_sym_interface] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), + [anon_sym_interface] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), [sym__automatic_semicolon] = ACTIONS(1839), - [sym__ternary_qmark] = ACTIONS(1839), + [sym__ternary_qmark] = ACTIONS(1837), [sym_html_comment] = ACTIONS(5), }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), + [STATE(251)] = { + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_export] = ACTIONS(1843), [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), [anon_sym_as] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), + [anon_sym_namespace] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_typeof] = ACTIONS(1843), + [anon_sym_import] = ACTIONS(1843), + [anon_sym_with] = ACTIONS(1843), + [anon_sym_var] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_switch] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_await] = ACTIONS(1843), [anon_sym_in] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_throw] = ACTIONS(1843), + [anon_sym_case] = ACTIONS(1843), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1841), [anon_sym_GT] = ACTIONS(1845), [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1843), - [anon_sym_PIPE_PIPE] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_class] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_QMARK_DOT] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_using] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_AMP3] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1847), [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1843), - [anon_sym_STAR_STAR] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1847), + [anon_sym_STAR_STAR] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1847), [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_QMARK_QMARK] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_QMARK_QMARK] = ACTIONS(1847), [anon_sym_instanceof] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_private_property_identifier] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_get] = ACTIONS(1845), - [anon_sym_set] = ACTIONS(1845), - [anon_sym_declare] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_private] = ACTIONS(1845), - [anon_sym_protected] = ACTIONS(1845), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_object] = ACTIONS(1845), - [anon_sym_abstract] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1841), + [anon_sym_void] = ACTIONS(1843), + [anon_sym_delete] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1841), + [sym_number] = ACTIONS(1841), + [sym_private_property_identifier] = ACTIONS(1841), + [sym_this] = ACTIONS(1843), + [sym_super] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_null] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_readonly] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_declare] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_protected] = ACTIONS(1843), + [anon_sym_override] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_any] = ACTIONS(1843), + [anon_sym_number] = ACTIONS(1843), + [anon_sym_boolean] = ACTIONS(1843), + [anon_sym_string] = ACTIONS(1843), + [anon_sym_symbol] = ACTIONS(1843), + [anon_sym_object] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), [anon_sym_satisfies] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [sym__automatic_semicolon] = ACTIONS(1843), - [sym__ternary_qmark] = ACTIONS(1843), - [sym_html_comment] = ACTIONS(5), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_as] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_in] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1811), - [anon_sym_DOT] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_QMARK_DOT] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_PIPE_PIPE] = ACTIONS(1809), - [anon_sym_GT_GT] = ACTIONS(1811), - [anon_sym_GT_GT_GT] = ACTIONS(1809), - [anon_sym_LT_LT] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_PERCENT] = ACTIONS(1809), - [anon_sym_STAR_STAR] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_LT_EQ] = ACTIONS(1809), - [anon_sym_EQ_EQ] = ACTIONS(1811), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(1809), - [anon_sym_QMARK_QMARK] = ACTIONS(1809), - [anon_sym_instanceof] = ACTIONS(1811), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_private_property_identifier] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_override] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_object] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_satisfies] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [sym__automatic_semicolon] = ACTIONS(1847), - [sym__ternary_qmark] = ACTIONS(1809), - [sym_html_comment] = ACTIONS(5), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1853), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_COMMA] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_typeof] = ACTIONS(1851), - [anon_sym_import] = ACTIONS(1851), - [anon_sym_with] = ACTIONS(1851), - [anon_sym_var] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_in] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_debugger] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_GT] = ACTIONS(1853), - [anon_sym_DOT] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_async] = ACTIONS(1851), - [anon_sym_function] = ACTIONS(1851), - [anon_sym_QMARK_DOT] = ACTIONS(1855), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_GT_GT] = ACTIONS(1853), - [anon_sym_GT_GT_GT] = ACTIONS(1855), - [anon_sym_LT_LT] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1855), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_PERCENT] = ACTIONS(1855), - [anon_sym_STAR_STAR] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(1851), - [anon_sym_LT_EQ] = ACTIONS(1855), - [anon_sym_EQ_EQ] = ACTIONS(1853), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ] = ACTIONS(1853), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), - [anon_sym_GT_EQ] = ACTIONS(1855), - [anon_sym_QMARK_QMARK] = ACTIONS(1855), - [anon_sym_instanceof] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_void] = ACTIONS(1851), - [anon_sym_delete] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1849), - [sym_number] = ACTIONS(1849), - [sym_private_property_identifier] = ACTIONS(1849), - [sym_this] = ACTIONS(1851), - [sym_super] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_null] = ACTIONS(1851), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(1849), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_readonly] = ACTIONS(1851), - [anon_sym_get] = ACTIONS(1851), - [anon_sym_set] = ACTIONS(1851), - [anon_sym_declare] = ACTIONS(1851), - [anon_sym_public] = ACTIONS(1851), - [anon_sym_private] = ACTIONS(1851), - [anon_sym_protected] = ACTIONS(1851), - [anon_sym_override] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_any] = ACTIONS(1851), - [anon_sym_number] = ACTIONS(1851), - [anon_sym_boolean] = ACTIONS(1851), - [anon_sym_string] = ACTIONS(1851), - [anon_sym_symbol] = ACTIONS(1851), - [anon_sym_object] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1851), - [anon_sym_satisfies] = ACTIONS(1853), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [sym__automatic_semicolon] = ACTIONS(1857), - [sym__ternary_qmark] = ACTIONS(1855), - [sym_html_comment] = ACTIONS(5), - }, - [251] = { - [ts_builtin_sym_end] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [sym__automatic_semicolon] = ACTIONS(1849), + [sym__ternary_qmark] = ACTIONS(1847), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(252)] = { + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1855), + [anon_sym_namespace] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_typeof] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1853), + [anon_sym_with] = ACTIONS(1853), + [anon_sym_var] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_debugger] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_case] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_function] = ACTIONS(1853), + [anon_sym_QMARK_DOT] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1853), + [anon_sym_AMP_AMP] = ACTIONS(1857), + [anon_sym_PIPE_PIPE] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1857), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_AMP3] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1857), + [anon_sym_STAR_STAR] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_LT_EQ] = ACTIONS(1857), + [anon_sym_EQ_EQ] = ACTIONS(1855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1857), + [anon_sym_BANG_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1857), + [anon_sym_QMARK_QMARK] = ACTIONS(1857), + [anon_sym_instanceof] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_void] = ACTIONS(1853), + [anon_sym_delete] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym_number] = ACTIONS(1851), + [sym_private_property_identifier] = ACTIONS(1851), + [sym_this] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_null] = ACTIONS(1853), + [sym_undefined] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), + [anon_sym_object] = ACTIONS(1853), + [anon_sym_abstract] = ACTIONS(1853), + [anon_sym_satisfies] = ACTIONS(1855), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [sym__automatic_semicolon] = ACTIONS(1859), + [sym__ternary_qmark] = ACTIONS(1857), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(253)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5183), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5183), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5183), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_mapped_type_clause] = STATE(5912), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_pattern_repeat1] = STATE(4975), [sym_identifier] = ACTIONS(1861), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_COMMA] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_typeof] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_var] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_switch] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_in] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_debugger] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_throw] = ACTIONS(1861), - [anon_sym_case] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_GT] = ACTIONS(1863), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_function] = ACTIONS(1861), - [anon_sym_QMARK_DOT] = ACTIONS(1865), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_using] = ACTIONS(1861), - [anon_sym_AMP_AMP] = ACTIONS(1865), - [anon_sym_PIPE_PIPE] = ACTIONS(1865), - [anon_sym_GT_GT] = ACTIONS(1863), - [anon_sym_GT_GT_GT] = ACTIONS(1865), - [anon_sym_LT_LT] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_STAR_STAR] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_LT_EQ] = ACTIONS(1865), - [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1865), - [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1865), - [anon_sym_GT_EQ] = ACTIONS(1865), - [anon_sym_QMARK_QMARK] = ACTIONS(1865), - [anon_sym_instanceof] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_delete] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1859), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1859), - [sym_number] = ACTIONS(1859), - [sym_private_property_identifier] = ACTIONS(1859), - [sym_this] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_null] = ACTIONS(1861), - [sym_undefined] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_readonly] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_private] = ACTIONS(1861), - [anon_sym_protected] = ACTIONS(1861), - [anon_sym_override] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_any] = ACTIONS(1861), - [anon_sym_number] = ACTIONS(1861), - [anon_sym_boolean] = ACTIONS(1861), - [anon_sym_string] = ACTIONS(1861), - [anon_sym_symbol] = ACTIONS(1861), - [anon_sym_object] = ACTIONS(1861), - [anon_sym_abstract] = ACTIONS(1861), - [anon_sym_satisfies] = ACTIONS(1863), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [sym__automatic_semicolon] = ACTIONS(1867), - [sym__ternary_qmark] = ACTIONS(1865), - [sym_html_comment] = ACTIONS(5), - }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_STAR] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_as] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_namespace] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1867), [anon_sym_COMMA] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_typeof] = ACTIONS(1871), - [anon_sym_import] = ACTIONS(1871), - [anon_sym_with] = ACTIONS(1871), - [anon_sym_var] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1871), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_await] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_debugger] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_GT] = ACTIONS(1871), - [anon_sym_DOT] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(1871), - [anon_sym_QMARK_DOT] = ACTIONS(1869), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1869), - [anon_sym_PIPE_PIPE] = ACTIONS(1869), - [anon_sym_GT_GT] = ACTIONS(1871), - [anon_sym_GT_GT_GT] = ACTIONS(1869), - [anon_sym_LT_LT] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1871), - [anon_sym_CARET] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1871), - [anon_sym_PERCENT] = ACTIONS(1869), - [anon_sym_STAR_STAR] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1871), - [anon_sym_LT_EQ] = ACTIONS(1869), - [anon_sym_EQ_EQ] = ACTIONS(1871), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1869), - [anon_sym_BANG_EQ] = ACTIONS(1871), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1869), - [anon_sym_GT_EQ] = ACTIONS(1869), - [anon_sym_QMARK_QMARK] = ACTIONS(1869), - [anon_sym_instanceof] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1869), - [sym_number] = ACTIONS(1869), - [sym_private_property_identifier] = ACTIONS(1869), - [sym_this] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_undefined] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_readonly] = ACTIONS(1871), - [anon_sym_get] = ACTIONS(1871), - [anon_sym_set] = ACTIONS(1871), - [anon_sym_declare] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_override] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_any] = ACTIONS(1871), - [anon_sym_number] = ACTIONS(1871), - [anon_sym_boolean] = ACTIONS(1871), - [anon_sym_string] = ACTIONS(1871), - [anon_sym_symbol] = ACTIONS(1871), - [anon_sym_object] = ACTIONS(1871), - [anon_sym_abstract] = ACTIONS(1871), - [anon_sym_satisfies] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [sym__automatic_semicolon] = ACTIONS(1869), - [sym__ternary_qmark] = ACTIONS(1869), - [sym_html_comment] = ACTIONS(5), - }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_as] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_COMMA] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_typeof] = ACTIONS(1875), - [anon_sym_import] = ACTIONS(1875), - [anon_sym_with] = ACTIONS(1875), - [anon_sym_var] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_else] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_switch] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_await] = ACTIONS(1875), - [anon_sym_in] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_debugger] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_throw] = ACTIONS(1875), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1877), - [anon_sym_DOT] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_class] = ACTIONS(1875), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1875), - [anon_sym_function] = ACTIONS(1875), - [anon_sym_QMARK_DOT] = ACTIONS(1879), - [anon_sym_new] = ACTIONS(1875), - [anon_sym_using] = ACTIONS(1875), - [anon_sym_AMP_AMP] = ACTIONS(1879), - [anon_sym_PIPE_PIPE] = ACTIONS(1879), - [anon_sym_GT_GT] = ACTIONS(1877), - [anon_sym_GT_GT_GT] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_PERCENT] = ACTIONS(1879), - [anon_sym_STAR_STAR] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1875), - [anon_sym_LT_EQ] = ACTIONS(1879), - [anon_sym_EQ_EQ] = ACTIONS(1877), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ] = ACTIONS(1877), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(1879), - [anon_sym_QMARK_QMARK] = ACTIONS(1879), - [anon_sym_instanceof] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_void] = ACTIONS(1875), - [anon_sym_delete] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1873), - [sym_number] = ACTIONS(1873), - [sym_private_property_identifier] = ACTIONS(1873), - [sym_this] = ACTIONS(1875), - [sym_super] = ACTIONS(1875), - [sym_true] = ACTIONS(1875), - [sym_false] = ACTIONS(1875), - [sym_null] = ACTIONS(1875), - [sym_undefined] = ACTIONS(1875), - [anon_sym_AT] = ACTIONS(1873), - [anon_sym_static] = ACTIONS(1875), - [anon_sym_readonly] = ACTIONS(1875), - [anon_sym_get] = ACTIONS(1875), - [anon_sym_set] = ACTIONS(1875), - [anon_sym_declare] = ACTIONS(1875), - [anon_sym_public] = ACTIONS(1875), - [anon_sym_private] = ACTIONS(1875), - [anon_sym_protected] = ACTIONS(1875), - [anon_sym_override] = ACTIONS(1875), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1875), - [anon_sym_number] = ACTIONS(1875), - [anon_sym_boolean] = ACTIONS(1875), - [anon_sym_string] = ACTIONS(1875), - [anon_sym_symbol] = ACTIONS(1875), - [anon_sym_object] = ACTIONS(1875), - [anon_sym_abstract] = ACTIONS(1875), - [anon_sym_satisfies] = ACTIONS(1877), - [anon_sym_interface] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), - [sym__automatic_semicolon] = ACTIONS(1879), - [sym__ternary_qmark] = ACTIONS(1879), - [sym_html_comment] = ACTIONS(5), - }, - [254] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1877), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1879), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [anon_sym_extends] = ACTIONS(1685), - [anon_sym_PIPE_RBRACE] = ACTIONS(1683), - [sym__automatic_semicolon] = ACTIONS(1683), - [sym_html_comment] = ACTIONS(5), - }, - [255] = { - [sym_import] = STATE(3644), - [sym_variable_declaration] = STATE(309), - [sym_lexical_declaration] = STATE(309), - [sym_empty_statement] = STATE(309), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(2278), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(4935), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(4935), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(4935), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5756), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1354), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_get] = ACTIONS(1863), + [anon_sym_set] = ACTIONS(1863), + [anon_sym_declare] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_protected] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_any] = ACTIONS(1863), + [anon_sym_number] = ACTIONS(1863), + [anon_sym_boolean] = ACTIONS(1863), + [anon_sym_string] = ACTIONS(1863), + [anon_sym_symbol] = ACTIONS(1863), + [anon_sym_object] = ACTIONS(1863), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(254)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_as] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_in] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_QMARK_DOT] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_AMP_AMP] = ACTIONS(1779), + [anon_sym_PIPE_PIPE] = ACTIONS(1779), + [anon_sym_GT_GT] = ACTIONS(1781), + [anon_sym_GT_GT_GT] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(1779), + [anon_sym_AMP3] = ACTIONS(1781), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_PERCENT] = ACTIONS(1779), + [anon_sym_STAR_STAR] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1779), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1779), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1779), + [anon_sym_QMARK_QMARK] = ACTIONS(1779), + [anon_sym_instanceof] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_satisfies] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym__automatic_semicolon] = ACTIONS(1779), + [sym__ternary_qmark] = ACTIONS(1779), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(255)] = { + [sym_import] = STATE(3552), + [sym_variable_declaration] = STATE(312), + [sym_lexical_declaration] = STATE(312), + [sym_empty_statement] = STATE(312), + [sym_parenthesized_expression] = STATE(1347), + [sym_expression] = STATE(2348), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5163), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5163), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1347), + [sym_subscript_expression] = STATE(1347), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5163), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5980), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1347), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1881), [anon_sym_export] = ACTIONS(1883), [anon_sym_type] = ACTIONS(1883), [anon_sym_namespace] = ACTIONS(1885), [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_var] = ACTIONS(1889), [anon_sym_let] = ACTIONS(1891), [anon_sym_const] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1901), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1883), @@ -55644,95 +55849,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1883), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(3644), - [sym_variable_declaration] = STATE(315), - [sym_lexical_declaration] = STATE(315), - [sym_empty_statement] = STATE(315), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(2349), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(4935), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(4935), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(4935), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5948), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1354), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(256)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(5532), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4711), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4756), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(257)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_RBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(258)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2545), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5183), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5183), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5183), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1906), + [anon_sym_export] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1908), + [anon_sym_namespace] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1912), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1879), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_readonly] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_declare] = ACTIONS(1908), + [anon_sym_public] = ACTIONS(1908), + [anon_sym_private] = ACTIONS(1908), + [anon_sym_protected] = ACTIONS(1908), + [anon_sym_override] = ACTIONS(1908), + [anon_sym_module] = ACTIONS(1908), + [anon_sym_any] = ACTIONS(1908), + [anon_sym_number] = ACTIONS(1908), + [anon_sym_boolean] = ACTIONS(1908), + [anon_sym_string] = ACTIONS(1908), + [anon_sym_symbol] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1908), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(259)] = { + [sym_import] = STATE(3552), + [sym_variable_declaration] = STATE(308), + [sym_lexical_declaration] = STATE(308), + [sym_empty_statement] = STATE(308), + [sym_parenthesized_expression] = STATE(1347), + [sym_expression] = STATE(2334), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5163), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5163), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1347), + [sym_subscript_expression] = STATE(1347), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5163), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5951), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1347), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1881), [anon_sym_export] = ACTIONS(1883), [anon_sym_type] = ACTIONS(1883), [anon_sym_namespace] = ACTIONS(1885), [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_var] = ACTIONS(1889), [anon_sym_let] = ACTIONS(1891), [anon_sym_const] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1901), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1883), @@ -55753,95 +56285,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1883), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(3644), - [sym_variable_declaration] = STATE(306), - [sym_lexical_declaration] = STATE(306), - [sym_empty_statement] = STATE(306), - [sym_parenthesized_expression] = STATE(1354), - [sym_expression] = STATE(2338), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(4935), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(4935), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1354), - [sym_subscript_expression] = STATE(1354), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(4935), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5977), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1354), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(260)] = { + [sym_import] = STATE(3552), + [sym_variable_declaration] = STATE(307), + [sym_lexical_declaration] = STATE(307), + [sym_empty_statement] = STATE(307), + [sym_parenthesized_expression] = STATE(1347), + [sym_expression] = STATE(2294), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5163), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5163), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1347), + [sym_subscript_expression] = STATE(1347), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5163), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5846), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1347), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1881), [anon_sym_export] = ACTIONS(1883), [anon_sym_type] = ACTIONS(1883), [anon_sym_namespace] = ACTIONS(1885), [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_var] = ACTIONS(1889), [anon_sym_let] = ACTIONS(1891), [anon_sym_const] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1897), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1901), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1883), @@ -55862,532 +56394,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1883), [sym_html_comment] = ACTIONS(5), }, - [258] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5183), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5183), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1370), - [sym_subscript_expression] = STATE(1370), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5183), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1370), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_namespace] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1777), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1781), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1909), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1911), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1789), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_readonly] = ACTIONS(1905), - [anon_sym_get] = ACTIONS(1905), - [anon_sym_set] = ACTIONS(1905), - [anon_sym_declare] = ACTIONS(1905), - [anon_sym_public] = ACTIONS(1905), - [anon_sym_private] = ACTIONS(1905), - [anon_sym_protected] = ACTIONS(1905), - [anon_sym_override] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_any] = ACTIONS(1905), - [anon_sym_number] = ACTIONS(1905), - [anon_sym_boolean] = ACTIONS(1905), - [anon_sym_string] = ACTIONS(1905), - [anon_sym_symbol] = ACTIONS(1905), - [anon_sym_object] = ACTIONS(1905), - [sym_html_comment] = ACTIONS(5), - }, - [259] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5492), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5139), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5140), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(261)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(5532), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4711), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4756), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), [anon_sym_RBRACK] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [260] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5492), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5139), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5140), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1623), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [261] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [262] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_assignment_pattern] = STATE(5112), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4530), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_pattern_repeat1] = STATE(5134), - [sym_identifier] = ACTIONS(726), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(262)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_RBRACK] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), @@ -56407,96 +56612,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_assignment_pattern] = STATE(4901), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4513), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_pattern_repeat1] = STATE(4923), - [sym_identifier] = ACTIONS(726), + [STATE(263)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_assignment_pattern] = STATE(4854), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4471), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_pattern_repeat1] = STATE(4858), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(1779), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_RBRACK] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_RBRACK] = ACTIONS(1920), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), @@ -56516,204 +56721,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5492), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_spread_element] = STATE(5139), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5140), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(264)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(5532), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4711), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4756), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1913), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_RBRACK] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1623), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [265] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_assignment_pattern] = STATE(5492), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5140), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(265)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_assignment_pattern] = STATE(5532), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4756), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(766), [anon_sym_COMMA] = ACTIONS(1926), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), [anon_sym_readonly] = ACTIONS(113), @@ -56733,93 +56938,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2213), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4723), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4724), + [STATE(266)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2253), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4981), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(5005), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_COMMA] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -56840,93 +57045,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2161), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4674), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4678), + [STATE(267)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(268)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(269)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2180), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4646), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4647), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_COMMA] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -56947,25 +57366,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [268] = { + [STATE(270)] = { [sym_identifier] = ACTIONS(1936), [anon_sym_export] = ACTIONS(1936), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(1936), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(1936), [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(126), [anon_sym_typeof] = ACTIONS(1936), [anon_sym_import] = ACTIONS(1936), [anon_sym_let] = ACTIONS(1936), [anon_sym_BANG] = ACTIONS(1936), [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(126), [anon_sym_await] = ACTIONS(1936), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), + [anon_sym_COLON] = ACTIONS(126), [anon_sym_yield] = ACTIONS(1936), [anon_sym_LBRACK] = ACTIONS(1938), [anon_sym_GT] = ACTIONS(120), @@ -56975,32 +57394,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1936), [anon_sym_async] = ACTIONS(1936), [anon_sym_function] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1936), [anon_sym_using] = ACTIONS(1936), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(1936), @@ -57009,12 +57428,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1936), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), [anon_sym_TILDE] = ACTIONS(1938), @@ -57037,7 +57456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1936), [anon_sym_get] = ACTIONS(1936), [anon_sym_set] = ACTIONS(1936), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(1936), [anon_sym_public] = ACTIONS(1936), [anon_sym_private] = ACTIONS(1936), @@ -57051,310 +57470,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1936), [anon_sym_object] = ACTIONS(1936), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [269] = { - [sym_identifier] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_EQ] = ACTIONS(220), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_typeof] = ACTIONS(1940), - [anon_sym_import] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_await] = ACTIONS(1940), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_function] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_void] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1942), - [sym_number] = ACTIONS(1942), - [sym_private_property_identifier] = ACTIONS(1942), - [sym_this] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_object] = ACTIONS(1940), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [270] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [271] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2194), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(5167), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(5168), + [STATE(271)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2128), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(5195), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(5196), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_COMMA] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1944), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -57375,414 +57580,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [272] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [273] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [274] = { - [sym_identifier] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_EQ] = ACTIONS(117), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_typeof] = ACTIONS(1940), - [anon_sym_import] = ACTIONS(1940), - [anon_sym_let] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(126), - [anon_sym_await] = ACTIONS(1940), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_yield] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_async] = ACTIONS(1940), - [anon_sym_function] = ACTIONS(1940), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_void] = ACTIONS(1940), - [anon_sym_delete] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1942), - [sym_number] = ACTIONS(1942), - [sym_private_property_identifier] = ACTIONS(1942), - [sym_this] = ACTIONS(1940), - [sym_super] = ACTIONS(1940), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), - [anon_sym_QMARK] = ACTIONS(750), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_object] = ACTIONS(1940), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [275] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(5139), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(272)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2066), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4714), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4715), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -57803,93 +57687,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [276] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), + [STATE(273)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), [anon_sym_export] = ACTIONS(1389), [anon_sym_type] = ACTIONS(1389), [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1655), [anon_sym_typeof] = ACTIONS(1411), - [anon_sym_import] = ACTIONS(699), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1397), [anon_sym_yield] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), [anon_sym_using] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), [anon_sym_PLUS] = ACTIONS(1411), [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1395), [anon_sym_void] = ACTIONS(1411), [anon_sym_delete] = ACTIONS(1411), [anon_sym_PLUS_PLUS] = ACTIONS(1413), [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1415), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1389), [anon_sym_readonly] = ACTIONS(1389), @@ -57907,203 +57791,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1389), [anon_sym_symbol] = ACTIONS(1389), [anon_sym_object] = ACTIONS(1389), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [277] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), - [anon_sym_extends] = ACTIONS(1685), + [anon_sym_extends] = ACTIONS(1657), [sym_html_comment] = ACTIONS(5), }, - [278] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2204), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4641), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4642), + [STATE(274)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2139), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4732), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4733), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_COMMA] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -58124,200 +57901,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [STATE(275)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [280] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2209), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(276)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), [sym_member_expression] = STATE(1262), [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4675), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4087), + [sym_rest_pattern] = STATE(3616), [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4676), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(315), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(1946), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1948), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(277)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2192), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4608), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4945), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_COMMA] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1950), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -58338,74 +58222,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(278)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_COMMA] = ACTIONS(1683), + [anon_sym_COMMA] = ACTIONS(1655), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_GT] = ACTIONS(1683), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), @@ -58426,112 +58310,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [anon_sym_extends] = ACTIONS(1685), - [sym_html_comment] = ACTIONS(5), - }, - [282] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2076), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4624), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4640), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(279)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(280)] = { + [sym_identifier] = ACTIONS(1954), + [anon_sym_export] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1954), + [anon_sym_import] = ACTIONS(1954), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1954), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_class] = ACTIONS(1954), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_function] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_using] = ACTIONS(1954), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1956), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_SLASH] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1956), + [anon_sym_void] = ACTIONS(1954), + [anon_sym_delete] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1956), + [anon_sym_DASH_DASH] = ACTIONS(1956), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1956), + [sym_number] = ACTIONS(1956), + [sym_private_property_identifier] = ACTIONS(1956), + [sym_this] = ACTIONS(1954), + [sym_super] = ACTIONS(1954), + [sym_true] = ACTIONS(1954), + [sym_false] = ACTIONS(1954), + [sym_null] = ACTIONS(1954), + [sym_undefined] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_readonly] = ACTIONS(1954), + [anon_sym_get] = ACTIONS(1954), + [anon_sym_set] = ACTIONS(1954), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(1954), + [anon_sym_public] = ACTIONS(1954), + [anon_sym_private] = ACTIONS(1954), + [anon_sym_protected] = ACTIONS(1954), + [anon_sym_override] = ACTIONS(1954), + [anon_sym_module] = ACTIONS(1954), + [anon_sym_any] = ACTIONS(1954), + [anon_sym_number] = ACTIONS(1954), + [anon_sym_boolean] = ACTIONS(1954), + [anon_sym_string] = ACTIONS(1954), + [anon_sym_symbol] = ACTIONS(1954), + [anon_sym_object] = ACTIONS(1954), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(281)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4711), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_COMMA] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1958), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -58552,93 +58650,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2212), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(4707), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [aux_sym_array_repeat1] = STATE(4708), + [STATE(282)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2342), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4679), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4680), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_COMMA] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(1954), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1960), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), + [anon_sym_using] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -58659,132 +58757,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4364), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_accessibility_modifier] = STATE(304), - [sym_override_modifier] = STATE(312), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(1274), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1958), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(1960), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(806), - [anon_sym_private] = ACTIONS(806), - [anon_sym_protected] = ACTIONS(806), - [anon_sym_override] = ACTIONS(808), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [sym_html_comment] = ACTIONS(5), - }, - [285] = { + [STATE(283)] = { [sym_identifier] = ACTIONS(1936), [anon_sym_export] = ACTIONS(1936), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(1936), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(1936), [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(222), [anon_sym_typeof] = ACTIONS(1936), [anon_sym_import] = ACTIONS(1936), [anon_sym_let] = ACTIONS(1936), [anon_sym_BANG] = ACTIONS(1936), [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_RPAREN] = ACTIONS(222), [anon_sym_await] = ACTIONS(1936), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(222), [anon_sym_yield] = ACTIONS(1936), [anon_sym_LBRACK] = ACTIONS(1938), [anon_sym_GT] = ACTIONS(120), @@ -58794,32 +58785,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1936), [anon_sym_async] = ACTIONS(1936), [anon_sym_function] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1936), [anon_sym_using] = ACTIONS(1936), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(1936), @@ -58828,12 +58819,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(1936), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), [anon_sym_TILDE] = ACTIONS(1938), @@ -58856,7 +58847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1936), [anon_sym_get] = ACTIONS(1936), [anon_sym_set] = ACTIONS(1936), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(1936), [anon_sym_public] = ACTIONS(1936), [anon_sym_private] = ACTIONS(1936), @@ -58870,530 +58861,532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1936), [anon_sym_object] = ACTIONS(1936), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [286] = { - [sym_import] = STATE(3617), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1962), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(284)] = { + [sym_identifier] = ACTIONS(1954), + [anon_sym_export] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1954), + [anon_sym_import] = ACTIONS(1954), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(1954), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_class] = ACTIONS(1954), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_function] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_using] = ACTIONS(1954), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1956), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_SLASH] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1956), + [anon_sym_void] = ACTIONS(1954), + [anon_sym_delete] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1956), + [anon_sym_DASH_DASH] = ACTIONS(1956), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1956), + [sym_number] = ACTIONS(1956), + [sym_private_property_identifier] = ACTIONS(1956), + [sym_this] = ACTIONS(1954), + [sym_super] = ACTIONS(1954), + [sym_true] = ACTIONS(1954), + [sym_false] = ACTIONS(1954), + [sym_null] = ACTIONS(1954), + [sym_undefined] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_readonly] = ACTIONS(1954), + [anon_sym_get] = ACTIONS(1954), + [anon_sym_set] = ACTIONS(1954), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(1954), + [anon_sym_public] = ACTIONS(1954), + [anon_sym_private] = ACTIONS(1954), + [anon_sym_protected] = ACTIONS(1954), + [anon_sym_override] = ACTIONS(1954), + [anon_sym_module] = ACTIONS(1954), + [anon_sym_any] = ACTIONS(1954), + [anon_sym_number] = ACTIONS(1954), + [anon_sym_boolean] = ACTIONS(1954), + [anon_sym_string] = ACTIONS(1954), + [anon_sym_symbol] = ACTIONS(1954), + [anon_sym_object] = ACTIONS(1954), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(285)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(1964), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [anon_sym_extends] = ACTIONS(1657), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(3607), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(286)] = { + [sym_import] = STATE(3659), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1962), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1964), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(287)] = { + [sym_import] = STATE(3659), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1966), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(3607), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), + [STATE(288)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), [sym_member_expression] = STATE(1262), [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1970), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(1972), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [289] = { - [sym_import] = STATE(3636), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1974), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [290] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_assignment_pattern] = STATE(5398), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5047), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_override_modifier] = STATE(306), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1970), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -59403,92 +59396,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2176), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(5665), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5665), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), + [STATE(289)] = { + [sym_import] = STATE(3757), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1972), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1964), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -59509,198 +59502,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [292] = { - [sym_import] = STATE(3587), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1980), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [STATE(290)] = { + [sym_import] = STATE(3659), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1982), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [293] = { - [sym_import] = STATE(3607), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(291)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(5380), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(5009), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(292)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2249), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(5907), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5907), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(1982), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -59721,410 +59820,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [294] = { - [sym_import] = STATE(3607), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1986), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [295] = { - [sym_import] = STATE(3587), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [STATE(293)] = { + [sym_import] = STATE(3659), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1980), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1972), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1982), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [296] = { - [sym_import] = STATE(3587), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1990), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(294)] = { + [sym_import] = STATE(3751), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1984), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2148), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_spread_element] = STATE(5736), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5736), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), + [STATE(295)] = { + [sym_import] = STATE(3757), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -60145,411 +60138,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [298] = { - [sym_import] = STATE(3587), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1994), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [299] = { - [sym_import] = STATE(3587), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1996), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [300] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_override_modifier] = STATE(310), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(798), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(1998), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(808), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [sym_html_comment] = ACTIONS(5), - }, - [301] = { - [sym_import] = STATE(3684), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(2000), + [STATE(296)] = { + [sym_import] = STATE(3757), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1988), [anon_sym_export] = ACTIONS(1389), [anon_sym_type] = ACTIONS(1389), [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1411), - [anon_sym_import] = ACTIONS(699), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1397), [anon_sym_yield] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), [anon_sym_using] = ACTIONS(1405), [anon_sym_PLUS] = ACTIONS(1411), [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1395), [anon_sym_void] = ACTIONS(1411), [anon_sym_delete] = ACTIONS(1411), [anon_sym_PLUS_PLUS] = ACTIONS(1413), [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1415), - [sym_this] = ACTIONS(1964), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1389), [anon_sym_readonly] = ACTIONS(1389), @@ -60569,92 +60244,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_import] = STATE(3655), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym__type_query_member_expression] = STATE(2887), - [sym__type_query_subscript_expression] = STATE(2883), - [sym__type_query_call_expression] = STATE(3099), - [sym__type_query_instantiation_expression] = STATE(3239), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2002), + [STATE(297)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2281), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(5712), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5712), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(2004), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -60675,409 +60350,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3596), - [sym_assignment_pattern] = STATE(5398), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3596), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3596), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(5047), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1617), - [anon_sym_export] = ACTIONS(603), - [anon_sym_type] = ACTIONS(603), - [anon_sym_namespace] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(625), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1619), - [anon_sym_using] = ACTIONS(629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1623), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(603), - [anon_sym_readonly] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [anon_sym_declare] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_override] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_any] = ACTIONS(603), - [anon_sym_number] = ACTIONS(603), - [anon_sym_boolean] = ACTIONS(603), - [anon_sym_string] = ACTIONS(603), - [anon_sym_symbol] = ACTIONS(603), - [anon_sym_object] = ACTIONS(603), - [sym_html_comment] = ACTIONS(5), - }, - [304] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4299), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_override_modifier] = STATE(308), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2006), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(808), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), - [sym_html_comment] = ACTIONS(5), - }, - [305] = { - [sym_import] = STATE(3684), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym__type_query_member_expression] = STATE(2831), - [sym__type_query_subscript_expression] = STATE(2830), - [sym__type_query_call_expression] = STATE(2879), - [sym__type_query_instantiation_expression] = STATE(2972), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(2010), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [STATE(298)] = { + [sym_import] = STATE(3647), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1992), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(1964), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(1994), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [306] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(326), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2347), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5905), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(299)] = { + [sym_import] = STATE(3592), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2887), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(3082), + [sym__type_query_instantiation_expression] = STATE(3205), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1996), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1998), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -61098,207 +60562,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [307] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2027), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5301), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym__automatic_semicolon] = ACTIONS(2012), - [sym_html_comment] = ACTIONS(5), - }, - [308] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4151), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), + [STATE(300)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4053), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_override_modifier] = STATE(316), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2014), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2000), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2016), + [anon_sym_readonly] = ACTIONS(2002), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), [anon_sym_public] = ACTIONS(113), [anon_sym_private] = ACTIONS(113), [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), + [anon_sym_override] = ACTIONS(852), [anon_sym_module] = ACTIONS(113), [anon_sym_any] = ACTIONS(113), [anon_sym_number] = ACTIONS(113), @@ -61308,91 +60668,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(318), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5766), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), + [STATE(301)] = { + [sym_import] = STATE(3757), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2004), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1982), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -61413,95 +60774,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4252), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), + [STATE(302)] = { + [sym_import] = STATE(3690), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(2006), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(1994), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(303)] = { + [sym_import] = STATE(3647), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(2008), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1994), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(304)] = { + [sym_import] = STATE(3659), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2010), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(305)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_assignment_pattern] = STATE(5380), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(5009), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(796), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2018), + [anon_sym_readonly] = ACTIONS(113), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), @@ -61518,91 +61198,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(317), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2201), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), + [STATE(306)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), [sym_member_expression] = STATE(1262), [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5752), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(3974), + [sym_rest_pattern] = STATE(3616), [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(790), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2012), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(307)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(323), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2081), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5976), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -61623,196 +61408,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4300), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), - [anon_sym_export] = ACTIONS(113), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(2020), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [STATE(308)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(327), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2169), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5674), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(2022), - [anon_sym_get] = ACTIONS(113), - [anon_sym_set] = ACTIONS(113), - [anon_sym_declare] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_protected] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_any] = ACTIONS(113), - [anon_sym_number] = ACTIONS(113), - [anon_sym_boolean] = ACTIONS(113), - [anon_sym_string] = ACTIONS(113), - [anon_sym_symbol] = ACTIONS(113), - [anon_sym_object] = ACTIONS(113), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [313] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(324), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2300), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5689), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(309)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(326), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2171), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5692), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -61833,95 +61618,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3631), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3631), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3631), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_pattern] = STATE(4302), - [sym_rest_pattern] = STATE(3626), - [sym_non_null_expression] = STATE(1265), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(726), + [STATE(310)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1931), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5565), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym__automatic_semicolon] = ACTIONS(2014), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(311)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(113), [anon_sym_type] = ACTIONS(113), [anon_sym_namespace] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(736), - [anon_sym_using] = ACTIONS(162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(798), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(748), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(113), - [anon_sym_readonly] = ACTIONS(1998), + [anon_sym_readonly] = ACTIONS(1970), [anon_sym_get] = ACTIONS(113), [anon_sym_set] = ACTIONS(113), [anon_sym_declare] = ACTIONS(113), @@ -61938,91 +61828,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(113), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(322), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2299), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5671), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(312)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(319), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2308), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5908), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62043,91 +61933,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_import] = STATE(3644), - [sym_empty_statement] = STATE(328), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2348), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5908), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(313)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(318), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2298), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5690), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_SEMI] = ACTIONS(43), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62148,90 +62038,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2289), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), + [STATE(314)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(321), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2310), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5911), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(315)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), [sym_member_expression] = STATE(1262), [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5824), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4058), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2016), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(316)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4243), + [sym_rest_pattern] = STATE(3616), [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2020), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(317)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2293), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5963), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62252,90 +62457,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2198), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5607), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(318)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2317), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5606), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62356,90 +62561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2287), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5818), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(319)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2283), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5858), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62460,90 +62665,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2345), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5880), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(320)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2286), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5862), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(2030), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62564,194 +62769,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1415), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5083), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5083), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1415), - [sym_subscript_expression] = STATE(1415), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5083), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1415), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2032), - [anon_sym_export] = ACTIONS(2034), - [anon_sym_type] = ACTIONS(2034), - [anon_sym_namespace] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_var] = ACTIONS(2038), - [anon_sym_let] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2044), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2046), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_readonly] = ACTIONS(2034), - [anon_sym_get] = ACTIONS(2034), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_declare] = ACTIONS(2034), - [anon_sym_public] = ACTIONS(2034), - [anon_sym_private] = ACTIONS(2034), - [anon_sym_protected] = ACTIONS(2034), - [anon_sym_override] = ACTIONS(2034), - [anon_sym_module] = ACTIONS(2034), - [anon_sym_any] = ACTIONS(2034), - [anon_sym_number] = ACTIONS(2034), - [anon_sym_boolean] = ACTIONS(2034), - [anon_sym_string] = ACTIONS(2034), - [anon_sym_symbol] = ACTIONS(2034), - [anon_sym_object] = ACTIONS(2034), - [sym_html_comment] = ACTIONS(5), - }, - [322] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2230), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5751), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(321)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2287), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5864), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2050), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62772,90 +62873,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [323] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2232), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5800), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(322)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2289), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5867), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62876,90 +62977,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [324] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2233), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5810), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(323)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2234), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5602), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2054), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -62980,90 +63081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [325] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2235), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5840), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(324)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2268), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5809), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2038), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63084,90 +63185,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [326] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2340), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5855), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(325)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2229), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5734), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2058), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63188,90 +63289,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [327] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2342), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5859), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(326)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2269), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5812), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2042), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63292,90 +63393,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2343), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5861), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(327)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2241), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5761), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63396,90 +63497,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [329] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2344), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5864), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(328)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1414), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5062), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5062), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1414), + [sym_subscript_expression] = STATE(1414), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5062), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1414), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(2048), + [anon_sym_type] = ACTIONS(2048), + [anon_sym_namespace] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(2052), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2058), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2060), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_readonly] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(2048), + [anon_sym_set] = ACTIONS(2048), + [anon_sym_declare] = ACTIONS(2048), + [anon_sym_public] = ACTIONS(2048), + [anon_sym_private] = ACTIONS(2048), + [anon_sym_protected] = ACTIONS(2048), + [anon_sym_override] = ACTIONS(2048), + [anon_sym_module] = ACTIONS(2048), + [anon_sym_any] = ACTIONS(2048), + [anon_sym_number] = ACTIONS(2048), + [anon_sym_boolean] = ACTIONS(2048), + [anon_sym_string] = ACTIONS(2048), + [anon_sym_symbol] = ACTIONS(2048), + [anon_sym_object] = ACTIONS(2048), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(329)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2299), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5844), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63500,162 +63705,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [330] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2244), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [331] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2199), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1767), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(330)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2071), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1823), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -63664,7 +63766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -63688,107 +63790,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [332] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5584), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(331)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_mapped_type_clause] = STATE(5834), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2074), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2076), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_readonly] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(2070), + [anon_sym_set] = ACTIONS(2070), + [anon_sym_declare] = ACTIONS(2070), + [anon_sym_public] = ACTIONS(2070), + [anon_sym_private] = ACTIONS(2070), + [anon_sym_protected] = ACTIONS(2070), + [anon_sym_override] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_any] = ACTIONS(2070), + [anon_sym_number] = ACTIONS(2070), + [anon_sym_boolean] = ACTIONS(2070), + [anon_sym_string] = ACTIONS(2070), + [anon_sym_symbol] = ACTIONS(2070), + [anon_sym_object] = ACTIONS(2070), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(332)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2219), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym__extends_clause_single] = STATE(5116), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(333)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5822), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -63809,59 +64117,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [333] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2096), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1833), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(334)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2204), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5802), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(335)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1838), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -63870,7 +64281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -63894,107 +64305,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [334] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2336), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5845), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(336)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2270), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5646), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64015,89 +64426,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [335] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2337), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5847), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(337)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2271), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5648), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64118,89 +64529,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [336] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2059), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5851), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(338)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2277), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5651), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64221,89 +64632,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [337] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2339), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5856), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(339)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2278), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5656), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64324,89 +64735,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [338] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2341), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5862), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(340)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2291), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5664), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64427,501 +64838,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [339] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_mapped_type_clause] = STATE(5937), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2070), - [anon_sym_export] = ACTIONS(2072), - [anon_sym_type] = ACTIONS(2072), - [anon_sym_namespace] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2076), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_readonly] = ACTIONS(2072), - [anon_sym_get] = ACTIONS(2072), - [anon_sym_set] = ACTIONS(2072), - [anon_sym_declare] = ACTIONS(2072), - [anon_sym_public] = ACTIONS(2072), - [anon_sym_private] = ACTIONS(2072), - [anon_sym_protected] = ACTIONS(2072), - [anon_sym_override] = ACTIONS(2072), - [anon_sym_module] = ACTIONS(2072), - [anon_sym_any] = ACTIONS(2072), - [anon_sym_number] = ACTIONS(2072), - [anon_sym_boolean] = ACTIONS(2072), - [anon_sym_string] = ACTIONS(2072), - [anon_sym_symbol] = ACTIONS(2072), - [anon_sym_object] = ACTIONS(2072), - [sym_html_comment] = ACTIONS(5), - }, - [340] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2096), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2150), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), + [STATE(341)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1951), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5281), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [341] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1851), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5786), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [342] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2226), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2159), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(342)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [343] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2163), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5640), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(343)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1771), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5811), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -64942,192 +65147,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [344] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2199), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), + [STATE(344)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2069), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2190), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [345] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1623), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(345)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2196), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5765), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -65148,501 +65353,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [346] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2098), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2180), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), + [STATE(346)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2071), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2250), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [347] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2100), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2181), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(347)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2239), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2260), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [348] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2104), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2182), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(348)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2072), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2261), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [349] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2028), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_sequence_expression] = STATE(5341), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(349)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2201), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2262), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [350] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2186), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5758), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(350)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2267), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5766), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -65663,89 +65868,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [351] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2107), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5677), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(351)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1616), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -65766,908 +65971,805 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [352] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2062), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym__extends_clause_single] = STATE(4769), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [353] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2486), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), + [STATE(352)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [354] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(353)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [355] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(354)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [356] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2508), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(355)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [357] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(356)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [358] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(357)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [359] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1656), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(358)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_mapped_type_clause] = STATE(5912), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2082), + [anon_sym_export] = ACTIONS(2084), + [anon_sym_type] = ACTIONS(2084), + [anon_sym_namespace] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2088), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_readonly] = ACTIONS(2084), + [anon_sym_get] = ACTIONS(2084), + [anon_sym_set] = ACTIONS(2084), + [anon_sym_declare] = ACTIONS(2084), + [anon_sym_public] = ACTIONS(2084), + [anon_sym_private] = ACTIONS(2084), + [anon_sym_protected] = ACTIONS(2084), + [anon_sym_override] = ACTIONS(2084), + [anon_sym_module] = ACTIONS(2084), + [anon_sym_any] = ACTIONS(2084), + [anon_sym_number] = ACTIONS(2084), + [anon_sym_boolean] = ACTIONS(2084), + [anon_sym_string] = ACTIONS(2084), + [anon_sym_symbol] = ACTIONS(2084), + [anon_sym_object] = ACTIONS(2084), [sym_html_comment] = ACTIONS(5), }, - [360] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2096), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(359)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1788), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1189), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -66675,102 +66777,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [361] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2226), - [sym_parenthesized_expression] = STATE(1335), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(360)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2069), + [sym_parenthesized_expression] = STATE(1341), [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1189), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -66778,102 +66880,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [362] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2199), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1803), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(361)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2071), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1189), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -66881,102 +66983,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [363] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2098), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1769), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(362)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2239), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1189), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -66984,102 +67086,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [364] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2100), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(363)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2072), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1822), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1189), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -67087,102 +67189,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [365] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2104), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(364)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2201), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1824), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1189), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -67190,108 +67292,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(365)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2239), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1784), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(366)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2072), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1759), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(367)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1633), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [366] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2248), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(368)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2280), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2078), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -67311,90 +67722,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [367] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2261), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(369)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2085), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2078), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -67414,90 +67825,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2263), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(370)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2157), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5900), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(371)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2185), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2078), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -67517,90 +68031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2264), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(372)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2193), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2078), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -67620,1222 +68134,913 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2283), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5777), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [371] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1687), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [STATE(373)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2199), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2414), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [373] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1406), + [STATE(374)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [374] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2431), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(375)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2422), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [375] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(376)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [376] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(377)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [377] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2435), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(378)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [378] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_mapped_type_clause] = STATE(5583), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2082), - [anon_sym_export] = ACTIONS(2084), - [anon_sym_type] = ACTIONS(2084), - [anon_sym_namespace] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2088), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2090), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_readonly] = ACTIONS(2084), - [anon_sym_get] = ACTIONS(2084), - [anon_sym_set] = ACTIONS(2084), - [anon_sym_declare] = ACTIONS(2084), - [anon_sym_public] = ACTIONS(2084), - [anon_sym_private] = ACTIONS(2084), - [anon_sym_protected] = ACTIONS(2084), - [anon_sym_override] = ACTIONS(2084), - [anon_sym_module] = ACTIONS(2084), - [anon_sym_any] = ACTIONS(2084), - [anon_sym_number] = ACTIONS(2084), - [anon_sym_boolean] = ACTIONS(2084), - [anon_sym_string] = ACTIONS(2084), - [anon_sym_symbol] = ACTIONS(2084), - [anon_sym_object] = ACTIONS(2084), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [379] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1715), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [STATE(379)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [380] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1720), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), + [STATE(380)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2201), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [381] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(381)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1653), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -68856,89 +69061,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [382] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(382)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), [anon_sym_LBRACE] = ACTIONS(2080), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -68959,89 +69164,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [383] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(383)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), [anon_sym_LBRACE] = ACTIONS(2080), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -69062,89 +69267,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [384] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2463), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(384)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), [anon_sym_LBRACE] = ACTIONS(2080), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -69165,89 +69370,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [385] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(385)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2466), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), [anon_sym_LBRACE] = ACTIONS(2080), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -69268,89 +69473,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [386] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2466), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(386)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2467), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), [anon_sym_LBRACE] = ACTIONS(2080), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -69371,89 +69576,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [387] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2467), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(387)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), [anon_sym_LBRACE] = ACTIONS(2080), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -69474,1016 +69679,1119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [388] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2098), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [STATE(388)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1663), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [389] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2100), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(389)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1666), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [390] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2104), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(390)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1610), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(391)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2219), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym__extends_clause_single] = STATE(4566), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [391] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1622), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2030), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(392)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1993), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [392] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1655), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2034), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [STATE(393)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [393] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2047), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [STATE(394)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2011), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [394] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1714), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2049), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [STATE(395)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2013), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1719), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2050), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [STATE(396)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2014), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2051), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [STATE(397)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [397] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2153), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5792), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(398)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2176), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5583), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -70504,162 +70812,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [398] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2062), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym__extends_clause_single] = STATE(4474), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [STATE(399)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2300), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5698), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [399] = { - [sym_import] = STATE(3555), - [sym_statement_block] = STATE(2226), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(400)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2069), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -70668,7 +70976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -70692,210 +71000,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [400] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2144), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5894), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [401] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2195), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5678), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(401)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2129), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5861), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -70916,89 +71121,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [402] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2196), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5749), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(402)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2068), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5964), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -71019,89 +71224,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [403] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2197), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_sequence_expression] = STATE(5812), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(403)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2150), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5856), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -71122,90 +71327,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [404] = { - [sym_import] = STATE(3644), - [sym_statement_block] = STATE(1721), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2265), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(404)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2182), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2078), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -71225,364 +71430,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [405] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [406] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(3639), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(3639), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1273), - [sym_subscript_expression] = STATE(1273), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(3639), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1273), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2092), - [anon_sym_export] = ACTIONS(2094), - [anon_sym_type] = ACTIONS(2094), - [anon_sym_namespace] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2098), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2100), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2102), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_readonly] = ACTIONS(2094), - [anon_sym_get] = ACTIONS(2094), - [anon_sym_set] = ACTIONS(2094), - [anon_sym_declare] = ACTIONS(2094), - [anon_sym_public] = ACTIONS(2094), - [anon_sym_private] = ACTIONS(2094), - [anon_sym_protected] = ACTIONS(2094), - [anon_sym_override] = ACTIONS(2094), - [anon_sym_module] = ACTIONS(2094), - [anon_sym_any] = ACTIONS(2094), - [anon_sym_number] = ACTIONS(2094), - [anon_sym_boolean] = ACTIONS(2094), - [anon_sym_string] = ACTIONS(2094), - [anon_sym_symbol] = ACTIONS(2094), - [anon_sym_object] = ACTIONS(2094), - [sym_html_comment] = ACTIONS(5), - }, - [407] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [408] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(405)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -71591,7 +71490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -71615,382 +71514,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [409] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2487), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [410] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2490), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [411] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(406)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2092), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [412] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1797), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(407)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -71999,7 +71694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -72023,1300 +71718,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [413] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2493), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [414] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2495), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [416] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2496), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [417] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2497), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [418] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2498), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [419] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2499), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [420] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2500), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [421] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2501), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [422] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2502), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [423] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [424] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [425] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1771), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(408)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -73325,7 +71796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -73349,208 +71820,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [426] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(409)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1819), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [427] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(410)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2104), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2094), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -73571,160 +72042,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1431), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5967), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5967), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1431), - [sym_subscript_expression] = STATE(1431), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5967), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1431), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2106), - [anon_sym_export] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_namespace] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2112), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2114), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_readonly] = ACTIONS(2108), - [anon_sym_get] = ACTIONS(2108), - [anon_sym_set] = ACTIONS(2108), - [anon_sym_declare] = ACTIONS(2108), - [anon_sym_public] = ACTIONS(2108), - [anon_sym_private] = ACTIONS(2108), - [anon_sym_protected] = ACTIONS(2108), - [anon_sym_override] = ACTIONS(2108), - [anon_sym_module] = ACTIONS(2108), - [anon_sym_any] = ACTIONS(2108), - [anon_sym_number] = ACTIONS(2108), - [anon_sym_boolean] = ACTIONS(2108), - [anon_sym_string] = ACTIONS(2108), - [anon_sym_symbol] = ACTIONS(2108), - [anon_sym_object] = ACTIONS(2108), - [sym_html_comment] = ACTIONS(5), - }, - [429] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2311), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(411)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -73733,7 +72102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -73757,280 +72126,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [430] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [431] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(412)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3636), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3636), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1261), + [sym_subscript_expression] = STATE(1261), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3636), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1261), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2096), + [anon_sym_export] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_namespace] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2102), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2104), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2106), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [432] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1849), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_readonly] = ACTIONS(2098), + [anon_sym_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_declare] = ACTIONS(2098), + [anon_sym_public] = ACTIONS(2098), + [anon_sym_private] = ACTIONS(2098), + [anon_sym_protected] = ACTIONS(2098), + [anon_sym_override] = ACTIONS(2098), + [anon_sym_module] = ACTIONS(2098), + [anon_sym_any] = ACTIONS(2098), + [anon_sym_number] = ACTIONS(2098), + [anon_sym_boolean] = ACTIONS(2098), + [anon_sym_string] = ACTIONS(2098), + [anon_sym_symbol] = ACTIONS(2098), + [anon_sym_object] = ACTIONS(2098), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(413)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -74039,7 +72306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -74063,280 +72330,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [433] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1632), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [434] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [435] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(414)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -74345,7 +72408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -74369,484 +72432,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [436] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [437] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1654), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [438] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [439] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(415)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1426), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5890), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5890), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1426), + [sym_subscript_expression] = STATE(1426), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5890), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1426), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2108), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_namespace] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2114), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2118), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [440] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1824), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_readonly] = ACTIONS(2110), + [anon_sym_get] = ACTIONS(2110), + [anon_sym_set] = ACTIONS(2110), + [anon_sym_declare] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_protected] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_any] = ACTIONS(2110), + [anon_sym_number] = ACTIONS(2110), + [anon_sym_boolean] = ACTIONS(2110), + [anon_sym_string] = ACTIONS(2110), + [anon_sym_symbol] = ACTIONS(2110), + [anon_sym_object] = ACTIONS(2110), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(416)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -74855,7 +72612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -74879,407 +72636,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [441] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1657), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [442] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1428), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5819), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5819), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1428), - [sym_subscript_expression] = STATE(1428), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5819), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1428), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2120), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_type] = ACTIONS(2122), - [anon_sym_namespace] = ACTIONS(2124), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2128), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2130), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_readonly] = ACTIONS(2122), - [anon_sym_get] = ACTIONS(2122), - [anon_sym_set] = ACTIONS(2122), - [anon_sym_declare] = ACTIONS(2122), - [anon_sym_public] = ACTIONS(2122), - [anon_sym_private] = ACTIONS(2122), - [anon_sym_protected] = ACTIONS(2122), - [anon_sym_override] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_any] = ACTIONS(2122), - [anon_sym_number] = ACTIONS(2122), - [anon_sym_boolean] = ACTIONS(2122), - [anon_sym_string] = ACTIONS(2122), - [anon_sym_symbol] = ACTIONS(2122), - [anon_sym_object] = ACTIONS(2122), - [sym_html_comment] = ACTIONS(5), - }, - [443] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1897), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(417)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2147), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [444] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1778), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(418)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1966), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1189), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -75287,382 +72840,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [445] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1661), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [446] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(419)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2163), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [447] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(420)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2189), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [448] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2095), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(421)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1854), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -75671,7 +73122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -75695,209 +73146,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [449] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1758), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(422)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2191), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [450] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2552), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(423)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -75917,2026 +73368,2434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [STATE(424)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2195), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [452] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1801), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(425)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2197), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [453] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1819), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(426)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2198), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [454] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1823), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(427)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2203), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [455] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(428)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2205), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [456] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(429)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2206), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [457] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(430)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2354), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [458] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1853), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(431)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [459] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1808), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(432)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2221), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [460] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1787), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(433)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2247), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [461] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(434)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2248), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [462] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1425), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5842), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5842), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1425), - [sym_subscript_expression] = STATE(1425), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5842), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1425), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2132), - [anon_sym_export] = ACTIONS(2134), - [anon_sym_type] = ACTIONS(2134), - [anon_sym_namespace] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2142), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_readonly] = ACTIONS(2134), - [anon_sym_get] = ACTIONS(2134), - [anon_sym_set] = ACTIONS(2134), - [anon_sym_declare] = ACTIONS(2134), - [anon_sym_public] = ACTIONS(2134), - [anon_sym_private] = ACTIONS(2134), - [anon_sym_protected] = ACTIONS(2134), - [anon_sym_override] = ACTIONS(2134), - [anon_sym_module] = ACTIONS(2134), - [anon_sym_any] = ACTIONS(2134), - [anon_sym_number] = ACTIONS(2134), - [anon_sym_boolean] = ACTIONS(2134), - [anon_sym_string] = ACTIONS(2134), - [anon_sym_symbol] = ACTIONS(2134), - [anon_sym_object] = ACTIONS(2134), - [sym_html_comment] = ACTIONS(5), - }, - [463] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(435)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2251), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(436)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [464] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1731), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [STATE(437)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(4429), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(4429), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1333), + [sym_subscript_expression] = STATE(1333), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(4429), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1333), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1115), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2124), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), [sym_html_comment] = ACTIONS(5), }, - [465] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [STATE(438)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [466] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(439)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(2284), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [467] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2151), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(440)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [468] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1780), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(441)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2263), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [469] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1784), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(442)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [470] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1663), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(443)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(444)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(445)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(446)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2290), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(447)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -77957,88 +75816,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1664), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(448)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(449)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1617), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -78059,190 +76020,2230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [STATE(450)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2508), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(451)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(452)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2554), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(453)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(454)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2557), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(455)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2560), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(456)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(457)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(458)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2480), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(459)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(460)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(461)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(462)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(463)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(464)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(465)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2487), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(466)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), - [sym_html_comment] = ACTIONS(5), - }, - [473] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1665), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(467)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2489), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(468)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(469)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(470)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(471)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2160), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -78263,88 +78264,2536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [474] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1666), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), + [STATE(472)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(473)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(474)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(475)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), + [sym_array] = STATE(1715), [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1431), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2130), + [anon_sym_export] = ACTIONS(2132), + [anon_sym_type] = ACTIONS(2132), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2136), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2140), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_readonly] = ACTIONS(2132), + [anon_sym_get] = ACTIONS(2132), + [anon_sym_set] = ACTIONS(2132), + [anon_sym_declare] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_protected] = ACTIONS(2132), + [anon_sym_override] = ACTIONS(2132), + [anon_sym_module] = ACTIONS(2132), + [anon_sym_any] = ACTIONS(2132), + [anon_sym_number] = ACTIONS(2132), + [anon_sym_boolean] = ACTIONS(2132), + [anon_sym_string] = ACTIONS(2132), + [anon_sym_symbol] = ACTIONS(2132), + [anon_sym_object] = ACTIONS(2132), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(476)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(477)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(478)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1820), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(479)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1845), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(480)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1757), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(481)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(482)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1758), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(483)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1761), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(484)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1762), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(485)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1763), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(486)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1764), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(487)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1765), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(488)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1766), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(489)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1768), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(490)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(491)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(492)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(493)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(494)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1811), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(495)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(496)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -78365,83 +80814,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(497)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1827), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), + [sym_private_property_identifier] = ACTIONS(1189), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), @@ -78449,106 +80898,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(498)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1835), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(499)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1620), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1667), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(500)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(501)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1631), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -78569,88 +81324,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2474), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(502)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(503)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2475), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -78671,58 +81528,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [478] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1810), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(504)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -78731,7 +81588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -78755,107 +81612,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [479] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2245), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(505)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2285), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -78875,88 +81732,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1725), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(506)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1634), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -78977,89 +81834,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [481] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2246), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(507)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2076), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -79079,89 +81936,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2247), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(508)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2078), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -79181,191 +82038,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [483] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2055), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), + [STATE(509)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2115), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), + [sym_array] = STATE(1715), [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [484] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -79385,89 +82140,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2250), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(510)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2143), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -79487,89 +82242,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(511)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2148), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -79589,89 +82344,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2252), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(512)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2149), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -79691,89 +82446,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2253), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(513)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2151), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -79793,89 +82548,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2254), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(514)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2153), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -79895,89 +82650,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2255), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(515)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2155), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -79997,89 +82752,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2256), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(516)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2158), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -80099,89 +82854,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2257), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(517)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2172), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -80201,89 +82956,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2258), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(518)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2173), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -80303,89 +83058,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [494] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(519)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2175), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -80405,89 +83160,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [495] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2260), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(520)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2181), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -80507,191 +83262,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [496] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2154), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [497] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2262), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(521)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2183), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -80711,89 +83364,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [498] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2158), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), + [STATE(522)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2545), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1269), [anon_sym_type] = ACTIONS(1269), [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -80813,293 +83466,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), + [STATE(523)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2200), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), + [sym_array] = STATE(1715), [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [500] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2160), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [501] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2266), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -81119,89 +83568,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2267), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(524)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2208), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -81221,88 +83670,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1671), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(525)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -81323,88 +83772,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1672), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(526)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1741), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -81425,89 +83874,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(527)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -81527,190 +83976,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [STATE(528)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1637), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [507] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1679), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(529)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -81731,89 +84180,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2268), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(530)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2209), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -81833,88 +84282,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1680), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(531)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1639), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -81935,89 +84384,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(532)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -82037,89 +84486,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2280), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(533)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2097), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -82139,190 +84588,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2554), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [STATE(534)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1640), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1688), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(535)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1641), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -82343,191 +84792,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1429), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5960), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5960), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1429), - [sym_subscript_expression] = STATE(1429), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5960), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1429), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2146), - [anon_sym_export] = ACTIONS(2148), - [anon_sym_type] = ACTIONS(2148), - [anon_sym_namespace] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2154), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [STATE(536)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1428), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5977), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5977), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1428), + [sym_subscript_expression] = STATE(1428), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5977), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1428), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2144), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2150), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2154), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_readonly] = ACTIONS(2148), - [anon_sym_get] = ACTIONS(2148), - [anon_sym_set] = ACTIONS(2148), - [anon_sym_declare] = ACTIONS(2148), - [anon_sym_public] = ACTIONS(2148), - [anon_sym_private] = ACTIONS(2148), - [anon_sym_protected] = ACTIONS(2148), - [anon_sym_override] = ACTIONS(2148), - [anon_sym_module] = ACTIONS(2148), - [anon_sym_any] = ACTIONS(2148), - [anon_sym_number] = ACTIONS(2148), - [anon_sym_boolean] = ACTIONS(2148), - [anon_sym_string] = ACTIONS(2148), - [anon_sym_symbol] = ACTIONS(2148), - [anon_sym_object] = ACTIONS(2148), - [sym_html_comment] = ACTIONS(5), - }, - [515] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2481), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_readonly] = ACTIONS(2146), + [anon_sym_get] = ACTIONS(2146), + [anon_sym_set] = ACTIONS(2146), + [anon_sym_declare] = ACTIONS(2146), + [anon_sym_public] = ACTIONS(2146), + [anon_sym_private] = ACTIONS(2146), + [anon_sym_protected] = ACTIONS(2146), + [anon_sym_override] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_any] = ACTIONS(2146), + [anon_sym_number] = ACTIONS(2146), + [anon_sym_boolean] = ACTIONS(2146), + [anon_sym_string] = ACTIONS(2146), + [anon_sym_symbol] = ACTIONS(2146), + [anon_sym_object] = ACTIONS(2146), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(537)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -82547,89 +84996,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2162), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), + [STATE(538)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1642), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(539)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2477), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1269), [anon_sym_type] = ACTIONS(1269), [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -82649,1721 +85200,1109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [518] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [519] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [520] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1760), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [521] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2419), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [522] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [STATE(540)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2420), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [523] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(541)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2421), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [524] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2422), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [525] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(542)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2423), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [526] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(543)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [527] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(544)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2425), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [528] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(545)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2426), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [529] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(546)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [530] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(547)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [531] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(548)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2429), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [532] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(549)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2430), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [533] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2164), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(550)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1269), [anon_sym_type] = ACTIONS(1269), [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -84383,191 +86322,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [534] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [STATE(551)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [535] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2165), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), [anon_sym_export] = ACTIONS(1269), [anon_sym_type] = ACTIONS(1269), [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -84587,89 +86424,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2166), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), + [STATE(552)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2433), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1269), [anon_sym_type] = ACTIONS(1269), [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -84689,89 +86526,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [537] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2167), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), + [STATE(553)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2434), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1269), [anon_sym_type] = ACTIONS(1269), [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -84791,364 +86628,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [538] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), + [STATE(554)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), [sym_expression] = STATE(2436), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [539] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2437), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [540] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2075), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [541] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(555)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1986), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -85157,7 +86790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -85181,209 +86814,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [542] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [543] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2168), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(556)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(557)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -85403,191 +87036,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [544] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(558)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [545] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2169), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), [anon_sym_export] = ACTIONS(1269), [anon_sym_type] = ACTIONS(1269), [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -85607,293 +87138,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [546] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [STATE(559)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1643), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [547] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(560)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1644), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [548] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2170), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(561)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1269), [anon_sym_type] = ACTIONS(1269), [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -85913,293 +87444,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [549] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1432), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5793), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5793), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1432), - [sym_subscript_expression] = STATE(1432), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5793), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1432), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2158), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [sym_html_comment] = ACTIONS(5), - }, - [550] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2512), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [STATE(562)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1647), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [551] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2171), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), + [STATE(563)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1269), [anon_sym_type] = ACTIONS(1269), [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -86219,89 +87648,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [552] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2174), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [STATE(564)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1648), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(565)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1269), [anon_sym_readonly] = ACTIONS(1269), @@ -86321,88 +87852,496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1269), [sym_html_comment] = ACTIONS(5), }, - [553] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(566)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2444), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(567)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1425), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5800), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5800), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1425), + [sym_subscript_expression] = STATE(1425), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5800), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1425), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2158), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2162), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_readonly] = ACTIONS(2158), + [anon_sym_get] = ACTIONS(2158), + [anon_sym_set] = ACTIONS(2158), + [anon_sym_declare] = ACTIONS(2158), + [anon_sym_public] = ACTIONS(2158), + [anon_sym_private] = ACTIONS(2158), + [anon_sym_protected] = ACTIONS(2158), + [anon_sym_override] = ACTIONS(2158), + [anon_sym_module] = ACTIONS(2158), + [anon_sym_any] = ACTIONS(2158), + [anon_sym_number] = ACTIONS(2158), + [anon_sym_boolean] = ACTIONS(2158), + [anon_sym_string] = ACTIONS(2158), + [anon_sym_symbol] = ACTIONS(2158), + [anon_sym_object] = ACTIONS(2158), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(568)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(569)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1654), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(570)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -86423,88 +88362,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [554] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(571)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2449), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -86525,88 +88464,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [555] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2449), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(572)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2450), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -86627,190 +88566,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [556] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2175), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [STATE(573)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [557] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(574)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2453), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -86831,88 +88770,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [558] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(575)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -86933,88 +88872,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [559] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2453), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(576)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2455), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -87035,88 +88974,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [560] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(577)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -87137,88 +89076,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [561] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2455), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(578)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -87239,88 +89178,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [562] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2456), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(579)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2458), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -87341,88 +89280,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [563] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2457), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(580)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2459), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -87443,88 +89382,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [564] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(581)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2460), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -87545,88 +89484,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [565] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2459), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(582)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -87647,88 +89586,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [566] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2460), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(583)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2462), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -87749,88 +89688,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [567] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2461), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(584)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -87851,88 +89790,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2462), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(585)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(586)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -87953,88 +89994,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(587)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5585), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5585), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5585), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1427), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2168), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(588)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2170), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -88055,88 +90198,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(589)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -88157,394 +90300,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [572] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2482), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [573] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1612), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [574] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2468), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(590)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -88565,88 +90402,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2469), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(591)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(592)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -88667,190 +90606,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1625), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), - [sym_html_comment] = ACTIONS(5), - }, - [577] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1626), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(593)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -88871,160 +90708,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), - [sym_html_comment] = ACTIONS(5), - }, - [579] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1850), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(594)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1787), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -89033,7 +90768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -89057,208 +90792,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [580] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2532), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [581] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2470), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(595)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -89279,88 +90912,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [582] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(596)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -89381,88 +91014,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [583] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(597)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -89483,88 +91116,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2472), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(598)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1483), [anon_sym_export] = ACTIONS(1353), [anon_sym_type] = ACTIONS(1353), [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1353), [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1361), [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1487), [anon_sym_using] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1375), [anon_sym_DASH] = ACTIONS(1375), [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1359), [anon_sym_void] = ACTIONS(1375), [anon_sym_delete] = ACTIONS(1375), [anon_sym_PLUS_PLUS] = ACTIONS(1377), [anon_sym_DASH_DASH] = ACTIONS(1377), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1489), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1353), @@ -89585,58 +91218,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1353), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1899), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(599)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -89645,7 +91278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -89669,209 +91302,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [586] = { - [sym_import] = STATE(3644), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(600)] = { + [sym_import] = STATE(3552), [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5956), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5956), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5967), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5967), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), [sym_member_expression] = STATE(1424), [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5956), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5967), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2172), - [anon_sym_export] = ACTIONS(2174), - [anon_sym_type] = ACTIONS(2174), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2174), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2178), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2180), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2180), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2182), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2190), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_readonly] = ACTIONS(2174), - [anon_sym_get] = ACTIONS(2174), - [anon_sym_set] = ACTIONS(2174), - [anon_sym_declare] = ACTIONS(2174), - [anon_sym_public] = ACTIONS(2174), - [anon_sym_private] = ACTIONS(2174), - [anon_sym_protected] = ACTIONS(2174), - [anon_sym_override] = ACTIONS(2174), - [anon_sym_module] = ACTIONS(2174), - [anon_sym_any] = ACTIONS(2174), - [anon_sym_number] = ACTIONS(2174), - [anon_sym_boolean] = ACTIONS(2174), - [anon_sym_string] = ACTIONS(2174), - [anon_sym_symbol] = ACTIONS(2174), - [anon_sym_object] = ACTIONS(2174), - [sym_html_comment] = ACTIONS(5), - }, - [587] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_readonly] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_object] = ACTIONS(2182), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(601)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -89891,160 +91524,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [588] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(2087), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [589] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(602)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -90053,7 +91584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -90077,76 +91608,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [590] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(603)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1795), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -90155,7 +91686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -90179,106 +91710,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [591] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2015), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(604)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1670), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -90299,292 +91830,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [593] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2217), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [594] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1723), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(605)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1671), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -90605,568 +91932,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2220), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), + [STATE(606)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [596] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1777), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(607)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2227), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [597] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1788), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(608)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2233), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1225), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1215), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1233), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [598] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2015), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(4027), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(4027), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1328), - [sym_subscript_expression] = STATE(1328), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(4027), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1328), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2184), - [anon_sym_export] = ACTIONS(1173), - [anon_sym_type] = ACTIONS(1173), - [anon_sym_namespace] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1179), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2186), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1173), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(1173), - [anon_sym_set] = ACTIONS(1173), - [anon_sym_declare] = ACTIONS(1173), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1173), - [anon_sym_module] = ACTIONS(1173), - [anon_sym_any] = ACTIONS(1173), - [anon_sym_number] = ACTIONS(1173), - [anon_sym_boolean] = ACTIONS(1173), - [anon_sym_string] = ACTIONS(1173), - [anon_sym_symbol] = ACTIONS(1173), - [anon_sym_object] = ACTIONS(1173), - [sym_html_comment] = ACTIONS(5), - }, - [599] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(1967), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [sym_undefined] = ACTIONS(1473), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [600] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1774), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(609)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1980), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -91175,7 +92298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -91199,2044 +92322,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [601] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2031), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [602] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2032), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [603] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2033), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [604] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2183), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [605] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2035), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [606] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2036), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [607] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2037), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [608] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2038), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [609] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2039), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [610] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2040), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [611] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2041), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2042), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [613] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2043), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [614] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2044), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [615] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2045), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [616] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2046), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [617] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2184), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [618] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2048), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [619] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), - [sym_html_comment] = ACTIONS(5), - }, - [620] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1624), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(610)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -93257,568 +92442,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [621] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [622] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2052), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [623] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2053), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [624] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2118), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), - [sym_html_comment] = ACTIONS(5), - }, - [625] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1829), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2144), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [626] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(611)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -93827,7 +92502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -93842,7 +92517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [sym_number] = ACTIONS(2126), [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), @@ -93851,922 +92526,1840 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [627] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2443), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(612)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2055), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(2054), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [STATE(613)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1994), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [STATE(614)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2170), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [630] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(615)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1996), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1365), - [sym_expression] = STATE(1855), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5780), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1365), - [sym_subscript_expression] = STATE(1365), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2990), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1365), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1459), - [anon_sym_export] = ACTIONS(1109), - [anon_sym_type] = ACTIONS(1109), - [anon_sym_namespace] = ACTIONS(1111), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1135), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1117), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1125), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_using] = ACTIONS(1129), - [anon_sym_PLUS] = ACTIONS(1135), - [anon_sym_DASH] = ACTIONS(1135), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1117), - [anon_sym_void] = ACTIONS(1135), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1143), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1465), + [STATE(616)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1998), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1109), - [anon_sym_readonly] = ACTIONS(1109), - [anon_sym_get] = ACTIONS(1109), - [anon_sym_set] = ACTIONS(1109), - [anon_sym_declare] = ACTIONS(1109), - [anon_sym_public] = ACTIONS(1109), - [anon_sym_private] = ACTIONS(1109), - [anon_sym_protected] = ACTIONS(1109), - [anon_sym_override] = ACTIONS(1109), - [anon_sym_module] = ACTIONS(1109), - [anon_sym_any] = ACTIONS(1109), - [anon_sym_number] = ACTIONS(1109), - [anon_sym_boolean] = ACTIONS(1109), - [anon_sym_string] = ACTIONS(1109), - [anon_sym_symbol] = ACTIONS(1109), - [anon_sym_object] = ACTIONS(1109), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [632] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2394), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [STATE(617)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1999), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1699), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [STATE(618)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2000), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(1708), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [STATE(619)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2001), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(620)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2002), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(621)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(622)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2004), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(623)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2005), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(624)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2006), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(625)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2007), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(626)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2009), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(627)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(628)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(629)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2092), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -94787,160 +94380,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [636] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1374), - [sym_expression] = STATE(2187), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5596), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5596), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5594), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5596), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1451), - [anon_sym_export] = ACTIONS(1269), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_namespace] = ACTIONS(1271), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1281), - [anon_sym_yield] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1455), - [anon_sym_using] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_void] = ACTIONS(1297), - [anon_sym_delete] = ACTIONS(1297), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1305), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [sym_html_comment] = ACTIONS(5), - }, - [637] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1825), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(630)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(2255), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -94949,7 +94440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -94973,484 +94464,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [638] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1427), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5798), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5798), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1427), - [sym_subscript_expression] = STATE(1427), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5798), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1427), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2198), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(631)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2016), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2202), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_readonly] = ACTIONS(2194), - [anon_sym_get] = ACTIONS(2194), - [anon_sym_set] = ACTIONS(2194), - [anon_sym_declare] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_any] = ACTIONS(2194), - [anon_sym_number] = ACTIONS(2194), - [anon_sym_boolean] = ACTIONS(2194), - [anon_sym_string] = ACTIONS(2194), - [anon_sym_symbol] = ACTIONS(2194), - [anon_sym_object] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [639] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2526), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), - [anon_sym_using] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1087), - [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1087), - [anon_sym_delete] = ACTIONS(1087), - [anon_sym_PLUS_PLUS] = ACTIONS(1089), - [anon_sym_DASH_DASH] = ACTIONS(1089), + [STATE(632)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2017), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_readonly] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_override] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1764), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [STATE(633)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1693), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [641] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1382), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5929), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5929), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5928), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2964), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5929), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1483), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_type] = ACTIONS(1353), - [anon_sym_namespace] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(1375), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1361), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1487), - [anon_sym_using] = ACTIONS(1369), - [anon_sym_PLUS] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(634)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1379), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1489), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_readonly] = ACTIONS(1353), - [anon_sym_get] = ACTIONS(1353), - [anon_sym_set] = ACTIONS(1353), - [anon_sym_declare] = ACTIONS(1353), - [anon_sym_public] = ACTIONS(1353), - [anon_sym_private] = ACTIONS(1353), - [anon_sym_protected] = ACTIONS(1353), - [anon_sym_override] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_any] = ACTIONS(1353), - [anon_sym_number] = ACTIONS(1353), - [anon_sym_boolean] = ACTIONS(1353), - [anon_sym_string] = ACTIONS(1353), - [anon_sym_symbol] = ACTIONS(1353), - [anon_sym_object] = ACTIONS(1353), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [STATE(635)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -95459,7 +94950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -95483,209 +94974,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [643] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1195), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5676), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5676), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1195), - [sym_subscript_expression] = STATE(1195), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5676), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(810), - [anon_sym_export] = ACTIONS(812), - [anon_sym_type] = ACTIONS(812), - [anon_sym_namespace] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(828), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(636)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2019), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(812), - [anon_sym_readonly] = ACTIONS(812), - [anon_sym_get] = ACTIONS(812), - [anon_sym_set] = ACTIONS(812), - [anon_sym_declare] = ACTIONS(812), - [anon_sym_public] = ACTIONS(812), - [anon_sym_private] = ACTIONS(812), - [anon_sym_protected] = ACTIONS(812), - [anon_sym_override] = ACTIONS(812), - [anon_sym_module] = ACTIONS(812), - [anon_sym_any] = ACTIONS(812), - [anon_sym_number] = ACTIONS(812), - [anon_sym_boolean] = ACTIONS(812), - [anon_sym_string] = ACTIONS(812), - [anon_sym_symbol] = ACTIONS(812), - [anon_sym_object] = ACTIONS(812), - [sym_html_comment] = ACTIONS(5), - }, - [644] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(637)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), [anon_sym_export] = ACTIONS(1389), [anon_sym_type] = ACTIONS(1389), [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1411), - [anon_sym_import] = ACTIONS(699), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1397), [anon_sym_yield] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), [anon_sym_using] = ACTIONS(1405), [anon_sym_PLUS] = ACTIONS(1411), [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1395), [anon_sym_void] = ACTIONS(1411), [anon_sym_delete] = ACTIONS(1411), [anon_sym_PLUS_PLUS] = ACTIONS(1413), [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1415), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1389), [anon_sym_readonly] = ACTIONS(1389), @@ -95705,89 +95196,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [645] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1782), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), + [STATE(638)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2053), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), [anon_sym_export] = ACTIONS(1389), [anon_sym_type] = ACTIONS(1389), [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1411), - [anon_sym_import] = ACTIONS(699), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1397), [anon_sym_yield] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), [anon_sym_using] = ACTIONS(1405), [anon_sym_PLUS] = ACTIONS(1411), [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1395), [anon_sym_void] = ACTIONS(1411), [anon_sym_delete] = ACTIONS(1411), [anon_sym_PLUS_PLUS] = ACTIONS(1413), [anon_sym_DASH_DASH] = ACTIONS(1413), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1415), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1389), [anon_sym_readonly] = ACTIONS(1389), @@ -95807,88 +95298,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), + [STATE(639)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(640)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2385), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), [sym_identifier] = ACTIONS(1423), [anon_sym_export] = ACTIONS(1039), [anon_sym_type] = ACTIONS(1039), [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), [sym_undefined] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1039), @@ -95909,89 +95502,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1039), [sym_html_comment] = ACTIONS(5), }, - [647] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2282), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(641)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2386), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(642)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -96011,395 +95706,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [648] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1406), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5918), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5918), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5764), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1406), - [sym_subscript_expression] = STATE(1406), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2954), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5918), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1475), - [anon_sym_export] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_namespace] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(1231), - [anon_sym_yield] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_void] = ACTIONS(1245), - [anon_sym_delete] = ACTIONS(1245), - [anon_sym_PLUS_PLUS] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1247), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(1249), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_readonly] = ACTIONS(1223), - [anon_sym_get] = ACTIONS(1223), - [anon_sym_set] = ACTIONS(1223), - [anon_sym_declare] = ACTIONS(1223), - [anon_sym_public] = ACTIONS(1223), - [anon_sym_private] = ACTIONS(1223), - [anon_sym_protected] = ACTIONS(1223), - [anon_sym_override] = ACTIONS(1223), - [anon_sym_module] = ACTIONS(1223), - [anon_sym_any] = ACTIONS(1223), - [anon_sym_number] = ACTIONS(1223), - [anon_sym_boolean] = ACTIONS(1223), - [anon_sym_string] = ACTIONS(1223), - [anon_sym_symbol] = ACTIONS(1223), - [anon_sym_object] = ACTIONS(1223), - [sym_html_comment] = ACTIONS(5), - }, - [649] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1426), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5622), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5622), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1426), - [sym_subscript_expression] = STATE(1426), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5622), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1426), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2206), - [anon_sym_type] = ACTIONS(2206), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2206), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2210), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), + [STATE(643)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5801), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5801), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5801), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1429), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2194), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), [anon_sym_PLUS_PLUS] = ACTIONS(716), [anon_sym_DASH_DASH] = ACTIONS(716), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2214), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2206), - [anon_sym_readonly] = ACTIONS(2206), - [anon_sym_get] = ACTIONS(2206), - [anon_sym_set] = ACTIONS(2206), - [anon_sym_declare] = ACTIONS(2206), - [anon_sym_public] = ACTIONS(2206), - [anon_sym_private] = ACTIONS(2206), - [anon_sym_protected] = ACTIONS(2206), - [anon_sym_override] = ACTIONS(2206), - [anon_sym_module] = ACTIONS(2206), - [anon_sym_any] = ACTIONS(2206), - [anon_sym_number] = ACTIONS(2206), - [anon_sym_boolean] = ACTIONS(2206), - [anon_sym_string] = ACTIONS(2206), - [anon_sym_symbol] = ACTIONS(2206), - [anon_sym_object] = ACTIONS(2206), - [sym_html_comment] = ACTIONS(5), - }, - [650] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1978), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5883), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5883), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2996), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5883), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1335), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1389), - [anon_sym_type] = ACTIONS(1389), - [anon_sym_namespace] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(1411), - [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1447), - [anon_sym_using] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1411), - [anon_sym_delete] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1413), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1415), - [sym_this] = ACTIONS(93), - [sym_super] = ACTIONS(93), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), - [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(1449), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2202), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_readonly] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1389), - [anon_sym_set] = ACTIONS(1389), - [anon_sym_declare] = ACTIONS(1389), - [anon_sym_public] = ACTIONS(1389), - [anon_sym_private] = ACTIONS(1389), - [anon_sym_protected] = ACTIONS(1389), - [anon_sym_override] = ACTIONS(1389), - [anon_sym_module] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_number] = ACTIONS(1389), - [anon_sym_boolean] = ACTIONS(1389), - [anon_sym_string] = ACTIONS(1389), - [anon_sym_symbol] = ACTIONS(1389), - [anon_sym_object] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_readonly] = ACTIONS(2194), + [anon_sym_get] = ACTIONS(2194), + [anon_sym_set] = ACTIONS(2194), + [anon_sym_declare] = ACTIONS(2194), + [anon_sym_public] = ACTIONS(2194), + [anon_sym_private] = ACTIONS(2194), + [anon_sym_protected] = ACTIONS(2194), + [anon_sym_override] = ACTIONS(2194), + [anon_sym_module] = ACTIONS(2194), + [anon_sym_any] = ACTIONS(2194), + [anon_sym_number] = ACTIONS(2194), + [anon_sym_boolean] = ACTIONS(2194), + [anon_sym_string] = ACTIONS(2194), + [anon_sym_symbol] = ACTIONS(2194), + [anon_sym_object] = ACTIONS(2194), [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [STATE(644)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2534), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -96419,160 +95910,466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [652] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1775), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), - [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [STATE(645)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(646)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(647)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1185), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(33), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_await] = ACTIONS(45), - [anon_sym_yield] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1175), [anon_sym_function] = ACTIONS(710), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(33), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1189), [sym_this] = ACTIONS(93), [sym_super] = ACTIONS(93), [sym_true] = ACTIONS(93), [sym_false] = ACTIONS(93), [sym_null] = ACTIONS(93), - [sym_undefined] = ACTIONS(95), + [sym_undefined] = ACTIONS(1449), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [653] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(648)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(649)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -96581,7 +96378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -96605,178 +96402,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [654] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1430), - [sym_expression] = STATE(2574), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5813), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1430), - [sym_subscript_expression] = STATE(1430), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2923), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1430), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2218), - [anon_sym_type] = ACTIONS(2218), - [anon_sym_namespace] = ACTIONS(2220), - [anon_sym_LBRACE] = ACTIONS(818), - [anon_sym_typeof] = ACTIONS(183), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(140), - [anon_sym_yield] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(822), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(2222), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(179), - [anon_sym_void] = ACTIONS(183), - [anon_sym_delete] = ACTIONS(183), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(192), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(2226), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(2218), - [anon_sym_readonly] = ACTIONS(2218), - [anon_sym_get] = ACTIONS(2218), - [anon_sym_set] = ACTIONS(2218), - [anon_sym_declare] = ACTIONS(2218), - [anon_sym_public] = ACTIONS(2218), - [anon_sym_private] = ACTIONS(2218), - [anon_sym_protected] = ACTIONS(2218), - [anon_sym_override] = ACTIONS(2218), - [anon_sym_module] = ACTIONS(2218), - [anon_sym_any] = ACTIONS(2218), - [anon_sym_number] = ACTIONS(2218), - [anon_sym_boolean] = ACTIONS(2218), - [anon_sym_string] = ACTIONS(2218), - [anon_sym_symbol] = ACTIONS(2218), - [anon_sym_object] = ACTIONS(2218), - [sym_html_comment] = ACTIONS(5), - }, - [655] = { - [sym_import] = STATE(3555), - [sym_parenthesized_expression] = STATE(1337), - [sym_expression] = STATE(1838), - [sym_primary_expression] = STATE(1756), - [sym_yield_expression] = STATE(2126), - [sym_object] = STATE(2272), - [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2272), - [sym_array_pattern] = STATE(5785), - [sym_jsx_element] = STATE(2126), - [sym_jsx_opening_element] = STATE(3238), - [sym_jsx_self_closing_element] = STATE(2126), - [sym_class] = STATE(2272), - [sym_function_expression] = STATE(2272), - [sym_generator_function] = STATE(2272), - [sym_arrow_function] = STATE(2272), - [sym__call_signature] = STATE(5983), - [sym_call_expression] = STATE(2272), - [sym_new_expression] = STATE(1872), - [sym_await_expression] = STATE(2126), - [sym_member_expression] = STATE(1337), - [sym_subscript_expression] = STATE(1337), - [sym_assignment_expression] = STATE(2126), - [sym__augmented_assignment_lhs] = STATE(2910), - [sym_augmented_assignment_expression] = STATE(2126), - [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2126), - [sym_binary_expression] = STATE(2126), - [sym_unary_expression] = STATE(2126), - [sym_update_expression] = STATE(2126), - [sym_string] = STATE(2272), - [sym_template_string] = STATE(2272), - [sym_regex] = STATE(2272), - [sym_meta_property] = STATE(2272), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(2126), - [sym_satisfies_expression] = STATE(2126), - [sym_instantiation_expression] = STATE(2126), - [sym_internal_module] = STATE(2126), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4537), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(650)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(2154), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), [sym_identifier] = ACTIONS(1435), - [anon_sym_export] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), [anon_sym_LBRACE] = ACTIONS(695), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(699), - [anon_sym_let] = ACTIONS(1319), + [anon_sym_let] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), @@ -96785,7 +96480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(706), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1139), [anon_sym_function] = ACTIONS(710), [anon_sym_new] = ACTIONS(1439), [anon_sym_using] = ACTIONS(79), @@ -96809,107 +96504,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(93), [sym_undefined] = ACTIONS(95), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_readonly] = ACTIONS(1319), - [anon_sym_get] = ACTIONS(1319), - [anon_sym_set] = ACTIONS(1319), - [anon_sym_declare] = ACTIONS(1319), - [anon_sym_public] = ACTIONS(1319), - [anon_sym_private] = ACTIONS(1319), - [anon_sym_protected] = ACTIONS(1319), - [anon_sym_override] = ACTIONS(1319), - [anon_sym_module] = ACTIONS(1319), - [anon_sym_any] = ACTIONS(1319), - [anon_sym_number] = ACTIONS(1319), - [anon_sym_boolean] = ACTIONS(1319), - [anon_sym_string] = ACTIONS(1319), - [anon_sym_symbol] = ACTIONS(1319), - [anon_sym_object] = ACTIONS(1319), - [sym_html_comment] = ACTIONS(5), - }, - [656] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1375), - [sym_expression] = STATE(2557), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5782), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5782), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5907), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1375), - [sym_subscript_expression] = STATE(1375), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2943), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5782), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(651)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2109), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), [anon_sym_export] = ACTIONS(1061), [anon_sym_type] = ACTIONS(1061), [anon_sym_namespace] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(1087), - [anon_sym_import] = ACTIONS(131), + [anon_sym_import] = ACTIONS(130), [anon_sym_let] = ACTIONS(1061), [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_await] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1471), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), [anon_sym_using] = ACTIONS(1081), [anon_sym_PLUS] = ACTIONS(1087), [anon_sym_DASH] = ACTIONS(1087), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), [anon_sym_TILDE] = ACTIONS(1069), [anon_sym_void] = ACTIONS(1087), [anon_sym_delete] = ACTIONS(1087), [anon_sym_PLUS_PLUS] = ACTIONS(1089), [anon_sym_DASH_DASH] = ACTIONS(1089), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), [sym_private_property_identifier] = ACTIONS(1095), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1473), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), [anon_sym_AT] = ACTIONS(97), [anon_sym_static] = ACTIONS(1061), [anon_sym_readonly] = ACTIONS(1061), @@ -96929,130 +96624,640 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1061), [sym_html_comment] = ACTIONS(5), }, - [657] = { - [sym_import] = STATE(3644), - [sym_parenthesized_expression] = STATE(1262), - [sym_expression] = STATE(2216), - [sym_primary_expression] = STATE(1471), - [sym_yield_expression] = STATE(1674), - [sym_object] = STATE(1673), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(1673), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(1674), - [sym_jsx_opening_element] = STATE(3199), - [sym_jsx_self_closing_element] = STATE(1674), - [sym_class] = STATE(1673), - [sym_function_expression] = STATE(1673), - [sym_generator_function] = STATE(1673), - [sym_arrow_function] = STATE(1673), - [sym__call_signature] = STATE(5666), - [sym_call_expression] = STATE(1673), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1674), - [sym_member_expression] = STATE(1262), - [sym_subscript_expression] = STATE(1262), - [sym_assignment_expression] = STATE(1674), - [sym__augmented_assignment_lhs] = STATE(2902), - [sym_augmented_assignment_expression] = STATE(1674), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(1674), - [sym_binary_expression] = STATE(1674), - [sym_unary_expression] = STATE(1674), - [sym_update_expression] = STATE(1674), - [sym_string] = STATE(1673), - [sym_template_string] = STATE(1673), - [sym_regex] = STATE(1673), - [sym_meta_property] = STATE(1673), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3848), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1674), - [sym_satisfies_expression] = STATE(1674), - [sym_instantiation_expression] = STATE(1674), - [sym_internal_module] = STATE(1674), - [sym_type_parameters] = STATE(5231), - [aux_sym_export_statement_repeat1] = STATE(4590), - [sym_identifier] = ACTIONS(1423), - [anon_sym_export] = ACTIONS(1039), - [anon_sym_type] = ACTIONS(1039), - [anon_sym_namespace] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(645), - [anon_sym_import] = ACTIONS(131), - [anon_sym_let] = ACTIONS(1039), - [anon_sym_BANG] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_await] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_class] = ACTIONS(150), - [anon_sym_async] = ACTIONS(1047), - [anon_sym_function] = ACTIONS(154), - [anon_sym_new] = ACTIONS(1431), - [anon_sym_using] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(645), - [anon_sym_DASH] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_void] = ACTIONS(645), - [anon_sym_delete] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(647), - [anon_sym_DASH_DASH] = ACTIONS(647), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(830), - [sym_number] = ACTIONS(744), - [sym_private_property_identifier] = ACTIONS(649), - [sym_this] = ACTIONS(196), - [sym_super] = ACTIONS(196), - [sym_true] = ACTIONS(196), - [sym_false] = ACTIONS(196), - [sym_null] = ACTIONS(196), - [sym_undefined] = ACTIONS(1433), + [STATE(652)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(1039), - [anon_sym_readonly] = ACTIONS(1039), - [anon_sym_get] = ACTIONS(1039), - [anon_sym_set] = ACTIONS(1039), - [anon_sym_declare] = ACTIONS(1039), - [anon_sym_public] = ACTIONS(1039), - [anon_sym_private] = ACTIONS(1039), - [anon_sym_protected] = ACTIONS(1039), - [anon_sym_override] = ACTIONS(1039), - [anon_sym_module] = ACTIONS(1039), - [anon_sym_any] = ACTIONS(1039), - [anon_sym_number] = ACTIONS(1039), - [anon_sym_boolean] = ACTIONS(1039), - [anon_sym_string] = ACTIONS(1039), - [anon_sym_symbol] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(653)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1430), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1430), + [sym_subscript_expression] = STATE(1430), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1430), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2210), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_readonly] = ACTIONS(2206), + [anon_sym_get] = ACTIONS(2206), + [anon_sym_set] = ACTIONS(2206), + [anon_sym_declare] = ACTIONS(2206), + [anon_sym_public] = ACTIONS(2206), + [anon_sym_private] = ACTIONS(2206), + [anon_sym_protected] = ACTIONS(2206), + [anon_sym_override] = ACTIONS(2206), + [anon_sym_module] = ACTIONS(2206), + [anon_sym_any] = ACTIONS(2206), + [anon_sym_number] = ACTIONS(2206), + [anon_sym_boolean] = ACTIONS(2206), + [anon_sym_string] = ACTIONS(2206), + [anon_sym_symbol] = ACTIONS(2206), + [anon_sym_object] = ACTIONS(2206), [sym_html_comment] = ACTIONS(5), }, - [658] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(654)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(655)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1432), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1432), + [sym_subscript_expression] = STATE(1432), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1432), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2216), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_readonly] = ACTIONS(2218), + [anon_sym_get] = ACTIONS(2218), + [anon_sym_set] = ACTIONS(2218), + [anon_sym_declare] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_override] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_any] = ACTIONS(2218), + [anon_sym_number] = ACTIONS(2218), + [anon_sym_boolean] = ACTIONS(2218), + [anon_sym_string] = ACTIONS(2218), + [anon_sym_symbol] = ACTIONS(2218), + [anon_sym_object] = ACTIONS(2218), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(656)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2558), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(657)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1800), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(658)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2230), [anon_sym_type] = ACTIONS(2232), @@ -97060,7 +97265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), @@ -97068,38 +97273,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -97108,52 +97313,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [659] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(659)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2230), [anon_sym_type] = ACTIONS(2232), @@ -97161,46 +97366,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -97209,52 +97414,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [660] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(660)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2230), [anon_sym_type] = ACTIONS(2232), @@ -97262,46 +97467,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -97310,39 +97515,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [661] = { - [sym__call_signature] = STATE(5739), - [sym_string] = STATE(3887), - [sym_formal_parameters] = STATE(3848), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_type_parameters] = STATE(5231), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(661)] = { + [sym__call_signature] = STATE(5850), + [sym_string] = STATE(3874), + [sym_formal_parameters] = STATE(3954), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_type_parameters] = STATE(5509), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2272), [anon_sym_export] = ACTIONS(2274), [anon_sym_STAR] = ACTIONS(2276), @@ -97350,12 +97555,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2274), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -97366,29 +97571,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2274), [anon_sym_function] = ACTIONS(2286), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2274), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -97397,18 +97602,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2274), @@ -97429,19 +97634,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2274), [anon_sym_object] = ACTIONS(2274), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [662] = { - [sym__call_signature] = STATE(5739), - [sym_string] = STATE(3887), - [sym_formal_parameters] = STATE(3848), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_type_parameters] = STATE(5231), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(662)] = { + [sym__call_signature] = STATE(5850), + [sym_string] = STATE(3874), + [sym_formal_parameters] = STATE(3954), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_type_parameters] = STATE(5509), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2272), [anon_sym_export] = ACTIONS(2274), [anon_sym_STAR] = ACTIONS(2276), @@ -97449,12 +97654,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_let] = ACTIONS(2274), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -97465,29 +97670,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2274), [anon_sym_function] = ACTIONS(2286), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2274), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -97496,18 +97701,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2274), @@ -97528,19 +97733,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2274), [anon_sym_object] = ACTIONS(2274), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [663] = { - [sym__call_signature] = STATE(5739), - [sym_string] = STATE(3887), - [sym_formal_parameters] = STATE(3848), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_type_parameters] = STATE(5231), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(663)] = { + [sym__call_signature] = STATE(5850), + [sym_string] = STATE(3874), + [sym_formal_parameters] = STATE(3954), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_type_parameters] = STATE(5509), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2272), [anon_sym_export] = ACTIONS(2274), [anon_sym_STAR] = ACTIONS(2276), @@ -97548,12 +97753,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_let] = ACTIONS(2274), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -97564,29 +97769,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2274), [anon_sym_function] = ACTIONS(2286), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2274), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -97595,18 +97800,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2274), @@ -97627,36 +97832,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2274), [anon_sym_object] = ACTIONS(2274), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [664] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(664)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), @@ -97664,38 +97869,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -97704,96 +97909,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2298), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [665] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(665)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -97802,96 +98007,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2298), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [666] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(666)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -97900,51 +98105,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2298), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [667] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(667)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2302), [anon_sym_type] = ACTIONS(2232), @@ -97952,45 +98157,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2306), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -97999,49 +98204,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_declare] = ACTIONS(2308), [anon_sym_module] = ACTIONS(2310), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [668] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(668)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2312), [anon_sym_type] = ACTIONS(2232), @@ -98049,45 +98254,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -98096,49 +98301,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [669] = { - [sym_namespace_export] = STATE(5548), - [sym_export_clause] = STATE(4473), - [sym_declaration] = STATE(885), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(669)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), [anon_sym_STAR] = ACTIONS(2228), [anon_sym_default] = ACTIONS(2230), [anon_sym_type] = ACTIONS(2232), @@ -98146,45 +98351,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2236), [anon_sym_namespace] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -98193,36 +98398,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2264), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [670] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_override_modifier] = STATE(2756), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(670)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_override_modifier] = STATE(2763), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(2276), @@ -98230,12 +98435,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98245,29 +98450,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -98276,18 +98481,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98308,17 +98513,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [671] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_override_modifier] = STATE(2756), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(671)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_override_modifier] = STATE(2763), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(2276), @@ -98326,12 +98531,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98341,29 +98546,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -98372,18 +98577,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98404,17 +98609,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [672] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [sym_override_modifier] = STATE(2756), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(672)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_override_modifier] = STATE(2763), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(2276), @@ -98422,12 +98627,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98437,29 +98642,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -98468,18 +98673,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98500,16 +98705,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [673] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(673)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(2276), @@ -98517,12 +98722,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98532,29 +98737,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -98563,18 +98768,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98595,29 +98800,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(674)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2314), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98625,31 +98830,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_async] = ACTIONS(2316), + [anon_sym_async] = ACTIONS(2314), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -98658,24 +98863,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2320), - [anon_sym_set] = ACTIONS(2320), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2314), [anon_sym_public] = ACTIONS(2314), @@ -98690,16 +98895,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(675)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(120), @@ -98707,12 +98912,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98722,29 +98927,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2314), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -98753,18 +98958,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98785,29 +98990,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(676)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(120), + [anon_sym_STAR] = ACTIONS(2276), [anon_sym_type] = ACTIONS(2314), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98815,31 +99020,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(120), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_async] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -98848,24 +99053,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), [anon_sym_readonly] = ACTIONS(2314), - [anon_sym_get] = ACTIONS(2314), - [anon_sym_set] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_declare] = ACTIONS(2314), [anon_sym_public] = ACTIONS(2314), @@ -98880,16 +99085,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(677)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(2276), @@ -98897,12 +99102,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -98912,29 +99117,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2316), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -98943,18 +99148,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -98975,16 +99180,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [678] = { - [sym_string] = STATE(3887), - [sym__property_name] = STATE(3887), - [sym_computed_property_name] = STATE(3887), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(678)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(2314), [anon_sym_export] = ACTIONS(2314), [anon_sym_STAR] = ACTIONS(120), @@ -98992,12 +99197,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2314), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_let] = ACTIONS(2314), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(2283), @@ -99007,29 +99212,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_async] = ACTIONS(2314), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2314), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -99038,18 +99243,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2292), [sym_private_property_identifier] = ACTIONS(2292), [anon_sym_static] = ACTIONS(2314), @@ -99070,72 +99275,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2314), [anon_sym_object] = ACTIONS(2314), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [679] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(679)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2306), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -99144,280 +99349,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2324), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [680] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_EQ] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_from] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_COLON] = ACTIONS(1843), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_RBRACK] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_private_property_identifier] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_get] = ACTIONS(1845), - [anon_sym_set] = ACTIONS(1845), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_declare] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_private] = ACTIONS(1845), - [anon_sym_protected] = ACTIONS(1845), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_object] = ACTIONS(1845), - [anon_sym_abstract] = ACTIONS(1845), - [anon_sym_extends] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [sym_html_comment] = ACTIONS(5), - }, - [681] = { - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_namespace] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_typeof] = ACTIONS(1807), - [anon_sym_import] = ACTIONS(1807), - [anon_sym_from] = ACTIONS(1807), - [anon_sym_with] = ACTIONS(1807), - [anon_sym_var] = ACTIONS(1807), - [anon_sym_let] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_else] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_switch] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_await] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_do] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_debugger] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_throw] = ACTIONS(1807), - [anon_sym_COLON] = ACTIONS(1805), - [anon_sym_case] = ACTIONS(1807), - [anon_sym_yield] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_RBRACK] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_class] = ACTIONS(1807), - [anon_sym_async] = ACTIONS(1807), - [anon_sym_function] = ACTIONS(1807), - [anon_sym_EQ_GT] = ACTIONS(1805), - [anon_sym_new] = ACTIONS(1807), - [anon_sym_using] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_void] = ACTIONS(1807), - [anon_sym_delete] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1805), - [sym_number] = ACTIONS(1805), - [sym_private_property_identifier] = ACTIONS(1805), - [sym_this] = ACTIONS(1807), - [sym_super] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_null] = ACTIONS(1807), - [sym_undefined] = ACTIONS(1807), - [anon_sym_AT] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_readonly] = ACTIONS(1807), - [anon_sym_get] = ACTIONS(1807), - [anon_sym_set] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_declare] = ACTIONS(1807), - [anon_sym_public] = ACTIONS(1807), - [anon_sym_private] = ACTIONS(1807), - [anon_sym_protected] = ACTIONS(1807), - [anon_sym_override] = ACTIONS(1807), - [anon_sym_module] = ACTIONS(1807), - [anon_sym_any] = ACTIONS(1807), - [anon_sym_number] = ACTIONS(1807), - [anon_sym_boolean] = ACTIONS(1807), - [anon_sym_string] = ACTIONS(1807), - [anon_sym_symbol] = ACTIONS(1807), - [anon_sym_object] = ACTIONS(1807), - [anon_sym_abstract] = ACTIONS(1807), - [anon_sym_extends] = ACTIONS(1807), - [anon_sym_interface] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [sym_html_comment] = ACTIONS(5), - }, - [682] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(680)] = { + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1709), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_default] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1709), + [anon_sym_namespace] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_typeof] = ACTIONS(1709), + [anon_sym_import] = ACTIONS(1709), + [anon_sym_from] = ACTIONS(1709), + [anon_sym_with] = ACTIONS(1709), + [anon_sym_var] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_switch] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_debugger] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_throw] = ACTIONS(1709), + [anon_sym_COLON] = ACTIONS(1707), + [anon_sym_case] = ACTIONS(1709), + [anon_sym_yield] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_RBRACK] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [anon_sym_SQUOTE] = ACTIONS(1707), + [anon_sym_class] = ACTIONS(1709), + [anon_sym_async] = ACTIONS(1709), + [anon_sym_function] = ACTIONS(1709), + [anon_sym_EQ_GT] = ACTIONS(1707), + [anon_sym_new] = ACTIONS(1709), + [anon_sym_using] = ACTIONS(1709), + [anon_sym_AMP3] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_void] = ACTIONS(1709), + [anon_sym_delete] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1707), + [sym_number] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(1709), + [sym_super] = ACTIONS(1709), + [sym_true] = ACTIONS(1709), + [sym_false] = ACTIONS(1709), + [sym_null] = ACTIONS(1709), + [sym_undefined] = ACTIONS(1709), + [anon_sym_AT] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1709), + [anon_sym_readonly] = ACTIONS(1709), + [anon_sym_get] = ACTIONS(1709), + [anon_sym_set] = ACTIONS(1709), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_declare] = ACTIONS(1709), + [anon_sym_public] = ACTIONS(1709), + [anon_sym_private] = ACTIONS(1709), + [anon_sym_protected] = ACTIONS(1709), + [anon_sym_override] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_any] = ACTIONS(1709), + [anon_sym_number] = ACTIONS(1709), + [anon_sym_boolean] = ACTIONS(1709), + [anon_sym_string] = ACTIONS(1709), + [anon_sym_symbol] = ACTIONS(1709), + [anon_sym_object] = ACTIONS(1709), + [anon_sym_abstract] = ACTIONS(1709), + [anon_sym_extends] = ACTIONS(1709), + [anon_sym_interface] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(681)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -99426,92 +99537,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), [anon_sym_declare] = ACTIONS(2262), [anon_sym_module] = ACTIONS(2298), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [683] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(682)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2296), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_namespace] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2242), [anon_sym_var] = ACTIONS(2244), [anon_sym_let] = ACTIONS(2246), [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2253), [anon_sym_async] = ACTIONS(2255), [anon_sym_function] = ACTIONS(2257), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -99520,31 +99631,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2298), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2324), [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2300), [anon_sym_interface] = ACTIONS(2268), [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(683)] = { + [ts_builtin_sym_end] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1725), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_default] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_EQ] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_COMMA] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_typeof] = ACTIONS(1725), + [anon_sym_import] = ACTIONS(1725), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_with] = ACTIONS(1725), + [anon_sym_var] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_else] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_switch] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_try] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_debugger] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_throw] = ACTIONS(1725), + [anon_sym_COLON] = ACTIONS(1723), + [anon_sym_case] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_RBRACK] = ACTIONS(1723), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_class] = ACTIONS(1725), + [anon_sym_async] = ACTIONS(1725), + [anon_sym_function] = ACTIONS(1725), + [anon_sym_EQ_GT] = ACTIONS(1723), + [anon_sym_new] = ACTIONS(1725), + [anon_sym_using] = ACTIONS(1725), + [anon_sym_AMP3] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_TILDE] = ACTIONS(1723), + [anon_sym_void] = ACTIONS(1725), + [anon_sym_delete] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1723), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1723), + [sym_number] = ACTIONS(1723), + [sym_private_property_identifier] = ACTIONS(1723), + [sym_this] = ACTIONS(1725), + [sym_super] = ACTIONS(1725), + [sym_true] = ACTIONS(1725), + [sym_false] = ACTIONS(1725), + [sym_null] = ACTIONS(1725), + [sym_undefined] = ACTIONS(1725), + [anon_sym_AT] = ACTIONS(1723), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_QMARK] = ACTIONS(1723), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_abstract] = ACTIONS(1725), + [anon_sym_extends] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), [sym_html_comment] = ACTIONS(5), }, - [684] = { + [STATE(684)] = { [ts_builtin_sym_end] = ACTIONS(2326), [sym_identifier] = ACTIONS(2328), [anon_sym_export] = ACTIONS(2328), @@ -99592,7 +99797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2326), [anon_sym_new] = ACTIONS(2328), [anon_sym_using] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2326), + [anon_sym_AMP3] = ACTIONS(2326), [anon_sym_PIPE] = ACTIONS(2326), [anon_sym_PLUS] = ACTIONS(2328), [anon_sym_DASH] = ACTIONS(2328), @@ -99637,7 +99842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2328), [sym_html_comment] = ACTIONS(5), }, - [685] = { + [STATE(685)] = { [ts_builtin_sym_end] = ACTIONS(2330), [sym_identifier] = ACTIONS(2332), [anon_sym_export] = ACTIONS(2332), @@ -99685,7 +99890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2330), [anon_sym_new] = ACTIONS(2332), [anon_sym_using] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2330), + [anon_sym_AMP3] = ACTIONS(2330), [anon_sym_PIPE] = ACTIONS(2330), [anon_sym_PLUS] = ACTIONS(2332), [anon_sym_DASH] = ACTIONS(2332), @@ -99730,7 +99935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2332), [sym_html_comment] = ACTIONS(5), }, - [686] = { + [STATE(686)] = { [ts_builtin_sym_end] = ACTIONS(2334), [sym_identifier] = ACTIONS(2336), [anon_sym_export] = ACTIONS(2336), @@ -99778,7 +99983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2334), [anon_sym_new] = ACTIONS(2336), [anon_sym_using] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_AMP3] = ACTIONS(2334), [anon_sym_PIPE] = ACTIONS(2334), [anon_sym_PLUS] = ACTIONS(2336), [anon_sym_DASH] = ACTIONS(2336), @@ -99823,7 +100028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2336), [sym_html_comment] = ACTIONS(5), }, - [687] = { + [STATE(687)] = { [ts_builtin_sym_end] = ACTIONS(2338), [sym_identifier] = ACTIONS(2340), [anon_sym_export] = ACTIONS(2340), @@ -99871,7 +100076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2338), [anon_sym_new] = ACTIONS(2340), [anon_sym_using] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2338), + [anon_sym_AMP3] = ACTIONS(2338), [anon_sym_PIPE] = ACTIONS(2338), [anon_sym_PLUS] = ACTIONS(2340), [anon_sym_DASH] = ACTIONS(2340), @@ -99916,7 +100121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2340), [sym_html_comment] = ACTIONS(5), }, - [688] = { + [STATE(688)] = { [ts_builtin_sym_end] = ACTIONS(2342), [sym_identifier] = ACTIONS(2344), [anon_sym_export] = ACTIONS(2344), @@ -99964,7 +100169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(2342), [anon_sym_new] = ACTIONS(2344), [anon_sym_using] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_AMP3] = ACTIONS(2342), [anon_sym_PIPE] = ACTIONS(2342), [anon_sym_PLUS] = ACTIONS(2344), [anon_sym_DASH] = ACTIONS(2344), @@ -100009,54 +100214,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2344), [sym_html_comment] = ACTIONS(5), }, - [689] = { - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), + [STATE(689)] = { + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(1954), + [anon_sym_export] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_let] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(1954), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1956), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_async] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1954), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100065,45 +100270,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(1942), - [sym_private_property_identifier] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1956), + [sym_private_property_identifier] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_readonly] = ACTIONS(1954), + [anon_sym_get] = ACTIONS(1954), + [anon_sym_set] = ACTIONS(1954), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_object] = ACTIONS(1940), + [anon_sym_declare] = ACTIONS(1954), + [anon_sym_public] = ACTIONS(1954), + [anon_sym_private] = ACTIONS(1954), + [anon_sym_protected] = ACTIONS(1954), + [anon_sym_override] = ACTIONS(1954), + [anon_sym_module] = ACTIONS(1954), + [anon_sym_any] = ACTIONS(1954), + [anon_sym_number] = ACTIONS(1954), + [anon_sym_boolean] = ACTIONS(1954), + [anon_sym_string] = ACTIONS(1954), + [anon_sym_symbol] = ACTIONS(1954), + [anon_sym_object] = ACTIONS(1954), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [690] = { - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(690)] = { + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(1936), [anon_sym_export] = ACTIONS(1936), [anon_sym_STAR] = ACTIONS(1936), @@ -100111,12 +100316,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_let] = ACTIONS(1936), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(1938), @@ -100126,29 +100331,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1938), [anon_sym_async] = ACTIONS(1936), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1936), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100157,18 +100362,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(1938), [sym_private_property_identifier] = ACTIONS(1938), [anon_sym_static] = ACTIONS(1936), @@ -100189,70 +100394,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1936), [anon_sym_object] = ACTIONS(1936), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [691] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(691)] = { + [sym_declaration] = STATE(4194), + [sym_variable_declaration] = STATE(4060), + [sym_lexical_declaration] = STATE(4060), + [sym_class_declaration] = STATE(4060), + [sym_function_declaration] = STATE(4060), + [sym_generator_function_declaration] = STATE(4060), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(4060), + [sym_ambient_declaration] = STATE(4060), + [sym_abstract_class_declaration] = STATE(4060), + [sym_module] = STATE(4060), + [sym_internal_module] = STATE(4073), + [sym_import_alias] = STATE(4060), + [sym_interface_declaration] = STATE(4060), + [sym_enum_declaration] = STATE(4060), + [sym_type_alias_declaration] = STATE(4060), + [aux_sym_export_statement_repeat1] = STATE(4283), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(909), + [anon_sym_type] = ACTIONS(2346), + [anon_sym_EQ] = ACTIONS(941), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2248), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2350), + [anon_sym_var] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2356), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2362), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100261,90 +100466,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2298), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), - [anon_sym_global] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [692] = { - [sym_declaration] = STATE(4415), - [sym_variable_declaration] = STATE(4393), - [sym_lexical_declaration] = STATE(4393), - [sym_class_declaration] = STATE(4393), - [sym_function_declaration] = STATE(4393), - [sym_generator_function_declaration] = STATE(4393), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(4393), - [sym_ambient_declaration] = STATE(4393), - [sym_abstract_class_declaration] = STATE(4393), - [sym_module] = STATE(4393), - [sym_internal_module] = STATE(4399), - [sym_import_alias] = STATE(4393), - [sym_interface_declaration] = STATE(4393), - [sym_enum_declaration] = STATE(4393), - [sym_type_alias_declaration] = STATE(4393), - [aux_sym_export_statement_repeat1] = STATE(4367), + [anon_sym_declare] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2374), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(692)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(909), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(941), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2348), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_class] = ACTIONS(2358), - [anon_sym_async] = ACTIONS(2360), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100353,78 +100558,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2364), - [anon_sym_module] = ACTIONS(2366), - [anon_sym_abstract] = ACTIONS(2368), - [anon_sym_satisfies] = ACTIONS(158), - [anon_sym_global] = ACTIONS(2370), - [anon_sym_interface] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [693] = { - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), + [STATE(693)] = { + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_let] = ACTIONS(1940), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(1936), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1938), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_async] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1936), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100433,45 +100638,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(1942), - [sym_private_property_identifier] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_object] = ACTIONS(1940), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [anon_sym_object] = ACTIONS(1936), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [694] = { - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(694)] = { + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(1936), [anon_sym_export] = ACTIONS(1936), [anon_sym_STAR] = ACTIONS(1936), @@ -100479,12 +100684,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(1936), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), [anon_sym_LBRACK] = ACTIONS(1938), @@ -100494,29 +100699,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1938), [anon_sym_async] = ACTIONS(1936), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1936), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100525,18 +100730,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(1938), [sym_private_property_identifier] = ACTIONS(1938), [anon_sym_static] = ACTIONS(1936), @@ -100557,70 +100762,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1936), [anon_sym_object] = ACTIONS(1936), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [695] = { - [sym_declaration] = STATE(886), - [sym_variable_declaration] = STATE(852), - [sym_lexical_declaration] = STATE(852), - [sym_class_declaration] = STATE(852), - [sym_function_declaration] = STATE(852), - [sym_generator_function_declaration] = STATE(852), - [sym_decorator] = STATE(1290), - [sym_function_signature] = STATE(852), - [sym_ambient_declaration] = STATE(852), - [sym_abstract_class_declaration] = STATE(852), - [sym_module] = STATE(852), - [sym_internal_module] = STATE(811), - [sym_import_alias] = STATE(852), - [sym_interface_declaration] = STATE(852), - [sym_enum_declaration] = STATE(852), - [sym_type_alias_declaration] = STATE(852), - [aux_sym_export_statement_repeat1] = STATE(4284), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(909), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(695)] = { + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(1954), + [anon_sym_export] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2306), - [anon_sym_import] = ACTIONS(2242), - [anon_sym_var] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2248), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(1954), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1956), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_class] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100628,79 +100821,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(158), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(2308), - [anon_sym_module] = ACTIONS(2324), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(158), - [anon_sym_global] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2270), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1956), + [sym_private_property_identifier] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_readonly] = ACTIONS(1954), + [anon_sym_get] = ACTIONS(1954), + [anon_sym_set] = ACTIONS(1954), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1954), + [anon_sym_public] = ACTIONS(1954), + [anon_sym_private] = ACTIONS(1954), + [anon_sym_protected] = ACTIONS(1954), + [anon_sym_override] = ACTIONS(1954), + [anon_sym_module] = ACTIONS(1954), + [anon_sym_any] = ACTIONS(1954), + [anon_sym_number] = ACTIONS(1954), + [anon_sym_boolean] = ACTIONS(1954), + [anon_sym_string] = ACTIONS(1954), + [anon_sym_symbol] = ACTIONS(1954), + [anon_sym_object] = ACTIONS(1954), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [696] = { - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), + [STATE(696)] = { + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(1954), + [anon_sym_export] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_let] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1954), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1956), [anon_sym_GT] = ACTIONS(120), [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_async] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1954), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100709,90 +100914,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(1942), - [sym_private_property_identifier] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1956), + [sym_private_property_identifier] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_readonly] = ACTIONS(1954), + [anon_sym_get] = ACTIONS(1954), + [anon_sym_set] = ACTIONS(1954), [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_object] = ACTIONS(1940), + [anon_sym_declare] = ACTIONS(1954), + [anon_sym_public] = ACTIONS(1954), + [anon_sym_private] = ACTIONS(1954), + [anon_sym_protected] = ACTIONS(1954), + [anon_sym_override] = ACTIONS(1954), + [anon_sym_module] = ACTIONS(1954), + [anon_sym_any] = ACTIONS(1954), + [anon_sym_number] = ACTIONS(1954), + [anon_sym_boolean] = ACTIONS(1954), + [anon_sym_string] = ACTIONS(1954), + [anon_sym_symbol] = ACTIONS(1954), + [anon_sym_object] = ACTIONS(1954), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [697] = { - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_EQ] = ACTIONS(691), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(697)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(941), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_let] = ACTIONS(1936), + [anon_sym_namespace] = ACTIONS(2306), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100800,92 +101017,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(120), [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [sym_number] = ACTIONS(1938), - [sym_private_property_identifier] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_readonly] = ACTIONS(1936), - [anon_sym_get] = ACTIONS(1936), - [anon_sym_set] = ACTIONS(1936), - [anon_sym_QMARK] = ACTIONS(720), - [anon_sym_declare] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_protected] = ACTIONS(1936), - [anon_sym_override] = ACTIONS(1936), - [anon_sym_module] = ACTIONS(1936), - [anon_sym_any] = ACTIONS(1936), - [anon_sym_number] = ACTIONS(1936), - [anon_sym_boolean] = ACTIONS(1936), - [anon_sym_string] = ACTIONS(1936), - [anon_sym_symbol] = ACTIONS(1936), - [anon_sym_object] = ACTIONS(1936), - [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2324), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [698] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(698)] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2376), [anon_sym_export] = ACTIONS(2378), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), [anon_sym_let] = ACTIONS(2378), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_RPAREN] = ACTIONS(222), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2378), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100894,23 +101099,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2378), [anon_sym_readonly] = ACTIONS(2378), [anon_sym_get] = ACTIONS(2378), [anon_sym_set] = ACTIONS(2378), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(2378), [anon_sym_public] = ACTIONS(2378), [anon_sym_private] = ACTIONS(2378), @@ -100924,58 +101129,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2378), [anon_sym_object] = ACTIONS(2378), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [699] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(699)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_RPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -100984,23 +101189,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), [anon_sym_set] = ACTIONS(2390), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_declare] = ACTIONS(2390), [anon_sym_public] = ACTIONS(2390), [anon_sym_private] = ACTIONS(2390), @@ -101014,59 +101219,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [700] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2376), - [anon_sym_export] = ACTIONS(2378), + [STATE(700)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2378), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(836), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(836), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101075,88 +101279,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2378), - [anon_sym_readonly] = ACTIONS(2378), - [anon_sym_get] = ACTIONS(2378), - [anon_sym_set] = ACTIONS(2378), - [anon_sym_declare] = ACTIONS(2378), - [anon_sym_public] = ACTIONS(2378), - [anon_sym_private] = ACTIONS(2378), - [anon_sym_protected] = ACTIONS(2378), - [anon_sym_override] = ACTIONS(2378), - [anon_sym_module] = ACTIONS(2378), - [anon_sym_any] = ACTIONS(2378), - [anon_sym_number] = ACTIONS(2378), - [anon_sym_boolean] = ACTIONS(2378), - [anon_sym_string] = ACTIONS(2378), - [anon_sym_symbol] = ACTIONS(2378), - [anon_sym_object] = ACTIONS(2378), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [701] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(701)] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2376), [anon_sym_export] = ACTIONS(2378), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(806), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_let] = ACTIONS(2378), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2378), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101165,18 +101370,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2378), [anon_sym_readonly] = ACTIONS(2378), [anon_sym_get] = ACTIONS(2378), @@ -101194,58 +101399,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2378), [anon_sym_object] = ACTIONS(2378), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [702] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2388), - [anon_sym_export] = ACTIONS(2390), + [STATE(702)] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2390), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_let] = ACTIONS(2390), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2378), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2390), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2378), [anon_sym_function] = ACTIONS(2383), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101254,86 +101460,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_readonly] = ACTIONS(2390), - [anon_sym_get] = ACTIONS(2390), - [anon_sym_set] = ACTIONS(2390), - [anon_sym_QMARK] = ACTIONS(836), - [anon_sym_declare] = ACTIONS(2390), - [anon_sym_public] = ACTIONS(2390), - [anon_sym_private] = ACTIONS(2390), - [anon_sym_protected] = ACTIONS(2390), - [anon_sym_override] = ACTIONS(2390), - [anon_sym_module] = ACTIONS(2390), - [anon_sym_any] = ACTIONS(2390), - [anon_sym_number] = ACTIONS(2390), - [anon_sym_boolean] = ACTIONS(2390), - [anon_sym_string] = ACTIONS(2390), - [anon_sym_symbol] = ACTIONS(2390), - [anon_sym_object] = ACTIONS(2390), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [703] = { - [sym__call_signature] = STATE(5889), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(703)] = { + [sym__call_signature] = STATE(5892), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2392), [anon_sym_export] = ACTIONS(2394), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2394), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(862), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_let] = ACTIONS(2394), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2394), [anon_sym_function] = ACTIONS(2396), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2394), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101342,18 +101547,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2394), [anon_sym_readonly] = ACTIONS(2394), [anon_sym_get] = ACTIONS(2394), @@ -101371,14 +101576,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2394), [anon_sym_object] = ACTIONS(2394), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [704] = { - [sym__call_signature] = STATE(5739), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(704)] = { + [sym__call_signature] = STATE(5850), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2398), [anon_sym_export] = ACTIONS(2400), [anon_sym_STAR] = ACTIONS(120), @@ -101386,42 +101591,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_let] = ACTIONS(2400), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(705)] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(706)] = { + [sym__call_signature] = STATE(5850), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2400), [anon_sym_function] = ACTIONS(2402), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101430,18 +101811,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2400), [anon_sym_readonly] = ACTIONS(2400), [anon_sym_get] = ACTIONS(2400), @@ -101459,57 +101840,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2400), [anon_sym_object] = ACTIONS(2400), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [705] = { - [sym__call_signature] = STATE(5889), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2392), - [anon_sym_export] = ACTIONS(2394), + [STATE(707)] = { + [sym__call_signature] = STATE(5850), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2394), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2400), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2394), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2400), [anon_sym_function] = ACTIONS(2396), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101518,86 +101899,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [706] = { - [sym__call_signature] = STATE(5739), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(708)] = { + [sym__call_signature] = STATE(5850), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2398), [anon_sym_export] = ACTIONS(2400), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2400), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_let] = ACTIONS(2400), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2400), - [anon_sym_function] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2402), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101606,18 +101987,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2400), [anon_sym_readonly] = ACTIONS(2400), [anon_sym_get] = ACTIONS(2400), @@ -101635,57 +102016,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2400), [anon_sym_object] = ACTIONS(2400), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [707] = { - [sym__call_signature] = STATE(5739), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2398), - [anon_sym_export] = ACTIONS(2400), + [STATE(709)] = { + [sym__call_signature] = STATE(5892), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2394), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2394), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2400), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2394), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101694,43 +102075,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_readonly] = ACTIONS(2400), - [anon_sym_get] = ACTIONS(2400), - [anon_sym_set] = ACTIONS(2400), - [anon_sym_declare] = ACTIONS(2400), - [anon_sym_public] = ACTIONS(2400), - [anon_sym_private] = ACTIONS(2400), - [anon_sym_protected] = ACTIONS(2400), - [anon_sym_override] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_any] = ACTIONS(2400), - [anon_sym_number] = ACTIONS(2400), - [anon_sym_boolean] = ACTIONS(2400), - [anon_sym_string] = ACTIONS(2400), - [anon_sym_symbol] = ACTIONS(2400), - [anon_sym_object] = ACTIONS(2400), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_readonly] = ACTIONS(2394), + [anon_sym_get] = ACTIONS(2394), + [anon_sym_set] = ACTIONS(2394), + [anon_sym_declare] = ACTIONS(2394), + [anon_sym_public] = ACTIONS(2394), + [anon_sym_private] = ACTIONS(2394), + [anon_sym_protected] = ACTIONS(2394), + [anon_sym_override] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_any] = ACTIONS(2394), + [anon_sym_number] = ACTIONS(2394), + [anon_sym_boolean] = ACTIONS(2394), + [anon_sym_string] = ACTIONS(2394), + [anon_sym_symbol] = ACTIONS(2394), + [anon_sym_object] = ACTIONS(2394), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [708] = { - [sym__call_signature] = STATE(5739), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(710)] = { + [sym__call_signature] = STATE(5850), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2398), [anon_sym_export] = ACTIONS(2400), [anon_sym_STAR] = ACTIONS(120), @@ -101738,42 +102119,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_let] = ACTIONS(2400), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2400), [anon_sym_function] = ACTIONS(2286), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101782,18 +102163,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2400), [anon_sym_readonly] = ACTIONS(2400), [anon_sym_get] = ACTIONS(2400), @@ -101811,57 +102192,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2400), [anon_sym_object] = ACTIONS(2400), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [709] = { - [sym__call_signature] = STATE(5739), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2398), - [anon_sym_export] = ACTIONS(2400), + [STATE(711)] = { + [sym__call_signature] = STATE(5793), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(923), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2400), + [anon_sym_namespace] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2406), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2400), - [anon_sym_function] = ACTIONS(2396), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101870,87 +102250,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2400), - [anon_sym_readonly] = ACTIONS(2400), - [anon_sym_get] = ACTIONS(2400), - [anon_sym_set] = ACTIONS(2400), - [anon_sym_declare] = ACTIONS(2400), - [anon_sym_public] = ACTIONS(2400), - [anon_sym_private] = ACTIONS(2400), - [anon_sym_protected] = ACTIONS(2400), - [anon_sym_override] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_any] = ACTIONS(2400), - [anon_sym_number] = ACTIONS(2400), - [anon_sym_boolean] = ACTIONS(2400), - [anon_sym_string] = ACTIONS(2400), - [anon_sym_symbol] = ACTIONS(2400), - [anon_sym_object] = ACTIONS(2400), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_readonly] = ACTIONS(2406), + [anon_sym_get] = ACTIONS(2406), + [anon_sym_set] = ACTIONS(2406), + [anon_sym_declare] = ACTIONS(2406), + [anon_sym_public] = ACTIONS(2406), + [anon_sym_private] = ACTIONS(2406), + [anon_sym_protected] = ACTIONS(2406), + [anon_sym_override] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_any] = ACTIONS(2406), + [anon_sym_number] = ACTIONS(2406), + [anon_sym_boolean] = ACTIONS(2406), + [anon_sym_string] = ACTIONS(2406), + [anon_sym_symbol] = ACTIONS(2406), + [anon_sym_object] = ACTIONS(2406), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [710] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(712)] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2376), [anon_sym_export] = ACTIONS(2378), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(806), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_let] = ACTIONS(2378), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(881), + [anon_sym_of] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2378), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -101959,18 +102338,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2378), [anon_sym_readonly] = ACTIONS(2378), [anon_sym_get] = ACTIONS(2378), @@ -101988,55 +102367,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2378), [anon_sym_object] = ACTIONS(2378), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [711] = { - [sym__call_signature] = STATE(5790), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(713)] = { + [sym__call_signature] = STATE(5793), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2404), [anon_sym_export] = ACTIONS(2406), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_let] = ACTIONS(2406), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2406), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2406), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102045,18 +102424,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2406), [anon_sym_readonly] = ACTIONS(2406), [anon_sym_get] = ACTIONS(2406), @@ -102075,13 +102454,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2406), [anon_sym_satisfies] = ACTIONS(120), [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [712] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(714)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2408), [anon_sym_export] = ACTIONS(2410), [anon_sym_STAR] = ACTIONS(120), @@ -102089,42 +102468,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(126), [anon_sym_let] = ACTIONS(2410), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2410), [anon_sym_function] = ACTIONS(2383), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102133,18 +102512,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2410), [anon_sym_readonly] = ACTIONS(2410), [anon_sym_get] = ACTIONS(2410), @@ -102162,56 +102541,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2410), [anon_sym_object] = ACTIONS(2410), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [713] = { - [sym__call_signature] = STATE(5575), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2376), - [anon_sym_export] = ACTIONS(2378), + [STATE(715)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2378), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(903), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2378), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_in] = ACTIONS(878), - [anon_sym_of] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2410), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102220,84 +102598,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2378), - [anon_sym_readonly] = ACTIONS(2378), - [anon_sym_get] = ACTIONS(2378), - [anon_sym_set] = ACTIONS(2378), - [anon_sym_declare] = ACTIONS(2378), - [anon_sym_public] = ACTIONS(2378), - [anon_sym_private] = ACTIONS(2378), - [anon_sym_protected] = ACTIONS(2378), - [anon_sym_override] = ACTIONS(2378), - [anon_sym_module] = ACTIONS(2378), - [anon_sym_any] = ACTIONS(2378), - [anon_sym_number] = ACTIONS(2378), - [anon_sym_boolean] = ACTIONS(2378), - [anon_sym_string] = ACTIONS(2378), - [anon_sym_symbol] = ACTIONS(2378), - [anon_sym_object] = ACTIONS(2378), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [714] = { - [sym__call_signature] = STATE(5790), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2404), - [anon_sym_export] = ACTIONS(2406), + [STATE(716)] = { + [sym_catch_clause] = STATE(744), + [sym_finally_clause] = STATE(904), + [ts_builtin_sym_end] = ACTIONS(2412), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2414), + [anon_sym_import] = ACTIONS(2414), + [anon_sym_with] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_await] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_debugger] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_throw] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2414), + [anon_sym_catch] = ACTIONS(2416), + [anon_sym_finally] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2412), + [anon_sym_void] = ACTIONS(2414), + [anon_sym_delete] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2412), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2412), + [sym_number] = ACTIONS(2412), + [sym_private_property_identifier] = ACTIONS(2412), + [sym_this] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_undefined] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_abstract] = ACTIONS(2414), + [anon_sym_interface] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(717)] = { + [sym__call_signature] = STATE(5616), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2422), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(939), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(158), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2406), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2406), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102306,171 +102769,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2406), - [anon_sym_readonly] = ACTIONS(2406), - [anon_sym_get] = ACTIONS(2406), - [anon_sym_set] = ACTIONS(2406), - [anon_sym_declare] = ACTIONS(2406), - [anon_sym_public] = ACTIONS(2406), - [anon_sym_private] = ACTIONS(2406), - [anon_sym_protected] = ACTIONS(2406), - [anon_sym_override] = ACTIONS(2406), - [anon_sym_module] = ACTIONS(2406), - [anon_sym_any] = ACTIONS(2406), - [anon_sym_number] = ACTIONS(2406), - [anon_sym_boolean] = ACTIONS(2406), - [anon_sym_string] = ACTIONS(2406), - [anon_sym_symbol] = ACTIONS(2406), - [anon_sym_object] = ACTIONS(2406), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), [anon_sym_satisfies] = ACTIONS(120), - [anon_sym_implements] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [715] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_catch] = ACTIONS(1811), - [anon_sym_finally] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_private_property_identifier] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_override] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_object] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [sym__automatic_semicolon] = ACTIONS(2412), - [sym_html_comment] = ACTIONS(5), - }, - [716] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(718)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2408), [anon_sym_export] = ACTIONS(2410), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(126), [anon_sym_let] = ACTIONS(2410), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2410), [anon_sym_function] = ACTIONS(2383), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102479,18 +102856,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2410), [anon_sym_readonly] = ACTIONS(2410), [anon_sym_get] = ACTIONS(2410), @@ -102508,54 +102885,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2410), [anon_sym_object] = ACTIONS(2410), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [717] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2414), - [anon_sym_export] = ACTIONS(2416), + [STATE(719)] = { + [sym__call_signature] = STATE(5937), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2416), + [anon_sym_type] = ACTIONS(2426), [anon_sym_EQ] = ACTIONS(909), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2426), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2286), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2383), [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102564,85 +102942,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2426), + [anon_sym_readonly] = ACTIONS(2426), + [anon_sym_get] = ACTIONS(2426), + [anon_sym_set] = ACTIONS(2426), + [anon_sym_declare] = ACTIONS(2426), + [anon_sym_public] = ACTIONS(2426), + [anon_sym_private] = ACTIONS(2426), + [anon_sym_protected] = ACTIONS(2426), + [anon_sym_override] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_any] = ACTIONS(2426), + [anon_sym_number] = ACTIONS(2426), + [anon_sym_boolean] = ACTIONS(2426), + [anon_sym_string] = ACTIONS(2426), + [anon_sym_symbol] = ACTIONS(2426), + [anon_sym_object] = ACTIONS(2426), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [718] = { - [sym__call_signature] = STATE(5925), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2418), - [anon_sym_export] = ACTIONS(2420), + [STATE(720)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_catch] = ACTIONS(1781), + [anon_sym_finally] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym__automatic_semicolon] = ACTIONS(2428), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(721)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(903), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2410), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2420), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102651,83 +103114,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_readonly] = ACTIONS(2420), - [anon_sym_get] = ACTIONS(2420), - [anon_sym_set] = ACTIONS(2420), - [anon_sym_declare] = ACTIONS(2420), - [anon_sym_public] = ACTIONS(2420), - [anon_sym_private] = ACTIONS(2420), - [anon_sym_protected] = ACTIONS(2420), - [anon_sym_override] = ACTIONS(2420), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_any] = ACTIONS(2420), - [anon_sym_number] = ACTIONS(2420), - [anon_sym_boolean] = ACTIONS(2420), - [anon_sym_string] = ACTIONS(2420), - [anon_sym_symbol] = ACTIONS(2420), - [anon_sym_object] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [719] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2414), - [anon_sym_export] = ACTIONS(2416), + [STATE(722)] = { + [sym__call_signature] = STATE(5616), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2422), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_EQ] = ACTIONS(909), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(941), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2396), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102736,85 +103199,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [720] = { - [sym__call_signature] = STATE(5925), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2418), - [anon_sym_export] = ACTIONS(2420), + [STATE(723)] = { + [sym__call_signature] = STATE(5616), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2422), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(925), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(941), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(158), - [anon_sym_let] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2420), - [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2420), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102823,83 +103285,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_readonly] = ACTIONS(2420), - [anon_sym_get] = ACTIONS(2420), - [anon_sym_set] = ACTIONS(2420), - [anon_sym_declare] = ACTIONS(2420), - [anon_sym_public] = ACTIONS(2420), - [anon_sym_private] = ACTIONS(2420), - [anon_sym_protected] = ACTIONS(2420), - [anon_sym_override] = ACTIONS(2420), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_any] = ACTIONS(2420), - [anon_sym_number] = ACTIONS(2420), - [anon_sym_boolean] = ACTIONS(2420), - [anon_sym_string] = ACTIONS(2420), - [anon_sym_symbol] = ACTIONS(2420), - [anon_sym_object] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [721] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2414), - [anon_sym_export] = ACTIONS(2416), + [STATE(724)] = { + [sym__call_signature] = STATE(5616), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2422), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_EQ] = ACTIONS(909), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(941), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2422), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102908,84 +103371,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [722] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2414), - [anon_sym_export] = ACTIONS(2416), + [STATE(725)] = { + [sym__call_signature] = STATE(5616), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2422), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(941), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2416), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2422), [anon_sym_function] = ACTIONS(2396), - [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -102994,84 +103457,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [723] = { - [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2414), - [anon_sym_export] = ACTIONS(2416), + [STATE(726)] = { + [sym__call_signature] = STATE(5937), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2426), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_EQ] = ACTIONS(909), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2426), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_SEMI] = ACTIONS(158), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2402), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2383), [anon_sym_EQ_GT] = ACTIONS(915), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -103080,85 +103544,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2426), + [anon_sym_readonly] = ACTIONS(2426), + [anon_sym_get] = ACTIONS(2426), + [anon_sym_set] = ACTIONS(2426), + [anon_sym_declare] = ACTIONS(2426), + [anon_sym_public] = ACTIONS(2426), + [anon_sym_private] = ACTIONS(2426), + [anon_sym_protected] = ACTIONS(2426), + [anon_sym_override] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_any] = ACTIONS(2426), + [anon_sym_number] = ACTIONS(2426), + [anon_sym_boolean] = ACTIONS(2426), + [anon_sym_string] = ACTIONS(2426), + [anon_sym_symbol] = ACTIONS(2426), + [anon_sym_object] = ACTIONS(2426), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [724] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2408), - [anon_sym_export] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(727)] = { + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1673), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_COMMA] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_typeof] = ACTIONS(1673), + [anon_sym_import] = ACTIONS(1673), + [anon_sym_with] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_await] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_debugger] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_throw] = ACTIONS(1673), + [anon_sym_case] = ACTIONS(1673), + [anon_sym_catch] = ACTIONS(1673), + [anon_sym_finally] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_class] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_function] = ACTIONS(1673), + [anon_sym_new] = ACTIONS(1673), + [anon_sym_using] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_delete] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [sym_private_property_identifier] = ACTIONS(1671), + [sym_this] = ACTIONS(1673), + [sym_super] = ACTIONS(1673), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [sym_null] = ACTIONS(1673), + [sym_undefined] = ACTIONS(1673), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_get] = ACTIONS(1673), + [anon_sym_set] = ACTIONS(1673), + [anon_sym_declare] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1673), + [anon_sym_private] = ACTIONS(1673), + [anon_sym_protected] = ACTIONS(1673), + [anon_sym_override] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_number] = ACTIONS(1673), + [anon_sym_boolean] = ACTIONS(1673), + [anon_sym_string] = ACTIONS(1673), + [anon_sym_symbol] = ACTIONS(1673), + [anon_sym_object] = ACTIONS(1673), + [anon_sym_abstract] = ACTIONS(1673), + [anon_sym_interface] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [sym__automatic_semicolon] = ACTIONS(1681), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(728)] = { + [sym__call_signature] = STATE(5955), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2434), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(890), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(955), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_let] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2434), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -103167,170 +103715,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2434), + [anon_sym_readonly] = ACTIONS(2434), + [anon_sym_get] = ACTIONS(2434), + [anon_sym_set] = ACTIONS(2434), + [anon_sym_declare] = ACTIONS(2434), + [anon_sym_public] = ACTIONS(2434), + [anon_sym_private] = ACTIONS(2434), + [anon_sym_protected] = ACTIONS(2434), + [anon_sym_override] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_any] = ACTIONS(2434), + [anon_sym_number] = ACTIONS(2434), + [anon_sym_boolean] = ACTIONS(2434), + [anon_sym_string] = ACTIONS(2434), + [anon_sym_symbol] = ACTIONS(2434), + [anon_sym_object] = ACTIONS(2434), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_debugger] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_throw] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_catch] = ACTIONS(1661), - [anon_sym_finally] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_object] = ACTIONS(1661), - [anon_sym_abstract] = ACTIONS(1661), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [sym__automatic_semicolon] = ACTIONS(1669), - [sym_html_comment] = ACTIONS(5), - }, - [726] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(729)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2408), [anon_sym_export] = ACTIONS(2410), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2410), [anon_sym_let] = ACTIONS(2410), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2410), [anon_sym_function] = ACTIONS(2383), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -103339,18 +103800,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2410), [anon_sym_readonly] = ACTIONS(2410), [anon_sym_get] = ACTIONS(2410), @@ -103368,99 +103829,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2410), [anon_sym_object] = ACTIONS(2410), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [727] = { - [sym_catch_clause] = STATE(742), - [sym_finally_clause] = STATE(863), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2426), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_typeof] = ACTIONS(2426), - [anon_sym_import] = ACTIONS(2426), - [anon_sym_with] = ACTIONS(2426), - [anon_sym_var] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_switch] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_await] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_debugger] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_throw] = ACTIONS(2426), - [anon_sym_case] = ACTIONS(2426), - [anon_sym_catch] = ACTIONS(2428), - [anon_sym_finally] = ACTIONS(2430), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2426), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_using] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_TILDE] = ACTIONS(2424), - [anon_sym_void] = ACTIONS(2426), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2424), - [sym_number] = ACTIONS(2424), - [sym_private_property_identifier] = ACTIONS(2424), - [sym_this] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_true] = ACTIONS(2426), - [sym_false] = ACTIONS(2426), - [sym_null] = ACTIONS(2426), - [sym_undefined] = ACTIONS(2426), - [anon_sym_AT] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2426), - [anon_sym_readonly] = ACTIONS(2426), - [anon_sym_get] = ACTIONS(2426), - [anon_sym_set] = ACTIONS(2426), - [anon_sym_declare] = ACTIONS(2426), - [anon_sym_public] = ACTIONS(2426), - [anon_sym_private] = ACTIONS(2426), - [anon_sym_protected] = ACTIONS(2426), - [anon_sym_override] = ACTIONS(2426), - [anon_sym_module] = ACTIONS(2426), - [anon_sym_any] = ACTIONS(2426), - [anon_sym_number] = ACTIONS(2426), - [anon_sym_boolean] = ACTIONS(2426), - [anon_sym_string] = ACTIONS(2426), - [anon_sym_symbol] = ACTIONS(2426), - [anon_sym_object] = ACTIONS(2426), - [anon_sym_abstract] = ACTIONS(2426), - [anon_sym_interface] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [728] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(730)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2408), [anon_sym_export] = ACTIONS(2410), [anon_sym_STAR] = ACTIONS(120), @@ -103472,36 +103847,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2410), [anon_sym_function] = ACTIONS(2383), [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -103510,18 +103885,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2410), [anon_sym_readonly] = ACTIONS(2410), [anon_sym_get] = ACTIONS(2410), @@ -103539,309 +103914,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2410), [anon_sym_object] = ACTIONS(2410), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_private_property_identifier] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_override] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_object] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [anon_sym_PIPE_RBRACE] = ACTIONS(1809), - [sym__automatic_semicolon] = ACTIONS(1809), - [sym_html_comment] = ACTIONS(5), - }, - [730] = { - [ts_builtin_sym_end] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_namespace] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_COMMA] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_typeof] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_with] = ACTIONS(1725), - [anon_sym_var] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_await] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_debugger] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_throw] = ACTIONS(1725), - [anon_sym_case] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_finally] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1723), - [anon_sym_class] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(1725), - [anon_sym_new] = ACTIONS(1725), - [anon_sym_using] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_TILDE] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1725), - [anon_sym_delete] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1723), - [sym_number] = ACTIONS(1723), - [sym_private_property_identifier] = ACTIONS(1723), - [sym_this] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_null] = ACTIONS(1725), - [sym_undefined] = ACTIONS(1725), - [anon_sym_AT] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_readonly] = ACTIONS(1725), - [anon_sym_get] = ACTIONS(1725), - [anon_sym_set] = ACTIONS(1725), - [anon_sym_declare] = ACTIONS(1725), - [anon_sym_public] = ACTIONS(1725), - [anon_sym_private] = ACTIONS(1725), - [anon_sym_protected] = ACTIONS(1725), - [anon_sym_override] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_any] = ACTIONS(1725), - [anon_sym_number] = ACTIONS(1725), - [anon_sym_boolean] = ACTIONS(1725), - [anon_sym_string] = ACTIONS(1725), - [anon_sym_symbol] = ACTIONS(1725), - [anon_sym_object] = ACTIONS(1725), - [anon_sym_abstract] = ACTIONS(1725), - [anon_sym_interface] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [sym_html_comment] = ACTIONS(5), - }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_COMMA] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_debugger] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_throw] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_using] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_number] = ACTIONS(1659), - [sym_private_property_identifier] = ACTIONS(1659), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_object] = ACTIONS(1661), - [anon_sym_abstract] = ACTIONS(1661), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_PIPE_RBRACE] = ACTIONS(1659), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym_html_comment] = ACTIONS(5), - }, - [732] = { - [sym__call_signature] = STATE(5770), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2408), - [anon_sym_export] = ACTIONS(2410), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(731)] = { + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_catch] = ACTIONS(1791), + [anon_sym_finally] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(732)] = { + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_namespace] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_typeof] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_with] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_await] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_debugger] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_void] = ACTIONS(1787), + [anon_sym_delete] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1785), + [sym_number] = ACTIONS(1785), + [sym_private_property_identifier] = ACTIONS(1785), + [sym_this] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_null] = ACTIONS(1787), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_readonly] = ACTIONS(1787), + [anon_sym_get] = ACTIONS(1787), + [anon_sym_set] = ACTIONS(1787), + [anon_sym_declare] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_protected] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_module] = ACTIONS(1787), + [anon_sym_any] = ACTIONS(1787), + [anon_sym_number] = ACTIONS(1787), + [anon_sym_boolean] = ACTIONS(1787), + [anon_sym_string] = ACTIONS(1787), + [anon_sym_symbol] = ACTIONS(1787), + [anon_sym_object] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_PIPE_RBRACE] = ACTIONS(1785), + [sym__automatic_semicolon] = ACTIONS(1785), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(733)] = { + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_namespace] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_typeof] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_var] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_debugger] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_case] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(1795), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_void] = ACTIONS(1795), + [anon_sym_delete] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_number] = ACTIONS(1793), + [sym_private_property_identifier] = ACTIONS(1793), + [sym_this] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_null] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_readonly] = ACTIONS(1795), + [anon_sym_get] = ACTIONS(1795), + [anon_sym_set] = ACTIONS(1795), + [anon_sym_declare] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_private] = ACTIONS(1795), + [anon_sym_protected] = ACTIONS(1795), + [anon_sym_override] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_any] = ACTIONS(1795), + [anon_sym_number] = ACTIONS(1795), + [anon_sym_boolean] = ACTIONS(1795), + [anon_sym_string] = ACTIONS(1795), + [anon_sym_symbol] = ACTIONS(1795), + [anon_sym_object] = ACTIONS(1795), + [anon_sym_abstract] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [anon_sym_PIPE_RBRACE] = ACTIONS(1793), + [sym__automatic_semicolon] = ACTIONS(1793), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(734)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_catch] = ACTIONS(1781), + [anon_sym_finally] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(735)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_PIPE_RBRACE] = ACTIONS(1779), + [sym__automatic_semicolon] = ACTIONS(1779), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(736)] = { + [sym__call_signature] = STATE(5955), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2434), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2434), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -103850,83 +104395,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2434), + [anon_sym_readonly] = ACTIONS(2434), + [anon_sym_get] = ACTIONS(2434), + [anon_sym_set] = ACTIONS(2434), + [anon_sym_declare] = ACTIONS(2434), + [anon_sym_public] = ACTIONS(2434), + [anon_sym_private] = ACTIONS(2434), + [anon_sym_protected] = ACTIONS(2434), + [anon_sym_override] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_any] = ACTIONS(2434), + [anon_sym_number] = ACTIONS(2434), + [anon_sym_boolean] = ACTIONS(2434), + [anon_sym_string] = ACTIONS(2434), + [anon_sym_symbol] = ACTIONS(2434), + [anon_sym_object] = ACTIONS(2434), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [733] = { - [sym__call_signature] = STATE(5936), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(737)] = { + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1673), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_COMMA] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_typeof] = ACTIONS(1673), + [anon_sym_import] = ACTIONS(1673), + [anon_sym_with] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_await] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_debugger] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_throw] = ACTIONS(1673), + [anon_sym_case] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_class] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_function] = ACTIONS(1673), + [anon_sym_new] = ACTIONS(1673), + [anon_sym_using] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_delete] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [sym_private_property_identifier] = ACTIONS(1671), + [sym_this] = ACTIONS(1673), + [sym_super] = ACTIONS(1673), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [sym_null] = ACTIONS(1673), + [sym_undefined] = ACTIONS(1673), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_get] = ACTIONS(1673), + [anon_sym_set] = ACTIONS(1673), + [anon_sym_declare] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1673), + [anon_sym_private] = ACTIONS(1673), + [anon_sym_protected] = ACTIONS(1673), + [anon_sym_override] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_number] = ACTIONS(1673), + [anon_sym_boolean] = ACTIONS(1673), + [anon_sym_string] = ACTIONS(1673), + [anon_sym_symbol] = ACTIONS(1673), + [anon_sym_object] = ACTIONS(1673), + [anon_sym_abstract] = ACTIONS(1673), + [anon_sym_interface] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [anon_sym_PIPE_RBRACE] = ACTIONS(1671), + [sym__automatic_semicolon] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(738)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_in] = ACTIONS(881), + [anon_sym_of] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2436), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -103935,83 +104565,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_object] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(739)] = { + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_PIPE_RBRACE] = ACTIONS(1789), + [sym__automatic_semicolon] = ACTIONS(1789), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(740)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_PIPE_RBRACE] = ACTIONS(1779), + [sym__automatic_semicolon] = ACTIONS(2438), [sym_html_comment] = ACTIONS(5), }, - [734] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(741)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -104020,18 +104820,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -104049,139 +104849,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_COMMA] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_typeof] = ACTIONS(1871), - [anon_sym_import] = ACTIONS(1871), - [anon_sym_with] = ACTIONS(1871), - [anon_sym_var] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_await] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_debugger] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1869), - [sym_number] = ACTIONS(1869), - [sym_private_property_identifier] = ACTIONS(1869), - [sym_this] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_undefined] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_readonly] = ACTIONS(1871), - [anon_sym_get] = ACTIONS(1871), - [anon_sym_set] = ACTIONS(1871), - [anon_sym_declare] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_override] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_any] = ACTIONS(1871), - [anon_sym_number] = ACTIONS(1871), - [anon_sym_boolean] = ACTIONS(1871), - [anon_sym_string] = ACTIONS(1871), - [anon_sym_symbol] = ACTIONS(1871), - [anon_sym_object] = ACTIONS(1871), - [anon_sym_abstract] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_PIPE_RBRACE] = ACTIONS(1869), - [sym__automatic_semicolon] = ACTIONS(1869), - [sym_html_comment] = ACTIONS(5), - }, - [736] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(742)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(1027), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(878), - [anon_sym_of] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -104190,18 +104904,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -104219,139 +104933,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_identifier] = ACTIONS(1739), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_type] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_COMMA] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_typeof] = ACTIONS(1739), - [anon_sym_import] = ACTIONS(1739), - [anon_sym_with] = ACTIONS(1739), - [anon_sym_var] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_switch] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_await] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_debugger] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_throw] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1739), - [anon_sym_yield] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1739), - [anon_sym_function] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_void] = ACTIONS(1739), - [anon_sym_delete] = ACTIONS(1739), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1737), - [sym_number] = ACTIONS(1737), - [sym_private_property_identifier] = ACTIONS(1737), - [sym_this] = ACTIONS(1739), - [sym_super] = ACTIONS(1739), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_undefined] = ACTIONS(1739), - [anon_sym_AT] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_readonly] = ACTIONS(1739), - [anon_sym_get] = ACTIONS(1739), - [anon_sym_set] = ACTIONS(1739), - [anon_sym_declare] = ACTIONS(1739), - [anon_sym_public] = ACTIONS(1739), - [anon_sym_private] = ACTIONS(1739), - [anon_sym_protected] = ACTIONS(1739), - [anon_sym_override] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_any] = ACTIONS(1739), - [anon_sym_number] = ACTIONS(1739), - [anon_sym_boolean] = ACTIONS(1739), - [anon_sym_string] = ACTIONS(1739), - [anon_sym_symbol] = ACTIONS(1739), - [anon_sym_object] = ACTIONS(1739), - [anon_sym_abstract] = ACTIONS(1739), - [anon_sym_interface] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [anon_sym_PIPE_RBRACE] = ACTIONS(1737), - [sym__automatic_semicolon] = ACTIONS(1737), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [738] = { - [sym__call_signature] = STATE(5936), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), + [STATE(743)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(955), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1019), [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_let] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2436), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -104360,295 +104988,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_object] = ACTIONS(2436), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_private_property_identifier] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_override] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_object] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [anon_sym_PIPE_RBRACE] = ACTIONS(1809), - [sym__automatic_semicolon] = ACTIONS(2438), - [sym_html_comment] = ACTIONS(5), - }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_namespace] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_COMMA] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_typeof] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_with] = ACTIONS(1725), - [anon_sym_var] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_await] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_debugger] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_throw] = ACTIONS(1725), - [anon_sym_case] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1723), - [anon_sym_class] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(1725), - [anon_sym_new] = ACTIONS(1725), - [anon_sym_using] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_TILDE] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1725), - [anon_sym_delete] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1723), - [sym_number] = ACTIONS(1723), - [sym_private_property_identifier] = ACTIONS(1723), - [sym_this] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_null] = ACTIONS(1725), - [sym_undefined] = ACTIONS(1725), - [anon_sym_AT] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_readonly] = ACTIONS(1725), - [anon_sym_get] = ACTIONS(1725), - [anon_sym_set] = ACTIONS(1725), - [anon_sym_declare] = ACTIONS(1725), - [anon_sym_public] = ACTIONS(1725), - [anon_sym_private] = ACTIONS(1725), - [anon_sym_protected] = ACTIONS(1725), - [anon_sym_override] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_any] = ACTIONS(1725), - [anon_sym_number] = ACTIONS(1725), - [anon_sym_boolean] = ACTIONS(1725), - [anon_sym_string] = ACTIONS(1725), - [anon_sym_symbol] = ACTIONS(1725), - [anon_sym_object] = ACTIONS(1725), - [anon_sym_abstract] = ACTIONS(1725), - [anon_sym_interface] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [anon_sym_PIPE_RBRACE] = ACTIONS(1723), - [sym__automatic_semicolon] = ACTIONS(1723), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [741] = { - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_typeof] = ACTIONS(1811), - [anon_sym_import] = ACTIONS(1811), - [anon_sym_with] = ACTIONS(1811), - [anon_sym_var] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_await] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_debugger] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_throw] = ACTIONS(1811), - [anon_sym_case] = ACTIONS(1811), - [anon_sym_catch] = ACTIONS(1811), - [anon_sym_finally] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_class] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_function] = ACTIONS(1811), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(1811), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_void] = ACTIONS(1811), - [anon_sym_delete] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1809), - [sym_number] = ACTIONS(1809), - [sym_private_property_identifier] = ACTIONS(1809), - [sym_this] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_undefined] = ACTIONS(1811), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1811), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), - [anon_sym_declare] = ACTIONS(1811), - [anon_sym_public] = ACTIONS(1811), - [anon_sym_private] = ACTIONS(1811), - [anon_sym_protected] = ACTIONS(1811), - [anon_sym_override] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_any] = ACTIONS(1811), - [anon_sym_number] = ACTIONS(1811), - [anon_sym_boolean] = ACTIONS(1811), - [anon_sym_string] = ACTIONS(1811), - [anon_sym_symbol] = ACTIONS(1811), - [anon_sym_object] = ACTIONS(1811), - [anon_sym_abstract] = ACTIONS(1811), - [anon_sym_interface] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [742] = { - [sym_finally_clause] = STATE(903), + [STATE(744)] = { + [sym_finally_clause] = STATE(871), [ts_builtin_sym_end] = ACTIONS(2440), [sym_identifier] = ACTIONS(2442), [anon_sym_export] = ACTIONS(2442), @@ -104680,7 +105053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2442), [anon_sym_throw] = ACTIONS(2442), [anon_sym_case] = ACTIONS(2442), - [anon_sym_finally] = ACTIONS(2430), + [anon_sym_finally] = ACTIONS(2418), [anon_sym_yield] = ACTIONS(2442), [anon_sym_LBRACK] = ACTIONS(2440), [anon_sym_DQUOTE] = ACTIONS(2440), @@ -104731,50 +105104,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2442), [sym_html_comment] = ACTIONS(5), }, - [743] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(745)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(1025), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -104783,18 +105156,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -104812,53 +105185,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [744] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(746)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(1031), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -104867,18 +105240,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -104896,53 +105269,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [745] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(747)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1023), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -104951,18 +105324,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -104980,53 +105353,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [746] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(748)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(1029), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -105035,18 +105408,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105064,53 +105437,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [747] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(749)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(1021), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -105119,18 +105492,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105148,53 +105521,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [748] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(750)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -105203,18 +105576,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105232,53 +105605,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [749] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [STATE(751)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(1033), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -105287,18 +105660,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105316,389 +105689,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [750] = { - [sym_statement_block] = STATE(911), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), + [STATE(752)] = { + [sym_statement_block] = STATE(867), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), [anon_sym_DOT] = ACTIONS(2446), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [sym_html_comment] = ACTIONS(5), - }, - [751] = { - [sym_statement_block] = STATE(911), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_DOT] = ACTIONS(2448), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [sym_html_comment] = ACTIONS(5), - }, - [752] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2388), - [anon_sym_export] = ACTIONS(2390), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_readonly] = ACTIONS(2390), - [anon_sym_get] = ACTIONS(2390), - [anon_sym_set] = ACTIONS(2390), - [anon_sym_declare] = ACTIONS(2390), - [anon_sym_public] = ACTIONS(2390), - [anon_sym_private] = ACTIONS(2390), - [anon_sym_protected] = ACTIONS(2390), - [anon_sym_override] = ACTIONS(2390), - [anon_sym_module] = ACTIONS(2390), - [anon_sym_any] = ACTIONS(2390), - [anon_sym_number] = ACTIONS(2390), - [anon_sym_boolean] = ACTIONS(2390), - [anon_sym_string] = ACTIONS(2390), - [anon_sym_symbol] = ACTIONS(2390), - [anon_sym_object] = ACTIONS(2390), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [753] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), - [sym_identifier] = ACTIONS(2388), - [anon_sym_export] = ACTIONS(2390), - [anon_sym_STAR] = ACTIONS(120), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_as] = ACTIONS(120), - [anon_sym_namespace] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_GT_GT] = ACTIONS(120), - [anon_sym_GT_GT_GT] = ACTIONS(120), - [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), - [anon_sym_CARET] = ACTIONS(120), - [anon_sym_PIPE] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(120), - [anon_sym_DASH] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(120), - [anon_sym_PERCENT] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_readonly] = ACTIONS(2390), - [anon_sym_get] = ACTIONS(2390), - [anon_sym_set] = ACTIONS(2390), - [anon_sym_declare] = ACTIONS(2390), - [anon_sym_public] = ACTIONS(2390), - [anon_sym_private] = ACTIONS(2390), - [anon_sym_protected] = ACTIONS(2390), - [anon_sym_override] = ACTIONS(2390), - [anon_sym_module] = ACTIONS(2390), - [anon_sym_any] = ACTIONS(2390), - [anon_sym_number] = ACTIONS(2390), - [anon_sym_boolean] = ACTIONS(2390), - [anon_sym_string] = ACTIONS(2390), - [anon_sym_symbol] = ACTIONS(2390), - [anon_sym_object] = ACTIONS(2390), - [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [754] = { - [sym__call_signature] = STATE(5660), - [sym_formal_parameters] = STATE(3848), - [sym_type_parameters] = STATE(5231), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(753)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), [sym_identifier] = ACTIONS(2388), [anon_sym_export] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(120), [anon_sym_type] = ACTIONS(2390), - [anon_sym_EQ] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(1035), [anon_sym_as] = ACTIONS(120), [anon_sym_namespace] = ACTIONS(2390), [anon_sym_let] = ACTIONS(2390), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2380), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2383), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -105707,18 +105828,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2385), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2390), [anon_sym_readonly] = ACTIONS(2390), [anon_sym_get] = ACTIONS(2390), @@ -105736,10 +105857,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2390), [anon_sym_object] = ACTIONS(2390), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [755] = { + [STATE(754)] = { + [sym_statement_block] = STATE(867), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(755)] = { [ts_builtin_sym_end] = ACTIONS(2450), [sym_identifier] = ACTIONS(2452), [anon_sym_export] = ACTIONS(2452), @@ -105760,7 +105965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2452), [anon_sym_for] = ACTIONS(2452), [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2454), [anon_sym_await] = ACTIONS(2452), [anon_sym_while] = ACTIONS(2452), [anon_sym_do] = ACTIONS(2452), @@ -105819,565 +106024,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2452), [anon_sym_interface] = ACTIONS(2452), [anon_sym_enum] = ACTIONS(2452), - [sym__automatic_semicolon] = ACTIONS(2450), - [sym_html_comment] = ACTIONS(5), - }, - [756] = { - [ts_builtin_sym_end] = ACTIONS(2454), - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_default] = ACTIONS(2456), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_namespace] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2454), - [anon_sym_typeof] = ACTIONS(2456), - [anon_sym_import] = ACTIONS(2456), - [anon_sym_with] = ACTIONS(2456), - [anon_sym_var] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_else] = ACTIONS(2456), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_switch] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_await] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_debugger] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_throw] = ACTIONS(2456), - [anon_sym_case] = ACTIONS(2456), - [anon_sym_yield] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_class] = ACTIONS(2456), - [anon_sym_async] = ACTIONS(2456), - [anon_sym_function] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_using] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_SLASH] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_void] = ACTIONS(2456), - [anon_sym_delete] = ACTIONS(2456), - [anon_sym_PLUS_PLUS] = ACTIONS(2454), - [anon_sym_DASH_DASH] = ACTIONS(2454), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2454), - [sym_number] = ACTIONS(2454), - [sym_private_property_identifier] = ACTIONS(2454), - [sym_this] = ACTIONS(2456), - [sym_super] = ACTIONS(2456), - [sym_true] = ACTIONS(2456), - [sym_false] = ACTIONS(2456), - [sym_null] = ACTIONS(2456), - [sym_undefined] = ACTIONS(2456), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_readonly] = ACTIONS(2456), - [anon_sym_get] = ACTIONS(2456), - [anon_sym_set] = ACTIONS(2456), - [anon_sym_declare] = ACTIONS(2456), - [anon_sym_public] = ACTIONS(2456), - [anon_sym_private] = ACTIONS(2456), - [anon_sym_protected] = ACTIONS(2456), - [anon_sym_override] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_any] = ACTIONS(2456), - [anon_sym_number] = ACTIONS(2456), - [anon_sym_boolean] = ACTIONS(2456), - [anon_sym_string] = ACTIONS(2456), - [anon_sym_symbol] = ACTIONS(2456), - [anon_sym_object] = ACTIONS(2456), - [anon_sym_abstract] = ACTIONS(2456), - [anon_sym_interface] = ACTIONS(2456), - [anon_sym_enum] = ACTIONS(2456), [sym__automatic_semicolon] = ACTIONS(2454), [sym_html_comment] = ACTIONS(5), }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1701), - [anon_sym_export] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_namespace] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_typeof] = ACTIONS(1701), - [anon_sym_import] = ACTIONS(1701), - [anon_sym_with] = ACTIONS(1701), - [anon_sym_var] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_switch] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_await] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_debugger] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_throw] = ACTIONS(1701), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_async] = ACTIONS(1701), - [anon_sym_function] = ACTIONS(1701), - [anon_sym_new] = ACTIONS(1701), - [anon_sym_using] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1701), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_void] = ACTIONS(1701), - [anon_sym_delete] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1699), - [sym_number] = ACTIONS(1699), - [sym_private_property_identifier] = ACTIONS(1699), - [sym_this] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_true] = ACTIONS(1701), - [sym_false] = ACTIONS(1701), - [sym_null] = ACTIONS(1701), - [sym_undefined] = ACTIONS(1701), - [anon_sym_AT] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_readonly] = ACTIONS(1701), - [anon_sym_get] = ACTIONS(1701), - [anon_sym_set] = ACTIONS(1701), - [anon_sym_declare] = ACTIONS(1701), - [anon_sym_public] = ACTIONS(1701), - [anon_sym_private] = ACTIONS(1701), - [anon_sym_protected] = ACTIONS(1701), - [anon_sym_override] = ACTIONS(1701), - [anon_sym_module] = ACTIONS(1701), - [anon_sym_any] = ACTIONS(1701), - [anon_sym_number] = ACTIONS(1701), - [anon_sym_boolean] = ACTIONS(1701), - [anon_sym_string] = ACTIONS(1701), - [anon_sym_symbol] = ACTIONS(1701), - [anon_sym_object] = ACTIONS(1701), - [anon_sym_abstract] = ACTIONS(1701), - [anon_sym_interface] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [sym_html_comment] = ACTIONS(5), - }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(2458), + [STATE(756)] = { + [ts_builtin_sym_end] = ACTIONS(2456), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(757)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4688), + [sym_optional_tuple_parameter] = STATE(4688), + [sym_optional_type] = STATE(4688), + [sym_rest_type] = STATE(4688), + [sym__tuple_type_member] = STATE(4688), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2460), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_typeof] = ACTIONS(2460), - [anon_sym_import] = ACTIONS(2460), - [anon_sym_with] = ACTIONS(2460), - [anon_sym_var] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_const] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_else] = ACTIONS(2460), - [anon_sym_if] = ACTIONS(2460), - [anon_sym_switch] = ACTIONS(2460), - [anon_sym_for] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_await] = ACTIONS(2460), - [anon_sym_while] = ACTIONS(2460), - [anon_sym_do] = ACTIONS(2460), - [anon_sym_try] = ACTIONS(2460), - [anon_sym_break] = ACTIONS(2460), - [anon_sym_continue] = ACTIONS(2460), - [anon_sym_debugger] = ACTIONS(2460), - [anon_sym_return] = ACTIONS(2460), - [anon_sym_throw] = ACTIONS(2460), - [anon_sym_case] = ACTIONS(2460), - [anon_sym_yield] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2460), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2460), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_using] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_SLASH] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_void] = ACTIONS(2460), - [anon_sym_delete] = ACTIONS(2460), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2458), - [sym_number] = ACTIONS(2458), - [sym_private_property_identifier] = ACTIONS(2458), - [sym_this] = ACTIONS(2460), - [sym_super] = ACTIONS(2460), - [sym_true] = ACTIONS(2460), - [sym_false] = ACTIONS(2460), - [sym_null] = ACTIONS(2460), - [sym_undefined] = ACTIONS(2460), - [anon_sym_AT] = ACTIONS(2458), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_readonly] = ACTIONS(2460), - [anon_sym_get] = ACTIONS(2460), - [anon_sym_set] = ACTIONS(2460), - [anon_sym_declare] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_protected] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_any] = ACTIONS(2460), - [anon_sym_number] = ACTIONS(2460), - [anon_sym_boolean] = ACTIONS(2460), - [anon_sym_string] = ACTIONS(2460), - [anon_sym_symbol] = ACTIONS(2460), - [anon_sym_object] = ACTIONS(2460), - [anon_sym_abstract] = ACTIONS(2460), - [anon_sym_interface] = ACTIONS(2460), - [anon_sym_enum] = ACTIONS(2460), - [sym__automatic_semicolon] = ACTIONS(2462), - [sym_html_comment] = ACTIONS(5), - }, - [759] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2466), - [anon_sym_finally] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2464), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_TILDE] = ACTIONS(2464), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2464), - [sym_number] = ACTIONS(2464), - [sym_private_property_identifier] = ACTIONS(2464), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2464), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [sym_html_comment] = ACTIONS(5), - }, - [760] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(4784), - [sym_optional_tuple_parameter] = STATE(4784), - [sym_optional_type] = STATE(4784), - [sym_rest_type] = STATE(4784), - [sym__tuple_type_member] = STATE(4784), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(2470), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [761] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5194), - [sym_optional_tuple_parameter] = STATE(5194), - [sym_optional_type] = STATE(5194), - [sym_rest_type] = STATE(5194), - [sym__tuple_type_member] = STATE(5194), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2482), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [762] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(4649), - [sym_optional_tuple_parameter] = STATE(4649), - [sym_optional_type] = STATE(4649), - [sym_rest_type] = STATE(4649), - [sym__tuple_type_member] = STATE(4649), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(2484), + [anon_sym_COMMA] = ACTIONS(2462), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2486), + [anon_sym_RBRACK] = ACTIONS(2464), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -106386,81 +106176,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [763] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(4682), - [sym_optional_tuple_parameter] = STATE(4682), - [sym_optional_type] = STATE(4682), - [sym_rest_type] = STATE(4682), - [sym__tuple_type_member] = STATE(4682), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(758)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_COMMA] = ACTIONS(2472), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2490), + [anon_sym_RBRACK] = ACTIONS(2474), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -106469,1020 +106259,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_namespace] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_with] = ACTIONS(1705), - [anon_sym_var] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_switch] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_debugger] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_throw] = ACTIONS(1705), - [anon_sym_case] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1705), - [anon_sym_delete] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_private_property_identifier] = ACTIONS(1703), - [sym_this] = ACTIONS(1705), - [sym_super] = ACTIONS(1705), - [sym_true] = ACTIONS(1705), - [sym_false] = ACTIONS(1705), - [sym_null] = ACTIONS(1705), - [sym_undefined] = ACTIONS(1705), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1705), - [anon_sym_readonly] = ACTIONS(1705), - [anon_sym_get] = ACTIONS(1705), - [anon_sym_set] = ACTIONS(1705), - [anon_sym_declare] = ACTIONS(1705), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_override] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_any] = ACTIONS(1705), - [anon_sym_number] = ACTIONS(1705), - [anon_sym_boolean] = ACTIONS(1705), - [anon_sym_string] = ACTIONS(1705), - [anon_sym_symbol] = ACTIONS(1705), - [anon_sym_object] = ACTIONS(1705), - [anon_sym_abstract] = ACTIONS(1705), - [anon_sym_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [sym__automatic_semicolon] = ACTIONS(1711), - [sym_html_comment] = ACTIONS(5), - }, - [765] = { - [ts_builtin_sym_end] = ACTIONS(1741), - [sym_identifier] = ACTIONS(1743), - [anon_sym_export] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_type] = ACTIONS(1743), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_typeof] = ACTIONS(1743), - [anon_sym_import] = ACTIONS(1743), - [anon_sym_with] = ACTIONS(1743), - [anon_sym_var] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_else] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_switch] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_await] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_debugger] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_throw] = ACTIONS(1743), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_yield] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_async] = ACTIONS(1743), - [anon_sym_function] = ACTIONS(1743), - [anon_sym_new] = ACTIONS(1743), - [anon_sym_using] = ACTIONS(1743), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_void] = ACTIONS(1743), - [anon_sym_delete] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1741), - [sym_number] = ACTIONS(1741), - [sym_private_property_identifier] = ACTIONS(1741), - [sym_this] = ACTIONS(1743), - [sym_super] = ACTIONS(1743), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [sym_undefined] = ACTIONS(1743), - [anon_sym_AT] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_readonly] = ACTIONS(1743), - [anon_sym_get] = ACTIONS(1743), - [anon_sym_set] = ACTIONS(1743), - [anon_sym_declare] = ACTIONS(1743), - [anon_sym_public] = ACTIONS(1743), - [anon_sym_private] = ACTIONS(1743), - [anon_sym_protected] = ACTIONS(1743), - [anon_sym_override] = ACTIONS(1743), - [anon_sym_module] = ACTIONS(1743), - [anon_sym_any] = ACTIONS(1743), - [anon_sym_number] = ACTIONS(1743), - [anon_sym_boolean] = ACTIONS(1743), - [anon_sym_string] = ACTIONS(1743), - [anon_sym_symbol] = ACTIONS(1743), - [anon_sym_object] = ACTIONS(1743), - [anon_sym_abstract] = ACTIONS(1743), - [anon_sym_interface] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [sym__automatic_semicolon] = ACTIONS(1749), - [sym_html_comment] = ACTIONS(5), - }, - [766] = { - [ts_builtin_sym_end] = ACTIONS(1761), - [sym_identifier] = ACTIONS(1763), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_default] = ACTIONS(1763), - [anon_sym_type] = ACTIONS(1763), - [anon_sym_namespace] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_typeof] = ACTIONS(1763), - [anon_sym_import] = ACTIONS(1763), - [anon_sym_with] = ACTIONS(1763), - [anon_sym_var] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_else] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_switch] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1761), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_debugger] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_throw] = ACTIONS(1763), - [anon_sym_case] = ACTIONS(1763), - [anon_sym_yield] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1761), - [anon_sym_DQUOTE] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_class] = ACTIONS(1763), - [anon_sym_async] = ACTIONS(1763), - [anon_sym_function] = ACTIONS(1763), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_using] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_SLASH] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_void] = ACTIONS(1763), - [anon_sym_delete] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1761), - [anon_sym_DASH_DASH] = ACTIONS(1761), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1761), - [sym_number] = ACTIONS(1761), - [sym_private_property_identifier] = ACTIONS(1761), - [sym_this] = ACTIONS(1763), - [sym_super] = ACTIONS(1763), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_undefined] = ACTIONS(1763), - [anon_sym_AT] = ACTIONS(1761), - [anon_sym_static] = ACTIONS(1763), - [anon_sym_readonly] = ACTIONS(1763), - [anon_sym_get] = ACTIONS(1763), - [anon_sym_set] = ACTIONS(1763), - [anon_sym_declare] = ACTIONS(1763), - [anon_sym_public] = ACTIONS(1763), - [anon_sym_private] = ACTIONS(1763), - [anon_sym_protected] = ACTIONS(1763), - [anon_sym_override] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_any] = ACTIONS(1763), - [anon_sym_number] = ACTIONS(1763), - [anon_sym_boolean] = ACTIONS(1763), - [anon_sym_string] = ACTIONS(1763), - [anon_sym_symbol] = ACTIONS(1763), - [anon_sym_object] = ACTIONS(1763), - [anon_sym_abstract] = ACTIONS(1763), - [anon_sym_interface] = ACTIONS(1763), - [anon_sym_enum] = ACTIONS(1763), - [sym__automatic_semicolon] = ACTIONS(1769), - [sym_html_comment] = ACTIONS(5), - }, - [767] = { - [ts_builtin_sym_end] = ACTIONS(1689), - [sym_identifier] = ACTIONS(1691), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_typeof] = ACTIONS(1691), - [anon_sym_import] = ACTIONS(1691), - [anon_sym_with] = ACTIONS(1691), - [anon_sym_var] = ACTIONS(1691), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_switch] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_await] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_debugger] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_throw] = ACTIONS(1691), - [anon_sym_case] = ACTIONS(1691), - [anon_sym_yield] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1689), - [anon_sym_DQUOTE] = ACTIONS(1689), - [anon_sym_SQUOTE] = ACTIONS(1689), - [anon_sym_class] = ACTIONS(1691), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_function] = ACTIONS(1691), - [anon_sym_new] = ACTIONS(1691), - [anon_sym_using] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_SLASH] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1689), - [anon_sym_void] = ACTIONS(1691), - [anon_sym_delete] = ACTIONS(1691), - [anon_sym_PLUS_PLUS] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1689), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1689), - [sym_number] = ACTIONS(1689), - [sym_private_property_identifier] = ACTIONS(1689), - [sym_this] = ACTIONS(1691), - [sym_super] = ACTIONS(1691), - [sym_true] = ACTIONS(1691), - [sym_false] = ACTIONS(1691), - [sym_null] = ACTIONS(1691), - [sym_undefined] = ACTIONS(1691), - [anon_sym_AT] = ACTIONS(1689), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [anon_sym_abstract] = ACTIONS(1691), - [anon_sym_interface] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1691), - [sym__automatic_semicolon] = ACTIONS(1697), - [sym_html_comment] = ACTIONS(5), - }, - [768] = { - [sym_else_clause] = STATE(850), - [ts_builtin_sym_end] = ACTIONS(2492), - [sym_identifier] = ACTIONS(2494), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_default] = ACTIONS(2494), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_namespace] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_typeof] = ACTIONS(2494), - [anon_sym_import] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2494), - [anon_sym_var] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_switch] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_await] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_do] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_debugger] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_throw] = ACTIONS(2494), - [anon_sym_case] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_SQUOTE] = ACTIONS(2492), - [anon_sym_class] = ACTIONS(2494), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_using] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_TILDE] = ACTIONS(2492), - [anon_sym_void] = ACTIONS(2494), - [anon_sym_delete] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2492), - [sym_number] = ACTIONS(2492), - [sym_private_property_identifier] = ACTIONS(2492), - [sym_this] = ACTIONS(2494), - [sym_super] = ACTIONS(2494), - [sym_true] = ACTIONS(2494), - [sym_false] = ACTIONS(2494), - [sym_null] = ACTIONS(2494), - [sym_undefined] = ACTIONS(2494), - [anon_sym_AT] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_readonly] = ACTIONS(2494), - [anon_sym_get] = ACTIONS(2494), - [anon_sym_set] = ACTIONS(2494), - [anon_sym_declare] = ACTIONS(2494), - [anon_sym_public] = ACTIONS(2494), - [anon_sym_private] = ACTIONS(2494), - [anon_sym_protected] = ACTIONS(2494), - [anon_sym_override] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_any] = ACTIONS(2494), - [anon_sym_number] = ACTIONS(2494), - [anon_sym_boolean] = ACTIONS(2494), - [anon_sym_string] = ACTIONS(2494), - [anon_sym_symbol] = ACTIONS(2494), - [anon_sym_object] = ACTIONS(2494), - [anon_sym_abstract] = ACTIONS(2494), - [anon_sym_interface] = ACTIONS(2494), - [anon_sym_enum] = ACTIONS(2494), - [sym_html_comment] = ACTIONS(5), - }, - [769] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_identifier] = ACTIONS(1793), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_namespace] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1793), - [anon_sym_import] = ACTIONS(1793), - [anon_sym_with] = ACTIONS(1793), - [anon_sym_var] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_switch] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_await] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_debugger] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_throw] = ACTIONS(1793), - [anon_sym_case] = ACTIONS(1793), - [anon_sym_yield] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_function] = ACTIONS(1793), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1793), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_void] = ACTIONS(1793), - [anon_sym_delete] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1791), - [sym_number] = ACTIONS(1791), - [sym_private_property_identifier] = ACTIONS(1791), - [sym_this] = ACTIONS(1793), - [sym_super] = ACTIONS(1793), - [sym_true] = ACTIONS(1793), - [sym_false] = ACTIONS(1793), - [sym_null] = ACTIONS(1793), - [sym_undefined] = ACTIONS(1793), - [anon_sym_AT] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_readonly] = ACTIONS(1793), - [anon_sym_get] = ACTIONS(1793), - [anon_sym_set] = ACTIONS(1793), - [anon_sym_declare] = ACTIONS(1793), - [anon_sym_public] = ACTIONS(1793), - [anon_sym_private] = ACTIONS(1793), - [anon_sym_protected] = ACTIONS(1793), - [anon_sym_override] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_any] = ACTIONS(1793), - [anon_sym_number] = ACTIONS(1793), - [anon_sym_boolean] = ACTIONS(1793), - [anon_sym_string] = ACTIONS(1793), - [anon_sym_symbol] = ACTIONS(1793), - [anon_sym_object] = ACTIONS(1793), - [anon_sym_abstract] = ACTIONS(1793), - [anon_sym_interface] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [sym_html_comment] = ACTIONS(5), - }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_export] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_namespace] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_typeof] = ACTIONS(1797), - [anon_sym_import] = ACTIONS(1797), - [anon_sym_with] = ACTIONS(1797), - [anon_sym_var] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_else] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_switch] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_do] = ACTIONS(1797), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_debugger] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_throw] = ACTIONS(1797), - [anon_sym_case] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [anon_sym_class] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_function] = ACTIONS(1797), - [anon_sym_new] = ACTIONS(1797), - [anon_sym_using] = ACTIONS(1797), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_SLASH] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_void] = ACTIONS(1797), - [anon_sym_delete] = ACTIONS(1797), - [anon_sym_PLUS_PLUS] = ACTIONS(1795), - [anon_sym_DASH_DASH] = ACTIONS(1795), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1795), - [sym_number] = ACTIONS(1795), - [sym_private_property_identifier] = ACTIONS(1795), - [sym_this] = ACTIONS(1797), - [sym_super] = ACTIONS(1797), - [sym_true] = ACTIONS(1797), - [sym_false] = ACTIONS(1797), - [sym_null] = ACTIONS(1797), - [sym_undefined] = ACTIONS(1797), - [anon_sym_AT] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_readonly] = ACTIONS(1797), - [anon_sym_get] = ACTIONS(1797), - [anon_sym_set] = ACTIONS(1797), - [anon_sym_declare] = ACTIONS(1797), - [anon_sym_public] = ACTIONS(1797), - [anon_sym_private] = ACTIONS(1797), - [anon_sym_protected] = ACTIONS(1797), - [anon_sym_override] = ACTIONS(1797), - [anon_sym_module] = ACTIONS(1797), - [anon_sym_any] = ACTIONS(1797), - [anon_sym_number] = ACTIONS(1797), - [anon_sym_boolean] = ACTIONS(1797), - [anon_sym_string] = ACTIONS(1797), - [anon_sym_symbol] = ACTIONS(1797), - [anon_sym_object] = ACTIONS(1797), - [anon_sym_abstract] = ACTIONS(1797), - [anon_sym_interface] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [sym__automatic_semicolon] = ACTIONS(1803), - [sym_html_comment] = ACTIONS(5), - }, - [771] = { - [ts_builtin_sym_end] = ACTIONS(1813), - [sym_identifier] = ACTIONS(1815), - [anon_sym_export] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_namespace] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_typeof] = ACTIONS(1815), - [anon_sym_import] = ACTIONS(1815), - [anon_sym_with] = ACTIONS(1815), - [anon_sym_var] = ACTIONS(1815), - [anon_sym_let] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_else] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_switch] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_do] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_debugger] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_throw] = ACTIONS(1815), - [anon_sym_case] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_DQUOTE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_class] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_function] = ACTIONS(1815), - [anon_sym_new] = ACTIONS(1815), - [anon_sym_using] = ACTIONS(1815), - [anon_sym_PLUS] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_void] = ACTIONS(1815), - [anon_sym_delete] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1813), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1813), - [sym_number] = ACTIONS(1813), - [sym_private_property_identifier] = ACTIONS(1813), - [sym_this] = ACTIONS(1815), - [sym_super] = ACTIONS(1815), - [sym_true] = ACTIONS(1815), - [sym_false] = ACTIONS(1815), - [sym_null] = ACTIONS(1815), - [sym_undefined] = ACTIONS(1815), - [anon_sym_AT] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_readonly] = ACTIONS(1815), - [anon_sym_get] = ACTIONS(1815), - [anon_sym_set] = ACTIONS(1815), - [anon_sym_declare] = ACTIONS(1815), - [anon_sym_public] = ACTIONS(1815), - [anon_sym_private] = ACTIONS(1815), - [anon_sym_protected] = ACTIONS(1815), - [anon_sym_override] = ACTIONS(1815), - [anon_sym_module] = ACTIONS(1815), - [anon_sym_any] = ACTIONS(1815), - [anon_sym_number] = ACTIONS(1815), - [anon_sym_boolean] = ACTIONS(1815), - [anon_sym_string] = ACTIONS(1815), - [anon_sym_symbol] = ACTIONS(1815), - [anon_sym_object] = ACTIONS(1815), - [anon_sym_abstract] = ACTIONS(1815), - [anon_sym_interface] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [sym__automatic_semicolon] = ACTIONS(1821), - [sym_html_comment] = ACTIONS(5), - }, - [772] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_export] = ACTIONS(1825), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_namespace] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_typeof] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1825), - [anon_sym_with] = ACTIONS(1825), - [anon_sym_var] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_else] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_switch] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_await] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_do] = ACTIONS(1825), - [anon_sym_try] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_debugger] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_throw] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(1825), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_SLASH] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_void] = ACTIONS(1825), - [anon_sym_delete] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [sym_private_property_identifier] = ACTIONS(1823), - [sym_this] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_true] = ACTIONS(1825), - [sym_false] = ACTIONS(1825), - [sym_null] = ACTIONS(1825), - [sym_undefined] = ACTIONS(1825), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_readonly] = ACTIONS(1825), - [anon_sym_get] = ACTIONS(1825), - [anon_sym_set] = ACTIONS(1825), - [anon_sym_declare] = ACTIONS(1825), - [anon_sym_public] = ACTIONS(1825), - [anon_sym_private] = ACTIONS(1825), - [anon_sym_protected] = ACTIONS(1825), - [anon_sym_override] = ACTIONS(1825), - [anon_sym_module] = ACTIONS(1825), - [anon_sym_any] = ACTIONS(1825), - [anon_sym_number] = ACTIONS(1825), - [anon_sym_boolean] = ACTIONS(1825), - [anon_sym_string] = ACTIONS(1825), - [anon_sym_symbol] = ACTIONS(1825), - [anon_sym_object] = ACTIONS(1825), - [anon_sym_abstract] = ACTIONS(1825), - [anon_sym_interface] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [sym__automatic_semicolon] = ACTIONS(1831), - [sym_html_comment] = ACTIONS(5), - }, - [773] = { - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_namespace] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_typeof] = ACTIONS(1851), - [anon_sym_import] = ACTIONS(1851), - [anon_sym_with] = ACTIONS(1851), - [anon_sym_var] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_switch] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_debugger] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_throw] = ACTIONS(1851), - [anon_sym_case] = ACTIONS(1851), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1849), - [anon_sym_class] = ACTIONS(1851), - [anon_sym_async] = ACTIONS(1851), - [anon_sym_function] = ACTIONS(1851), - [anon_sym_new] = ACTIONS(1851), - [anon_sym_using] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1851), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1849), - [anon_sym_void] = ACTIONS(1851), - [anon_sym_delete] = ACTIONS(1851), - [anon_sym_PLUS_PLUS] = ACTIONS(1849), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1849), - [sym_number] = ACTIONS(1849), - [sym_private_property_identifier] = ACTIONS(1849), - [sym_this] = ACTIONS(1851), - [sym_super] = ACTIONS(1851), - [sym_true] = ACTIONS(1851), - [sym_false] = ACTIONS(1851), - [sym_null] = ACTIONS(1851), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(1849), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_readonly] = ACTIONS(1851), - [anon_sym_get] = ACTIONS(1851), - [anon_sym_set] = ACTIONS(1851), - [anon_sym_declare] = ACTIONS(1851), - [anon_sym_public] = ACTIONS(1851), - [anon_sym_private] = ACTIONS(1851), - [anon_sym_protected] = ACTIONS(1851), - [anon_sym_override] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_any] = ACTIONS(1851), - [anon_sym_number] = ACTIONS(1851), - [anon_sym_boolean] = ACTIONS(1851), - [anon_sym_string] = ACTIONS(1851), - [anon_sym_symbol] = ACTIONS(1851), - [anon_sym_object] = ACTIONS(1851), - [anon_sym_abstract] = ACTIONS(1851), - [anon_sym_interface] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [sym__automatic_semicolon] = ACTIONS(1857), - [sym_html_comment] = ACTIONS(5), - }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(1859), - [sym_identifier] = ACTIONS(1861), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_default] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1859), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_typeof] = ACTIONS(1861), - [anon_sym_import] = ACTIONS(1861), - [anon_sym_with] = ACTIONS(1861), - [anon_sym_var] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_switch] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1859), - [anon_sym_await] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_debugger] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_throw] = ACTIONS(1861), - [anon_sym_case] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1859), - [anon_sym_DQUOTE] = ACTIONS(1859), - [anon_sym_SQUOTE] = ACTIONS(1859), - [anon_sym_class] = ACTIONS(1861), - [anon_sym_async] = ACTIONS(1861), - [anon_sym_function] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1861), - [anon_sym_using] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_SLASH] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1859), - [anon_sym_TILDE] = ACTIONS(1859), - [anon_sym_void] = ACTIONS(1861), - [anon_sym_delete] = ACTIONS(1861), - [anon_sym_PLUS_PLUS] = ACTIONS(1859), - [anon_sym_DASH_DASH] = ACTIONS(1859), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1859), - [sym_number] = ACTIONS(1859), - [sym_private_property_identifier] = ACTIONS(1859), - [sym_this] = ACTIONS(1861), - [sym_super] = ACTIONS(1861), - [sym_true] = ACTIONS(1861), - [sym_false] = ACTIONS(1861), - [sym_null] = ACTIONS(1861), - [sym_undefined] = ACTIONS(1861), - [anon_sym_AT] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1861), - [anon_sym_readonly] = ACTIONS(1861), - [anon_sym_get] = ACTIONS(1861), - [anon_sym_set] = ACTIONS(1861), - [anon_sym_declare] = ACTIONS(1861), - [anon_sym_public] = ACTIONS(1861), - [anon_sym_private] = ACTIONS(1861), - [anon_sym_protected] = ACTIONS(1861), - [anon_sym_override] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_any] = ACTIONS(1861), - [anon_sym_number] = ACTIONS(1861), - [anon_sym_boolean] = ACTIONS(1861), - [anon_sym_string] = ACTIONS(1861), - [anon_sym_symbol] = ACTIONS(1861), - [anon_sym_object] = ACTIONS(1861), - [anon_sym_abstract] = ACTIONS(1861), - [anon_sym_interface] = ACTIONS(1861), - [anon_sym_enum] = ACTIONS(1861), - [sym__automatic_semicolon] = ACTIONS(1867), - [sym_html_comment] = ACTIONS(5), - }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(2498), - [sym_identifier] = ACTIONS(2500), - [anon_sym_export] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_type] = ACTIONS(2500), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_typeof] = ACTIONS(2500), - [anon_sym_import] = ACTIONS(2500), - [anon_sym_with] = ACTIONS(2500), - [anon_sym_var] = ACTIONS(2500), - [anon_sym_let] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2498), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_RPAREN] = ACTIONS(2498), - [anon_sym_await] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_debugger] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_yield] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2498), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_async] = ACTIONS(2500), - [anon_sym_function] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_SLASH] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2498), - [anon_sym_void] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_PLUS_PLUS] = ACTIONS(2498), - [anon_sym_DASH_DASH] = ACTIONS(2498), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2498), - [sym_number] = ACTIONS(2498), - [sym_private_property_identifier] = ACTIONS(2498), - [sym_this] = ACTIONS(2500), - [sym_super] = ACTIONS(2500), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_undefined] = ACTIONS(2500), - [anon_sym_AT] = ACTIONS(2498), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_readonly] = ACTIONS(2500), - [anon_sym_get] = ACTIONS(2500), - [anon_sym_set] = ACTIONS(2500), - [anon_sym_declare] = ACTIONS(2500), - [anon_sym_public] = ACTIONS(2500), - [anon_sym_private] = ACTIONS(2500), - [anon_sym_protected] = ACTIONS(2500), - [anon_sym_override] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2500), - [anon_sym_any] = ACTIONS(2500), - [anon_sym_number] = ACTIONS(2500), - [anon_sym_boolean] = ACTIONS(2500), - [anon_sym_string] = ACTIONS(2500), - [anon_sym_symbol] = ACTIONS(2500), - [anon_sym_object] = ACTIONS(2500), - [anon_sym_abstract] = ACTIONS(2500), - [anon_sym_interface] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [sym_html_comment] = ACTIONS(5), - }, - [776] = { + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(759)] = { + [sym_statement_block] = STATE(867), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(760)] = { + [sym_else_clause] = STATE(861), + [ts_builtin_sym_end] = ACTIONS(2476), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2476), + [sym_number] = ACTIONS(2476), + [sym_private_property_identifier] = ACTIONS(2476), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(761)] = { + [ts_builtin_sym_end] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_namespace] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_typeof] = ACTIONS(1749), + [anon_sym_import] = ACTIONS(1749), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_var] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_switch] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_debugger] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_throw] = ACTIONS(1749), + [anon_sym_case] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1747), + [anon_sym_class] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_function] = ACTIONS(1749), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_using] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_SLASH] = ACTIONS(1749), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1747), + [anon_sym_void] = ACTIONS(1749), + [anon_sym_delete] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [sym_private_property_identifier] = ACTIONS(1747), + [sym_this] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), + [sym_null] = ACTIONS(1749), + [sym_undefined] = ACTIONS(1749), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_static] = ACTIONS(1749), + [anon_sym_readonly] = ACTIONS(1749), + [anon_sym_get] = ACTIONS(1749), + [anon_sym_set] = ACTIONS(1749), + [anon_sym_declare] = ACTIONS(1749), + [anon_sym_public] = ACTIONS(1749), + [anon_sym_private] = ACTIONS(1749), + [anon_sym_protected] = ACTIONS(1749), + [anon_sym_override] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_any] = ACTIONS(1749), + [anon_sym_number] = ACTIONS(1749), + [anon_sym_boolean] = ACTIONS(1749), + [anon_sym_string] = ACTIONS(1749), + [anon_sym_symbol] = ACTIONS(1749), + [anon_sym_object] = ACTIONS(1749), + [anon_sym_abstract] = ACTIONS(1749), + [anon_sym_interface] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [sym__automatic_semicolon] = ACTIONS(1755), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(762)] = { [ts_builtin_sym_end] = ACTIONS(1713), [sym_identifier] = ACTIONS(1715), [anon_sym_export] = ACTIONS(1715), @@ -107565,90 +106608,1252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1721), [sym_html_comment] = ACTIONS(5), }, - [777] = { - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_typeof] = ACTIONS(1729), - [anon_sym_import] = ACTIONS(1729), - [anon_sym_with] = ACTIONS(1729), - [anon_sym_var] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_switch] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_await] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_debugger] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_throw] = ACTIONS(1729), - [anon_sym_case] = ACTIONS(1729), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1729), - [anon_sym_function] = ACTIONS(1729), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_using] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1729), - [anon_sym_delete] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), + [STATE(763)] = { + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_typeof] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_with] = ACTIONS(1823), + [anon_sym_var] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_switch] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_debugger] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_throw] = ACTIONS(1823), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_void] = ACTIONS(1823), + [anon_sym_delete] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1821), + [sym_number] = ACTIONS(1821), + [sym_private_property_identifier] = ACTIONS(1821), + [sym_this] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_true] = ACTIONS(1823), + [sym_false] = ACTIONS(1823), + [sym_null] = ACTIONS(1823), + [sym_undefined] = ACTIONS(1823), + [anon_sym_AT] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_readonly] = ACTIONS(1823), + [anon_sym_get] = ACTIONS(1823), + [anon_sym_set] = ACTIONS(1823), + [anon_sym_declare] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_private] = ACTIONS(1823), + [anon_sym_protected] = ACTIONS(1823), + [anon_sym_override] = ACTIONS(1823), + [anon_sym_module] = ACTIONS(1823), + [anon_sym_any] = ACTIONS(1823), + [anon_sym_number] = ACTIONS(1823), + [anon_sym_boolean] = ACTIONS(1823), + [anon_sym_string] = ACTIONS(1823), + [anon_sym_symbol] = ACTIONS(1823), + [anon_sym_object] = ACTIONS(1823), + [anon_sym_abstract] = ACTIONS(1823), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1829), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(764)] = { + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_typeof] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1853), + [anon_sym_with] = ACTIONS(1853), + [anon_sym_var] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_debugger] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_case] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_function] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_void] = ACTIONS(1853), + [anon_sym_delete] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym_number] = ACTIONS(1851), + [sym_private_property_identifier] = ACTIONS(1851), + [sym_this] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_null] = ACTIONS(1853), + [sym_undefined] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), + [anon_sym_object] = ACTIONS(1853), + [anon_sym_abstract] = ACTIONS(1853), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [sym__automatic_semicolon] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(765)] = { + [ts_builtin_sym_end] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_type] = ACTIONS(1769), + [anon_sym_namespace] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_typeof] = ACTIONS(1769), + [anon_sym_import] = ACTIONS(1769), + [anon_sym_with] = ACTIONS(1769), + [anon_sym_var] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_switch] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_debugger] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1769), + [anon_sym_case] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_class] = ACTIONS(1769), + [anon_sym_async] = ACTIONS(1769), + [anon_sym_function] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_void] = ACTIONS(1769), + [anon_sym_delete] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1767), + [sym_number] = ACTIONS(1767), + [sym_private_property_identifier] = ACTIONS(1767), + [sym_this] = ACTIONS(1769), + [sym_super] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_null] = ACTIONS(1769), + [sym_undefined] = ACTIONS(1769), + [anon_sym_AT] = ACTIONS(1767), + [anon_sym_static] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_get] = ACTIONS(1769), + [anon_sym_set] = ACTIONS(1769), + [anon_sym_declare] = ACTIONS(1769), + [anon_sym_public] = ACTIONS(1769), + [anon_sym_private] = ACTIONS(1769), + [anon_sym_protected] = ACTIONS(1769), + [anon_sym_override] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_any] = ACTIONS(1769), + [anon_sym_number] = ACTIONS(1769), + [anon_sym_boolean] = ACTIONS(1769), + [anon_sym_string] = ACTIONS(1769), + [anon_sym_symbol] = ACTIONS(1769), + [anon_sym_object] = ACTIONS(1769), + [anon_sym_abstract] = ACTIONS(1769), + [anon_sym_interface] = ACTIONS(1769), + [anon_sym_enum] = ACTIONS(1769), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(766)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5214), + [sym_optional_tuple_parameter] = STATE(5214), + [sym_optional_type] = STATE(5214), + [sym_rest_type] = STATE(5214), + [sym__tuple_type_member] = STATE(5214), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1727), - [sym_number] = ACTIONS(1727), - [sym_private_property_identifier] = ACTIONS(1727), - [sym_this] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_true] = ACTIONS(1729), - [sym_false] = ACTIONS(1729), - [sym_null] = ACTIONS(1729), - [sym_undefined] = ACTIONS(1729), - [anon_sym_AT] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_readonly] = ACTIONS(1729), - [anon_sym_get] = ACTIONS(1729), - [anon_sym_set] = ACTIONS(1729), - [anon_sym_declare] = ACTIONS(1729), - [anon_sym_public] = ACTIONS(1729), - [anon_sym_private] = ACTIONS(1729), - [anon_sym_protected] = ACTIONS(1729), - [anon_sym_override] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_any] = ACTIONS(1729), - [anon_sym_number] = ACTIONS(1729), - [anon_sym_boolean] = ACTIONS(1729), - [anon_sym_string] = ACTIONS(1729), - [anon_sym_symbol] = ACTIONS(1729), - [anon_sym_object] = ACTIONS(1729), - [anon_sym_abstract] = ACTIONS(1729), - [anon_sym_interface] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(767)] = { + [ts_builtin_sym_end] = ACTIONS(2486), + [sym_identifier] = ACTIONS(2488), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2488), + [anon_sym_type] = ACTIONS(2488), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2488), + [anon_sym_import] = ACTIONS(2488), + [anon_sym_with] = ACTIONS(2488), + [anon_sym_var] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_switch] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_await] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_debugger] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_throw] = ACTIONS(2488), + [anon_sym_case] = ACTIONS(2488), + [anon_sym_finally] = ACTIONS(2488), + [anon_sym_yield] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_class] = ACTIONS(2488), + [anon_sym_async] = ACTIONS(2488), + [anon_sym_function] = ACTIONS(2488), + [anon_sym_new] = ACTIONS(2488), + [anon_sym_using] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_TILDE] = ACTIONS(2486), + [anon_sym_void] = ACTIONS(2488), + [anon_sym_delete] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2486), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2486), + [sym_number] = ACTIONS(2486), + [sym_private_property_identifier] = ACTIONS(2486), + [sym_this] = ACTIONS(2488), + [sym_super] = ACTIONS(2488), + [sym_true] = ACTIONS(2488), + [sym_false] = ACTIONS(2488), + [sym_null] = ACTIONS(2488), + [sym_undefined] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_readonly] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(2488), + [anon_sym_set] = ACTIONS(2488), + [anon_sym_declare] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_protected] = ACTIONS(2488), + [anon_sym_override] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_any] = ACTIONS(2488), + [anon_sym_number] = ACTIONS(2488), + [anon_sym_boolean] = ACTIONS(2488), + [anon_sym_string] = ACTIONS(2488), + [anon_sym_symbol] = ACTIONS(2488), + [anon_sym_object] = ACTIONS(2488), + [anon_sym_abstract] = ACTIONS(2488), + [anon_sym_interface] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(768)] = { + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_default] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_namespace] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_typeof] = ACTIONS(1843), + [anon_sym_import] = ACTIONS(1843), + [anon_sym_with] = ACTIONS(1843), + [anon_sym_var] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_switch] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_await] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_throw] = ACTIONS(1843), + [anon_sym_case] = ACTIONS(1843), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_class] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_using] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_TILDE] = ACTIONS(1841), + [anon_sym_void] = ACTIONS(1843), + [anon_sym_delete] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1841), + [sym_number] = ACTIONS(1841), + [sym_private_property_identifier] = ACTIONS(1841), + [sym_this] = ACTIONS(1843), + [sym_super] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_null] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_readonly] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_declare] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_protected] = ACTIONS(1843), + [anon_sym_override] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_any] = ACTIONS(1843), + [anon_sym_number] = ACTIONS(1843), + [anon_sym_boolean] = ACTIONS(1843), + [anon_sym_string] = ACTIONS(1843), + [anon_sym_symbol] = ACTIONS(1843), + [anon_sym_object] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_interface] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [sym__automatic_semicolon] = ACTIONS(1849), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(769)] = { + [ts_builtin_sym_end] = ACTIONS(2490), + [sym_identifier] = ACTIONS(2492), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_namespace] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(2492), + [anon_sym_import] = ACTIONS(2492), + [anon_sym_with] = ACTIONS(2492), + [anon_sym_var] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_switch] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_RPAREN] = ACTIONS(2490), + [anon_sym_await] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_debugger] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_throw] = ACTIONS(2492), + [anon_sym_case] = ACTIONS(2492), + [anon_sym_yield] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2492), + [anon_sym_async] = ACTIONS(2492), + [anon_sym_function] = ACTIONS(2492), + [anon_sym_new] = ACTIONS(2492), + [anon_sym_using] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_LT] = ACTIONS(2490), + [anon_sym_TILDE] = ACTIONS(2490), + [anon_sym_void] = ACTIONS(2492), + [anon_sym_delete] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2490), + [sym_number] = ACTIONS(2490), + [sym_private_property_identifier] = ACTIONS(2490), + [sym_this] = ACTIONS(2492), + [sym_super] = ACTIONS(2492), + [sym_true] = ACTIONS(2492), + [sym_false] = ACTIONS(2492), + [sym_null] = ACTIONS(2492), + [sym_undefined] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_readonly] = ACTIONS(2492), + [anon_sym_get] = ACTIONS(2492), + [anon_sym_set] = ACTIONS(2492), + [anon_sym_declare] = ACTIONS(2492), + [anon_sym_public] = ACTIONS(2492), + [anon_sym_private] = ACTIONS(2492), + [anon_sym_protected] = ACTIONS(2492), + [anon_sym_override] = ACTIONS(2492), + [anon_sym_module] = ACTIONS(2492), + [anon_sym_any] = ACTIONS(2492), + [anon_sym_number] = ACTIONS(2492), + [anon_sym_boolean] = ACTIONS(2492), + [anon_sym_string] = ACTIONS(2492), + [anon_sym_symbol] = ACTIONS(2492), + [anon_sym_object] = ACTIONS(2492), + [anon_sym_abstract] = ACTIONS(2492), + [anon_sym_interface] = ACTIONS(2492), + [anon_sym_enum] = ACTIONS(2492), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(770)] = { + [ts_builtin_sym_end] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_typeof] = ACTIONS(1759), + [anon_sym_import] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + [anon_sym_var] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_else] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_switch] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_debugger] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_throw] = ACTIONS(1759), + [anon_sym_case] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_class] = ACTIONS(1759), + [anon_sym_async] = ACTIONS(1759), + [anon_sym_function] = ACTIONS(1759), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_using] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_SLASH] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_void] = ACTIONS(1759), + [anon_sym_delete] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1757), + [sym_number] = ACTIONS(1757), + [sym_private_property_identifier] = ACTIONS(1757), + [sym_this] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_null] = ACTIONS(1759), + [sym_undefined] = ACTIONS(1759), + [anon_sym_AT] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1759), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(1765), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(771)] = { + [ts_builtin_sym_end] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2496), + [anon_sym_export] = ACTIONS(2496), + [anon_sym_default] = ACTIONS(2496), + [anon_sym_type] = ACTIONS(2496), + [anon_sym_namespace] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(2496), + [anon_sym_import] = ACTIONS(2496), + [anon_sym_with] = ACTIONS(2496), + [anon_sym_var] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_switch] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_await] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_debugger] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_throw] = ACTIONS(2496), + [anon_sym_case] = ACTIONS(2496), + [anon_sym_finally] = ACTIONS(2496), + [anon_sym_yield] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2494), + [anon_sym_class] = ACTIONS(2496), + [anon_sym_async] = ACTIONS(2496), + [anon_sym_function] = ACTIONS(2496), + [anon_sym_new] = ACTIONS(2496), + [anon_sym_using] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(2494), + [anon_sym_TILDE] = ACTIONS(2494), + [anon_sym_void] = ACTIONS(2496), + [anon_sym_delete] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2494), + [sym_number] = ACTIONS(2494), + [sym_private_property_identifier] = ACTIONS(2494), + [sym_this] = ACTIONS(2496), + [sym_super] = ACTIONS(2496), + [sym_true] = ACTIONS(2496), + [sym_false] = ACTIONS(2496), + [sym_null] = ACTIONS(2496), + [sym_undefined] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_readonly] = ACTIONS(2496), + [anon_sym_get] = ACTIONS(2496), + [anon_sym_set] = ACTIONS(2496), + [anon_sym_declare] = ACTIONS(2496), + [anon_sym_public] = ACTIONS(2496), + [anon_sym_private] = ACTIONS(2496), + [anon_sym_protected] = ACTIONS(2496), + [anon_sym_override] = ACTIONS(2496), + [anon_sym_module] = ACTIONS(2496), + [anon_sym_any] = ACTIONS(2496), + [anon_sym_number] = ACTIONS(2496), + [anon_sym_boolean] = ACTIONS(2496), + [anon_sym_string] = ACTIONS(2496), + [anon_sym_symbol] = ACTIONS(2496), + [anon_sym_object] = ACTIONS(2496), + [anon_sym_abstract] = ACTIONS(2496), + [anon_sym_interface] = ACTIONS(2496), + [anon_sym_enum] = ACTIONS(2496), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(772)] = { + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_namespace] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_typeof] = ACTIONS(1813), + [anon_sym_import] = ACTIONS(1813), + [anon_sym_with] = ACTIONS(1813), + [anon_sym_var] = ACTIONS(1813), + [anon_sym_let] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_else] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_switch] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_await] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_do] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_debugger] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_throw] = ACTIONS(1813), + [anon_sym_case] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1811), + [anon_sym_SQUOTE] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1813), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_function] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_using] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_void] = ACTIONS(1813), + [anon_sym_delete] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1811), + [sym_number] = ACTIONS(1811), + [sym_private_property_identifier] = ACTIONS(1811), + [sym_this] = ACTIONS(1813), + [sym_super] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_null] = ACTIONS(1813), + [sym_undefined] = ACTIONS(1813), + [anon_sym_AT] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1813), + [anon_sym_readonly] = ACTIONS(1813), + [anon_sym_get] = ACTIONS(1813), + [anon_sym_set] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1813), + [anon_sym_public] = ACTIONS(1813), + [anon_sym_private] = ACTIONS(1813), + [anon_sym_protected] = ACTIONS(1813), + [anon_sym_override] = ACTIONS(1813), + [anon_sym_module] = ACTIONS(1813), + [anon_sym_any] = ACTIONS(1813), + [anon_sym_number] = ACTIONS(1813), + [anon_sym_boolean] = ACTIONS(1813), + [anon_sym_string] = ACTIONS(1813), + [anon_sym_symbol] = ACTIONS(1813), + [anon_sym_object] = ACTIONS(1813), + [anon_sym_abstract] = ACTIONS(1813), + [anon_sym_interface] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [sym__automatic_semicolon] = ACTIONS(1819), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(773)] = { + [ts_builtin_sym_end] = ACTIONS(1693), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(1695), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_namespace] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym_import] = ACTIONS(1695), + [anon_sym_with] = ACTIONS(1695), + [anon_sym_var] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_switch] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_await] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_do] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_debugger] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_throw] = ACTIONS(1695), + [anon_sym_case] = ACTIONS(1695), + [anon_sym_yield] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_class] = ACTIONS(1695), + [anon_sym_async] = ACTIONS(1695), + [anon_sym_function] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1695), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_TILDE] = ACTIONS(1693), + [anon_sym_void] = ACTIONS(1695), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1693), + [sym_number] = ACTIONS(1693), + [sym_private_property_identifier] = ACTIONS(1693), + [sym_this] = ACTIONS(1695), + [sym_super] = ACTIONS(1695), + [sym_true] = ACTIONS(1695), + [sym_false] = ACTIONS(1695), + [sym_null] = ACTIONS(1695), + [sym_undefined] = ACTIONS(1695), + [anon_sym_AT] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_readonly] = ACTIONS(1695), + [anon_sym_get] = ACTIONS(1695), + [anon_sym_set] = ACTIONS(1695), + [anon_sym_declare] = ACTIONS(1695), + [anon_sym_public] = ACTIONS(1695), + [anon_sym_private] = ACTIONS(1695), + [anon_sym_protected] = ACTIONS(1695), + [anon_sym_override] = ACTIONS(1695), + [anon_sym_module] = ACTIONS(1695), + [anon_sym_any] = ACTIONS(1695), + [anon_sym_number] = ACTIONS(1695), + [anon_sym_boolean] = ACTIONS(1695), + [anon_sym_string] = ACTIONS(1695), + [anon_sym_symbol] = ACTIONS(1695), + [anon_sym_object] = ACTIONS(1695), + [anon_sym_abstract] = ACTIONS(1695), + [anon_sym_interface] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [sym__automatic_semicolon] = ACTIONS(1701), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(774)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4654), + [sym_optional_tuple_parameter] = STATE(4654), + [sym_optional_type] = STATE(4654), + [sym_rest_type] = STATE(4654), + [sym__tuple_type_member] = STATE(4654), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(775)] = { + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1739), + [anon_sym_type] = ACTIONS(1739), + [anon_sym_namespace] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_typeof] = ACTIONS(1739), + [anon_sym_import] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [anon_sym_var] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_switch] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_await] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_debugger] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_throw] = ACTIONS(1739), + [anon_sym_case] = ACTIONS(1739), + [anon_sym_yield] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_function] = ACTIONS(1739), + [anon_sym_new] = ACTIONS(1739), + [anon_sym_using] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_SLASH] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_void] = ACTIONS(1739), + [anon_sym_delete] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1737), + [sym_number] = ACTIONS(1737), + [sym_private_property_identifier] = ACTIONS(1737), + [sym_this] = ACTIONS(1739), + [sym_super] = ACTIONS(1739), + [sym_true] = ACTIONS(1739), + [sym_false] = ACTIONS(1739), + [sym_null] = ACTIONS(1739), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(1737), + [anon_sym_static] = ACTIONS(1739), + [anon_sym_readonly] = ACTIONS(1739), + [anon_sym_get] = ACTIONS(1739), + [anon_sym_set] = ACTIONS(1739), + [anon_sym_declare] = ACTIONS(1739), + [anon_sym_public] = ACTIONS(1739), + [anon_sym_private] = ACTIONS(1739), + [anon_sym_protected] = ACTIONS(1739), + [anon_sym_override] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_any] = ACTIONS(1739), + [anon_sym_number] = ACTIONS(1739), + [anon_sym_boolean] = ACTIONS(1739), + [anon_sym_string] = ACTIONS(1739), + [anon_sym_symbol] = ACTIONS(1739), + [anon_sym_object] = ACTIONS(1739), + [anon_sym_abstract] = ACTIONS(1739), + [anon_sym_interface] = ACTIONS(1739), + [anon_sym_enum] = ACTIONS(1739), + [sym__automatic_semicolon] = ACTIONS(1745), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(776)] = { + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_namespace] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_typeof] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_with] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_else] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_switch] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_debugger] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1803), + [anon_sym_case] = ACTIONS(1803), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_class] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_function] = ACTIONS(1803), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_void] = ACTIONS(1803), + [anon_sym_delete] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1801), + [sym_number] = ACTIONS(1801), + [sym_private_property_identifier] = ACTIONS(1801), + [sym_this] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_null] = ACTIONS(1803), + [sym_undefined] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_readonly] = ACTIONS(1803), + [anon_sym_get] = ACTIONS(1803), + [anon_sym_set] = ACTIONS(1803), + [anon_sym_declare] = ACTIONS(1803), + [anon_sym_public] = ACTIONS(1803), + [anon_sym_private] = ACTIONS(1803), + [anon_sym_protected] = ACTIONS(1803), + [anon_sym_override] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_any] = ACTIONS(1803), + [anon_sym_number] = ACTIONS(1803), + [anon_sym_boolean] = ACTIONS(1803), + [anon_sym_string] = ACTIONS(1803), + [anon_sym_symbol] = ACTIONS(1803), + [anon_sym_object] = ACTIONS(1803), + [anon_sym_abstract] = ACTIONS(1803), + [anon_sym_interface] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [sym__automatic_semicolon] = ACTIONS(1809), [sym_html_comment] = ACTIONS(5), }, - [778] = { + [STATE(777)] = { + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_namespace] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1799), + [anon_sym_import] = ACTIONS(1799), + [anon_sym_with] = ACTIONS(1799), + [anon_sym_var] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_await] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_debugger] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1799), + [anon_sym_case] = ACTIONS(1799), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_function] = ACTIONS(1799), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_using] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_void] = ACTIONS(1799), + [anon_sym_delete] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1797), + [sym_number] = ACTIONS(1797), + [sym_private_property_identifier] = ACTIONS(1797), + [sym_this] = ACTIONS(1799), + [sym_super] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_null] = ACTIONS(1799), + [sym_undefined] = ACTIONS(1799), + [anon_sym_AT] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_readonly] = ACTIONS(1799), + [anon_sym_get] = ACTIONS(1799), + [anon_sym_set] = ACTIONS(1799), + [anon_sym_declare] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_private] = ACTIONS(1799), + [anon_sym_protected] = ACTIONS(1799), + [anon_sym_override] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_any] = ACTIONS(1799), + [anon_sym_number] = ACTIONS(1799), + [anon_sym_boolean] = ACTIONS(1799), + [anon_sym_string] = ACTIONS(1799), + [anon_sym_symbol] = ACTIONS(1799), + [anon_sym_object] = ACTIONS(1799), + [anon_sym_abstract] = ACTIONS(1799), + [anon_sym_interface] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(778)] = { [ts_builtin_sym_end] = ACTIONS(2502), [sym_identifier] = ACTIONS(2504), [anon_sym_export] = ACTIONS(2504), @@ -107680,7 +107885,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2504), [anon_sym_throw] = ACTIONS(2504), [anon_sym_case] = ACTIONS(2504), - [anon_sym_finally] = ACTIONS(2504), [anon_sym_yield] = ACTIONS(2504), [anon_sym_LBRACK] = ACTIONS(2502), [anon_sym_DQUOTE] = ACTIONS(2502), @@ -107729,315 +107933,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2504), [anon_sym_interface] = ACTIONS(2504), [anon_sym_enum] = ACTIONS(2504), - [sym_html_comment] = ACTIONS(5), - }, - [779] = { - [ts_builtin_sym_end] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2508), - [anon_sym_export] = ACTIONS(2508), - [anon_sym_default] = ACTIONS(2508), - [anon_sym_type] = ACTIONS(2508), - [anon_sym_namespace] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_typeof] = ACTIONS(2508), - [anon_sym_import] = ACTIONS(2508), - [anon_sym_with] = ACTIONS(2508), - [anon_sym_var] = ACTIONS(2508), - [anon_sym_let] = ACTIONS(2508), - [anon_sym_const] = ACTIONS(2508), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_else] = ACTIONS(2508), - [anon_sym_if] = ACTIONS(2508), - [anon_sym_switch] = ACTIONS(2508), - [anon_sym_for] = ACTIONS(2508), - [anon_sym_LPAREN] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_await] = ACTIONS(2508), - [anon_sym_while] = ACTIONS(2508), - [anon_sym_do] = ACTIONS(2508), - [anon_sym_try] = ACTIONS(2508), - [anon_sym_break] = ACTIONS(2508), - [anon_sym_continue] = ACTIONS(2508), - [anon_sym_debugger] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2508), - [anon_sym_throw] = ACTIONS(2508), - [anon_sym_case] = ACTIONS(2508), - [anon_sym_finally] = ACTIONS(2508), - [anon_sym_yield] = ACTIONS(2508), - [anon_sym_LBRACK] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2506), - [anon_sym_class] = ACTIONS(2508), - [anon_sym_async] = ACTIONS(2508), - [anon_sym_function] = ACTIONS(2508), - [anon_sym_new] = ACTIONS(2508), - [anon_sym_using] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(2508), - [anon_sym_DASH] = ACTIONS(2508), - [anon_sym_SLASH] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_void] = ACTIONS(2508), - [anon_sym_delete] = ACTIONS(2508), - [anon_sym_PLUS_PLUS] = ACTIONS(2506), - [anon_sym_DASH_DASH] = ACTIONS(2506), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2506), - [sym_number] = ACTIONS(2506), - [sym_private_property_identifier] = ACTIONS(2506), - [sym_this] = ACTIONS(2508), - [sym_super] = ACTIONS(2508), - [sym_true] = ACTIONS(2508), - [sym_false] = ACTIONS(2508), - [sym_null] = ACTIONS(2508), - [sym_undefined] = ACTIONS(2508), - [anon_sym_AT] = ACTIONS(2506), - [anon_sym_static] = ACTIONS(2508), - [anon_sym_readonly] = ACTIONS(2508), - [anon_sym_get] = ACTIONS(2508), - [anon_sym_set] = ACTIONS(2508), - [anon_sym_declare] = ACTIONS(2508), - [anon_sym_public] = ACTIONS(2508), - [anon_sym_private] = ACTIONS(2508), - [anon_sym_protected] = ACTIONS(2508), - [anon_sym_override] = ACTIONS(2508), - [anon_sym_module] = ACTIONS(2508), - [anon_sym_any] = ACTIONS(2508), - [anon_sym_number] = ACTIONS(2508), - [anon_sym_boolean] = ACTIONS(2508), - [anon_sym_string] = ACTIONS(2508), - [anon_sym_symbol] = ACTIONS(2508), - [anon_sym_object] = ACTIONS(2508), - [anon_sym_abstract] = ACTIONS(2508), - [anon_sym_interface] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2508), - [sym_html_comment] = ACTIONS(5), - }, - [780] = { - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_export] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_namespace] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_typeof] = ACTIONS(1753), - [anon_sym_import] = ACTIONS(1753), - [anon_sym_with] = ACTIONS(1753), - [anon_sym_var] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_await] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_debugger] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_throw] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_DQUOTE] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1751), - [anon_sym_class] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_function] = ACTIONS(1753), - [anon_sym_new] = ACTIONS(1753), - [anon_sym_using] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_SLASH] = ACTIONS(1753), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_TILDE] = ACTIONS(1751), - [anon_sym_void] = ACTIONS(1753), - [anon_sym_delete] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1751), - [anon_sym_DASH_DASH] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_number] = ACTIONS(1751), - [sym_private_property_identifier] = ACTIONS(1751), - [sym_this] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_undefined] = ACTIONS(1753), - [anon_sym_AT] = ACTIONS(1751), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_readonly] = ACTIONS(1753), - [anon_sym_get] = ACTIONS(1753), - [anon_sym_set] = ACTIONS(1753), - [anon_sym_declare] = ACTIONS(1753), - [anon_sym_public] = ACTIONS(1753), - [anon_sym_private] = ACTIONS(1753), - [anon_sym_protected] = ACTIONS(1753), - [anon_sym_override] = ACTIONS(1753), - [anon_sym_module] = ACTIONS(1753), - [anon_sym_any] = ACTIONS(1753), - [anon_sym_number] = ACTIONS(1753), - [anon_sym_boolean] = ACTIONS(1753), - [anon_sym_string] = ACTIONS(1753), - [anon_sym_symbol] = ACTIONS(1753), - [anon_sym_object] = ACTIONS(1753), - [anon_sym_abstract] = ACTIONS(1753), - [anon_sym_interface] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [sym__automatic_semicolon] = ACTIONS(1759), - [sym_html_comment] = ACTIONS(5), - }, - [781] = { - [sym_statement_block] = STATE(911), - [ts_builtin_sym_end] = ACTIONS(1653), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1655), - [anon_sym_type] = ACTIONS(1655), - [anon_sym_namespace] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_typeof] = ACTIONS(1655), - [anon_sym_import] = ACTIONS(1655), - [anon_sym_with] = ACTIONS(1655), - [anon_sym_var] = ACTIONS(1655), - [anon_sym_let] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1655), - [anon_sym_for] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_await] = ACTIONS(1655), - [anon_sym_while] = ACTIONS(1655), - [anon_sym_do] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1655), - [anon_sym_break] = ACTIONS(1655), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_debugger] = ACTIONS(1655), - [anon_sym_return] = ACTIONS(1655), - [anon_sym_throw] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_yield] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_DQUOTE] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1655), - [anon_sym_async] = ACTIONS(1655), - [anon_sym_function] = ACTIONS(1655), - [anon_sym_new] = ACTIONS(1655), - [anon_sym_using] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_TILDE] = ACTIONS(1653), - [anon_sym_void] = ACTIONS(1655), - [anon_sym_delete] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1653), - [sym_number] = ACTIONS(1653), - [sym_private_property_identifier] = ACTIONS(1653), - [sym_this] = ACTIONS(1655), - [sym_super] = ACTIONS(1655), - [sym_true] = ACTIONS(1655), - [sym_false] = ACTIONS(1655), - [sym_null] = ACTIONS(1655), - [sym_undefined] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1655), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_get] = ACTIONS(1655), - [anon_sym_set] = ACTIONS(1655), - [anon_sym_declare] = ACTIONS(1655), - [anon_sym_public] = ACTIONS(1655), - [anon_sym_private] = ACTIONS(1655), - [anon_sym_protected] = ACTIONS(1655), - [anon_sym_override] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1655), - [anon_sym_any] = ACTIONS(1655), - [anon_sym_number] = ACTIONS(1655), - [anon_sym_boolean] = ACTIONS(1655), - [anon_sym_string] = ACTIONS(1655), - [anon_sym_symbol] = ACTIONS(1655), - [anon_sym_object] = ACTIONS(1655), - [anon_sym_abstract] = ACTIONS(1655), - [anon_sym_interface] = ACTIONS(1655), - [anon_sym_enum] = ACTIONS(1655), - [sym_html_comment] = ACTIONS(5), - }, - [782] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5066), - [sym_optional_tuple_parameter] = STATE(5066), - [sym_optional_type] = STATE(5066), - [sym_rest_type] = STATE(5066), - [sym__tuple_type_member] = STATE(5066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [sym__automatic_semicolon] = ACTIONS(2502), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(779)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4977), + [sym_optional_tuple_parameter] = STATE(4977), + [sym_optional_type] = STATE(4977), + [sym_rest_type] = STATE(4977), + [sym__tuple_type_member] = STATE(4977), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_COMMA] = ACTIONS(2510), + [anon_sym_COMMA] = ACTIONS(2506), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2512), + [anon_sym_RBRACK] = ACTIONS(2508), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -108046,24 +108002,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [783] = { + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(780)] = { + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_namespace] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_typeof] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1833), + [anon_sym_with] = ACTIONS(1833), + [anon_sym_var] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_debugger] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_case] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1833), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1833), + [anon_sym_delete] = ACTIONS(1833), + [anon_sym_PLUS_PLUS] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_number] = ACTIONS(1831), + [sym_private_property_identifier] = ACTIONS(1831), + [sym_this] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_null] = ACTIONS(1833), + [sym_undefined] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1833), + [anon_sym_get] = ACTIONS(1833), + [anon_sym_set] = ACTIONS(1833), + [anon_sym_declare] = ACTIONS(1833), + [anon_sym_public] = ACTIONS(1833), + [anon_sym_private] = ACTIONS(1833), + [anon_sym_protected] = ACTIONS(1833), + [anon_sym_override] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_any] = ACTIONS(1833), + [anon_sym_number] = ACTIONS(1833), + [anon_sym_boolean] = ACTIONS(1833), + [anon_sym_string] = ACTIONS(1833), + [anon_sym_symbol] = ACTIONS(1833), + [anon_sym_object] = ACTIONS(1833), + [anon_sym_abstract] = ACTIONS(1833), + [anon_sym_interface] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [sym__automatic_semicolon] = ACTIONS(1839), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(781)] = { + [ts_builtin_sym_end] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1729), + [anon_sym_export] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1729), + [anon_sym_type] = ACTIONS(1729), + [anon_sym_namespace] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_typeof] = ACTIONS(1729), + [anon_sym_import] = ACTIONS(1729), + [anon_sym_with] = ACTIONS(1729), + [anon_sym_var] = ACTIONS(1729), + [anon_sym_let] = ACTIONS(1729), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1729), + [anon_sym_if] = ACTIONS(1729), + [anon_sym_switch] = ACTIONS(1729), + [anon_sym_for] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_await] = ACTIONS(1729), + [anon_sym_while] = ACTIONS(1729), + [anon_sym_do] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1729), + [anon_sym_break] = ACTIONS(1729), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_debugger] = ACTIONS(1729), + [anon_sym_return] = ACTIONS(1729), + [anon_sym_throw] = ACTIONS(1729), + [anon_sym_case] = ACTIONS(1729), + [anon_sym_yield] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [anon_sym_SQUOTE] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1729), + [anon_sym_async] = ACTIONS(1729), + [anon_sym_function] = ACTIONS(1729), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_using] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_SLASH] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_void] = ACTIONS(1729), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1727), + [sym_number] = ACTIONS(1727), + [sym_private_property_identifier] = ACTIONS(1727), + [sym_this] = ACTIONS(1729), + [sym_super] = ACTIONS(1729), + [sym_true] = ACTIONS(1729), + [sym_false] = ACTIONS(1729), + [sym_null] = ACTIONS(1729), + [sym_undefined] = ACTIONS(1729), + [anon_sym_AT] = ACTIONS(1727), + [anon_sym_static] = ACTIONS(1729), + [anon_sym_readonly] = ACTIONS(1729), + [anon_sym_get] = ACTIONS(1729), + [anon_sym_set] = ACTIONS(1729), + [anon_sym_declare] = ACTIONS(1729), + [anon_sym_public] = ACTIONS(1729), + [anon_sym_private] = ACTIONS(1729), + [anon_sym_protected] = ACTIONS(1729), + [anon_sym_override] = ACTIONS(1729), + [anon_sym_module] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1729), + [anon_sym_number] = ACTIONS(1729), + [anon_sym_boolean] = ACTIONS(1729), + [anon_sym_string] = ACTIONS(1729), + [anon_sym_symbol] = ACTIONS(1729), + [anon_sym_object] = ACTIONS(1729), + [anon_sym_abstract] = ACTIONS(1729), + [anon_sym_interface] = ACTIONS(1729), + [anon_sym_enum] = ACTIONS(1729), + [sym__automatic_semicolon] = ACTIONS(1735), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(782)] = { + [ts_builtin_sym_end] = ACTIONS(2510), + [sym_identifier] = ACTIONS(2512), + [anon_sym_export] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_type] = ACTIONS(2512), + [anon_sym_namespace] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_import] = ACTIONS(2512), + [anon_sym_with] = ACTIONS(2512), + [anon_sym_var] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_await] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_try] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_debugger] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_throw] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_finally] = ACTIONS(2512), + [anon_sym_yield] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_class] = ACTIONS(2512), + [anon_sym_async] = ACTIONS(2512), + [anon_sym_function] = ACTIONS(2512), + [anon_sym_new] = ACTIONS(2512), + [anon_sym_using] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_LT] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_void] = ACTIONS(2512), + [anon_sym_delete] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2510), + [sym_number] = ACTIONS(2510), + [sym_private_property_identifier] = ACTIONS(2510), + [sym_this] = ACTIONS(2512), + [sym_super] = ACTIONS(2512), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [sym_null] = ACTIONS(2512), + [sym_undefined] = ACTIONS(2512), + [anon_sym_AT] = ACTIONS(2510), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_readonly] = ACTIONS(2512), + [anon_sym_get] = ACTIONS(2512), + [anon_sym_set] = ACTIONS(2512), + [anon_sym_declare] = ACTIONS(2512), + [anon_sym_public] = ACTIONS(2512), + [anon_sym_private] = ACTIONS(2512), + [anon_sym_protected] = ACTIONS(2512), + [anon_sym_override] = ACTIONS(2512), + [anon_sym_module] = ACTIONS(2512), + [anon_sym_any] = ACTIONS(2512), + [anon_sym_number] = ACTIONS(2512), + [anon_sym_boolean] = ACTIONS(2512), + [anon_sym_string] = ACTIONS(2512), + [anon_sym_symbol] = ACTIONS(2512), + [anon_sym_object] = ACTIONS(2512), + [anon_sym_abstract] = ACTIONS(2512), + [anon_sym_interface] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(783)] = { [ts_builtin_sym_end] = ACTIONS(2514), [sym_identifier] = ACTIONS(2516), [anon_sym_export] = ACTIONS(2516), @@ -108145,63 +108350,883 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2516), [sym_html_comment] = ACTIONS(5), }, - [784] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [STATE(784)] = { + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2520), + [anon_sym_export] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_type] = ACTIONS(2520), + [anon_sym_namespace] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_typeof] = ACTIONS(2520), + [anon_sym_import] = ACTIONS(2520), + [anon_sym_with] = ACTIONS(2520), + [anon_sym_var] = ACTIONS(2520), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_await] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_try] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_debugger] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_throw] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_class] = ACTIONS(2520), + [anon_sym_async] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2520), + [anon_sym_using] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_void] = ACTIONS(2520), + [anon_sym_delete] = ACTIONS(2520), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2518), + [sym_number] = ACTIONS(2518), + [sym_private_property_identifier] = ACTIONS(2518), + [sym_this] = ACTIONS(2520), + [sym_super] = ACTIONS(2520), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [sym_null] = ACTIONS(2520), + [sym_undefined] = ACTIONS(2520), + [anon_sym_AT] = ACTIONS(2518), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_readonly] = ACTIONS(2520), + [anon_sym_get] = ACTIONS(2520), + [anon_sym_set] = ACTIONS(2520), + [anon_sym_declare] = ACTIONS(2520), + [anon_sym_public] = ACTIONS(2520), + [anon_sym_private] = ACTIONS(2520), + [anon_sym_protected] = ACTIONS(2520), + [anon_sym_override] = ACTIONS(2520), + [anon_sym_module] = ACTIONS(2520), + [anon_sym_any] = ACTIONS(2520), + [anon_sym_number] = ACTIONS(2520), + [anon_sym_boolean] = ACTIONS(2520), + [anon_sym_string] = ACTIONS(2520), + [anon_sym_symbol] = ACTIONS(2520), + [anon_sym_object] = ACTIONS(2520), + [anon_sym_abstract] = ACTIONS(2520), + [anon_sym_interface] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(785)] = { + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2524), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_namespace] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_import] = ACTIONS(2524), + [anon_sym_with] = ACTIONS(2524), + [anon_sym_var] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_await] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_debugger] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_class] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_using] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_void] = ACTIONS(2524), + [anon_sym_delete] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2522), + [sym_number] = ACTIONS(2522), + [sym_private_property_identifier] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [sym_null] = ACTIONS(2524), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_readonly] = ACTIONS(2524), + [anon_sym_get] = ACTIONS(2524), + [anon_sym_set] = ACTIONS(2524), + [anon_sym_declare] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_protected] = ACTIONS(2524), + [anon_sym_override] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_any] = ACTIONS(2524), + [anon_sym_number] = ACTIONS(2524), + [anon_sym_boolean] = ACTIONS(2524), + [anon_sym_string] = ACTIONS(2524), + [anon_sym_symbol] = ACTIONS(2524), + [anon_sym_object] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_interface] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(786)] = { + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2524), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_namespace] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_import] = ACTIONS(2524), + [anon_sym_with] = ACTIONS(2524), + [anon_sym_var] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_await] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_debugger] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_class] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_using] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_void] = ACTIONS(2524), + [anon_sym_delete] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2522), + [sym_number] = ACTIONS(2522), + [sym_private_property_identifier] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [sym_null] = ACTIONS(2524), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_readonly] = ACTIONS(2524), + [anon_sym_get] = ACTIONS(2524), + [anon_sym_set] = ACTIONS(2524), + [anon_sym_declare] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_protected] = ACTIONS(2524), + [anon_sym_override] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_any] = ACTIONS(2524), + [anon_sym_number] = ACTIONS(2524), + [anon_sym_boolean] = ACTIONS(2524), + [anon_sym_string] = ACTIONS(2524), + [anon_sym_symbol] = ACTIONS(2524), + [anon_sym_object] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_interface] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(787)] = { + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2524), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_namespace] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_import] = ACTIONS(2524), + [anon_sym_with] = ACTIONS(2524), + [anon_sym_var] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_await] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_debugger] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_class] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_using] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_void] = ACTIONS(2524), + [anon_sym_delete] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2522), + [sym_number] = ACTIONS(2522), + [sym_private_property_identifier] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [sym_null] = ACTIONS(2524), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_readonly] = ACTIONS(2524), + [anon_sym_get] = ACTIONS(2524), + [anon_sym_set] = ACTIONS(2524), + [anon_sym_declare] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_protected] = ACTIONS(2524), + [anon_sym_override] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_any] = ACTIONS(2524), + [anon_sym_number] = ACTIONS(2524), + [anon_sym_boolean] = ACTIONS(2524), + [anon_sym_string] = ACTIONS(2524), + [anon_sym_symbol] = ACTIONS(2524), + [anon_sym_object] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_interface] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(788)] = { + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_identifier] = ACTIONS(2528), + [anon_sym_export] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_type] = ACTIONS(2528), + [anon_sym_namespace] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_import] = ACTIONS(2528), + [anon_sym_with] = ACTIONS(2528), + [anon_sym_var] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_await] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_debugger] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_throw] = ACTIONS(2528), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_class] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(2528), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_using] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_SLASH] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_void] = ACTIONS(2528), + [anon_sym_delete] = ACTIONS(2528), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2526), + [sym_number] = ACTIONS(2526), + [sym_private_property_identifier] = ACTIONS(2526), + [sym_this] = ACTIONS(2528), + [sym_super] = ACTIONS(2528), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [sym_null] = ACTIONS(2528), + [sym_undefined] = ACTIONS(2528), + [anon_sym_AT] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_readonly] = ACTIONS(2528), + [anon_sym_get] = ACTIONS(2528), + [anon_sym_set] = ACTIONS(2528), + [anon_sym_declare] = ACTIONS(2528), + [anon_sym_public] = ACTIONS(2528), + [anon_sym_private] = ACTIONS(2528), + [anon_sym_protected] = ACTIONS(2528), + [anon_sym_override] = ACTIONS(2528), + [anon_sym_module] = ACTIONS(2528), + [anon_sym_any] = ACTIONS(2528), + [anon_sym_number] = ACTIONS(2528), + [anon_sym_boolean] = ACTIONS(2528), + [anon_sym_string] = ACTIONS(2528), + [anon_sym_symbol] = ACTIONS(2528), + [anon_sym_object] = ACTIONS(2528), + [anon_sym_abstract] = ACTIONS(2528), + [anon_sym_interface] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(789)] = { + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2532), + [anon_sym_export] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2532), + [anon_sym_namespace] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_import] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_var] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_await] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_try] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_debugger] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_throw] = ACTIONS(2532), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_yield] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_class] = ACTIONS(2532), + [anon_sym_async] = ACTIONS(2532), + [anon_sym_function] = ACTIONS(2532), + [anon_sym_new] = ACTIONS(2532), + [anon_sym_using] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_void] = ACTIONS(2532), + [anon_sym_delete] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2530), + [sym_number] = ACTIONS(2530), + [sym_private_property_identifier] = ACTIONS(2530), + [sym_this] = ACTIONS(2532), + [sym_super] = ACTIONS(2532), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [sym_null] = ACTIONS(2532), + [sym_undefined] = ACTIONS(2532), + [anon_sym_AT] = ACTIONS(2530), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_readonly] = ACTIONS(2532), + [anon_sym_get] = ACTIONS(2532), + [anon_sym_set] = ACTIONS(2532), + [anon_sym_declare] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), + [anon_sym_private] = ACTIONS(2532), + [anon_sym_protected] = ACTIONS(2532), + [anon_sym_override] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), + [anon_sym_any] = ACTIONS(2532), + [anon_sym_number] = ACTIONS(2532), + [anon_sym_boolean] = ACTIONS(2532), + [anon_sym_string] = ACTIONS(2532), + [anon_sym_symbol] = ACTIONS(2532), + [anon_sym_object] = ACTIONS(2532), + [anon_sym_abstract] = ACTIONS(2532), + [anon_sym_interface] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(790)] = { + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2536), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_import] = ACTIONS(2536), + [anon_sym_with] = ACTIONS(2536), + [anon_sym_var] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_await] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_debugger] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_yield] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_class] = ACTIONS(2536), + [anon_sym_async] = ACTIONS(2536), + [anon_sym_function] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_using] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_void] = ACTIONS(2536), + [anon_sym_delete] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2534), + [sym_number] = ACTIONS(2534), + [sym_private_property_identifier] = ACTIONS(2534), + [sym_this] = ACTIONS(2536), + [sym_super] = ACTIONS(2536), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [sym_null] = ACTIONS(2536), + [sym_undefined] = ACTIONS(2536), + [anon_sym_AT] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_readonly] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_protected] = ACTIONS(2536), + [anon_sym_override] = ACTIONS(2536), + [anon_sym_module] = ACTIONS(2536), + [anon_sym_any] = ACTIONS(2536), + [anon_sym_number] = ACTIONS(2536), + [anon_sym_boolean] = ACTIONS(2536), + [anon_sym_string] = ACTIONS(2536), + [anon_sym_symbol] = ACTIONS(2536), + [anon_sym_object] = ACTIONS(2536), + [anon_sym_abstract] = ACTIONS(2536), + [anon_sym_interface] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(791)] = { + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_type] = ACTIONS(2540), + [anon_sym_namespace] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_import] = ACTIONS(2540), + [anon_sym_with] = ACTIONS(2540), + [anon_sym_var] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_await] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_debugger] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_throw] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_yield] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_class] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2540), + [anon_sym_using] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_void] = ACTIONS(2540), + [anon_sym_delete] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2538), + [sym_number] = ACTIONS(2538), + [sym_private_property_identifier] = ACTIONS(2538), + [sym_this] = ACTIONS(2540), + [sym_super] = ACTIONS(2540), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [sym_null] = ACTIONS(2540), + [sym_undefined] = ACTIONS(2540), + [anon_sym_AT] = ACTIONS(2538), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_get] = ACTIONS(2540), + [anon_sym_set] = ACTIONS(2540), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2540), + [anon_sym_private] = ACTIONS(2540), + [anon_sym_protected] = ACTIONS(2540), + [anon_sym_override] = ACTIONS(2540), + [anon_sym_module] = ACTIONS(2540), + [anon_sym_any] = ACTIONS(2540), + [anon_sym_number] = ACTIONS(2540), + [anon_sym_boolean] = ACTIONS(2540), + [anon_sym_string] = ACTIONS(2540), + [anon_sym_symbol] = ACTIONS(2540), + [anon_sym_object] = ACTIONS(2540), + [anon_sym_abstract] = ACTIONS(2540), + [anon_sym_interface] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(792)] = { + [ts_builtin_sym_end] = ACTIONS(2542), + [sym_identifier] = ACTIONS(2544), + [anon_sym_export] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_namespace] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_import] = ACTIONS(2544), + [anon_sym_with] = ACTIONS(2544), + [anon_sym_var] = ACTIONS(2544), + [anon_sym_let] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_await] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_try] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_debugger] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_throw] = ACTIONS(2544), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_yield] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2544), + [anon_sym_async] = ACTIONS(2544), + [anon_sym_function] = ACTIONS(2544), + [anon_sym_new] = ACTIONS(2544), + [anon_sym_using] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_void] = ACTIONS(2544), + [anon_sym_delete] = ACTIONS(2544), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2542), + [sym_number] = ACTIONS(2542), + [sym_private_property_identifier] = ACTIONS(2542), + [sym_this] = ACTIONS(2544), + [sym_super] = ACTIONS(2544), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [sym_null] = ACTIONS(2544), + [sym_undefined] = ACTIONS(2544), + [anon_sym_AT] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_readonly] = ACTIONS(2544), + [anon_sym_get] = ACTIONS(2544), + [anon_sym_set] = ACTIONS(2544), + [anon_sym_declare] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_protected] = ACTIONS(2544), + [anon_sym_override] = ACTIONS(2544), + [anon_sym_module] = ACTIONS(2544), + [anon_sym_any] = ACTIONS(2544), + [anon_sym_number] = ACTIONS(2544), + [anon_sym_boolean] = ACTIONS(2544), + [anon_sym_string] = ACTIONS(2544), + [anon_sym_symbol] = ACTIONS(2544), + [anon_sym_object] = ACTIONS(2544), + [anon_sym_abstract] = ACTIONS(2544), + [anon_sym_interface] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(793)] = { + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2548), + [anon_sym_export] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_type] = ACTIONS(2548), + [anon_sym_namespace] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_typeof] = ACTIONS(2548), + [anon_sym_import] = ACTIONS(2548), + [anon_sym_with] = ACTIONS(2548), + [anon_sym_var] = ACTIONS(2548), + [anon_sym_let] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_await] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_debugger] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_throw] = ACTIONS(2548), + [anon_sym_case] = ACTIONS(2548), + [anon_sym_yield] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_class] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2548), + [anon_sym_function] = ACTIONS(2548), + [anon_sym_new] = ACTIONS(2548), + [anon_sym_using] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_LT] = ACTIONS(2546), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_void] = ACTIONS(2548), + [anon_sym_delete] = ACTIONS(2548), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2546), + [sym_number] = ACTIONS(2546), + [sym_private_property_identifier] = ACTIONS(2546), + [sym_this] = ACTIONS(2548), + [sym_super] = ACTIONS(2548), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [sym_null] = ACTIONS(2548), + [sym_undefined] = ACTIONS(2548), + [anon_sym_AT] = ACTIONS(2546), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_readonly] = ACTIONS(2548), + [anon_sym_get] = ACTIONS(2548), + [anon_sym_set] = ACTIONS(2548), + [anon_sym_declare] = ACTIONS(2548), + [anon_sym_public] = ACTIONS(2548), + [anon_sym_private] = ACTIONS(2548), + [anon_sym_protected] = ACTIONS(2548), + [anon_sym_override] = ACTIONS(2548), + [anon_sym_module] = ACTIONS(2548), + [anon_sym_any] = ACTIONS(2548), + [anon_sym_number] = ACTIONS(2548), + [anon_sym_boolean] = ACTIONS(2548), + [anon_sym_string] = ACTIONS(2548), + [anon_sym_symbol] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(2548), + [anon_sym_abstract] = ACTIONS(2548), + [anon_sym_interface] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(794)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2518), + [anon_sym_RBRACK] = ACTIONS(2550), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -108210,818 +109235,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [785] = { - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2522), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_typeof] = ACTIONS(2522), - [anon_sym_import] = ACTIONS(2522), - [anon_sym_with] = ACTIONS(2522), - [anon_sym_var] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_debugger] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_yield] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_async] = ACTIONS(2522), - [anon_sym_function] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_void] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_number] = ACTIONS(2520), - [sym_private_property_identifier] = ACTIONS(2520), - [sym_this] = ACTIONS(2522), - [sym_super] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_undefined] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_declare] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_protected] = ACTIONS(2522), - [anon_sym_override] = ACTIONS(2522), - [anon_sym_module] = ACTIONS(2522), - [anon_sym_any] = ACTIONS(2522), - [anon_sym_number] = ACTIONS(2522), - [anon_sym_boolean] = ACTIONS(2522), - [anon_sym_string] = ACTIONS(2522), - [anon_sym_symbol] = ACTIONS(2522), - [anon_sym_object] = ACTIONS(2522), - [anon_sym_abstract] = ACTIONS(2522), - [anon_sym_interface] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [sym_html_comment] = ACTIONS(5), - }, - [786] = { - [ts_builtin_sym_end] = ACTIONS(2524), - [sym_identifier] = ACTIONS(2526), - [anon_sym_export] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_type] = ACTIONS(2526), - [anon_sym_namespace] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_typeof] = ACTIONS(2526), - [anon_sym_import] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2526), - [anon_sym_var] = ACTIONS(2526), - [anon_sym_let] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_await] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_debugger] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_throw] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_using] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_void] = ACTIONS(2526), - [anon_sym_delete] = ACTIONS(2526), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2524), - [sym_number] = ACTIONS(2524), - [sym_private_property_identifier] = ACTIONS(2524), - [sym_this] = ACTIONS(2526), - [sym_super] = ACTIONS(2526), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_undefined] = ACTIONS(2526), - [anon_sym_AT] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_readonly] = ACTIONS(2526), - [anon_sym_get] = ACTIONS(2526), - [anon_sym_set] = ACTIONS(2526), - [anon_sym_declare] = ACTIONS(2526), - [anon_sym_public] = ACTIONS(2526), - [anon_sym_private] = ACTIONS(2526), - [anon_sym_protected] = ACTIONS(2526), - [anon_sym_override] = ACTIONS(2526), - [anon_sym_module] = ACTIONS(2526), - [anon_sym_any] = ACTIONS(2526), - [anon_sym_number] = ACTIONS(2526), - [anon_sym_boolean] = ACTIONS(2526), - [anon_sym_string] = ACTIONS(2526), - [anon_sym_symbol] = ACTIONS(2526), - [anon_sym_object] = ACTIONS(2526), - [anon_sym_abstract] = ACTIONS(2526), - [anon_sym_interface] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [sym_html_comment] = ACTIONS(5), - }, - [787] = { - [ts_builtin_sym_end] = ACTIONS(2528), - [sym_identifier] = ACTIONS(2530), - [anon_sym_export] = ACTIONS(2530), - [anon_sym_default] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_namespace] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_import] = ACTIONS(2530), - [anon_sym_with] = ACTIONS(2530), - [anon_sym_var] = ACTIONS(2530), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_const] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_else] = ACTIONS(2530), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_switch] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_await] = ACTIONS(2530), - [anon_sym_while] = ACTIONS(2530), - [anon_sym_do] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2530), - [anon_sym_continue] = ACTIONS(2530), - [anon_sym_debugger] = ACTIONS(2530), - [anon_sym_return] = ACTIONS(2530), - [anon_sym_throw] = ACTIONS(2530), - [anon_sym_case] = ACTIONS(2530), - [anon_sym_yield] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_class] = ACTIONS(2530), - [anon_sym_async] = ACTIONS(2530), - [anon_sym_function] = ACTIONS(2530), - [anon_sym_new] = ACTIONS(2530), - [anon_sym_using] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_void] = ACTIONS(2530), - [anon_sym_delete] = ACTIONS(2530), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2528), - [sym_number] = ACTIONS(2528), - [sym_private_property_identifier] = ACTIONS(2528), - [sym_this] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_true] = ACTIONS(2530), - [sym_false] = ACTIONS(2530), - [sym_null] = ACTIONS(2530), - [sym_undefined] = ACTIONS(2530), - [anon_sym_AT] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_readonly] = ACTIONS(2530), - [anon_sym_get] = ACTIONS(2530), - [anon_sym_set] = ACTIONS(2530), - [anon_sym_declare] = ACTIONS(2530), - [anon_sym_public] = ACTIONS(2530), - [anon_sym_private] = ACTIONS(2530), - [anon_sym_protected] = ACTIONS(2530), - [anon_sym_override] = ACTIONS(2530), - [anon_sym_module] = ACTIONS(2530), - [anon_sym_any] = ACTIONS(2530), - [anon_sym_number] = ACTIONS(2530), - [anon_sym_boolean] = ACTIONS(2530), - [anon_sym_string] = ACTIONS(2530), - [anon_sym_symbol] = ACTIONS(2530), - [anon_sym_object] = ACTIONS(2530), - [anon_sym_abstract] = ACTIONS(2530), - [anon_sym_interface] = ACTIONS(2530), - [anon_sym_enum] = ACTIONS(2530), - [sym_html_comment] = ACTIONS(5), - }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(2532), - [sym_identifier] = ACTIONS(2534), - [anon_sym_export] = ACTIONS(2534), - [anon_sym_default] = ACTIONS(2534), - [anon_sym_type] = ACTIONS(2534), - [anon_sym_namespace] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2532), - [anon_sym_typeof] = ACTIONS(2534), - [anon_sym_import] = ACTIONS(2534), - [anon_sym_with] = ACTIONS(2534), - [anon_sym_var] = ACTIONS(2534), - [anon_sym_let] = ACTIONS(2534), - [anon_sym_const] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_else] = ACTIONS(2534), - [anon_sym_if] = ACTIONS(2534), - [anon_sym_switch] = ACTIONS(2534), - [anon_sym_for] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2532), - [anon_sym_await] = ACTIONS(2534), - [anon_sym_while] = ACTIONS(2534), - [anon_sym_do] = ACTIONS(2534), - [anon_sym_try] = ACTIONS(2534), - [anon_sym_break] = ACTIONS(2534), - [anon_sym_continue] = ACTIONS(2534), - [anon_sym_debugger] = ACTIONS(2534), - [anon_sym_return] = ACTIONS(2534), - [anon_sym_throw] = ACTIONS(2534), - [anon_sym_case] = ACTIONS(2534), - [anon_sym_yield] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2532), - [anon_sym_DQUOTE] = ACTIONS(2532), - [anon_sym_SQUOTE] = ACTIONS(2532), - [anon_sym_class] = ACTIONS(2534), - [anon_sym_async] = ACTIONS(2534), - [anon_sym_function] = ACTIONS(2534), - [anon_sym_new] = ACTIONS(2534), - [anon_sym_using] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2532), - [anon_sym_TILDE] = ACTIONS(2532), - [anon_sym_void] = ACTIONS(2534), - [anon_sym_delete] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2532), - [sym_private_property_identifier] = ACTIONS(2532), - [sym_this] = ACTIONS(2534), - [sym_super] = ACTIONS(2534), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_AT] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2534), - [anon_sym_get] = ACTIONS(2534), - [anon_sym_set] = ACTIONS(2534), - [anon_sym_declare] = ACTIONS(2534), - [anon_sym_public] = ACTIONS(2534), - [anon_sym_private] = ACTIONS(2534), - [anon_sym_protected] = ACTIONS(2534), - [anon_sym_override] = ACTIONS(2534), - [anon_sym_module] = ACTIONS(2534), - [anon_sym_any] = ACTIONS(2534), - [anon_sym_number] = ACTIONS(2534), - [anon_sym_boolean] = ACTIONS(2534), - [anon_sym_string] = ACTIONS(2534), - [anon_sym_symbol] = ACTIONS(2534), - [anon_sym_object] = ACTIONS(2534), - [anon_sym_abstract] = ACTIONS(2534), - [anon_sym_interface] = ACTIONS(2534), - [anon_sym_enum] = ACTIONS(2534), - [sym_html_comment] = ACTIONS(5), - }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(2536), - [sym_identifier] = ACTIONS(2538), - [anon_sym_export] = ACTIONS(2538), - [anon_sym_default] = ACTIONS(2538), - [anon_sym_type] = ACTIONS(2538), - [anon_sym_namespace] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2536), - [anon_sym_RBRACE] = ACTIONS(2536), - [anon_sym_typeof] = ACTIONS(2538), - [anon_sym_import] = ACTIONS(2538), - [anon_sym_with] = ACTIONS(2538), - [anon_sym_var] = ACTIONS(2538), - [anon_sym_let] = ACTIONS(2538), - [anon_sym_const] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2536), - [anon_sym_else] = ACTIONS(2538), - [anon_sym_if] = ACTIONS(2538), - [anon_sym_switch] = ACTIONS(2538), - [anon_sym_for] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2536), - [anon_sym_await] = ACTIONS(2538), - [anon_sym_while] = ACTIONS(2538), - [anon_sym_do] = ACTIONS(2538), - [anon_sym_try] = ACTIONS(2538), - [anon_sym_break] = ACTIONS(2538), - [anon_sym_continue] = ACTIONS(2538), - [anon_sym_debugger] = ACTIONS(2538), - [anon_sym_return] = ACTIONS(2538), - [anon_sym_throw] = ACTIONS(2538), - [anon_sym_case] = ACTIONS(2538), - [anon_sym_yield] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_DQUOTE] = ACTIONS(2536), - [anon_sym_SQUOTE] = ACTIONS(2536), - [anon_sym_class] = ACTIONS(2538), - [anon_sym_async] = ACTIONS(2538), - [anon_sym_function] = ACTIONS(2538), - [anon_sym_new] = ACTIONS(2538), - [anon_sym_using] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2536), - [anon_sym_TILDE] = ACTIONS(2536), - [anon_sym_void] = ACTIONS(2538), - [anon_sym_delete] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2536), - [sym_number] = ACTIONS(2536), - [sym_private_property_identifier] = ACTIONS(2536), - [sym_this] = ACTIONS(2538), - [sym_super] = ACTIONS(2538), - [sym_true] = ACTIONS(2538), - [sym_false] = ACTIONS(2538), - [sym_null] = ACTIONS(2538), - [sym_undefined] = ACTIONS(2538), - [anon_sym_AT] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2538), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_get] = ACTIONS(2538), - [anon_sym_set] = ACTIONS(2538), - [anon_sym_declare] = ACTIONS(2538), - [anon_sym_public] = ACTIONS(2538), - [anon_sym_private] = ACTIONS(2538), - [anon_sym_protected] = ACTIONS(2538), - [anon_sym_override] = ACTIONS(2538), - [anon_sym_module] = ACTIONS(2538), - [anon_sym_any] = ACTIONS(2538), - [anon_sym_number] = ACTIONS(2538), - [anon_sym_boolean] = ACTIONS(2538), - [anon_sym_string] = ACTIONS(2538), - [anon_sym_symbol] = ACTIONS(2538), - [anon_sym_object] = ACTIONS(2538), - [anon_sym_abstract] = ACTIONS(2538), - [anon_sym_interface] = ACTIONS(2538), - [anon_sym_enum] = ACTIONS(2538), - [sym_html_comment] = ACTIONS(5), - }, - [790] = { - [ts_builtin_sym_end] = ACTIONS(2540), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_namespace] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_typeof] = ACTIONS(2542), - [anon_sym_import] = ACTIONS(2542), - [anon_sym_with] = ACTIONS(2542), - [anon_sym_var] = ACTIONS(2542), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_else] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_switch] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_await] = ACTIONS(2542), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_do] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_debugger] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_throw] = ACTIONS(2542), - [anon_sym_case] = ACTIONS(2542), - [anon_sym_yield] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2542), - [anon_sym_function] = ACTIONS(2542), - [anon_sym_new] = ACTIONS(2542), - [anon_sym_using] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_TILDE] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2542), - [anon_sym_delete] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2540), - [sym_number] = ACTIONS(2540), - [sym_private_property_identifier] = ACTIONS(2540), - [sym_this] = ACTIONS(2542), - [sym_super] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_null] = ACTIONS(2542), - [sym_undefined] = ACTIONS(2542), - [anon_sym_AT] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2542), - [anon_sym_readonly] = ACTIONS(2542), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_declare] = ACTIONS(2542), - [anon_sym_public] = ACTIONS(2542), - [anon_sym_private] = ACTIONS(2542), - [anon_sym_protected] = ACTIONS(2542), - [anon_sym_override] = ACTIONS(2542), - [anon_sym_module] = ACTIONS(2542), - [anon_sym_any] = ACTIONS(2542), - [anon_sym_number] = ACTIONS(2542), - [anon_sym_boolean] = ACTIONS(2542), - [anon_sym_string] = ACTIONS(2542), - [anon_sym_symbol] = ACTIONS(2542), - [anon_sym_object] = ACTIONS(2542), - [anon_sym_abstract] = ACTIONS(2542), - [anon_sym_interface] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), - [sym_html_comment] = ACTIONS(5), - }, - [791] = { - [ts_builtin_sym_end] = ACTIONS(2544), - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_using] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2544), - [anon_sym_TILDE] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2544), - [sym_number] = ACTIONS(2544), - [sym_private_property_identifier] = ACTIONS(2544), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_object] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), - [sym_html_comment] = ACTIONS(5), - }, - [792] = { - [ts_builtin_sym_end] = ACTIONS(2540), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_namespace] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_typeof] = ACTIONS(2542), - [anon_sym_import] = ACTIONS(2542), - [anon_sym_with] = ACTIONS(2542), - [anon_sym_var] = ACTIONS(2542), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_else] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_switch] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_await] = ACTIONS(2542), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_do] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_debugger] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_throw] = ACTIONS(2542), - [anon_sym_case] = ACTIONS(2542), - [anon_sym_yield] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2542), - [anon_sym_function] = ACTIONS(2542), - [anon_sym_new] = ACTIONS(2542), - [anon_sym_using] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_TILDE] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2542), - [anon_sym_delete] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2540), - [sym_number] = ACTIONS(2540), - [sym_private_property_identifier] = ACTIONS(2540), - [sym_this] = ACTIONS(2542), - [sym_super] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_null] = ACTIONS(2542), - [sym_undefined] = ACTIONS(2542), - [anon_sym_AT] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2542), - [anon_sym_readonly] = ACTIONS(2542), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_declare] = ACTIONS(2542), - [anon_sym_public] = ACTIONS(2542), - [anon_sym_private] = ACTIONS(2542), - [anon_sym_protected] = ACTIONS(2542), - [anon_sym_override] = ACTIONS(2542), - [anon_sym_module] = ACTIONS(2542), - [anon_sym_any] = ACTIONS(2542), - [anon_sym_number] = ACTIONS(2542), - [anon_sym_boolean] = ACTIONS(2542), - [anon_sym_string] = ACTIONS(2542), - [anon_sym_symbol] = ACTIONS(2542), - [anon_sym_object] = ACTIONS(2542), - [anon_sym_abstract] = ACTIONS(2542), - [anon_sym_interface] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), - [sym_html_comment] = ACTIONS(5), - }, - [793] = { - [ts_builtin_sym_end] = ACTIONS(2540), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_namespace] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_typeof] = ACTIONS(2542), - [anon_sym_import] = ACTIONS(2542), - [anon_sym_with] = ACTIONS(2542), - [anon_sym_var] = ACTIONS(2542), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_else] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_switch] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_await] = ACTIONS(2542), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_do] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_debugger] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_throw] = ACTIONS(2542), - [anon_sym_case] = ACTIONS(2542), - [anon_sym_yield] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2542), - [anon_sym_function] = ACTIONS(2542), - [anon_sym_new] = ACTIONS(2542), - [anon_sym_using] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2540), - [anon_sym_TILDE] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2542), - [anon_sym_delete] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2540), - [sym_number] = ACTIONS(2540), - [sym_private_property_identifier] = ACTIONS(2540), - [sym_this] = ACTIONS(2542), - [sym_super] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_null] = ACTIONS(2542), - [sym_undefined] = ACTIONS(2542), - [anon_sym_AT] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2542), - [anon_sym_readonly] = ACTIONS(2542), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_declare] = ACTIONS(2542), - [anon_sym_public] = ACTIONS(2542), - [anon_sym_private] = ACTIONS(2542), - [anon_sym_protected] = ACTIONS(2542), - [anon_sym_override] = ACTIONS(2542), - [anon_sym_module] = ACTIONS(2542), - [anon_sym_any] = ACTIONS(2542), - [anon_sym_number] = ACTIONS(2542), - [anon_sym_boolean] = ACTIONS(2542), - [anon_sym_string] = ACTIONS(2542), - [anon_sym_symbol] = ACTIONS(2542), - [anon_sym_object] = ACTIONS(2542), - [anon_sym_abstract] = ACTIONS(2542), - [anon_sym_interface] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), - [sym_html_comment] = ACTIONS(5), - }, - [794] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(795)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2548), + [anon_sym_RBRACK] = ACTIONS(2552), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -109030,80 +109317,408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [795] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(796)] = { + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2556), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_namespace] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_import] = ACTIONS(2556), + [anon_sym_with] = ACTIONS(2556), + [anon_sym_var] = ACTIONS(2556), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_await] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_try] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_debugger] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_throw] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_yield] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_class] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(2556), + [anon_sym_new] = ACTIONS(2556), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_void] = ACTIONS(2556), + [anon_sym_delete] = ACTIONS(2556), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2554), + [sym_number] = ACTIONS(2554), + [sym_private_property_identifier] = ACTIONS(2554), + [sym_this] = ACTIONS(2556), + [sym_super] = ACTIONS(2556), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [sym_null] = ACTIONS(2556), + [sym_undefined] = ACTIONS(2556), + [anon_sym_AT] = ACTIONS(2554), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_readonly] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_declare] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_protected] = ACTIONS(2556), + [anon_sym_override] = ACTIONS(2556), + [anon_sym_module] = ACTIONS(2556), + [anon_sym_any] = ACTIONS(2556), + [anon_sym_number] = ACTIONS(2556), + [anon_sym_boolean] = ACTIONS(2556), + [anon_sym_string] = ACTIONS(2556), + [anon_sym_symbol] = ACTIONS(2556), + [anon_sym_object] = ACTIONS(2556), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_interface] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(797)] = { + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_export] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_namespace] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_import] = ACTIONS(2560), + [anon_sym_with] = ACTIONS(2560), + [anon_sym_var] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_await] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_debugger] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_throw] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_class] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(2560), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_using] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_void] = ACTIONS(2560), + [anon_sym_delete] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2558), + [sym_number] = ACTIONS(2558), + [sym_private_property_identifier] = ACTIONS(2558), + [sym_this] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [sym_null] = ACTIONS(2560), + [sym_undefined] = ACTIONS(2560), + [anon_sym_AT] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_readonly] = ACTIONS(2560), + [anon_sym_get] = ACTIONS(2560), + [anon_sym_set] = ACTIONS(2560), + [anon_sym_declare] = ACTIONS(2560), + [anon_sym_public] = ACTIONS(2560), + [anon_sym_private] = ACTIONS(2560), + [anon_sym_protected] = ACTIONS(2560), + [anon_sym_override] = ACTIONS(2560), + [anon_sym_module] = ACTIONS(2560), + [anon_sym_any] = ACTIONS(2560), + [anon_sym_number] = ACTIONS(2560), + [anon_sym_boolean] = ACTIONS(2560), + [anon_sym_string] = ACTIONS(2560), + [anon_sym_symbol] = ACTIONS(2560), + [anon_sym_object] = ACTIONS(2560), + [anon_sym_abstract] = ACTIONS(2560), + [anon_sym_interface] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(798)] = { + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_export] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_namespace] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_import] = ACTIONS(2560), + [anon_sym_with] = ACTIONS(2560), + [anon_sym_var] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_await] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_debugger] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_throw] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_class] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(2560), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_using] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_void] = ACTIONS(2560), + [anon_sym_delete] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2558), + [sym_number] = ACTIONS(2558), + [sym_private_property_identifier] = ACTIONS(2558), + [sym_this] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [sym_null] = ACTIONS(2560), + [sym_undefined] = ACTIONS(2560), + [anon_sym_AT] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_readonly] = ACTIONS(2560), + [anon_sym_get] = ACTIONS(2560), + [anon_sym_set] = ACTIONS(2560), + [anon_sym_declare] = ACTIONS(2560), + [anon_sym_public] = ACTIONS(2560), + [anon_sym_private] = ACTIONS(2560), + [anon_sym_protected] = ACTIONS(2560), + [anon_sym_override] = ACTIONS(2560), + [anon_sym_module] = ACTIONS(2560), + [anon_sym_any] = ACTIONS(2560), + [anon_sym_number] = ACTIONS(2560), + [anon_sym_boolean] = ACTIONS(2560), + [anon_sym_string] = ACTIONS(2560), + [anon_sym_symbol] = ACTIONS(2560), + [anon_sym_object] = ACTIONS(2560), + [anon_sym_abstract] = ACTIONS(2560), + [anon_sym_interface] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(799)] = { + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2564), + [anon_sym_export] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_namespace] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_import] = ACTIONS(2564), + [anon_sym_with] = ACTIONS(2564), + [anon_sym_var] = ACTIONS(2564), + [anon_sym_let] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_await] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_try] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_debugger] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_throw] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_yield] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_class] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(2564), + [anon_sym_function] = ACTIONS(2564), + [anon_sym_new] = ACTIONS(2564), + [anon_sym_using] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_SLASH] = ACTIONS(2564), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_void] = ACTIONS(2564), + [anon_sym_delete] = ACTIONS(2564), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2562), + [sym_number] = ACTIONS(2562), + [sym_private_property_identifier] = ACTIONS(2562), + [sym_this] = ACTIONS(2564), + [sym_super] = ACTIONS(2564), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [sym_null] = ACTIONS(2564), + [sym_undefined] = ACTIONS(2564), + [anon_sym_AT] = ACTIONS(2562), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_readonly] = ACTIONS(2564), + [anon_sym_get] = ACTIONS(2564), + [anon_sym_set] = ACTIONS(2564), + [anon_sym_declare] = ACTIONS(2564), + [anon_sym_public] = ACTIONS(2564), + [anon_sym_private] = ACTIONS(2564), + [anon_sym_protected] = ACTIONS(2564), + [anon_sym_override] = ACTIONS(2564), + [anon_sym_module] = ACTIONS(2564), + [anon_sym_any] = ACTIONS(2564), + [anon_sym_number] = ACTIONS(2564), + [anon_sym_boolean] = ACTIONS(2564), + [anon_sym_string] = ACTIONS(2564), + [anon_sym_symbol] = ACTIONS(2564), + [anon_sym_object] = ACTIONS(2564), + [anon_sym_abstract] = ACTIONS(2564), + [anon_sym_interface] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(800)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2550), + [anon_sym_RBRACK] = ACTIONS(2566), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -109112,408 +109727,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_identifier] = ACTIONS(2554), - [anon_sym_export] = ACTIONS(2554), - [anon_sym_default] = ACTIONS(2554), - [anon_sym_type] = ACTIONS(2554), - [anon_sym_namespace] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_typeof] = ACTIONS(2554), - [anon_sym_import] = ACTIONS(2554), - [anon_sym_with] = ACTIONS(2554), - [anon_sym_var] = ACTIONS(2554), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_const] = ACTIONS(2554), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_else] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2554), - [anon_sym_switch] = ACTIONS(2554), - [anon_sym_for] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_await] = ACTIONS(2554), - [anon_sym_while] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2554), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2554), - [anon_sym_debugger] = ACTIONS(2554), - [anon_sym_return] = ACTIONS(2554), - [anon_sym_throw] = ACTIONS(2554), - [anon_sym_case] = ACTIONS(2554), - [anon_sym_yield] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_DQUOTE] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2552), - [anon_sym_class] = ACTIONS(2554), - [anon_sym_async] = ACTIONS(2554), - [anon_sym_function] = ACTIONS(2554), - [anon_sym_new] = ACTIONS(2554), - [anon_sym_using] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_LT] = ACTIONS(2552), - [anon_sym_TILDE] = ACTIONS(2552), - [anon_sym_void] = ACTIONS(2554), - [anon_sym_delete] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2552), - [sym_number] = ACTIONS(2552), - [sym_private_property_identifier] = ACTIONS(2552), - [sym_this] = ACTIONS(2554), - [sym_super] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_null] = ACTIONS(2554), - [sym_undefined] = ACTIONS(2554), - [anon_sym_AT] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2554), - [anon_sym_readonly] = ACTIONS(2554), - [anon_sym_get] = ACTIONS(2554), - [anon_sym_set] = ACTIONS(2554), - [anon_sym_declare] = ACTIONS(2554), - [anon_sym_public] = ACTIONS(2554), - [anon_sym_private] = ACTIONS(2554), - [anon_sym_protected] = ACTIONS(2554), - [anon_sym_override] = ACTIONS(2554), - [anon_sym_module] = ACTIONS(2554), - [anon_sym_any] = ACTIONS(2554), - [anon_sym_number] = ACTIONS(2554), - [anon_sym_boolean] = ACTIONS(2554), - [anon_sym_string] = ACTIONS(2554), - [anon_sym_symbol] = ACTIONS(2554), - [anon_sym_object] = ACTIONS(2554), - [anon_sym_abstract] = ACTIONS(2554), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2554), - [sym_html_comment] = ACTIONS(5), - }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(2556), - [sym_identifier] = ACTIONS(2558), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_namespace] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_typeof] = ACTIONS(2558), - [anon_sym_import] = ACTIONS(2558), - [anon_sym_with] = ACTIONS(2558), - [anon_sym_var] = ACTIONS(2558), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_else] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_switch] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_await] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2558), - [anon_sym_do] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2558), - [anon_sym_break] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2558), - [anon_sym_debugger] = ACTIONS(2558), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2558), - [anon_sym_case] = ACTIONS(2558), - [anon_sym_yield] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(2556), - [anon_sym_SQUOTE] = ACTIONS(2556), - [anon_sym_class] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_function] = ACTIONS(2558), - [anon_sym_new] = ACTIONS(2558), - [anon_sym_using] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2556), - [anon_sym_TILDE] = ACTIONS(2556), - [anon_sym_void] = ACTIONS(2558), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2556), - [sym_number] = ACTIONS(2556), - [sym_private_property_identifier] = ACTIONS(2556), - [sym_this] = ACTIONS(2558), - [sym_super] = ACTIONS(2558), - [sym_true] = ACTIONS(2558), - [sym_false] = ACTIONS(2558), - [sym_null] = ACTIONS(2558), - [sym_undefined] = ACTIONS(2558), - [anon_sym_AT] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_declare] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_protected] = ACTIONS(2558), - [anon_sym_override] = ACTIONS(2558), - [anon_sym_module] = ACTIONS(2558), - [anon_sym_any] = ACTIONS(2558), - [anon_sym_number] = ACTIONS(2558), - [anon_sym_boolean] = ACTIONS(2558), - [anon_sym_string] = ACTIONS(2558), - [anon_sym_symbol] = ACTIONS(2558), - [anon_sym_object] = ACTIONS(2558), - [anon_sym_abstract] = ACTIONS(2558), - [anon_sym_interface] = ACTIONS(2558), - [anon_sym_enum] = ACTIONS(2558), - [sym_html_comment] = ACTIONS(5), - }, - [798] = { - [ts_builtin_sym_end] = ACTIONS(2560), - [sym_identifier] = ACTIONS(2562), - [anon_sym_export] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2562), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_typeof] = ACTIONS(2562), - [anon_sym_import] = ACTIONS(2562), - [anon_sym_with] = ACTIONS(2562), - [anon_sym_var] = ACTIONS(2562), - [anon_sym_let] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_else] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_do] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_debugger] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2562), - [anon_sym_case] = ACTIONS(2562), - [anon_sym_yield] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2560), - [anon_sym_class] = ACTIONS(2562), - [anon_sym_async] = ACTIONS(2562), - [anon_sym_function] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_void] = ACTIONS(2562), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2560), - [sym_number] = ACTIONS(2560), - [sym_private_property_identifier] = ACTIONS(2560), - [sym_this] = ACTIONS(2562), - [sym_super] = ACTIONS(2562), - [sym_true] = ACTIONS(2562), - [sym_false] = ACTIONS(2562), - [sym_null] = ACTIONS(2562), - [sym_undefined] = ACTIONS(2562), - [anon_sym_AT] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_readonly] = ACTIONS(2562), - [anon_sym_get] = ACTIONS(2562), - [anon_sym_set] = ACTIONS(2562), - [anon_sym_declare] = ACTIONS(2562), - [anon_sym_public] = ACTIONS(2562), - [anon_sym_private] = ACTIONS(2562), - [anon_sym_protected] = ACTIONS(2562), - [anon_sym_override] = ACTIONS(2562), - [anon_sym_module] = ACTIONS(2562), - [anon_sym_any] = ACTIONS(2562), - [anon_sym_number] = ACTIONS(2562), - [anon_sym_boolean] = ACTIONS(2562), - [anon_sym_string] = ACTIONS(2562), - [anon_sym_symbol] = ACTIONS(2562), - [anon_sym_object] = ACTIONS(2562), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_interface] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), - [sym_html_comment] = ACTIONS(5), - }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(2564), - [sym_identifier] = ACTIONS(2566), - [anon_sym_export] = ACTIONS(2566), - [anon_sym_default] = ACTIONS(2566), - [anon_sym_type] = ACTIONS(2566), - [anon_sym_namespace] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2564), - [anon_sym_typeof] = ACTIONS(2566), - [anon_sym_import] = ACTIONS(2566), - [anon_sym_with] = ACTIONS(2566), - [anon_sym_var] = ACTIONS(2566), - [anon_sym_let] = ACTIONS(2566), - [anon_sym_const] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_else] = ACTIONS(2566), - [anon_sym_if] = ACTIONS(2566), - [anon_sym_switch] = ACTIONS(2566), - [anon_sym_for] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_await] = ACTIONS(2566), - [anon_sym_while] = ACTIONS(2566), - [anon_sym_do] = ACTIONS(2566), - [anon_sym_try] = ACTIONS(2566), - [anon_sym_break] = ACTIONS(2566), - [anon_sym_continue] = ACTIONS(2566), - [anon_sym_debugger] = ACTIONS(2566), - [anon_sym_return] = ACTIONS(2566), - [anon_sym_throw] = ACTIONS(2566), - [anon_sym_case] = ACTIONS(2566), - [anon_sym_yield] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_class] = ACTIONS(2566), - [anon_sym_async] = ACTIONS(2566), - [anon_sym_function] = ACTIONS(2566), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_using] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2564), - [anon_sym_void] = ACTIONS(2566), - [anon_sym_delete] = ACTIONS(2566), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2564), - [sym_number] = ACTIONS(2564), - [sym_private_property_identifier] = ACTIONS(2564), - [sym_this] = ACTIONS(2566), - [sym_super] = ACTIONS(2566), - [sym_true] = ACTIONS(2566), - [sym_false] = ACTIONS(2566), - [sym_null] = ACTIONS(2566), - [sym_undefined] = ACTIONS(2566), - [anon_sym_AT] = ACTIONS(2564), - [anon_sym_static] = ACTIONS(2566), - [anon_sym_readonly] = ACTIONS(2566), - [anon_sym_get] = ACTIONS(2566), - [anon_sym_set] = ACTIONS(2566), - [anon_sym_declare] = ACTIONS(2566), - [anon_sym_public] = ACTIONS(2566), - [anon_sym_private] = ACTIONS(2566), - [anon_sym_protected] = ACTIONS(2566), - [anon_sym_override] = ACTIONS(2566), - [anon_sym_module] = ACTIONS(2566), - [anon_sym_any] = ACTIONS(2566), - [anon_sym_number] = ACTIONS(2566), - [anon_sym_boolean] = ACTIONS(2566), - [anon_sym_string] = ACTIONS(2566), - [anon_sym_symbol] = ACTIONS(2566), - [anon_sym_object] = ACTIONS(2566), - [anon_sym_abstract] = ACTIONS(2566), - [anon_sym_interface] = ACTIONS(2566), - [anon_sym_enum] = ACTIONS(2566), - [sym_html_comment] = ACTIONS(5), - }, - [800] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(801)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_RBRACK] = ACTIONS(2568), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -109522,80 +109809,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [801] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(802)] = { + [ts_builtin_sym_end] = ACTIONS(2570), + [sym_identifier] = ACTIONS(2572), + [anon_sym_export] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_type] = ACTIONS(2572), + [anon_sym_namespace] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(2572), + [anon_sym_import] = ACTIONS(2572), + [anon_sym_with] = ACTIONS(2572), + [anon_sym_var] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_else] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_switch] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_await] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(2572), + [anon_sym_try] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_debugger] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2572), + [anon_sym_case] = ACTIONS(2572), + [anon_sym_yield] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_async] = ACTIONS(2572), + [anon_sym_function] = ACTIONS(2572), + [anon_sym_new] = ACTIONS(2572), + [anon_sym_using] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(2572), + [anon_sym_delete] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2570), + [sym_number] = ACTIONS(2570), + [sym_private_property_identifier] = ACTIONS(2570), + [sym_this] = ACTIONS(2572), + [sym_super] = ACTIONS(2572), + [sym_true] = ACTIONS(2572), + [sym_false] = ACTIONS(2572), + [sym_null] = ACTIONS(2572), + [sym_undefined] = ACTIONS(2572), + [anon_sym_AT] = ACTIONS(2570), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_readonly] = ACTIONS(2572), + [anon_sym_get] = ACTIONS(2572), + [anon_sym_set] = ACTIONS(2572), + [anon_sym_declare] = ACTIONS(2572), + [anon_sym_public] = ACTIONS(2572), + [anon_sym_private] = ACTIONS(2572), + [anon_sym_protected] = ACTIONS(2572), + [anon_sym_override] = ACTIONS(2572), + [anon_sym_module] = ACTIONS(2572), + [anon_sym_any] = ACTIONS(2572), + [anon_sym_number] = ACTIONS(2572), + [anon_sym_boolean] = ACTIONS(2572), + [anon_sym_string] = ACTIONS(2572), + [anon_sym_symbol] = ACTIONS(2572), + [anon_sym_object] = ACTIONS(2572), + [anon_sym_abstract] = ACTIONS(2572), + [anon_sym_interface] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(803)] = { + [ts_builtin_sym_end] = ACTIONS(2574), + [sym_identifier] = ACTIONS(2576), + [anon_sym_export] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_type] = ACTIONS(2576), + [anon_sym_namespace] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_typeof] = ACTIONS(2576), + [anon_sym_import] = ACTIONS(2576), + [anon_sym_with] = ACTIONS(2576), + [anon_sym_var] = ACTIONS(2576), + [anon_sym_let] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_else] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_switch] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_await] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_do] = ACTIONS(2576), + [anon_sym_try] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_debugger] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_throw] = ACTIONS(2576), + [anon_sym_case] = ACTIONS(2576), + [anon_sym_yield] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_class] = ACTIONS(2576), + [anon_sym_async] = ACTIONS(2576), + [anon_sym_function] = ACTIONS(2576), + [anon_sym_new] = ACTIONS(2576), + [anon_sym_using] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_SLASH] = ACTIONS(2576), + [anon_sym_LT] = ACTIONS(2574), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_void] = ACTIONS(2576), + [anon_sym_delete] = ACTIONS(2576), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2574), + [sym_number] = ACTIONS(2574), + [sym_private_property_identifier] = ACTIONS(2574), + [sym_this] = ACTIONS(2576), + [sym_super] = ACTIONS(2576), + [sym_true] = ACTIONS(2576), + [sym_false] = ACTIONS(2576), + [sym_null] = ACTIONS(2576), + [sym_undefined] = ACTIONS(2576), + [anon_sym_AT] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_readonly] = ACTIONS(2576), + [anon_sym_get] = ACTIONS(2576), + [anon_sym_set] = ACTIONS(2576), + [anon_sym_declare] = ACTIONS(2576), + [anon_sym_public] = ACTIONS(2576), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_protected] = ACTIONS(2576), + [anon_sym_override] = ACTIONS(2576), + [anon_sym_module] = ACTIONS(2576), + [anon_sym_any] = ACTIONS(2576), + [anon_sym_number] = ACTIONS(2576), + [anon_sym_boolean] = ACTIONS(2576), + [anon_sym_string] = ACTIONS(2576), + [anon_sym_symbol] = ACTIONS(2576), + [anon_sym_object] = ACTIONS(2576), + [anon_sym_abstract] = ACTIONS(2576), + [anon_sym_interface] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(804)] = { + [ts_builtin_sym_end] = ACTIONS(2578), + [sym_identifier] = ACTIONS(2580), + [anon_sym_export] = ACTIONS(2580), + [anon_sym_default] = ACTIONS(2580), + [anon_sym_type] = ACTIONS(2580), + [anon_sym_namespace] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_typeof] = ACTIONS(2580), + [anon_sym_import] = ACTIONS(2580), + [anon_sym_with] = ACTIONS(2580), + [anon_sym_var] = ACTIONS(2580), + [anon_sym_let] = ACTIONS(2580), + [anon_sym_const] = ACTIONS(2580), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_else] = ACTIONS(2580), + [anon_sym_if] = ACTIONS(2580), + [anon_sym_switch] = ACTIONS(2580), + [anon_sym_for] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_await] = ACTIONS(2580), + [anon_sym_while] = ACTIONS(2580), + [anon_sym_do] = ACTIONS(2580), + [anon_sym_try] = ACTIONS(2580), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_continue] = ACTIONS(2580), + [anon_sym_debugger] = ACTIONS(2580), + [anon_sym_return] = ACTIONS(2580), + [anon_sym_throw] = ACTIONS(2580), + [anon_sym_case] = ACTIONS(2580), + [anon_sym_yield] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_async] = ACTIONS(2580), + [anon_sym_function] = ACTIONS(2580), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_using] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_LT] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_void] = ACTIONS(2580), + [anon_sym_delete] = ACTIONS(2580), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2578), + [sym_number] = ACTIONS(2578), + [sym_private_property_identifier] = ACTIONS(2578), + [sym_this] = ACTIONS(2580), + [sym_super] = ACTIONS(2580), + [sym_true] = ACTIONS(2580), + [sym_false] = ACTIONS(2580), + [sym_null] = ACTIONS(2580), + [sym_undefined] = ACTIONS(2580), + [anon_sym_AT] = ACTIONS(2578), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_readonly] = ACTIONS(2580), + [anon_sym_get] = ACTIONS(2580), + [anon_sym_set] = ACTIONS(2580), + [anon_sym_declare] = ACTIONS(2580), + [anon_sym_public] = ACTIONS(2580), + [anon_sym_private] = ACTIONS(2580), + [anon_sym_protected] = ACTIONS(2580), + [anon_sym_override] = ACTIONS(2580), + [anon_sym_module] = ACTIONS(2580), + [anon_sym_any] = ACTIONS(2580), + [anon_sym_number] = ACTIONS(2580), + [anon_sym_boolean] = ACTIONS(2580), + [anon_sym_string] = ACTIONS(2580), + [anon_sym_symbol] = ACTIONS(2580), + [anon_sym_object] = ACTIONS(2580), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_interface] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2580), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(805)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2570), + [anon_sym_RBRACK] = ACTIONS(2582), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -109604,244 +110137,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [802] = { - [ts_builtin_sym_end] = ACTIONS(2572), - [sym_identifier] = ACTIONS(2574), - [anon_sym_export] = ACTIONS(2574), - [anon_sym_default] = ACTIONS(2574), - [anon_sym_type] = ACTIONS(2574), - [anon_sym_namespace] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(2574), - [anon_sym_import] = ACTIONS(2574), - [anon_sym_with] = ACTIONS(2574), - [anon_sym_var] = ACTIONS(2574), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_const] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2572), - [anon_sym_else] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2574), - [anon_sym_switch] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_await] = ACTIONS(2574), - [anon_sym_while] = ACTIONS(2574), - [anon_sym_do] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2574), - [anon_sym_break] = ACTIONS(2574), - [anon_sym_continue] = ACTIONS(2574), - [anon_sym_debugger] = ACTIONS(2574), - [anon_sym_return] = ACTIONS(2574), - [anon_sym_throw] = ACTIONS(2574), - [anon_sym_case] = ACTIONS(2574), - [anon_sym_yield] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2572), - [anon_sym_DQUOTE] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_function] = ACTIONS(2574), - [anon_sym_new] = ACTIONS(2574), - [anon_sym_using] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2572), - [anon_sym_TILDE] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_delete] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2572), - [sym_number] = ACTIONS(2572), - [sym_private_property_identifier] = ACTIONS(2572), - [sym_this] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_true] = ACTIONS(2574), - [sym_false] = ACTIONS(2574), - [sym_null] = ACTIONS(2574), - [sym_undefined] = ACTIONS(2574), - [anon_sym_AT] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_readonly] = ACTIONS(2574), - [anon_sym_get] = ACTIONS(2574), - [anon_sym_set] = ACTIONS(2574), - [anon_sym_declare] = ACTIONS(2574), - [anon_sym_public] = ACTIONS(2574), - [anon_sym_private] = ACTIONS(2574), - [anon_sym_protected] = ACTIONS(2574), - [anon_sym_override] = ACTIONS(2574), - [anon_sym_module] = ACTIONS(2574), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2574), - [anon_sym_interface] = ACTIONS(2574), - [anon_sym_enum] = ACTIONS(2574), - [sym_html_comment] = ACTIONS(5), - }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(2560), - [sym_identifier] = ACTIONS(2562), - [anon_sym_export] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2562), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_typeof] = ACTIONS(2562), - [anon_sym_import] = ACTIONS(2562), - [anon_sym_with] = ACTIONS(2562), - [anon_sym_var] = ACTIONS(2562), - [anon_sym_let] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_else] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_do] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_debugger] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2562), - [anon_sym_case] = ACTIONS(2562), - [anon_sym_yield] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2560), - [anon_sym_class] = ACTIONS(2562), - [anon_sym_async] = ACTIONS(2562), - [anon_sym_function] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_void] = ACTIONS(2562), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2560), - [sym_number] = ACTIONS(2560), - [sym_private_property_identifier] = ACTIONS(2560), - [sym_this] = ACTIONS(2562), - [sym_super] = ACTIONS(2562), - [sym_true] = ACTIONS(2562), - [sym_false] = ACTIONS(2562), - [sym_null] = ACTIONS(2562), - [sym_undefined] = ACTIONS(2562), - [anon_sym_AT] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_readonly] = ACTIONS(2562), - [anon_sym_get] = ACTIONS(2562), - [anon_sym_set] = ACTIONS(2562), - [anon_sym_declare] = ACTIONS(2562), - [anon_sym_public] = ACTIONS(2562), - [anon_sym_private] = ACTIONS(2562), - [anon_sym_protected] = ACTIONS(2562), - [anon_sym_override] = ACTIONS(2562), - [anon_sym_module] = ACTIONS(2562), - [anon_sym_any] = ACTIONS(2562), - [anon_sym_number] = ACTIONS(2562), - [anon_sym_boolean] = ACTIONS(2562), - [anon_sym_string] = ACTIONS(2562), - [anon_sym_symbol] = ACTIONS(2562), - [anon_sym_object] = ACTIONS(2562), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_interface] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), - [sym_html_comment] = ACTIONS(5), - }, - [804] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(806)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2576), + [anon_sym_RBRACK] = ACTIONS(2584), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -109850,80 +110219,654 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [805] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(807)] = { + [ts_builtin_sym_end] = ACTIONS(2586), + [sym_identifier] = ACTIONS(2588), + [anon_sym_export] = ACTIONS(2588), + [anon_sym_default] = ACTIONS(2588), + [anon_sym_type] = ACTIONS(2588), + [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_typeof] = ACTIONS(2588), + [anon_sym_import] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + [anon_sym_var] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_const] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2586), + [anon_sym_else] = ACTIONS(2588), + [anon_sym_if] = ACTIONS(2588), + [anon_sym_switch] = ACTIONS(2588), + [anon_sym_for] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_await] = ACTIONS(2588), + [anon_sym_while] = ACTIONS(2588), + [anon_sym_do] = ACTIONS(2588), + [anon_sym_try] = ACTIONS(2588), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_debugger] = ACTIONS(2588), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_throw] = ACTIONS(2588), + [anon_sym_case] = ACTIONS(2588), + [anon_sym_yield] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_DQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2588), + [anon_sym_async] = ACTIONS(2588), + [anon_sym_function] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_using] = ACTIONS(2588), + [anon_sym_PLUS] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_SLASH] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_TILDE] = ACTIONS(2586), + [anon_sym_void] = ACTIONS(2588), + [anon_sym_delete] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2586), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2586), + [sym_number] = ACTIONS(2586), + [sym_private_property_identifier] = ACTIONS(2586), + [sym_this] = ACTIONS(2588), + [sym_super] = ACTIONS(2588), + [sym_true] = ACTIONS(2588), + [sym_false] = ACTIONS(2588), + [sym_null] = ACTIONS(2588), + [sym_undefined] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_readonly] = ACTIONS(2588), + [anon_sym_get] = ACTIONS(2588), + [anon_sym_set] = ACTIONS(2588), + [anon_sym_declare] = ACTIONS(2588), + [anon_sym_public] = ACTIONS(2588), + [anon_sym_private] = ACTIONS(2588), + [anon_sym_protected] = ACTIONS(2588), + [anon_sym_override] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_any] = ACTIONS(2588), + [anon_sym_number] = ACTIONS(2588), + [anon_sym_boolean] = ACTIONS(2588), + [anon_sym_string] = ACTIONS(2588), + [anon_sym_symbol] = ACTIONS(2588), + [anon_sym_object] = ACTIONS(2588), + [anon_sym_abstract] = ACTIONS(2588), + [anon_sym_interface] = ACTIONS(2588), + [anon_sym_enum] = ACTIONS(2588), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(808)] = { + [ts_builtin_sym_end] = ACTIONS(2586), + [sym_identifier] = ACTIONS(2588), + [anon_sym_export] = ACTIONS(2588), + [anon_sym_default] = ACTIONS(2588), + [anon_sym_type] = ACTIONS(2588), + [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_typeof] = ACTIONS(2588), + [anon_sym_import] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + [anon_sym_var] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_const] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2586), + [anon_sym_else] = ACTIONS(2588), + [anon_sym_if] = ACTIONS(2588), + [anon_sym_switch] = ACTIONS(2588), + [anon_sym_for] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_await] = ACTIONS(2588), + [anon_sym_while] = ACTIONS(2588), + [anon_sym_do] = ACTIONS(2588), + [anon_sym_try] = ACTIONS(2588), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_debugger] = ACTIONS(2588), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_throw] = ACTIONS(2588), + [anon_sym_case] = ACTIONS(2588), + [anon_sym_yield] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_DQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2588), + [anon_sym_async] = ACTIONS(2588), + [anon_sym_function] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_using] = ACTIONS(2588), + [anon_sym_PLUS] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_SLASH] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_TILDE] = ACTIONS(2586), + [anon_sym_void] = ACTIONS(2588), + [anon_sym_delete] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2586), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2586), + [sym_number] = ACTIONS(2586), + [sym_private_property_identifier] = ACTIONS(2586), + [sym_this] = ACTIONS(2588), + [sym_super] = ACTIONS(2588), + [sym_true] = ACTIONS(2588), + [sym_false] = ACTIONS(2588), + [sym_null] = ACTIONS(2588), + [sym_undefined] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_readonly] = ACTIONS(2588), + [anon_sym_get] = ACTIONS(2588), + [anon_sym_set] = ACTIONS(2588), + [anon_sym_declare] = ACTIONS(2588), + [anon_sym_public] = ACTIONS(2588), + [anon_sym_private] = ACTIONS(2588), + [anon_sym_protected] = ACTIONS(2588), + [anon_sym_override] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_any] = ACTIONS(2588), + [anon_sym_number] = ACTIONS(2588), + [anon_sym_boolean] = ACTIONS(2588), + [anon_sym_string] = ACTIONS(2588), + [anon_sym_symbol] = ACTIONS(2588), + [anon_sym_object] = ACTIONS(2588), + [anon_sym_abstract] = ACTIONS(2588), + [anon_sym_interface] = ACTIONS(2588), + [anon_sym_enum] = ACTIONS(2588), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(809)] = { + [ts_builtin_sym_end] = ACTIONS(2590), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2592), + [anon_sym_default] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_namespace] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_typeof] = ACTIONS(2592), + [anon_sym_import] = ACTIONS(2592), + [anon_sym_with] = ACTIONS(2592), + [anon_sym_var] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), + [anon_sym_const] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_else] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_switch] = ACTIONS(2592), + [anon_sym_for] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_await] = ACTIONS(2592), + [anon_sym_while] = ACTIONS(2592), + [anon_sym_do] = ACTIONS(2592), + [anon_sym_try] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_debugger] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_throw] = ACTIONS(2592), + [anon_sym_case] = ACTIONS(2592), + [anon_sym_yield] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_class] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_function] = ACTIONS(2592), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_using] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_void] = ACTIONS(2592), + [anon_sym_delete] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_number] = ACTIONS(2590), + [sym_private_property_identifier] = ACTIONS(2590), + [sym_this] = ACTIONS(2592), + [sym_super] = ACTIONS(2592), + [sym_true] = ACTIONS(2592), + [sym_false] = ACTIONS(2592), + [sym_null] = ACTIONS(2592), + [sym_undefined] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_readonly] = ACTIONS(2592), + [anon_sym_get] = ACTIONS(2592), + [anon_sym_set] = ACTIONS(2592), + [anon_sym_declare] = ACTIONS(2592), + [anon_sym_public] = ACTIONS(2592), + [anon_sym_private] = ACTIONS(2592), + [anon_sym_protected] = ACTIONS(2592), + [anon_sym_override] = ACTIONS(2592), + [anon_sym_module] = ACTIONS(2592), + [anon_sym_any] = ACTIONS(2592), + [anon_sym_number] = ACTIONS(2592), + [anon_sym_boolean] = ACTIONS(2592), + [anon_sym_string] = ACTIONS(2592), + [anon_sym_symbol] = ACTIONS(2592), + [anon_sym_object] = ACTIONS(2592), + [anon_sym_abstract] = ACTIONS(2592), + [anon_sym_interface] = ACTIONS(2592), + [anon_sym_enum] = ACTIONS(2592), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(810)] = { + [ts_builtin_sym_end] = ACTIONS(2594), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_default] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_namespace] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_RBRACE] = ACTIONS(2594), + [anon_sym_typeof] = ACTIONS(2596), + [anon_sym_import] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2596), + [anon_sym_var] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), + [anon_sym_const] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2594), + [anon_sym_else] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_switch] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_await] = ACTIONS(2596), + [anon_sym_while] = ACTIONS(2596), + [anon_sym_do] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_debugger] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_throw] = ACTIONS(2596), + [anon_sym_case] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2594), + [anon_sym_class] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_delete] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2594), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_number] = ACTIONS(2594), + [sym_private_property_identifier] = ACTIONS(2594), + [sym_this] = ACTIONS(2596), + [sym_super] = ACTIONS(2596), + [sym_true] = ACTIONS(2596), + [sym_false] = ACTIONS(2596), + [sym_null] = ACTIONS(2596), + [sym_undefined] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2596), + [anon_sym_interface] = ACTIONS(2596), + [anon_sym_enum] = ACTIONS(2596), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(811)] = { + [ts_builtin_sym_end] = ACTIONS(2598), + [sym_identifier] = ACTIONS(2600), + [anon_sym_export] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2600), + [anon_sym_type] = ACTIONS(2600), + [anon_sym_namespace] = ACTIONS(2600), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_typeof] = ACTIONS(2600), + [anon_sym_import] = ACTIONS(2600), + [anon_sym_with] = ACTIONS(2600), + [anon_sym_var] = ACTIONS(2600), + [anon_sym_let] = ACTIONS(2600), + [anon_sym_const] = ACTIONS(2600), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_else] = ACTIONS(2600), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_switch] = ACTIONS(2600), + [anon_sym_for] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_await] = ACTIONS(2600), + [anon_sym_while] = ACTIONS(2600), + [anon_sym_do] = ACTIONS(2600), + [anon_sym_try] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2600), + [anon_sym_debugger] = ACTIONS(2600), + [anon_sym_return] = ACTIONS(2600), + [anon_sym_throw] = ACTIONS(2600), + [anon_sym_case] = ACTIONS(2600), + [anon_sym_yield] = ACTIONS(2600), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2598), + [anon_sym_class] = ACTIONS(2600), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(2600), + [anon_sym_new] = ACTIONS(2600), + [anon_sym_using] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_SLASH] = ACTIONS(2600), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_TILDE] = ACTIONS(2598), + [anon_sym_void] = ACTIONS(2600), + [anon_sym_delete] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2598), + [anon_sym_DASH_DASH] = ACTIONS(2598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2598), + [sym_number] = ACTIONS(2598), + [sym_private_property_identifier] = ACTIONS(2598), + [sym_this] = ACTIONS(2600), + [sym_super] = ACTIONS(2600), + [sym_true] = ACTIONS(2600), + [sym_false] = ACTIONS(2600), + [sym_null] = ACTIONS(2600), + [sym_undefined] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2598), + [anon_sym_static] = ACTIONS(2600), + [anon_sym_readonly] = ACTIONS(2600), + [anon_sym_get] = ACTIONS(2600), + [anon_sym_set] = ACTIONS(2600), + [anon_sym_declare] = ACTIONS(2600), + [anon_sym_public] = ACTIONS(2600), + [anon_sym_private] = ACTIONS(2600), + [anon_sym_protected] = ACTIONS(2600), + [anon_sym_override] = ACTIONS(2600), + [anon_sym_module] = ACTIONS(2600), + [anon_sym_any] = ACTIONS(2600), + [anon_sym_number] = ACTIONS(2600), + [anon_sym_boolean] = ACTIONS(2600), + [anon_sym_string] = ACTIONS(2600), + [anon_sym_symbol] = ACTIONS(2600), + [anon_sym_object] = ACTIONS(2600), + [anon_sym_abstract] = ACTIONS(2600), + [anon_sym_interface] = ACTIONS(2600), + [anon_sym_enum] = ACTIONS(2600), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(812)] = { + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2604), + [anon_sym_export] = ACTIONS(2604), + [anon_sym_default] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_namespace] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_typeof] = ACTIONS(2604), + [anon_sym_import] = ACTIONS(2604), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_var] = ACTIONS(2604), + [anon_sym_let] = ACTIONS(2604), + [anon_sym_const] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_else] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_switch] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_await] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_do] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_debugger] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_throw] = ACTIONS(2604), + [anon_sym_case] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2604), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2602), + [anon_sym_class] = ACTIONS(2604), + [anon_sym_async] = ACTIONS(2604), + [anon_sym_function] = ACTIONS(2604), + [anon_sym_new] = ACTIONS(2604), + [anon_sym_using] = ACTIONS(2604), + [anon_sym_PLUS] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2604), + [anon_sym_SLASH] = ACTIONS(2604), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_void] = ACTIONS(2604), + [anon_sym_delete] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2602), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2602), + [sym_private_property_identifier] = ACTIONS(2602), + [sym_this] = ACTIONS(2604), + [sym_super] = ACTIONS(2604), + [sym_true] = ACTIONS(2604), + [sym_false] = ACTIONS(2604), + [sym_null] = ACTIONS(2604), + [sym_undefined] = ACTIONS(2604), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_readonly] = ACTIONS(2604), + [anon_sym_get] = ACTIONS(2604), + [anon_sym_set] = ACTIONS(2604), + [anon_sym_declare] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_protected] = ACTIONS(2604), + [anon_sym_override] = ACTIONS(2604), + [anon_sym_module] = ACTIONS(2604), + [anon_sym_any] = ACTIONS(2604), + [anon_sym_number] = ACTIONS(2604), + [anon_sym_boolean] = ACTIONS(2604), + [anon_sym_string] = ACTIONS(2604), + [anon_sym_symbol] = ACTIONS(2604), + [anon_sym_object] = ACTIONS(2604), + [anon_sym_abstract] = ACTIONS(2604), + [anon_sym_interface] = ACTIONS(2604), + [anon_sym_enum] = ACTIONS(2604), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(813)] = { + [ts_builtin_sym_end] = ACTIONS(2606), + [sym_identifier] = ACTIONS(2608), + [anon_sym_export] = ACTIONS(2608), + [anon_sym_default] = ACTIONS(2608), + [anon_sym_type] = ACTIONS(2608), + [anon_sym_namespace] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(2608), + [anon_sym_import] = ACTIONS(2608), + [anon_sym_with] = ACTIONS(2608), + [anon_sym_var] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2608), + [anon_sym_const] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2606), + [anon_sym_SEMI] = ACTIONS(2606), + [anon_sym_await] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_do] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2608), + [anon_sym_break] = ACTIONS(2608), + [anon_sym_continue] = ACTIONS(2608), + [anon_sym_debugger] = ACTIONS(2608), + [anon_sym_return] = ACTIONS(2608), + [anon_sym_throw] = ACTIONS(2608), + [anon_sym_case] = ACTIONS(2608), + [anon_sym_yield] = ACTIONS(2608), + [anon_sym_LBRACK] = ACTIONS(2606), + [anon_sym_DQUOTE] = ACTIONS(2606), + [anon_sym_SQUOTE] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2608), + [anon_sym_async] = ACTIONS(2608), + [anon_sym_function] = ACTIONS(2608), + [anon_sym_new] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2608), + [anon_sym_PLUS] = ACTIONS(2608), + [anon_sym_DASH] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2606), + [anon_sym_void] = ACTIONS(2608), + [anon_sym_delete] = ACTIONS(2608), + [anon_sym_PLUS_PLUS] = ACTIONS(2606), + [anon_sym_DASH_DASH] = ACTIONS(2606), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2606), + [sym_number] = ACTIONS(2606), + [sym_private_property_identifier] = ACTIONS(2606), + [sym_this] = ACTIONS(2608), + [sym_super] = ACTIONS(2608), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2608), + [anon_sym_get] = ACTIONS(2608), + [anon_sym_set] = ACTIONS(2608), + [anon_sym_declare] = ACTIONS(2608), + [anon_sym_public] = ACTIONS(2608), + [anon_sym_private] = ACTIONS(2608), + [anon_sym_protected] = ACTIONS(2608), + [anon_sym_override] = ACTIONS(2608), + [anon_sym_module] = ACTIONS(2608), + [anon_sym_any] = ACTIONS(2608), + [anon_sym_number] = ACTIONS(2608), + [anon_sym_boolean] = ACTIONS(2608), + [anon_sym_string] = ACTIONS(2608), + [anon_sym_symbol] = ACTIONS(2608), + [anon_sym_object] = ACTIONS(2608), + [anon_sym_abstract] = ACTIONS(2608), + [anon_sym_interface] = ACTIONS(2608), + [anon_sym_enum] = ACTIONS(2608), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(814)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2578), + [anon_sym_RBRACK] = ACTIONS(2610), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -109932,926 +110875,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [806] = { - [ts_builtin_sym_end] = ACTIONS(2580), - [sym_identifier] = ACTIONS(2582), - [anon_sym_export] = ACTIONS(2582), - [anon_sym_default] = ACTIONS(2582), - [anon_sym_type] = ACTIONS(2582), - [anon_sym_namespace] = ACTIONS(2582), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(2582), - [anon_sym_import] = ACTIONS(2582), - [anon_sym_with] = ACTIONS(2582), - [anon_sym_var] = ACTIONS(2582), - [anon_sym_let] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2582), - [anon_sym_if] = ACTIONS(2582), - [anon_sym_switch] = ACTIONS(2582), - [anon_sym_for] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_await] = ACTIONS(2582), - [anon_sym_while] = ACTIONS(2582), - [anon_sym_do] = ACTIONS(2582), - [anon_sym_try] = ACTIONS(2582), - [anon_sym_break] = ACTIONS(2582), - [anon_sym_continue] = ACTIONS(2582), - [anon_sym_debugger] = ACTIONS(2582), - [anon_sym_return] = ACTIONS(2582), - [anon_sym_throw] = ACTIONS(2582), - [anon_sym_case] = ACTIONS(2582), - [anon_sym_yield] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2580), - [anon_sym_class] = ACTIONS(2582), - [anon_sym_async] = ACTIONS(2582), - [anon_sym_function] = ACTIONS(2582), - [anon_sym_new] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(2582), - [anon_sym_PLUS] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_SLASH] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2580), - [anon_sym_TILDE] = ACTIONS(2580), - [anon_sym_void] = ACTIONS(2582), - [anon_sym_delete] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2580), - [sym_private_property_identifier] = ACTIONS(2580), - [sym_this] = ACTIONS(2582), - [sym_super] = ACTIONS(2582), - [sym_true] = ACTIONS(2582), - [sym_false] = ACTIONS(2582), - [sym_null] = ACTIONS(2582), - [sym_undefined] = ACTIONS(2582), - [anon_sym_AT] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_readonly] = ACTIONS(2582), - [anon_sym_get] = ACTIONS(2582), - [anon_sym_set] = ACTIONS(2582), - [anon_sym_declare] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_protected] = ACTIONS(2582), - [anon_sym_override] = ACTIONS(2582), - [anon_sym_module] = ACTIONS(2582), - [anon_sym_any] = ACTIONS(2582), - [anon_sym_number] = ACTIONS(2582), - [anon_sym_boolean] = ACTIONS(2582), - [anon_sym_string] = ACTIONS(2582), - [anon_sym_symbol] = ACTIONS(2582), - [anon_sym_object] = ACTIONS(2582), - [anon_sym_abstract] = ACTIONS(2582), - [anon_sym_interface] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), - [sym_html_comment] = ACTIONS(5), - }, - [807] = { - [ts_builtin_sym_end] = ACTIONS(2584), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_default] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2584), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_typeof] = ACTIONS(2586), - [anon_sym_import] = ACTIONS(2586), - [anon_sym_with] = ACTIONS(2586), - [anon_sym_var] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_const] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2586), - [anon_sym_if] = ACTIONS(2586), - [anon_sym_switch] = ACTIONS(2586), - [anon_sym_for] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_await] = ACTIONS(2586), - [anon_sym_while] = ACTIONS(2586), - [anon_sym_do] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2586), - [anon_sym_continue] = ACTIONS(2586), - [anon_sym_debugger] = ACTIONS(2586), - [anon_sym_return] = ACTIONS(2586), - [anon_sym_throw] = ACTIONS(2586), - [anon_sym_case] = ACTIONS(2586), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_DQUOTE] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(2586), - [anon_sym_new] = ACTIONS(2586), - [anon_sym_using] = ACTIONS(2586), - [anon_sym_PLUS] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_void] = ACTIONS(2586), - [anon_sym_delete] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2584), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2584), - [sym_number] = ACTIONS(2584), - [sym_private_property_identifier] = ACTIONS(2584), - [sym_this] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_AT] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), - [anon_sym_abstract] = ACTIONS(2586), - [anon_sym_interface] = ACTIONS(2586), - [anon_sym_enum] = ACTIONS(2586), - [sym_html_comment] = ACTIONS(5), - }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(2584), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_default] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2584), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_typeof] = ACTIONS(2586), - [anon_sym_import] = ACTIONS(2586), - [anon_sym_with] = ACTIONS(2586), - [anon_sym_var] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_const] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2586), - [anon_sym_if] = ACTIONS(2586), - [anon_sym_switch] = ACTIONS(2586), - [anon_sym_for] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_await] = ACTIONS(2586), - [anon_sym_while] = ACTIONS(2586), - [anon_sym_do] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2586), - [anon_sym_continue] = ACTIONS(2586), - [anon_sym_debugger] = ACTIONS(2586), - [anon_sym_return] = ACTIONS(2586), - [anon_sym_throw] = ACTIONS(2586), - [anon_sym_case] = ACTIONS(2586), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_DQUOTE] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(2586), - [anon_sym_new] = ACTIONS(2586), - [anon_sym_using] = ACTIONS(2586), - [anon_sym_PLUS] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2584), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_void] = ACTIONS(2586), - [anon_sym_delete] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2584), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2584), - [sym_number] = ACTIONS(2584), - [sym_private_property_identifier] = ACTIONS(2584), - [sym_this] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_AT] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), - [anon_sym_abstract] = ACTIONS(2586), - [anon_sym_interface] = ACTIONS(2586), - [anon_sym_enum] = ACTIONS(2586), - [sym_html_comment] = ACTIONS(5), - }, - [809] = { - [ts_builtin_sym_end] = ACTIONS(2588), - [sym_identifier] = ACTIONS(2590), - [anon_sym_export] = ACTIONS(2590), - [anon_sym_default] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_namespace] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_typeof] = ACTIONS(2590), - [anon_sym_import] = ACTIONS(2590), - [anon_sym_with] = ACTIONS(2590), - [anon_sym_var] = ACTIONS(2590), - [anon_sym_let] = ACTIONS(2590), - [anon_sym_const] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_switch] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_await] = ACTIONS(2590), - [anon_sym_while] = ACTIONS(2590), - [anon_sym_do] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_debugger] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_throw] = ACTIONS(2590), - [anon_sym_case] = ACTIONS(2590), - [anon_sym_yield] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2590), - [anon_sym_async] = ACTIONS(2590), - [anon_sym_function] = ACTIONS(2590), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_using] = ACTIONS(2590), - [anon_sym_PLUS] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_SLASH] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2588), - [anon_sym_TILDE] = ACTIONS(2588), - [anon_sym_void] = ACTIONS(2590), - [anon_sym_delete] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2588), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2588), - [sym_number] = ACTIONS(2588), - [sym_private_property_identifier] = ACTIONS(2588), - [sym_this] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), - [sym_true] = ACTIONS(2590), - [sym_false] = ACTIONS(2590), - [sym_null] = ACTIONS(2590), - [sym_undefined] = ACTIONS(2590), - [anon_sym_AT] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_readonly] = ACTIONS(2590), - [anon_sym_get] = ACTIONS(2590), - [anon_sym_set] = ACTIONS(2590), - [anon_sym_declare] = ACTIONS(2590), - [anon_sym_public] = ACTIONS(2590), - [anon_sym_private] = ACTIONS(2590), - [anon_sym_protected] = ACTIONS(2590), - [anon_sym_override] = ACTIONS(2590), - [anon_sym_module] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2590), - [anon_sym_number] = ACTIONS(2590), - [anon_sym_boolean] = ACTIONS(2590), - [anon_sym_string] = ACTIONS(2590), - [anon_sym_symbol] = ACTIONS(2590), - [anon_sym_object] = ACTIONS(2590), - [anon_sym_abstract] = ACTIONS(2590), - [anon_sym_interface] = ACTIONS(2590), - [anon_sym_enum] = ACTIONS(2590), - [sym_html_comment] = ACTIONS(5), - }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(2592), - [sym_identifier] = ACTIONS(2594), - [anon_sym_export] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_type] = ACTIONS(2594), - [anon_sym_namespace] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_typeof] = ACTIONS(2594), - [anon_sym_import] = ACTIONS(2594), - [anon_sym_with] = ACTIONS(2594), - [anon_sym_var] = ACTIONS(2594), - [anon_sym_let] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_BANG] = ACTIONS(2592), - [anon_sym_else] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_await] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_debugger] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_throw] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_yield] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2592), - [anon_sym_DQUOTE] = ACTIONS(2592), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_async] = ACTIONS(2594), - [anon_sym_function] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2594), - [anon_sym_LT] = ACTIONS(2592), - [anon_sym_TILDE] = ACTIONS(2592), - [anon_sym_void] = ACTIONS(2594), - [anon_sym_delete] = ACTIONS(2594), - [anon_sym_PLUS_PLUS] = ACTIONS(2592), - [anon_sym_DASH_DASH] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2592), - [sym_number] = ACTIONS(2592), - [sym_private_property_identifier] = ACTIONS(2592), - [sym_this] = ACTIONS(2594), - [sym_super] = ACTIONS(2594), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [sym_null] = ACTIONS(2594), - [sym_undefined] = ACTIONS(2594), - [anon_sym_AT] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_readonly] = ACTIONS(2594), - [anon_sym_get] = ACTIONS(2594), - [anon_sym_set] = ACTIONS(2594), - [anon_sym_declare] = ACTIONS(2594), - [anon_sym_public] = ACTIONS(2594), - [anon_sym_private] = ACTIONS(2594), - [anon_sym_protected] = ACTIONS(2594), - [anon_sym_override] = ACTIONS(2594), - [anon_sym_module] = ACTIONS(2594), - [anon_sym_any] = ACTIONS(2594), - [anon_sym_number] = ACTIONS(2594), - [anon_sym_boolean] = ACTIONS(2594), - [anon_sym_string] = ACTIONS(2594), - [anon_sym_symbol] = ACTIONS(2594), - [anon_sym_object] = ACTIONS(2594), - [anon_sym_abstract] = ACTIONS(2594), - [anon_sym_interface] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [sym_html_comment] = ACTIONS(5), - }, - [811] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_namespace] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_typeof] = ACTIONS(1875), - [anon_sym_import] = ACTIONS(1875), - [anon_sym_with] = ACTIONS(1875), - [anon_sym_var] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_else] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_switch] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_await] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_debugger] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_throw] = ACTIONS(1875), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_class] = ACTIONS(1875), - [anon_sym_async] = ACTIONS(1875), - [anon_sym_function] = ACTIONS(1875), - [anon_sym_new] = ACTIONS(1875), - [anon_sym_using] = ACTIONS(1875), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_void] = ACTIONS(1875), - [anon_sym_delete] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1873), - [sym_number] = ACTIONS(1873), - [sym_private_property_identifier] = ACTIONS(1873), - [sym_this] = ACTIONS(1875), - [sym_super] = ACTIONS(1875), - [sym_true] = ACTIONS(1875), - [sym_false] = ACTIONS(1875), - [sym_null] = ACTIONS(1875), - [sym_undefined] = ACTIONS(1875), - [anon_sym_AT] = ACTIONS(1873), - [anon_sym_static] = ACTIONS(1875), - [anon_sym_readonly] = ACTIONS(1875), - [anon_sym_get] = ACTIONS(1875), - [anon_sym_set] = ACTIONS(1875), - [anon_sym_declare] = ACTIONS(1875), - [anon_sym_public] = ACTIONS(1875), - [anon_sym_private] = ACTIONS(1875), - [anon_sym_protected] = ACTIONS(1875), - [anon_sym_override] = ACTIONS(1875), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1875), - [anon_sym_number] = ACTIONS(1875), - [anon_sym_boolean] = ACTIONS(1875), - [anon_sym_string] = ACTIONS(1875), - [anon_sym_symbol] = ACTIONS(1875), - [anon_sym_object] = ACTIONS(1875), - [anon_sym_abstract] = ACTIONS(1875), - [anon_sym_interface] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), - [sym_html_comment] = ACTIONS(5), - }, - [812] = { - [ts_builtin_sym_end] = ACTIONS(2596), - [sym_identifier] = ACTIONS(2598), - [anon_sym_export] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_type] = ACTIONS(2598), - [anon_sym_namespace] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_typeof] = ACTIONS(2598), - [anon_sym_import] = ACTIONS(2598), - [anon_sym_with] = ACTIONS(2598), - [anon_sym_var] = ACTIONS(2598), - [anon_sym_let] = ACTIONS(2598), - [anon_sym_const] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2598), - [anon_sym_switch] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_await] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2598), - [anon_sym_do] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2598), - [anon_sym_continue] = ACTIONS(2598), - [anon_sym_debugger] = ACTIONS(2598), - [anon_sym_return] = ACTIONS(2598), - [anon_sym_throw] = ACTIONS(2598), - [anon_sym_case] = ACTIONS(2598), - [anon_sym_yield] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2598), - [anon_sym_async] = ACTIONS(2598), - [anon_sym_function] = ACTIONS(2598), - [anon_sym_new] = ACTIONS(2598), - [anon_sym_using] = ACTIONS(2598), - [anon_sym_PLUS] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2598), - [anon_sym_SLASH] = ACTIONS(2598), - [anon_sym_LT] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_void] = ACTIONS(2598), - [anon_sym_delete] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2596), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(2596), - [sym_this] = ACTIONS(2598), - [sym_super] = ACTIONS(2598), - [sym_true] = ACTIONS(2598), - [sym_false] = ACTIONS(2598), - [sym_null] = ACTIONS(2598), - [sym_undefined] = ACTIONS(2598), - [anon_sym_AT] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2598), - [anon_sym_readonly] = ACTIONS(2598), - [anon_sym_get] = ACTIONS(2598), - [anon_sym_set] = ACTIONS(2598), - [anon_sym_declare] = ACTIONS(2598), - [anon_sym_public] = ACTIONS(2598), - [anon_sym_private] = ACTIONS(2598), - [anon_sym_protected] = ACTIONS(2598), - [anon_sym_override] = ACTIONS(2598), - [anon_sym_module] = ACTIONS(2598), - [anon_sym_any] = ACTIONS(2598), - [anon_sym_number] = ACTIONS(2598), - [anon_sym_boolean] = ACTIONS(2598), - [anon_sym_string] = ACTIONS(2598), - [anon_sym_symbol] = ACTIONS(2598), - [anon_sym_object] = ACTIONS(2598), - [anon_sym_abstract] = ACTIONS(2598), - [anon_sym_interface] = ACTIONS(2598), - [anon_sym_enum] = ACTIONS(2598), - [sym_html_comment] = ACTIONS(5), - }, - [813] = { - [ts_builtin_sym_end] = ACTIONS(2600), - [sym_identifier] = ACTIONS(2602), - [anon_sym_export] = ACTIONS(2602), - [anon_sym_default] = ACTIONS(2602), - [anon_sym_type] = ACTIONS(2602), - [anon_sym_namespace] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_typeof] = ACTIONS(2602), - [anon_sym_import] = ACTIONS(2602), - [anon_sym_with] = ACTIONS(2602), - [anon_sym_var] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_switch] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2600), - [anon_sym_await] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_debugger] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_case] = ACTIONS(2602), - [anon_sym_yield] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2600), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_async] = ACTIONS(2602), - [anon_sym_function] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_PLUS] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2602), - [anon_sym_SLASH] = ACTIONS(2602), - [anon_sym_LT] = ACTIONS(2600), - [anon_sym_TILDE] = ACTIONS(2600), - [anon_sym_void] = ACTIONS(2602), - [anon_sym_delete] = ACTIONS(2602), - [anon_sym_PLUS_PLUS] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(2600), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2600), - [sym_number] = ACTIONS(2600), - [sym_private_property_identifier] = ACTIONS(2600), - [sym_this] = ACTIONS(2602), - [sym_super] = ACTIONS(2602), - [sym_true] = ACTIONS(2602), - [sym_false] = ACTIONS(2602), - [sym_null] = ACTIONS(2602), - [sym_undefined] = ACTIONS(2602), - [anon_sym_AT] = ACTIONS(2600), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_readonly] = ACTIONS(2602), - [anon_sym_get] = ACTIONS(2602), - [anon_sym_set] = ACTIONS(2602), - [anon_sym_declare] = ACTIONS(2602), - [anon_sym_public] = ACTIONS(2602), - [anon_sym_private] = ACTIONS(2602), - [anon_sym_protected] = ACTIONS(2602), - [anon_sym_override] = ACTIONS(2602), - [anon_sym_module] = ACTIONS(2602), - [anon_sym_any] = ACTIONS(2602), - [anon_sym_number] = ACTIONS(2602), - [anon_sym_boolean] = ACTIONS(2602), - [anon_sym_string] = ACTIONS(2602), - [anon_sym_symbol] = ACTIONS(2602), - [anon_sym_object] = ACTIONS(2602), - [anon_sym_abstract] = ACTIONS(2602), - [anon_sym_interface] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [sym_html_comment] = ACTIONS(5), - }, - [814] = { - [ts_builtin_sym_end] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2606), - [anon_sym_export] = ACTIONS(2606), - [anon_sym_default] = ACTIONS(2606), - [anon_sym_type] = ACTIONS(2606), - [anon_sym_namespace] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_RBRACE] = ACTIONS(2604), - [anon_sym_typeof] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_with] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2604), - [anon_sym_else] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_await] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_debugger] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_case] = ACTIONS(2606), - [anon_sym_yield] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_DQUOTE] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2604), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_async] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_LT] = ACTIONS(2604), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_void] = ACTIONS(2606), - [anon_sym_delete] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2604), - [sym_number] = ACTIONS(2604), - [sym_private_property_identifier] = ACTIONS(2604), - [sym_this] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), - [sym_true] = ACTIONS(2606), - [sym_false] = ACTIONS(2606), - [sym_null] = ACTIONS(2606), - [sym_undefined] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2604), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_readonly] = ACTIONS(2606), - [anon_sym_get] = ACTIONS(2606), - [anon_sym_set] = ACTIONS(2606), - [anon_sym_declare] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_protected] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_module] = ACTIONS(2606), - [anon_sym_any] = ACTIONS(2606), - [anon_sym_number] = ACTIONS(2606), - [anon_sym_boolean] = ACTIONS(2606), - [anon_sym_string] = ACTIONS(2606), - [anon_sym_symbol] = ACTIONS(2606), - [anon_sym_object] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [sym_html_comment] = ACTIONS(5), - }, - [815] = { - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2610), - [anon_sym_export] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_type] = ACTIONS(2610), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_typeof] = ACTIONS(2610), - [anon_sym_import] = ACTIONS(2610), - [anon_sym_with] = ACTIONS(2610), - [anon_sym_var] = ACTIONS(2610), - [anon_sym_let] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_await] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_debugger] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2610), - [anon_sym_yield] = ACTIONS(2610), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_async] = ACTIONS(2610), - [anon_sym_function] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_SLASH] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_void] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2608), - [sym_number] = ACTIONS(2608), - [sym_private_property_identifier] = ACTIONS(2608), - [sym_this] = ACTIONS(2610), - [sym_super] = ACTIONS(2610), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_undefined] = ACTIONS(2610), - [anon_sym_AT] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_readonly] = ACTIONS(2610), - [anon_sym_get] = ACTIONS(2610), - [anon_sym_set] = ACTIONS(2610), - [anon_sym_declare] = ACTIONS(2610), - [anon_sym_public] = ACTIONS(2610), - [anon_sym_private] = ACTIONS(2610), - [anon_sym_protected] = ACTIONS(2610), - [anon_sym_override] = ACTIONS(2610), - [anon_sym_module] = ACTIONS(2610), - [anon_sym_any] = ACTIONS(2610), - [anon_sym_number] = ACTIONS(2610), - [anon_sym_boolean] = ACTIONS(2610), - [anon_sym_string] = ACTIONS(2610), - [anon_sym_symbol] = ACTIONS(2610), - [anon_sym_object] = ACTIONS(2610), - [anon_sym_abstract] = ACTIONS(2610), - [anon_sym_interface] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - [sym_html_comment] = ACTIONS(5), - }, - [816] = { - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2610), - [anon_sym_export] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_type] = ACTIONS(2610), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_typeof] = ACTIONS(2610), - [anon_sym_import] = ACTIONS(2610), - [anon_sym_with] = ACTIONS(2610), - [anon_sym_var] = ACTIONS(2610), - [anon_sym_let] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_await] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_debugger] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2610), - [anon_sym_yield] = ACTIONS(2610), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_async] = ACTIONS(2610), - [anon_sym_function] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_SLASH] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_void] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2608), - [sym_number] = ACTIONS(2608), - [sym_private_property_identifier] = ACTIONS(2608), - [sym_this] = ACTIONS(2610), - [sym_super] = ACTIONS(2610), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_undefined] = ACTIONS(2610), - [anon_sym_AT] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_readonly] = ACTIONS(2610), - [anon_sym_get] = ACTIONS(2610), - [anon_sym_set] = ACTIONS(2610), - [anon_sym_declare] = ACTIONS(2610), - [anon_sym_public] = ACTIONS(2610), - [anon_sym_private] = ACTIONS(2610), - [anon_sym_protected] = ACTIONS(2610), - [anon_sym_override] = ACTIONS(2610), - [anon_sym_module] = ACTIONS(2610), - [anon_sym_any] = ACTIONS(2610), - [anon_sym_number] = ACTIONS(2610), - [anon_sym_boolean] = ACTIONS(2610), - [anon_sym_string] = ACTIONS(2610), - [anon_sym_symbol] = ACTIONS(2610), - [anon_sym_object] = ACTIONS(2610), - [anon_sym_abstract] = ACTIONS(2610), - [anon_sym_interface] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - [sym_html_comment] = ACTIONS(5), - }, - [817] = { + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(815)] = { [ts_builtin_sym_end] = ACTIONS(2612), [sym_identifier] = ACTIONS(2614), [anon_sym_export] = ACTIONS(2614), @@ -110933,7 +110974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2614), [sym_html_comment] = ACTIONS(5), }, - [818] = { + [STATE(816)] = { [ts_builtin_sym_end] = ACTIONS(2616), [sym_identifier] = ACTIONS(2618), [anon_sym_export] = ACTIONS(2618), @@ -111015,7 +111056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2618), [sym_html_comment] = ACTIONS(5), }, - [819] = { + [STATE(817)] = { [ts_builtin_sym_end] = ACTIONS(2620), [sym_identifier] = ACTIONS(2622), [anon_sym_export] = ACTIONS(2622), @@ -111097,7 +111138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2622), [sym_html_comment] = ACTIONS(5), }, - [820] = { + [STATE(818)] = { [ts_builtin_sym_end] = ACTIONS(2624), [sym_identifier] = ACTIONS(2626), [anon_sym_export] = ACTIONS(2626), @@ -111179,89 +111220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2626), [sym_html_comment] = ACTIONS(5), }, - [821] = { - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2626), - [anon_sym_export] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_namespace] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_typeof] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_const] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_await] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_debugger] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_using] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_void] = ACTIONS(2626), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2624), - [sym_number] = ACTIONS(2624), - [sym_private_property_identifier] = ACTIONS(2624), - [sym_this] = ACTIONS(2626), - [sym_super] = ACTIONS(2626), - [sym_true] = ACTIONS(2626), - [sym_false] = ACTIONS(2626), - [sym_null] = ACTIONS(2626), - [sym_undefined] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2624), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_readonly] = ACTIONS(2626), - [anon_sym_get] = ACTIONS(2626), - [anon_sym_set] = ACTIONS(2626), - [anon_sym_declare] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_protected] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_any] = ACTIONS(2626), - [anon_sym_number] = ACTIONS(2626), - [anon_sym_boolean] = ACTIONS(2626), - [anon_sym_string] = ACTIONS(2626), - [anon_sym_symbol] = ACTIONS(2626), - [anon_sym_object] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [sym_html_comment] = ACTIONS(5), - }, - [822] = { + [STATE(819)] = { [ts_builtin_sym_end] = ACTIONS(2628), [sym_identifier] = ACTIONS(2630), [anon_sym_export] = ACTIONS(2630), @@ -111343,7 +111302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2630), [sym_html_comment] = ACTIONS(5), }, - [823] = { + [STATE(820)] = { [ts_builtin_sym_end] = ACTIONS(2632), [sym_identifier] = ACTIONS(2634), [anon_sym_export] = ACTIONS(2634), @@ -111425,7 +111384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2634), [sym_html_comment] = ACTIONS(5), }, - [824] = { + [STATE(821)] = { [ts_builtin_sym_end] = ACTIONS(2636), [sym_identifier] = ACTIONS(2638), [anon_sym_export] = ACTIONS(2638), @@ -111507,7 +111466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2638), [sym_html_comment] = ACTIONS(5), }, - [825] = { + [STATE(822)] = { [ts_builtin_sym_end] = ACTIONS(2640), [sym_identifier] = ACTIONS(2642), [anon_sym_export] = ACTIONS(2642), @@ -111589,7 +111548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2642), [sym_html_comment] = ACTIONS(5), }, - [826] = { + [STATE(823)] = { [ts_builtin_sym_end] = ACTIONS(2644), [sym_identifier] = ACTIONS(2646), [anon_sym_export] = ACTIONS(2646), @@ -111671,7 +111630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2646), [sym_html_comment] = ACTIONS(5), }, - [827] = { + [STATE(824)] = { [ts_builtin_sym_end] = ACTIONS(2648), [sym_identifier] = ACTIONS(2650), [anon_sym_export] = ACTIONS(2650), @@ -111753,7 +111712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2650), [sym_html_comment] = ACTIONS(5), }, - [828] = { + [STATE(825)] = { [ts_builtin_sym_end] = ACTIONS(2652), [sym_identifier] = ACTIONS(2654), [anon_sym_export] = ACTIONS(2654), @@ -111835,7 +111794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2654), [sym_html_comment] = ACTIONS(5), }, - [829] = { + [STATE(826)] = { [ts_builtin_sym_end] = ACTIONS(2656), [sym_identifier] = ACTIONS(2658), [anon_sym_export] = ACTIONS(2658), @@ -111917,7 +111876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2658), [sym_html_comment] = ACTIONS(5), }, - [830] = { + [STATE(827)] = { [ts_builtin_sym_end] = ACTIONS(2660), [sym_identifier] = ACTIONS(2662), [anon_sym_export] = ACTIONS(2662), @@ -111999,7 +111958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2662), [sym_html_comment] = ACTIONS(5), }, - [831] = { + [STATE(828)] = { [ts_builtin_sym_end] = ACTIONS(2664), [sym_identifier] = ACTIONS(2666), [anon_sym_export] = ACTIONS(2666), @@ -112081,7 +112040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2666), [sym_html_comment] = ACTIONS(5), }, - [832] = { + [STATE(829)] = { [ts_builtin_sym_end] = ACTIONS(2668), [sym_identifier] = ACTIONS(2670), [anon_sym_export] = ACTIONS(2670), @@ -112163,7 +112122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2670), [sym_html_comment] = ACTIONS(5), }, - [833] = { + [STATE(830)] = { [ts_builtin_sym_end] = ACTIONS(2672), [sym_identifier] = ACTIONS(2674), [anon_sym_export] = ACTIONS(2674), @@ -112245,1647 +112204,1729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2674), [sym_html_comment] = ACTIONS(5), }, - [834] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [835] = { - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_export] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_typeof] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_await] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_debugger] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_yield] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_using] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_void] = ACTIONS(2680), - [anon_sym_delete] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2678), - [sym_number] = ACTIONS(2678), - [sym_private_property_identifier] = ACTIONS(2678), - [sym_this] = ACTIONS(2680), - [sym_super] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_null] = ACTIONS(2680), - [sym_undefined] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_readonly] = ACTIONS(2680), - [anon_sym_get] = ACTIONS(2680), - [anon_sym_set] = ACTIONS(2680), - [anon_sym_declare] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_protected] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_module] = ACTIONS(2680), - [anon_sym_any] = ACTIONS(2680), - [anon_sym_number] = ACTIONS(2680), - [anon_sym_boolean] = ACTIONS(2680), - [anon_sym_string] = ACTIONS(2680), - [anon_sym_symbol] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [sym_html_comment] = ACTIONS(5), - }, - [836] = { - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_export] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_typeof] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_await] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_debugger] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_yield] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_using] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_void] = ACTIONS(2680), - [anon_sym_delete] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2678), - [sym_number] = ACTIONS(2678), - [sym_private_property_identifier] = ACTIONS(2678), - [sym_this] = ACTIONS(2680), - [sym_super] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_null] = ACTIONS(2680), - [sym_undefined] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_readonly] = ACTIONS(2680), - [anon_sym_get] = ACTIONS(2680), - [anon_sym_set] = ACTIONS(2680), - [anon_sym_declare] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_protected] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_module] = ACTIONS(2680), - [anon_sym_any] = ACTIONS(2680), - [anon_sym_number] = ACTIONS(2680), - [anon_sym_boolean] = ACTIONS(2680), - [anon_sym_string] = ACTIONS(2680), - [anon_sym_symbol] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [sym_html_comment] = ACTIONS(5), - }, - [837] = { - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_export] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_namespace] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_typeof] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_var] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_switch] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_await] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_debugger] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_throw] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2680), - [anon_sym_yield] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_function] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_using] = ACTIONS(2680), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_SLASH] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2678), - [anon_sym_void] = ACTIONS(2680), - [anon_sym_delete] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2678), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2678), - [sym_number] = ACTIONS(2678), - [sym_private_property_identifier] = ACTIONS(2678), - [sym_this] = ACTIONS(2680), - [sym_super] = ACTIONS(2680), - [sym_true] = ACTIONS(2680), - [sym_false] = ACTIONS(2680), - [sym_null] = ACTIONS(2680), - [sym_undefined] = ACTIONS(2680), - [anon_sym_AT] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_readonly] = ACTIONS(2680), - [anon_sym_get] = ACTIONS(2680), - [anon_sym_set] = ACTIONS(2680), - [anon_sym_declare] = ACTIONS(2680), - [anon_sym_public] = ACTIONS(2680), - [anon_sym_private] = ACTIONS(2680), - [anon_sym_protected] = ACTIONS(2680), - [anon_sym_override] = ACTIONS(2680), - [anon_sym_module] = ACTIONS(2680), - [anon_sym_any] = ACTIONS(2680), - [anon_sym_number] = ACTIONS(2680), - [anon_sym_boolean] = ACTIONS(2680), - [anon_sym_string] = ACTIONS(2680), - [anon_sym_symbol] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_abstract] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [sym_html_comment] = ACTIONS(5), - }, - [838] = { - [ts_builtin_sym_end] = ACTIONS(2682), - [sym_identifier] = ACTIONS(2684), - [anon_sym_export] = ACTIONS(2684), - [anon_sym_default] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_namespace] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2682), - [anon_sym_RBRACE] = ACTIONS(2682), - [anon_sym_typeof] = ACTIONS(2684), - [anon_sym_import] = ACTIONS(2684), - [anon_sym_with] = ACTIONS(2684), - [anon_sym_var] = ACTIONS(2684), - [anon_sym_let] = ACTIONS(2684), - [anon_sym_const] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2682), - [anon_sym_else] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_switch] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2682), - [anon_sym_await] = ACTIONS(2684), - [anon_sym_while] = ACTIONS(2684), - [anon_sym_do] = ACTIONS(2684), - [anon_sym_try] = ACTIONS(2684), - [anon_sym_break] = ACTIONS(2684), - [anon_sym_continue] = ACTIONS(2684), - [anon_sym_debugger] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2684), - [anon_sym_throw] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2684), - [anon_sym_yield] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2684), - [anon_sym_async] = ACTIONS(2684), - [anon_sym_function] = ACTIONS(2684), - [anon_sym_new] = ACTIONS(2684), - [anon_sym_using] = ACTIONS(2684), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_SLASH] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2682), - [anon_sym_void] = ACTIONS(2684), - [anon_sym_delete] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2682), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2682), - [sym_number] = ACTIONS(2682), - [sym_private_property_identifier] = ACTIONS(2682), - [sym_this] = ACTIONS(2684), - [sym_super] = ACTIONS(2684), - [sym_true] = ACTIONS(2684), - [sym_false] = ACTIONS(2684), - [sym_null] = ACTIONS(2684), - [sym_undefined] = ACTIONS(2684), - [anon_sym_AT] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_readonly] = ACTIONS(2684), - [anon_sym_get] = ACTIONS(2684), - [anon_sym_set] = ACTIONS(2684), - [anon_sym_declare] = ACTIONS(2684), - [anon_sym_public] = ACTIONS(2684), - [anon_sym_private] = ACTIONS(2684), - [anon_sym_protected] = ACTIONS(2684), - [anon_sym_override] = ACTIONS(2684), - [anon_sym_module] = ACTIONS(2684), - [anon_sym_any] = ACTIONS(2684), - [anon_sym_number] = ACTIONS(2684), - [anon_sym_boolean] = ACTIONS(2684), - [anon_sym_string] = ACTIONS(2684), - [anon_sym_symbol] = ACTIONS(2684), - [anon_sym_object] = ACTIONS(2684), - [anon_sym_abstract] = ACTIONS(2684), - [anon_sym_interface] = ACTIONS(2684), - [anon_sym_enum] = ACTIONS(2684), - [sym_html_comment] = ACTIONS(5), - }, - [839] = { - [ts_builtin_sym_end] = ACTIONS(2686), - [sym_identifier] = ACTIONS(2688), - [anon_sym_export] = ACTIONS(2688), - [anon_sym_default] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_namespace] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_typeof] = ACTIONS(2688), - [anon_sym_import] = ACTIONS(2688), - [anon_sym_with] = ACTIONS(2688), - [anon_sym_var] = ACTIONS(2688), - [anon_sym_let] = ACTIONS(2688), - [anon_sym_const] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_else] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_switch] = ACTIONS(2688), - [anon_sym_for] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_SEMI] = ACTIONS(2686), - [anon_sym_await] = ACTIONS(2688), - [anon_sym_while] = ACTIONS(2688), - [anon_sym_do] = ACTIONS(2688), - [anon_sym_try] = ACTIONS(2688), - [anon_sym_break] = ACTIONS(2688), - [anon_sym_continue] = ACTIONS(2688), - [anon_sym_debugger] = ACTIONS(2688), - [anon_sym_return] = ACTIONS(2688), - [anon_sym_throw] = ACTIONS(2688), - [anon_sym_case] = ACTIONS(2688), - [anon_sym_yield] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_DQUOTE] = ACTIONS(2686), - [anon_sym_SQUOTE] = ACTIONS(2686), - [anon_sym_class] = ACTIONS(2688), - [anon_sym_async] = ACTIONS(2688), - [anon_sym_function] = ACTIONS(2688), - [anon_sym_new] = ACTIONS(2688), - [anon_sym_using] = ACTIONS(2688), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_SLASH] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2686), - [anon_sym_void] = ACTIONS(2688), - [anon_sym_delete] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2686), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2686), - [sym_number] = ACTIONS(2686), - [sym_private_property_identifier] = ACTIONS(2686), - [sym_this] = ACTIONS(2688), - [sym_super] = ACTIONS(2688), - [sym_true] = ACTIONS(2688), - [sym_false] = ACTIONS(2688), - [sym_null] = ACTIONS(2688), - [sym_undefined] = ACTIONS(2688), - [anon_sym_AT] = ACTIONS(2686), - [anon_sym_static] = ACTIONS(2688), - [anon_sym_readonly] = ACTIONS(2688), - [anon_sym_get] = ACTIONS(2688), - [anon_sym_set] = ACTIONS(2688), - [anon_sym_declare] = ACTIONS(2688), - [anon_sym_public] = ACTIONS(2688), - [anon_sym_private] = ACTIONS(2688), - [anon_sym_protected] = ACTIONS(2688), - [anon_sym_override] = ACTIONS(2688), - [anon_sym_module] = ACTIONS(2688), - [anon_sym_any] = ACTIONS(2688), - [anon_sym_number] = ACTIONS(2688), - [anon_sym_boolean] = ACTIONS(2688), - [anon_sym_string] = ACTIONS(2688), - [anon_sym_symbol] = ACTIONS(2688), - [anon_sym_object] = ACTIONS(2688), - [anon_sym_abstract] = ACTIONS(2688), - [anon_sym_interface] = ACTIONS(2688), - [anon_sym_enum] = ACTIONS(2688), - [sym_html_comment] = ACTIONS(5), - }, - [840] = { - [ts_builtin_sym_end] = ACTIONS(2690), - [sym_identifier] = ACTIONS(2692), - [anon_sym_export] = ACTIONS(2692), - [anon_sym_default] = ACTIONS(2692), - [anon_sym_type] = ACTIONS(2692), - [anon_sym_namespace] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_typeof] = ACTIONS(2692), - [anon_sym_import] = ACTIONS(2692), - [anon_sym_with] = ACTIONS(2692), - [anon_sym_var] = ACTIONS(2692), - [anon_sym_let] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2690), - [anon_sym_else] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_switch] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_await] = ACTIONS(2692), - [anon_sym_while] = ACTIONS(2692), - [anon_sym_do] = ACTIONS(2692), - [anon_sym_try] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_debugger] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_throw] = ACTIONS(2692), - [anon_sym_case] = ACTIONS(2692), - [anon_sym_yield] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_DQUOTE] = ACTIONS(2690), - [anon_sym_SQUOTE] = ACTIONS(2690), - [anon_sym_class] = ACTIONS(2692), - [anon_sym_async] = ACTIONS(2692), - [anon_sym_function] = ACTIONS(2692), - [anon_sym_new] = ACTIONS(2692), - [anon_sym_using] = ACTIONS(2692), - [anon_sym_PLUS] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2692), - [anon_sym_SLASH] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_TILDE] = ACTIONS(2690), - [anon_sym_void] = ACTIONS(2692), - [anon_sym_delete] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2690), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2690), - [sym_number] = ACTIONS(2690), - [sym_private_property_identifier] = ACTIONS(2690), - [sym_this] = ACTIONS(2692), - [sym_super] = ACTIONS(2692), - [sym_true] = ACTIONS(2692), - [sym_false] = ACTIONS(2692), - [sym_null] = ACTIONS(2692), - [sym_undefined] = ACTIONS(2692), - [anon_sym_AT] = ACTIONS(2690), - [anon_sym_static] = ACTIONS(2692), - [anon_sym_readonly] = ACTIONS(2692), - [anon_sym_get] = ACTIONS(2692), - [anon_sym_set] = ACTIONS(2692), - [anon_sym_declare] = ACTIONS(2692), - [anon_sym_public] = ACTIONS(2692), - [anon_sym_private] = ACTIONS(2692), - [anon_sym_protected] = ACTIONS(2692), - [anon_sym_override] = ACTIONS(2692), - [anon_sym_module] = ACTIONS(2692), - [anon_sym_any] = ACTIONS(2692), - [anon_sym_number] = ACTIONS(2692), - [anon_sym_boolean] = ACTIONS(2692), - [anon_sym_string] = ACTIONS(2692), - [anon_sym_symbol] = ACTIONS(2692), - [anon_sym_object] = ACTIONS(2692), - [anon_sym_abstract] = ACTIONS(2692), - [anon_sym_interface] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [sym_html_comment] = ACTIONS(5), - }, - [841] = { - [ts_builtin_sym_end] = ACTIONS(2694), - [sym_identifier] = ACTIONS(2696), - [anon_sym_export] = ACTIONS(2696), - [anon_sym_default] = ACTIONS(2696), - [anon_sym_type] = ACTIONS(2696), - [anon_sym_namespace] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(2696), - [anon_sym_import] = ACTIONS(2696), - [anon_sym_with] = ACTIONS(2696), - [anon_sym_var] = ACTIONS(2696), - [anon_sym_let] = ACTIONS(2696), - [anon_sym_const] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_else] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_switch] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_SEMI] = ACTIONS(2694), - [anon_sym_await] = ACTIONS(2696), - [anon_sym_while] = ACTIONS(2696), - [anon_sym_do] = ACTIONS(2696), - [anon_sym_try] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_debugger] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_throw] = ACTIONS(2696), - [anon_sym_case] = ACTIONS(2696), - [anon_sym_yield] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_DQUOTE] = ACTIONS(2694), - [anon_sym_SQUOTE] = ACTIONS(2694), - [anon_sym_class] = ACTIONS(2696), - [anon_sym_async] = ACTIONS(2696), - [anon_sym_function] = ACTIONS(2696), - [anon_sym_new] = ACTIONS(2696), - [anon_sym_using] = ACTIONS(2696), - [anon_sym_PLUS] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2696), - [anon_sym_SLASH] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2694), - [anon_sym_void] = ACTIONS(2696), - [anon_sym_delete] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2694), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2694), - [sym_number] = ACTIONS(2694), - [sym_private_property_identifier] = ACTIONS(2694), - [sym_this] = ACTIONS(2696), - [sym_super] = ACTIONS(2696), - [sym_true] = ACTIONS(2696), - [sym_false] = ACTIONS(2696), - [sym_null] = ACTIONS(2696), - [sym_undefined] = ACTIONS(2696), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2696), - [anon_sym_readonly] = ACTIONS(2696), - [anon_sym_get] = ACTIONS(2696), - [anon_sym_set] = ACTIONS(2696), - [anon_sym_declare] = ACTIONS(2696), - [anon_sym_public] = ACTIONS(2696), - [anon_sym_private] = ACTIONS(2696), - [anon_sym_protected] = ACTIONS(2696), - [anon_sym_override] = ACTIONS(2696), - [anon_sym_module] = ACTIONS(2696), - [anon_sym_any] = ACTIONS(2696), - [anon_sym_number] = ACTIONS(2696), - [anon_sym_boolean] = ACTIONS(2696), - [anon_sym_string] = ACTIONS(2696), - [anon_sym_symbol] = ACTIONS(2696), - [anon_sym_object] = ACTIONS(2696), - [anon_sym_abstract] = ACTIONS(2696), - [anon_sym_interface] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), - [sym_html_comment] = ACTIONS(5), - }, - [842] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_export] = ACTIONS(2700), - [anon_sym_default] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_namespace] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_RBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(2700), - [anon_sym_import] = ACTIONS(2700), - [anon_sym_with] = ACTIONS(2700), - [anon_sym_var] = ACTIONS(2700), - [anon_sym_let] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2698), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_switch] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2698), - [anon_sym_await] = ACTIONS(2700), - [anon_sym_while] = ACTIONS(2700), - [anon_sym_do] = ACTIONS(2700), - [anon_sym_try] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_debugger] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_throw] = ACTIONS(2700), - [anon_sym_case] = ACTIONS(2700), - [anon_sym_yield] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_DQUOTE] = ACTIONS(2698), - [anon_sym_SQUOTE] = ACTIONS(2698), - [anon_sym_class] = ACTIONS(2700), - [anon_sym_async] = ACTIONS(2700), - [anon_sym_function] = ACTIONS(2700), - [anon_sym_new] = ACTIONS(2700), - [anon_sym_using] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2698), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_void] = ACTIONS(2700), - [anon_sym_delete] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2698), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2698), - [sym_number] = ACTIONS(2698), - [sym_private_property_identifier] = ACTIONS(2698), - [sym_this] = ACTIONS(2700), - [sym_super] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_null] = ACTIONS(2700), - [sym_undefined] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2700), - [anon_sym_readonly] = ACTIONS(2700), - [anon_sym_get] = ACTIONS(2700), - [anon_sym_set] = ACTIONS(2700), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_public] = ACTIONS(2700), - [anon_sym_private] = ACTIONS(2700), - [anon_sym_protected] = ACTIONS(2700), - [anon_sym_override] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2700), - [anon_sym_any] = ACTIONS(2700), - [anon_sym_number] = ACTIONS(2700), - [anon_sym_boolean] = ACTIONS(2700), - [anon_sym_string] = ACTIONS(2700), - [anon_sym_symbol] = ACTIONS(2700), - [anon_sym_object] = ACTIONS(2700), - [anon_sym_abstract] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [sym_html_comment] = ACTIONS(5), - }, - [843] = { - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_export] = ACTIONS(2704), - [anon_sym_default] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_namespace] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_typeof] = ACTIONS(2704), - [anon_sym_import] = ACTIONS(2704), - [anon_sym_with] = ACTIONS(2704), - [anon_sym_var] = ACTIONS(2704), - [anon_sym_let] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2702), - [anon_sym_else] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_switch] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_await] = ACTIONS(2704), - [anon_sym_while] = ACTIONS(2704), - [anon_sym_do] = ACTIONS(2704), - [anon_sym_try] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_debugger] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_throw] = ACTIONS(2704), - [anon_sym_case] = ACTIONS(2704), - [anon_sym_yield] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_DQUOTE] = ACTIONS(2702), - [anon_sym_SQUOTE] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(2704), - [anon_sym_async] = ACTIONS(2704), - [anon_sym_function] = ACTIONS(2704), - [anon_sym_new] = ACTIONS(2704), - [anon_sym_using] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_TILDE] = ACTIONS(2702), - [anon_sym_void] = ACTIONS(2704), - [anon_sym_delete] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2702), - [sym_number] = ACTIONS(2702), - [sym_private_property_identifier] = ACTIONS(2702), - [sym_this] = ACTIONS(2704), - [sym_super] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_null] = ACTIONS(2704), - [sym_undefined] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2704), - [anon_sym_readonly] = ACTIONS(2704), - [anon_sym_get] = ACTIONS(2704), - [anon_sym_set] = ACTIONS(2704), - [anon_sym_declare] = ACTIONS(2704), - [anon_sym_public] = ACTIONS(2704), - [anon_sym_private] = ACTIONS(2704), - [anon_sym_protected] = ACTIONS(2704), - [anon_sym_override] = ACTIONS(2704), - [anon_sym_module] = ACTIONS(2704), - [anon_sym_any] = ACTIONS(2704), - [anon_sym_number] = ACTIONS(2704), - [anon_sym_boolean] = ACTIONS(2704), - [anon_sym_string] = ACTIONS(2704), - [anon_sym_symbol] = ACTIONS(2704), - [anon_sym_object] = ACTIONS(2704), - [anon_sym_abstract] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [sym_html_comment] = ACTIONS(5), - }, - [844] = { - [ts_builtin_sym_end] = ACTIONS(2706), - [sym_identifier] = ACTIONS(2708), - [anon_sym_export] = ACTIONS(2708), - [anon_sym_default] = ACTIONS(2708), - [anon_sym_type] = ACTIONS(2708), - [anon_sym_namespace] = ACTIONS(2708), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_RBRACE] = ACTIONS(2706), - [anon_sym_typeof] = ACTIONS(2708), - [anon_sym_import] = ACTIONS(2708), - [anon_sym_with] = ACTIONS(2708), - [anon_sym_var] = ACTIONS(2708), - [anon_sym_let] = ACTIONS(2708), - [anon_sym_const] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2706), - [anon_sym_else] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2708), - [anon_sym_switch] = ACTIONS(2708), - [anon_sym_for] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_await] = ACTIONS(2708), - [anon_sym_while] = ACTIONS(2708), - [anon_sym_do] = ACTIONS(2708), - [anon_sym_try] = ACTIONS(2708), - [anon_sym_break] = ACTIONS(2708), - [anon_sym_continue] = ACTIONS(2708), - [anon_sym_debugger] = ACTIONS(2708), - [anon_sym_return] = ACTIONS(2708), - [anon_sym_throw] = ACTIONS(2708), - [anon_sym_case] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2706), - [anon_sym_DQUOTE] = ACTIONS(2706), - [anon_sym_SQUOTE] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2708), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_function] = ACTIONS(2708), - [anon_sym_new] = ACTIONS(2708), - [anon_sym_using] = ACTIONS(2708), - [anon_sym_PLUS] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2708), - [anon_sym_SLASH] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2706), - [anon_sym_void] = ACTIONS(2708), - [anon_sym_delete] = ACTIONS(2708), - [anon_sym_PLUS_PLUS] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2706), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2706), - [sym_number] = ACTIONS(2706), - [sym_private_property_identifier] = ACTIONS(2706), - [sym_this] = ACTIONS(2708), - [sym_super] = ACTIONS(2708), - [sym_true] = ACTIONS(2708), - [sym_false] = ACTIONS(2708), - [sym_null] = ACTIONS(2708), - [sym_undefined] = ACTIONS(2708), - [anon_sym_AT] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2708), - [anon_sym_readonly] = ACTIONS(2708), - [anon_sym_get] = ACTIONS(2708), - [anon_sym_set] = ACTIONS(2708), - [anon_sym_declare] = ACTIONS(2708), - [anon_sym_public] = ACTIONS(2708), - [anon_sym_private] = ACTIONS(2708), - [anon_sym_protected] = ACTIONS(2708), - [anon_sym_override] = ACTIONS(2708), - [anon_sym_module] = ACTIONS(2708), - [anon_sym_any] = ACTIONS(2708), - [anon_sym_number] = ACTIONS(2708), - [anon_sym_boolean] = ACTIONS(2708), - [anon_sym_string] = ACTIONS(2708), - [anon_sym_symbol] = ACTIONS(2708), - [anon_sym_object] = ACTIONS(2708), - [anon_sym_abstract] = ACTIONS(2708), - [anon_sym_interface] = ACTIONS(2708), - [anon_sym_enum] = ACTIONS(2708), - [sym_html_comment] = ACTIONS(5), - }, - [845] = { - [ts_builtin_sym_end] = ACTIONS(2710), - [sym_identifier] = ACTIONS(2712), - [anon_sym_export] = ACTIONS(2712), - [anon_sym_default] = ACTIONS(2712), - [anon_sym_type] = ACTIONS(2712), - [anon_sym_namespace] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_typeof] = ACTIONS(2712), - [anon_sym_import] = ACTIONS(2712), - [anon_sym_with] = ACTIONS(2712), - [anon_sym_var] = ACTIONS(2712), - [anon_sym_let] = ACTIONS(2712), - [anon_sym_const] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_else] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_switch] = ACTIONS(2712), - [anon_sym_for] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_await] = ACTIONS(2712), - [anon_sym_while] = ACTIONS(2712), - [anon_sym_do] = ACTIONS(2712), - [anon_sym_try] = ACTIONS(2712), - [anon_sym_break] = ACTIONS(2712), - [anon_sym_continue] = ACTIONS(2712), - [anon_sym_debugger] = ACTIONS(2712), - [anon_sym_return] = ACTIONS(2712), - [anon_sym_throw] = ACTIONS(2712), - [anon_sym_case] = ACTIONS(2712), - [anon_sym_yield] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_DQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(2712), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_function] = ACTIONS(2712), - [anon_sym_new] = ACTIONS(2712), - [anon_sym_using] = ACTIONS(2712), - [anon_sym_PLUS] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_SLASH] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_delete] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2710), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2710), - [sym_number] = ACTIONS(2710), - [sym_private_property_identifier] = ACTIONS(2710), - [sym_this] = ACTIONS(2712), - [sym_super] = ACTIONS(2712), - [sym_true] = ACTIONS(2712), - [sym_false] = ACTIONS(2712), - [sym_null] = ACTIONS(2712), - [sym_undefined] = ACTIONS(2712), - [anon_sym_AT] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2712), - [anon_sym_readonly] = ACTIONS(2712), - [anon_sym_get] = ACTIONS(2712), - [anon_sym_set] = ACTIONS(2712), - [anon_sym_declare] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2712), - [anon_sym_private] = ACTIONS(2712), - [anon_sym_protected] = ACTIONS(2712), - [anon_sym_override] = ACTIONS(2712), - [anon_sym_module] = ACTIONS(2712), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2712), - [anon_sym_interface] = ACTIONS(2712), - [anon_sym_enum] = ACTIONS(2712), - [sym_html_comment] = ACTIONS(5), - }, - [846] = { - [ts_builtin_sym_end] = ACTIONS(2710), - [sym_identifier] = ACTIONS(2712), - [anon_sym_export] = ACTIONS(2712), - [anon_sym_default] = ACTIONS(2712), - [anon_sym_type] = ACTIONS(2712), - [anon_sym_namespace] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_typeof] = ACTIONS(2712), - [anon_sym_import] = ACTIONS(2712), - [anon_sym_with] = ACTIONS(2712), - [anon_sym_var] = ACTIONS(2712), - [anon_sym_let] = ACTIONS(2712), - [anon_sym_const] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_else] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_switch] = ACTIONS(2712), - [anon_sym_for] = ACTIONS(2712), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_await] = ACTIONS(2712), - [anon_sym_while] = ACTIONS(2712), - [anon_sym_do] = ACTIONS(2712), - [anon_sym_try] = ACTIONS(2712), - [anon_sym_break] = ACTIONS(2712), - [anon_sym_continue] = ACTIONS(2712), - [anon_sym_debugger] = ACTIONS(2712), - [anon_sym_return] = ACTIONS(2712), - [anon_sym_throw] = ACTIONS(2712), - [anon_sym_case] = ACTIONS(2712), - [anon_sym_yield] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_DQUOTE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(2712), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_function] = ACTIONS(2712), - [anon_sym_new] = ACTIONS(2712), - [anon_sym_using] = ACTIONS(2712), - [anon_sym_PLUS] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2712), - [anon_sym_SLASH] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2710), - [anon_sym_void] = ACTIONS(2712), - [anon_sym_delete] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2710), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2710), - [sym_number] = ACTIONS(2710), - [sym_private_property_identifier] = ACTIONS(2710), - [sym_this] = ACTIONS(2712), - [sym_super] = ACTIONS(2712), - [sym_true] = ACTIONS(2712), - [sym_false] = ACTIONS(2712), - [sym_null] = ACTIONS(2712), - [sym_undefined] = ACTIONS(2712), - [anon_sym_AT] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2712), - [anon_sym_readonly] = ACTIONS(2712), - [anon_sym_get] = ACTIONS(2712), - [anon_sym_set] = ACTIONS(2712), - [anon_sym_declare] = ACTIONS(2712), - [anon_sym_public] = ACTIONS(2712), - [anon_sym_private] = ACTIONS(2712), - [anon_sym_protected] = ACTIONS(2712), - [anon_sym_override] = ACTIONS(2712), - [anon_sym_module] = ACTIONS(2712), - [anon_sym_any] = ACTIONS(2712), - [anon_sym_number] = ACTIONS(2712), - [anon_sym_boolean] = ACTIONS(2712), - [anon_sym_string] = ACTIONS(2712), - [anon_sym_symbol] = ACTIONS(2712), - [anon_sym_object] = ACTIONS(2712), - [anon_sym_abstract] = ACTIONS(2712), - [anon_sym_interface] = ACTIONS(2712), - [anon_sym_enum] = ACTIONS(2712), - [sym_html_comment] = ACTIONS(5), - }, - [847] = { - [ts_builtin_sym_end] = ACTIONS(2714), - [sym_identifier] = ACTIONS(2716), - [anon_sym_export] = ACTIONS(2716), - [anon_sym_default] = ACTIONS(2716), - [anon_sym_type] = ACTIONS(2716), - [anon_sym_namespace] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(2716), - [anon_sym_import] = ACTIONS(2716), - [anon_sym_with] = ACTIONS(2716), - [anon_sym_var] = ACTIONS(2716), - [anon_sym_let] = ACTIONS(2716), - [anon_sym_const] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_else] = ACTIONS(2716), - [anon_sym_if] = ACTIONS(2716), - [anon_sym_switch] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2716), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_await] = ACTIONS(2716), - [anon_sym_while] = ACTIONS(2716), - [anon_sym_do] = ACTIONS(2716), - [anon_sym_try] = ACTIONS(2716), - [anon_sym_break] = ACTIONS(2716), - [anon_sym_continue] = ACTIONS(2716), - [anon_sym_debugger] = ACTIONS(2716), - [anon_sym_return] = ACTIONS(2716), - [anon_sym_throw] = ACTIONS(2716), - [anon_sym_case] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2716), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2714), - [anon_sym_SQUOTE] = ACTIONS(2714), - [anon_sym_class] = ACTIONS(2716), - [anon_sym_async] = ACTIONS(2716), - [anon_sym_function] = ACTIONS(2716), - [anon_sym_new] = ACTIONS(2716), - [anon_sym_using] = ACTIONS(2716), - [anon_sym_PLUS] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2714), - [anon_sym_void] = ACTIONS(2716), - [anon_sym_delete] = ACTIONS(2716), - [anon_sym_PLUS_PLUS] = ACTIONS(2714), - [anon_sym_DASH_DASH] = ACTIONS(2714), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2714), - [sym_number] = ACTIONS(2714), - [sym_private_property_identifier] = ACTIONS(2714), - [sym_this] = ACTIONS(2716), - [sym_super] = ACTIONS(2716), - [sym_true] = ACTIONS(2716), - [sym_false] = ACTIONS(2716), - [sym_null] = ACTIONS(2716), - [sym_undefined] = ACTIONS(2716), - [anon_sym_AT] = ACTIONS(2714), - [anon_sym_static] = ACTIONS(2716), - [anon_sym_readonly] = ACTIONS(2716), - [anon_sym_get] = ACTIONS(2716), - [anon_sym_set] = ACTIONS(2716), - [anon_sym_declare] = ACTIONS(2716), - [anon_sym_public] = ACTIONS(2716), - [anon_sym_private] = ACTIONS(2716), - [anon_sym_protected] = ACTIONS(2716), - [anon_sym_override] = ACTIONS(2716), - [anon_sym_module] = ACTIONS(2716), - [anon_sym_any] = ACTIONS(2716), - [anon_sym_number] = ACTIONS(2716), - [anon_sym_boolean] = ACTIONS(2716), - [anon_sym_string] = ACTIONS(2716), - [anon_sym_symbol] = ACTIONS(2716), - [anon_sym_object] = ACTIONS(2716), - [anon_sym_abstract] = ACTIONS(2716), - [anon_sym_interface] = ACTIONS(2716), - [anon_sym_enum] = ACTIONS(2716), - [sym_html_comment] = ACTIONS(5), - }, - [848] = { - [ts_builtin_sym_end] = ACTIONS(2718), - [sym_identifier] = ACTIONS(2720), - [anon_sym_export] = ACTIONS(2720), - [anon_sym_default] = ACTIONS(2720), - [anon_sym_type] = ACTIONS(2720), - [anon_sym_namespace] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_RBRACE] = ACTIONS(2718), - [anon_sym_typeof] = ACTIONS(2720), - [anon_sym_import] = ACTIONS(2720), - [anon_sym_with] = ACTIONS(2720), - [anon_sym_var] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(2720), - [anon_sym_const] = ACTIONS(2720), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_else] = ACTIONS(2720), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_switch] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2720), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_await] = ACTIONS(2720), - [anon_sym_while] = ACTIONS(2720), - [anon_sym_do] = ACTIONS(2720), - [anon_sym_try] = ACTIONS(2720), - [anon_sym_break] = ACTIONS(2720), - [anon_sym_continue] = ACTIONS(2720), - [anon_sym_debugger] = ACTIONS(2720), - [anon_sym_return] = ACTIONS(2720), - [anon_sym_throw] = ACTIONS(2720), - [anon_sym_case] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2720), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2718), - [anon_sym_SQUOTE] = ACTIONS(2718), - [anon_sym_class] = ACTIONS(2720), - [anon_sym_async] = ACTIONS(2720), - [anon_sym_function] = ACTIONS(2720), - [anon_sym_new] = ACTIONS(2720), - [anon_sym_using] = ACTIONS(2720), - [anon_sym_PLUS] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [anon_sym_SLASH] = ACTIONS(2720), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2718), - [anon_sym_void] = ACTIONS(2720), - [anon_sym_delete] = ACTIONS(2720), - [anon_sym_PLUS_PLUS] = ACTIONS(2718), - [anon_sym_DASH_DASH] = ACTIONS(2718), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2718), - [sym_number] = ACTIONS(2718), - [sym_private_property_identifier] = ACTIONS(2718), - [sym_this] = ACTIONS(2720), - [sym_super] = ACTIONS(2720), - [sym_true] = ACTIONS(2720), - [sym_false] = ACTIONS(2720), - [sym_null] = ACTIONS(2720), - [sym_undefined] = ACTIONS(2720), - [anon_sym_AT] = ACTIONS(2718), - [anon_sym_static] = ACTIONS(2720), - [anon_sym_readonly] = ACTIONS(2720), - [anon_sym_get] = ACTIONS(2720), - [anon_sym_set] = ACTIONS(2720), - [anon_sym_declare] = ACTIONS(2720), - [anon_sym_public] = ACTIONS(2720), - [anon_sym_private] = ACTIONS(2720), - [anon_sym_protected] = ACTIONS(2720), - [anon_sym_override] = ACTIONS(2720), - [anon_sym_module] = ACTIONS(2720), - [anon_sym_any] = ACTIONS(2720), - [anon_sym_number] = ACTIONS(2720), - [anon_sym_boolean] = ACTIONS(2720), - [anon_sym_string] = ACTIONS(2720), - [anon_sym_symbol] = ACTIONS(2720), - [anon_sym_object] = ACTIONS(2720), - [anon_sym_abstract] = ACTIONS(2720), - [anon_sym_interface] = ACTIONS(2720), - [anon_sym_enum] = ACTIONS(2720), - [sym_html_comment] = ACTIONS(5), - }, - [849] = { - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_export] = ACTIONS(2724), - [anon_sym_default] = ACTIONS(2724), - [anon_sym_type] = ACTIONS(2724), - [anon_sym_namespace] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_RBRACE] = ACTIONS(2722), - [anon_sym_typeof] = ACTIONS(2724), - [anon_sym_import] = ACTIONS(2724), - [anon_sym_with] = ACTIONS(2724), - [anon_sym_var] = ACTIONS(2724), - [anon_sym_let] = ACTIONS(2724), - [anon_sym_const] = ACTIONS(2724), - [anon_sym_BANG] = ACTIONS(2722), - [anon_sym_else] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_switch] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_await] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_debugger] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_throw] = ACTIONS(2724), - [anon_sym_case] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2724), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_DQUOTE] = ACTIONS(2722), - [anon_sym_SQUOTE] = ACTIONS(2722), - [anon_sym_class] = ACTIONS(2724), - [anon_sym_async] = ACTIONS(2724), - [anon_sym_function] = ACTIONS(2724), - [anon_sym_new] = ACTIONS(2724), - [anon_sym_using] = ACTIONS(2724), - [anon_sym_PLUS] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2722), - [anon_sym_void] = ACTIONS(2724), - [anon_sym_delete] = ACTIONS(2724), - [anon_sym_PLUS_PLUS] = ACTIONS(2722), - [anon_sym_DASH_DASH] = ACTIONS(2722), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2722), - [sym_number] = ACTIONS(2722), - [sym_private_property_identifier] = ACTIONS(2722), - [sym_this] = ACTIONS(2724), - [sym_super] = ACTIONS(2724), - [sym_true] = ACTIONS(2724), - [sym_false] = ACTIONS(2724), - [sym_null] = ACTIONS(2724), - [sym_undefined] = ACTIONS(2724), - [anon_sym_AT] = ACTIONS(2722), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_readonly] = ACTIONS(2724), - [anon_sym_get] = ACTIONS(2724), - [anon_sym_set] = ACTIONS(2724), - [anon_sym_declare] = ACTIONS(2724), - [anon_sym_public] = ACTIONS(2724), - [anon_sym_private] = ACTIONS(2724), - [anon_sym_protected] = ACTIONS(2724), - [anon_sym_override] = ACTIONS(2724), - [anon_sym_module] = ACTIONS(2724), - [anon_sym_any] = ACTIONS(2724), - [anon_sym_number] = ACTIONS(2724), - [anon_sym_boolean] = ACTIONS(2724), - [anon_sym_string] = ACTIONS(2724), - [anon_sym_symbol] = ACTIONS(2724), - [anon_sym_object] = ACTIONS(2724), - [anon_sym_abstract] = ACTIONS(2724), - [anon_sym_interface] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [sym_html_comment] = ACTIONS(5), - }, - [850] = { - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_export] = ACTIONS(2728), - [anon_sym_default] = ACTIONS(2728), - [anon_sym_type] = ACTIONS(2728), - [anon_sym_namespace] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(2728), - [anon_sym_import] = ACTIONS(2728), - [anon_sym_with] = ACTIONS(2728), - [anon_sym_var] = ACTIONS(2728), - [anon_sym_let] = ACTIONS(2728), - [anon_sym_const] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2726), - [anon_sym_else] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_switch] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_await] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_do] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_debugger] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_throw] = ACTIONS(2728), - [anon_sym_case] = ACTIONS(2728), - [anon_sym_yield] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [anon_sym_SQUOTE] = ACTIONS(2726), - [anon_sym_class] = ACTIONS(2728), - [anon_sym_async] = ACTIONS(2728), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_new] = ACTIONS(2728), - [anon_sym_using] = ACTIONS(2728), - [anon_sym_PLUS] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2726), - [anon_sym_void] = ACTIONS(2728), - [anon_sym_delete] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2726), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2726), - [sym_number] = ACTIONS(2726), - [sym_private_property_identifier] = ACTIONS(2726), - [sym_this] = ACTIONS(2728), - [sym_super] = ACTIONS(2728), - [sym_true] = ACTIONS(2728), - [sym_false] = ACTIONS(2728), - [sym_null] = ACTIONS(2728), - [sym_undefined] = ACTIONS(2728), - [anon_sym_AT] = ACTIONS(2726), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_readonly] = ACTIONS(2728), - [anon_sym_get] = ACTIONS(2728), - [anon_sym_set] = ACTIONS(2728), - [anon_sym_declare] = ACTIONS(2728), - [anon_sym_public] = ACTIONS(2728), - [anon_sym_private] = ACTIONS(2728), - [anon_sym_protected] = ACTIONS(2728), - [anon_sym_override] = ACTIONS(2728), - [anon_sym_module] = ACTIONS(2728), - [anon_sym_any] = ACTIONS(2728), - [anon_sym_number] = ACTIONS(2728), - [anon_sym_boolean] = ACTIONS(2728), - [anon_sym_string] = ACTIONS(2728), - [anon_sym_symbol] = ACTIONS(2728), - [anon_sym_object] = ACTIONS(2728), - [anon_sym_abstract] = ACTIONS(2728), - [anon_sym_interface] = ACTIONS(2728), - [anon_sym_enum] = ACTIONS(2728), - [sym_html_comment] = ACTIONS(5), - }, - [851] = { - [ts_builtin_sym_end] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym_export] = ACTIONS(2732), - [anon_sym_default] = ACTIONS(2732), - [anon_sym_type] = ACTIONS(2732), - [anon_sym_namespace] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_typeof] = ACTIONS(2732), - [anon_sym_import] = ACTIONS(2732), - [anon_sym_with] = ACTIONS(2732), - [anon_sym_var] = ACTIONS(2732), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_const] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_switch] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_await] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_do] = ACTIONS(2732), - [anon_sym_try] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_debugger] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_throw] = ACTIONS(2732), - [anon_sym_case] = ACTIONS(2732), - [anon_sym_yield] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [anon_sym_SQUOTE] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2732), - [anon_sym_async] = ACTIONS(2732), - [anon_sym_function] = ACTIONS(2732), - [anon_sym_new] = ACTIONS(2732), - [anon_sym_using] = ACTIONS(2732), - [anon_sym_PLUS] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_void] = ACTIONS(2732), - [anon_sym_delete] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2730), - [sym_number] = ACTIONS(2730), - [sym_private_property_identifier] = ACTIONS(2730), - [sym_this] = ACTIONS(2732), - [sym_super] = ACTIONS(2732), - [sym_true] = ACTIONS(2732), - [sym_false] = ACTIONS(2732), - [sym_null] = ACTIONS(2732), - [sym_undefined] = ACTIONS(2732), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_readonly] = ACTIONS(2732), - [anon_sym_get] = ACTIONS(2732), - [anon_sym_set] = ACTIONS(2732), - [anon_sym_declare] = ACTIONS(2732), - [anon_sym_public] = ACTIONS(2732), - [anon_sym_private] = ACTIONS(2732), - [anon_sym_protected] = ACTIONS(2732), - [anon_sym_override] = ACTIONS(2732), - [anon_sym_module] = ACTIONS(2732), - [anon_sym_any] = ACTIONS(2732), - [anon_sym_number] = ACTIONS(2732), - [anon_sym_boolean] = ACTIONS(2732), - [anon_sym_string] = ACTIONS(2732), - [anon_sym_symbol] = ACTIONS(2732), - [anon_sym_object] = ACTIONS(2732), - [anon_sym_abstract] = ACTIONS(2732), - [anon_sym_interface] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [sym_html_comment] = ACTIONS(5), - }, - [852] = { - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_export] = ACTIONS(1875), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_namespace] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_typeof] = ACTIONS(1875), - [anon_sym_import] = ACTIONS(1875), - [anon_sym_with] = ACTIONS(1875), - [anon_sym_var] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_else] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_switch] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_await] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_debugger] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_throw] = ACTIONS(1875), - [anon_sym_case] = ACTIONS(1875), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1873), - [anon_sym_class] = ACTIONS(1875), - [anon_sym_async] = ACTIONS(1875), - [anon_sym_function] = ACTIONS(1875), - [anon_sym_new] = ACTIONS(1875), - [anon_sym_using] = ACTIONS(1875), - [anon_sym_PLUS] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1875), - [anon_sym_SLASH] = ACTIONS(1875), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_TILDE] = ACTIONS(1873), - [anon_sym_void] = ACTIONS(1875), - [anon_sym_delete] = ACTIONS(1875), - [anon_sym_PLUS_PLUS] = ACTIONS(1873), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1873), - [sym_number] = ACTIONS(1873), - [sym_private_property_identifier] = ACTIONS(1873), - [sym_this] = ACTIONS(1875), - [sym_super] = ACTIONS(1875), - [sym_true] = ACTIONS(1875), - [sym_false] = ACTIONS(1875), - [sym_null] = ACTIONS(1875), - [sym_undefined] = ACTIONS(1875), - [anon_sym_AT] = ACTIONS(1873), - [anon_sym_static] = ACTIONS(1875), - [anon_sym_readonly] = ACTIONS(1875), - [anon_sym_get] = ACTIONS(1875), - [anon_sym_set] = ACTIONS(1875), - [anon_sym_declare] = ACTIONS(1875), - [anon_sym_public] = ACTIONS(1875), - [anon_sym_private] = ACTIONS(1875), - [anon_sym_protected] = ACTIONS(1875), - [anon_sym_override] = ACTIONS(1875), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1875), - [anon_sym_number] = ACTIONS(1875), - [anon_sym_boolean] = ACTIONS(1875), - [anon_sym_string] = ACTIONS(1875), - [anon_sym_symbol] = ACTIONS(1875), - [anon_sym_object] = ACTIONS(1875), - [anon_sym_abstract] = ACTIONS(1875), - [anon_sym_interface] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), - [sym_html_comment] = ACTIONS(5), - }, - [853] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_identifier] = ACTIONS(1739), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_type] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_typeof] = ACTIONS(1739), - [anon_sym_import] = ACTIONS(1739), - [anon_sym_with] = ACTIONS(1739), - [anon_sym_var] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_switch] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_await] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_debugger] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_throw] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1739), - [anon_sym_yield] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1739), - [anon_sym_function] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_void] = ACTIONS(1739), - [anon_sym_delete] = ACTIONS(1739), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), + [STATE(831)] = { + [ts_builtin_sym_end] = ACTIONS(2676), + [sym_identifier] = ACTIONS(2678), + [anon_sym_export] = ACTIONS(2678), + [anon_sym_default] = ACTIONS(2678), + [anon_sym_type] = ACTIONS(2678), + [anon_sym_namespace] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(2676), + [anon_sym_typeof] = ACTIONS(2678), + [anon_sym_import] = ACTIONS(2678), + [anon_sym_with] = ACTIONS(2678), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2678), + [anon_sym_const] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_else] = ACTIONS(2678), + [anon_sym_if] = ACTIONS(2678), + [anon_sym_switch] = ACTIONS(2678), + [anon_sym_for] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_await] = ACTIONS(2678), + [anon_sym_while] = ACTIONS(2678), + [anon_sym_do] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2678), + [anon_sym_break] = ACTIONS(2678), + [anon_sym_continue] = ACTIONS(2678), + [anon_sym_debugger] = ACTIONS(2678), + [anon_sym_return] = ACTIONS(2678), + [anon_sym_throw] = ACTIONS(2678), + [anon_sym_case] = ACTIONS(2678), + [anon_sym_yield] = ACTIONS(2678), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(2676), + [anon_sym_SQUOTE] = ACTIONS(2676), + [anon_sym_class] = ACTIONS(2678), + [anon_sym_async] = ACTIONS(2678), + [anon_sym_function] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2678), + [anon_sym_using] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2678), + [anon_sym_SLASH] = ACTIONS(2678), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2676), + [anon_sym_void] = ACTIONS(2678), + [anon_sym_delete] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2676), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2676), + [sym_number] = ACTIONS(2676), + [sym_private_property_identifier] = ACTIONS(2676), + [sym_this] = ACTIONS(2678), + [sym_super] = ACTIONS(2678), + [sym_true] = ACTIONS(2678), + [sym_false] = ACTIONS(2678), + [sym_null] = ACTIONS(2678), + [sym_undefined] = ACTIONS(2678), + [anon_sym_AT] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2678), + [anon_sym_readonly] = ACTIONS(2678), + [anon_sym_get] = ACTIONS(2678), + [anon_sym_set] = ACTIONS(2678), + [anon_sym_declare] = ACTIONS(2678), + [anon_sym_public] = ACTIONS(2678), + [anon_sym_private] = ACTIONS(2678), + [anon_sym_protected] = ACTIONS(2678), + [anon_sym_override] = ACTIONS(2678), + [anon_sym_module] = ACTIONS(2678), + [anon_sym_any] = ACTIONS(2678), + [anon_sym_number] = ACTIONS(2678), + [anon_sym_boolean] = ACTIONS(2678), + [anon_sym_string] = ACTIONS(2678), + [anon_sym_symbol] = ACTIONS(2678), + [anon_sym_object] = ACTIONS(2678), + [anon_sym_abstract] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2678), + [anon_sym_enum] = ACTIONS(2678), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(832)] = { + [ts_builtin_sym_end] = ACTIONS(2680), + [sym_identifier] = ACTIONS(2682), + [anon_sym_export] = ACTIONS(2682), + [anon_sym_default] = ACTIONS(2682), + [anon_sym_type] = ACTIONS(2682), + [anon_sym_namespace] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_typeof] = ACTIONS(2682), + [anon_sym_import] = ACTIONS(2682), + [anon_sym_with] = ACTIONS(2682), + [anon_sym_var] = ACTIONS(2682), + [anon_sym_let] = ACTIONS(2682), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_else] = ACTIONS(2682), + [anon_sym_if] = ACTIONS(2682), + [anon_sym_switch] = ACTIONS(2682), + [anon_sym_for] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_await] = ACTIONS(2682), + [anon_sym_while] = ACTIONS(2682), + [anon_sym_do] = ACTIONS(2682), + [anon_sym_try] = ACTIONS(2682), + [anon_sym_break] = ACTIONS(2682), + [anon_sym_continue] = ACTIONS(2682), + [anon_sym_debugger] = ACTIONS(2682), + [anon_sym_return] = ACTIONS(2682), + [anon_sym_throw] = ACTIONS(2682), + [anon_sym_case] = ACTIONS(2682), + [anon_sym_yield] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(2680), + [anon_sym_SQUOTE] = ACTIONS(2680), + [anon_sym_class] = ACTIONS(2682), + [anon_sym_async] = ACTIONS(2682), + [anon_sym_function] = ACTIONS(2682), + [anon_sym_new] = ACTIONS(2682), + [anon_sym_using] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2682), + [anon_sym_SLASH] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_TILDE] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_delete] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2680), + [sym_number] = ACTIONS(2680), + [sym_private_property_identifier] = ACTIONS(2680), + [sym_this] = ACTIONS(2682), + [sym_super] = ACTIONS(2682), + [sym_true] = ACTIONS(2682), + [sym_false] = ACTIONS(2682), + [sym_null] = ACTIONS(2682), + [sym_undefined] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2682), + [anon_sym_readonly] = ACTIONS(2682), + [anon_sym_get] = ACTIONS(2682), + [anon_sym_set] = ACTIONS(2682), + [anon_sym_declare] = ACTIONS(2682), + [anon_sym_public] = ACTIONS(2682), + [anon_sym_private] = ACTIONS(2682), + [anon_sym_protected] = ACTIONS(2682), + [anon_sym_override] = ACTIONS(2682), + [anon_sym_module] = ACTIONS(2682), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2682), + [anon_sym_interface] = ACTIONS(2682), + [anon_sym_enum] = ACTIONS(2682), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(833)] = { + [ts_builtin_sym_end] = ACTIONS(2684), + [sym_identifier] = ACTIONS(2686), + [anon_sym_export] = ACTIONS(2686), + [anon_sym_default] = ACTIONS(2686), + [anon_sym_type] = ACTIONS(2686), + [anon_sym_namespace] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_RBRACE] = ACTIONS(2684), + [anon_sym_typeof] = ACTIONS(2686), + [anon_sym_import] = ACTIONS(2686), + [anon_sym_with] = ACTIONS(2686), + [anon_sym_var] = ACTIONS(2686), + [anon_sym_let] = ACTIONS(2686), + [anon_sym_const] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_else] = ACTIONS(2686), + [anon_sym_if] = ACTIONS(2686), + [anon_sym_switch] = ACTIONS(2686), + [anon_sym_for] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_await] = ACTIONS(2686), + [anon_sym_while] = ACTIONS(2686), + [anon_sym_do] = ACTIONS(2686), + [anon_sym_try] = ACTIONS(2686), + [anon_sym_break] = ACTIONS(2686), + [anon_sym_continue] = ACTIONS(2686), + [anon_sym_debugger] = ACTIONS(2686), + [anon_sym_return] = ACTIONS(2686), + [anon_sym_throw] = ACTIONS(2686), + [anon_sym_case] = ACTIONS(2686), + [anon_sym_yield] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2684), + [anon_sym_SQUOTE] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2686), + [anon_sym_async] = ACTIONS(2686), + [anon_sym_function] = ACTIONS(2686), + [anon_sym_new] = ACTIONS(2686), + [anon_sym_using] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_SLASH] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_void] = ACTIONS(2686), + [anon_sym_delete] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2684), + [sym_private_property_identifier] = ACTIONS(2684), + [sym_this] = ACTIONS(2686), + [sym_super] = ACTIONS(2686), + [sym_true] = ACTIONS(2686), + [sym_false] = ACTIONS(2686), + [sym_null] = ACTIONS(2686), + [sym_undefined] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2686), + [anon_sym_readonly] = ACTIONS(2686), + [anon_sym_get] = ACTIONS(2686), + [anon_sym_set] = ACTIONS(2686), + [anon_sym_declare] = ACTIONS(2686), + [anon_sym_public] = ACTIONS(2686), + [anon_sym_private] = ACTIONS(2686), + [anon_sym_protected] = ACTIONS(2686), + [anon_sym_override] = ACTIONS(2686), + [anon_sym_module] = ACTIONS(2686), + [anon_sym_any] = ACTIONS(2686), + [anon_sym_number] = ACTIONS(2686), + [anon_sym_boolean] = ACTIONS(2686), + [anon_sym_string] = ACTIONS(2686), + [anon_sym_symbol] = ACTIONS(2686), + [anon_sym_object] = ACTIONS(2686), + [anon_sym_abstract] = ACTIONS(2686), + [anon_sym_interface] = ACTIONS(2686), + [anon_sym_enum] = ACTIONS(2686), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(834)] = { + [ts_builtin_sym_end] = ACTIONS(2688), + [sym_identifier] = ACTIONS(2690), + [anon_sym_export] = ACTIONS(2690), + [anon_sym_default] = ACTIONS(2690), + [anon_sym_type] = ACTIONS(2690), + [anon_sym_namespace] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_RBRACE] = ACTIONS(2688), + [anon_sym_typeof] = ACTIONS(2690), + [anon_sym_import] = ACTIONS(2690), + [anon_sym_with] = ACTIONS(2690), + [anon_sym_var] = ACTIONS(2690), + [anon_sym_let] = ACTIONS(2690), + [anon_sym_const] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2690), + [anon_sym_if] = ACTIONS(2690), + [anon_sym_switch] = ACTIONS(2690), + [anon_sym_for] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_await] = ACTIONS(2690), + [anon_sym_while] = ACTIONS(2690), + [anon_sym_do] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_debugger] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2690), + [anon_sym_throw] = ACTIONS(2690), + [anon_sym_case] = ACTIONS(2690), + [anon_sym_yield] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2688), + [anon_sym_SQUOTE] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2690), + [anon_sym_function] = ACTIONS(2690), + [anon_sym_new] = ACTIONS(2690), + [anon_sym_using] = ACTIONS(2690), + [anon_sym_PLUS] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2690), + [anon_sym_SLASH] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_TILDE] = ACTIONS(2688), + [anon_sym_void] = ACTIONS(2690), + [anon_sym_delete] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2688), + [sym_number] = ACTIONS(2688), + [sym_private_property_identifier] = ACTIONS(2688), + [sym_this] = ACTIONS(2690), + [sym_super] = ACTIONS(2690), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_AT] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2690), + [anon_sym_get] = ACTIONS(2690), + [anon_sym_set] = ACTIONS(2690), + [anon_sym_declare] = ACTIONS(2690), + [anon_sym_public] = ACTIONS(2690), + [anon_sym_private] = ACTIONS(2690), + [anon_sym_protected] = ACTIONS(2690), + [anon_sym_override] = ACTIONS(2690), + [anon_sym_module] = ACTIONS(2690), + [anon_sym_any] = ACTIONS(2690), + [anon_sym_number] = ACTIONS(2690), + [anon_sym_boolean] = ACTIONS(2690), + [anon_sym_string] = ACTIONS(2690), + [anon_sym_symbol] = ACTIONS(2690), + [anon_sym_object] = ACTIONS(2690), + [anon_sym_abstract] = ACTIONS(2690), + [anon_sym_interface] = ACTIONS(2690), + [anon_sym_enum] = ACTIONS(2690), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(835)] = { + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2694), + [anon_sym_default] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_namespace] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(2694), + [anon_sym_import] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2694), + [anon_sym_var] = ACTIONS(2694), + [anon_sym_let] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_switch] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_await] = ACTIONS(2694), + [anon_sym_while] = ACTIONS(2694), + [anon_sym_do] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_debugger] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_throw] = ACTIONS(2694), + [anon_sym_case] = ACTIONS(2694), + [anon_sym_yield] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_DQUOTE] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2692), + [anon_sym_class] = ACTIONS(2694), + [anon_sym_async] = ACTIONS(2694), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_new] = ACTIONS(2694), + [anon_sym_using] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_void] = ACTIONS(2694), + [anon_sym_delete] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2692), + [sym_number] = ACTIONS(2692), + [sym_private_property_identifier] = ACTIONS(2692), + [sym_this] = ACTIONS(2694), + [sym_super] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_null] = ACTIONS(2694), + [sym_undefined] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2694), + [anon_sym_readonly] = ACTIONS(2694), + [anon_sym_get] = ACTIONS(2694), + [anon_sym_set] = ACTIONS(2694), + [anon_sym_declare] = ACTIONS(2694), + [anon_sym_public] = ACTIONS(2694), + [anon_sym_private] = ACTIONS(2694), + [anon_sym_protected] = ACTIONS(2694), + [anon_sym_override] = ACTIONS(2694), + [anon_sym_module] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2694), + [anon_sym_number] = ACTIONS(2694), + [anon_sym_boolean] = ACTIONS(2694), + [anon_sym_string] = ACTIONS(2694), + [anon_sym_symbol] = ACTIONS(2694), + [anon_sym_object] = ACTIONS(2694), + [anon_sym_abstract] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(836)] = { + [ts_builtin_sym_end] = ACTIONS(2696), + [sym_identifier] = ACTIONS(2698), + [anon_sym_export] = ACTIONS(2698), + [anon_sym_default] = ACTIONS(2698), + [anon_sym_type] = ACTIONS(2698), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_RBRACE] = ACTIONS(2696), + [anon_sym_typeof] = ACTIONS(2698), + [anon_sym_import] = ACTIONS(2698), + [anon_sym_with] = ACTIONS(2698), + [anon_sym_var] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2698), + [anon_sym_const] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(2698), + [anon_sym_switch] = ACTIONS(2698), + [anon_sym_for] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_await] = ACTIONS(2698), + [anon_sym_while] = ACTIONS(2698), + [anon_sym_do] = ACTIONS(2698), + [anon_sym_try] = ACTIONS(2698), + [anon_sym_break] = ACTIONS(2698), + [anon_sym_continue] = ACTIONS(2698), + [anon_sym_debugger] = ACTIONS(2698), + [anon_sym_return] = ACTIONS(2698), + [anon_sym_throw] = ACTIONS(2698), + [anon_sym_case] = ACTIONS(2698), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(2696), + [anon_sym_SQUOTE] = ACTIONS(2696), + [anon_sym_class] = ACTIONS(2698), + [anon_sym_async] = ACTIONS(2698), + [anon_sym_function] = ACTIONS(2698), + [anon_sym_new] = ACTIONS(2698), + [anon_sym_using] = ACTIONS(2698), + [anon_sym_PLUS] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2698), + [anon_sym_SLASH] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_void] = ACTIONS(2698), + [anon_sym_delete] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2696), + [sym_number] = ACTIONS(2696), + [sym_private_property_identifier] = ACTIONS(2696), + [sym_this] = ACTIONS(2698), + [sym_super] = ACTIONS(2698), + [sym_true] = ACTIONS(2698), + [sym_false] = ACTIONS(2698), + [sym_null] = ACTIONS(2698), + [sym_undefined] = ACTIONS(2698), + [anon_sym_AT] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2698), + [anon_sym_readonly] = ACTIONS(2698), + [anon_sym_get] = ACTIONS(2698), + [anon_sym_set] = ACTIONS(2698), + [anon_sym_declare] = ACTIONS(2698), + [anon_sym_public] = ACTIONS(2698), + [anon_sym_private] = ACTIONS(2698), + [anon_sym_protected] = ACTIONS(2698), + [anon_sym_override] = ACTIONS(2698), + [anon_sym_module] = ACTIONS(2698), + [anon_sym_any] = ACTIONS(2698), + [anon_sym_number] = ACTIONS(2698), + [anon_sym_boolean] = ACTIONS(2698), + [anon_sym_string] = ACTIONS(2698), + [anon_sym_symbol] = ACTIONS(2698), + [anon_sym_object] = ACTIONS(2698), + [anon_sym_abstract] = ACTIONS(2698), + [anon_sym_interface] = ACTIONS(2698), + [anon_sym_enum] = ACTIONS(2698), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(837)] = { + [ts_builtin_sym_end] = ACTIONS(2700), + [sym_identifier] = ACTIONS(2702), + [anon_sym_export] = ACTIONS(2702), + [anon_sym_default] = ACTIONS(2702), + [anon_sym_type] = ACTIONS(2702), + [anon_sym_namespace] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_typeof] = ACTIONS(2702), + [anon_sym_import] = ACTIONS(2702), + [anon_sym_with] = ACTIONS(2702), + [anon_sym_var] = ACTIONS(2702), + [anon_sym_let] = ACTIONS(2702), + [anon_sym_const] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_else] = ACTIONS(2702), + [anon_sym_if] = ACTIONS(2702), + [anon_sym_switch] = ACTIONS(2702), + [anon_sym_for] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_await] = ACTIONS(2702), + [anon_sym_while] = ACTIONS(2702), + [anon_sym_do] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2702), + [anon_sym_continue] = ACTIONS(2702), + [anon_sym_debugger] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2702), + [anon_sym_throw] = ACTIONS(2702), + [anon_sym_case] = ACTIONS(2702), + [anon_sym_yield] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2700), + [anon_sym_SQUOTE] = ACTIONS(2700), + [anon_sym_class] = ACTIONS(2702), + [anon_sym_async] = ACTIONS(2702), + [anon_sym_function] = ACTIONS(2702), + [anon_sym_new] = ACTIONS(2702), + [anon_sym_using] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2700), + [anon_sym_void] = ACTIONS(2702), + [anon_sym_delete] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2700), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2700), + [sym_number] = ACTIONS(2700), + [sym_private_property_identifier] = ACTIONS(2700), + [sym_this] = ACTIONS(2702), + [sym_super] = ACTIONS(2702), + [sym_true] = ACTIONS(2702), + [sym_false] = ACTIONS(2702), + [sym_null] = ACTIONS(2702), + [sym_undefined] = ACTIONS(2702), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2702), + [anon_sym_readonly] = ACTIONS(2702), + [anon_sym_get] = ACTIONS(2702), + [anon_sym_set] = ACTIONS(2702), + [anon_sym_declare] = ACTIONS(2702), + [anon_sym_public] = ACTIONS(2702), + [anon_sym_private] = ACTIONS(2702), + [anon_sym_protected] = ACTIONS(2702), + [anon_sym_override] = ACTIONS(2702), + [anon_sym_module] = ACTIONS(2702), + [anon_sym_any] = ACTIONS(2702), + [anon_sym_number] = ACTIONS(2702), + [anon_sym_boolean] = ACTIONS(2702), + [anon_sym_string] = ACTIONS(2702), + [anon_sym_symbol] = ACTIONS(2702), + [anon_sym_object] = ACTIONS(2702), + [anon_sym_abstract] = ACTIONS(2702), + [anon_sym_interface] = ACTIONS(2702), + [anon_sym_enum] = ACTIONS(2702), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(838)] = { + [ts_builtin_sym_end] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2706), + [anon_sym_export] = ACTIONS(2706), + [anon_sym_default] = ACTIONS(2706), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_namespace] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2704), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_typeof] = ACTIONS(2706), + [anon_sym_import] = ACTIONS(2706), + [anon_sym_with] = ACTIONS(2706), + [anon_sym_var] = ACTIONS(2706), + [anon_sym_let] = ACTIONS(2706), + [anon_sym_const] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2706), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(2706), + [anon_sym_for] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2704), + [anon_sym_await] = ACTIONS(2706), + [anon_sym_while] = ACTIONS(2706), + [anon_sym_do] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2706), + [anon_sym_break] = ACTIONS(2706), + [anon_sym_continue] = ACTIONS(2706), + [anon_sym_debugger] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2706), + [anon_sym_throw] = ACTIONS(2706), + [anon_sym_case] = ACTIONS(2706), + [anon_sym_yield] = ACTIONS(2706), + [anon_sym_LBRACK] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(2704), + [anon_sym_SQUOTE] = ACTIONS(2704), + [anon_sym_class] = ACTIONS(2706), + [anon_sym_async] = ACTIONS(2706), + [anon_sym_function] = ACTIONS(2706), + [anon_sym_new] = ACTIONS(2706), + [anon_sym_using] = ACTIONS(2706), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_SLASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2704), + [anon_sym_void] = ACTIONS(2706), + [anon_sym_delete] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2704), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2704), + [sym_number] = ACTIONS(2704), + [sym_private_property_identifier] = ACTIONS(2704), + [sym_this] = ACTIONS(2706), + [sym_super] = ACTIONS(2706), + [sym_true] = ACTIONS(2706), + [sym_false] = ACTIONS(2706), + [sym_null] = ACTIONS(2706), + [sym_undefined] = ACTIONS(2706), + [anon_sym_AT] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2706), + [anon_sym_readonly] = ACTIONS(2706), + [anon_sym_get] = ACTIONS(2706), + [anon_sym_set] = ACTIONS(2706), + [anon_sym_declare] = ACTIONS(2706), + [anon_sym_public] = ACTIONS(2706), + [anon_sym_private] = ACTIONS(2706), + [anon_sym_protected] = ACTIONS(2706), + [anon_sym_override] = ACTIONS(2706), + [anon_sym_module] = ACTIONS(2706), + [anon_sym_any] = ACTIONS(2706), + [anon_sym_number] = ACTIONS(2706), + [anon_sym_boolean] = ACTIONS(2706), + [anon_sym_string] = ACTIONS(2706), + [anon_sym_symbol] = ACTIONS(2706), + [anon_sym_object] = ACTIONS(2706), + [anon_sym_abstract] = ACTIONS(2706), + [anon_sym_interface] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2706), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(839)] = { + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2710), + [anon_sym_export] = ACTIONS(2710), + [anon_sym_default] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_namespace] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_typeof] = ACTIONS(2710), + [anon_sym_import] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2710), + [anon_sym_var] = ACTIONS(2710), + [anon_sym_let] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_switch] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_SEMI] = ACTIONS(2708), + [anon_sym_await] = ACTIONS(2710), + [anon_sym_while] = ACTIONS(2710), + [anon_sym_do] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_debugger] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_throw] = ACTIONS(2710), + [anon_sym_case] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_SQUOTE] = ACTIONS(2708), + [anon_sym_class] = ACTIONS(2710), + [anon_sym_async] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2710), + [anon_sym_using] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(2710), + [anon_sym_delete] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2708), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2708), + [sym_number] = ACTIONS(2708), + [sym_private_property_identifier] = ACTIONS(2708), + [sym_this] = ACTIONS(2710), + [sym_super] = ACTIONS(2710), + [sym_true] = ACTIONS(2710), + [sym_false] = ACTIONS(2710), + [sym_null] = ACTIONS(2710), + [sym_undefined] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2710), + [anon_sym_readonly] = ACTIONS(2710), + [anon_sym_get] = ACTIONS(2710), + [anon_sym_set] = ACTIONS(2710), + [anon_sym_declare] = ACTIONS(2710), + [anon_sym_public] = ACTIONS(2710), + [anon_sym_private] = ACTIONS(2710), + [anon_sym_protected] = ACTIONS(2710), + [anon_sym_override] = ACTIONS(2710), + [anon_sym_module] = ACTIONS(2710), + [anon_sym_any] = ACTIONS(2710), + [anon_sym_number] = ACTIONS(2710), + [anon_sym_boolean] = ACTIONS(2710), + [anon_sym_string] = ACTIONS(2710), + [anon_sym_symbol] = ACTIONS(2710), + [anon_sym_object] = ACTIONS(2710), + [anon_sym_abstract] = ACTIONS(2710), + [anon_sym_interface] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(840)] = { + [ts_builtin_sym_end] = ACTIONS(2712), + [sym_identifier] = ACTIONS(2714), + [anon_sym_export] = ACTIONS(2714), + [anon_sym_default] = ACTIONS(2714), + [anon_sym_type] = ACTIONS(2714), + [anon_sym_namespace] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2712), + [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2714), + [anon_sym_import] = ACTIONS(2714), + [anon_sym_with] = ACTIONS(2714), + [anon_sym_var] = ACTIONS(2714), + [anon_sym_let] = ACTIONS(2714), + [anon_sym_const] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_switch] = ACTIONS(2714), + [anon_sym_for] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_await] = ACTIONS(2714), + [anon_sym_while] = ACTIONS(2714), + [anon_sym_do] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2714), + [anon_sym_debugger] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_throw] = ACTIONS(2714), + [anon_sym_case] = ACTIONS(2714), + [anon_sym_yield] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_SQUOTE] = ACTIONS(2712), + [anon_sym_class] = ACTIONS(2714), + [anon_sym_async] = ACTIONS(2714), + [anon_sym_function] = ACTIONS(2714), + [anon_sym_new] = ACTIONS(2714), + [anon_sym_using] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2712), + [anon_sym_void] = ACTIONS(2714), + [anon_sym_delete] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2712), + [sym_number] = ACTIONS(2712), + [sym_private_property_identifier] = ACTIONS(2712), + [sym_this] = ACTIONS(2714), + [sym_super] = ACTIONS(2714), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [sym_null] = ACTIONS(2714), + [sym_undefined] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2714), + [anon_sym_readonly] = ACTIONS(2714), + [anon_sym_get] = ACTIONS(2714), + [anon_sym_set] = ACTIONS(2714), + [anon_sym_declare] = ACTIONS(2714), + [anon_sym_public] = ACTIONS(2714), + [anon_sym_private] = ACTIONS(2714), + [anon_sym_protected] = ACTIONS(2714), + [anon_sym_override] = ACTIONS(2714), + [anon_sym_module] = ACTIONS(2714), + [anon_sym_any] = ACTIONS(2714), + [anon_sym_number] = ACTIONS(2714), + [anon_sym_boolean] = ACTIONS(2714), + [anon_sym_string] = ACTIONS(2714), + [anon_sym_symbol] = ACTIONS(2714), + [anon_sym_object] = ACTIONS(2714), + [anon_sym_abstract] = ACTIONS(2714), + [anon_sym_interface] = ACTIONS(2714), + [anon_sym_enum] = ACTIONS(2714), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(841)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(842)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(843)] = { + [ts_builtin_sym_end] = ACTIONS(2720), + [sym_identifier] = ACTIONS(2722), + [anon_sym_export] = ACTIONS(2722), + [anon_sym_default] = ACTIONS(2722), + [anon_sym_type] = ACTIONS(2722), + [anon_sym_namespace] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2720), + [anon_sym_RBRACE] = ACTIONS(2720), + [anon_sym_typeof] = ACTIONS(2722), + [anon_sym_import] = ACTIONS(2722), + [anon_sym_with] = ACTIONS(2722), + [anon_sym_var] = ACTIONS(2722), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_const] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2720), + [anon_sym_else] = ACTIONS(2722), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2720), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_await] = ACTIONS(2722), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2722), + [anon_sym_break] = ACTIONS(2722), + [anon_sym_continue] = ACTIONS(2722), + [anon_sym_debugger] = ACTIONS(2722), + [anon_sym_return] = ACTIONS(2722), + [anon_sym_throw] = ACTIONS(2722), + [anon_sym_case] = ACTIONS(2722), + [anon_sym_yield] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_class] = ACTIONS(2722), + [anon_sym_async] = ACTIONS(2722), + [anon_sym_function] = ACTIONS(2722), + [anon_sym_new] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_TILDE] = ACTIONS(2720), + [anon_sym_void] = ACTIONS(2722), + [anon_sym_delete] = ACTIONS(2722), + [anon_sym_PLUS_PLUS] = ACTIONS(2720), + [anon_sym_DASH_DASH] = ACTIONS(2720), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2720), + [sym_number] = ACTIONS(2720), + [sym_private_property_identifier] = ACTIONS(2720), + [sym_this] = ACTIONS(2722), + [sym_super] = ACTIONS(2722), + [sym_true] = ACTIONS(2722), + [sym_false] = ACTIONS(2722), + [sym_null] = ACTIONS(2722), + [sym_undefined] = ACTIONS(2722), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2722), + [anon_sym_readonly] = ACTIONS(2722), + [anon_sym_get] = ACTIONS(2722), + [anon_sym_set] = ACTIONS(2722), + [anon_sym_declare] = ACTIONS(2722), + [anon_sym_public] = ACTIONS(2722), + [anon_sym_private] = ACTIONS(2722), + [anon_sym_protected] = ACTIONS(2722), + [anon_sym_override] = ACTIONS(2722), + [anon_sym_module] = ACTIONS(2722), + [anon_sym_any] = ACTIONS(2722), + [anon_sym_number] = ACTIONS(2722), + [anon_sym_boolean] = ACTIONS(2722), + [anon_sym_string] = ACTIONS(2722), + [anon_sym_symbol] = ACTIONS(2722), + [anon_sym_object] = ACTIONS(2722), + [anon_sym_abstract] = ACTIONS(2722), + [anon_sym_interface] = ACTIONS(2722), + [anon_sym_enum] = ACTIONS(2722), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(844)] = { + [ts_builtin_sym_end] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2726), + [anon_sym_export] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_namespace] = ACTIONS(2726), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2726), + [anon_sym_import] = ACTIONS(2726), + [anon_sym_with] = ACTIONS(2726), + [anon_sym_var] = ACTIONS(2726), + [anon_sym_let] = ACTIONS(2726), + [anon_sym_const] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_switch] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_await] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_do] = ACTIONS(2726), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_debugger] = ACTIONS(2726), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_throw] = ACTIONS(2726), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [anon_sym_SQUOTE] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2726), + [anon_sym_async] = ACTIONS(2726), + [anon_sym_function] = ACTIONS(2726), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_using] = ACTIONS(2726), + [anon_sym_PLUS] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(2726), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_delete] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2724), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2724), + [sym_number] = ACTIONS(2724), + [sym_private_property_identifier] = ACTIONS(2724), + [sym_this] = ACTIONS(2726), + [sym_super] = ACTIONS(2726), + [sym_true] = ACTIONS(2726), + [sym_false] = ACTIONS(2726), + [sym_null] = ACTIONS(2726), + [sym_undefined] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2726), + [anon_sym_readonly] = ACTIONS(2726), + [anon_sym_get] = ACTIONS(2726), + [anon_sym_set] = ACTIONS(2726), + [anon_sym_declare] = ACTIONS(2726), + [anon_sym_public] = ACTIONS(2726), + [anon_sym_private] = ACTIONS(2726), + [anon_sym_protected] = ACTIONS(2726), + [anon_sym_override] = ACTIONS(2726), + [anon_sym_module] = ACTIONS(2726), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2726), + [anon_sym_interface] = ACTIONS(2726), + [anon_sym_enum] = ACTIONS(2726), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(845)] = { + [ts_builtin_sym_end] = ACTIONS(2728), + [sym_identifier] = ACTIONS(2730), + [anon_sym_export] = ACTIONS(2730), + [anon_sym_default] = ACTIONS(2730), + [anon_sym_type] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_with] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [anon_sym_let] = ACTIONS(2730), + [anon_sym_const] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_else] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_await] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_debugger] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_case] = ACTIONS(2730), + [anon_sym_yield] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(2728), + [anon_sym_SQUOTE] = ACTIONS(2728), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_async] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_void] = ACTIONS(2730), + [anon_sym_delete] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2728), + [sym_private_property_identifier] = ACTIONS(2728), + [sym_this] = ACTIONS(2730), + [sym_super] = ACTIONS(2730), + [sym_true] = ACTIONS(2730), + [sym_false] = ACTIONS(2730), + [sym_null] = ACTIONS(2730), + [sym_undefined] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_readonly] = ACTIONS(2730), + [anon_sym_get] = ACTIONS(2730), + [anon_sym_set] = ACTIONS(2730), + [anon_sym_declare] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_protected] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_module] = ACTIONS(2730), + [anon_sym_any] = ACTIONS(2730), + [anon_sym_number] = ACTIONS(2730), + [anon_sym_boolean] = ACTIONS(2730), + [anon_sym_string] = ACTIONS(2730), + [anon_sym_symbol] = ACTIONS(2730), + [anon_sym_object] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(846)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(847)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(848)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(849)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(850)] = { + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_namespace] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_typeof] = ACTIONS(1705), + [anon_sym_import] = ACTIONS(1705), + [anon_sym_with] = ACTIONS(1705), + [anon_sym_var] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_switch] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_debugger] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_throw] = ACTIONS(1705), + [anon_sym_case] = ACTIONS(1705), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), + [anon_sym_class] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_function] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_using] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_SLASH] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_TILDE] = ACTIONS(1703), + [anon_sym_void] = ACTIONS(1705), + [anon_sym_delete] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1703), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1737), - [sym_number] = ACTIONS(1737), - [sym_private_property_identifier] = ACTIONS(1737), - [sym_this] = ACTIONS(1739), - [sym_super] = ACTIONS(1739), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_undefined] = ACTIONS(1739), - [anon_sym_AT] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_readonly] = ACTIONS(1739), - [anon_sym_get] = ACTIONS(1739), - [anon_sym_set] = ACTIONS(1739), - [anon_sym_declare] = ACTIONS(1739), - [anon_sym_public] = ACTIONS(1739), - [anon_sym_private] = ACTIONS(1739), - [anon_sym_protected] = ACTIONS(1739), - [anon_sym_override] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_any] = ACTIONS(1739), - [anon_sym_number] = ACTIONS(1739), - [anon_sym_boolean] = ACTIONS(1739), - [anon_sym_string] = ACTIONS(1739), - [anon_sym_symbol] = ACTIONS(1739), - [anon_sym_object] = ACTIONS(1739), - [anon_sym_abstract] = ACTIONS(1739), - [anon_sym_interface] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), + [anon_sym_BQUOTE] = ACTIONS(1703), + [sym_number] = ACTIONS(1703), + [sym_private_property_identifier] = ACTIONS(1703), + [sym_this] = ACTIONS(1705), + [sym_super] = ACTIONS(1705), + [sym_true] = ACTIONS(1705), + [sym_false] = ACTIONS(1705), + [sym_null] = ACTIONS(1705), + [sym_undefined] = ACTIONS(1705), + [anon_sym_AT] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_readonly] = ACTIONS(1705), + [anon_sym_get] = ACTIONS(1705), + [anon_sym_set] = ACTIONS(1705), + [anon_sym_declare] = ACTIONS(1705), + [anon_sym_public] = ACTIONS(1705), + [anon_sym_private] = ACTIONS(1705), + [anon_sym_protected] = ACTIONS(1705), + [anon_sym_override] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_any] = ACTIONS(1705), + [anon_sym_number] = ACTIONS(1705), + [anon_sym_boolean] = ACTIONS(1705), + [anon_sym_string] = ACTIONS(1705), + [anon_sym_symbol] = ACTIONS(1705), + [anon_sym_object] = ACTIONS(1705), + [anon_sym_abstract] = ACTIONS(1705), + [anon_sym_interface] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), [sym_html_comment] = ACTIONS(5), }, - [854] = { + [STATE(851)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(852)] = { [ts_builtin_sym_end] = ACTIONS(2734), [sym_identifier] = ACTIONS(2736), [anon_sym_export] = ACTIONS(2736), @@ -113967,89 +114008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2736), [sym_html_comment] = ACTIONS(5), }, - [855] = { - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_export] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_namespace] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_typeof] = ACTIONS(1871), - [anon_sym_import] = ACTIONS(1871), - [anon_sym_with] = ACTIONS(1871), - [anon_sym_var] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_else] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_switch] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_await] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_do] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_debugger] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_throw] = ACTIONS(1871), - [anon_sym_case] = ACTIONS(1871), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1869), - [anon_sym_class] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1871), - [anon_sym_using] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1871), - [anon_sym_SLASH] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_void] = ACTIONS(1871), - [anon_sym_delete] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1869), - [anon_sym_DASH_DASH] = ACTIONS(1869), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1869), - [sym_number] = ACTIONS(1869), - [sym_private_property_identifier] = ACTIONS(1869), - [sym_this] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_null] = ACTIONS(1871), - [sym_undefined] = ACTIONS(1871), - [anon_sym_AT] = ACTIONS(1869), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_readonly] = ACTIONS(1871), - [anon_sym_get] = ACTIONS(1871), - [anon_sym_set] = ACTIONS(1871), - [anon_sym_declare] = ACTIONS(1871), - [anon_sym_public] = ACTIONS(1871), - [anon_sym_private] = ACTIONS(1871), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_override] = ACTIONS(1871), - [anon_sym_module] = ACTIONS(1871), - [anon_sym_any] = ACTIONS(1871), - [anon_sym_number] = ACTIONS(1871), - [anon_sym_boolean] = ACTIONS(1871), - [anon_sym_string] = ACTIONS(1871), - [anon_sym_symbol] = ACTIONS(1871), - [anon_sym_object] = ACTIONS(1871), - [anon_sym_abstract] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [sym_html_comment] = ACTIONS(5), - }, - [856] = { + [STATE(853)] = { [ts_builtin_sym_end] = ACTIONS(2738), [sym_identifier] = ACTIONS(2740), [anon_sym_export] = ACTIONS(2740), @@ -114131,89 +114090,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2740), [sym_html_comment] = ACTIONS(5), }, - [857] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_export] = ACTIONS(2740), - [anon_sym_default] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_typeof] = ACTIONS(2740), - [anon_sym_import] = ACTIONS(2740), - [anon_sym_with] = ACTIONS(2740), - [anon_sym_var] = ACTIONS(2740), - [anon_sym_let] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2738), - [anon_sym_else] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_switch] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_await] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_do] = ACTIONS(2740), - [anon_sym_try] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_debugger] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_throw] = ACTIONS(2740), - [anon_sym_case] = ACTIONS(2740), - [anon_sym_yield] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_DQUOTE] = ACTIONS(2738), - [anon_sym_SQUOTE] = ACTIONS(2738), - [anon_sym_class] = ACTIONS(2740), - [anon_sym_async] = ACTIONS(2740), - [anon_sym_function] = ACTIONS(2740), - [anon_sym_new] = ACTIONS(2740), - [anon_sym_using] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_void] = ACTIONS(2740), - [anon_sym_delete] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), + [STATE(854)] = { + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_void] = ACTIONS(2744), + [anon_sym_delete] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2738), - [sym_number] = ACTIONS(2738), - [sym_private_property_identifier] = ACTIONS(2738), - [sym_this] = ACTIONS(2740), - [sym_super] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_null] = ACTIONS(2740), - [sym_undefined] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2738), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_readonly] = ACTIONS(2740), - [anon_sym_get] = ACTIONS(2740), - [anon_sym_set] = ACTIONS(2740), - [anon_sym_declare] = ACTIONS(2740), - [anon_sym_public] = ACTIONS(2740), - [anon_sym_private] = ACTIONS(2740), - [anon_sym_protected] = ACTIONS(2740), - [anon_sym_override] = ACTIONS(2740), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_any] = ACTIONS(2740), - [anon_sym_number] = ACTIONS(2740), - [anon_sym_boolean] = ACTIONS(2740), - [anon_sym_string] = ACTIONS(2740), - [anon_sym_symbol] = ACTIONS(2740), - [anon_sym_object] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), + [anon_sym_BQUOTE] = ACTIONS(2742), + [sym_number] = ACTIONS(2742), + [sym_private_property_identifier] = ACTIONS(2742), + [sym_this] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_null] = ACTIONS(2744), + [sym_undefined] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_object] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), [sym_html_comment] = ACTIONS(5), }, - [858] = { + [STATE(855)] = { [ts_builtin_sym_end] = ACTIONS(2742), [sym_identifier] = ACTIONS(2744), [anon_sym_export] = ACTIONS(2744), @@ -114295,7 +114254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2744), [sym_html_comment] = ACTIONS(5), }, - [859] = { + [STATE(856)] = { [ts_builtin_sym_end] = ACTIONS(2746), [sym_identifier] = ACTIONS(2748), [anon_sym_export] = ACTIONS(2748), @@ -114377,7 +114336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2748), [sym_html_comment] = ACTIONS(5), }, - [860] = { + [STATE(857)] = { [ts_builtin_sym_end] = ACTIONS(2750), [sym_identifier] = ACTIONS(2752), [anon_sym_export] = ACTIONS(2752), @@ -114459,7 +114418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2752), [sym_html_comment] = ACTIONS(5), }, - [861] = { + [STATE(858)] = { [ts_builtin_sym_end] = ACTIONS(2754), [sym_identifier] = ACTIONS(2756), [anon_sym_export] = ACTIONS(2756), @@ -114541,7 +114500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2756), [sym_html_comment] = ACTIONS(5), }, - [862] = { + [STATE(859)] = { [ts_builtin_sym_end] = ACTIONS(2758), [sym_identifier] = ACTIONS(2760), [anon_sym_export] = ACTIONS(2760), @@ -114623,7 +114582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2760), [sym_html_comment] = ACTIONS(5), }, - [863] = { + [STATE(860)] = { [ts_builtin_sym_end] = ACTIONS(2762), [sym_identifier] = ACTIONS(2764), [anon_sym_export] = ACTIONS(2764), @@ -114705,63 +114664,3999 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2764), [sym_html_comment] = ACTIONS(5), }, - [864] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [STATE(861)] = { + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_identifier] = ACTIONS(2768), + [anon_sym_export] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_namespace] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_typeof] = ACTIONS(2768), + [anon_sym_import] = ACTIONS(2768), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_var] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_else] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_await] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_debugger] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_throw] = ACTIONS(2768), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2766), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_async] = ACTIONS(2768), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_using] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2766), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_void] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2766), + [sym_number] = ACTIONS(2766), + [sym_private_property_identifier] = ACTIONS(2766), + [sym_this] = ACTIONS(2768), + [sym_super] = ACTIONS(2768), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [sym_null] = ACTIONS(2768), + [sym_undefined] = ACTIONS(2768), + [anon_sym_AT] = ACTIONS(2766), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_readonly] = ACTIONS(2768), + [anon_sym_get] = ACTIONS(2768), + [anon_sym_set] = ACTIONS(2768), + [anon_sym_declare] = ACTIONS(2768), + [anon_sym_public] = ACTIONS(2768), + [anon_sym_private] = ACTIONS(2768), + [anon_sym_protected] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_any] = ACTIONS(2768), + [anon_sym_number] = ACTIONS(2768), + [anon_sym_boolean] = ACTIONS(2768), + [anon_sym_string] = ACTIONS(2768), + [anon_sym_symbol] = ACTIONS(2768), + [anon_sym_object] = ACTIONS(2768), + [anon_sym_abstract] = ACTIONS(2768), + [anon_sym_interface] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(862)] = { + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2772), + [anon_sym_export] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_type] = ACTIONS(2772), + [anon_sym_namespace] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_import] = ACTIONS(2772), + [anon_sym_with] = ACTIONS(2772), + [anon_sym_var] = ACTIONS(2772), + [anon_sym_let] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_else] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym_await] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_try] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_debugger] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_throw] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_yield] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2770), + [anon_sym_class] = ACTIONS(2772), + [anon_sym_async] = ACTIONS(2772), + [anon_sym_function] = ACTIONS(2772), + [anon_sym_new] = ACTIONS(2772), + [anon_sym_using] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_SLASH] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [anon_sym_void] = ACTIONS(2772), + [anon_sym_delete] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2770), + [sym_number] = ACTIONS(2770), + [sym_private_property_identifier] = ACTIONS(2770), + [sym_this] = ACTIONS(2772), + [sym_super] = ACTIONS(2772), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [sym_null] = ACTIONS(2772), + [sym_undefined] = ACTIONS(2772), + [anon_sym_AT] = ACTIONS(2770), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_readonly] = ACTIONS(2772), + [anon_sym_get] = ACTIONS(2772), + [anon_sym_set] = ACTIONS(2772), + [anon_sym_declare] = ACTIONS(2772), + [anon_sym_public] = ACTIONS(2772), + [anon_sym_private] = ACTIONS(2772), + [anon_sym_protected] = ACTIONS(2772), + [anon_sym_override] = ACTIONS(2772), + [anon_sym_module] = ACTIONS(2772), + [anon_sym_any] = ACTIONS(2772), + [anon_sym_number] = ACTIONS(2772), + [anon_sym_boolean] = ACTIONS(2772), + [anon_sym_string] = ACTIONS(2772), + [anon_sym_symbol] = ACTIONS(2772), + [anon_sym_object] = ACTIONS(2772), + [anon_sym_abstract] = ACTIONS(2772), + [anon_sym_interface] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(863)] = { + [ts_builtin_sym_end] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2776), + [anon_sym_export] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_type] = ACTIONS(2776), + [anon_sym_namespace] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(2776), + [anon_sym_import] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2776), + [anon_sym_var] = ACTIONS(2776), + [anon_sym_let] = ACTIONS(2776), + [anon_sym_const] = ACTIONS(2776), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_else] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_switch] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_await] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_do] = ACTIONS(2776), + [anon_sym_try] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_debugger] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_throw] = ACTIONS(2776), + [anon_sym_case] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_class] = ACTIONS(2776), + [anon_sym_async] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_using] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_SLASH] = ACTIONS(2776), + [anon_sym_LT] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_void] = ACTIONS(2776), + [anon_sym_delete] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2774), + [sym_number] = ACTIONS(2774), + [sym_private_property_identifier] = ACTIONS(2774), + [sym_this] = ACTIONS(2776), + [sym_super] = ACTIONS(2776), + [sym_true] = ACTIONS(2776), + [sym_false] = ACTIONS(2776), + [sym_null] = ACTIONS(2776), + [sym_undefined] = ACTIONS(2776), + [anon_sym_AT] = ACTIONS(2774), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_readonly] = ACTIONS(2776), + [anon_sym_get] = ACTIONS(2776), + [anon_sym_set] = ACTIONS(2776), + [anon_sym_declare] = ACTIONS(2776), + [anon_sym_public] = ACTIONS(2776), + [anon_sym_private] = ACTIONS(2776), + [anon_sym_protected] = ACTIONS(2776), + [anon_sym_override] = ACTIONS(2776), + [anon_sym_module] = ACTIONS(2776), + [anon_sym_any] = ACTIONS(2776), + [anon_sym_number] = ACTIONS(2776), + [anon_sym_boolean] = ACTIONS(2776), + [anon_sym_string] = ACTIONS(2776), + [anon_sym_symbol] = ACTIONS(2776), + [anon_sym_object] = ACTIONS(2776), + [anon_sym_abstract] = ACTIONS(2776), + [anon_sym_interface] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(864)] = { + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_type] = ACTIONS(2780), + [anon_sym_namespace] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_import] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(2780), + [anon_sym_var] = ACTIONS(2780), + [anon_sym_let] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_await] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_try] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_debugger] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_throw] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_class] = ACTIONS(2780), + [anon_sym_async] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(2780), + [anon_sym_using] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_SLASH] = ACTIONS(2780), + [anon_sym_LT] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_void] = ACTIONS(2780), + [anon_sym_delete] = ACTIONS(2780), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2778), + [sym_number] = ACTIONS(2778), + [sym_private_property_identifier] = ACTIONS(2778), + [sym_this] = ACTIONS(2780), + [sym_super] = ACTIONS(2780), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [sym_null] = ACTIONS(2780), + [sym_undefined] = ACTIONS(2780), + [anon_sym_AT] = ACTIONS(2778), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_readonly] = ACTIONS(2780), + [anon_sym_get] = ACTIONS(2780), + [anon_sym_set] = ACTIONS(2780), + [anon_sym_declare] = ACTIONS(2780), + [anon_sym_public] = ACTIONS(2780), + [anon_sym_private] = ACTIONS(2780), + [anon_sym_protected] = ACTIONS(2780), + [anon_sym_override] = ACTIONS(2780), + [anon_sym_module] = ACTIONS(2780), + [anon_sym_any] = ACTIONS(2780), + [anon_sym_number] = ACTIONS(2780), + [anon_sym_boolean] = ACTIONS(2780), + [anon_sym_string] = ACTIONS(2780), + [anon_sym_symbol] = ACTIONS(2780), + [anon_sym_object] = ACTIONS(2780), + [anon_sym_abstract] = ACTIONS(2780), + [anon_sym_interface] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(865)] = { + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2784), + [anon_sym_export] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_type] = ACTIONS(2784), + [anon_sym_namespace] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_import] = ACTIONS(2784), + [anon_sym_with] = ACTIONS(2784), + [anon_sym_var] = ACTIONS(2784), + [anon_sym_let] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_else] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_await] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_try] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_debugger] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_throw] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_class] = ACTIONS(2784), + [anon_sym_async] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2784), + [anon_sym_using] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_void] = ACTIONS(2784), + [anon_sym_delete] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2782), + [sym_number] = ACTIONS(2782), + [sym_private_property_identifier] = ACTIONS(2782), + [sym_this] = ACTIONS(2784), + [sym_super] = ACTIONS(2784), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [sym_null] = ACTIONS(2784), + [sym_undefined] = ACTIONS(2784), + [anon_sym_AT] = ACTIONS(2782), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_readonly] = ACTIONS(2784), + [anon_sym_get] = ACTIONS(2784), + [anon_sym_set] = ACTIONS(2784), + [anon_sym_declare] = ACTIONS(2784), + [anon_sym_public] = ACTIONS(2784), + [anon_sym_private] = ACTIONS(2784), + [anon_sym_protected] = ACTIONS(2784), + [anon_sym_override] = ACTIONS(2784), + [anon_sym_module] = ACTIONS(2784), + [anon_sym_any] = ACTIONS(2784), + [anon_sym_number] = ACTIONS(2784), + [anon_sym_boolean] = ACTIONS(2784), + [anon_sym_string] = ACTIONS(2784), + [anon_sym_symbol] = ACTIONS(2784), + [anon_sym_object] = ACTIONS(2784), + [anon_sym_abstract] = ACTIONS(2784), + [anon_sym_interface] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(866)] = { + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2788), + [anon_sym_export] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_namespace] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_typeof] = ACTIONS(2788), + [anon_sym_import] = ACTIONS(2788), + [anon_sym_with] = ACTIONS(2788), + [anon_sym_var] = ACTIONS(2788), + [anon_sym_let] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_await] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_try] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_debugger] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_throw] = ACTIONS(2788), + [anon_sym_case] = ACTIONS(2788), + [anon_sym_yield] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_class] = ACTIONS(2788), + [anon_sym_async] = ACTIONS(2788), + [anon_sym_function] = ACTIONS(2788), + [anon_sym_new] = ACTIONS(2788), + [anon_sym_using] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_void] = ACTIONS(2788), + [anon_sym_delete] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2786), + [sym_number] = ACTIONS(2786), + [sym_private_property_identifier] = ACTIONS(2786), + [sym_this] = ACTIONS(2788), + [sym_super] = ACTIONS(2788), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [sym_null] = ACTIONS(2788), + [sym_undefined] = ACTIONS(2788), + [anon_sym_AT] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_get] = ACTIONS(2788), + [anon_sym_set] = ACTIONS(2788), + [anon_sym_declare] = ACTIONS(2788), + [anon_sym_public] = ACTIONS(2788), + [anon_sym_private] = ACTIONS(2788), + [anon_sym_protected] = ACTIONS(2788), + [anon_sym_override] = ACTIONS(2788), + [anon_sym_module] = ACTIONS(2788), + [anon_sym_any] = ACTIONS(2788), + [anon_sym_number] = ACTIONS(2788), + [anon_sym_boolean] = ACTIONS(2788), + [anon_sym_string] = ACTIONS(2788), + [anon_sym_symbol] = ACTIONS(2788), + [anon_sym_object] = ACTIONS(2788), + [anon_sym_abstract] = ACTIONS(2788), + [anon_sym_interface] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(867)] = { + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_typeof] = ACTIONS(1691), + [anon_sym_import] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1691), + [anon_sym_var] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_switch] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_debugger] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_throw] = ACTIONS(1691), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_yield] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_class] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(1691), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_using] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_void] = ACTIONS(1691), + [anon_sym_delete] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1689), + [sym_number] = ACTIONS(1689), + [sym_private_property_identifier] = ACTIONS(1689), + [sym_this] = ACTIONS(1691), + [sym_super] = ACTIONS(1691), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [sym_null] = ACTIONS(1691), + [sym_undefined] = ACTIONS(1691), + [anon_sym_AT] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [anon_sym_abstract] = ACTIONS(1691), + [anon_sym_interface] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(868)] = { + [ts_builtin_sym_end] = ACTIONS(2790), + [sym_identifier] = ACTIONS(2792), + [anon_sym_export] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_type] = ACTIONS(2792), + [anon_sym_namespace] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_typeof] = ACTIONS(2792), + [anon_sym_import] = ACTIONS(2792), + [anon_sym_with] = ACTIONS(2792), + [anon_sym_var] = ACTIONS(2792), + [anon_sym_let] = ACTIONS(2792), + [anon_sym_const] = ACTIONS(2792), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_else] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_switch] = ACTIONS(2792), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_await] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_do] = ACTIONS(2792), + [anon_sym_try] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_debugger] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_throw] = ACTIONS(2792), + [anon_sym_case] = ACTIONS(2792), + [anon_sym_yield] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2790), + [anon_sym_class] = ACTIONS(2792), + [anon_sym_async] = ACTIONS(2792), + [anon_sym_function] = ACTIONS(2792), + [anon_sym_new] = ACTIONS(2792), + [anon_sym_using] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_SLASH] = ACTIONS(2792), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_void] = ACTIONS(2792), + [anon_sym_delete] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2790), + [sym_number] = ACTIONS(2790), + [sym_private_property_identifier] = ACTIONS(2790), + [sym_this] = ACTIONS(2792), + [sym_super] = ACTIONS(2792), + [sym_true] = ACTIONS(2792), + [sym_false] = ACTIONS(2792), + [sym_null] = ACTIONS(2792), + [sym_undefined] = ACTIONS(2792), + [anon_sym_AT] = ACTIONS(2790), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_readonly] = ACTIONS(2792), + [anon_sym_get] = ACTIONS(2792), + [anon_sym_set] = ACTIONS(2792), + [anon_sym_declare] = ACTIONS(2792), + [anon_sym_public] = ACTIONS(2792), + [anon_sym_private] = ACTIONS(2792), + [anon_sym_protected] = ACTIONS(2792), + [anon_sym_override] = ACTIONS(2792), + [anon_sym_module] = ACTIONS(2792), + [anon_sym_any] = ACTIONS(2792), + [anon_sym_number] = ACTIONS(2792), + [anon_sym_boolean] = ACTIONS(2792), + [anon_sym_string] = ACTIONS(2792), + [anon_sym_symbol] = ACTIONS(2792), + [anon_sym_object] = ACTIONS(2792), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_interface] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(869)] = { + [ts_builtin_sym_end] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2796), + [anon_sym_export] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_type] = ACTIONS(2796), + [anon_sym_namespace] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2794), + [anon_sym_typeof] = ACTIONS(2796), + [anon_sym_import] = ACTIONS(2796), + [anon_sym_with] = ACTIONS(2796), + [anon_sym_var] = ACTIONS(2796), + [anon_sym_let] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_else] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_switch] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_await] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_do] = ACTIONS(2796), + [anon_sym_try] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_debugger] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_throw] = ACTIONS(2796), + [anon_sym_case] = ACTIONS(2796), + [anon_sym_yield] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym_DQUOTE] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2794), + [anon_sym_class] = ACTIONS(2796), + [anon_sym_async] = ACTIONS(2796), + [anon_sym_function] = ACTIONS(2796), + [anon_sym_new] = ACTIONS(2796), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_SLASH] = ACTIONS(2796), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_void] = ACTIONS(2796), + [anon_sym_delete] = ACTIONS(2796), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2794), + [sym_number] = ACTIONS(2794), + [sym_private_property_identifier] = ACTIONS(2794), + [sym_this] = ACTIONS(2796), + [sym_super] = ACTIONS(2796), + [sym_true] = ACTIONS(2796), + [sym_false] = ACTIONS(2796), + [sym_null] = ACTIONS(2796), + [sym_undefined] = ACTIONS(2796), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_readonly] = ACTIONS(2796), + [anon_sym_get] = ACTIONS(2796), + [anon_sym_set] = ACTIONS(2796), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_public] = ACTIONS(2796), + [anon_sym_private] = ACTIONS(2796), + [anon_sym_protected] = ACTIONS(2796), + [anon_sym_override] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2796), + [anon_sym_any] = ACTIONS(2796), + [anon_sym_number] = ACTIONS(2796), + [anon_sym_boolean] = ACTIONS(2796), + [anon_sym_string] = ACTIONS(2796), + [anon_sym_symbol] = ACTIONS(2796), + [anon_sym_object] = ACTIONS(2796), + [anon_sym_abstract] = ACTIONS(2796), + [anon_sym_interface] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(870)] = { + [ts_builtin_sym_end] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2800), + [anon_sym_export] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_type] = ACTIONS(2800), + [anon_sym_namespace] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_typeof] = ACTIONS(2800), + [anon_sym_import] = ACTIONS(2800), + [anon_sym_with] = ACTIONS(2800), + [anon_sym_var] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_await] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_debugger] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_throw] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_yield] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym_DQUOTE] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2798), + [anon_sym_class] = ACTIONS(2800), + [anon_sym_async] = ACTIONS(2800), + [anon_sym_function] = ACTIONS(2800), + [anon_sym_new] = ACTIONS(2800), + [anon_sym_using] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_SLASH] = ACTIONS(2800), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_void] = ACTIONS(2800), + [anon_sym_delete] = ACTIONS(2800), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2798), + [sym_number] = ACTIONS(2798), + [sym_private_property_identifier] = ACTIONS(2798), + [sym_this] = ACTIONS(2800), + [sym_super] = ACTIONS(2800), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [sym_null] = ACTIONS(2800), + [sym_undefined] = ACTIONS(2800), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_readonly] = ACTIONS(2800), + [anon_sym_get] = ACTIONS(2800), + [anon_sym_set] = ACTIONS(2800), + [anon_sym_declare] = ACTIONS(2800), + [anon_sym_public] = ACTIONS(2800), + [anon_sym_private] = ACTIONS(2800), + [anon_sym_protected] = ACTIONS(2800), + [anon_sym_override] = ACTIONS(2800), + [anon_sym_module] = ACTIONS(2800), + [anon_sym_any] = ACTIONS(2800), + [anon_sym_number] = ACTIONS(2800), + [anon_sym_boolean] = ACTIONS(2800), + [anon_sym_string] = ACTIONS(2800), + [anon_sym_symbol] = ACTIONS(2800), + [anon_sym_object] = ACTIONS(2800), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_interface] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(871)] = { + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2804), + [anon_sym_export] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_typeof] = ACTIONS(2804), + [anon_sym_import] = ACTIONS(2804), + [anon_sym_with] = ACTIONS(2804), + [anon_sym_var] = ACTIONS(2804), + [anon_sym_let] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_await] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_debugger] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_yield] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_async] = ACTIONS(2804), + [anon_sym_function] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_SLASH] = ACTIONS(2804), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_void] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2802), + [sym_number] = ACTIONS(2802), + [sym_private_property_identifier] = ACTIONS(2802), + [sym_this] = ACTIONS(2804), + [sym_super] = ACTIONS(2804), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [sym_null] = ACTIONS(2804), + [sym_undefined] = ACTIONS(2804), + [anon_sym_AT] = ACTIONS(2802), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_readonly] = ACTIONS(2804), + [anon_sym_get] = ACTIONS(2804), + [anon_sym_set] = ACTIONS(2804), + [anon_sym_declare] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_protected] = ACTIONS(2804), + [anon_sym_override] = ACTIONS(2804), + [anon_sym_module] = ACTIONS(2804), + [anon_sym_any] = ACTIONS(2804), + [anon_sym_number] = ACTIONS(2804), + [anon_sym_boolean] = ACTIONS(2804), + [anon_sym_string] = ACTIONS(2804), + [anon_sym_symbol] = ACTIONS(2804), + [anon_sym_object] = ACTIONS(2804), + [anon_sym_abstract] = ACTIONS(2804), + [anon_sym_interface] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(872)] = { + [ts_builtin_sym_end] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2808), + [anon_sym_export] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_type] = ACTIONS(2808), + [anon_sym_namespace] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_import] = ACTIONS(2808), + [anon_sym_with] = ACTIONS(2808), + [anon_sym_var] = ACTIONS(2808), + [anon_sym_let] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_else] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_await] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_debugger] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_throw] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_yield] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym_DQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_async] = ACTIONS(2808), + [anon_sym_function] = ACTIONS(2808), + [anon_sym_new] = ACTIONS(2808), + [anon_sym_using] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_SLASH] = ACTIONS(2808), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_void] = ACTIONS(2808), + [anon_sym_delete] = ACTIONS(2808), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2806), + [sym_number] = ACTIONS(2806), + [sym_private_property_identifier] = ACTIONS(2806), + [sym_this] = ACTIONS(2808), + [sym_super] = ACTIONS(2808), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [sym_null] = ACTIONS(2808), + [sym_undefined] = ACTIONS(2808), + [anon_sym_AT] = ACTIONS(2806), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_readonly] = ACTIONS(2808), + [anon_sym_get] = ACTIONS(2808), + [anon_sym_set] = ACTIONS(2808), + [anon_sym_declare] = ACTIONS(2808), + [anon_sym_public] = ACTIONS(2808), + [anon_sym_private] = ACTIONS(2808), + [anon_sym_protected] = ACTIONS(2808), + [anon_sym_override] = ACTIONS(2808), + [anon_sym_module] = ACTIONS(2808), + [anon_sym_any] = ACTIONS(2808), + [anon_sym_number] = ACTIONS(2808), + [anon_sym_boolean] = ACTIONS(2808), + [anon_sym_string] = ACTIONS(2808), + [anon_sym_symbol] = ACTIONS(2808), + [anon_sym_object] = ACTIONS(2808), + [anon_sym_abstract] = ACTIONS(2808), + [anon_sym_interface] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(873)] = { + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2812), + [anon_sym_export] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_namespace] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_import] = ACTIONS(2812), + [anon_sym_with] = ACTIONS(2812), + [anon_sym_var] = ACTIONS(2812), + [anon_sym_let] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_else] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_await] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_debugger] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_throw] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_yield] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_DQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_class] = ACTIONS(2812), + [anon_sym_async] = ACTIONS(2812), + [anon_sym_function] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_using] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_void] = ACTIONS(2812), + [anon_sym_delete] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2810), + [sym_number] = ACTIONS(2810), + [sym_private_property_identifier] = ACTIONS(2810), + [sym_this] = ACTIONS(2812), + [sym_super] = ACTIONS(2812), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [sym_null] = ACTIONS(2812), + [sym_undefined] = ACTIONS(2812), + [anon_sym_AT] = ACTIONS(2810), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_readonly] = ACTIONS(2812), + [anon_sym_get] = ACTIONS(2812), + [anon_sym_set] = ACTIONS(2812), + [anon_sym_declare] = ACTIONS(2812), + [anon_sym_public] = ACTIONS(2812), + [anon_sym_private] = ACTIONS(2812), + [anon_sym_protected] = ACTIONS(2812), + [anon_sym_override] = ACTIONS(2812), + [anon_sym_module] = ACTIONS(2812), + [anon_sym_any] = ACTIONS(2812), + [anon_sym_number] = ACTIONS(2812), + [anon_sym_boolean] = ACTIONS(2812), + [anon_sym_string] = ACTIONS(2812), + [anon_sym_symbol] = ACTIONS(2812), + [anon_sym_object] = ACTIONS(2812), + [anon_sym_abstract] = ACTIONS(2812), + [anon_sym_interface] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(874)] = { + [ts_builtin_sym_end] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2816), + [anon_sym_export] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_type] = ACTIONS(2816), + [anon_sym_namespace] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_typeof] = ACTIONS(2816), + [anon_sym_import] = ACTIONS(2816), + [anon_sym_with] = ACTIONS(2816), + [anon_sym_var] = ACTIONS(2816), + [anon_sym_let] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_await] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_debugger] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_yield] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_async] = ACTIONS(2816), + [anon_sym_function] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_using] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_SLASH] = ACTIONS(2816), + [anon_sym_LT] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_void] = ACTIONS(2816), + [anon_sym_delete] = ACTIONS(2816), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2814), + [sym_number] = ACTIONS(2814), + [sym_private_property_identifier] = ACTIONS(2814), + [sym_this] = ACTIONS(2816), + [sym_super] = ACTIONS(2816), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [sym_null] = ACTIONS(2816), + [sym_undefined] = ACTIONS(2816), + [anon_sym_AT] = ACTIONS(2814), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_readonly] = ACTIONS(2816), + [anon_sym_get] = ACTIONS(2816), + [anon_sym_set] = ACTIONS(2816), + [anon_sym_declare] = ACTIONS(2816), + [anon_sym_public] = ACTIONS(2816), + [anon_sym_private] = ACTIONS(2816), + [anon_sym_protected] = ACTIONS(2816), + [anon_sym_override] = ACTIONS(2816), + [anon_sym_module] = ACTIONS(2816), + [anon_sym_any] = ACTIONS(2816), + [anon_sym_number] = ACTIONS(2816), + [anon_sym_boolean] = ACTIONS(2816), + [anon_sym_string] = ACTIONS(2816), + [anon_sym_symbol] = ACTIONS(2816), + [anon_sym_object] = ACTIONS(2816), + [anon_sym_abstract] = ACTIONS(2816), + [anon_sym_interface] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(875)] = { + [ts_builtin_sym_end] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2820), + [anon_sym_export] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_type] = ACTIONS(2820), + [anon_sym_namespace] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_import] = ACTIONS(2820), + [anon_sym_with] = ACTIONS(2820), + [anon_sym_var] = ACTIONS(2820), + [anon_sym_let] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_await] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_debugger] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_yield] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_async] = ACTIONS(2820), + [anon_sym_function] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_using] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_void] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2818), + [sym_number] = ACTIONS(2818), + [sym_private_property_identifier] = ACTIONS(2818), + [sym_this] = ACTIONS(2820), + [sym_super] = ACTIONS(2820), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [sym_null] = ACTIONS(2820), + [sym_undefined] = ACTIONS(2820), + [anon_sym_AT] = ACTIONS(2818), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_readonly] = ACTIONS(2820), + [anon_sym_get] = ACTIONS(2820), + [anon_sym_set] = ACTIONS(2820), + [anon_sym_declare] = ACTIONS(2820), + [anon_sym_public] = ACTIONS(2820), + [anon_sym_private] = ACTIONS(2820), + [anon_sym_protected] = ACTIONS(2820), + [anon_sym_override] = ACTIONS(2820), + [anon_sym_module] = ACTIONS(2820), + [anon_sym_any] = ACTIONS(2820), + [anon_sym_number] = ACTIONS(2820), + [anon_sym_boolean] = ACTIONS(2820), + [anon_sym_string] = ACTIONS(2820), + [anon_sym_symbol] = ACTIONS(2820), + [anon_sym_object] = ACTIONS(2820), + [anon_sym_abstract] = ACTIONS(2820), + [anon_sym_interface] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(876)] = { + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2824), + [anon_sym_export] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_type] = ACTIONS(2824), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_typeof] = ACTIONS(2824), + [anon_sym_import] = ACTIONS(2824), + [anon_sym_with] = ACTIONS(2824), + [anon_sym_var] = ACTIONS(2824), + [anon_sym_let] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_await] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_debugger] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_yield] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_async] = ACTIONS(2824), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_SLASH] = ACTIONS(2824), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_void] = ACTIONS(2824), + [anon_sym_delete] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2822), + [sym_number] = ACTIONS(2822), + [sym_private_property_identifier] = ACTIONS(2822), + [sym_this] = ACTIONS(2824), + [sym_super] = ACTIONS(2824), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [sym_null] = ACTIONS(2824), + [sym_undefined] = ACTIONS(2824), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_readonly] = ACTIONS(2824), + [anon_sym_get] = ACTIONS(2824), + [anon_sym_set] = ACTIONS(2824), + [anon_sym_declare] = ACTIONS(2824), + [anon_sym_public] = ACTIONS(2824), + [anon_sym_private] = ACTIONS(2824), + [anon_sym_protected] = ACTIONS(2824), + [anon_sym_override] = ACTIONS(2824), + [anon_sym_module] = ACTIONS(2824), + [anon_sym_any] = ACTIONS(2824), + [anon_sym_number] = ACTIONS(2824), + [anon_sym_boolean] = ACTIONS(2824), + [anon_sym_string] = ACTIONS(2824), + [anon_sym_symbol] = ACTIONS(2824), + [anon_sym_object] = ACTIONS(2824), + [anon_sym_abstract] = ACTIONS(2824), + [anon_sym_interface] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(877)] = { + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_namespace] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_typeof] = ACTIONS(1773), + [anon_sym_import] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + [anon_sym_var] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_debugger] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_throw] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_class] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1773), + [anon_sym_function] = ACTIONS(1773), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_using] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_SLASH] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_void] = ACTIONS(1773), + [anon_sym_delete] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1771), + [sym_number] = ACTIONS(1771), + [sym_private_property_identifier] = ACTIONS(1771), + [sym_this] = ACTIONS(1773), + [sym_super] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_null] = ACTIONS(1773), + [sym_undefined] = ACTIONS(1773), + [anon_sym_AT] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_readonly] = ACTIONS(1773), + [anon_sym_get] = ACTIONS(1773), + [anon_sym_set] = ACTIONS(1773), + [anon_sym_declare] = ACTIONS(1773), + [anon_sym_public] = ACTIONS(1773), + [anon_sym_private] = ACTIONS(1773), + [anon_sym_protected] = ACTIONS(1773), + [anon_sym_override] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_any] = ACTIONS(1773), + [anon_sym_number] = ACTIONS(1773), + [anon_sym_boolean] = ACTIONS(1773), + [anon_sym_string] = ACTIONS(1773), + [anon_sym_symbol] = ACTIONS(1773), + [anon_sym_object] = ACTIONS(1773), + [anon_sym_abstract] = ACTIONS(1773), + [anon_sym_interface] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(878)] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(879)] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(880)] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(881)] = { + [ts_builtin_sym_end] = ACTIONS(2830), + [sym_identifier] = ACTIONS(2832), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2832), + [anon_sym_namespace] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_typeof] = ACTIONS(2832), + [anon_sym_import] = ACTIONS(2832), + [anon_sym_with] = ACTIONS(2832), + [anon_sym_var] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_else] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_await] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_debugger] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_throw] = ACTIONS(2832), + [anon_sym_case] = ACTIONS(2832), + [anon_sym_yield] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_DQUOTE] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_class] = ACTIONS(2832), + [anon_sym_async] = ACTIONS(2832), + [anon_sym_function] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(2832), + [anon_sym_using] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_void] = ACTIONS(2832), + [anon_sym_delete] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2830), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [sym_this] = ACTIONS(2832), + [sym_super] = ACTIONS(2832), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [sym_null] = ACTIONS(2832), + [sym_undefined] = ACTIONS(2832), + [anon_sym_AT] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_get] = ACTIONS(2832), + [anon_sym_set] = ACTIONS(2832), + [anon_sym_declare] = ACTIONS(2832), + [anon_sym_public] = ACTIONS(2832), + [anon_sym_private] = ACTIONS(2832), + [anon_sym_protected] = ACTIONS(2832), + [anon_sym_override] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_any] = ACTIONS(2832), + [anon_sym_number] = ACTIONS(2832), + [anon_sym_boolean] = ACTIONS(2832), + [anon_sym_string] = ACTIONS(2832), + [anon_sym_symbol] = ACTIONS(2832), + [anon_sym_object] = ACTIONS(2832), + [anon_sym_abstract] = ACTIONS(2832), + [anon_sym_interface] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(882)] = { + [ts_builtin_sym_end] = ACTIONS(2834), + [sym_identifier] = ACTIONS(2836), + [anon_sym_export] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_type] = ACTIONS(2836), + [anon_sym_namespace] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_RBRACE] = ACTIONS(2834), + [anon_sym_typeof] = ACTIONS(2836), + [anon_sym_import] = ACTIONS(2836), + [anon_sym_with] = ACTIONS(2836), + [anon_sym_var] = ACTIONS(2836), + [anon_sym_let] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_else] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_await] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_debugger] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_throw] = ACTIONS(2836), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_yield] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2836), + [anon_sym_async] = ACTIONS(2836), + [anon_sym_function] = ACTIONS(2836), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_using] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_SLASH] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_void] = ACTIONS(2836), + [anon_sym_delete] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2834), + [sym_number] = ACTIONS(2834), + [sym_private_property_identifier] = ACTIONS(2834), + [sym_this] = ACTIONS(2836), + [sym_super] = ACTIONS(2836), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [sym_null] = ACTIONS(2836), + [sym_undefined] = ACTIONS(2836), + [anon_sym_AT] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_readonly] = ACTIONS(2836), + [anon_sym_get] = ACTIONS(2836), + [anon_sym_set] = ACTIONS(2836), + [anon_sym_declare] = ACTIONS(2836), + [anon_sym_public] = ACTIONS(2836), + [anon_sym_private] = ACTIONS(2836), + [anon_sym_protected] = ACTIONS(2836), + [anon_sym_override] = ACTIONS(2836), + [anon_sym_module] = ACTIONS(2836), + [anon_sym_any] = ACTIONS(2836), + [anon_sym_number] = ACTIONS(2836), + [anon_sym_boolean] = ACTIONS(2836), + [anon_sym_string] = ACTIONS(2836), + [anon_sym_symbol] = ACTIONS(2836), + [anon_sym_object] = ACTIONS(2836), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_interface] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(883)] = { + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2840), + [anon_sym_export] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_type] = ACTIONS(2840), + [anon_sym_namespace] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2838), + [anon_sym_typeof] = ACTIONS(2840), + [anon_sym_import] = ACTIONS(2840), + [anon_sym_with] = ACTIONS(2840), + [anon_sym_var] = ACTIONS(2840), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_else] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym_await] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_debugger] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_yield] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2840), + [anon_sym_async] = ACTIONS(2840), + [anon_sym_function] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_using] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_SLASH] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_void] = ACTIONS(2840), + [anon_sym_delete] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2838), + [sym_number] = ACTIONS(2838), + [sym_private_property_identifier] = ACTIONS(2838), + [sym_this] = ACTIONS(2840), + [sym_super] = ACTIONS(2840), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [sym_null] = ACTIONS(2840), + [sym_undefined] = ACTIONS(2840), + [anon_sym_AT] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_readonly] = ACTIONS(2840), + [anon_sym_get] = ACTIONS(2840), + [anon_sym_set] = ACTIONS(2840), + [anon_sym_declare] = ACTIONS(2840), + [anon_sym_public] = ACTIONS(2840), + [anon_sym_private] = ACTIONS(2840), + [anon_sym_protected] = ACTIONS(2840), + [anon_sym_override] = ACTIONS(2840), + [anon_sym_module] = ACTIONS(2840), + [anon_sym_any] = ACTIONS(2840), + [anon_sym_number] = ACTIONS(2840), + [anon_sym_boolean] = ACTIONS(2840), + [anon_sym_string] = ACTIONS(2840), + [anon_sym_symbol] = ACTIONS(2840), + [anon_sym_object] = ACTIONS(2840), + [anon_sym_abstract] = ACTIONS(2840), + [anon_sym_interface] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(884)] = { + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2844), + [anon_sym_export] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_type] = ACTIONS(2844), + [anon_sym_namespace] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_typeof] = ACTIONS(2844), + [anon_sym_import] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [anon_sym_var] = ACTIONS(2844), + [anon_sym_let] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym_await] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_debugger] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_yield] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym_DQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_async] = ACTIONS(2844), + [anon_sym_function] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_SLASH] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_void] = ACTIONS(2844), + [anon_sym_delete] = ACTIONS(2844), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2842), + [sym_number] = ACTIONS(2842), + [sym_private_property_identifier] = ACTIONS(2842), + [sym_this] = ACTIONS(2844), + [sym_super] = ACTIONS(2844), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [sym_null] = ACTIONS(2844), + [sym_undefined] = ACTIONS(2844), + [anon_sym_AT] = ACTIONS(2842), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_readonly] = ACTIONS(2844), + [anon_sym_get] = ACTIONS(2844), + [anon_sym_set] = ACTIONS(2844), + [anon_sym_declare] = ACTIONS(2844), + [anon_sym_public] = ACTIONS(2844), + [anon_sym_private] = ACTIONS(2844), + [anon_sym_protected] = ACTIONS(2844), + [anon_sym_override] = ACTIONS(2844), + [anon_sym_module] = ACTIONS(2844), + [anon_sym_any] = ACTIONS(2844), + [anon_sym_number] = ACTIONS(2844), + [anon_sym_boolean] = ACTIONS(2844), + [anon_sym_string] = ACTIONS(2844), + [anon_sym_symbol] = ACTIONS(2844), + [anon_sym_object] = ACTIONS(2844), + [anon_sym_abstract] = ACTIONS(2844), + [anon_sym_interface] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(885)] = { + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_namespace] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_typeof] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_with] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_await] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_debugger] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_void] = ACTIONS(1787), + [anon_sym_delete] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1785), + [sym_number] = ACTIONS(1785), + [sym_private_property_identifier] = ACTIONS(1785), + [sym_this] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_null] = ACTIONS(1787), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_readonly] = ACTIONS(1787), + [anon_sym_get] = ACTIONS(1787), + [anon_sym_set] = ACTIONS(1787), + [anon_sym_declare] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_protected] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_module] = ACTIONS(1787), + [anon_sym_any] = ACTIONS(1787), + [anon_sym_number] = ACTIONS(1787), + [anon_sym_boolean] = ACTIONS(1787), + [anon_sym_string] = ACTIONS(1787), + [anon_sym_symbol] = ACTIONS(1787), + [anon_sym_object] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(886)] = { + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_namespace] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_typeof] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_var] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_debugger] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_case] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(1795), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_void] = ACTIONS(1795), + [anon_sym_delete] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_number] = ACTIONS(1793), + [sym_private_property_identifier] = ACTIONS(1793), + [sym_this] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_null] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_readonly] = ACTIONS(1795), + [anon_sym_get] = ACTIONS(1795), + [anon_sym_set] = ACTIONS(1795), + [anon_sym_declare] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_private] = ACTIONS(1795), + [anon_sym_protected] = ACTIONS(1795), + [anon_sym_override] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_any] = ACTIONS(1795), + [anon_sym_number] = ACTIONS(1795), + [anon_sym_boolean] = ACTIONS(1795), + [anon_sym_string] = ACTIONS(1795), + [anon_sym_symbol] = ACTIONS(1795), + [anon_sym_object] = ACTIONS(1795), + [anon_sym_abstract] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(887)] = { + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_namespace] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_typeof] = ACTIONS(1773), + [anon_sym_import] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + [anon_sym_var] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_debugger] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_throw] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_class] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1773), + [anon_sym_function] = ACTIONS(1773), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_using] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_SLASH] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_void] = ACTIONS(1773), + [anon_sym_delete] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1771), + [sym_number] = ACTIONS(1771), + [sym_private_property_identifier] = ACTIONS(1771), + [sym_this] = ACTIONS(1773), + [sym_super] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_null] = ACTIONS(1773), + [sym_undefined] = ACTIONS(1773), + [anon_sym_AT] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_readonly] = ACTIONS(1773), + [anon_sym_get] = ACTIONS(1773), + [anon_sym_set] = ACTIONS(1773), + [anon_sym_declare] = ACTIONS(1773), + [anon_sym_public] = ACTIONS(1773), + [anon_sym_private] = ACTIONS(1773), + [anon_sym_protected] = ACTIONS(1773), + [anon_sym_override] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_any] = ACTIONS(1773), + [anon_sym_number] = ACTIONS(1773), + [anon_sym_boolean] = ACTIONS(1773), + [anon_sym_string] = ACTIONS(1773), + [anon_sym_symbol] = ACTIONS(1773), + [anon_sym_object] = ACTIONS(1773), + [anon_sym_abstract] = ACTIONS(1773), + [anon_sym_interface] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(888)] = { + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2848), + [anon_sym_export] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_type] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_typeof] = ACTIONS(2848), + [anon_sym_import] = ACTIONS(2848), + [anon_sym_with] = ACTIONS(2848), + [anon_sym_var] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_await] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_debugger] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_SLASH] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_void] = ACTIONS(2848), + [anon_sym_delete] = ACTIONS(2848), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2846), + [sym_number] = ACTIONS(2846), + [sym_private_property_identifier] = ACTIONS(2846), + [sym_this] = ACTIONS(2848), + [sym_super] = ACTIONS(2848), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [sym_null] = ACTIONS(2848), + [sym_undefined] = ACTIONS(2848), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_readonly] = ACTIONS(2848), + [anon_sym_get] = ACTIONS(2848), + [anon_sym_set] = ACTIONS(2848), + [anon_sym_declare] = ACTIONS(2848), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_protected] = ACTIONS(2848), + [anon_sym_override] = ACTIONS(2848), + [anon_sym_module] = ACTIONS(2848), + [anon_sym_any] = ACTIONS(2848), + [anon_sym_number] = ACTIONS(2848), + [anon_sym_boolean] = ACTIONS(2848), + [anon_sym_string] = ACTIONS(2848), + [anon_sym_symbol] = ACTIONS(2848), + [anon_sym_object] = ACTIONS(2848), + [anon_sym_abstract] = ACTIONS(2848), + [anon_sym_interface] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(889)] = { + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2852), + [anon_sym_export] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_type] = ACTIONS(2852), + [anon_sym_namespace] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_typeof] = ACTIONS(2852), + [anon_sym_import] = ACTIONS(2852), + [anon_sym_with] = ACTIONS(2852), + [anon_sym_var] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_await] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_debugger] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_async] = ACTIONS(2852), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_SLASH] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_void] = ACTIONS(2852), + [anon_sym_delete] = ACTIONS(2852), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2850), + [sym_number] = ACTIONS(2850), + [sym_private_property_identifier] = ACTIONS(2850), + [sym_this] = ACTIONS(2852), + [sym_super] = ACTIONS(2852), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [sym_null] = ACTIONS(2852), + [sym_undefined] = ACTIONS(2852), + [anon_sym_AT] = ACTIONS(2850), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_readonly] = ACTIONS(2852), + [anon_sym_get] = ACTIONS(2852), + [anon_sym_set] = ACTIONS(2852), + [anon_sym_declare] = ACTIONS(2852), + [anon_sym_public] = ACTIONS(2852), + [anon_sym_private] = ACTIONS(2852), + [anon_sym_protected] = ACTIONS(2852), + [anon_sym_override] = ACTIONS(2852), + [anon_sym_module] = ACTIONS(2852), + [anon_sym_any] = ACTIONS(2852), + [anon_sym_number] = ACTIONS(2852), + [anon_sym_boolean] = ACTIONS(2852), + [anon_sym_string] = ACTIONS(2852), + [anon_sym_symbol] = ACTIONS(2852), + [anon_sym_object] = ACTIONS(2852), + [anon_sym_abstract] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(890)] = { + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2856), + [anon_sym_export] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_type] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_typeof] = ACTIONS(2856), + [anon_sym_import] = ACTIONS(2856), + [anon_sym_with] = ACTIONS(2856), + [anon_sym_var] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_await] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_debugger] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_async] = ACTIONS(2856), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_SLASH] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_void] = ACTIONS(2856), + [anon_sym_delete] = ACTIONS(2856), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2854), + [sym_number] = ACTIONS(2854), + [sym_private_property_identifier] = ACTIONS(2854), + [sym_this] = ACTIONS(2856), + [sym_super] = ACTIONS(2856), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [sym_null] = ACTIONS(2856), + [sym_undefined] = ACTIONS(2856), + [anon_sym_AT] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_readonly] = ACTIONS(2856), + [anon_sym_get] = ACTIONS(2856), + [anon_sym_set] = ACTIONS(2856), + [anon_sym_declare] = ACTIONS(2856), + [anon_sym_public] = ACTIONS(2856), + [anon_sym_private] = ACTIONS(2856), + [anon_sym_protected] = ACTIONS(2856), + [anon_sym_override] = ACTIONS(2856), + [anon_sym_module] = ACTIONS(2856), + [anon_sym_any] = ACTIONS(2856), + [anon_sym_number] = ACTIONS(2856), + [anon_sym_boolean] = ACTIONS(2856), + [anon_sym_string] = ACTIONS(2856), + [anon_sym_symbol] = ACTIONS(2856), + [anon_sym_object] = ACTIONS(2856), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_interface] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(891)] = { + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2856), + [anon_sym_export] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_type] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_typeof] = ACTIONS(2856), + [anon_sym_import] = ACTIONS(2856), + [anon_sym_with] = ACTIONS(2856), + [anon_sym_var] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_await] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_debugger] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_async] = ACTIONS(2856), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_SLASH] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_void] = ACTIONS(2856), + [anon_sym_delete] = ACTIONS(2856), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2854), + [sym_number] = ACTIONS(2854), + [sym_private_property_identifier] = ACTIONS(2854), + [sym_this] = ACTIONS(2856), + [sym_super] = ACTIONS(2856), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [sym_null] = ACTIONS(2856), + [sym_undefined] = ACTIONS(2856), + [anon_sym_AT] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_readonly] = ACTIONS(2856), + [anon_sym_get] = ACTIONS(2856), + [anon_sym_set] = ACTIONS(2856), + [anon_sym_declare] = ACTIONS(2856), + [anon_sym_public] = ACTIONS(2856), + [anon_sym_private] = ACTIONS(2856), + [anon_sym_protected] = ACTIONS(2856), + [anon_sym_override] = ACTIONS(2856), + [anon_sym_module] = ACTIONS(2856), + [anon_sym_any] = ACTIONS(2856), + [anon_sym_number] = ACTIONS(2856), + [anon_sym_boolean] = ACTIONS(2856), + [anon_sym_string] = ACTIONS(2856), + [anon_sym_symbol] = ACTIONS(2856), + [anon_sym_object] = ACTIONS(2856), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_interface] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(892)] = { + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2860), + [anon_sym_export] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_type] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_typeof] = ACTIONS(2860), + [anon_sym_import] = ACTIONS(2860), + [anon_sym_with] = ACTIONS(2860), + [anon_sym_var] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_await] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_debugger] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_async] = ACTIONS(2860), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_SLASH] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_void] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2858), + [sym_number] = ACTIONS(2858), + [sym_private_property_identifier] = ACTIONS(2858), + [sym_this] = ACTIONS(2860), + [sym_super] = ACTIONS(2860), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [sym_null] = ACTIONS(2860), + [sym_undefined] = ACTIONS(2860), + [anon_sym_AT] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_readonly] = ACTIONS(2860), + [anon_sym_get] = ACTIONS(2860), + [anon_sym_set] = ACTIONS(2860), + [anon_sym_declare] = ACTIONS(2860), + [anon_sym_public] = ACTIONS(2860), + [anon_sym_private] = ACTIONS(2860), + [anon_sym_protected] = ACTIONS(2860), + [anon_sym_override] = ACTIONS(2860), + [anon_sym_module] = ACTIONS(2860), + [anon_sym_any] = ACTIONS(2860), + [anon_sym_number] = ACTIONS(2860), + [anon_sym_boolean] = ACTIONS(2860), + [anon_sym_string] = ACTIONS(2860), + [anon_sym_symbol] = ACTIONS(2860), + [anon_sym_object] = ACTIONS(2860), + [anon_sym_abstract] = ACTIONS(2860), + [anon_sym_interface] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(893)] = { + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2864), + [anon_sym_export] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_type] = ACTIONS(2864), + [anon_sym_namespace] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_typeof] = ACTIONS(2864), + [anon_sym_import] = ACTIONS(2864), + [anon_sym_with] = ACTIONS(2864), + [anon_sym_var] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_await] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_debugger] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_async] = ACTIONS(2864), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_using] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_SLASH] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_void] = ACTIONS(2864), + [anon_sym_delete] = ACTIONS(2864), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2862), + [sym_number] = ACTIONS(2862), + [sym_private_property_identifier] = ACTIONS(2862), + [sym_this] = ACTIONS(2864), + [sym_super] = ACTIONS(2864), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [sym_null] = ACTIONS(2864), + [sym_undefined] = ACTIONS(2864), + [anon_sym_AT] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_readonly] = ACTIONS(2864), + [anon_sym_get] = ACTIONS(2864), + [anon_sym_set] = ACTIONS(2864), + [anon_sym_declare] = ACTIONS(2864), + [anon_sym_public] = ACTIONS(2864), + [anon_sym_private] = ACTIONS(2864), + [anon_sym_protected] = ACTIONS(2864), + [anon_sym_override] = ACTIONS(2864), + [anon_sym_module] = ACTIONS(2864), + [anon_sym_any] = ACTIONS(2864), + [anon_sym_number] = ACTIONS(2864), + [anon_sym_boolean] = ACTIONS(2864), + [anon_sym_string] = ACTIONS(2864), + [anon_sym_symbol] = ACTIONS(2864), + [anon_sym_object] = ACTIONS(2864), + [anon_sym_abstract] = ACTIONS(2864), + [anon_sym_interface] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(894)] = { + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2868), + [anon_sym_export] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_import] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_var] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_await] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_debugger] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_async] = ACTIONS(2868), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_void] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2866), + [sym_number] = ACTIONS(2866), + [sym_private_property_identifier] = ACTIONS(2866), + [sym_this] = ACTIONS(2868), + [sym_super] = ACTIONS(2868), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [sym_null] = ACTIONS(2868), + [sym_undefined] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_readonly] = ACTIONS(2868), + [anon_sym_get] = ACTIONS(2868), + [anon_sym_set] = ACTIONS(2868), + [anon_sym_declare] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_protected] = ACTIONS(2868), + [anon_sym_override] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2868), + [anon_sym_any] = ACTIONS(2868), + [anon_sym_number] = ACTIONS(2868), + [anon_sym_boolean] = ACTIONS(2868), + [anon_sym_string] = ACTIONS(2868), + [anon_sym_symbol] = ACTIONS(2868), + [anon_sym_object] = ACTIONS(2868), + [anon_sym_abstract] = ACTIONS(2868), + [anon_sym_interface] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(895)] = { + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2868), + [anon_sym_export] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_import] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_var] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_await] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_debugger] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_async] = ACTIONS(2868), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_void] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2866), + [sym_number] = ACTIONS(2866), + [sym_private_property_identifier] = ACTIONS(2866), + [sym_this] = ACTIONS(2868), + [sym_super] = ACTIONS(2868), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [sym_null] = ACTIONS(2868), + [sym_undefined] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_readonly] = ACTIONS(2868), + [anon_sym_get] = ACTIONS(2868), + [anon_sym_set] = ACTIONS(2868), + [anon_sym_declare] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_protected] = ACTIONS(2868), + [anon_sym_override] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2868), + [anon_sym_any] = ACTIONS(2868), + [anon_sym_number] = ACTIONS(2868), + [anon_sym_boolean] = ACTIONS(2868), + [anon_sym_string] = ACTIONS(2868), + [anon_sym_symbol] = ACTIONS(2868), + [anon_sym_object] = ACTIONS(2868), + [anon_sym_abstract] = ACTIONS(2868), + [anon_sym_interface] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(896)] = { + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2872), + [anon_sym_export] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_type] = ACTIONS(2872), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_typeof] = ACTIONS(2872), + [anon_sym_import] = ACTIONS(2872), + [anon_sym_with] = ACTIONS(2872), + [anon_sym_var] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_await] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_debugger] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_async] = ACTIONS(2872), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_using] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_SLASH] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_delete] = ACTIONS(2872), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2870), + [sym_number] = ACTIONS(2870), + [sym_private_property_identifier] = ACTIONS(2870), + [sym_this] = ACTIONS(2872), + [sym_super] = ACTIONS(2872), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [sym_null] = ACTIONS(2872), + [sym_undefined] = ACTIONS(2872), + [anon_sym_AT] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_readonly] = ACTIONS(2872), + [anon_sym_get] = ACTIONS(2872), + [anon_sym_set] = ACTIONS(2872), + [anon_sym_declare] = ACTIONS(2872), + [anon_sym_public] = ACTIONS(2872), + [anon_sym_private] = ACTIONS(2872), + [anon_sym_protected] = ACTIONS(2872), + [anon_sym_override] = ACTIONS(2872), + [anon_sym_module] = ACTIONS(2872), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2872), + [anon_sym_interface] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(897)] = { + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2876), + [anon_sym_export] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_type] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_typeof] = ACTIONS(2876), + [anon_sym_import] = ACTIONS(2876), + [anon_sym_with] = ACTIONS(2876), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_await] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_debugger] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_async] = ACTIONS(2876), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_SLASH] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_void] = ACTIONS(2876), + [anon_sym_delete] = ACTIONS(2876), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2874), + [sym_private_property_identifier] = ACTIONS(2874), + [sym_this] = ACTIONS(2876), + [sym_super] = ACTIONS(2876), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [sym_null] = ACTIONS(2876), + [sym_undefined] = ACTIONS(2876), + [anon_sym_AT] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_readonly] = ACTIONS(2876), + [anon_sym_get] = ACTIONS(2876), + [anon_sym_set] = ACTIONS(2876), + [anon_sym_declare] = ACTIONS(2876), + [anon_sym_public] = ACTIONS(2876), + [anon_sym_private] = ACTIONS(2876), + [anon_sym_protected] = ACTIONS(2876), + [anon_sym_override] = ACTIONS(2876), + [anon_sym_module] = ACTIONS(2876), + [anon_sym_any] = ACTIONS(2876), + [anon_sym_number] = ACTIONS(2876), + [anon_sym_boolean] = ACTIONS(2876), + [anon_sym_string] = ACTIONS(2876), + [anon_sym_symbol] = ACTIONS(2876), + [anon_sym_object] = ACTIONS(2876), + [anon_sym_abstract] = ACTIONS(2876), + [anon_sym_interface] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(898)] = { + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2880), + [anon_sym_export] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_typeof] = ACTIONS(2880), + [anon_sym_import] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_var] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_await] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_debugger] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_async] = ACTIONS(2880), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_void] = ACTIONS(2880), + [anon_sym_delete] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2878), + [sym_number] = ACTIONS(2878), + [sym_private_property_identifier] = ACTIONS(2878), + [sym_this] = ACTIONS(2880), + [sym_super] = ACTIONS(2880), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_AT] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2880), + [anon_sym_get] = ACTIONS(2880), + [anon_sym_set] = ACTIONS(2880), + [anon_sym_declare] = ACTIONS(2880), + [anon_sym_public] = ACTIONS(2880), + [anon_sym_private] = ACTIONS(2880), + [anon_sym_protected] = ACTIONS(2880), + [anon_sym_override] = ACTIONS(2880), + [anon_sym_module] = ACTIONS(2880), + [anon_sym_any] = ACTIONS(2880), + [anon_sym_number] = ACTIONS(2880), + [anon_sym_boolean] = ACTIONS(2880), + [anon_sym_string] = ACTIONS(2880), + [anon_sym_symbol] = ACTIONS(2880), + [anon_sym_object] = ACTIONS(2880), + [anon_sym_abstract] = ACTIONS(2880), + [anon_sym_interface] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(899)] = { + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_export] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_typeof] = ACTIONS(2884), + [anon_sym_import] = ACTIONS(2884), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_var] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_await] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_debugger] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2884), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_void] = ACTIONS(2884), + [anon_sym_delete] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2882), + [sym_number] = ACTIONS(2882), + [sym_private_property_identifier] = ACTIONS(2882), + [sym_this] = ACTIONS(2884), + [sym_super] = ACTIONS(2884), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [sym_null] = ACTIONS(2884), + [sym_undefined] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_readonly] = ACTIONS(2884), + [anon_sym_get] = ACTIONS(2884), + [anon_sym_set] = ACTIONS(2884), + [anon_sym_declare] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_protected] = ACTIONS(2884), + [anon_sym_override] = ACTIONS(2884), + [anon_sym_module] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2884), + [anon_sym_number] = ACTIONS(2884), + [anon_sym_boolean] = ACTIONS(2884), + [anon_sym_string] = ACTIONS(2884), + [anon_sym_symbol] = ACTIONS(2884), + [anon_sym_object] = ACTIONS(2884), + [anon_sym_abstract] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(900)] = { + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_export] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_typeof] = ACTIONS(2884), + [anon_sym_import] = ACTIONS(2884), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_var] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_await] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_debugger] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2884), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_void] = ACTIONS(2884), + [anon_sym_delete] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2882), + [sym_number] = ACTIONS(2882), + [sym_private_property_identifier] = ACTIONS(2882), + [sym_this] = ACTIONS(2884), + [sym_super] = ACTIONS(2884), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [sym_null] = ACTIONS(2884), + [sym_undefined] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_readonly] = ACTIONS(2884), + [anon_sym_get] = ACTIONS(2884), + [anon_sym_set] = ACTIONS(2884), + [anon_sym_declare] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_protected] = ACTIONS(2884), + [anon_sym_override] = ACTIONS(2884), + [anon_sym_module] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2884), + [anon_sym_number] = ACTIONS(2884), + [anon_sym_boolean] = ACTIONS(2884), + [anon_sym_string] = ACTIONS(2884), + [anon_sym_symbol] = ACTIONS(2884), + [anon_sym_object] = ACTIONS(2884), + [anon_sym_abstract] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(901)] = { + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2888), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_default] = ACTIONS(2888), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_typeof] = ACTIONS(2888), + [anon_sym_import] = ACTIONS(2888), + [anon_sym_with] = ACTIONS(2888), + [anon_sym_var] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_const] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_else] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_switch] = ACTIONS(2888), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_await] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_break] = ACTIONS(2888), + [anon_sym_continue] = ACTIONS(2888), + [anon_sym_debugger] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_throw] = ACTIONS(2888), + [anon_sym_case] = ACTIONS(2888), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_class] = ACTIONS(2888), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_using] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_SLASH] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_void] = ACTIONS(2888), + [anon_sym_delete] = ACTIONS(2888), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2886), + [sym_number] = ACTIONS(2886), + [sym_private_property_identifier] = ACTIONS(2886), + [sym_this] = ACTIONS(2888), + [sym_super] = ACTIONS(2888), + [sym_true] = ACTIONS(2888), + [sym_false] = ACTIONS(2888), + [sym_null] = ACTIONS(2888), + [sym_undefined] = ACTIONS(2888), + [anon_sym_AT] = ACTIONS(2886), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_readonly] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2888), + [anon_sym_set] = ACTIONS(2888), + [anon_sym_declare] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_protected] = ACTIONS(2888), + [anon_sym_override] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_any] = ACTIONS(2888), + [anon_sym_number] = ACTIONS(2888), + [anon_sym_boolean] = ACTIONS(2888), + [anon_sym_string] = ACTIONS(2888), + [anon_sym_symbol] = ACTIONS(2888), + [anon_sym_object] = ACTIONS(2888), + [anon_sym_abstract] = ACTIONS(2888), + [anon_sym_interface] = ACTIONS(2888), + [anon_sym_enum] = ACTIONS(2888), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(902)] = { + [ts_builtin_sym_end] = ACTIONS(2890), + [sym_identifier] = ACTIONS(2892), + [anon_sym_export] = ACTIONS(2892), + [anon_sym_default] = ACTIONS(2892), + [anon_sym_type] = ACTIONS(2892), + [anon_sym_namespace] = ACTIONS(2892), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_typeof] = ACTIONS(2892), + [anon_sym_import] = ACTIONS(2892), + [anon_sym_with] = ACTIONS(2892), + [anon_sym_var] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_const] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_else] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_switch] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_await] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_break] = ACTIONS(2892), + [anon_sym_continue] = ACTIONS(2892), + [anon_sym_debugger] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_throw] = ACTIONS(2892), + [anon_sym_case] = ACTIONS(2892), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2890), + [anon_sym_DQUOTE] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_class] = ACTIONS(2892), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_using] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_void] = ACTIONS(2892), + [anon_sym_delete] = ACTIONS(2892), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2890), + [sym_number] = ACTIONS(2890), + [sym_private_property_identifier] = ACTIONS(2890), + [sym_this] = ACTIONS(2892), + [sym_super] = ACTIONS(2892), + [sym_true] = ACTIONS(2892), + [sym_false] = ACTIONS(2892), + [sym_null] = ACTIONS(2892), + [sym_undefined] = ACTIONS(2892), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_static] = ACTIONS(2892), + [anon_sym_readonly] = ACTIONS(2892), + [anon_sym_get] = ACTIONS(2892), + [anon_sym_set] = ACTIONS(2892), + [anon_sym_declare] = ACTIONS(2892), + [anon_sym_public] = ACTIONS(2892), + [anon_sym_private] = ACTIONS(2892), + [anon_sym_protected] = ACTIONS(2892), + [anon_sym_override] = ACTIONS(2892), + [anon_sym_module] = ACTIONS(2892), + [anon_sym_any] = ACTIONS(2892), + [anon_sym_number] = ACTIONS(2892), + [anon_sym_boolean] = ACTIONS(2892), + [anon_sym_string] = ACTIONS(2892), + [anon_sym_symbol] = ACTIONS(2892), + [anon_sym_object] = ACTIONS(2892), + [anon_sym_abstract] = ACTIONS(2892), + [anon_sym_interface] = ACTIONS(2892), + [anon_sym_enum] = ACTIONS(2892), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(903)] = { + [ts_builtin_sym_end] = ACTIONS(2894), + [sym_identifier] = ACTIONS(2896), + [anon_sym_export] = ACTIONS(2896), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_type] = ACTIONS(2896), + [anon_sym_namespace] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_typeof] = ACTIONS(2896), + [anon_sym_import] = ACTIONS(2896), + [anon_sym_with] = ACTIONS(2896), + [anon_sym_var] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_else] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_switch] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_await] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_break] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2896), + [anon_sym_debugger] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_throw] = ACTIONS(2896), + [anon_sym_case] = ACTIONS(2896), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2894), + [anon_sym_DQUOTE] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_class] = ACTIONS(2896), + [anon_sym_async] = ACTIONS(2896), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_using] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_void] = ACTIONS(2896), + [anon_sym_delete] = ACTIONS(2896), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2894), + [sym_number] = ACTIONS(2894), + [sym_private_property_identifier] = ACTIONS(2894), + [sym_this] = ACTIONS(2896), + [sym_super] = ACTIONS(2896), + [sym_true] = ACTIONS(2896), + [sym_false] = ACTIONS(2896), + [sym_null] = ACTIONS(2896), + [sym_undefined] = ACTIONS(2896), + [anon_sym_AT] = ACTIONS(2894), + [anon_sym_static] = ACTIONS(2896), + [anon_sym_readonly] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2896), + [anon_sym_set] = ACTIONS(2896), + [anon_sym_declare] = ACTIONS(2896), + [anon_sym_public] = ACTIONS(2896), + [anon_sym_private] = ACTIONS(2896), + [anon_sym_protected] = ACTIONS(2896), + [anon_sym_override] = ACTIONS(2896), + [anon_sym_module] = ACTIONS(2896), + [anon_sym_any] = ACTIONS(2896), + [anon_sym_number] = ACTIONS(2896), + [anon_sym_boolean] = ACTIONS(2896), + [anon_sym_string] = ACTIONS(2896), + [anon_sym_symbol] = ACTIONS(2896), + [anon_sym_object] = ACTIONS(2896), + [anon_sym_abstract] = ACTIONS(2896), + [anon_sym_interface] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2896), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(904)] = { + [ts_builtin_sym_end] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2900), + [anon_sym_export] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_typeof] = ACTIONS(2900), + [anon_sym_import] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2900), + [anon_sym_var] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_await] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_debugger] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_case] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_using] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [anon_sym_void] = ACTIONS(2900), + [anon_sym_delete] = ACTIONS(2900), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2898), + [sym_number] = ACTIONS(2898), + [sym_private_property_identifier] = ACTIONS(2898), + [sym_this] = ACTIONS(2900), + [sym_super] = ACTIONS(2900), + [sym_true] = ACTIONS(2900), + [sym_false] = ACTIONS(2900), + [sym_null] = ACTIONS(2900), + [sym_undefined] = ACTIONS(2900), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_readonly] = ACTIONS(2900), + [anon_sym_get] = ACTIONS(2900), + [anon_sym_set] = ACTIONS(2900), + [anon_sym_declare] = ACTIONS(2900), + [anon_sym_public] = ACTIONS(2900), + [anon_sym_private] = ACTIONS(2900), + [anon_sym_protected] = ACTIONS(2900), + [anon_sym_override] = ACTIONS(2900), + [anon_sym_module] = ACTIONS(2900), + [anon_sym_any] = ACTIONS(2900), + [anon_sym_number] = ACTIONS(2900), + [anon_sym_boolean] = ACTIONS(2900), + [anon_sym_string] = ACTIONS(2900), + [anon_sym_symbol] = ACTIONS(2900), + [anon_sym_object] = ACTIONS(2900), + [anon_sym_abstract] = ACTIONS(2900), + [anon_sym_interface] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(905)] = { + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2904), + [anon_sym_export] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_type] = ACTIONS(2904), + [anon_sym_namespace] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_typeof] = ACTIONS(2904), + [anon_sym_import] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2904), + [anon_sym_var] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_await] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_debugger] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_case] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_class] = ACTIONS(2904), + [anon_sym_async] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_using] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_void] = ACTIONS(2904), + [anon_sym_delete] = ACTIONS(2904), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2902), + [sym_number] = ACTIONS(2902), + [sym_private_property_identifier] = ACTIONS(2902), + [sym_this] = ACTIONS(2904), + [sym_super] = ACTIONS(2904), + [sym_true] = ACTIONS(2904), + [sym_false] = ACTIONS(2904), + [sym_null] = ACTIONS(2904), + [sym_undefined] = ACTIONS(2904), + [anon_sym_AT] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_readonly] = ACTIONS(2904), + [anon_sym_get] = ACTIONS(2904), + [anon_sym_set] = ACTIONS(2904), + [anon_sym_declare] = ACTIONS(2904), + [anon_sym_public] = ACTIONS(2904), + [anon_sym_private] = ACTIONS(2904), + [anon_sym_protected] = ACTIONS(2904), + [anon_sym_override] = ACTIONS(2904), + [anon_sym_module] = ACTIONS(2904), + [anon_sym_any] = ACTIONS(2904), + [anon_sym_number] = ACTIONS(2904), + [anon_sym_boolean] = ACTIONS(2904), + [anon_sym_string] = ACTIONS(2904), + [anon_sym_symbol] = ACTIONS(2904), + [anon_sym_object] = ACTIONS(2904), + [anon_sym_abstract] = ACTIONS(2904), + [anon_sym_interface] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(906)] = { + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2908), + [anon_sym_export] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_type] = ACTIONS(2908), + [anon_sym_namespace] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_typeof] = ACTIONS(2908), + [anon_sym_import] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2908), + [anon_sym_var] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_await] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_debugger] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_class] = ACTIONS(2908), + [anon_sym_async] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_using] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_SLASH] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_void] = ACTIONS(2908), + [anon_sym_delete] = ACTIONS(2908), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2906), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [sym_this] = ACTIONS(2908), + [sym_super] = ACTIONS(2908), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [sym_null] = ACTIONS(2908), + [sym_undefined] = ACTIONS(2908), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_readonly] = ACTIONS(2908), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2908), + [anon_sym_public] = ACTIONS(2908), + [anon_sym_private] = ACTIONS(2908), + [anon_sym_protected] = ACTIONS(2908), + [anon_sym_override] = ACTIONS(2908), + [anon_sym_module] = ACTIONS(2908), + [anon_sym_any] = ACTIONS(2908), + [anon_sym_number] = ACTIONS(2908), + [anon_sym_boolean] = ACTIONS(2908), + [anon_sym_string] = ACTIONS(2908), + [anon_sym_symbol] = ACTIONS(2908), + [anon_sym_object] = ACTIONS(2908), + [anon_sym_abstract] = ACTIONS(2908), + [anon_sym_interface] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(907)] = { + [ts_builtin_sym_end] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2912), + [anon_sym_export] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_typeof] = ACTIONS(2912), + [anon_sym_import] = ACTIONS(2912), + [anon_sym_with] = ACTIONS(2912), + [anon_sym_var] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_const] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_else] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_await] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_debugger] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_throw] = ACTIONS(2912), + [anon_sym_case] = ACTIONS(2912), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_class] = ACTIONS(2912), + [anon_sym_async] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_using] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_void] = ACTIONS(2912), + [anon_sym_delete] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2910), + [sym_number] = ACTIONS(2910), + [sym_private_property_identifier] = ACTIONS(2910), + [sym_this] = ACTIONS(2912), + [sym_super] = ACTIONS(2912), + [sym_true] = ACTIONS(2912), + [sym_false] = ACTIONS(2912), + [sym_null] = ACTIONS(2912), + [sym_undefined] = ACTIONS(2912), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_readonly] = ACTIONS(2912), + [anon_sym_get] = ACTIONS(2912), + [anon_sym_set] = ACTIONS(2912), + [anon_sym_declare] = ACTIONS(2912), + [anon_sym_public] = ACTIONS(2912), + [anon_sym_private] = ACTIONS(2912), + [anon_sym_protected] = ACTIONS(2912), + [anon_sym_override] = ACTIONS(2912), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_any] = ACTIONS(2912), + [anon_sym_number] = ACTIONS(2912), + [anon_sym_boolean] = ACTIONS(2912), + [anon_sym_string] = ACTIONS(2912), + [anon_sym_symbol] = ACTIONS(2912), + [anon_sym_object] = ACTIONS(2912), + [anon_sym_abstract] = ACTIONS(2912), + [anon_sym_interface] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2912), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(908)] = { + [ts_builtin_sym_end] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2916), + [anon_sym_export] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_type] = ACTIONS(2916), + [anon_sym_namespace] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_typeof] = ACTIONS(2916), + [anon_sym_import] = ACTIONS(2916), + [anon_sym_with] = ACTIONS(2916), + [anon_sym_var] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_await] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_debugger] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_class] = ACTIONS(2916), + [anon_sym_async] = ACTIONS(2916), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_void] = ACTIONS(2916), + [anon_sym_delete] = ACTIONS(2916), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2914), + [sym_number] = ACTIONS(2914), + [sym_private_property_identifier] = ACTIONS(2914), + [sym_this] = ACTIONS(2916), + [sym_super] = ACTIONS(2916), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [sym_null] = ACTIONS(2916), + [sym_undefined] = ACTIONS(2916), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_readonly] = ACTIONS(2916), + [anon_sym_get] = ACTIONS(2916), + [anon_sym_set] = ACTIONS(2916), + [anon_sym_declare] = ACTIONS(2916), + [anon_sym_public] = ACTIONS(2916), + [anon_sym_private] = ACTIONS(2916), + [anon_sym_protected] = ACTIONS(2916), + [anon_sym_override] = ACTIONS(2916), + [anon_sym_module] = ACTIONS(2916), + [anon_sym_any] = ACTIONS(2916), + [anon_sym_number] = ACTIONS(2916), + [anon_sym_boolean] = ACTIONS(2916), + [anon_sym_string] = ACTIONS(2916), + [anon_sym_symbol] = ACTIONS(2916), + [anon_sym_object] = ACTIONS(2916), + [anon_sym_abstract] = ACTIONS(2916), + [anon_sym_interface] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(909)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2766), + [anon_sym_RBRACK] = ACTIONS(2918), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -114770,3442 +118665,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [865] = { - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_identifier] = ACTIONS(2770), - [anon_sym_export] = ACTIONS(2770), - [anon_sym_default] = ACTIONS(2770), - [anon_sym_type] = ACTIONS(2770), - [anon_sym_namespace] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(2770), - [anon_sym_import] = ACTIONS(2770), - [anon_sym_with] = ACTIONS(2770), - [anon_sym_var] = ACTIONS(2770), - [anon_sym_let] = ACTIONS(2770), - [anon_sym_const] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_else] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2770), - [anon_sym_switch] = ACTIONS(2770), - [anon_sym_for] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_await] = ACTIONS(2770), - [anon_sym_while] = ACTIONS(2770), - [anon_sym_do] = ACTIONS(2770), - [anon_sym_try] = ACTIONS(2770), - [anon_sym_break] = ACTIONS(2770), - [anon_sym_continue] = ACTIONS(2770), - [anon_sym_debugger] = ACTIONS(2770), - [anon_sym_return] = ACTIONS(2770), - [anon_sym_throw] = ACTIONS(2770), - [anon_sym_case] = ACTIONS(2770), - [anon_sym_yield] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_DQUOTE] = ACTIONS(2768), - [anon_sym_SQUOTE] = ACTIONS(2768), - [anon_sym_class] = ACTIONS(2770), - [anon_sym_async] = ACTIONS(2770), - [anon_sym_function] = ACTIONS(2770), - [anon_sym_new] = ACTIONS(2770), - [anon_sym_using] = ACTIONS(2770), - [anon_sym_PLUS] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_void] = ACTIONS(2770), - [anon_sym_delete] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2768), - [sym_number] = ACTIONS(2768), - [sym_private_property_identifier] = ACTIONS(2768), - [sym_this] = ACTIONS(2770), - [sym_super] = ACTIONS(2770), - [sym_true] = ACTIONS(2770), - [sym_false] = ACTIONS(2770), - [sym_null] = ACTIONS(2770), - [sym_undefined] = ACTIONS(2770), - [anon_sym_AT] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2770), - [anon_sym_readonly] = ACTIONS(2770), - [anon_sym_get] = ACTIONS(2770), - [anon_sym_set] = ACTIONS(2770), - [anon_sym_declare] = ACTIONS(2770), - [anon_sym_public] = ACTIONS(2770), - [anon_sym_private] = ACTIONS(2770), - [anon_sym_protected] = ACTIONS(2770), - [anon_sym_override] = ACTIONS(2770), - [anon_sym_module] = ACTIONS(2770), - [anon_sym_any] = ACTIONS(2770), - [anon_sym_number] = ACTIONS(2770), - [anon_sym_boolean] = ACTIONS(2770), - [anon_sym_string] = ACTIONS(2770), - [anon_sym_symbol] = ACTIONS(2770), - [anon_sym_object] = ACTIONS(2770), - [anon_sym_abstract] = ACTIONS(2770), - [anon_sym_interface] = ACTIONS(2770), - [anon_sym_enum] = ACTIONS(2770), - [sym_html_comment] = ACTIONS(5), - }, - [866] = { - [ts_builtin_sym_end] = ACTIONS(2772), - [sym_identifier] = ACTIONS(2774), - [anon_sym_export] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_type] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_typeof] = ACTIONS(2774), - [anon_sym_import] = ACTIONS(2774), - [anon_sym_with] = ACTIONS(2774), - [anon_sym_var] = ACTIONS(2774), - [anon_sym_let] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_else] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_await] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_debugger] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_yield] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_SQUOTE] = ACTIONS(2772), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_SLASH] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_void] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2772), - [sym_number] = ACTIONS(2772), - [sym_private_property_identifier] = ACTIONS(2772), - [sym_this] = ACTIONS(2774), - [sym_super] = ACTIONS(2774), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [sym_null] = ACTIONS(2774), - [sym_undefined] = ACTIONS(2774), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_readonly] = ACTIONS(2774), - [anon_sym_get] = ACTIONS(2774), - [anon_sym_set] = ACTIONS(2774), - [anon_sym_declare] = ACTIONS(2774), - [anon_sym_public] = ACTIONS(2774), - [anon_sym_private] = ACTIONS(2774), - [anon_sym_protected] = ACTIONS(2774), - [anon_sym_override] = ACTIONS(2774), - [anon_sym_module] = ACTIONS(2774), - [anon_sym_any] = ACTIONS(2774), - [anon_sym_number] = ACTIONS(2774), - [anon_sym_boolean] = ACTIONS(2774), - [anon_sym_string] = ACTIONS(2774), - [anon_sym_symbol] = ACTIONS(2774), - [anon_sym_object] = ACTIONS(2774), - [anon_sym_abstract] = ACTIONS(2774), - [anon_sym_interface] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [sym_html_comment] = ACTIONS(5), - }, - [867] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2778), - [anon_sym_export] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_type] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_typeof] = ACTIONS(2778), - [anon_sym_import] = ACTIONS(2778), - [anon_sym_with] = ACTIONS(2778), - [anon_sym_var] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_await] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_debugger] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_async] = ACTIONS(2778), - [anon_sym_function] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_SLASH] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_void] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2776), - [sym_number] = ACTIONS(2776), - [sym_private_property_identifier] = ACTIONS(2776), - [sym_this] = ACTIONS(2778), - [sym_super] = ACTIONS(2778), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_null] = ACTIONS(2778), - [sym_undefined] = ACTIONS(2778), - [anon_sym_AT] = ACTIONS(2776), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_readonly] = ACTIONS(2778), - [anon_sym_get] = ACTIONS(2778), - [anon_sym_set] = ACTIONS(2778), - [anon_sym_declare] = ACTIONS(2778), - [anon_sym_public] = ACTIONS(2778), - [anon_sym_private] = ACTIONS(2778), - [anon_sym_protected] = ACTIONS(2778), - [anon_sym_override] = ACTIONS(2778), - [anon_sym_module] = ACTIONS(2778), - [anon_sym_any] = ACTIONS(2778), - [anon_sym_number] = ACTIONS(2778), - [anon_sym_boolean] = ACTIONS(2778), - [anon_sym_string] = ACTIONS(2778), - [anon_sym_symbol] = ACTIONS(2778), - [anon_sym_object] = ACTIONS(2778), - [anon_sym_abstract] = ACTIONS(2778), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [sym_html_comment] = ACTIONS(5), - }, - [868] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2782), - [anon_sym_export] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_type] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_typeof] = ACTIONS(2782), - [anon_sym_import] = ACTIONS(2782), - [anon_sym_with] = ACTIONS(2782), - [anon_sym_var] = ACTIONS(2782), - [anon_sym_let] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_else] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_await] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_debugger] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_async] = ACTIONS(2782), - [anon_sym_function] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_void] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2780), - [sym_number] = ACTIONS(2780), - [sym_private_property_identifier] = ACTIONS(2780), - [sym_this] = ACTIONS(2782), - [sym_super] = ACTIONS(2782), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_null] = ACTIONS(2782), - [sym_undefined] = ACTIONS(2782), - [anon_sym_AT] = ACTIONS(2780), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_readonly] = ACTIONS(2782), - [anon_sym_get] = ACTIONS(2782), - [anon_sym_set] = ACTIONS(2782), - [anon_sym_declare] = ACTIONS(2782), - [anon_sym_public] = ACTIONS(2782), - [anon_sym_private] = ACTIONS(2782), - [anon_sym_protected] = ACTIONS(2782), - [anon_sym_override] = ACTIONS(2782), - [anon_sym_module] = ACTIONS(2782), - [anon_sym_any] = ACTIONS(2782), - [anon_sym_number] = ACTIONS(2782), - [anon_sym_boolean] = ACTIONS(2782), - [anon_sym_string] = ACTIONS(2782), - [anon_sym_symbol] = ACTIONS(2782), - [anon_sym_object] = ACTIONS(2782), - [anon_sym_abstract] = ACTIONS(2782), - [anon_sym_interface] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [sym_html_comment] = ACTIONS(5), - }, - [869] = { - [ts_builtin_sym_end] = ACTIONS(2784), - [sym_identifier] = ACTIONS(2786), - [anon_sym_export] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2784), - [anon_sym_typeof] = ACTIONS(2786), - [anon_sym_import] = ACTIONS(2786), - [anon_sym_with] = ACTIONS(2786), - [anon_sym_var] = ACTIONS(2786), - [anon_sym_let] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_else] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_await] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_debugger] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_async] = ACTIONS(2786), - [anon_sym_function] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_void] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2784), - [sym_number] = ACTIONS(2784), - [sym_private_property_identifier] = ACTIONS(2784), - [sym_this] = ACTIONS(2786), - [sym_super] = ACTIONS(2786), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_null] = ACTIONS(2786), - [sym_undefined] = ACTIONS(2786), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_readonly] = ACTIONS(2786), - [anon_sym_get] = ACTIONS(2786), - [anon_sym_set] = ACTIONS(2786), - [anon_sym_declare] = ACTIONS(2786), - [anon_sym_public] = ACTIONS(2786), - [anon_sym_private] = ACTIONS(2786), - [anon_sym_protected] = ACTIONS(2786), - [anon_sym_override] = ACTIONS(2786), - [anon_sym_module] = ACTIONS(2786), - [anon_sym_any] = ACTIONS(2786), - [anon_sym_number] = ACTIONS(2786), - [anon_sym_boolean] = ACTIONS(2786), - [anon_sym_string] = ACTIONS(2786), - [anon_sym_symbol] = ACTIONS(2786), - [anon_sym_object] = ACTIONS(2786), - [anon_sym_abstract] = ACTIONS(2786), - [anon_sym_interface] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [sym_html_comment] = ACTIONS(5), - }, - [870] = { - [ts_builtin_sym_end] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2790), - [anon_sym_export] = ACTIONS(2790), - [anon_sym_default] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_namespace] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_typeof] = ACTIONS(2790), - [anon_sym_import] = ACTIONS(2790), - [anon_sym_with] = ACTIONS(2790), - [anon_sym_var] = ACTIONS(2790), - [anon_sym_let] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_else] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_await] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_debugger] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_throw] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2790), - [anon_sym_yield] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_class] = ACTIONS(2790), - [anon_sym_async] = ACTIONS(2790), - [anon_sym_function] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_using] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_void] = ACTIONS(2790), - [anon_sym_delete] = ACTIONS(2790), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2788), - [sym_number] = ACTIONS(2788), - [sym_private_property_identifier] = ACTIONS(2788), - [sym_this] = ACTIONS(2790), - [sym_super] = ACTIONS(2790), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_null] = ACTIONS(2790), - [sym_undefined] = ACTIONS(2790), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_static] = ACTIONS(2790), - [anon_sym_readonly] = ACTIONS(2790), - [anon_sym_get] = ACTIONS(2790), - [anon_sym_set] = ACTIONS(2790), - [anon_sym_declare] = ACTIONS(2790), - [anon_sym_public] = ACTIONS(2790), - [anon_sym_private] = ACTIONS(2790), - [anon_sym_protected] = ACTIONS(2790), - [anon_sym_override] = ACTIONS(2790), - [anon_sym_module] = ACTIONS(2790), - [anon_sym_any] = ACTIONS(2790), - [anon_sym_number] = ACTIONS(2790), - [anon_sym_boolean] = ACTIONS(2790), - [anon_sym_string] = ACTIONS(2790), - [anon_sym_symbol] = ACTIONS(2790), - [anon_sym_object] = ACTIONS(2790), - [anon_sym_abstract] = ACTIONS(2790), - [anon_sym_interface] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [sym_html_comment] = ACTIONS(5), - }, - [871] = { - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2794), - [anon_sym_export] = ACTIONS(2794), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_namespace] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_typeof] = ACTIONS(2794), - [anon_sym_import] = ACTIONS(2794), - [anon_sym_with] = ACTIONS(2794), - [anon_sym_var] = ACTIONS(2794), - [anon_sym_let] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_else] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_switch] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_await] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2794), - [anon_sym_do] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_debugger] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_throw] = ACTIONS(2794), - [anon_sym_case] = ACTIONS(2794), - [anon_sym_yield] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2792), - [anon_sym_DQUOTE] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2792), - [anon_sym_class] = ACTIONS(2794), - [anon_sym_async] = ACTIONS(2794), - [anon_sym_function] = ACTIONS(2794), - [anon_sym_new] = ACTIONS(2794), - [anon_sym_using] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_void] = ACTIONS(2794), - [anon_sym_delete] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2792), - [sym_number] = ACTIONS(2792), - [sym_private_property_identifier] = ACTIONS(2792), - [sym_this] = ACTIONS(2794), - [sym_super] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_null] = ACTIONS(2794), - [sym_undefined] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_readonly] = ACTIONS(2794), - [anon_sym_get] = ACTIONS(2794), - [anon_sym_set] = ACTIONS(2794), - [anon_sym_declare] = ACTIONS(2794), - [anon_sym_public] = ACTIONS(2794), - [anon_sym_private] = ACTIONS(2794), - [anon_sym_protected] = ACTIONS(2794), - [anon_sym_override] = ACTIONS(2794), - [anon_sym_module] = ACTIONS(2794), - [anon_sym_any] = ACTIONS(2794), - [anon_sym_number] = ACTIONS(2794), - [anon_sym_boolean] = ACTIONS(2794), - [anon_sym_string] = ACTIONS(2794), - [anon_sym_symbol] = ACTIONS(2794), - [anon_sym_object] = ACTIONS(2794), - [anon_sym_abstract] = ACTIONS(2794), - [anon_sym_interface] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [sym_html_comment] = ACTIONS(5), - }, - [872] = { - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2798), - [anon_sym_export] = ACTIONS(2798), - [anon_sym_default] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2798), - [anon_sym_import] = ACTIONS(2798), - [anon_sym_with] = ACTIONS(2798), - [anon_sym_var] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_else] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_switch] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_await] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_debugger] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_throw] = ACTIONS(2798), - [anon_sym_case] = ACTIONS(2798), - [anon_sym_yield] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_DQUOTE] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2796), - [anon_sym_class] = ACTIONS(2798), - [anon_sym_async] = ACTIONS(2798), - [anon_sym_function] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_using] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_void] = ACTIONS(2798), - [anon_sym_delete] = ACTIONS(2798), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2796), - [sym_number] = ACTIONS(2796), - [sym_private_property_identifier] = ACTIONS(2796), - [sym_this] = ACTIONS(2798), - [sym_super] = ACTIONS(2798), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_null] = ACTIONS(2798), - [sym_undefined] = ACTIONS(2798), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_static] = ACTIONS(2798), - [anon_sym_readonly] = ACTIONS(2798), - [anon_sym_get] = ACTIONS(2798), - [anon_sym_set] = ACTIONS(2798), - [anon_sym_declare] = ACTIONS(2798), - [anon_sym_public] = ACTIONS(2798), - [anon_sym_private] = ACTIONS(2798), - [anon_sym_protected] = ACTIONS(2798), - [anon_sym_override] = ACTIONS(2798), - [anon_sym_module] = ACTIONS(2798), - [anon_sym_any] = ACTIONS(2798), - [anon_sym_number] = ACTIONS(2798), - [anon_sym_boolean] = ACTIONS(2798), - [anon_sym_string] = ACTIONS(2798), - [anon_sym_symbol] = ACTIONS(2798), - [anon_sym_object] = ACTIONS(2798), - [anon_sym_abstract] = ACTIONS(2798), - [anon_sym_interface] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [sym_html_comment] = ACTIONS(5), - }, - [873] = { - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2802), - [anon_sym_export] = ACTIONS(2802), - [anon_sym_default] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_namespace] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_typeof] = ACTIONS(2802), - [anon_sym_import] = ACTIONS(2802), - [anon_sym_with] = ACTIONS(2802), - [anon_sym_var] = ACTIONS(2802), - [anon_sym_let] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_else] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_switch] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_await] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_debugger] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_throw] = ACTIONS(2802), - [anon_sym_case] = ACTIONS(2802), - [anon_sym_yield] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_class] = ACTIONS(2802), - [anon_sym_async] = ACTIONS(2802), - [anon_sym_function] = ACTIONS(2802), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_using] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_void] = ACTIONS(2802), - [anon_sym_delete] = ACTIONS(2802), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2800), - [sym_number] = ACTIONS(2800), - [sym_private_property_identifier] = ACTIONS(2800), - [sym_this] = ACTIONS(2802), - [sym_super] = ACTIONS(2802), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_null] = ACTIONS(2802), - [sym_undefined] = ACTIONS(2802), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_readonly] = ACTIONS(2802), - [anon_sym_get] = ACTIONS(2802), - [anon_sym_set] = ACTIONS(2802), - [anon_sym_declare] = ACTIONS(2802), - [anon_sym_public] = ACTIONS(2802), - [anon_sym_private] = ACTIONS(2802), - [anon_sym_protected] = ACTIONS(2802), - [anon_sym_override] = ACTIONS(2802), - [anon_sym_module] = ACTIONS(2802), - [anon_sym_any] = ACTIONS(2802), - [anon_sym_number] = ACTIONS(2802), - [anon_sym_boolean] = ACTIONS(2802), - [anon_sym_string] = ACTIONS(2802), - [anon_sym_symbol] = ACTIONS(2802), - [anon_sym_object] = ACTIONS(2802), - [anon_sym_abstract] = ACTIONS(2802), - [anon_sym_interface] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [sym_html_comment] = ACTIONS(5), - }, - [874] = { - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2806), - [anon_sym_export] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_type] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_typeof] = ACTIONS(2806), - [anon_sym_import] = ACTIONS(2806), - [anon_sym_with] = ACTIONS(2806), - [anon_sym_var] = ACTIONS(2806), - [anon_sym_let] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_else] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_await] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_debugger] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_yield] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2804), - [anon_sym_DQUOTE] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_async] = ACTIONS(2806), - [anon_sym_function] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_void] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2804), - [sym_number] = ACTIONS(2804), - [sym_private_property_identifier] = ACTIONS(2804), - [sym_this] = ACTIONS(2806), - [sym_super] = ACTIONS(2806), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_undefined] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_readonly] = ACTIONS(2806), - [anon_sym_get] = ACTIONS(2806), - [anon_sym_set] = ACTIONS(2806), - [anon_sym_declare] = ACTIONS(2806), - [anon_sym_public] = ACTIONS(2806), - [anon_sym_private] = ACTIONS(2806), - [anon_sym_protected] = ACTIONS(2806), - [anon_sym_override] = ACTIONS(2806), - [anon_sym_module] = ACTIONS(2806), - [anon_sym_any] = ACTIONS(2806), - [anon_sym_number] = ACTIONS(2806), - [anon_sym_boolean] = ACTIONS(2806), - [anon_sym_string] = ACTIONS(2806), - [anon_sym_symbol] = ACTIONS(2806), - [anon_sym_object] = ACTIONS(2806), - [anon_sym_abstract] = ACTIONS(2806), - [anon_sym_interface] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [sym_html_comment] = ACTIONS(5), - }, - [875] = { - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2810), - [anon_sym_export] = ACTIONS(2810), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_typeof] = ACTIONS(2810), - [anon_sym_import] = ACTIONS(2810), - [anon_sym_with] = ACTIONS(2810), - [anon_sym_var] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_else] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_switch] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_await] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_debugger] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_throw] = ACTIONS(2810), - [anon_sym_case] = ACTIONS(2810), - [anon_sym_yield] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_class] = ACTIONS(2810), - [anon_sym_async] = ACTIONS(2810), - [anon_sym_function] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_using] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_void] = ACTIONS(2810), - [anon_sym_delete] = ACTIONS(2810), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2808), - [sym_number] = ACTIONS(2808), - [sym_private_property_identifier] = ACTIONS(2808), - [sym_this] = ACTIONS(2810), - [sym_super] = ACTIONS(2810), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_null] = ACTIONS(2810), - [sym_undefined] = ACTIONS(2810), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_readonly] = ACTIONS(2810), - [anon_sym_get] = ACTIONS(2810), - [anon_sym_set] = ACTIONS(2810), - [anon_sym_declare] = ACTIONS(2810), - [anon_sym_public] = ACTIONS(2810), - [anon_sym_private] = ACTIONS(2810), - [anon_sym_protected] = ACTIONS(2810), - [anon_sym_override] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_any] = ACTIONS(2810), - [anon_sym_number] = ACTIONS(2810), - [anon_sym_boolean] = ACTIONS(2810), - [anon_sym_string] = ACTIONS(2810), - [anon_sym_symbol] = ACTIONS(2810), - [anon_sym_object] = ACTIONS(2810), - [anon_sym_abstract] = ACTIONS(2810), - [anon_sym_interface] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [sym_html_comment] = ACTIONS(5), - }, - [876] = { - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(2814), - [anon_sym_export] = ACTIONS(2814), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_type] = ACTIONS(2814), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_typeof] = ACTIONS(2814), - [anon_sym_import] = ACTIONS(2814), - [anon_sym_with] = ACTIONS(2814), - [anon_sym_var] = ACTIONS(2814), - [anon_sym_let] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_else] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_switch] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_await] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_debugger] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_throw] = ACTIONS(2814), - [anon_sym_case] = ACTIONS(2814), - [anon_sym_yield] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_class] = ACTIONS(2814), - [anon_sym_async] = ACTIONS(2814), - [anon_sym_function] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_using] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_void] = ACTIONS(2814), - [anon_sym_delete] = ACTIONS(2814), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2812), - [sym_number] = ACTIONS(2812), - [sym_private_property_identifier] = ACTIONS(2812), - [sym_this] = ACTIONS(2814), - [sym_super] = ACTIONS(2814), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_null] = ACTIONS(2814), - [sym_undefined] = ACTIONS(2814), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_readonly] = ACTIONS(2814), - [anon_sym_get] = ACTIONS(2814), - [anon_sym_set] = ACTIONS(2814), - [anon_sym_declare] = ACTIONS(2814), - [anon_sym_public] = ACTIONS(2814), - [anon_sym_private] = ACTIONS(2814), - [anon_sym_protected] = ACTIONS(2814), - [anon_sym_override] = ACTIONS(2814), - [anon_sym_module] = ACTIONS(2814), - [anon_sym_any] = ACTIONS(2814), - [anon_sym_number] = ACTIONS(2814), - [anon_sym_boolean] = ACTIONS(2814), - [anon_sym_string] = ACTIONS(2814), - [anon_sym_symbol] = ACTIONS(2814), - [anon_sym_object] = ACTIONS(2814), - [anon_sym_abstract] = ACTIONS(2814), - [anon_sym_interface] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [sym_html_comment] = ACTIONS(5), - }, - [877] = { - [ts_builtin_sym_end] = ACTIONS(2816), - [sym_identifier] = ACTIONS(2818), - [anon_sym_export] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_type] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_typeof] = ACTIONS(2818), - [anon_sym_import] = ACTIONS(2818), - [anon_sym_with] = ACTIONS(2818), - [anon_sym_var] = ACTIONS(2818), - [anon_sym_let] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_else] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_await] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_debugger] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_yield] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_async] = ACTIONS(2818), - [anon_sym_function] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_void] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2816), - [sym_number] = ACTIONS(2816), - [sym_private_property_identifier] = ACTIONS(2816), - [sym_this] = ACTIONS(2818), - [sym_super] = ACTIONS(2818), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [sym_undefined] = ACTIONS(2818), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_readonly] = ACTIONS(2818), - [anon_sym_get] = ACTIONS(2818), - [anon_sym_set] = ACTIONS(2818), - [anon_sym_declare] = ACTIONS(2818), - [anon_sym_public] = ACTIONS(2818), - [anon_sym_private] = ACTIONS(2818), - [anon_sym_protected] = ACTIONS(2818), - [anon_sym_override] = ACTIONS(2818), - [anon_sym_module] = ACTIONS(2818), - [anon_sym_any] = ACTIONS(2818), - [anon_sym_number] = ACTIONS(2818), - [anon_sym_boolean] = ACTIONS(2818), - [anon_sym_string] = ACTIONS(2818), - [anon_sym_symbol] = ACTIONS(2818), - [anon_sym_object] = ACTIONS(2818), - [anon_sym_abstract] = ACTIONS(2818), - [anon_sym_interface] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [sym_html_comment] = ACTIONS(5), - }, - [878] = { - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2822), - [anon_sym_export] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_typeof] = ACTIONS(2822), - [anon_sym_import] = ACTIONS(2822), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_var] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_switch] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_await] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_debugger] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_throw] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2822), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2822), - [anon_sym_async] = ACTIONS(2822), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_using] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_void] = ACTIONS(2822), - [anon_sym_delete] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2820), - [sym_number] = ACTIONS(2820), - [sym_private_property_identifier] = ACTIONS(2820), - [sym_this] = ACTIONS(2822), - [sym_super] = ACTIONS(2822), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_null] = ACTIONS(2822), - [sym_undefined] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_get] = ACTIONS(2822), - [anon_sym_set] = ACTIONS(2822), - [anon_sym_declare] = ACTIONS(2822), - [anon_sym_public] = ACTIONS(2822), - [anon_sym_private] = ACTIONS(2822), - [anon_sym_protected] = ACTIONS(2822), - [anon_sym_override] = ACTIONS(2822), - [anon_sym_module] = ACTIONS(2822), - [anon_sym_any] = ACTIONS(2822), - [anon_sym_number] = ACTIONS(2822), - [anon_sym_boolean] = ACTIONS(2822), - [anon_sym_string] = ACTIONS(2822), - [anon_sym_symbol] = ACTIONS(2822), - [anon_sym_object] = ACTIONS(2822), - [anon_sym_abstract] = ACTIONS(2822), - [anon_sym_interface] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [sym_html_comment] = ACTIONS(5), - }, - [879] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [sym_html_comment] = ACTIONS(5), - }, - [880] = { - [ts_builtin_sym_end] = ACTIONS(2824), - [sym_identifier] = ACTIONS(2826), - [anon_sym_export] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_type] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_typeof] = ACTIONS(2826), - [anon_sym_import] = ACTIONS(2826), - [anon_sym_with] = ACTIONS(2826), - [anon_sym_var] = ACTIONS(2826), - [anon_sym_let] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_else] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_await] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_debugger] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_yield] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_async] = ACTIONS(2826), - [anon_sym_function] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_void] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2824), - [sym_number] = ACTIONS(2824), - [sym_private_property_identifier] = ACTIONS(2824), - [sym_this] = ACTIONS(2826), - [sym_super] = ACTIONS(2826), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_null] = ACTIONS(2826), - [sym_undefined] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_readonly] = ACTIONS(2826), - [anon_sym_get] = ACTIONS(2826), - [anon_sym_set] = ACTIONS(2826), - [anon_sym_declare] = ACTIONS(2826), - [anon_sym_public] = ACTIONS(2826), - [anon_sym_private] = ACTIONS(2826), - [anon_sym_protected] = ACTIONS(2826), - [anon_sym_override] = ACTIONS(2826), - [anon_sym_module] = ACTIONS(2826), - [anon_sym_any] = ACTIONS(2826), - [anon_sym_number] = ACTIONS(2826), - [anon_sym_boolean] = ACTIONS(2826), - [anon_sym_string] = ACTIONS(2826), - [anon_sym_symbol] = ACTIONS(2826), - [anon_sym_object] = ACTIONS(2826), - [anon_sym_abstract] = ACTIONS(2826), - [anon_sym_interface] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [sym_html_comment] = ACTIONS(5), - }, - [881] = { - [ts_builtin_sym_end] = ACTIONS(2828), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2830), - [anon_sym_default] = ACTIONS(2830), - [anon_sym_type] = ACTIONS(2830), - [anon_sym_namespace] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_typeof] = ACTIONS(2830), - [anon_sym_import] = ACTIONS(2830), - [anon_sym_with] = ACTIONS(2830), - [anon_sym_var] = ACTIONS(2830), - [anon_sym_let] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_else] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_switch] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_await] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_debugger] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_throw] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_yield] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_async] = ACTIONS(2830), - [anon_sym_function] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_using] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_void] = ACTIONS(2830), - [anon_sym_delete] = ACTIONS(2830), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2828), - [sym_number] = ACTIONS(2828), - [sym_private_property_identifier] = ACTIONS(2828), - [sym_this] = ACTIONS(2830), - [sym_super] = ACTIONS(2830), - [sym_true] = ACTIONS(2830), - [sym_false] = ACTIONS(2830), - [sym_null] = ACTIONS(2830), - [sym_undefined] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_readonly] = ACTIONS(2830), - [anon_sym_get] = ACTIONS(2830), - [anon_sym_set] = ACTIONS(2830), - [anon_sym_declare] = ACTIONS(2830), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_protected] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2830), - [anon_sym_module] = ACTIONS(2830), - [anon_sym_any] = ACTIONS(2830), - [anon_sym_number] = ACTIONS(2830), - [anon_sym_boolean] = ACTIONS(2830), - [anon_sym_string] = ACTIONS(2830), - [anon_sym_symbol] = ACTIONS(2830), - [anon_sym_object] = ACTIONS(2830), - [anon_sym_abstract] = ACTIONS(2830), - [anon_sym_interface] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [sym_html_comment] = ACTIONS(5), - }, - [882] = { - [ts_builtin_sym_end] = ACTIONS(2832), - [sym_identifier] = ACTIONS(2834), - [anon_sym_export] = ACTIONS(2834), - [anon_sym_default] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2834), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_typeof] = ACTIONS(2834), - [anon_sym_import] = ACTIONS(2834), - [anon_sym_with] = ACTIONS(2834), - [anon_sym_var] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_else] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_switch] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_await] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_debugger] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_throw] = ACTIONS(2834), - [anon_sym_case] = ACTIONS(2834), - [anon_sym_yield] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_class] = ACTIONS(2834), - [anon_sym_async] = ACTIONS(2834), - [anon_sym_function] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_using] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_void] = ACTIONS(2834), - [anon_sym_delete] = ACTIONS(2834), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2832), - [sym_number] = ACTIONS(2832), - [sym_private_property_identifier] = ACTIONS(2832), - [sym_this] = ACTIONS(2834), - [sym_super] = ACTIONS(2834), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_null] = ACTIONS(2834), - [sym_undefined] = ACTIONS(2834), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_static] = ACTIONS(2834), - [anon_sym_readonly] = ACTIONS(2834), - [anon_sym_get] = ACTIONS(2834), - [anon_sym_set] = ACTIONS(2834), - [anon_sym_declare] = ACTIONS(2834), - [anon_sym_public] = ACTIONS(2834), - [anon_sym_private] = ACTIONS(2834), - [anon_sym_protected] = ACTIONS(2834), - [anon_sym_override] = ACTIONS(2834), - [anon_sym_module] = ACTIONS(2834), - [anon_sym_any] = ACTIONS(2834), - [anon_sym_number] = ACTIONS(2834), - [anon_sym_boolean] = ACTIONS(2834), - [anon_sym_string] = ACTIONS(2834), - [anon_sym_symbol] = ACTIONS(2834), - [anon_sym_object] = ACTIONS(2834), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_interface] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), - [sym_html_comment] = ACTIONS(5), - }, - [883] = { - [ts_builtin_sym_end] = ACTIONS(2836), - [sym_identifier] = ACTIONS(2838), - [anon_sym_export] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_type] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_typeof] = ACTIONS(2838), - [anon_sym_import] = ACTIONS(2838), - [anon_sym_with] = ACTIONS(2838), - [anon_sym_var] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_else] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_await] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_debugger] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_yield] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2836), - [anon_sym_DQUOTE] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_async] = ACTIONS(2838), - [anon_sym_function] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_void] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2836), - [sym_number] = ACTIONS(2836), - [sym_private_property_identifier] = ACTIONS(2836), - [sym_this] = ACTIONS(2838), - [sym_super] = ACTIONS(2838), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_null] = ACTIONS(2838), - [sym_undefined] = ACTIONS(2838), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_readonly] = ACTIONS(2838), - [anon_sym_get] = ACTIONS(2838), - [anon_sym_set] = ACTIONS(2838), - [anon_sym_declare] = ACTIONS(2838), - [anon_sym_public] = ACTIONS(2838), - [anon_sym_private] = ACTIONS(2838), - [anon_sym_protected] = ACTIONS(2838), - [anon_sym_override] = ACTIONS(2838), - [anon_sym_module] = ACTIONS(2838), - [anon_sym_any] = ACTIONS(2838), - [anon_sym_number] = ACTIONS(2838), - [anon_sym_boolean] = ACTIONS(2838), - [anon_sym_string] = ACTIONS(2838), - [anon_sym_symbol] = ACTIONS(2838), - [anon_sym_object] = ACTIONS(2838), - [anon_sym_abstract] = ACTIONS(2838), - [anon_sym_interface] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [sym_html_comment] = ACTIONS(5), - }, - [884] = { - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2842), - [anon_sym_export] = ACTIONS(2842), - [anon_sym_default] = ACTIONS(2842), - [anon_sym_type] = ACTIONS(2842), - [anon_sym_namespace] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_typeof] = ACTIONS(2842), - [anon_sym_import] = ACTIONS(2842), - [anon_sym_with] = ACTIONS(2842), - [anon_sym_var] = ACTIONS(2842), - [anon_sym_let] = ACTIONS(2842), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_else] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_switch] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_await] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_debugger] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_throw] = ACTIONS(2842), - [anon_sym_case] = ACTIONS(2842), - [anon_sym_yield] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_async] = ACTIONS(2842), - [anon_sym_function] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_using] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_void] = ACTIONS(2842), - [anon_sym_delete] = ACTIONS(2842), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2840), - [sym_number] = ACTIONS(2840), - [sym_private_property_identifier] = ACTIONS(2840), - [sym_this] = ACTIONS(2842), - [sym_super] = ACTIONS(2842), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_null] = ACTIONS(2842), - [sym_undefined] = ACTIONS(2842), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2842), - [anon_sym_readonly] = ACTIONS(2842), - [anon_sym_get] = ACTIONS(2842), - [anon_sym_set] = ACTIONS(2842), - [anon_sym_declare] = ACTIONS(2842), - [anon_sym_public] = ACTIONS(2842), - [anon_sym_private] = ACTIONS(2842), - [anon_sym_protected] = ACTIONS(2842), - [anon_sym_override] = ACTIONS(2842), - [anon_sym_module] = ACTIONS(2842), - [anon_sym_any] = ACTIONS(2842), - [anon_sym_number] = ACTIONS(2842), - [anon_sym_boolean] = ACTIONS(2842), - [anon_sym_string] = ACTIONS(2842), - [anon_sym_symbol] = ACTIONS(2842), - [anon_sym_object] = ACTIONS(2842), - [anon_sym_abstract] = ACTIONS(2842), - [anon_sym_interface] = ACTIONS(2842), - [anon_sym_enum] = ACTIONS(2842), - [sym_html_comment] = ACTIONS(5), - }, - [885] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2846), - [anon_sym_export] = ACTIONS(2846), - [anon_sym_default] = ACTIONS(2846), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_namespace] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_typeof] = ACTIONS(2846), - [anon_sym_import] = ACTIONS(2846), - [anon_sym_with] = ACTIONS(2846), - [anon_sym_var] = ACTIONS(2846), - [anon_sym_let] = ACTIONS(2846), - [anon_sym_const] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_else] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_switch] = ACTIONS(2846), - [anon_sym_for] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_await] = ACTIONS(2846), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2846), - [anon_sym_try] = ACTIONS(2846), - [anon_sym_break] = ACTIONS(2846), - [anon_sym_continue] = ACTIONS(2846), - [anon_sym_debugger] = ACTIONS(2846), - [anon_sym_return] = ACTIONS(2846), - [anon_sym_throw] = ACTIONS(2846), - [anon_sym_case] = ACTIONS(2846), - [anon_sym_yield] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2844), - [anon_sym_DQUOTE] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_class] = ACTIONS(2846), - [anon_sym_async] = ACTIONS(2846), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_new] = ACTIONS(2846), - [anon_sym_using] = ACTIONS(2846), - [anon_sym_PLUS] = ACTIONS(2846), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_void] = ACTIONS(2846), - [anon_sym_delete] = ACTIONS(2846), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2844), - [sym_number] = ACTIONS(2844), - [sym_private_property_identifier] = ACTIONS(2844), - [sym_this] = ACTIONS(2846), - [sym_super] = ACTIONS(2846), - [sym_true] = ACTIONS(2846), - [sym_false] = ACTIONS(2846), - [sym_null] = ACTIONS(2846), - [sym_undefined] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2846), - [anon_sym_readonly] = ACTIONS(2846), - [anon_sym_get] = ACTIONS(2846), - [anon_sym_set] = ACTIONS(2846), - [anon_sym_declare] = ACTIONS(2846), - [anon_sym_public] = ACTIONS(2846), - [anon_sym_private] = ACTIONS(2846), - [anon_sym_protected] = ACTIONS(2846), - [anon_sym_override] = ACTIONS(2846), - [anon_sym_module] = ACTIONS(2846), - [anon_sym_any] = ACTIONS(2846), - [anon_sym_number] = ACTIONS(2846), - [anon_sym_boolean] = ACTIONS(2846), - [anon_sym_string] = ACTIONS(2846), - [anon_sym_symbol] = ACTIONS(2846), - [anon_sym_object] = ACTIONS(2846), - [anon_sym_abstract] = ACTIONS(2846), - [anon_sym_interface] = ACTIONS(2846), - [anon_sym_enum] = ACTIONS(2846), - [sym_html_comment] = ACTIONS(5), - }, - [886] = { - [ts_builtin_sym_end] = ACTIONS(2848), - [sym_identifier] = ACTIONS(2850), - [anon_sym_export] = ACTIONS(2850), - [anon_sym_default] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_namespace] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_typeof] = ACTIONS(2850), - [anon_sym_import] = ACTIONS(2850), - [anon_sym_with] = ACTIONS(2850), - [anon_sym_var] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_const] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_else] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2850), - [anon_sym_switch] = ACTIONS(2850), - [anon_sym_for] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2848), - [anon_sym_await] = ACTIONS(2850), - [anon_sym_while] = ACTIONS(2850), - [anon_sym_do] = ACTIONS(2850), - [anon_sym_try] = ACTIONS(2850), - [anon_sym_break] = ACTIONS(2850), - [anon_sym_continue] = ACTIONS(2850), - [anon_sym_debugger] = ACTIONS(2850), - [anon_sym_return] = ACTIONS(2850), - [anon_sym_throw] = ACTIONS(2850), - [anon_sym_case] = ACTIONS(2850), - [anon_sym_yield] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2848), - [anon_sym_DQUOTE] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_class] = ACTIONS(2850), - [anon_sym_async] = ACTIONS(2850), - [anon_sym_function] = ACTIONS(2850), - [anon_sym_new] = ACTIONS(2850), - [anon_sym_using] = ACTIONS(2850), - [anon_sym_PLUS] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_void] = ACTIONS(2850), - [anon_sym_delete] = ACTIONS(2850), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2848), - [sym_number] = ACTIONS(2848), - [sym_private_property_identifier] = ACTIONS(2848), - [sym_this] = ACTIONS(2850), - [sym_super] = ACTIONS(2850), - [sym_true] = ACTIONS(2850), - [sym_false] = ACTIONS(2850), - [sym_null] = ACTIONS(2850), - [sym_undefined] = ACTIONS(2850), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_static] = ACTIONS(2850), - [anon_sym_readonly] = ACTIONS(2850), - [anon_sym_get] = ACTIONS(2850), - [anon_sym_set] = ACTIONS(2850), - [anon_sym_declare] = ACTIONS(2850), - [anon_sym_public] = ACTIONS(2850), - [anon_sym_private] = ACTIONS(2850), - [anon_sym_protected] = ACTIONS(2850), - [anon_sym_override] = ACTIONS(2850), - [anon_sym_module] = ACTIONS(2850), - [anon_sym_any] = ACTIONS(2850), - [anon_sym_number] = ACTIONS(2850), - [anon_sym_boolean] = ACTIONS(2850), - [anon_sym_string] = ACTIONS(2850), - [anon_sym_symbol] = ACTIONS(2850), - [anon_sym_object] = ACTIONS(2850), - [anon_sym_abstract] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2850), - [anon_sym_enum] = ACTIONS(2850), - [sym_html_comment] = ACTIONS(5), - }, - [887] = { - [ts_builtin_sym_end] = ACTIONS(2852), - [sym_identifier] = ACTIONS(2854), - [anon_sym_export] = ACTIONS(2854), - [anon_sym_default] = ACTIONS(2854), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_namespace] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_typeof] = ACTIONS(2854), - [anon_sym_import] = ACTIONS(2854), - [anon_sym_with] = ACTIONS(2854), - [anon_sym_var] = ACTIONS(2854), - [anon_sym_let] = ACTIONS(2854), - [anon_sym_const] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_else] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_switch] = ACTIONS(2854), - [anon_sym_for] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2852), - [anon_sym_await] = ACTIONS(2854), - [anon_sym_while] = ACTIONS(2854), - [anon_sym_do] = ACTIONS(2854), - [anon_sym_try] = ACTIONS(2854), - [anon_sym_break] = ACTIONS(2854), - [anon_sym_continue] = ACTIONS(2854), - [anon_sym_debugger] = ACTIONS(2854), - [anon_sym_return] = ACTIONS(2854), - [anon_sym_throw] = ACTIONS(2854), - [anon_sym_case] = ACTIONS(2854), - [anon_sym_yield] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_class] = ACTIONS(2854), - [anon_sym_async] = ACTIONS(2854), - [anon_sym_function] = ACTIONS(2854), - [anon_sym_new] = ACTIONS(2854), - [anon_sym_using] = ACTIONS(2854), - [anon_sym_PLUS] = ACTIONS(2854), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_void] = ACTIONS(2854), - [anon_sym_delete] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2852), - [sym_number] = ACTIONS(2852), - [sym_private_property_identifier] = ACTIONS(2852), - [sym_this] = ACTIONS(2854), - [sym_super] = ACTIONS(2854), - [sym_true] = ACTIONS(2854), - [sym_false] = ACTIONS(2854), - [sym_null] = ACTIONS(2854), - [sym_undefined] = ACTIONS(2854), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2854), - [anon_sym_readonly] = ACTIONS(2854), - [anon_sym_get] = ACTIONS(2854), - [anon_sym_set] = ACTIONS(2854), - [anon_sym_declare] = ACTIONS(2854), - [anon_sym_public] = ACTIONS(2854), - [anon_sym_private] = ACTIONS(2854), - [anon_sym_protected] = ACTIONS(2854), - [anon_sym_override] = ACTIONS(2854), - [anon_sym_module] = ACTIONS(2854), - [anon_sym_any] = ACTIONS(2854), - [anon_sym_number] = ACTIONS(2854), - [anon_sym_boolean] = ACTIONS(2854), - [anon_sym_string] = ACTIONS(2854), - [anon_sym_symbol] = ACTIONS(2854), - [anon_sym_object] = ACTIONS(2854), - [anon_sym_abstract] = ACTIONS(2854), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_enum] = ACTIONS(2854), - [sym_html_comment] = ACTIONS(5), - }, - [888] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_export] = ACTIONS(2858), - [anon_sym_default] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_namespace] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_typeof] = ACTIONS(2858), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_var] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_switch] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_await] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_debugger] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_throw] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2858), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [anon_sym_DQUOTE] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_class] = ACTIONS(2858), - [anon_sym_async] = ACTIONS(2858), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_using] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_void] = ACTIONS(2858), - [anon_sym_delete] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2856), - [sym_number] = ACTIONS(2856), - [sym_private_property_identifier] = ACTIONS(2856), - [sym_this] = ACTIONS(2858), - [sym_super] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_null] = ACTIONS(2858), - [sym_undefined] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2858), - [anon_sym_readonly] = ACTIONS(2858), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_declare] = ACTIONS(2858), - [anon_sym_public] = ACTIONS(2858), - [anon_sym_private] = ACTIONS(2858), - [anon_sym_protected] = ACTIONS(2858), - [anon_sym_override] = ACTIONS(2858), - [anon_sym_module] = ACTIONS(2858), - [anon_sym_any] = ACTIONS(2858), - [anon_sym_number] = ACTIONS(2858), - [anon_sym_boolean] = ACTIONS(2858), - [anon_sym_string] = ACTIONS(2858), - [anon_sym_symbol] = ACTIONS(2858), - [anon_sym_object] = ACTIONS(2858), - [anon_sym_abstract] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), - [sym_html_comment] = ACTIONS(5), - }, - [889] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_identifier] = ACTIONS(2862), - [anon_sym_export] = ACTIONS(2862), - [anon_sym_default] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_namespace] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_typeof] = ACTIONS(2862), - [anon_sym_import] = ACTIONS(2862), - [anon_sym_with] = ACTIONS(2862), - [anon_sym_var] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_else] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2862), - [anon_sym_switch] = ACTIONS(2862), - [anon_sym_for] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_await] = ACTIONS(2862), - [anon_sym_while] = ACTIONS(2862), - [anon_sym_do] = ACTIONS(2862), - [anon_sym_try] = ACTIONS(2862), - [anon_sym_break] = ACTIONS(2862), - [anon_sym_continue] = ACTIONS(2862), - [anon_sym_debugger] = ACTIONS(2862), - [anon_sym_return] = ACTIONS(2862), - [anon_sym_throw] = ACTIONS(2862), - [anon_sym_case] = ACTIONS(2862), - [anon_sym_yield] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_class] = ACTIONS(2862), - [anon_sym_async] = ACTIONS(2862), - [anon_sym_function] = ACTIONS(2862), - [anon_sym_new] = ACTIONS(2862), - [anon_sym_using] = ACTIONS(2862), - [anon_sym_PLUS] = ACTIONS(2862), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_void] = ACTIONS(2862), - [anon_sym_delete] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2860), - [sym_number] = ACTIONS(2860), - [sym_private_property_identifier] = ACTIONS(2860), - [sym_this] = ACTIONS(2862), - [sym_super] = ACTIONS(2862), - [sym_true] = ACTIONS(2862), - [sym_false] = ACTIONS(2862), - [sym_null] = ACTIONS(2862), - [sym_undefined] = ACTIONS(2862), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2862), - [anon_sym_readonly] = ACTIONS(2862), - [anon_sym_get] = ACTIONS(2862), - [anon_sym_set] = ACTIONS(2862), - [anon_sym_declare] = ACTIONS(2862), - [anon_sym_public] = ACTIONS(2862), - [anon_sym_private] = ACTIONS(2862), - [anon_sym_protected] = ACTIONS(2862), - [anon_sym_override] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2862), - [anon_sym_any] = ACTIONS(2862), - [anon_sym_number] = ACTIONS(2862), - [anon_sym_boolean] = ACTIONS(2862), - [anon_sym_string] = ACTIONS(2862), - [anon_sym_symbol] = ACTIONS(2862), - [anon_sym_object] = ACTIONS(2862), - [anon_sym_abstract] = ACTIONS(2862), - [anon_sym_interface] = ACTIONS(2862), - [anon_sym_enum] = ACTIONS(2862), - [sym_html_comment] = ACTIONS(5), - }, - [890] = { - [ts_builtin_sym_end] = ACTIONS(2864), - [sym_identifier] = ACTIONS(2866), - [anon_sym_export] = ACTIONS(2866), - [anon_sym_default] = ACTIONS(2866), - [anon_sym_type] = ACTIONS(2866), - [anon_sym_namespace] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_typeof] = ACTIONS(2866), - [anon_sym_import] = ACTIONS(2866), - [anon_sym_with] = ACTIONS(2866), - [anon_sym_var] = ACTIONS(2866), - [anon_sym_let] = ACTIONS(2866), - [anon_sym_const] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_else] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2866), - [anon_sym_switch] = ACTIONS(2866), - [anon_sym_for] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2864), - [anon_sym_await] = ACTIONS(2866), - [anon_sym_while] = ACTIONS(2866), - [anon_sym_do] = ACTIONS(2866), - [anon_sym_try] = ACTIONS(2866), - [anon_sym_break] = ACTIONS(2866), - [anon_sym_continue] = ACTIONS(2866), - [anon_sym_debugger] = ACTIONS(2866), - [anon_sym_return] = ACTIONS(2866), - [anon_sym_throw] = ACTIONS(2866), - [anon_sym_case] = ACTIONS(2866), - [anon_sym_yield] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2864), - [anon_sym_DQUOTE] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_class] = ACTIONS(2866), - [anon_sym_async] = ACTIONS(2866), - [anon_sym_function] = ACTIONS(2866), - [anon_sym_new] = ACTIONS(2866), - [anon_sym_using] = ACTIONS(2866), - [anon_sym_PLUS] = ACTIONS(2866), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_void] = ACTIONS(2866), - [anon_sym_delete] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2864), - [sym_number] = ACTIONS(2864), - [sym_private_property_identifier] = ACTIONS(2864), - [sym_this] = ACTIONS(2866), - [sym_super] = ACTIONS(2866), - [sym_true] = ACTIONS(2866), - [sym_false] = ACTIONS(2866), - [sym_null] = ACTIONS(2866), - [sym_undefined] = ACTIONS(2866), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2866), - [anon_sym_readonly] = ACTIONS(2866), - [anon_sym_get] = ACTIONS(2866), - [anon_sym_set] = ACTIONS(2866), - [anon_sym_declare] = ACTIONS(2866), - [anon_sym_public] = ACTIONS(2866), - [anon_sym_private] = ACTIONS(2866), - [anon_sym_protected] = ACTIONS(2866), - [anon_sym_override] = ACTIONS(2866), - [anon_sym_module] = ACTIONS(2866), - [anon_sym_any] = ACTIONS(2866), - [anon_sym_number] = ACTIONS(2866), - [anon_sym_boolean] = ACTIONS(2866), - [anon_sym_string] = ACTIONS(2866), - [anon_sym_symbol] = ACTIONS(2866), - [anon_sym_object] = ACTIONS(2866), - [anon_sym_abstract] = ACTIONS(2866), - [anon_sym_interface] = ACTIONS(2866), - [anon_sym_enum] = ACTIONS(2866), - [sym_html_comment] = ACTIONS(5), - }, - [891] = { - [ts_builtin_sym_end] = ACTIONS(2868), - [sym_identifier] = ACTIONS(2870), - [anon_sym_export] = ACTIONS(2870), - [anon_sym_default] = ACTIONS(2870), - [anon_sym_type] = ACTIONS(2870), - [anon_sym_namespace] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_typeof] = ACTIONS(2870), - [anon_sym_import] = ACTIONS(2870), - [anon_sym_with] = ACTIONS(2870), - [anon_sym_var] = ACTIONS(2870), - [anon_sym_let] = ACTIONS(2870), - [anon_sym_const] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_else] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2870), - [anon_sym_switch] = ACTIONS(2870), - [anon_sym_for] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_await] = ACTIONS(2870), - [anon_sym_while] = ACTIONS(2870), - [anon_sym_do] = ACTIONS(2870), - [anon_sym_try] = ACTIONS(2870), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2870), - [anon_sym_debugger] = ACTIONS(2870), - [anon_sym_return] = ACTIONS(2870), - [anon_sym_throw] = ACTIONS(2870), - [anon_sym_case] = ACTIONS(2870), - [anon_sym_yield] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2868), - [anon_sym_DQUOTE] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_class] = ACTIONS(2870), - [anon_sym_async] = ACTIONS(2870), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2870), - [anon_sym_using] = ACTIONS(2870), - [anon_sym_PLUS] = ACTIONS(2870), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_void] = ACTIONS(2870), - [anon_sym_delete] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2868), - [sym_number] = ACTIONS(2868), - [sym_private_property_identifier] = ACTIONS(2868), - [sym_this] = ACTIONS(2870), - [sym_super] = ACTIONS(2870), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_null] = ACTIONS(2870), - [sym_undefined] = ACTIONS(2870), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2870), - [anon_sym_readonly] = ACTIONS(2870), - [anon_sym_get] = ACTIONS(2870), - [anon_sym_set] = ACTIONS(2870), - [anon_sym_declare] = ACTIONS(2870), - [anon_sym_public] = ACTIONS(2870), - [anon_sym_private] = ACTIONS(2870), - [anon_sym_protected] = ACTIONS(2870), - [anon_sym_override] = ACTIONS(2870), - [anon_sym_module] = ACTIONS(2870), - [anon_sym_any] = ACTIONS(2870), - [anon_sym_number] = ACTIONS(2870), - [anon_sym_boolean] = ACTIONS(2870), - [anon_sym_string] = ACTIONS(2870), - [anon_sym_symbol] = ACTIONS(2870), - [anon_sym_object] = ACTIONS(2870), - [anon_sym_abstract] = ACTIONS(2870), - [anon_sym_interface] = ACTIONS(2870), - [anon_sym_enum] = ACTIONS(2870), - [sym_html_comment] = ACTIONS(5), - }, - [892] = { - [ts_builtin_sym_end] = ACTIONS(2872), - [sym_identifier] = ACTIONS(2874), - [anon_sym_export] = ACTIONS(2874), - [anon_sym_default] = ACTIONS(2874), - [anon_sym_type] = ACTIONS(2874), - [anon_sym_namespace] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_typeof] = ACTIONS(2874), - [anon_sym_import] = ACTIONS(2874), - [anon_sym_with] = ACTIONS(2874), - [anon_sym_var] = ACTIONS(2874), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_else] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2874), - [anon_sym_switch] = ACTIONS(2874), - [anon_sym_for] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_await] = ACTIONS(2874), - [anon_sym_while] = ACTIONS(2874), - [anon_sym_do] = ACTIONS(2874), - [anon_sym_try] = ACTIONS(2874), - [anon_sym_break] = ACTIONS(2874), - [anon_sym_continue] = ACTIONS(2874), - [anon_sym_debugger] = ACTIONS(2874), - [anon_sym_return] = ACTIONS(2874), - [anon_sym_throw] = ACTIONS(2874), - [anon_sym_case] = ACTIONS(2874), - [anon_sym_yield] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2872), - [anon_sym_DQUOTE] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_class] = ACTIONS(2874), - [anon_sym_async] = ACTIONS(2874), - [anon_sym_function] = ACTIONS(2874), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_using] = ACTIONS(2874), - [anon_sym_PLUS] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_void] = ACTIONS(2874), - [anon_sym_delete] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2872), - [sym_number] = ACTIONS(2872), - [sym_private_property_identifier] = ACTIONS(2872), - [sym_this] = ACTIONS(2874), - [sym_super] = ACTIONS(2874), - [sym_true] = ACTIONS(2874), - [sym_false] = ACTIONS(2874), - [sym_null] = ACTIONS(2874), - [sym_undefined] = ACTIONS(2874), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2874), - [anon_sym_readonly] = ACTIONS(2874), - [anon_sym_get] = ACTIONS(2874), - [anon_sym_set] = ACTIONS(2874), - [anon_sym_declare] = ACTIONS(2874), - [anon_sym_public] = ACTIONS(2874), - [anon_sym_private] = ACTIONS(2874), - [anon_sym_protected] = ACTIONS(2874), - [anon_sym_override] = ACTIONS(2874), - [anon_sym_module] = ACTIONS(2874), - [anon_sym_any] = ACTIONS(2874), - [anon_sym_number] = ACTIONS(2874), - [anon_sym_boolean] = ACTIONS(2874), - [anon_sym_string] = ACTIONS(2874), - [anon_sym_symbol] = ACTIONS(2874), - [anon_sym_object] = ACTIONS(2874), - [anon_sym_abstract] = ACTIONS(2874), - [anon_sym_interface] = ACTIONS(2874), - [anon_sym_enum] = ACTIONS(2874), - [sym_html_comment] = ACTIONS(5), - }, - [893] = { - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_export] = ACTIONS(2878), - [anon_sym_default] = ACTIONS(2878), - [anon_sym_type] = ACTIONS(2878), - [anon_sym_namespace] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_typeof] = ACTIONS(2878), - [anon_sym_import] = ACTIONS(2878), - [anon_sym_with] = ACTIONS(2878), - [anon_sym_var] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_else] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_switch] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_await] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_debugger] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_throw] = ACTIONS(2878), - [anon_sym_case] = ACTIONS(2878), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_class] = ACTIONS(2878), - [anon_sym_async] = ACTIONS(2878), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_void] = ACTIONS(2878), - [anon_sym_delete] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2876), - [sym_number] = ACTIONS(2876), - [sym_private_property_identifier] = ACTIONS(2876), - [sym_this] = ACTIONS(2878), - [sym_super] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_null] = ACTIONS(2878), - [sym_undefined] = ACTIONS(2878), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2878), - [anon_sym_readonly] = ACTIONS(2878), - [anon_sym_get] = ACTIONS(2878), - [anon_sym_set] = ACTIONS(2878), - [anon_sym_declare] = ACTIONS(2878), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_protected] = ACTIONS(2878), - [anon_sym_override] = ACTIONS(2878), - [anon_sym_module] = ACTIONS(2878), - [anon_sym_any] = ACTIONS(2878), - [anon_sym_number] = ACTIONS(2878), - [anon_sym_boolean] = ACTIONS(2878), - [anon_sym_string] = ACTIONS(2878), - [anon_sym_symbol] = ACTIONS(2878), - [anon_sym_object] = ACTIONS(2878), - [anon_sym_abstract] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), - [sym_html_comment] = ACTIONS(5), - }, - [894] = { - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2882), - [anon_sym_export] = ACTIONS(2882), - [anon_sym_default] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_namespace] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_typeof] = ACTIONS(2882), - [anon_sym_import] = ACTIONS(2882), - [anon_sym_with] = ACTIONS(2882), - [anon_sym_var] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_const] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_else] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2882), - [anon_sym_switch] = ACTIONS(2882), - [anon_sym_for] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2880), - [anon_sym_await] = ACTIONS(2882), - [anon_sym_while] = ACTIONS(2882), - [anon_sym_do] = ACTIONS(2882), - [anon_sym_try] = ACTIONS(2882), - [anon_sym_break] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2882), - [anon_sym_debugger] = ACTIONS(2882), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_throw] = ACTIONS(2882), - [anon_sym_case] = ACTIONS(2882), - [anon_sym_yield] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_DQUOTE] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_class] = ACTIONS(2882), - [anon_sym_async] = ACTIONS(2882), - [anon_sym_function] = ACTIONS(2882), - [anon_sym_new] = ACTIONS(2882), - [anon_sym_using] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_void] = ACTIONS(2882), - [anon_sym_delete] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2880), - [sym_number] = ACTIONS(2880), - [sym_private_property_identifier] = ACTIONS(2880), - [sym_this] = ACTIONS(2882), - [sym_super] = ACTIONS(2882), - [sym_true] = ACTIONS(2882), - [sym_false] = ACTIONS(2882), - [sym_null] = ACTIONS(2882), - [sym_undefined] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_readonly] = ACTIONS(2882), - [anon_sym_get] = ACTIONS(2882), - [anon_sym_set] = ACTIONS(2882), - [anon_sym_declare] = ACTIONS(2882), - [anon_sym_public] = ACTIONS(2882), - [anon_sym_private] = ACTIONS(2882), - [anon_sym_protected] = ACTIONS(2882), - [anon_sym_override] = ACTIONS(2882), - [anon_sym_module] = ACTIONS(2882), - [anon_sym_any] = ACTIONS(2882), - [anon_sym_number] = ACTIONS(2882), - [anon_sym_boolean] = ACTIONS(2882), - [anon_sym_string] = ACTIONS(2882), - [anon_sym_symbol] = ACTIONS(2882), - [anon_sym_object] = ACTIONS(2882), - [anon_sym_abstract] = ACTIONS(2882), - [anon_sym_interface] = ACTIONS(2882), - [anon_sym_enum] = ACTIONS(2882), - [sym_html_comment] = ACTIONS(5), - }, - [895] = { - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2886), - [anon_sym_export] = ACTIONS(2886), - [anon_sym_default] = ACTIONS(2886), - [anon_sym_type] = ACTIONS(2886), - [anon_sym_namespace] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_typeof] = ACTIONS(2886), - [anon_sym_import] = ACTIONS(2886), - [anon_sym_with] = ACTIONS(2886), - [anon_sym_var] = ACTIONS(2886), - [anon_sym_let] = ACTIONS(2886), - [anon_sym_const] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_else] = ACTIONS(2886), - [anon_sym_if] = ACTIONS(2886), - [anon_sym_switch] = ACTIONS(2886), - [anon_sym_for] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2884), - [anon_sym_await] = ACTIONS(2886), - [anon_sym_while] = ACTIONS(2886), - [anon_sym_do] = ACTIONS(2886), - [anon_sym_try] = ACTIONS(2886), - [anon_sym_break] = ACTIONS(2886), - [anon_sym_continue] = ACTIONS(2886), - [anon_sym_debugger] = ACTIONS(2886), - [anon_sym_return] = ACTIONS(2886), - [anon_sym_throw] = ACTIONS(2886), - [anon_sym_case] = ACTIONS(2886), - [anon_sym_yield] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_DQUOTE] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_class] = ACTIONS(2886), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_function] = ACTIONS(2886), - [anon_sym_new] = ACTIONS(2886), - [anon_sym_using] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_SLASH] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_void] = ACTIONS(2886), - [anon_sym_delete] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2884), - [sym_number] = ACTIONS(2884), - [sym_private_property_identifier] = ACTIONS(2884), - [sym_this] = ACTIONS(2886), - [sym_super] = ACTIONS(2886), - [sym_true] = ACTIONS(2886), - [sym_false] = ACTIONS(2886), - [sym_null] = ACTIONS(2886), - [sym_undefined] = ACTIONS(2886), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2886), - [anon_sym_readonly] = ACTIONS(2886), - [anon_sym_get] = ACTIONS(2886), - [anon_sym_set] = ACTIONS(2886), - [anon_sym_declare] = ACTIONS(2886), - [anon_sym_public] = ACTIONS(2886), - [anon_sym_private] = ACTIONS(2886), - [anon_sym_protected] = ACTIONS(2886), - [anon_sym_override] = ACTIONS(2886), - [anon_sym_module] = ACTIONS(2886), - [anon_sym_any] = ACTIONS(2886), - [anon_sym_number] = ACTIONS(2886), - [anon_sym_boolean] = ACTIONS(2886), - [anon_sym_string] = ACTIONS(2886), - [anon_sym_symbol] = ACTIONS(2886), - [anon_sym_object] = ACTIONS(2886), - [anon_sym_abstract] = ACTIONS(2886), - [anon_sym_interface] = ACTIONS(2886), - [anon_sym_enum] = ACTIONS(2886), - [sym_html_comment] = ACTIONS(5), - }, - [896] = { - [ts_builtin_sym_end] = ACTIONS(2888), - [sym_identifier] = ACTIONS(2890), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_default] = ACTIONS(2890), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_typeof] = ACTIONS(2890), - [anon_sym_import] = ACTIONS(2890), - [anon_sym_with] = ACTIONS(2890), - [anon_sym_var] = ACTIONS(2890), - [anon_sym_let] = ACTIONS(2890), - [anon_sym_const] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2888), - [anon_sym_else] = ACTIONS(2890), - [anon_sym_if] = ACTIONS(2890), - [anon_sym_switch] = ACTIONS(2890), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2888), - [anon_sym_await] = ACTIONS(2890), - [anon_sym_while] = ACTIONS(2890), - [anon_sym_do] = ACTIONS(2890), - [anon_sym_try] = ACTIONS(2890), - [anon_sym_break] = ACTIONS(2890), - [anon_sym_continue] = ACTIONS(2890), - [anon_sym_debugger] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2890), - [anon_sym_throw] = ACTIONS(2890), - [anon_sym_case] = ACTIONS(2890), - [anon_sym_yield] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_DQUOTE] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_class] = ACTIONS(2890), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2890), - [anon_sym_new] = ACTIONS(2890), - [anon_sym_using] = ACTIONS(2890), - [anon_sym_PLUS] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_SLASH] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2888), - [anon_sym_TILDE] = ACTIONS(2888), - [anon_sym_void] = ACTIONS(2890), - [anon_sym_delete] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2888), - [sym_number] = ACTIONS(2888), - [sym_private_property_identifier] = ACTIONS(2888), - [sym_this] = ACTIONS(2890), - [sym_super] = ACTIONS(2890), - [sym_true] = ACTIONS(2890), - [sym_false] = ACTIONS(2890), - [sym_null] = ACTIONS(2890), - [sym_undefined] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2890), - [anon_sym_set] = ACTIONS(2890), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [anon_sym_override] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_any] = ACTIONS(2890), - [anon_sym_number] = ACTIONS(2890), - [anon_sym_boolean] = ACTIONS(2890), - [anon_sym_string] = ACTIONS(2890), - [anon_sym_symbol] = ACTIONS(2890), - [anon_sym_object] = ACTIONS(2890), - [anon_sym_abstract] = ACTIONS(2890), - [anon_sym_interface] = ACTIONS(2890), - [anon_sym_enum] = ACTIONS(2890), - [sym_html_comment] = ACTIONS(5), - }, - [897] = { - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_export] = ACTIONS(2894), - [anon_sym_default] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_namespace] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_typeof] = ACTIONS(2894), - [anon_sym_import] = ACTIONS(2894), - [anon_sym_with] = ACTIONS(2894), - [anon_sym_var] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_switch] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_await] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_debugger] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_throw] = ACTIONS(2894), - [anon_sym_case] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_class] = ACTIONS(2894), - [anon_sym_async] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_using] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_void] = ACTIONS(2894), - [anon_sym_delete] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2892), - [sym_number] = ACTIONS(2892), - [sym_private_property_identifier] = ACTIONS(2892), - [sym_this] = ACTIONS(2894), - [sym_super] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_null] = ACTIONS(2894), - [sym_undefined] = ACTIONS(2894), - [anon_sym_AT] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_readonly] = ACTIONS(2894), - [anon_sym_get] = ACTIONS(2894), - [anon_sym_set] = ACTIONS(2894), - [anon_sym_declare] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_protected] = ACTIONS(2894), - [anon_sym_override] = ACTIONS(2894), - [anon_sym_module] = ACTIONS(2894), - [anon_sym_any] = ACTIONS(2894), - [anon_sym_number] = ACTIONS(2894), - [anon_sym_boolean] = ACTIONS(2894), - [anon_sym_string] = ACTIONS(2894), - [anon_sym_symbol] = ACTIONS(2894), - [anon_sym_object] = ACTIONS(2894), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), - [sym_html_comment] = ACTIONS(5), - }, - [898] = { - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_export] = ACTIONS(2898), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_namespace] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_typeof] = ACTIONS(2898), - [anon_sym_import] = ACTIONS(2898), - [anon_sym_with] = ACTIONS(2898), - [anon_sym_var] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_else] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_switch] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2896), - [anon_sym_await] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_debugger] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_throw] = ACTIONS(2898), - [anon_sym_case] = ACTIONS(2898), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_async] = ACTIONS(2898), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_using] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_void] = ACTIONS(2898), - [anon_sym_delete] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2896), - [sym_number] = ACTIONS(2896), - [sym_private_property_identifier] = ACTIONS(2896), - [sym_this] = ACTIONS(2898), - [sym_super] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_null] = ACTIONS(2898), - [sym_undefined] = ACTIONS(2898), - [anon_sym_AT] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_readonly] = ACTIONS(2898), - [anon_sym_get] = ACTIONS(2898), - [anon_sym_set] = ACTIONS(2898), - [anon_sym_declare] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_protected] = ACTIONS(2898), - [anon_sym_override] = ACTIONS(2898), - [anon_sym_module] = ACTIONS(2898), - [anon_sym_any] = ACTIONS(2898), - [anon_sym_number] = ACTIONS(2898), - [anon_sym_boolean] = ACTIONS(2898), - [anon_sym_string] = ACTIONS(2898), - [anon_sym_symbol] = ACTIONS(2898), - [anon_sym_object] = ACTIONS(2898), - [anon_sym_abstract] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), - [sym_html_comment] = ACTIONS(5), - }, - [899] = { - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_export] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_namespace] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_typeof] = ACTIONS(2902), - [anon_sym_import] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2902), - [anon_sym_var] = ACTIONS(2902), - [anon_sym_let] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_else] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_switch] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym_await] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2902), - [anon_sym_do] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_debugger] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_throw] = ACTIONS(2902), - [anon_sym_case] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_class] = ACTIONS(2902), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2902), - [anon_sym_using] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_void] = ACTIONS(2902), - [anon_sym_delete] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2900), - [sym_number] = ACTIONS(2900), - [sym_private_property_identifier] = ACTIONS(2900), - [sym_this] = ACTIONS(2902), - [sym_super] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_null] = ACTIONS(2902), - [sym_undefined] = ACTIONS(2902), - [anon_sym_AT] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_readonly] = ACTIONS(2902), - [anon_sym_get] = ACTIONS(2902), - [anon_sym_set] = ACTIONS(2902), - [anon_sym_declare] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_protected] = ACTIONS(2902), - [anon_sym_override] = ACTIONS(2902), - [anon_sym_module] = ACTIONS(2902), - [anon_sym_any] = ACTIONS(2902), - [anon_sym_number] = ACTIONS(2902), - [anon_sym_boolean] = ACTIONS(2902), - [anon_sym_string] = ACTIONS(2902), - [anon_sym_symbol] = ACTIONS(2902), - [anon_sym_object] = ACTIONS(2902), - [anon_sym_abstract] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [sym_html_comment] = ACTIONS(5), - }, - [900] = { - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_export] = ACTIONS(2906), - [anon_sym_default] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_namespace] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_typeof] = ACTIONS(2906), - [anon_sym_import] = ACTIONS(2906), - [anon_sym_with] = ACTIONS(2906), - [anon_sym_var] = ACTIONS(2906), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_else] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_switch] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_await] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_debugger] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_throw] = ACTIONS(2906), - [anon_sym_case] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_SQUOTE] = ACTIONS(2904), - [anon_sym_class] = ACTIONS(2906), - [anon_sym_async] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_using] = ACTIONS(2906), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_void] = ACTIONS(2906), - [anon_sym_delete] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2904), - [sym_number] = ACTIONS(2904), - [sym_private_property_identifier] = ACTIONS(2904), - [sym_this] = ACTIONS(2906), - [sym_super] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_null] = ACTIONS(2906), - [sym_undefined] = ACTIONS(2906), - [anon_sym_AT] = ACTIONS(2904), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_readonly] = ACTIONS(2906), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_declare] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_protected] = ACTIONS(2906), - [anon_sym_override] = ACTIONS(2906), - [anon_sym_module] = ACTIONS(2906), - [anon_sym_any] = ACTIONS(2906), - [anon_sym_number] = ACTIONS(2906), - [anon_sym_boolean] = ACTIONS(2906), - [anon_sym_string] = ACTIONS(2906), - [anon_sym_symbol] = ACTIONS(2906), - [anon_sym_object] = ACTIONS(2906), - [anon_sym_abstract] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), - [sym_html_comment] = ACTIONS(5), - }, - [901] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [sym_html_comment] = ACTIONS(5), - }, - [902] = { - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_export] = ACTIONS(2910), - [anon_sym_default] = ACTIONS(2910), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_namespace] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_typeof] = ACTIONS(2910), - [anon_sym_import] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2910), - [anon_sym_var] = ACTIONS(2910), - [anon_sym_let] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_else] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_switch] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2908), - [anon_sym_await] = ACTIONS(2910), - [anon_sym_while] = ACTIONS(2910), - [anon_sym_do] = ACTIONS(2910), - [anon_sym_try] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_debugger] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_throw] = ACTIONS(2910), - [anon_sym_case] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_SQUOTE] = ACTIONS(2908), - [anon_sym_class] = ACTIONS(2910), - [anon_sym_async] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2910), - [anon_sym_new] = ACTIONS(2910), - [anon_sym_using] = ACTIONS(2910), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_void] = ACTIONS(2910), - [anon_sym_delete] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2908), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [sym_this] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_null] = ACTIONS(2910), - [sym_undefined] = ACTIONS(2910), - [anon_sym_AT] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_readonly] = ACTIONS(2910), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_protected] = ACTIONS(2910), - [anon_sym_override] = ACTIONS(2910), - [anon_sym_module] = ACTIONS(2910), - [anon_sym_any] = ACTIONS(2910), - [anon_sym_number] = ACTIONS(2910), - [anon_sym_boolean] = ACTIONS(2910), - [anon_sym_string] = ACTIONS(2910), - [anon_sym_symbol] = ACTIONS(2910), - [anon_sym_object] = ACTIONS(2910), - [anon_sym_abstract] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), - [sym_html_comment] = ACTIONS(5), - }, - [903] = { - [ts_builtin_sym_end] = ACTIONS(2912), - [sym_identifier] = ACTIONS(2914), - [anon_sym_export] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_type] = ACTIONS(2914), - [anon_sym_namespace] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_typeof] = ACTIONS(2914), - [anon_sym_import] = ACTIONS(2914), - [anon_sym_with] = ACTIONS(2914), - [anon_sym_var] = ACTIONS(2914), - [anon_sym_let] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_else] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_await] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_try] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_debugger] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_throw] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2914), - [anon_sym_yield] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_SQUOTE] = ACTIONS(2912), - [anon_sym_class] = ACTIONS(2914), - [anon_sym_async] = ACTIONS(2914), - [anon_sym_function] = ACTIONS(2914), - [anon_sym_new] = ACTIONS(2914), - [anon_sym_using] = ACTIONS(2914), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_SLASH] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(2912), - [anon_sym_void] = ACTIONS(2914), - [anon_sym_delete] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2912), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2912), - [sym_number] = ACTIONS(2912), - [sym_private_property_identifier] = ACTIONS(2912), - [sym_this] = ACTIONS(2914), - [sym_super] = ACTIONS(2914), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_null] = ACTIONS(2914), - [sym_undefined] = ACTIONS(2914), - [anon_sym_AT] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_readonly] = ACTIONS(2914), - [anon_sym_get] = ACTIONS(2914), - [anon_sym_set] = ACTIONS(2914), - [anon_sym_declare] = ACTIONS(2914), - [anon_sym_public] = ACTIONS(2914), - [anon_sym_private] = ACTIONS(2914), - [anon_sym_protected] = ACTIONS(2914), - [anon_sym_override] = ACTIONS(2914), - [anon_sym_module] = ACTIONS(2914), - [anon_sym_any] = ACTIONS(2914), - [anon_sym_number] = ACTIONS(2914), - [anon_sym_boolean] = ACTIONS(2914), - [anon_sym_string] = ACTIONS(2914), - [anon_sym_symbol] = ACTIONS(2914), - [anon_sym_object] = ACTIONS(2914), - [anon_sym_abstract] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [sym_html_comment] = ACTIONS(5), - }, - [904] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_typeof] = ACTIONS(1835), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_var] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_debugger] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_function] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_void] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1833), - [sym_number] = ACTIONS(1833), - [sym_private_property_identifier] = ACTIONS(1833), - [sym_this] = ACTIONS(1835), - [sym_super] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_readonly] = ACTIONS(1835), - [anon_sym_get] = ACTIONS(1835), - [anon_sym_set] = ACTIONS(1835), - [anon_sym_declare] = ACTIONS(1835), - [anon_sym_public] = ACTIONS(1835), - [anon_sym_private] = ACTIONS(1835), - [anon_sym_protected] = ACTIONS(1835), - [anon_sym_override] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_any] = ACTIONS(1835), - [anon_sym_number] = ACTIONS(1835), - [anon_sym_boolean] = ACTIONS(1835), - [anon_sym_string] = ACTIONS(1835), - [anon_sym_symbol] = ACTIONS(1835), - [anon_sym_object] = ACTIONS(1835), - [anon_sym_abstract] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [sym_html_comment] = ACTIONS(5), - }, - [905] = { - [ts_builtin_sym_end] = ACTIONS(2916), - [sym_identifier] = ACTIONS(2918), - [anon_sym_export] = ACTIONS(2918), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_type] = ACTIONS(2918), - [anon_sym_namespace] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_typeof] = ACTIONS(2918), - [anon_sym_import] = ACTIONS(2918), - [anon_sym_with] = ACTIONS(2918), - [anon_sym_var] = ACTIONS(2918), - [anon_sym_let] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_else] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_switch] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2916), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_await] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_try] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_debugger] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_throw] = ACTIONS(2918), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_yield] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_SQUOTE] = ACTIONS(2916), - [anon_sym_class] = ACTIONS(2918), - [anon_sym_async] = ACTIONS(2918), - [anon_sym_function] = ACTIONS(2918), - [anon_sym_new] = ACTIONS(2918), - [anon_sym_using] = ACTIONS(2918), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_SLASH] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_void] = ACTIONS(2918), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2916), - [sym_number] = ACTIONS(2916), - [sym_private_property_identifier] = ACTIONS(2916), - [sym_this] = ACTIONS(2918), - [sym_super] = ACTIONS(2918), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_null] = ACTIONS(2918), - [sym_undefined] = ACTIONS(2918), - [anon_sym_AT] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_readonly] = ACTIONS(2918), - [anon_sym_get] = ACTIONS(2918), - [anon_sym_set] = ACTIONS(2918), - [anon_sym_declare] = ACTIONS(2918), - [anon_sym_public] = ACTIONS(2918), - [anon_sym_private] = ACTIONS(2918), - [anon_sym_protected] = ACTIONS(2918), - [anon_sym_override] = ACTIONS(2918), - [anon_sym_module] = ACTIONS(2918), - [anon_sym_any] = ACTIONS(2918), - [anon_sym_number] = ACTIONS(2918), - [anon_sym_boolean] = ACTIONS(2918), - [anon_sym_string] = ACTIONS(2918), - [anon_sym_symbol] = ACTIONS(2918), - [anon_sym_object] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2918), - [anon_sym_interface] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [sym_html_comment] = ACTIONS(5), - }, - [906] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(910)] = { + [ts_builtin_sym_end] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2922), + [anon_sym_export] = ACTIONS(2922), + [anon_sym_default] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_namespace] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_RBRACE] = ACTIONS(2920), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_import] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2922), + [anon_sym_var] = ACTIONS(2922), + [anon_sym_let] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2920), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_switch] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_await] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_try] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_debugger] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_throw] = ACTIONS(2922), + [anon_sym_case] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2922), + [anon_sym_async] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2922), + [anon_sym_using] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_SLASH] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2920), + [anon_sym_void] = ACTIONS(2922), + [anon_sym_delete] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2920), + [sym_number] = ACTIONS(2920), + [sym_private_property_identifier] = ACTIONS(2920), + [sym_this] = ACTIONS(2922), + [sym_super] = ACTIONS(2922), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [sym_null] = ACTIONS(2922), + [sym_undefined] = ACTIONS(2922), + [anon_sym_AT] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_readonly] = ACTIONS(2922), + [anon_sym_get] = ACTIONS(2922), + [anon_sym_set] = ACTIONS(2922), + [anon_sym_declare] = ACTIONS(2922), + [anon_sym_public] = ACTIONS(2922), + [anon_sym_private] = ACTIONS(2922), + [anon_sym_protected] = ACTIONS(2922), + [anon_sym_override] = ACTIONS(2922), + [anon_sym_module] = ACTIONS(2922), + [anon_sym_any] = ACTIONS(2922), + [anon_sym_number] = ACTIONS(2922), + [anon_sym_boolean] = ACTIONS(2922), + [anon_sym_string] = ACTIONS(2922), + [anon_sym_symbol] = ACTIONS(2922), + [anon_sym_object] = ACTIONS(2922), + [anon_sym_abstract] = ACTIONS(2922), + [anon_sym_interface] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(911)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(2920), + [anon_sym_RBRACK] = ACTIONS(2924), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -118214,106 +118829,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [907] = { - [ts_builtin_sym_end] = ACTIONS(2922), - [sym_identifier] = ACTIONS(2924), - [anon_sym_export] = ACTIONS(2924), - [anon_sym_default] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_namespace] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym_typeof] = ACTIONS(2924), - [anon_sym_import] = ACTIONS(2924), - [anon_sym_with] = ACTIONS(2924), - [anon_sym_var] = ACTIONS(2924), - [anon_sym_let] = ACTIONS(2924), - [anon_sym_const] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_else] = ACTIONS(2924), - [anon_sym_if] = ACTIONS(2924), - [anon_sym_switch] = ACTIONS(2924), - [anon_sym_for] = ACTIONS(2924), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_await] = ACTIONS(2924), - [anon_sym_while] = ACTIONS(2924), - [anon_sym_do] = ACTIONS(2924), - [anon_sym_try] = ACTIONS(2924), - [anon_sym_break] = ACTIONS(2924), - [anon_sym_continue] = ACTIONS(2924), - [anon_sym_debugger] = ACTIONS(2924), - [anon_sym_return] = ACTIONS(2924), - [anon_sym_throw] = ACTIONS(2924), - [anon_sym_case] = ACTIONS(2924), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_SQUOTE] = ACTIONS(2922), - [anon_sym_class] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_using] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_SLASH] = ACTIONS(2924), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_TILDE] = ACTIONS(2922), - [anon_sym_void] = ACTIONS(2924), - [anon_sym_delete] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2922), - [anon_sym_DASH_DASH] = ACTIONS(2922), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2922), - [sym_number] = ACTIONS(2922), - [sym_private_property_identifier] = ACTIONS(2922), - [sym_this] = ACTIONS(2924), - [sym_super] = ACTIONS(2924), - [sym_true] = ACTIONS(2924), - [sym_false] = ACTIONS(2924), - [sym_null] = ACTIONS(2924), - [sym_undefined] = ACTIONS(2924), - [anon_sym_AT] = ACTIONS(2922), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_readonly] = ACTIONS(2924), - [anon_sym_get] = ACTIONS(2924), - [anon_sym_set] = ACTIONS(2924), - [anon_sym_declare] = ACTIONS(2924), - [anon_sym_public] = ACTIONS(2924), - [anon_sym_private] = ACTIONS(2924), - [anon_sym_protected] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_any] = ACTIONS(2924), - [anon_sym_number] = ACTIONS(2924), - [anon_sym_boolean] = ACTIONS(2924), - [anon_sym_string] = ACTIONS(2924), - [anon_sym_symbol] = ACTIONS(2924), - [anon_sym_object] = ACTIONS(2924), - [anon_sym_abstract] = ACTIONS(2924), - [anon_sym_interface] = ACTIONS(2924), - [anon_sym_enum] = ACTIONS(2924), - [sym_html_comment] = ACTIONS(5), - }, - [908] = { + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(912)] = { [ts_builtin_sym_end] = ACTIONS(2926), [sym_identifier] = ACTIONS(2928), [anon_sym_export] = ACTIONS(2928), @@ -118395,7 +118928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2928), [sym_html_comment] = ACTIONS(5), }, - [909] = { + [STATE(913)] = { [ts_builtin_sym_end] = ACTIONS(2930), [sym_identifier] = ACTIONS(2932), [anon_sym_export] = ACTIONS(2932), @@ -118477,7 +119010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2932), [sym_html_comment] = ACTIONS(5), }, - [910] = { + [STATE(914)] = { [ts_builtin_sym_end] = ACTIONS(2934), [sym_identifier] = ACTIONS(2936), [anon_sym_export] = ACTIONS(2936), @@ -118559,335 +119092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2936), [sym_html_comment] = ACTIONS(5), }, - [911] = { - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_namespace] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_typeof] = ACTIONS(1841), - [anon_sym_import] = ACTIONS(1841), - [anon_sym_with] = ACTIONS(1841), - [anon_sym_var] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_switch] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_await] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_do] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_debugger] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_throw] = ACTIONS(1841), - [anon_sym_case] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_class] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_function] = ACTIONS(1841), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_void] = ACTIONS(1841), - [anon_sym_delete] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1839), - [sym_number] = ACTIONS(1839), - [sym_private_property_identifier] = ACTIONS(1839), - [sym_this] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_null] = ACTIONS(1841), - [sym_undefined] = ACTIONS(1841), - [anon_sym_AT] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_get] = ACTIONS(1841), - [anon_sym_set] = ACTIONS(1841), - [anon_sym_declare] = ACTIONS(1841), - [anon_sym_public] = ACTIONS(1841), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_protected] = ACTIONS(1841), - [anon_sym_override] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1841), - [anon_sym_any] = ACTIONS(1841), - [anon_sym_number] = ACTIONS(1841), - [anon_sym_boolean] = ACTIONS(1841), - [anon_sym_string] = ACTIONS(1841), - [anon_sym_symbol] = ACTIONS(1841), - [anon_sym_object] = ACTIONS(1841), - [anon_sym_abstract] = ACTIONS(1841), - [anon_sym_interface] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [sym_html_comment] = ACTIONS(5), - }, - [912] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [sym_html_comment] = ACTIONS(5), - }, - [913] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [sym_html_comment] = ACTIONS(5), - }, - [914] = { - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_namespace] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_typeof] = ACTIONS(2744), - [anon_sym_import] = ACTIONS(2744), - [anon_sym_with] = ACTIONS(2744), - [anon_sym_var] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_switch] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_await] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_do] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_debugger] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_throw] = ACTIONS(2744), - [anon_sym_case] = ACTIONS(2744), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_DQUOTE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(2744), - [anon_sym_new] = ACTIONS(2744), - [anon_sym_using] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_SLASH] = ACTIONS(2744), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_void] = ACTIONS(2744), - [anon_sym_delete] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2742), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2742), - [sym_number] = ACTIONS(2742), - [sym_private_property_identifier] = ACTIONS(2742), - [sym_this] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_undefined] = ACTIONS(2744), - [anon_sym_AT] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_readonly] = ACTIONS(2744), - [anon_sym_get] = ACTIONS(2744), - [anon_sym_set] = ACTIONS(2744), - [anon_sym_declare] = ACTIONS(2744), - [anon_sym_public] = ACTIONS(2744), - [anon_sym_private] = ACTIONS(2744), - [anon_sym_protected] = ACTIONS(2744), - [anon_sym_override] = ACTIONS(2744), - [anon_sym_module] = ACTIONS(2744), - [anon_sym_any] = ACTIONS(2744), - [anon_sym_number] = ACTIONS(2744), - [anon_sym_boolean] = ACTIONS(2744), - [anon_sym_string] = ACTIONS(2744), - [anon_sym_symbol] = ACTIONS(2744), - [anon_sym_object] = ACTIONS(2744), - [anon_sym_abstract] = ACTIONS(2744), - [anon_sym_interface] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [sym_html_comment] = ACTIONS(5), - }, - [915] = { + [STATE(915)] = { [ts_builtin_sym_end] = ACTIONS(2938), [sym_identifier] = ACTIONS(2940), [anon_sym_export] = ACTIONS(2940), @@ -118969,62 +119174,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2940), [sym_html_comment] = ACTIONS(5), }, - [916] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_rest_pattern] = STATE(5415), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3806), - [sym_tuple_parameter] = STATE(5460), - [sym_optional_tuple_parameter] = STATE(5460), - [sym_optional_type] = STATE(5460), - [sym_rest_type] = STATE(5460), - [sym__tuple_type_member] = STATE(5460), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(605), + [STATE(916)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -119033,2535 +119238,2460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [917] = { + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(917)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2923), + [sym_type] = STATE(3112), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2923), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(2942), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_namespace] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_typeof] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_await] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_void] = ACTIONS(2942), - [anon_sym_delete] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2944), - [sym_number] = ACTIONS(2944), - [sym_private_property_identifier] = ACTIONS(2944), - [sym_this] = ACTIONS(2942), - [sym_super] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_null] = ACTIONS(2942), - [sym_undefined] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_readonly] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_declare] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_protected] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_any] = ACTIONS(2942), - [anon_sym_number] = ACTIONS(2942), - [anon_sym_boolean] = ACTIONS(2942), - [anon_sym_string] = ACTIONS(2942), - [anon_sym_symbol] = ACTIONS(2942), - [anon_sym_object] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [sym_html_comment] = ACTIONS(5), - }, - [918] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_asserts] = STATE(3818), - [sym_type] = STATE(3279), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_predicate] = STATE(3832), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3163), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(2950), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_asserts] = ACTIONS(2952), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [919] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_asserts] = STATE(3250), - [sym_type] = STATE(3236), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_predicate] = STATE(3250), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3163), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(2950), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_asserts] = ACTIONS(2952), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [920] = { - [sym_identifier] = ACTIONS(2954), - [anon_sym_export] = ACTIONS(2954), - [anon_sym_type] = ACTIONS(2954), - [anon_sym_namespace] = ACTIONS(2954), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_typeof] = ACTIONS(2954), - [anon_sym_import] = ACTIONS(2954), - [anon_sym_with] = ACTIONS(2954), - [anon_sym_var] = ACTIONS(2954), - [anon_sym_let] = ACTIONS(2954), - [anon_sym_const] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_if] = ACTIONS(2954), - [anon_sym_switch] = ACTIONS(2954), - [anon_sym_for] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_SEMI] = ACTIONS(2956), - [anon_sym_await] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2954), - [anon_sym_do] = ACTIONS(2954), - [anon_sym_try] = ACTIONS(2954), - [anon_sym_break] = ACTIONS(2954), - [anon_sym_continue] = ACTIONS(2954), - [anon_sym_debugger] = ACTIONS(2954), - [anon_sym_return] = ACTIONS(2954), - [anon_sym_throw] = ACTIONS(2954), - [anon_sym_yield] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_SQUOTE] = ACTIONS(2956), - [anon_sym_class] = ACTIONS(2954), - [anon_sym_async] = ACTIONS(2954), - [anon_sym_function] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2954), - [anon_sym_using] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2954), - [anon_sym_DASH] = ACTIONS(2954), - [anon_sym_SLASH] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2956), - [anon_sym_void] = ACTIONS(2954), - [anon_sym_delete] = ACTIONS(2954), - [anon_sym_PLUS_PLUS] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(2956), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2956), - [sym_number] = ACTIONS(2956), - [sym_private_property_identifier] = ACTIONS(2956), - [sym_this] = ACTIONS(2954), - [sym_super] = ACTIONS(2954), - [sym_true] = ACTIONS(2954), - [sym_false] = ACTIONS(2954), - [sym_null] = ACTIONS(2954), - [sym_undefined] = ACTIONS(2954), - [anon_sym_AT] = ACTIONS(2956), - [anon_sym_static] = ACTIONS(2954), - [anon_sym_readonly] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2954), - [anon_sym_set] = ACTIONS(2954), - [anon_sym_declare] = ACTIONS(2954), - [anon_sym_public] = ACTIONS(2954), - [anon_sym_private] = ACTIONS(2954), - [anon_sym_protected] = ACTIONS(2954), - [anon_sym_override] = ACTIONS(2954), - [anon_sym_module] = ACTIONS(2954), - [anon_sym_any] = ACTIONS(2954), - [anon_sym_number] = ACTIONS(2954), - [anon_sym_boolean] = ACTIONS(2954), - [anon_sym_string] = ACTIONS(2954), - [anon_sym_symbol] = ACTIONS(2954), - [anon_sym_object] = ACTIONS(2954), - [anon_sym_abstract] = ACTIONS(2954), - [anon_sym_interface] = ACTIONS(2954), - [anon_sym_enum] = ACTIONS(2954), - [sym_html_comment] = ACTIONS(5), - }, - [921] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(5475), - [sym_type] = STATE(3422), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(5225), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(2960), + [sym_this] = ACTIONS(2944), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_asserts] = ACTIONS(2962), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [922] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2903), - [sym_type] = STATE(3898), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2903), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3725), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(2946), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(918)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2908), + [sym_type] = STATE(3054), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2908), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(2980), + [sym_this] = ACTIONS(2944), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_asserts] = ACTIONS(2988), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [923] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2988), - [sym_type] = STATE(3829), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2988), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3725), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(2946), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(919)] = { + [sym_identifier] = ACTIONS(2948), + [anon_sym_export] = ACTIONS(2948), + [anon_sym_type] = ACTIONS(2948), + [anon_sym_namespace] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_typeof] = ACTIONS(2948), + [anon_sym_import] = ACTIONS(2948), + [anon_sym_with] = ACTIONS(2948), + [anon_sym_var] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_await] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_debugger] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2948), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_void] = ACTIONS(2948), + [anon_sym_delete] = ACTIONS(2948), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2950), + [sym_number] = ACTIONS(2950), + [sym_private_property_identifier] = ACTIONS(2950), + [sym_this] = ACTIONS(2948), + [sym_super] = ACTIONS(2948), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [sym_null] = ACTIONS(2948), + [sym_undefined] = ACTIONS(2948), + [anon_sym_AT] = ACTIONS(2950), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_readonly] = ACTIONS(2948), + [anon_sym_get] = ACTIONS(2948), + [anon_sym_set] = ACTIONS(2948), + [anon_sym_declare] = ACTIONS(2948), + [anon_sym_public] = ACTIONS(2948), + [anon_sym_private] = ACTIONS(2948), + [anon_sym_protected] = ACTIONS(2948), + [anon_sym_override] = ACTIONS(2948), + [anon_sym_module] = ACTIONS(2948), + [anon_sym_any] = ACTIONS(2948), + [anon_sym_number] = ACTIONS(2948), + [anon_sym_boolean] = ACTIONS(2948), + [anon_sym_string] = ACTIONS(2948), + [anon_sym_symbol] = ACTIONS(2948), + [anon_sym_object] = ACTIONS(2948), + [anon_sym_abstract] = ACTIONS(2948), + [anon_sym_interface] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(920)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_asserts] = STATE(3228), + [sym_type] = STATE(3229), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_predicate] = STATE(3228), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3136), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(2956), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_asserts] = ACTIONS(2958), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(921)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_asserts] = STATE(3239), + [sym_type] = STATE(3240), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_predicate] = STATE(3239), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3136), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(2956), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_asserts] = ACTIONS(2958), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(922)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_asserts] = STATE(3818), + [sym_type] = STATE(3267), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_predicate] = STATE(3819), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3136), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(2956), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_asserts] = ACTIONS(2958), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(923)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_asserts] = STATE(1569), + [sym_type] = STATE(1570), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_predicate] = STATE(1569), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1471), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_AMP3] = ACTIONS(2976), [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(2980), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_asserts] = ACTIONS(2988), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [924] = { - [sym_identifier] = ACTIONS(2942), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_namespace] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_typeof] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_await] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_void] = ACTIONS(2942), - [anon_sym_delete] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2944), - [sym_number] = ACTIONS(2944), - [sym_private_property_identifier] = ACTIONS(2944), - [sym_this] = ACTIONS(2942), - [sym_super] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_null] = ACTIONS(2942), - [sym_undefined] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_readonly] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_declare] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_protected] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_any] = ACTIONS(2942), - [anon_sym_number] = ACTIONS(2942), - [anon_sym_boolean] = ACTIONS(2942), - [anon_sym_string] = ACTIONS(2942), - [anon_sym_symbol] = ACTIONS(2942), - [anon_sym_object] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [sym_html_comment] = ACTIONS(5), - }, - [925] = { - [sym_identifier] = ACTIONS(2942), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_namespace] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_typeof] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_await] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_void] = ACTIONS(2942), - [anon_sym_delete] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2944), - [sym_number] = ACTIONS(2944), - [sym_private_property_identifier] = ACTIONS(2944), - [sym_this] = ACTIONS(2942), - [sym_super] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_null] = ACTIONS(2942), - [sym_undefined] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_readonly] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_declare] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_protected] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_any] = ACTIONS(2942), - [anon_sym_number] = ACTIONS(2942), - [anon_sym_boolean] = ACTIONS(2942), - [anon_sym_string] = ACTIONS(2942), - [anon_sym_symbol] = ACTIONS(2942), - [anon_sym_object] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [sym_html_comment] = ACTIONS(5), - }, - [926] = { - [sym_identifier] = ACTIONS(2942), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_namespace] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_typeof] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_await] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_void] = ACTIONS(2942), - [anon_sym_delete] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2944), - [sym_number] = ACTIONS(2944), - [sym_private_property_identifier] = ACTIONS(2944), - [sym_this] = ACTIONS(2942), - [sym_super] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_null] = ACTIONS(2942), - [sym_undefined] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_readonly] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_declare] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_protected] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_any] = ACTIONS(2942), - [anon_sym_number] = ACTIONS(2942), - [anon_sym_boolean] = ACTIONS(2942), - [anon_sym_string] = ACTIONS(2942), - [anon_sym_symbol] = ACTIONS(2942), - [anon_sym_object] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [sym_html_comment] = ACTIONS(5), - }, - [927] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_asserts] = STATE(1915), - [sym_type] = STATE(1916), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_predicate] = STATE(1915), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1840), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3024), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_asserts] = ACTIONS(3034), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [928] = { - [sym_identifier] = ACTIONS(2942), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_namespace] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_typeof] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_await] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_void] = ACTIONS(2942), - [anon_sym_delete] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2944), - [sym_number] = ACTIONS(2944), - [sym_private_property_identifier] = ACTIONS(2944), - [sym_this] = ACTIONS(2942), - [sym_super] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_null] = ACTIONS(2942), - [sym_undefined] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_readonly] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_declare] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_protected] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_any] = ACTIONS(2942), - [anon_sym_number] = ACTIONS(2942), - [anon_sym_boolean] = ACTIONS(2942), - [anon_sym_string] = ACTIONS(2942), - [anon_sym_symbol] = ACTIONS(2942), - [anon_sym_object] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [sym_html_comment] = ACTIONS(5), - }, - [929] = { - [sym_identifier] = ACTIONS(2942), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_namespace] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_typeof] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_await] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_void] = ACTIONS(2942), - [anon_sym_delete] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2944), - [sym_number] = ACTIONS(2944), - [sym_private_property_identifier] = ACTIONS(2944), - [sym_this] = ACTIONS(2942), - [sym_super] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_null] = ACTIONS(2942), - [sym_undefined] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_readonly] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_declare] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_protected] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_any] = ACTIONS(2942), - [anon_sym_number] = ACTIONS(2942), - [anon_sym_boolean] = ACTIONS(2942), - [anon_sym_string] = ACTIONS(2942), - [anon_sym_symbol] = ACTIONS(2942), - [anon_sym_object] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [sym_html_comment] = ACTIONS(5), - }, - [930] = { - [sym_identifier] = ACTIONS(2942), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_namespace] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_typeof] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_await] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_void] = ACTIONS(2942), - [anon_sym_delete] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2944), - [sym_number] = ACTIONS(2944), - [sym_private_property_identifier] = ACTIONS(2944), - [sym_this] = ACTIONS(2942), - [sym_super] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_null] = ACTIONS(2942), - [sym_undefined] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_readonly] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_declare] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_protected] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_any] = ACTIONS(2942), - [anon_sym_number] = ACTIONS(2942), - [anon_sym_boolean] = ACTIONS(2942), - [anon_sym_string] = ACTIONS(2942), - [anon_sym_symbol] = ACTIONS(2942), - [anon_sym_object] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [sym_html_comment] = ACTIONS(5), - }, - [931] = { - [sym_identifier] = ACTIONS(2942), - [anon_sym_export] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_namespace] = ACTIONS(2942), - [anon_sym_LBRACE] = ACTIONS(2944), - [anon_sym_typeof] = ACTIONS(2942), - [anon_sym_import] = ACTIONS(2942), - [anon_sym_with] = ACTIONS(2942), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_const] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_switch] = ACTIONS(2942), - [anon_sym_for] = ACTIONS(2942), - [anon_sym_LPAREN] = ACTIONS(2944), - [anon_sym_SEMI] = ACTIONS(2944), - [anon_sym_await] = ACTIONS(2942), - [anon_sym_while] = ACTIONS(2942), - [anon_sym_do] = ACTIONS(2942), - [anon_sym_try] = ACTIONS(2942), - [anon_sym_break] = ACTIONS(2942), - [anon_sym_continue] = ACTIONS(2942), - [anon_sym_debugger] = ACTIONS(2942), - [anon_sym_return] = ACTIONS(2942), - [anon_sym_throw] = ACTIONS(2942), - [anon_sym_yield] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_async] = ACTIONS(2942), - [anon_sym_function] = ACTIONS(2942), - [anon_sym_new] = ACTIONS(2942), - [anon_sym_using] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2942), - [anon_sym_DASH] = ACTIONS(2942), - [anon_sym_SLASH] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2944), - [anon_sym_void] = ACTIONS(2942), - [anon_sym_delete] = ACTIONS(2942), - [anon_sym_PLUS_PLUS] = ACTIONS(2944), - [anon_sym_DASH_DASH] = ACTIONS(2944), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2944), - [sym_number] = ACTIONS(2944), - [sym_private_property_identifier] = ACTIONS(2944), - [sym_this] = ACTIONS(2942), - [sym_super] = ACTIONS(2942), - [sym_true] = ACTIONS(2942), - [sym_false] = ACTIONS(2942), - [sym_null] = ACTIONS(2942), - [sym_undefined] = ACTIONS(2942), - [anon_sym_AT] = ACTIONS(2944), - [anon_sym_static] = ACTIONS(2942), - [anon_sym_readonly] = ACTIONS(2942), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_declare] = ACTIONS(2942), - [anon_sym_public] = ACTIONS(2942), - [anon_sym_private] = ACTIONS(2942), - [anon_sym_protected] = ACTIONS(2942), - [anon_sym_override] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_any] = ACTIONS(2942), - [anon_sym_number] = ACTIONS(2942), - [anon_sym_boolean] = ACTIONS(2942), - [anon_sym_string] = ACTIONS(2942), - [anon_sym_symbol] = ACTIONS(2942), - [anon_sym_object] = ACTIONS(2942), - [anon_sym_abstract] = ACTIONS(2942), - [anon_sym_interface] = ACTIONS(2942), - [anon_sym_enum] = ACTIONS(2942), - [sym_html_comment] = ACTIONS(5), - }, - [932] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_asserts] = STATE(3381), - [sym_type] = STATE(3382), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_predicate] = STATE(3381), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3280), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_asserts] = ACTIONS(2998), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(924)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_asserts] = STATE(1602), + [sym_type] = STATE(1551), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_predicate] = STATE(1602), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1471), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3076), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_asserts] = ACTIONS(3086), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [933] = { - [sym_identifier] = ACTIONS(3096), - [anon_sym_export] = ACTIONS(3096), - [anon_sym_type] = ACTIONS(3096), - [anon_sym_namespace] = ACTIONS(3096), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_typeof] = ACTIONS(3096), - [anon_sym_import] = ACTIONS(3096), - [anon_sym_with] = ACTIONS(3096), - [anon_sym_var] = ACTIONS(3096), - [anon_sym_let] = ACTIONS(3096), - [anon_sym_const] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3096), - [anon_sym_switch] = ACTIONS(3096), - [anon_sym_for] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3098), - [anon_sym_await] = ACTIONS(3096), - [anon_sym_while] = ACTIONS(3096), - [anon_sym_do] = ACTIONS(3096), - [anon_sym_try] = ACTIONS(3096), - [anon_sym_break] = ACTIONS(3096), - [anon_sym_continue] = ACTIONS(3096), - [anon_sym_debugger] = ACTIONS(3096), - [anon_sym_return] = ACTIONS(3096), - [anon_sym_throw] = ACTIONS(3096), - [anon_sym_yield] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3098), - [anon_sym_DQUOTE] = ACTIONS(3098), - [anon_sym_SQUOTE] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3096), - [anon_sym_async] = ACTIONS(3096), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_new] = ACTIONS(3096), - [anon_sym_using] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3096), - [anon_sym_DASH] = ACTIONS(3096), - [anon_sym_SLASH] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3098), - [anon_sym_void] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3098), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3098), - [sym_number] = ACTIONS(3098), - [sym_private_property_identifier] = ACTIONS(3098), - [sym_this] = ACTIONS(3096), - [sym_super] = ACTIONS(3096), - [sym_true] = ACTIONS(3096), - [sym_false] = ACTIONS(3096), - [sym_null] = ACTIONS(3096), - [sym_undefined] = ACTIONS(3096), - [anon_sym_AT] = ACTIONS(3098), - [anon_sym_static] = ACTIONS(3096), - [anon_sym_readonly] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3096), - [anon_sym_set] = ACTIONS(3096), - [anon_sym_declare] = ACTIONS(3096), - [anon_sym_public] = ACTIONS(3096), - [anon_sym_private] = ACTIONS(3096), - [anon_sym_protected] = ACTIONS(3096), - [anon_sym_override] = ACTIONS(3096), - [anon_sym_module] = ACTIONS(3096), - [anon_sym_any] = ACTIONS(3096), - [anon_sym_number] = ACTIONS(3096), - [anon_sym_boolean] = ACTIONS(3096), - [anon_sym_string] = ACTIONS(3096), - [anon_sym_symbol] = ACTIONS(3096), - [anon_sym_object] = ACTIONS(3096), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_interface] = ACTIONS(3096), - [anon_sym_enum] = ACTIONS(3096), - [sym_html_comment] = ACTIONS(5), - }, - [934] = { - [sym_identifier] = ACTIONS(3100), - [anon_sym_export] = ACTIONS(3100), - [anon_sym_type] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3102), - [anon_sym_typeof] = ACTIONS(3100), - [anon_sym_import] = ACTIONS(3100), - [anon_sym_with] = ACTIONS(3100), - [anon_sym_var] = ACTIONS(3100), - [anon_sym_let] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3102), - [anon_sym_await] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_debugger] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_yield] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3102), - [anon_sym_DQUOTE] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_async] = ACTIONS(3100), - [anon_sym_function] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_void] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3102), - [anon_sym_DASH_DASH] = ACTIONS(3102), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3102), - [sym_number] = ACTIONS(3102), - [sym_private_property_identifier] = ACTIONS(3102), - [sym_this] = ACTIONS(3100), - [sym_super] = ACTIONS(3100), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [sym_null] = ACTIONS(3100), - [sym_undefined] = ACTIONS(3100), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_readonly] = ACTIONS(3100), - [anon_sym_get] = ACTIONS(3100), - [anon_sym_set] = ACTIONS(3100), - [anon_sym_declare] = ACTIONS(3100), - [anon_sym_public] = ACTIONS(3100), - [anon_sym_private] = ACTIONS(3100), - [anon_sym_protected] = ACTIONS(3100), - [anon_sym_override] = ACTIONS(3100), - [anon_sym_module] = ACTIONS(3100), - [anon_sym_any] = ACTIONS(3100), - [anon_sym_number] = ACTIONS(3100), - [anon_sym_boolean] = ACTIONS(3100), - [anon_sym_string] = ACTIONS(3100), - [anon_sym_symbol] = ACTIONS(3100), - [anon_sym_object] = ACTIONS(3100), - [anon_sym_abstract] = ACTIONS(3100), - [anon_sym_interface] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), - [sym_html_comment] = ACTIONS(5), - }, - [935] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_asserts] = ACTIONS(2998), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(925)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_asserts] = STATE(3958), - [sym_type] = STATE(3482), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_predicate] = STATE(3959), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3280), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [sym_asserts] = STATE(3310), + [sym_type] = STATE(3311), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_predicate] = STATE(3310), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3260), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3076), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_asserts] = ACTIONS(3086), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [936] = { - [sym_identifier] = ACTIONS(3104), - [anon_sym_export] = ACTIONS(3104), - [anon_sym_type] = ACTIONS(3104), - [anon_sym_namespace] = ACTIONS(3104), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_typeof] = ACTIONS(3104), - [anon_sym_import] = ACTIONS(3104), - [anon_sym_with] = ACTIONS(3104), - [anon_sym_var] = ACTIONS(3104), - [anon_sym_let] = ACTIONS(3104), - [anon_sym_const] = ACTIONS(3104), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3104), - [anon_sym_switch] = ACTIONS(3104), - [anon_sym_for] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_await] = ACTIONS(3104), - [anon_sym_while] = ACTIONS(3104), - [anon_sym_do] = ACTIONS(3104), - [anon_sym_try] = ACTIONS(3104), - [anon_sym_break] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(3104), - [anon_sym_debugger] = ACTIONS(3104), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_throw] = ACTIONS(3104), - [anon_sym_yield] = ACTIONS(3104), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3104), - [anon_sym_async] = ACTIONS(3104), - [anon_sym_function] = ACTIONS(3104), - [anon_sym_new] = ACTIONS(3104), - [anon_sym_using] = ACTIONS(3104), - [anon_sym_PLUS] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(3104), - [anon_sym_SLASH] = ACTIONS(3104), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_void] = ACTIONS(3104), - [anon_sym_delete] = ACTIONS(3104), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3106), - [sym_number] = ACTIONS(3106), - [sym_private_property_identifier] = ACTIONS(3106), - [sym_this] = ACTIONS(3104), - [sym_super] = ACTIONS(3104), - [sym_true] = ACTIONS(3104), - [sym_false] = ACTIONS(3104), - [sym_null] = ACTIONS(3104), - [sym_undefined] = ACTIONS(3104), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3104), - [anon_sym_readonly] = ACTIONS(3104), - [anon_sym_get] = ACTIONS(3104), - [anon_sym_set] = ACTIONS(3104), - [anon_sym_declare] = ACTIONS(3104), - [anon_sym_public] = ACTIONS(3104), - [anon_sym_private] = ACTIONS(3104), - [anon_sym_protected] = ACTIONS(3104), - [anon_sym_override] = ACTIONS(3104), - [anon_sym_module] = ACTIONS(3104), - [anon_sym_any] = ACTIONS(3104), - [anon_sym_number] = ACTIONS(3104), - [anon_sym_boolean] = ACTIONS(3104), - [anon_sym_string] = ACTIONS(3104), - [anon_sym_symbol] = ACTIONS(3104), - [anon_sym_object] = ACTIONS(3104), - [anon_sym_abstract] = ACTIONS(3104), - [anon_sym_interface] = ACTIONS(3104), - [anon_sym_enum] = ACTIONS(3104), - [sym_html_comment] = ACTIONS(5), - }, - [937] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3040), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_asserts] = ACTIONS(3050), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(926)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_asserts] = STATE(3442), - [sym_type] = STATE(3446), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_predicate] = STATE(3442), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3280), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3076), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_asserts] = ACTIONS(3086), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [938] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_asserts] = STATE(3198), - [sym_type] = STATE(3204), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_predicate] = STATE(3198), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3163), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(2950), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_asserts] = ACTIONS(2952), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [939] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_asserts] = STATE(1547), - [sym_type] = STATE(1548), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_predicate] = STATE(1547), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1477), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [sym_asserts] = STATE(3322), + [sym_type] = STATE(3323), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_predicate] = STATE(3322), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3260), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3136), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_asserts] = ACTIONS(3146), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [940] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_asserts] = STATE(1581), - [sym_type] = STATE(1582), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_predicate] = STATE(1581), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1477), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3108), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3136), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_asserts] = ACTIONS(3146), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [941] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2903), - [sym_type] = STATE(3753), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2903), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3505), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3040), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_asserts] = ACTIONS(3050), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(927)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(928)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2908), + [sym_type] = STATE(3537), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2908), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3519), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(3158), + [sym_this] = ACTIONS(3066), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_asserts] = ACTIONS(3160), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [942] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2988), - [sym_type] = STATE(3068), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2988), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_asserts] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(929)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(930)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(931)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(932)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(933)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2923), + [sym_type] = STATE(3560), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2923), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3519), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(2960), + [sym_this] = ACTIONS(3066), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_asserts] = ACTIONS(2962), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [943] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2988), - [sym_type] = STATE(3752), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2988), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3505), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3156), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_asserts] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(934)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(935)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(936)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(937)] = { + [sym_identifier] = ACTIONS(3070), + [anon_sym_export] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_namespace] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3070), + [anon_sym_import] = ACTIONS(3070), + [anon_sym_with] = ACTIONS(3070), + [anon_sym_var] = ACTIONS(3070), + [anon_sym_let] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_switch] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_await] = ACTIONS(3070), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_debugger] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_class] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3070), + [anon_sym_using] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_void] = ACTIONS(3070), + [anon_sym_delete] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3072), + [sym_private_property_identifier] = ACTIONS(3072), + [sym_this] = ACTIONS(3070), + [sym_super] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_null] = ACTIONS(3070), + [sym_undefined] = ACTIONS(3070), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_static] = ACTIONS(3070), + [anon_sym_readonly] = ACTIONS(3070), + [anon_sym_get] = ACTIONS(3070), + [anon_sym_set] = ACTIONS(3070), + [anon_sym_declare] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_module] = ACTIONS(3070), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(938)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_asserts] = STATE(4373), + [sym_type] = STATE(3500), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_predicate] = STATE(4387), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3260), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3040), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_asserts] = ACTIONS(3050), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(939)] = { + [sym_identifier] = ACTIONS(2504), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_type] = ACTIONS(2504), + [anon_sym_namespace] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(2504), + [anon_sym_import] = ACTIONS(2504), + [anon_sym_with] = ACTIONS(2504), + [anon_sym_var] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_switch] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_await] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_debugger] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_throw] = ACTIONS(2504), + [anon_sym_yield] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2502), + [anon_sym_class] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_function] = ACTIONS(2504), + [anon_sym_new] = ACTIONS(2504), + [anon_sym_using] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_TILDE] = ACTIONS(2502), + [anon_sym_void] = ACTIONS(2504), + [anon_sym_delete] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2502), + [sym_number] = ACTIONS(2502), + [sym_private_property_identifier] = ACTIONS(2502), + [sym_this] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_true] = ACTIONS(2504), + [sym_false] = ACTIONS(2504), + [sym_null] = ACTIONS(2504), + [sym_undefined] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2502), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_readonly] = ACTIONS(2504), + [anon_sym_get] = ACTIONS(2504), + [anon_sym_set] = ACTIONS(2504), + [anon_sym_declare] = ACTIONS(2504), + [anon_sym_public] = ACTIONS(2504), + [anon_sym_private] = ACTIONS(2504), + [anon_sym_protected] = ACTIONS(2504), + [anon_sym_override] = ACTIONS(2504), + [anon_sym_module] = ACTIONS(2504), + [anon_sym_any] = ACTIONS(2504), + [anon_sym_number] = ACTIONS(2504), + [anon_sym_boolean] = ACTIONS(2504), + [anon_sym_string] = ACTIONS(2504), + [anon_sym_symbol] = ACTIONS(2504), + [anon_sym_object] = ACTIONS(2504), + [anon_sym_abstract] = ACTIONS(2504), + [anon_sym_interface] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(940)] = { + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3074), + [anon_sym_type] = ACTIONS(3074), + [anon_sym_namespace] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_typeof] = ACTIONS(3074), + [anon_sym_import] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3074), + [anon_sym_var] = ACTIONS(3074), + [anon_sym_let] = ACTIONS(3074), + [anon_sym_const] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_switch] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_await] = ACTIONS(3074), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_do] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_debugger] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_class] = ACTIONS(3074), + [anon_sym_async] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_void] = ACTIONS(3074), + [anon_sym_delete] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3076), + [sym_number] = ACTIONS(3076), + [sym_private_property_identifier] = ACTIONS(3076), + [sym_this] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3076), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_declare] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_module] = ACTIONS(3074), + [anon_sym_any] = ACTIONS(3074), + [anon_sym_number] = ACTIONS(3074), + [anon_sym_boolean] = ACTIONS(3074), + [anon_sym_string] = ACTIONS(3074), + [anon_sym_symbol] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_interface] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(941)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2908), + [sym_type] = STATE(3928), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2908), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(3158), + [sym_this] = ACTIONS(3094), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_asserts] = ACTIONS(3160), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [944] = { - [sym_identifier] = ACTIONS(2452), - [anon_sym_export] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2452), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(2452), - [anon_sym_import] = ACTIONS(2452), - [anon_sym_with] = ACTIONS(2452), - [anon_sym_var] = ACTIONS(2452), - [anon_sym_let] = ACTIONS(2452), - [anon_sym_const] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2452), - [anon_sym_switch] = ACTIONS(2452), - [anon_sym_for] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(2452), - [anon_sym_while] = ACTIONS(2452), - [anon_sym_do] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2452), - [anon_sym_break] = ACTIONS(2452), - [anon_sym_continue] = ACTIONS(2452), - [anon_sym_debugger] = ACTIONS(2452), - [anon_sym_return] = ACTIONS(2452), - [anon_sym_throw] = ACTIONS(2452), - [anon_sym_yield] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), - [anon_sym_class] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2452), - [anon_sym_function] = ACTIONS(2452), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_using] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_void] = ACTIONS(2452), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_number] = ACTIONS(2450), - [sym_private_property_identifier] = ACTIONS(2450), - [sym_this] = ACTIONS(2452), - [sym_super] = ACTIONS(2452), - [sym_true] = ACTIONS(2452), - [sym_false] = ACTIONS(2452), - [sym_null] = ACTIONS(2452), - [sym_undefined] = ACTIONS(2452), - [anon_sym_AT] = ACTIONS(2450), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_declare] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_protected] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_any] = ACTIONS(2452), - [anon_sym_number] = ACTIONS(2452), - [anon_sym_boolean] = ACTIONS(2452), - [anon_sym_string] = ACTIONS(2452), - [anon_sym_symbol] = ACTIONS(2452), - [anon_sym_object] = ACTIONS(2452), - [anon_sym_abstract] = ACTIONS(2452), - [anon_sym_interface] = ACTIONS(2452), - [anon_sym_enum] = ACTIONS(2452), - [sym_html_comment] = ACTIONS(5), - }, - [945] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_asserts] = STATE(2903), - [sym_type] = STATE(3066), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_predicate] = STATE(2903), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_asserts] = ACTIONS(3102), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(942)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(5341), + [sym_type] = STATE(3415), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(5343), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(2960), + [sym_this] = ACTIONS(2944), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_asserts] = ACTIONS(2962), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [946] = { - [sym_identifier] = ACTIONS(2456), - [anon_sym_export] = ACTIONS(2456), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_namespace] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2454), - [anon_sym_typeof] = ACTIONS(2456), - [anon_sym_import] = ACTIONS(2456), - [anon_sym_with] = ACTIONS(2456), - [anon_sym_var] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2456), - [anon_sym_const] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2454), - [anon_sym_if] = ACTIONS(2456), - [anon_sym_switch] = ACTIONS(2456), - [anon_sym_for] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_await] = ACTIONS(2456), - [anon_sym_while] = ACTIONS(2456), - [anon_sym_do] = ACTIONS(2456), - [anon_sym_try] = ACTIONS(2456), - [anon_sym_break] = ACTIONS(2456), - [anon_sym_continue] = ACTIONS(2456), - [anon_sym_debugger] = ACTIONS(2456), - [anon_sym_return] = ACTIONS(2456), - [anon_sym_throw] = ACTIONS(2456), - [anon_sym_yield] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2454), - [anon_sym_DQUOTE] = ACTIONS(2454), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_class] = ACTIONS(2456), - [anon_sym_async] = ACTIONS(2456), - [anon_sym_function] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_using] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(2456), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_SLASH] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_TILDE] = ACTIONS(2454), - [anon_sym_void] = ACTIONS(2456), - [anon_sym_delete] = ACTIONS(2456), - [anon_sym_PLUS_PLUS] = ACTIONS(2454), - [anon_sym_DASH_DASH] = ACTIONS(2454), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2454), - [sym_number] = ACTIONS(2454), - [sym_private_property_identifier] = ACTIONS(2454), - [sym_this] = ACTIONS(2456), - [sym_super] = ACTIONS(2456), - [sym_true] = ACTIONS(2456), - [sym_false] = ACTIONS(2456), - [sym_null] = ACTIONS(2456), - [sym_undefined] = ACTIONS(2456), - [anon_sym_AT] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_readonly] = ACTIONS(2456), - [anon_sym_get] = ACTIONS(2456), - [anon_sym_set] = ACTIONS(2456), - [anon_sym_declare] = ACTIONS(2456), - [anon_sym_public] = ACTIONS(2456), - [anon_sym_private] = ACTIONS(2456), - [anon_sym_protected] = ACTIONS(2456), - [anon_sym_override] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_any] = ACTIONS(2456), - [anon_sym_number] = ACTIONS(2456), - [anon_sym_boolean] = ACTIONS(2456), - [anon_sym_string] = ACTIONS(2456), - [anon_sym_symbol] = ACTIONS(2456), - [anon_sym_object] = ACTIONS(2456), - [anon_sym_abstract] = ACTIONS(2456), - [anon_sym_interface] = ACTIONS(2456), - [anon_sym_enum] = ACTIONS(2456), - [sym_html_comment] = ACTIONS(5), - }, - [947] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_asserts] = STATE(1944), - [sym_type] = STATE(1945), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_predicate] = STATE(1944), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1840), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(2946), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(943)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2923), + [sym_type] = STATE(3941), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2923), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3094), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_asserts] = ACTIONS(3102), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(944)] = { + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(945)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_asserts] = STATE(1885), + [sym_type] = STATE(1886), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_predicate] = STATE(1885), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1786), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3024), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_asserts] = ACTIONS(3034), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [948] = { - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_EQ] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_COMMA] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_RPAREN] = ACTIONS(3164), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_COLON] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_RBRACK] = ACTIONS(3164), - [anon_sym_GT] = ACTIONS(3164), - [anon_sym_DOT] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_EQ_GT] = ACTIONS(3164), - [anon_sym_QMARK_DOT] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3164), - [anon_sym_AMP] = ACTIONS(3164), - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_number] = ACTIONS(3164), - [sym_private_property_identifier] = ACTIONS(3164), - [sym_this] = ACTIONS(3162), - [sym_super] = ACTIONS(3162), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_undefined] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_QMARK] = ACTIONS(3162), - [anon_sym_declare] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_protected] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_module] = ACTIONS(3162), - [anon_sym_any] = ACTIONS(3162), - [anon_sym_number] = ACTIONS(3162), - [anon_sym_boolean] = ACTIONS(3162), - [anon_sym_string] = ACTIONS(3162), - [anon_sym_symbol] = ACTIONS(3162), - [anon_sym_object] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_extends] = ACTIONS(3162), - [sym_html_comment] = ACTIONS(5), - }, - [949] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3138), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_asserts] = ACTIONS(3148), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(946)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_asserts] = STATE(1917), + [sym_type] = STATE(1919), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_predicate] = STATE(1917), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1786), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3138), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_asserts] = ACTIONS(3148), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(947)] = { + [sym_identifier] = ACTIONS(3158), + [anon_sym_export] = ACTIONS(3158), + [anon_sym_type] = ACTIONS(3158), + [anon_sym_namespace] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_typeof] = ACTIONS(3158), + [anon_sym_import] = ACTIONS(3158), + [anon_sym_with] = ACTIONS(3158), + [anon_sym_var] = ACTIONS(3158), + [anon_sym_let] = ACTIONS(3158), + [anon_sym_const] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_switch] = ACTIONS(3158), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_await] = ACTIONS(3158), + [anon_sym_while] = ACTIONS(3158), + [anon_sym_do] = ACTIONS(3158), + [anon_sym_try] = ACTIONS(3158), + [anon_sym_break] = ACTIONS(3158), + [anon_sym_continue] = ACTIONS(3158), + [anon_sym_debugger] = ACTIONS(3158), + [anon_sym_return] = ACTIONS(3158), + [anon_sym_throw] = ACTIONS(3158), + [anon_sym_yield] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3158), + [anon_sym_async] = ACTIONS(3158), + [anon_sym_function] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3158), + [anon_sym_using] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_void] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3160), + [sym_number] = ACTIONS(3160), + [sym_private_property_identifier] = ACTIONS(3160), + [sym_this] = ACTIONS(3158), + [sym_super] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_null] = ACTIONS(3158), + [sym_undefined] = ACTIONS(3158), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3158), + [anon_sym_readonly] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3158), + [anon_sym_set] = ACTIONS(3158), + [anon_sym_declare] = ACTIONS(3158), + [anon_sym_public] = ACTIONS(3158), + [anon_sym_private] = ACTIONS(3158), + [anon_sym_protected] = ACTIONS(3158), + [anon_sym_override] = ACTIONS(3158), + [anon_sym_module] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(3158), + [anon_sym_number] = ACTIONS(3158), + [anon_sym_boolean] = ACTIONS(3158), + [anon_sym_string] = ACTIONS(3158), + [anon_sym_symbol] = ACTIONS(3158), + [anon_sym_object] = ACTIONS(3158), + [anon_sym_abstract] = ACTIONS(3158), + [anon_sym_interface] = ACTIONS(3158), + [anon_sym_enum] = ACTIONS(3158), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(948)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3166), + [anon_sym_GT] = ACTIONS(3162), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121571,72 +121701,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [950] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4488), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(949)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(3168), + [anon_sym_GT] = ACTIONS(3164), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121646,72 +121776,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [951] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(950)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4529), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3170), + [anon_sym_RBRACK] = ACTIONS(3166), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121721,72 +121851,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [952] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(951)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121796,72 +121926,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [953] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4527), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(952)] = { + [sym_identifier] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_EQ] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_let] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_RPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3170), + [anon_sym_COLON] = ACTIONS(3172), + [anon_sym_yield] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_RBRACK] = ACTIONS(3172), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_async] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_EQ_GT] = ACTIONS(3172), + [anon_sym_QMARK_DOT] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3172), + [anon_sym_AMP3] = ACTIONS(3172), + [anon_sym_PIPE] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_private_property_identifier] = ACTIONS(3172), + [sym_this] = ACTIONS(3170), + [sym_super] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_undefined] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_readonly] = ACTIONS(3170), + [anon_sym_get] = ACTIONS(3170), + [anon_sym_set] = ACTIONS(3170), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_declare] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_any] = ACTIONS(3170), + [anon_sym_number] = ACTIONS(3170), + [anon_sym_boolean] = ACTIONS(3170), + [anon_sym_string] = ACTIONS(3170), + [anon_sym_symbol] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_extends] = ACTIONS(3170), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(953)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3174), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121871,72 +122076,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [954] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(954)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(3176), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -121946,72 +122151,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [955] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(955)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(3178), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122021,72 +122226,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [956] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(956)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4493), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3180), + [anon_sym_RBRACK] = ACTIONS(3180), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122096,23 +122301,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [957] = { + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(957)] = { [sym_identifier] = ACTIONS(3182), [anon_sym_export] = ACTIONS(3182), [anon_sym_type] = ACTIONS(3182), @@ -122144,7 +122349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(3182), [anon_sym_using] = ACTIONS(3182), [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_AMP3] = ACTIONS(3184), [anon_sym_PIPE] = ACTIONS(3184), [anon_sym_PLUS] = ACTIONS(3182), [anon_sym_DASH] = ACTIONS(3182), @@ -122187,131 +122392,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extends] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, - [958] = { - [sym_identifier] = ACTIONS(3186), - [anon_sym_export] = ACTIONS(3186), - [anon_sym_type] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_COMMA] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_let] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_RPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3186), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_RBRACK] = ACTIONS(3188), - [anon_sym_GT] = ACTIONS(3188), - [anon_sym_DOT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_async] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_EQ_GT] = ACTIONS(3188), - [anon_sym_QMARK_DOT] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3188), - [anon_sym_AMP] = ACTIONS(3188), - [anon_sym_PIPE] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3186), - [sym_super] = ACTIONS(3186), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_undefined] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_readonly] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_QMARK] = ACTIONS(3186), - [anon_sym_declare] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_protected] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_module] = ACTIONS(3186), - [anon_sym_any] = ACTIONS(3186), - [anon_sym_number] = ACTIONS(3186), - [anon_sym_boolean] = ACTIONS(3186), - [anon_sym_string] = ACTIONS(3186), - [anon_sym_symbol] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_extends] = ACTIONS(3186), - [sym_html_comment] = ACTIONS(5), - }, - [959] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [STATE(958)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3186), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122321,72 +122451,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [960] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3798), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(959)] = { + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym_RPAREN] = ACTIONS(3190), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_COLON] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3190), + [anon_sym_RBRACK] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_EQ_GT] = ACTIONS(3190), + [anon_sym_QMARK_DOT] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3190), + [anon_sym_AMP3] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3190), + [sym_number] = ACTIONS(3190), + [sym_private_property_identifier] = ACTIONS(3190), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3190), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_extends] = ACTIONS(3188), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(960)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4593), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [sym_jsx_identifier] = ACTIONS(3194), + [anon_sym_RBRACK] = ACTIONS(3192), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122396,72 +122601,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [961] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(961)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3196), + [anon_sym_GT] = ACTIONS(3194), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122471,72 +122676,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [962] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(962)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3196), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122546,72 +122751,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [963] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(963)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3926), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3200), + [sym_jsx_identifier] = ACTIONS(3200), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122621,72 +122826,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [964] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(964)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(3202), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122696,72 +122901,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [965] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(965)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122771,72 +122976,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [966] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4485), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(966)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3206), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122846,72 +123051,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [967] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(967)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_GT] = ACTIONS(3208), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122921,72 +123126,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [968] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4560), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(968)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(3210), + [anon_sym_GT] = ACTIONS(3210), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -122996,72 +123201,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [969] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(969)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4499), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(3212), + [anon_sym_RBRACK] = ACTIONS(3212), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123071,72 +123276,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [970] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4525), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(970)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4500), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_RBRACK] = ACTIONS(3214), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123146,515 +123351,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [971] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1526), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(971)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1892), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [972] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3193), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [973] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3194), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [974] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3201), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [975] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3202), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [976] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3231), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [977] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5077), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(4221), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(4521), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(972)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4477), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123664,145 +123499,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [978] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3228), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(973)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3973), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [979] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3909), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(974)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2899), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123812,71 +123647,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [980] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2908), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(975)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2976), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123886,71 +123721,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [981] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3064), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(976)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4545), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -123960,71 +123795,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [982] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4552), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(977)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -124033,220 +123868,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [983] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1521), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [984] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1522), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [985] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4603), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(978)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4303), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -124255,886 +123942,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [986] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1493), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [987] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1494), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [988] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4650), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(1527), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(979)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [989] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4650), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(1529), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(980)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3926), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [990] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1959), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [991] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1960), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [992] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1553), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [993] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1554), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [994] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1578), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [995] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1579), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [996] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1972), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [997] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3082), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(981)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4888), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2997), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -125144,71 +124165,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [998] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3067), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(982)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3947), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -125218,811 +124239,663 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [999] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1595), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(983)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(2021), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1000] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1596), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(984)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(2022), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1001] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1608), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(985)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(2027), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1002] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1489), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(986)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4978), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2028), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1003] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1973), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(987)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4978), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2035), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1004] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3353), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1005] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3355), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1006] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3359), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(988)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1505), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1007] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4683), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(3360), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(989)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3267), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1008] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4683), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(3371), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(990)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1506), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1009] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3877), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(991)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4552), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126032,145 +124905,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1010] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3403), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1011] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3814), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(992)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3834), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126180,219 +124979,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1012] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3279), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1013] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3404), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1014] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4535), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(993)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2989), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126402,71 +125053,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1015] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4310), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(994)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1891), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(995)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126475,72 +125200,738 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1016] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4539), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(996)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3404), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(997)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3406), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(998)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1914), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(999)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1915), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1000)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(4284), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1001)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1936), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1002)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1937), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1003)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1948), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1004)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1950), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1005)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4888), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(4055), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(4597), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126550,293 +125941,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1017] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4023), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1018] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3427), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1019] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3440), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1020] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2985), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1006)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3787), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126846,145 +126015,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1021] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4045), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1022] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3063), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1007)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4507), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -126994,145 +126089,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1023] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3424), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1024] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2908), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1008)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127141,72 +126162,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1025] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3754), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1009)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2909), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127215,146 +126236,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1026] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3330), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1027] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3757), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1010)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3053), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127363,72 +126310,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1028] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3758), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1011)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4585), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127437,220 +126384,516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1012)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(4078), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1029] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3338), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1013)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3207), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1030] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3389), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1014)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3208), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1031] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2985), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1015)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3213), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1016)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(5215), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(3214), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1017)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(5215), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(3216), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1018)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4596), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127659,72 +126902,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1032] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3749), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1019)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4598), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127733,220 +126976,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1033] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4073), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1034] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4067), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1035] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1020)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4599), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -127955,72 +127050,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1036] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2963), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1021)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3108), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -128029,72 +127124,516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1022)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3230), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1037] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4471), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1023)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3231), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1024)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1982), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1025)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1983), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1026)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3236), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1027)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3237), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1028)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2975), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -128104,71 +127643,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1038] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2977), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1029)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3245), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1030)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3798), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -128177,72 +127790,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1031)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3246), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1039] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3559), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1032)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3249), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1033)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4536), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -128251,590 +128012,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1034)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3250), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1040] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4402), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1035)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3986), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1041] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1876), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1036)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1539), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1042] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3241), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1043] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3242), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1037)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1540), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1044] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3246), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1038)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1546), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1045] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5201), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(3178), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1039)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4656), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(1547), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1046] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5201), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(3255), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1040)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4656), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(1549), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1047] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3863), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1041)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -128844,293 +128605,1033 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1048] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3516), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1042)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1577), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1049] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3517), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1043)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1580), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1050] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3518), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1044)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1606), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1051] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4589), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1045)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1608), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1046)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1523), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1047)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1524), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1048)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1589), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1049)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1590), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1050)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1979), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1051)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(4326), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1052)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3342), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1053)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3343), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1054)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3346), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1055)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3107), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129140,71 +129641,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1052] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4594), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1056)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4689), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(3354), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1057)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3806), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129214,71 +129789,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1053] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1058)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3335), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1059)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3813), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129288,71 +129937,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1054] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2963), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1060)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3338), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1061)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3318), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1062)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3320), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1063)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2909), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129361,72 +130232,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1055] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4509), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1064)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3334), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1065)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3336), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1066)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3348), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1067)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3352), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1068)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3538), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129435,220 +130602,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1056] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3415), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1057] = { - [sym_import] = STATE(4673), - [sym_nested_identifier] = STATE(5966), - [sym_string] = STATE(3463), - [sym_formal_parameters] = STATE(5586), - [sym_nested_type_identifier] = STATE(3191), - [sym__type_query_member_expression_in_type_annotation] = STATE(3128), - [sym__type_query_call_expression_in_type_annotation] = STATE(3287), - [sym_type] = STATE(3425), - [sym_constructor_type] = STATE(3321), - [sym_primary_type] = STATE(3325), - [sym_template_literal_type] = STATE(3443), - [sym_infer_type] = STATE(3321), - [sym_conditional_type] = STATE(3443), - [sym_generic_type] = STATE(3443), - [sym_type_query] = STATE(3443), - [sym_index_type_query] = STATE(3443), - [sym_lookup_type] = STATE(3443), - [sym_literal_type] = STATE(3443), - [sym__number] = STATE(3326), - [sym_existential_type] = STATE(3443), - [sym_flow_maybe_type] = STATE(3443), - [sym_parenthesized_type] = STATE(3443), - [sym_predefined_type] = STATE(3443), - [sym_object_type] = STATE(3443), - [sym_type_parameters] = STATE(5361), - [sym_array_type] = STATE(3443), - [sym_tuple_type] = STATE(3443), - [sym_readonly_type] = STATE(3321), - [sym_union_type] = STATE(3443), - [sym_intersection_type] = STATE(3443), - [sym_function_type] = STATE(3321), - [sym_identifier] = ACTIONS(3224), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACE] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(3050), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3058), - [anon_sym_SQUOTE] = ACTIONS(3060), - [anon_sym_new] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3070), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3074), - [sym_this] = ACTIONS(3226), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3082), - [anon_sym_any] = ACTIONS(3070), - [anon_sym_number] = ACTIONS(3070), - [anon_sym_boolean] = ACTIONS(3070), - [anon_sym_string] = ACTIONS(3070), - [anon_sym_symbol] = ACTIONS(3070), - [anon_sym_object] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3084), - [anon_sym_infer] = ACTIONS(3088), - [anon_sym_keyof] = ACTIONS(3090), - [anon_sym_unique] = ACTIONS(3092), - [anon_sym_unknown] = ACTIONS(3070), - [anon_sym_never] = ACTIONS(3070), - [anon_sym_LBRACE_PIPE] = ACTIONS(3094), - [sym_html_comment] = ACTIONS(5), - }, - [1058] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4542), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1069)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2989), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129657,220 +130676,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1059] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1562), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1060] = { - [sym_import] = STATE(4633), - [sym_nested_identifier] = STATE(5639), - [sym_string] = STATE(1509), - [sym_formal_parameters] = STATE(5732), - [sym_nested_type_identifier] = STATE(1485), - [sym__type_query_member_expression_in_type_annotation] = STATE(1482), - [sym__type_query_call_expression_in_type_annotation] = STATE(1512), - [sym_type] = STATE(1577), - [sym_constructor_type] = STATE(1513), - [sym_primary_type] = STATE(1514), - [sym_template_literal_type] = STATE(1508), - [sym_infer_type] = STATE(1513), - [sym_conditional_type] = STATE(1508), - [sym_generic_type] = STATE(1508), - [sym_type_query] = STATE(1508), - [sym_index_type_query] = STATE(1508), - [sym_lookup_type] = STATE(1508), - [sym_literal_type] = STATE(1508), - [sym__number] = STATE(1515), - [sym_existential_type] = STATE(1508), - [sym_flow_maybe_type] = STATE(1508), - [sym_parenthesized_type] = STATE(1508), - [sym_predefined_type] = STATE(1508), - [sym_object_type] = STATE(1508), - [sym_type_parameters] = STATE(5328), - [sym_array_type] = STATE(1508), - [sym_tuple_type] = STATE(1508), - [sym_readonly_type] = STATE(1513), - [sym_union_type] = STATE(1508), - [sym_intersection_type] = STATE(1508), - [sym_function_type] = STATE(1513), - [sym_identifier] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_new] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3124), - [anon_sym_PIPE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3130), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3218), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_QMARK] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [anon_sym_object] = ACTIONS(3130), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_infer] = ACTIONS(3148), - [anon_sym_keyof] = ACTIONS(3150), - [anon_sym_unique] = ACTIONS(3152), - [anon_sym_unknown] = ACTIONS(3130), - [anon_sym_never] = ACTIONS(3130), - [anon_sym_LBRACE_PIPE] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1061] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4505), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1070)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3651), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129879,72 +130750,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1062] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4514), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1071)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3652), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -129953,72 +130824,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1063] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4543), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1072)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(5073), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2995), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130028,71 +130899,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1064] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3422), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1073)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(5073), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2997), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130102,71 +130973,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1065] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2977), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1074)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4579), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130176,219 +131047,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1066] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3188), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1067] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3192), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1068] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2993), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1075)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3060), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130397,72 +131120,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1069] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3873), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1076)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3061), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130471,72 +131194,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1070] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3874), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1077)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3539), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130545,72 +131268,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1071] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4817), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2917), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1078)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3541), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130619,72 +131342,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1072] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4817), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2919), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1079)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4888), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2995), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130694,145 +131417,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1073] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1941), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1074] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2908), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1080)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130841,72 +131490,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1075] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3922), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1081)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3554), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -130915,294 +131564,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1076] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1942), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1082)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(4376), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1077] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1982), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1083)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1488), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1078] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3799), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1084)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1491), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_AMP3] = ACTIONS(2976), [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1079] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3809), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1085)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2899), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131211,72 +131860,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1080] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3112), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1086)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2976), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131285,72 +131934,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1081] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4490), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1087)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4504), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131360,367 +132009,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1082] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3801), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1083] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1983), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1084] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3189), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1085] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2985), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1088)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2975), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1517), - [sym_this] = ACTIONS(1519), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1086] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3822), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131729,72 +132082,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1087] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3790), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1089)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3415), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131804,145 +132157,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1088] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(3179), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1089] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2993), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1090)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3572), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -131951,72 +132230,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1090] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3115), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1091)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2989), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132025,72 +132304,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1091] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3058), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1092)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3840), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132099,72 +132378,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1092] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5077), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2917), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1093)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3841), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132173,72 +132452,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1093] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5077), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2919), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1094)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4821), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2995), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132248,71 +132527,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1094] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3858), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1095)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4821), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2997), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132322,71 +132601,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1095] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4532), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1096)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4542), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132396,145 +132675,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1096] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1871), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1097] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4424), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1097)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2909), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132543,72 +132748,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1098] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3798), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1098)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3929), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132617,72 +132822,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1099] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1099)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2955), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4314), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132691,72 +132896,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1100] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1100)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2963), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3933), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132765,72 +132970,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1101] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3910), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1101)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3934), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132839,72 +133044,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1102] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3778), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1102)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4547), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132914,71 +133119,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1103] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1103)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2977), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -132987,294 +133192,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1104] = { - [sym_import] = STATE(5153), - [sym_nested_identifier] = STATE(5834), - [sym_string] = STATE(3213), - [sym_formal_parameters] = STATE(5829), - [sym_nested_type_identifier] = STATE(3070), - [sym__type_query_member_expression_in_type_annotation] = STATE(3029), - [sym__type_query_call_expression_in_type_annotation] = STATE(3159), - [sym_type] = STATE(4017), - [sym_constructor_type] = STATE(3218), - [sym_primary_type] = STATE(3257), - [sym_template_literal_type] = STATE(3211), - [sym_infer_type] = STATE(3218), - [sym_conditional_type] = STATE(3211), - [sym_generic_type] = STATE(3211), - [sym_type_query] = STATE(3211), - [sym_index_type_query] = STATE(3211), - [sym_lookup_type] = STATE(3211), - [sym_literal_type] = STATE(3211), - [sym__number] = STATE(3219), - [sym_existential_type] = STATE(3211), - [sym_flow_maybe_type] = STATE(3211), - [sym_parenthesized_type] = STATE(3211), - [sym_predefined_type] = STATE(3211), - [sym_object_type] = STATE(3211), - [sym_type_parameters] = STATE(5268), - [sym_array_type] = STATE(3211), - [sym_tuple_type] = STATE(3211), - [sym_readonly_type] = STATE(3218), - [sym_union_type] = STATE(3211), - [sym_intersection_type] = STATE(3211), - [sym_function_type] = STATE(3218), - [sym_identifier] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(999), - [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(2948), - [anon_sym_DASH] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(1031), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_number] = ACTIONS(1597), - [sym_this] = ACTIONS(1599), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_undefined] = ACTIONS(1601), - [anon_sym_readonly] = ACTIONS(1603), - [anon_sym_QMARK] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1031), - [anon_sym_number] = ACTIONS(1031), - [anon_sym_boolean] = ACTIONS(1031), - [anon_sym_string] = ACTIONS(1031), - [anon_sym_symbol] = ACTIONS(1031), - [anon_sym_object] = ACTIONS(1031), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_infer] = ACTIONS(1025), - [anon_sym_keyof] = ACTIONS(1027), - [anon_sym_unique] = ACTIONS(1029), - [anon_sym_unknown] = ACTIONS(1031), - [anon_sym_never] = ACTIONS(1031), - [anon_sym_LBRACE_PIPE] = ACTIONS(1033), - [sym_html_comment] = ACTIONS(5), - }, - [1105] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1884), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1106] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1885), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1104)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3940), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1107] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(2993), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1105)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3103), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133283,72 +133340,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1106)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1108] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3652), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1107)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2899), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133357,72 +133488,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1109] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3766), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1108)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2976), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133431,72 +133562,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1109)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1110] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5089), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2917), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1110)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2975), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133505,72 +133710,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1111] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(5089), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2919), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1111)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3946), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133579,146 +133784,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1112] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1889), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1112)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(2056), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1113] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4564), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1113)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4560), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133727,220 +133932,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1114] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4787), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(1890), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1115] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4787), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(1892), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(2931), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1116] = { - [sym_import] = STATE(4924), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3376), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(3800), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5433), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1114)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4570), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_LBRACE] = ACTIONS(2966), - [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -133949,220 +134006,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_QMARK] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(2986), - [anon_sym_infer] = ACTIONS(2990), - [anon_sym_keyof] = ACTIONS(2992), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(2994), - [sym_html_comment] = ACTIONS(5), - }, - [1117] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1921), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), - [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1118] = { - [sym_import] = STATE(4648), - [sym_nested_identifier] = STATE(5899), - [sym_string] = STATE(1864), - [sym_formal_parameters] = STATE(5723), - [sym_nested_type_identifier] = STATE(1843), - [sym__type_query_member_expression_in_type_annotation] = STATE(1844), - [sym__type_query_call_expression_in_type_annotation] = STATE(1866), - [sym_type] = STATE(1922), - [sym_constructor_type] = STATE(1867), - [sym_primary_type] = STATE(1868), - [sym_template_literal_type] = STATE(1863), - [sym_infer_type] = STATE(1867), - [sym_conditional_type] = STATE(1863), - [sym_generic_type] = STATE(1863), - [sym_type_query] = STATE(1863), - [sym_index_type_query] = STATE(1863), - [sym_lookup_type] = STATE(1863), - [sym_literal_type] = STATE(1863), - [sym__number] = STATE(1869), - [sym_existential_type] = STATE(1863), - [sym_flow_maybe_type] = STATE(1863), - [sym_parenthesized_type] = STATE(1863), - [sym_predefined_type] = STATE(1863), - [sym_object_type] = STATE(1863), - [sym_type_parameters] = STATE(5380), - [sym_array_type] = STATE(1863), - [sym_tuple_type] = STATE(1863), - [sym_readonly_type] = STATE(1867), - [sym_union_type] = STATE(1863), - [sym_intersection_type] = STATE(1863), - [sym_function_type] = STATE(1867), - [sym_identifier] = ACTIONS(3220), - [anon_sym_STAR] = ACTIONS(2998), - [anon_sym_LBRACE] = ACTIONS(3000), - [anon_sym_typeof] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1115)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3497), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(3004), - [anon_sym_LPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3010), - [anon_sym_AMP] = ACTIONS(3012), - [anon_sym_PIPE] = ACTIONS(3014), - [anon_sym_PLUS] = ACTIONS(3016), - [anon_sym_DASH] = ACTIONS(3016), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3020), - [sym_number] = ACTIONS(3022), - [sym_this] = ACTIONS(3222), - [sym_true] = ACTIONS(3026), - [sym_false] = ACTIONS(3026), - [sym_null] = ACTIONS(3026), - [sym_undefined] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3028), - [anon_sym_QMARK] = ACTIONS(3030), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3032), - [anon_sym_infer] = ACTIONS(3036), - [anon_sym_keyof] = ACTIONS(3038), - [anon_sym_unique] = ACTIONS(3040), - [anon_sym_unknown] = ACTIONS(3018), - [anon_sym_never] = ACTIONS(3018), - [anon_sym_LBRACE_PIPE] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, - [1119] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4504), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1116)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4470), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134171,72 +134154,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1117)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3256), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1120] = { - [sym_import] = STATE(5115), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5754), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(2896), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4508), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5487), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1118)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3257), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1119)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4564), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134245,72 +134376,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(782), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(208), - [anon_sym_infer] = ACTIONS(210), - [anon_sym_keyof] = ACTIONS(212), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1121] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4576), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1120)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4569), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134319,72 +134450,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1122] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4580), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1121)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4574), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134393,72 +134524,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1123] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4583), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1122)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4586), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134467,72 +134598,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1124] = { - [sym_import] = STATE(4786), - [sym_nested_identifier] = STATE(5753), - [sym_string] = STATE(2926), - [sym_formal_parameters] = STATE(5658), - [sym_nested_type_identifier] = STATE(2885), - [sym__type_query_member_expression_in_type_annotation] = STATE(3263), - [sym__type_query_call_expression_in_type_annotation] = STATE(2895), - [sym_type] = STATE(4595), - [sym_constructor_type] = STATE(2931), - [sym_primary_type] = STATE(2932), - [sym_template_literal_type] = STATE(2981), - [sym_infer_type] = STATE(2931), - [sym_conditional_type] = STATE(2981), - [sym_generic_type] = STATE(2981), - [sym_type_query] = STATE(2981), - [sym_index_type_query] = STATE(2981), - [sym_lookup_type] = STATE(2981), - [sym_literal_type] = STATE(2981), - [sym__number] = STATE(2935), - [sym_existential_type] = STATE(2981), - [sym_flow_maybe_type] = STATE(2981), - [sym_parenthesized_type] = STATE(2981), - [sym_predefined_type] = STATE(2981), - [sym_object_type] = STATE(2981), - [sym_type_parameters] = STATE(5559), - [sym_array_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_readonly_type] = STATE(2931), - [sym_union_type] = STATE(2981), - [sym_intersection_type] = STATE(2981), - [sym_function_type] = STATE(2931), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1123)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4605), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), [sym_identifier] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(1495), [anon_sym_typeof] = ACTIONS(1497), [anon_sym_import] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(133), + [anon_sym_const] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1501), [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_PIPE] = ACTIONS(635), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(216), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1515), [sym_number] = ACTIONS(1517), @@ -134541,51 +134672,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_undefined] = ACTIONS(1521), - [anon_sym_readonly] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(657), - [anon_sym_any] = ACTIONS(216), - [anon_sym_number] = ACTIONS(216), - [anon_sym_boolean] = ACTIONS(216), - [anon_sym_string] = ACTIONS(216), - [anon_sym_symbol] = ACTIONS(216), - [anon_sym_object] = ACTIONS(216), - [anon_sym_abstract] = ACTIONS(661), - [anon_sym_infer] = ACTIONS(663), - [anon_sym_keyof] = ACTIONS(665), - [anon_sym_unique] = ACTIONS(214), - [anon_sym_unknown] = ACTIONS(216), - [anon_sym_never] = ACTIONS(216), - [anon_sym_LBRACE_PIPE] = ACTIONS(218), - [sym_html_comment] = ACTIONS(5), - }, - [1125] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1124)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4689), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1125)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4638), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4638), + [sym_pair] = STATE(4638), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4694), + [aux_sym_object_pattern_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(3232), [anon_sym_export] = ACTIONS(3234), [anon_sym_STAR] = ACTIONS(3236), @@ -134598,14 +134803,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3250), [anon_sym_new] = ACTIONS(3252), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -134630,34 +134835,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1126] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [STATE(1126)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(3272), [anon_sym_export] = ACTIONS(3274), [anon_sym_STAR] = ACTIONS(3236), @@ -134670,14 +134875,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3278), [anon_sym_new] = ACTIONS(3280), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -134702,106 +134907,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1127] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3298), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_PIPE_RBRACE] = ACTIONS(3270), - [sym_html_comment] = ACTIONS(5), - }, - [1128] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [STATE(1127)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(3272), [anon_sym_export] = ACTIONS(3274), [anon_sym_STAR] = ACTIONS(3236), @@ -134809,19 +134942,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(3272), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3292), [anon_sym_let] = ACTIONS(3272), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3278), [anon_sym_new] = ACTIONS(3280), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -134846,67 +134979,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1129] = { - [sym_export_statement] = STATE(3903), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3903), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3903), - [sym_property_signature] = STATE(3903), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3903), - [sym_index_signature] = STATE(3903), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [STATE(1128)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1129)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(3314), [anon_sym_export] = ACTIONS(3316), [anon_sym_STAR] = ACTIONS(3236), [anon_sym_type] = ACTIONS(3314), [anon_sym_namespace] = ACTIONS(3314), [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_COMMA] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3292), [anon_sym_let] = ACTIONS(3314), [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3320), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3330), [anon_sym_module] = ACTIONS(3314), [anon_sym_any] = ACTIONS(3314), [anon_sym_number] = ACTIONS(3314), @@ -134915,57 +135120,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3314), [anon_sym_object] = ACTIONS(3314), [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_PIPE_RBRACE] = ACTIONS(3338), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1130] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [STATE(1130)] = { + [sym_export_statement] = STATE(3778), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3778), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3778), + [sym_property_signature] = STATE(3778), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3778), + [sym_index_signature] = STATE(3778), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(3272), [anon_sym_export] = ACTIONS(3274), [anon_sym_STAR] = ACTIONS(3236), [anon_sym_type] = ACTIONS(3272), [anon_sym_namespace] = ACTIONS(3272), [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3334), [anon_sym_let] = ACTIONS(3272), [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3336), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3278), [anon_sym_new] = ACTIONS(3280), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -134987,37 +135192,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3272), [anon_sym_object] = ACTIONS(3272), [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3338), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1131)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3268), [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1131] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [STATE(1132)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3352), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3358), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1133)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(3314), [anon_sym_export] = ACTIONS(3316), [anon_sym_STAR] = ACTIONS(3236), @@ -135025,32 +135374,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(3314), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3360), [anon_sym_let] = ACTIONS(3314), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3320), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3330), [anon_sym_module] = ACTIONS(3314), [anon_sym_any] = ACTIONS(3314), [anon_sym_number] = ACTIONS(3314), @@ -135062,34 +135411,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1132] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [STATE(1134)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(3314), [anon_sym_export] = ACTIONS(3316), [anon_sym_STAR] = ACTIONS(3236), @@ -135097,32 +135446,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(3314), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3362), [anon_sym_let] = ACTIONS(3314), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3320), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3330), [anon_sym_module] = ACTIONS(3314), [anon_sym_any] = ACTIONS(3314), [anon_sym_number] = ACTIONS(3314), @@ -135134,34 +135483,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1133] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), + [STATE(1135)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4638), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4638), + [sym_pair] = STATE(4638), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4694), + [aux_sym_object_pattern_repeat1] = STATE(4815), [sym_identifier] = ACTIONS(3232), [anon_sym_export] = ACTIONS(3234), [anon_sym_STAR] = ACTIONS(3236), @@ -135169,19 +135518,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(3232), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3364), [anon_sym_let] = ACTIONS(3232), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3250), [anon_sym_new] = ACTIONS(3252), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -135206,267 +135555,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1134] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4687), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4687), - [sym_pair] = STATE(4687), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4618), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_PIPE_RBRACE] = ACTIONS(3270), - [sym_html_comment] = ACTIONS(5), - }, - [1135] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4841), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4841), - [sym_pair] = STATE(4841), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4848), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3314), - [anon_sym_export] = ACTIONS(3316), - [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3314), - [anon_sym_namespace] = ACTIONS(3314), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_COMMA] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3314), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3314), - [anon_sym_any] = ACTIONS(3314), - [anon_sym_number] = ACTIONS(3314), - [anon_sym_boolean] = ACTIONS(3314), - [anon_sym_string] = ACTIONS(3314), - [anon_sym_symbol] = ACTIONS(3314), - [anon_sym_object] = ACTIONS(3314), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_PIPE_RBRACE] = ACTIONS(3270), - [sym_html_comment] = ACTIONS(5), - }, - [1136] = { - [sym_export_statement] = STATE(3906), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(4665), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(4687), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(4665), - [sym_method_definition] = STATE(4687), - [sym_pair] = STATE(4687), - [sym_pair_pattern] = STATE(4665), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3906), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3906), - [sym_property_signature] = STATE(3906), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3906), - [sym_index_signature] = STATE(3906), - [aux_sym_export_statement_repeat1] = STATE(4467), - [aux_sym_object_repeat1] = STATE(4618), - [aux_sym_object_pattern_repeat1] = STATE(4622), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3348), + [STATE(1136)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3274), [anon_sym_STAR] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), [anon_sym_LBRACE] = ACTIONS(3238), [anon_sym_COMMA] = ACTIONS(3240), [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3272), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_SEMI] = ACTIONS(3246), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3280), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), [anon_sym_AT] = ACTIONS(97), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), [anon_sym_abstract] = ACTIONS(3268), [anon_sym_PIPE_RBRACE] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, - [1137] = { - [sym_nested_identifier] = STATE(751), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), + [STATE(1137)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -135475,69 +135680,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1138] = { - [sym_nested_identifier] = STATE(223), - [sym_string] = STATE(216), - [sym__module] = STATE(245), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3370), + [STATE(1138)] = { + [sym_nested_identifier] = STATE(225), + [sym_string] = STATE(222), + [sym__module] = STATE(230), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -135546,69 +135751,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1139] = { - [sym_nested_identifier] = STATE(223), - [sym_string] = STATE(216), - [sym__module] = STATE(245), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3370), + [STATE(1139)] = { + [sym_nested_identifier] = STATE(225), + [sym_string] = STATE(222), + [sym__module] = STATE(230), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -135617,69 +135822,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [1140] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3376), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1140)] = { + [sym_nested_identifier] = STATE(225), + [sym_string] = STATE(222), + [sym__module] = STATE(230), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -135688,69 +135893,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [1141] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3376), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1141)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -135759,69 +135964,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1142] = { - [sym_nested_identifier] = STATE(223), - [sym_string] = STATE(216), - [sym__module] = STATE(245), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3370), + [STATE(1142)] = { + [sym_nested_identifier] = STATE(752), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3380), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -135830,69 +136035,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [1143] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3376), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1143)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -135901,69 +136106,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1144] = { - [sym_nested_identifier] = STATE(751), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [aux_sym_object_repeat1] = STATE(5191), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3368), + [STATE(1144)] = { + [sym_nested_identifier] = STATE(752), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3380), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -135972,69 +136177,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1145] = { - [sym_nested_identifier] = STATE(751), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [aux_sym_object_repeat1] = STATE(5129), - [aux_sym_object_pattern_repeat1] = STATE(5131), - [sym_identifier] = ACTIONS(3368), + [STATE(1145)] = { + [sym_nested_identifier] = STATE(752), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3380), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(691), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_BANG] = ACTIONS(120), [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136043,68 +136248,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(720), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1146] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [STATE(1146)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(220), + [anon_sym_EQ] = ACTIONS(219), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(223), - [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(222), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136113,68 +136318,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1147] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [STATE(1147)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136183,67 +136388,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1148] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [STATE(1148)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(806), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(158), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136252,66 +136457,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1149] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [STATE(1149)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(117), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(834), - [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(225), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136320,67 +136525,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(788), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1150] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), + [STATE(1150)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(117), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(836), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(126), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(836), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136389,49 +136594,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), - [anon_sym_QMARK] = ACTIONS(750), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(844), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), - [sym_html_comment] = ACTIONS(5), - }, - [1151] = { - [sym_export_statement] = STATE(3828), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(5520), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(5541), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(5520), - [sym_method_definition] = STATE(5541), - [sym_pair] = STATE(5541), - [sym_pair_pattern] = STATE(5520), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3828), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3828), - [sym_property_signature] = STATE(3828), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3828), - [sym_index_signature] = STATE(3828), - [aux_sym_export_statement_repeat1] = STATE(4467), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1151)] = { + [sym_export_statement] = STATE(3770), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(5479), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(5493), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(5479), + [sym_method_definition] = STATE(5493), + [sym_pair] = STATE(5493), + [sym_pair_pattern] = STATE(5479), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3770), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3770), + [sym_property_signature] = STATE(3770), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3770), + [sym_index_signature] = STATE(3770), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(3384), [anon_sym_export] = ACTIONS(3386), [anon_sym_STAR] = ACTIONS(3236), @@ -136443,14 +136648,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3384), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3391), [anon_sym_new] = ACTIONS(3393), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -136474,32 +136679,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, - [1152] = { - [sym_export_statement] = STATE(3920), - [sym_object_pattern] = STATE(5891), - [sym_object_assignment_pattern] = STATE(5520), - [sym_array_pattern] = STATE(5891), - [sym__call_signature] = STATE(4357), - [sym__destructuring_pattern] = STATE(5891), - [sym_spread_element] = STATE(5541), - [sym_string] = STATE(3054), - [sym_decorator] = STATE(1290), - [sym_formal_parameters] = STATE(3267), - [sym_rest_pattern] = STATE(5520), - [sym_method_definition] = STATE(5541), - [sym_pair] = STATE(5541), - [sym_pair_pattern] = STATE(5520), - [sym__property_name] = STATE(3054), - [sym_computed_property_name] = STATE(3054), - [sym_method_signature] = STATE(3920), - [sym_accessibility_modifier] = STATE(2728), - [sym_override_modifier] = STATE(2744), - [sym_call_signature] = STATE(3920), - [sym_property_signature] = STATE(3920), - [sym_type_parameters] = STATE(5435), - [sym_construct_signature] = STATE(3920), - [sym_index_signature] = STATE(3920), - [aux_sym_export_statement_repeat1] = STATE(4467), + [STATE(1152)] = { + [sym_export_statement] = STATE(3780), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(5479), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(5493), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(5479), + [sym_method_definition] = STATE(5493), + [sym_pair] = STATE(5493), + [sym_pair_pattern] = STATE(5479), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3780), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3780), + [sym_property_signature] = STATE(3780), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3780), + [sym_index_signature] = STATE(3780), + [aux_sym_export_statement_repeat1] = STATE(4506), [sym_identifier] = ACTIONS(3384), [anon_sym_export] = ACTIONS(3386), [anon_sym_STAR] = ACTIONS(3236), @@ -136511,14 +136716,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3384), [anon_sym_LPAREN] = ACTIONS(3244), [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1583), - [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), [anon_sym_async] = ACTIONS(3391), [anon_sym_new] = ACTIONS(3393), [anon_sym_DOT_DOT_DOT] = ACTIONS(249), [anon_sym_PLUS] = ACTIONS(3254), [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2470), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3256), [sym_private_property_identifier] = ACTIONS(3256), @@ -136542,48 +136747,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, - [1153] = { - [sym_nested_identifier] = STATE(1498), - [sym_string] = STATE(1500), - [sym__module] = STATE(1740), + [STATE(1153)] = { + [sym_nested_identifier] = STATE(4482), + [sym_string] = STATE(759), + [sym__module] = STATE(865), [sym_identifier] = ACTIONS(3405), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136592,65 +136797,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1154] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [sym_identifier] = ACTIONS(3376), + [STATE(1154)] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1542), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3407), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136659,65 +136864,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1155] = { - [sym_nested_identifier] = STATE(223), - [sym_string] = STATE(216), - [sym__module] = STATE(245), - [sym_identifier] = ACTIONS(3370), + [STATE(1155)] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1542), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3407), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136726,66 +136931,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1156] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), - [sym_identifier] = ACTIONS(3382), + [STATE(1156)] = { + [sym_nested_identifier] = STATE(752), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [sym_identifier] = ACTIONS(3380), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(158), - [anon_sym_RBRACK] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(156), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136794,64 +136998,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1157] = { - [sym_nested_identifier] = STATE(4574), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [sym_identifier] = ACTIONS(3407), + [STATE(1157)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136860,65 +137065,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1158] = { - [sym_nested_identifier] = STATE(751), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [sym_identifier] = ACTIONS(3368), + [STATE(1158)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(806), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(878), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136927,65 +137133,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1159] = { - [sym_nested_identifier] = STATE(1498), - [sym_string] = STATE(1500), - [sym__module] = STATE(1740), - [sym_identifier] = ACTIONS(3405), + [STATE(1159)] = { + [sym_nested_identifier] = STATE(225), + [sym_string] = STATE(222), + [sym__module] = STATE(230), + [sym_identifier] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(864), + [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -136994,65 +137199,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1160] = { - [sym_nested_identifier] = STATE(1498), - [sym_string] = STATE(1500), - [sym__module] = STATE(1740), - [sym_identifier] = ACTIONS(3405), + [STATE(1160)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -137061,65 +137266,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1161] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), - [sym_identifier] = ACTIONS(3382), + [STATE(1161)] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1542), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3407), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(862), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), - [anon_sym_RBRACE] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -137128,65 +137333,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1162] = { - [sym_nested_identifier] = STATE(751), - [sym_string] = STATE(781), - [sym__module] = STATE(900), - [sym_identifier] = ACTIONS(3368), + [STATE(1162)] = { + [sym_nested_identifier] = STATE(752), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [sym_identifier] = ACTIONS(3380), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_DQUOTE] = ACTIONS(1505), [anon_sym_SQUOTE] = ACTIONS(1507), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -137195,65 +137400,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1163] = { - [sym_nested_identifier] = STATE(1502), - [sym_string] = STATE(1503), - [sym__module] = STATE(1628), - [sym_identifier] = ACTIONS(3382), + [STATE(1163)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(814), + [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_of] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_SQUOTE] = ACTIONS(148), - [anon_sym_EQ_GT] = ACTIONS(870), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -137262,65 +137467,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1164] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [sym_identifier] = ACTIONS(3376), + [STATE(1164)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [sym_identifier] = ACTIONS(3368), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), [anon_sym_COLON] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3372), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -137329,65 +137534,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1165] = { - [sym_variable_declarator] = STATE(4496), - [sym_object_pattern] = STATE(3624), - [sym_array_pattern] = STATE(3624), - [sym__destructuring_pattern] = STATE(3624), - [sym_identifier] = ACTIONS(3376), + [STATE(1165)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), [anon_sym_STAR] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(830), [anon_sym_as] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), - [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -137396,65 +137601,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1166] = { - [sym_nested_identifier] = STATE(1498), - [sym_string] = STATE(1500), - [sym__module] = STATE(1740), - [sym_identifier] = ACTIONS(3405), + [STATE(1166)] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1542), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3407), [anon_sym_STAR] = ACTIONS(120), [anon_sym_EQ] = ACTIONS(854), [anon_sym_as] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(158), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(158), - [anon_sym_SEMI] = ACTIONS(158), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(120), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_GT] = ACTIONS(120), - [anon_sym_DOT] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_EQ_GT] = ACTIONS(712), - [anon_sym_QMARK_DOT] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_SLASH_EQ] = ACTIONS(164), - [anon_sym_PERCENT_EQ] = ACTIONS(164), - [anon_sym_CARET_EQ] = ACTIONS(164), - [anon_sym_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_EQ] = ACTIONS(164), - [anon_sym_GT_GT_EQ] = ACTIONS(164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(164), - [anon_sym_LT_LT_EQ] = ACTIONS(164), - [anon_sym_STAR_STAR_EQ] = ACTIONS(164), - [anon_sym_AMP_AMP_EQ] = ACTIONS(164), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(164), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(164), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(120), [anon_sym_PIPE_PIPE] = ACTIONS(120), [anon_sym_GT_GT] = ACTIONS(120), [anon_sym_GT_GT_GT] = ACTIONS(120), [anon_sym_LT_LT] = ACTIONS(120), - [anon_sym_AMP] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), [anon_sym_CARET] = ACTIONS(120), [anon_sym_PIPE] = ACTIONS(120), [anon_sym_PLUS] = ACTIONS(120), @@ -137463,51 +137668,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(120), [anon_sym_STAR_STAR] = ACTIONS(120), [anon_sym_LT] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(158), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(158), - [anon_sym_GT_EQ] = ACTIONS(158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_QMARK_QMARK] = ACTIONS(120), [anon_sym_instanceof] = ACTIONS(120), - [anon_sym_PLUS_PLUS] = ACTIONS(158), - [anon_sym_DASH_DASH] = ACTIONS(158), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(158), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(158), - [sym__ternary_qmark] = ACTIONS(158), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 14, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(881), 1, + anon_sym_in, + ACTIONS(884), 1, + anon_sym_of, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [93] = 14, ACTIONS(691), 1, anon_sym_EQ, + ACTIONS(697), 1, + anon_sym_RBRACE, ACTIONS(701), 1, anon_sym_COLON, ACTIONS(712), 1, anon_sym_EQ_GT, ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(722), 1, - anon_sym_RBRACE, ACTIONS(2250), 1, anon_sym_LPAREN, ACTIONS(2259), 1, anon_sym_LT, ACTIONS(3409), 1, sym_identifier, - STATE(5131), 1, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [186] = 13, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(881), 1, + anon_sym_in, + ACTIONS(884), 1, + anon_sym_of, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + sym_identifier, + STATE(4473), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3378), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 13, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [277] = 14, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + ACTIONS(3409), 1, + sym_identifier, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -137522,7 +137963,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [370] = 4, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3413), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3415), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [443] = 14, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137538,9 +138116,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 23, - anon_sym_STAR, + ACTIONS(3423), 16, + sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [536] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 23, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -137549,7 +138166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -137557,40 +138174,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3443), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [93] = 14, - ACTIONS(146), 1, + anon_sym_implements, + [607] = 15, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(842), 1, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(881), 1, - anon_sym_of, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, + anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137601,7 +138258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137617,17 +138274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 23, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -137641,11 +138299,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [186] = 3, + [702] = 4, + ACTIONS(3449), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3411), 23, + ACTIONS(3445), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137656,7 +138316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -137669,7 +138329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3413), 39, + ACTIONS(3447), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137678,7 +138338,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -137709,31 +138368,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [257] = 14, + [775] = 14, ACTIONS(691), 1, anon_sym_EQ, - ACTIONS(697), 1, - anon_sym_RBRACE, ACTIONS(701), 1, anon_sym_COLON, ACTIONS(712), 1, anon_sym_EQ_GT, ACTIONS(720), 1, anon_sym_QMARK, + ACTIONS(722), 1, + anon_sym_RBRACE, ACTIONS(2250), 1, anon_sym_LPAREN, ACTIONS(2259), 1, anon_sym_LT, ACTIONS(3409), 1, sym_identifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4947), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -137748,7 +138407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137775,7 +138434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -137788,50 +138447,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [350] = 4, - ACTIONS(3419), 1, - anon_sym_extends, + [868] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(923), 1, + anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3415), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3417), 38, + ACTIONS(157), 14, sym__ternary_qmark, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137847,21 +138498,37 @@ 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, + ACTIONS(120), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [423] = 3, + [957] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3421), 23, + ACTIONS(3451), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137872,7 +138539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -137885,7 +138552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3423), 39, + ACTIONS(3453), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137925,13 +138592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [494] = 4, - ACTIONS(3429), 1, - anon_sym_extends, + [1028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3425), 23, + ACTIONS(3445), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -137942,7 +138607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -137955,7 +138620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3427), 38, + ACTIONS(3447), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -137964,6 +138629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -137994,11 +138660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [567] = 3, + [1099] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3431), 23, + ACTIONS(3455), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138009,7 +138675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -138022,7 +138688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3433), 39, + ACTIONS(3457), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138062,114 +138728,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [638] = 14, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3435), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [731] = 14, - ACTIONS(691), 1, + [1170] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(830), 1, anon_sym_EQ, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(712), 1, + ACTIONS(929), 1, anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LT, - ACTIONS(3409), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(157), 14, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -138180,7 +138763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138196,7 +138779,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(120), 23, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138207,35 +138790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [824] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3415), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -138247,52 +138802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3417), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [895] = 3, + [1259] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3425), 23, + ACTIONS(3413), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138303,7 +138820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -138316,7 +138833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3427), 39, + ACTIONS(3415), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138356,11 +138873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [966] = 3, + [1330] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3457), 23, + ACTIONS(3459), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138371,7 +138888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -138384,7 +138901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3459), 39, + ACTIONS(3461), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138424,11 +138941,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1037] = 3, + [1401] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 23, + ACTIONS(3463), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138439,7 +138956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -138452,7 +138969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3463), 39, + ACTIONS(3465), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -138492,31 +139009,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1108] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(939), 1, + [1472] = 12, + ACTIONS(941), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(947), 1, anon_sym_EQ_GT, - ACTIONS(3382), 1, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3380), 1, sym_identifier, - STATE(1502), 1, + STATE(752), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(759), 1, sym_string, - STATE(1628), 1, + STATE(865), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -138527,7 +139044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138543,7 +139060,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(120), 25, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138554,7 +139071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -138568,65 +139085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [1197] = 15, - ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(890), 1, - anon_sym_EQ, - ACTIONS(895), 1, - anon_sym_COLON, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + [1560] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 24, + ACTIONS(2458), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138635,7 +139100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -138647,44 +139112,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1292] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 14, + ACTIONS(2456), 39, sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + anon_sym_implements, + [1630] = 13, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(3467), 1, + anon_sym_EQ, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3474), 1, + anon_sym_LT, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138700,9 +139190,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 25, - anon_sym_STAR, + ACTIONS(3423), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 20, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138711,7 +139218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -138719,52 +139226,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [1381] = 13, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(842), 1, + [1720] = 13, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(3467), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(881), 1, - anon_sym_of, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(3465), 1, - sym_identifier, - STATE(4496), 1, - sym_variable_declarator, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3474), 1, + anon_sym_LT, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3467), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(158), 13, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138780,37 +139267,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 23, - anon_sym_STAR, + ACTIONS(3423), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [1472] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2456), 22, + ACTIONS(3419), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -138819,7 +139295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -138827,25 +139303,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2454), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + [1810] = 13, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(722), 1, anon_sym_RBRACE, + ACTIONS(3467), 1, + anon_sym_EQ, + ACTIONS(3469), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3474), 1, + anon_sym_LT, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138861,6 +139344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -138870,35 +139362,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [1542] = 14, - ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(146), 1, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + 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, + [1900] = 13, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(890), 1, - anon_sym_EQ, + ACTIONS(895), 1, + anon_sym_COLON, ACTIONS(899), 1, anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138908,7 +139419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138935,7 +139446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -138949,50 +139460,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1634] = 14, - ACTIONS(3437), 1, + [1990] = 13, + ACTIONS(691), 1, anon_sym_EQ, - ACTIONS(3449), 1, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3467), 1, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(3469), 1, - anon_sym_DOT, - ACTIONS(3471), 1, - anon_sym_QMARK_DOT, - ACTIONS(3473), 1, + ACTIONS(2259), 1, anon_sym_LT, - STATE(3046), 1, - sym_arguments, - STATE(3197), 1, - sym_type_arguments, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3441), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3439), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139008,7 +139498,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 18, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139018,7 +139526,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -139027,32 +139537,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1726] = 12, - ACTIONS(909), 1, + [2080] = 11, + ACTIONS(941), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(947), 1, anon_sym_EQ_GT, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3407), 1, + ACTIONS(3368), 1, sym_identifier, - STATE(781), 1, - sym_string, - STATE(900), 1, - sym__module, - STATE(4574), 1, - sym_nested_identifier, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + STATE(4602), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -139062,7 +139571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139089,7 +139598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -139103,31 +139612,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1814] = 11, - ACTIONS(909), 1, + [2166] = 12, + ACTIONS(941), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(947), 1, anon_sym_EQ_GT, - ACTIONS(3376), 1, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3477), 1, sym_identifier, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - STATE(4487), 1, - sym_variable_declarator, + STATE(3494), 1, + sym_nested_identifier, + STATE(3565), 1, + sym_string, + STATE(4195), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(158), 13, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -139137,7 +139647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139164,7 +139674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -139178,29 +139688,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1900] = 13, + [2254] = 13, + ACTIONS(691), 1, + anon_sym_EQ, ACTIONS(701), 1, anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(724), 1, + ACTIONS(722), 1, anon_sym_RBRACE, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3477), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(3480), 1, - anon_sym_EQ_GT, - ACTIONS(3482), 1, + ACTIONS(2259), 1, anon_sym_LT, - STATE(5129), 1, + STATE(4947), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4964), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139216,7 +139726,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(3439), 17, + ACTIONS(157), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139234,7 +139744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139244,7 +139754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -139255,29 +139765,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1990] = 13, - ACTIONS(691), 1, + [2344] = 12, + ACTIONS(941), 1, anon_sym_EQ, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(712), 1, + ACTIONS(947), 1, anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LT, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(3374), 1, + sym_identifier, + ACTIONS(3376), 1, + anon_sym_DQUOTE, + ACTIONS(3378), 1, + anon_sym_SQUOTE, + STATE(222), 1, + sym_string, + STATE(225), 1, + sym_nested_identifier, + STATE(230), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139293,26 +139816,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(158), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 20, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139321,7 +139827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -139329,32 +139835,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2080] = 13, - ACTIONS(691), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2432] = 12, + ACTIONS(941), 1, anon_sym_EQ, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(712), 1, + ACTIONS(947), 1, anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LT, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3405), 1, + sym_identifier, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, + STATE(4482), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139370,26 +139892,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(158), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 20, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139398,7 +139903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -139406,34 +139911,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2170] = 12, - ACTIONS(909), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2520] = 14, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(3370), 1, + ACTIONS(3382), 1, sym_identifier, - ACTIONS(3372), 1, - anon_sym_DQUOTE, - ACTIONS(3374), 1, - anon_sym_SQUOTE, - STATE(216), 1, - sym_string, - STATE(223), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(245), 1, + STATE(1510), 1, + sym_string, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139444,7 +139954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139471,7 +139981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -139485,41 +139995,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2258] = 11, - ACTIONS(909), 1, + [2612] = 14, + ACTIONS(3421), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(3433), 1, anon_sym_EQ_GT, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - STATE(4496), 1, - sym_variable_declarator, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(3481), 1, + anon_sym_DOT, + ACTIONS(3483), 1, + anon_sym_QMARK_DOT, + ACTIONS(3485), 1, + anon_sym_LT, + STATE(3101), 1, + sym_arguments, + STATE(3220), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(158), 13, + ACTIONS(3429), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3425), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3423), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139535,9 +140054,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(120), 24, + ACTIONS(3419), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139546,27 +140064,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2344] = 5, - ACTIONS(3485), 1, + [2704] = 12, + ACTIONS(3421), 1, anon_sym_EQ, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + STATE(2994), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3487), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139582,42 +140112,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3439), 24, + ACTIONS(3423), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -139626,30 +140147,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [2418] = 12, - ACTIONS(909), 1, - anon_sym_EQ, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(1505), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2792] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(3368), 1, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, sym_identifier, - STATE(751), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(781), 1, + STATE(1510), 1, sym_string, - STATE(900), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -139664,7 +140184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139691,7 +140211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -139705,31 +140225,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2506] = 12, - ACTIONS(909), 1, + [2880] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(830), 1, anon_sym_EQ, ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3487), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(3504), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(3657), 1, + STATE(1510), 1, sym_string, - STATE(4416), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(157), 14, sym__ternary_qmark, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139740,7 +140260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139767,7 +140287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -139781,31 +140301,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2594] = 12, - ACTIONS(146), 1, + [2968] = 12, + ACTIONS(67), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(69), 1, anon_sym_SQUOTE, - ACTIONS(925), 1, + ACTIONS(941), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(947), 1, anon_sym_EQ_GT, - ACTIONS(3382), 1, + ACTIONS(3407), 1, sym_identifier, - STATE(1502), 1, + STATE(1538), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1542), 1, sym_string, - STATE(1628), 1, + STATE(1738), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139816,7 +140336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139843,7 +140363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -139857,29 +140377,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2682] = 13, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3477), 1, - anon_sym_LPAREN, - ACTIONS(3480), 1, - anon_sym_EQ_GT, - ACTIONS(3482), 1, - anon_sym_LT, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [3056] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(2504), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2502), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139895,26 +140434,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 17, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [3126] = 11, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + STATE(4473), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 13, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -139923,7 +140505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -139931,34 +140513,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2772] = 12, - ACTIONS(67), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [3212] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(69), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, ACTIONS(909), 1, anon_sym_EQ, ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(3405), 1, + ACTIONS(3382), 1, sym_identifier, - STATE(1498), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1500), 1, + STATE(1510), 1, sym_string, - STATE(1740), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(157), 14, sym__ternary_qmark, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139969,7 +140554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139996,7 +140581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -140010,29 +140595,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2860] = 13, - ACTIONS(146), 1, + [3300] = 13, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, ACTIONS(899), 1, anon_sym_EQ_GT, ACTIONS(903), 1, anon_sym_EQ, - ACTIONS(919), 1, + ACTIONS(935), 1, anon_sym_COLON, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 13, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -140046,7 +140631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140073,7 +140658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -140087,30 +140672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2950] = 12, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, + [3390] = 5, ACTIONS(3501), 1, - anon_sym_extends, - STATE(2909), 1, - sym_type_arguments, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3492), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140126,33 +140694,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3439), 18, + ACTIONS(3423), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -140163,29 +140740,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3038] = 13, + anon_sym_implements, + [3464] = 13, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(697), 1, + anon_sym_RBRACE, ACTIONS(701), 1, anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, ACTIONS(720), 1, anon_sym_QMARK, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(3475), 1, - anon_sym_EQ, - ACTIONS(3477), 1, + ACTIONS(2250), 1, anon_sym_LPAREN, - ACTIONS(3480), 1, - anon_sym_EQ_GT, - ACTIONS(3482), 1, + ACTIONS(2259), 1, anon_sym_LT, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140201,7 +140779,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(3439), 17, + ACTIONS(157), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140219,7 +140797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140229,7 +140807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -140240,33 +140818,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3128] = 13, - ACTIONS(146), 1, + [3554] = 14, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(895), 1, - anon_sym_COLON, - ACTIONS(899), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(903), 1, + ACTIONS(830), 1, anon_sym_EQ, + ACTIONS(881), 1, + anon_sym_in, + ACTIONS(884), 1, + anon_sym_of, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 13, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140276,7 +140855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140292,18 +140871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 24, + ACTIONS(120), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -140317,109 +140895,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3218] = 13, - ACTIONS(691), 1, - anon_sym_EQ, - ACTIONS(701), 1, - anon_sym_COLON, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(720), 1, - anon_sym_QMARK, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(2250), 1, - anon_sym_LPAREN, - ACTIONS(2259), 1, - anon_sym_LT, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [3308] = 12, - ACTIONS(146), 1, + [3645] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140429,7 +140929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140456,7 +140956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -140470,42 +140970,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3396] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(814), 1, + [3732] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3503), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(3505), 1, anon_sym_EQ_GT, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__ternary_qmark, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3425), 3, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140521,49 +141029,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 24, + ACTIONS(3419), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3484] = 3, + [3823] = 9, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(1655), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2452), 22, + ACTIONS(3507), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -140573,36 +141099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2450), 39, + ACTIONS(157), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140612,32 +141119,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [3554] = 12, - ACTIONS(146), 1, + [3904] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(814), 1, + ACTIONS(955), 1, anon_sym_EQ, - ACTIONS(899), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 13, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140647,7 +141152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140663,18 +141168,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(120), 24, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -140688,31 +141194,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3641] = 12, - ACTIONS(146), 1, + [3991] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(903), 1, + ACTIONS(830), 1, anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 13, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140722,7 +141227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140738,18 +141243,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(120), 24, + ACTIONS(120), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -140763,27 +141269,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3728] = 12, - ACTIONS(146), 1, + [4078] = 13, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(836), 1, + anon_sym_COLON, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -140796,7 +141304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140812,19 +141320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 25, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -140838,42 +141345,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3815] = 13, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, + [4167] = 14, + ACTIONS(3421), 1, anon_sym_EQ, - ACTIONS(834), 1, - anon_sym_COLON, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3429), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3425), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140889,9 +141403,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(120), 24, + ACTIONS(3419), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -140900,49 +141413,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3904] = 14, - ACTIONS(3443), 1, + [4258] = 8, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_DOT, + ACTIONS(3519), 1, + anon_sym_LT, + STATE(1273), 1, + sym_arguments, + STATE(5286), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3515), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3513), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [4337] = 14, + ACTIONS(3427), 1, anon_sym_LPAREN, - ACTIONS(3447), 1, + ACTIONS(3431), 1, anon_sym_DOT, - ACTIONS(3451), 1, + ACTIONS(3435), 1, anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3439), 1, anon_sym_LT, - ACTIONS(3480), 1, + ACTIONS(3472), 1, anon_sym_EQ_GT, - ACTIONS(3503), 1, + ACTIONS(3521), 1, anon_sym_EQ, - STATE(2880), 1, + STATE(2873), 1, sym_arguments, - STATE(2987), 1, + STATE(2924), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(3425), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3445), 3, + ACTIONS(3429), 3, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3439), 14, + ACTIONS(3423), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -140957,7 +141536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140973,7 +141552,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(3435), 17, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140991,112 +141570,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3995] = 9, - ACTIONS(156), 1, + [4428] = 16, + ACTIONS(3433), 1, anon_sym_EQ_GT, - ACTIONS(842), 1, - anon_sym_EQ, - ACTIONS(1683), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 2, - anon_sym_COMMA, + ACTIONS(3487), 1, anon_sym_LBRACK, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(158), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [4076] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, + ACTIONS(3493), 1, anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3496), 1, anon_sym_LT, - ACTIONS(3511), 1, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3532), 1, + anon_sym_QMARK, + STATE(2994), 1, sym_type_arguments, + STATE(5530), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, + ACTIONS(3490), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3439), 14, - sym__automatic_semicolon, + ACTIONS(3526), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3423), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141106,7 +141614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141122,10 +141630,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(3435), 17, + ACTIONS(3419), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141140,30 +141649,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4167] = 12, - ACTIONS(146), 1, + [4523] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(955), 1, + ACTIONS(830), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141173,7 +141683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141189,19 +141699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 25, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -141215,108 +141724,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4254] = 8, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3519), 1, - anon_sym_DOT, - ACTIONS(3521), 1, - anon_sym_LT, - STATE(1270), 1, - sym_arguments, - STATE(5556), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3517), 13, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3515), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [4333] = 16, - ACTIONS(3449), 1, + [4610] = 13, + ACTIONS(3433), 1, anon_sym_EQ_GT, - ACTIONS(3489), 1, + ACTIONS(3487), 1, anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(3532), 1, - anon_sym_QMARK, - STATE(2909), 1, + ACTIONS(3535), 1, + anon_sym_DOT, + ACTIONS(3538), 1, + anon_sym_LT, + STATE(3212), 1, sym_type_arguments, - STATE(5414), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, - anon_sym_AMP, + ACTIONS(3490), 2, + anon_sym_AMP3, anon_sym_PIPE, ACTIONS(3526), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3439), 13, + anon_sym_RBRACE, + ACTIONS(3499), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3423), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -141330,7 +141765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141346,7 +141781,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(3435), 18, + ACTIONS(3419), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141365,37 +141800,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4428] = 13, - ACTIONS(3449), 1, + [4699] = 8, + ACTIONS(3433), 1, anon_sym_EQ_GT, - ACTIONS(3489), 1, - anon_sym_LBRACK, ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_DOT, - ACTIONS(3538), 1, - anon_sym_LT, - STATE(3245), 1, - sym_type_arguments, + ACTIONS(3544), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3526), 2, + ACTIONS(3541), 5, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3501), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3439), 13, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -141406,7 +141832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141422,7 +141848,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(3435), 18, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141432,48 +141858,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4517] = 14, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3449), 1, + [4777] = 15, + ACTIONS(3433), 1, anon_sym_EQ_GT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, anon_sym_LT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3526), 1, + anon_sym_RPAREN, + ACTIONS(3544), 1, + anon_sym_QMARK, + STATE(2994), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, + ACTIONS(3490), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3441), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3439), 13, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3541), 2, anon_sym_COMMA, anon_sym_COLON, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141483,7 +141912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141499,7 +141928,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(3435), 18, + ACTIONS(3419), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141518,31 +141947,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4608] = 14, - ACTIONS(146), 1, + [4869] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(1025), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(881), 1, - anon_sym_of, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -141555,7 +141980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141571,57 +141996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 23, + ACTIONS(120), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4699] = 6, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(842), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 21, - anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, @@ -141629,7 +142007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -141641,45 +142019,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(158), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [4773] = 8, - ACTIONS(3541), 1, + [4955] = 8, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(3546), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3548), 1, + ACTIONS(788), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 5, + ACTIONS(126), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -141695,7 +142053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141711,7 +142069,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141721,7 +142079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -141733,40 +142091,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4851] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(1035), 1, + [5033] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3546), 1, anon_sym_EQ, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3425), 3, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141782,108 +142149,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 24, + ACTIONS(3419), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4937] = 6, - ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3485), 1, - anon_sym_EQ, + [5123] = 6, + ACTIONS(3554), 1, + anon_sym_AT, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, - anon_sym_STAR, + ACTIONS(3552), 14, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3550), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3439), 21, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [5197] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1021), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [5011] = 6, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141899,8 +142284,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(3435), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141909,7 +142295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -141921,45 +142307,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3439), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [5085] = 8, - ACTIONS(220), 1, + [5283] = 8, + ACTIONS(219), 1, anon_sym_EQ, ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(750), 1, + ACTIONS(788), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(223), 5, + ACTIONS(222), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -141975,7 +142341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142001,7 +142367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -142013,40 +142379,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5163] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(973), 1, + [5361] = 15, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, anon_sym_EQ, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + ACTIONS(3562), 1, + anon_sym_RPAREN, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(3490), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3560), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3423), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142062,9 +142437,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(120), 24, + ACTIONS(3419), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142073,41 +142447,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5249] = 12, - ACTIONS(146), 1, + [5453] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(971), 1, + ACTIONS(1027), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142120,7 +142489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142147,7 +142516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -142161,49 +142530,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5335] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, + [5539] = 12, + ACTIONS(3493), 1, anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3496), 1, anon_sym_LT, - ACTIONS(3550), 1, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3503), 1, anon_sym_EQ, - ACTIONS(3552), 1, + ACTIONS(3505), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, + STATE(2994), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(3487), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, + ACTIONS(3490), 3, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3439), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142219,7 +142569,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(3423), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142237,15 +142604,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5425] = 6, - ACTIONS(156), 1, + [5625] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(830), 1, anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142261,8 +142653,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(120), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142271,7 +142664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -142283,71 +142676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(158), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [5499] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(3556), 1, + [5711] = 6, + ACTIONS(225), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(830), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142363,45 +142702,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5589] = 12, - ACTIONS(146), 1, + ACTIONS(157), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [5785] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(981), 1, + ACTIONS(1019), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142414,7 +142779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142441,7 +142806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -142455,29 +142820,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5675] = 8, - ACTIONS(117), 1, + [5871] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(156), 1, + ACTIONS(3569), 1, anon_sym_EQ_GT, - ACTIONS(750), 1, - anon_sym_QMARK, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(126), 5, + ACTIONS(3425), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(158), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142487,7 +142861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + anon_sym_implements, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142503,62 +142878,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 21, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5753] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, + [5961] = 9, + ACTIONS(219), 1, + anon_sym_EQ, ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(977), 1, - anon_sym_EQ, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, + ACTIONS(3507), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1655), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(157), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142574,9 +142947,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(120), 24, + ACTIONS(120), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -142585,9 +142957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -142597,41 +142967,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [5839] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3558), 1, + [6041] = 8, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, anon_sym_EQ, - ACTIONS(3560), 1, + ACTIONS(3565), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(3560), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 13, - sym__ternary_qmark, - anon_sym_as, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142641,7 +142999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142657,45 +143015,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5929] = 12, - ACTIONS(146), 1, + [6119] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(969), 1, + ACTIONS(1033), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142708,7 +143070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142735,7 +143097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -142749,103 +143111,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6015] = 12, - ACTIONS(3480), 1, + [6205] = 12, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3503), 1, - anon_sym_EQ, - STATE(2909), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3489), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3492), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3435), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6101] = 12, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(830), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, ACTIONS(881), 1, + anon_sym_in, + ACTIONS(884), 1, anon_sym_of, - ACTIONS(3378), 1, + ACTIONS(3370), 1, anon_sym_LBRACE, - ACTIONS(3562), 1, + ACTIONS(3571), 1, sym_identifier, - ACTIONS(3564), 1, + ACTIONS(3573), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4623), 3, + STATE(4943), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(158), 11, + ACTIONS(157), 11, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_DOT, @@ -142857,7 +143145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142883,7 +143171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -142897,27 +143185,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6187] = 12, - ACTIONS(146), 1, + [6291] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(967), 1, + ACTIONS(1031), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -142930,7 +143218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142957,7 +143245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -142971,27 +143259,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6273] = 12, - ACTIONS(146), 1, + [6377] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(975), 1, + ACTIONS(1023), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143004,7 +143292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143031,7 +143319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -143045,40 +143333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6359] = 12, - ACTIONS(146), 1, - anon_sym_DQUOTE, - ACTIONS(148), 1, - anon_sym_SQUOTE, - ACTIONS(225), 1, + [6463] = 6, + ACTIONS(3433), 1, anon_sym_EQ_GT, - ACTIONS(979), 1, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(3382), 1, - sym_identifier, - STATE(1502), 1, - sym_nested_identifier, - STATE(1503), 1, - sym_string, - STATE(1628), 1, - sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143094,9 +143357,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(120), 24, + ACTIONS(3419), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143105,7 +143367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -143117,32 +143379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [6445] = 9, - ACTIONS(117), 1, - anon_sym_EQ, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(3505), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1683), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(158), 14, + ACTIONS(3423), 21, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143154,75 +143401,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6525] = 15, - ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, + [6537] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3523), 1, + ACTIONS(3576), 1, anon_sym_EQ, - ACTIONS(3526), 1, - anon_sym_RPAREN, - ACTIONS(3548), 1, - anon_sym_QMARK, - STATE(2909), 1, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3567), 2, + ACTIONS(3425), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3439), 13, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143232,7 +143443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143248,11 +143459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 18, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143267,39 +143477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6617] = 8, + [6627] = 6, ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(806), 1, anon_sym_EQ, - ACTIONS(836), 1, - anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(834), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(158), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143325,7 +143511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -143337,48 +143523,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6695] = 14, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3443), 1, + ACTIONS(157), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3447), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3451), 1, anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6701] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1035), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3441), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3439), 11, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143394,8 +143594,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(3435), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -143404,20 +143605,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6785] = 3, + anon_sym_instanceof, + anon_sym_satisfies, + [6787] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3572), 16, + ACTIONS(3582), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -143434,7 +143640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3570), 43, + ACTIONS(3580), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -143478,27 +143684,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [6853] = 12, - ACTIONS(146), 1, + [6855] = 14, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3425), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3423), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6945] = 12, + ACTIONS(145), 1, anon_sym_DQUOTE, - ACTIONS(148), 1, + ACTIONS(147), 1, anon_sym_SQUOTE, - ACTIONS(225), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(1029), 1, anon_sym_EQ, ACTIONS(3382), 1, sym_identifier, - STATE(1502), 1, + STATE(1509), 1, sym_nested_identifier, - STATE(1503), 1, + STATE(1510), 1, sym_string, - STATE(1628), 1, + STATE(1708), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143511,7 +143793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143538,7 +143820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -143552,38 +143834,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6939] = 15, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3541), 1, + [7031] = 6, + ACTIONS(3421), 1, anon_sym_EQ, - ACTIONS(3546), 1, + ACTIONS(3433), 1, anon_sym_EQ_GT, - ACTIONS(3548), 1, - anon_sym_QMARK, - ACTIONS(3574), 1, - anon_sym_RPAREN, - STATE(2909), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, - anon_sym_AMP, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3544), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3439), 13, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3423), 21, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -143594,7 +143902,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + [7105] = 12, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3521), 1, + anon_sym_EQ, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3487), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143610,11 +143941,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 18, + ACTIONS(3423), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143629,23 +143976,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7031] = 8, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3546), 1, + [7191] = 8, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3579), 1, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(844), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 5, + ACTIONS(836), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -143661,7 +144008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143677,7 +144024,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143687,7 +144034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -143699,23 +144046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7109] = 8, - ACTIONS(3449), 1, - anon_sym_EQ_GT, - ACTIONS(3523), 1, + [7269] = 8, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(3548), 1, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3586), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 5, + ACTIONS(3584), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -143731,7 +144078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143747,7 +144094,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143757,7 +144104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -143769,30 +144116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7187] = 12, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3511), 1, + [7347] = 5, + ACTIONS(3421), 1, anon_sym_EQ, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - STATE(2909), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3492), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143808,55 +144138,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3435), 17, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7273] = 6, - ACTIONS(3585), 1, - anon_sym_AT, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + ACTIONS(3423), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7418] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 14, + ACTIONS(3590), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -143868,7 +144202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3581), 42, + anon_sym_AT, + ACTIONS(3588), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -143911,30 +144246,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [7347] = 12, - ACTIONS(3489), 1, + [7485] = 12, + ACTIONS(3487), 1, anon_sym_LBRACK, - ACTIONS(3495), 1, + ACTIONS(3493), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3496), 1, anon_sym_LT, - ACTIONS(3558), 1, + ACTIONS(3546), 1, anon_sym_EQ, - ACTIONS(3560), 1, + ACTIONS(3548), 1, anon_sym_EQ_GT, - STATE(2909), 1, + STATE(2994), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 2, + ACTIONS(3499), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3492), 3, + ACTIONS(3490), 3, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -143950,7 +144285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143966,7 +144301,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(3435), 17, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143984,36 +144319,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7432] = 13, - ACTIONS(3485), 1, + [7570] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3445), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3489), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3447), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3495), 1, anon_sym_DOT, - ACTIONS(3498), 1, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7639] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, anon_sym_LT, - ACTIONS(3546), 1, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(3594), 1, anon_sym_EQ_GT, - ACTIONS(3577), 1, - anon_sym_COLON, - STATE(2909), 1, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3501), 3, + ACTIONS(3425), 3, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3439), 13, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 12, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7728] = 14, + ACTIONS(3427), 1, anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3425), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3423), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144023,7 +144499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144039,7 +144515,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(3435), 18, + ACTIONS(3419), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144058,33 +144534,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7519] = 14, - ACTIONS(3437), 1, + [7817] = 14, + ACTIONS(3421), 1, anon_sym_EQ, - ACTIONS(3449), 1, + ACTIONS(3433), 1, anon_sym_EQ_GT, - ACTIONS(3489), 1, + ACTIONS(3487), 1, anon_sym_LBRACK, - ACTIONS(3495), 1, + ACTIONS(3493), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3496), 1, anon_sym_LT, - ACTIONS(3501), 1, + ACTIONS(3499), 1, anon_sym_extends, - ACTIONS(3577), 1, + ACTIONS(3584), 1, anon_sym_COLON, - STATE(2909), 1, + STATE(2994), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3492), 2, - anon_sym_AMP, + ACTIONS(3490), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3588), 2, + ACTIONS(3596), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(3439), 13, + ACTIONS(3423), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -144098,7 +144574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144114,7 +144590,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(3435), 18, + ACTIONS(3419), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144133,18 +144609,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7608] = 4, + [7906] = 7, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3425), 22, + ACTIONS(3584), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144153,7 +144665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -144165,15 +144677,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 32, - sym__ternary_qmark, - anon_sym_as, + [7981] = 7, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 5, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144189,33 +144723,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7677] = 9, - ACTIONS(864), 1, - anon_sym_EQ, - ACTIONS(870), 1, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8056] = 9, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(1683), 1, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(1655), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, + ACTIONS(3507), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3508), 3, + ACTIONS(3510), 3, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144231,13 +144778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 17, + ACTIONS(157), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144268,111 +144815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7756] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3594), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3592), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [7823] = 4, + [8135] = 9, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(868), 1, + anon_sym_EQ_GT, + ACTIONS(1655), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 3, + ACTIONS(3507), 2, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3425), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + anon_sym_LBRACK, + ACTIONS(3510), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3427), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144388,73 +144848,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7892] = 8, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, - anon_sym_EQ, - ACTIONS(858), 1, - anon_sym_COLON, - ACTIONS(3409), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 17, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 24, + anon_sym_satisfies, + ACTIONS(120), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -144464,32 +144885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7969] = 5, - ACTIONS(3437), 1, - anon_sym_EQ, + [8214] = 4, + ACTIONS(3449), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, + ACTIONS(3445), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144498,7 +144902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -144510,19 +144914,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3439), 21, + ACTIONS(3447), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144532,30 +144950,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8040] = 12, - ACTIONS(3489), 1, + [8283] = 12, + ACTIONS(3487), 1, anon_sym_LBRACK, - ACTIONS(3495), 1, + ACTIONS(3493), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3496), 1, anon_sym_LT, - ACTIONS(3554), 1, + ACTIONS(3576), 1, anon_sym_EQ, - ACTIONS(3556), 1, + ACTIONS(3578), 1, anon_sym_EQ_GT, - STATE(2909), 1, + STATE(2994), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 2, + ACTIONS(3499), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3492), 3, + ACTIONS(3490), 3, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -144571,7 +144989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144587,7 +145005,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(3435), 17, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144605,48 +145023,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8125] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3596), 1, - anon_sym_EQ, - ACTIONS(3598), 1, + [8368] = 8, + ACTIONS(712), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(3409), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(157), 15, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144662,43 +145067,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8214] = 7, - ACTIONS(3541), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [8445] = 11, + ACTIONS(219), 1, anon_sym_EQ, - ACTIONS(3548), 1, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(788), 1, anon_sym_QMARK, + ACTIONS(3507), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 5, + ACTIONS(222), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(1655), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144710,7 +145128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144726,7 +145144,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(3435), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144736,9 +145154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -144748,78 +145164,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8289] = 4, - ACTIONS(3419), 1, - anon_sym_extends, + [8528] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3415), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3417), 35, + ACTIONS(3417), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [8358] = 4, - ACTIONS(3429), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3425), 22, + anon_sym_PIPE_RBRACE, + ACTIONS(3413), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -144830,7 +145184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -144842,15 +145196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 35, - sym__automatic_semicolon, + ACTIONS(3415), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -144878,24 +145229,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8427] = 7, - ACTIONS(3523), 1, + [8597] = 8, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, anon_sym_EQ, - ACTIONS(3548), 1, - anon_sym_QMARK, + ACTIONS(856), 1, + anon_sym_COLON, + ACTIONS(3409), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3439), 15, + ACTIONS(157), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -144903,12 +145254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144924,8 +145273,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(3435), 21, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -144934,7 +145284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -144946,43 +145296,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8502] = 11, - ACTIONS(220), 1, - anon_sym_EQ, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(750), 1, - anon_sym_QMARK, - ACTIONS(3505), 1, - anon_sym_LBRACK, + anon_sym_instanceof, + anon_sym_satisfies, + [8674] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(223), 2, + ACTIONS(3417), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1683), 2, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3508), 2, - anon_sym_AMP, + ACTIONS(3413), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(158), 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3415), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144998,8 +145354,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 19, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8743] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3445), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145008,7 +145383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -145018,7 +145395,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8585] = 3, + ACTIONS(3447), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -145082,38 +145492,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [8652] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3604), 1, + [8879] = 7, + ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(3606), 1, - anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(3544), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, + ACTIONS(3541), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145123,7 +145522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145139,65 +145538,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8741] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3546), 1, + [8954] = 8, + ACTIONS(712), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(874), 1, + anon_sym_COLON, + ACTIONS(3409), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3441), 4, + ACTIONS(157), 15, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3439), 11, - sym__ternary_qmark, - anon_sym_as, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145213,8 +145604,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(3435), 18, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145223,36 +145615,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8830] = 7, - ACTIONS(3485), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [9031] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3604), 1, anon_sym_EQ, - ACTIONS(3579), 1, - anon_sym_QMARK, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 5, + ACTIONS(3425), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3439), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145262,7 +145670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145278,41 +145686,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8905] = 7, - ACTIONS(3585), 1, + [9120] = 7, + ACTIONS(3554), 1, anon_sym_AT, ACTIONS(3608), 1, anon_sym_class, - STATE(1253), 1, + STATE(1227), 1, aux_sym_export_statement_repeat1, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 14, + ACTIONS(3552), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -145327,7 +145731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3581), 40, + ACTIONS(3550), 40, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145368,103 +145772,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [8980] = 9, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, - anon_sym_EQ, - ACTIONS(1683), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 2, - anon_sym_COMMA, + [9195] = 13, + ACTIONS(3487), 1, anon_sym_LBRACK, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9059] = 12, - ACTIONS(3495), 1, + ACTIONS(3493), 1, anon_sym_DOT, - ACTIONS(3498), 1, + ACTIONS(3496), 1, anon_sym_LT, ACTIONS(3501), 1, - anon_sym_extends, - ACTIONS(3550), 1, anon_sym_EQ, - ACTIONS(3552), 1, + ACTIONS(3565), 1, anon_sym_EQ_GT, - STATE(2909), 1, + ACTIONS(3584), 1, + anon_sym_COLON, + STATE(2994), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3492), 3, - anon_sym_GT, - anon_sym_AMP, + ACTIONS(3490), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3439), 15, + ACTIONS(3499), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3423), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -145476,8 +145811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145493,10 +145827,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(3435), 17, + ACTIONS(3419), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -145511,35 +145846,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9144] = 8, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, - anon_sym_EQ, - ACTIONS(876), 1, - anon_sym_COLON, - ACTIONS(3409), 1, - sym_identifier, + [9282] = 11, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(788), 1, + anon_sym_QMARK, + ACTIONS(3507), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(126), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1655), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_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(164), 15, + anon_sym_satisfies, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145555,9 +145898,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(120), 24, + ACTIONS(120), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145566,9 +145908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -145578,17 +145918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [9221] = 4, + [9365] = 4, + ACTIONS(3417), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3415), 22, + ACTIONS(3413), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -145599,7 +145935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -145611,13 +145947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3417), 33, + ACTIONS(3415), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -145645,35 +145983,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9290] = 8, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, + [9434] = 12, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(856), 1, - anon_sym_COLON, - ACTIONS(3409), 1, - sym_identifier, + ACTIONS(3569), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(3487), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(164), 15, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145689,56 +146038,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 24, + ACTIONS(3419), 17, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [9367] = 11, - ACTIONS(117), 1, - anon_sym_EQ, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(750), 1, - anon_sym_QMARK, - ACTIONS(3505), 1, + [9519] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3613), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3611), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [9585] = 8, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(836), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(126), 2, + ACTIONS(878), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1683), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(158), 14, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -145750,7 +146149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145766,38 +146165,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(120), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9450] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3419), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 22, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -145806,7 +146175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -145818,64 +146187,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3417), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [9519] = 11, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(834), 1, - anon_sym_COLON, - ACTIONS(842), 1, + [9661] = 12, + ACTIONS(3421), 1, anon_sym_EQ, - ACTIONS(1683), 1, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, anon_sym_extends, - ACTIONS(3505), 1, - anon_sym_LBRACK, + STATE(2994), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - anon_sym_AMP, + ACTIONS(3487), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3490), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3611), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(158), 14, + ACTIONS(3423), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145886,7 +146224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145902,7 +146240,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(120), 19, + ACTIONS(3419), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145918,19 +146256,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9601] = 6, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, + [9745] = 9, + ACTIONS(941), 1, anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3507), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(1655), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145946,15 +146292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 19, + ACTIONS(157), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -145966,19 +146309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -145988,87 +146328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9673] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3517), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3515), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [9739] = 9, - ACTIONS(909), 1, + [9823] = 6, + ACTIONS(830), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(868), 1, anon_sym_EQ_GT, - ACTIONS(3505), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146084,12 +146352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 16, + ACTIONS(157), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146101,16 +146372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 18, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146120,31 +146394,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9817] = 10, - ACTIONS(117), 1, + [9895] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(156), 1, + ACTIONS(3565), 1, anon_sym_EQ_GT, - ACTIONS(1685), 1, - anon_sym_QMARK, - ACTIONS(3505), 1, - anon_sym_LBRACK, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1683), 3, + ACTIONS(3425), 3, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(158), 14, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146154,7 +146434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146170,11 +146450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 19, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -146186,15 +146465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9897] = 3, + [9983] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3431), 22, + ACTIONS(3413), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146205,7 +146483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -146217,7 +146495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3433), 35, + ACTIONS(3415), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146253,11 +146531,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9963] = 3, + [10049] = 7, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10123] = 7, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10197] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2456), 22, + ACTIONS(3459), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146268,7 +146680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -146280,7 +146692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2454), 35, + ACTIONS(3461), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146316,13 +146728,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10029] = 5, - ACTIONS(3485), 1, + [10263] = 7, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, anon_sym_EQ, + ACTIONS(874), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146338,15 +146754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 20, + ACTIONS(157), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146359,7 +146773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146369,7 +146783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -146381,11 +146795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10099] = 3, + [10337] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3617), 15, + ACTIONS(3515), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, @@ -146401,7 +146815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3615), 42, + ACTIONS(3513), 42, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -146444,17 +146858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [10165] = 7, - ACTIONS(858), 1, - anon_sym_COLON, - ACTIONS(3480), 1, + [10403] = 7, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3503), 1, + ACTIONS(854), 1, anon_sym_EQ, + ACTIONS(856), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146470,7 +146884,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(3439), 18, + ACTIONS(157), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146489,7 +146903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146499,7 +146913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -146511,17 +146925,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10239] = 7, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, + [10477] = 9, + ACTIONS(923), 1, anon_sym_EQ, - ACTIONS(858), 1, - anon_sym_COLON, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(1655), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3507), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146537,14 +146958,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(158), 18, - sym__automatic_semicolon, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146556,19 +146974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + anon_sym_implements, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146578,45 +146994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10313] = 3, + [10555] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3421), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3423), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146632,6 +147018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146641,13 +147038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10379] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3415), 22, + ACTIONS(3419), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -146656,7 +147048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -146668,18 +147060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3417), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [10627] = 6, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146695,6 +147084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146704,11 +147104,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10445] = 3, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10699] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3425), 22, + ACTIONS(2504), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146719,7 +147141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -146731,7 +147153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 35, + ACTIONS(2502), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -146767,47 +147189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10511] = 14, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(3455), 1, - anon_sym_LT, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3546), 1, + [10765] = 7, + ACTIONS(874), 1, + anon_sym_COLON, + ACTIONS(3472), 1, anon_sym_EQ_GT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(3521), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146823,42 +147215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10599] = 8, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(834), 1, - anon_sym_COLON, - ACTIONS(842), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(883), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(158), 15, + ACTIONS(3423), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146871,23 +147234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146897,7 +147244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -146909,15 +147256,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10675] = 6, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3513), 1, + [10839] = 11, + ACTIONS(225), 1, anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(836), 1, + anon_sym_COLON, + ACTIONS(1655), 1, + anon_sym_extends, + ACTIONS(3507), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3615), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146933,27 +147307,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(3439), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146963,9 +147317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -146975,11 +147327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10747] = 3, + [10921] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3457), 22, + ACTIONS(2458), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -146990,7 +147342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -147002,7 +147354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3459), 35, + ACTIONS(2456), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147038,11 +147390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10813] = 3, + [10987] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3461), 22, + ACTIONS(3445), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -147053,7 +147405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -147065,7 +147417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3463), 35, + ACTIONS(3447), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147101,213 +147453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10879] = 12, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3449), 1, + [11053] = 6, + ACTIONS(712), 1, anon_sym_EQ_GT, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3501), 1, - anon_sym_extends, - STATE(2909), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3489), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3492), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10963] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3621), 15, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3619), 42, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [11029] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2452), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2450), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [11095] = 6, - ACTIONS(864), 1, + ACTIONS(854), 1, anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147323,14 +147477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 19, + ACTIONS(157), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147353,7 +147507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -147365,15 +147519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11167] = 6, - ACTIONS(3480), 1, + [11125] = 6, + ACTIONS(3472), 1, anon_sym_EQ_GT, - ACTIONS(3503), 1, + ACTIONS(3501), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147389,7 +147543,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(3439), 19, + ACTIONS(3423), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147409,7 +147563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147419,7 +147573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -147431,15 +147585,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11239] = 6, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, + [11197] = 12, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3592), 1, anon_sym_EQ, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147455,94 +147639,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11311] = 6, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_EQ_GT, + [11281] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3455), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147551,7 +147672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -147561,26 +147682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11383] = 9, - ACTIONS(939), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, - ACTIONS(1683), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 2, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3457), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(164), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147596,12 +147711,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 16, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11347] = 12, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3604), 1, + anon_sym_EQ, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147612,8 +147758,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(120), 18, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147628,28 +147789,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11461] = 9, - ACTIONS(925), 1, + [11431] = 9, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, - ACTIONS(3505), 1, + ACTIONS(3507), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 2, + ACTIONS(1655), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3508), 3, + ACTIONS(3510), 3, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147665,7 +147825,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(158), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -147701,15 +147861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11539] = 6, - ACTIONS(3480), 1, + [11509] = 6, + ACTIONS(3472), 1, anon_sym_EQ_GT, - ACTIONS(3485), 1, + ACTIONS(3521), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147725,7 +147885,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(3439), 19, + ACTIONS(3423), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147745,7 +147905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147755,7 +147915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -147767,17 +147927,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11611] = 7, + [11581] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3621), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3619), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [11647] = 7, ACTIONS(856), 1, anon_sym_COLON, - ACTIONS(3480), 1, + ACTIONS(3472), 1, anon_sym_EQ_GT, - ACTIONS(3503), 1, + ACTIONS(3521), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147793,7 +148016,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(3439), 18, + ACTIONS(3423), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147812,7 +148035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147822,7 +148045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -147834,17 +148057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11685] = 7, - ACTIONS(876), 1, - anon_sym_COLON, - ACTIONS(3480), 1, - anon_sym_EQ_GT, - ACTIONS(3503), 1, + [11721] = 6, + ACTIONS(862), 1, anon_sym_EQ, + ACTIONS(868), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147860,13 +148081,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 18, + ACTIONS(157), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -147879,7 +148101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147889,7 +148111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -147901,53 +148123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11759] = 7, - ACTIONS(712), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, - anon_sym_EQ, - ACTIONS(876), 1, - anon_sym_COLON, + [11793] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3441), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -147956,7 +148138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -147968,15 +148150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11833] = 6, - ACTIONS(3511), 1, - anon_sym_EQ, - ACTIONS(3513), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, + ACTIONS(3443), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147992,17 +148177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148012,39 +148186,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11905] = 7, - ACTIONS(712), 1, + [11859] = 10, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(854), 1, + ACTIONS(830), 1, anon_sym_EQ, - ACTIONS(856), 1, + ACTIONS(836), 1, anon_sym_COLON, + ACTIONS(3507), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1655), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148060,26 +148236,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(158), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148089,9 +148246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -148101,34 +148256,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11979] = 12, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3596), 1, + [11939] = 10, + ACTIONS(219), 1, anon_sym_EQ, - ACTIONS(3598), 1, + ACTIONS(225), 1, anon_sym_EQ_GT, - STATE(2909), 1, - sym_type_arguments, + ACTIONS(1657), 1, + anon_sym_QMARK, + ACTIONS(3507), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 2, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1655), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3492), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 14, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -148139,7 +148290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148155,10 +148306,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(3435), 17, + ACTIONS(120), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -148170,44 +148322,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12063] = 10, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, + [12019] = 5, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(834), 1, - anon_sym_COLON, - ACTIONS(3505), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1683), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(158), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148223,7 +148348,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 19, + ACTIONS(3423), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148233,7 +148379,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -148243,35 +148391,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12143] = 12, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3604), 1, - anon_sym_EQ, - ACTIONS(3606), 1, - anon_sym_EQ_GT, - STATE(2909), 1, - sym_type_arguments, + [12089] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3492), 3, + ACTIONS(3463), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3439), 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3465), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148281,7 +148454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + [12155] = 6, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148297,52 +148478,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + ACTIONS(157), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [12227] = 14, - ACTIONS(3443), 1, + ACTIONS(3427), 1, anon_sym_LPAREN, - ACTIONS(3447), 1, + ACTIONS(3431), 1, anon_sym_DOT, - ACTIONS(3451), 1, + ACTIONS(3435), 1, anon_sym_QMARK_DOT, - ACTIONS(3455), 1, + ACTIONS(3439), 1, anon_sym_LT, - ACTIONS(3485), 1, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(3546), 1, + ACTIONS(3565), 1, anon_sym_EQ_GT, - STATE(2880), 1, + STATE(2873), 1, sym_arguments, - STATE(2987), 1, + STATE(2924), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, + ACTIONS(3429), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3441), 3, + ACTIONS(3425), 3, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3439), 11, + ACTIONS(3423), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LT_EQ, @@ -148354,7 +148559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148370,7 +148575,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(3435), 18, + ACTIONS(3419), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148393,7 +148598,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3411), 22, + ACTIONS(3451), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148404,7 +148609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -148416,7 +148621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3413), 35, + ACTIONS(3453), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148452,40 +148657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12381] = 9, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(903), 1, + [12381] = 6, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(3505), 1, - anon_sym_LBRACK, + ACTIONS(3569), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(158), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148501,36 +148681,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12458] = 5, - ACTIONS(3419), 1, - anon_sym_extends, - ACTIONS(3623), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3415), 22, + ACTIONS(3423), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3419), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148539,7 +148710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -148551,48 +148722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3417), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [12527] = 5, - ACTIONS(3429), 1, - anon_sym_extends, - ACTIONS(3625), 1, - anon_sym_QMARK, + [12452] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3425), 22, + ACTIONS(3417), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3413), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148603,7 +148740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -148615,13 +148752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 32, + ACTIONS(3415), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -148648,27 +148785,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12596] = 9, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(842), 1, + [12519] = 9, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, anon_sym_EQ, - ACTIONS(1683), 1, - anon_sym_extends, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3508), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148680,7 +148815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148696,7 +148831,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(120), 19, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148706,7 +148841,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -148716,32 +148853,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12673] = 7, - ACTIONS(909), 1, + [12596] = 9, + ACTIONS(955), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, - ACTIONS(3627), 1, - sym_identifier, + ACTIONS(3507), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(1655), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 15, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_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(164), 15, + anon_sym_satisfies, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148757,20 +148902,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 24, + ACTIONS(120), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -148780,18 +148921,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [12746] = 4, + [12673] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 2, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3425), 22, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3419), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -148800,7 +148974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -148812,15 +148986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [12744] = 6, + ACTIONS(923), 1, + anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148836,42 +149010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [12813] = 12, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3489), 1, - anon_sym_LBRACK, - ACTIONS(3495), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_LT, - ACTIONS(3546), 1, - anon_sym_EQ_GT, - STATE(2909), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3501), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3492), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3439), 13, + ACTIONS(157), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -148882,69 +149028,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 17, + anon_sym_implements, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12896] = 7, - ACTIONS(3437), 1, + [12815] = 8, + ACTIONS(3421), 1, anon_sym_EQ, - ACTIONS(3577), 1, - anon_sym_COLON, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3629), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3439), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148960,17 +149079,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, + ACTIONS(3423), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -148982,15 +149118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12969] = 6, - ACTIONS(939), 1, + [12890] = 6, + ACTIONS(830), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(929), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149006,7 +149142,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(158), 18, + ACTIONS(157), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -149035,7 +149171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149047,25 +149183,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13040] = 4, + [12961] = 10, + ACTIONS(3541), 1, + anon_sym_RBRACK, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(3631), 1, + anon_sym_in, + ACTIONS(3633), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3415), 22, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149077,15 +149252,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3417), 32, - sym__automatic_semicolon, + [13040] = 7, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3635), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149101,6 +149296,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13113] = 9, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(1655), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3507), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -149110,19 +149350,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13107] = 8, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3449), 1, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13190] = 8, + ACTIONS(225), 1, anon_sym_EQ_GT, - ACTIONS(3632), 1, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(881), 1, anon_sym_in, - ACTIONS(3635), 1, + ACTIONS(3638), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149138,7 +149414,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(3439), 17, + ACTIONS(157), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -149156,7 +149432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -149165,7 +149441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149177,21 +149453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13182] = 9, - ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(890), 1, + [13265] = 7, + ACTIONS(3421), 1, anon_sym_EQ, - ACTIONS(895), 1, + ACTIONS(3584), 1, anon_sym_COLON, - ACTIONS(899), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3635), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -149207,7 +149481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149223,7 +149497,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(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149233,7 +149507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149245,15 +149519,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13259] = 6, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, + [13338] = 5, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(3640), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3413), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3415), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149269,12 +149574,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 18, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13407] = 7, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3642), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149282,14 +149605,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(120), 21, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149298,7 +149635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149310,32 +149647,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13330] = 7, - ACTIONS(909), 1, - anon_sym_EQ, - ACTIONS(915), 1, - anon_sym_EQ_GT, - ACTIONS(3409), 1, - sym_identifier, + anon_sym_instanceof, + anon_sym_satisfies, + [13480] = 5, + ACTIONS(3449), 1, + anon_sym_extends, + ACTIONS(3644), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 14, - sym__automatic_semicolon, + ACTIONS(3445), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3447), 32, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_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(164), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149351,9 +149704,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 24, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13549] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3445), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149362,7 +149731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149374,15 +149743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [13403] = 5, - ACTIONS(3511), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, + ACTIONS(3447), 32, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149398,17 +149767,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -149418,48 +149776,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13472] = 10, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_RBRACK, - ACTIONS(3598), 1, - anon_sym_EQ_GT, - ACTIONS(3637), 1, + [13616] = 7, + ACTIONS(941), 1, anon_sym_EQ, - ACTIONS(3640), 1, - anon_sym_in, - ACTIONS(3642), 1, - anon_sym_COLON, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3409), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149467,12 +149798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149488,16 +149817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 20, + ACTIONS(120), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149509,13 +149840,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13551] = 5, - ACTIONS(3503), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [13689] = 9, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, anon_sym_EQ, + ACTIONS(3507), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(1655), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149531,39 +149891,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -149573,29 +149910,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13620] = 9, - ACTIONS(955), 1, + [13766] = 12, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(3565), 1, anon_sym_EQ_GT, - ACTIONS(3505), 1, - anon_sym_LBRACK, + STATE(2994), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 2, + ACTIONS(3499), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3508), 3, + ACTIONS(3490), 3, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(158), 15, + ACTIONS(3423), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149606,7 +149947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149622,7 +149963,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(120), 18, + ACTIONS(3419), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149637,19 +149978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13697] = 6, - ACTIONS(3485), 1, + [13849] = 5, + ACTIONS(3503), 1, anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149665,12 +150003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 18, + ACTIONS(3423), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149683,8 +150023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149694,7 +150033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149706,15 +150045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13768] = 6, - ACTIONS(3550), 1, + [13918] = 5, + ACTIONS(3521), 1, anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149730,12 +150067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 18, + ACTIONS(3423), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149748,8 +150087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149759,7 +150097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149771,19 +150109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13839] = 8, - ACTIONS(156), 1, - anon_sym_EQ_GT, - ACTIONS(842), 1, + [13987] = 5, + ACTIONS(3567), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(3644), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149799,12 +150131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 17, + ACTIONS(3423), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149817,16 +150149,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 20, + anon_sym_implements, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149838,52 +150172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13914] = 7, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3449), 1, - anon_sym_EQ_GT, + [14055] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3629), 3, + ACTIONS(3417), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3439), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, + anon_sym_extends, + ACTIONS(3413), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149892,7 +150190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149904,17 +150202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13987] = 7, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(903), 1, - anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(164), 15, + ACTIONS(3415), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149930,14 +150225,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -149947,8 +150234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + [14121] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3445), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149957,7 +150252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -149969,19 +150264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14059] = 8, - ACTIONS(3596), 1, - anon_sym_EQ, - ACTIONS(3598), 1, - anon_sym_EQ_GT, - ACTIONS(3640), 1, - anon_sym_in, - ACTIONS(3642), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, + ACTIONS(3447), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149997,14 +150287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -150014,35 +150296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14133] = 31, + [14187] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -150064,19 +150325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150100,11 +150361,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3820), 6, + STATE(3918), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -150124,79 +150385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14253] = 6, - ACTIONS(3554), 1, + [14307] = 7, + ACTIONS(3421), 1, anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3435), 21, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(3623), 1, anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14323] = 6, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_EQ_GT, + ACTIONS(3626), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150212,10 +150411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 17, - sym__automatic_semicolon, + ACTIONS(3423), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -150230,17 +150429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3419), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -150252,207 +150450,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14393] = 7, - ACTIONS(895), 1, - anon_sym_COLON, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(903), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 16, - sym__ternary_qmark, - anon_sym_as, + [14379] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14465] = 4, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3415), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3336), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3338), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3778), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14499] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3417), 31, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3244), 1, anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [14531] = 8, - ACTIONS(126), 1, - anon_sym_RBRACK, - ACTIONS(223), 1, - anon_sym_COMMA, - ACTIONS(890), 1, - anon_sym_EQ, - ACTIONS(899), 1, - anon_sym_EQ_GT, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14605] = 31, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3674), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3676), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3789), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14619] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -150474,19 +150657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150500,21 +150683,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3674), 2, + ACTIONS(3678), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3676), 2, + ACTIONS(3680), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3878), 6, + STATE(3799), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -150534,14 +150717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14725] = 31, + [14739] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -150563,19 +150746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -150589,21 +150772,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3678), 2, + ACTIONS(3682), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3680), 2, + ACTIONS(3684), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3925), 6, + STATE(3808), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -150623,19 +150806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14845] = 8, - ACTIONS(3596), 1, - anon_sym_EQ, - ACTIONS(3598), 1, + [14859] = 7, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(3640), 1, - anon_sym_in, - ACTIONS(3682), 1, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(935), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150651,7 +150832,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(3439), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -150668,16 +150849,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -150689,17 +150871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14919] = 7, - ACTIONS(3437), 1, + [14931] = 6, + ACTIONS(941), 1, anon_sym_EQ, - ACTIONS(3632), 1, - anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, + ACTIONS(947), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150715,10 +150895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 17, + ACTIONS(157), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -150733,103 +150913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14991] = 8, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_RBRACK, - ACTIONS(3598), 1, - anon_sym_EQ_GT, - ACTIONS(3637), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3439), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15065] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3429), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3425), 22, + ACTIONS(120), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -150838,7 +150923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -150850,136 +150935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3427), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [15131] = 31, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3246), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3270), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3906), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [15251] = 6, - ACTIONS(3558), 1, + [15001] = 8, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(3560), 1, + ACTIONS(3594), 1, anon_sym_EQ_GT, + ACTIONS(3631), 1, + anon_sym_in, + ACTIONS(3686), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150995,13 +150963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 17, + ACTIONS(3423), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151013,17 +150980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3419), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151035,15 +151001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15321] = 6, - ACTIONS(814), 1, + [15075] = 6, + ACTIONS(830), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(947), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151059,12 +151025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 17, + ACTIONS(157), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151087,7 +151053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151099,15 +151065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15391] = 6, - ACTIONS(814), 1, + [15145] = 6, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(3578), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151123,7 +151089,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(158), 17, + ACTIONS(3423), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -151141,7 +151107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151151,7 +151117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151163,104 +151129,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15461] = 31, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, + [15215] = 8, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, + anon_sym_EQ, + ACTIONS(899), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3684), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3686), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3780), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [15581] = 6, - ACTIONS(3485), 1, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15289] = 6, + ACTIONS(909), 1, anon_sym_EQ, - ACTIONS(3560), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151276,7 +151219,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(3439), 17, + ACTIONS(157), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -151294,7 +151237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151304,7 +151247,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15359] = 8, + ACTIONS(3541), 1, + anon_sym_RBRACK, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151316,14 +151325,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15651] = 31, + [15433] = 31, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -151345,30 +151354,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(3246), 2, + anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3322), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3338), 2, + ACTIONS(3270), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3662), 2, @@ -151381,11 +151390,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3903), 6, + STATE(3863), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -151405,15 +151414,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15771] = 6, - ACTIONS(925), 1, + [15553] = 9, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1655), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15629] = 6, + ACTIONS(830), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(915), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151429,7 +151505,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(158), 17, + ACTIONS(157), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -151457,7 +151533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151469,13 +151545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15841] = 5, - ACTIONS(3550), 1, + [15699] = 6, + ACTIONS(3576), 1, anon_sym_EQ, + ACTIONS(3578), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151491,12 +151569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 18, + ACTIONS(3423), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151509,8 +151587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151520,7 +151597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151532,39 +151609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15909] = 9, - ACTIONS(225), 1, + [15769] = 7, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(903), 1, anon_sym_EQ, - ACTIONS(3505), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3508), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(158), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151580,16 +151635,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 18, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -151599,15 +151674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15985] = 6, - ACTIONS(909), 1, + [15841] = 8, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(915), 1, + ACTIONS(3594), 1, anon_sym_EQ_GT, + ACTIONS(3631), 1, + anon_sym_in, + ACTIONS(3633), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151623,13 +151702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 17, - sym__automatic_semicolon, + ACTIONS(3423), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151641,17 +151719,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3419), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151663,15 +151740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16055] = 6, - ACTIONS(3604), 1, + [15915] = 6, + ACTIONS(3546), 1, anon_sym_EQ, - ACTIONS(3606), 1, + ACTIONS(3548), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151687,11 +151764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 16, + ACTIONS(3423), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151704,7 +151782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151714,7 +151792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151726,15 +151804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16124] = 6, - ACTIONS(899), 1, - anon_sym_EQ_GT, - ACTIONS(903), 1, + [15985] = 6, + ACTIONS(3501), 1, anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151750,12 +151828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 16, + ACTIONS(3423), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151767,7 +151846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151777,7 +151856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151789,17 +151868,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16193] = 7, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_RBRACK, - ACTIONS(3637), 1, + [16055] = 8, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, anon_sym_EQ, + ACTIONS(881), 1, + anon_sym_in, + ACTIONS(3638), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151815,7 +151896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151831,17 +151912,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, + ACTIONS(120), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151853,15 +151933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16264] = 6, - ACTIONS(814), 1, + [16128] = 5, + ACTIONS(3576), 1, anon_sym_EQ, - ACTIONS(899), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151877,12 +151955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 16, + ACTIONS(3423), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151894,7 +151973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151904,7 +151983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151916,15 +151995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16333] = 6, - ACTIONS(955), 1, - anon_sym_EQ, - ACTIONS(961), 1, + [16195] = 6, + ACTIONS(899), 1, anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151940,12 +152019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151967,7 +152046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -151979,35 +152058,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16402] = 6, - ACTIONS(814), 1, - anon_sym_EQ, - ACTIONS(961), 1, + [16264] = 7, + ACTIONS(155), 1, anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(836), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(164), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(158), 16, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152020,6 +152084,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, @@ -152030,7 +152110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -152042,13 +152122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16471] = 5, - ACTIONS(3554), 1, + [16335] = 6, + ACTIONS(3501), 1, anon_sym_EQ, + ACTIONS(3606), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152064,12 +152146,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(3439), 17, - sym__automatic_semicolon, + ACTIONS(3423), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152082,7 +152163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152092,7 +152173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -152104,34 +152185,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16538] = 5, - ACTIONS(3558), 1, + [16404] = 8, + ACTIONS(3501), 1, anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 17, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152144,17 +152213,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -152166,17 +152250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16605] = 7, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, + [16477] = 7, + ACTIONS(3541), 1, + anon_sym_RBRACK, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, anon_sym_EQ, - ACTIONS(834), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152192,7 +152276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152208,7 +152292,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(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152218,7 +152302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -152230,15 +152314,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16676] = 6, - ACTIONS(3596), 1, + [16548] = 6, + ACTIONS(830), 1, anon_sym_EQ, - ACTIONS(3598), 1, + ACTIONS(899), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152254,7 +152338,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(3439), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152271,7 +152355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152281,7 +152365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -152293,22 +152377,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16745] = 8, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(814), 1, + [16617] = 5, + ACTIONS(3546), 1, anon_sym_EQ, - ACTIONS(878), 1, - anon_sym_in, - ACTIONS(3644), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152321,7 +152417,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16684] = 6, + ACTIONS(955), 1, + anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152337,16 +152463,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 20, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -152358,23 +152502,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16818] = 8, - ACTIONS(3485), 1, + [16753] = 6, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(3546), 1, + ACTIONS(3594), 1, anon_sym_EQ_GT, - ACTIONS(3632), 1, - anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152386,7 +152543,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16822] = 6, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152402,16 +152589,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 20, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -152424,14 +152629,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [16891] = 6, - ACTIONS(3485), 1, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(3598), 1, + ACTIONS(3594), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152447,7 +152652,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(3439), 16, + ACTIONS(3423), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152464,7 +152669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152474,7 +152679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -152487,14 +152692,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [16960] = 6, - ACTIONS(3485), 1, + ACTIONS(3604), 1, anon_sym_EQ, ACTIONS(3606), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152510,7 +152715,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(3439), 16, + ACTIONS(3423), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152527,7 +152732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152537,7 +152742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -152549,33 +152754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17029] = 5, - ACTIONS(3604), 1, + [17029] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3688), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 16, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152588,7 +152778,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3435), 21, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152598,7 +152804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -152610,14 +152816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17095] = 30, + [17097] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -152639,19 +152845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152665,18 +152871,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3688), 2, + ACTIONS(3690), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152696,14 +152902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17211] = 30, + [17213] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -152725,19 +152931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152751,18 +152957,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3690), 2, + ACTIONS(3692), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152782,14 +152988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17327] = 30, + [17329] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -152811,19 +153017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152837,18 +153043,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3692), 2, + ACTIONS(3694), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152868,14 +153074,530 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17443] = 30, + [17445] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3696), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17561] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3698), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17677] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3700), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17793] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3702), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17909] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3704), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18025] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3706), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18141] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -152897,19 +153619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -152923,18 +153645,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3694), 2, + ACTIONS(3708), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -152954,15 +153676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17559] = 6, - ACTIONS(225), 1, + [18257] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(981), 1, + ACTIONS(1023), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152978,7 +153700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153004,7 +153726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153016,14 +153738,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17627] = 30, + [18325] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -153045,19 +153767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153071,18 +153793,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3696), 2, + ACTIONS(3710), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -153102,15 +153824,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17743] = 6, - ACTIONS(225), 1, + [18441] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3712), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18557] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(967), 1, + ACTIONS(1029), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153126,7 +153934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153152,7 +153960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153164,15 +153972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17811] = 6, - ACTIONS(225), 1, + [18625] = 6, + ACTIONS(3565), 1, anon_sym_EQ_GT, - ACTIONS(973), 1, + ACTIONS(3714), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153188,7 +153996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153204,7 +154012,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(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153214,7 +154022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153226,15 +154034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17879] = 6, - ACTIONS(225), 1, + [18693] = 6, + ACTIONS(3565), 1, anon_sym_EQ_GT, - ACTIONS(969), 1, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153250,7 +154058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153266,7 +154074,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(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153276,7 +154084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153288,15 +154096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17947] = 6, - ACTIONS(3546), 1, + [18761] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3698), 1, + ACTIONS(830), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153312,7 +154120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153328,7 +154136,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153338,7 +154146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153350,15 +154158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18015] = 6, - ACTIONS(225), 1, + [18829] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(979), 1, + ACTIONS(1035), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153374,7 +154182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153400,7 +154208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153412,187 +154220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18083] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3700), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18199] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3702), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18315] = 6, - ACTIONS(225), 1, + [18897] = 6, + ACTIONS(3565), 1, anon_sym_EQ_GT, - ACTIONS(971), 1, + ACTIONS(3718), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153608,7 +154244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153624,7 +154260,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(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153634,7 +154270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153646,15 +154282,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18383] = 6, - ACTIONS(3546), 1, + [18965] = 5, + ACTIONS(3604), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19031] = 6, + ACTIONS(3565), 1, anon_sym_EQ_GT, - ACTIONS(3704), 1, + ACTIONS(3720), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153670,7 +154367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153686,7 +154383,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153696,7 +154393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153708,15 +154405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18451] = 6, - ACTIONS(3546), 1, + [19099] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3706), 1, + ACTIONS(1019), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153732,7 +154429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153748,7 +154445,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153758,7 +154455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153770,15 +154467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18519] = 6, - ACTIONS(225), 1, + [19167] = 6, + ACTIONS(3565), 1, anon_sym_EQ_GT, - ACTIONS(814), 1, + ACTIONS(3722), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153794,7 +154491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153810,7 +154507,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(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153820,7 +154517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153832,15 +154529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18587] = 6, - ACTIONS(225), 1, + [19235] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(1035), 1, + ACTIONS(1027), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153856,7 +154553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153882,7 +154579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153894,15 +154591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18655] = 6, - ACTIONS(3546), 1, + [19303] = 6, + ACTIONS(3565), 1, anon_sym_EQ_GT, - ACTIONS(3708), 1, + ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153918,7 +154615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153934,7 +154631,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153944,7 +154641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -153956,14 +154653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18723] = 30, + [19371] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -153985,19 +154682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154011,18 +154708,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3710), 2, + ACTIONS(3726), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154042,76 +154739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18839] = 6, - ACTIONS(3546), 1, - anon_sym_EQ_GT, - ACTIONS(3712), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3439), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18907] = 30, + [19487] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -154133,19 +154768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154159,18 +154794,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3714), 2, + ACTIONS(3728), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154190,14 +154825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19023] = 30, + [19603] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -154219,19 +154854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154245,18 +154880,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3716), 2, + ACTIONS(3730), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154276,76 +154911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19139] = 5, - ACTIONS(3596), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3453), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3439), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3435), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19205] = 6, - ACTIONS(3546), 1, + [19719] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3718), 1, + ACTIONS(1031), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154361,7 +154935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154377,7 +154951,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154387,7 +154961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -154399,101 +154973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19273] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3720), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [19389] = 6, - ACTIONS(3485), 1, + [19787] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3732), 1, anon_sym_EQ, - ACTIONS(3577), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154509,7 +154997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154525,7 +155013,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154535,7 +155023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -154547,15 +155035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19457] = 6, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(975), 1, + [19855] = 6, + ACTIONS(3501), 1, anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154571,7 +155059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154587,7 +155075,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(120), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154597,7 +155085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -154609,187 +155097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19525] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3722), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [19641] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3724), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [19757] = 6, - ACTIONS(225), 1, - anon_sym_EQ_GT, - ACTIONS(977), 1, + [19923] = 7, + ACTIONS(3501), 1, anon_sym_EQ, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(158), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154805,7 +155123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(164), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154821,17 +155139,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(120), 21, + ACTIONS(3419), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -154843,14 +155160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19825] = 30, + [19993] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -154872,19 +155189,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154898,18 +155215,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3726), 2, + ACTIONS(3734), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154929,17 +155246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19941] = 7, - ACTIONS(3485), 1, + [20109] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1025), 1, anon_sym_EQ, - ACTIONS(3632), 1, - anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154955,7 +155270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154971,16 +155286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3435), 20, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -154992,15 +155308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20011] = 6, - ACTIONS(3546), 1, + [20177] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3728), 1, + ACTIONS(1033), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155016,7 +155332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155032,7 +155348,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155042,7 +155358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -155054,15 +155370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20079] = 6, - ACTIONS(3546), 1, + [20245] = 6, + ACTIONS(3565), 1, anon_sym_EQ_GT, - ACTIONS(3730), 1, + ACTIONS(3736), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155078,7 +155394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155094,7 +155410,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155104,7 +155420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -155116,100 +155432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20147] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3732), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [20263] = 30, + [20313] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -155231,19 +155461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155257,18 +155487,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3734), 2, + ACTIONS(3738), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -155288,15 +155518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20379] = 6, - ACTIONS(3546), 1, - anon_sym_EQ_GT, - ACTIONS(3736), 1, + [20429] = 6, + ACTIONS(3501), 1, anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155312,7 +155542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155328,7 +155558,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155338,7 +155568,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20497] = 5, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -155350,100 +155641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20447] = 30, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_abstract, - ACTIONS(3648), 1, - anon_sym_export, - ACTIONS(3650), 1, - anon_sym_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3658), 1, - anon_sym_async, - ACTIONS(3660), 1, - anon_sym_new, - ACTIONS(3664), 1, - anon_sym_static, - ACTIONS(3666), 1, - anon_sym_readonly, - ACTIONS(3672), 1, - anon_sym_override, - STATE(1290), 1, - sym_decorator, - STATE(2726), 1, - sym_accessibility_modifier, - STATE(2750), 1, - sym_override_modifier, - STATE(3267), 1, - sym_formal_parameters, - STATE(4357), 1, - sym__call_signature, - STATE(4467), 1, - aux_sym_export_statement_repeat1, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3662), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3668), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3738), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4375), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3646), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, [20563] = 30, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -155465,19 +155670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155498,11 +155703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -155523,14 +155728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [20679] = 6, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3546), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, + ACTIONS(1021), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155546,7 +155751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155562,7 +155767,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(3435), 21, + ACTIONS(120), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155572,7 +155777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -155585,12 +155790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [20747] = 5, - ACTIONS(3698), 1, + ACTIONS(3724), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155606,7 +155811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155622,7 +155827,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155632,7 +155837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -155645,12 +155850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [20812] = 5, - ACTIONS(3736), 1, + ACTIONS(3722), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155666,7 +155871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155682,7 +155887,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155692,7 +155897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -155705,12 +155910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [20877] = 5, - ACTIONS(3712), 1, + ACTIONS(3720), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155726,7 +155931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155742,7 +155947,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155752,7 +155957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -155765,12 +155970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [20942] = 5, - ACTIONS(3728), 1, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155786,7 +155991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155802,7 +156007,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155812,7 +156017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -155830,7 +156035,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155846,7 +156051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155862,7 +156067,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155872,7 +156077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -155885,12 +156090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [21072] = 5, - ACTIONS(3708), 1, + ACTIONS(3688), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155906,7 +156111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155922,7 +156127,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155932,7 +156137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -155945,12 +156150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [21137] = 5, - ACTIONS(3704), 1, + ACTIONS(3732), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155966,7 +156171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155982,7 +156187,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155992,7 +156197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -156005,12 +156210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [21202] = 5, - ACTIONS(3706), 1, + ACTIONS(3714), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156026,7 +156231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156042,7 +156247,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156052,7 +156257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -156065,12 +156270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [21267] = 5, - ACTIONS(3730), 1, + ACTIONS(3736), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3439), 15, + ACTIONS(3423), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156086,7 +156291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3453), 15, + ACTIONS(3437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156102,7 +156307,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(3435), 21, + ACTIONS(3419), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156112,7 +156317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, @@ -156127,11 +156332,11 @@ static const uint16_t ts_small_parse_table[] = { [21332] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156153,19 +156358,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156183,11 +156388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3828), 6, + STATE(3800), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156210,11 +156415,11 @@ static const uint16_t ts_small_parse_table[] = { [21444] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156236,19 +156441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156266,11 +156471,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3830), 6, + STATE(3925), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156293,11 +156498,11 @@ static const uint16_t ts_small_parse_table[] = { [21556] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156319,19 +156524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156349,11 +156554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3886), 6, + STATE(3809), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156376,11 +156581,11 @@ static const uint16_t ts_small_parse_table[] = { [21668] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156402,19 +156607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156432,11 +156637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3920), 6, + STATE(4339), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156459,11 +156664,11 @@ static const uint16_t ts_small_parse_table[] = { [21780] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156485,19 +156690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156515,11 +156720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3871), 6, + STATE(3792), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156542,11 +156747,11 @@ static const uint16_t ts_small_parse_table[] = { [21892] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156568,19 +156773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156598,11 +156803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4375), 6, + STATE(3780), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156625,11 +156830,11 @@ static const uint16_t ts_small_parse_table[] = { [22004] = 29, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2478), 1, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, @@ -156651,19 +156856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3672), 1, anon_sym_override, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(2726), 1, + STATE(2739), 1, sym_accessibility_modifier, - STATE(2750), 1, + STATE(2765), 1, sym_override_modifier, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4357), 1, + STATE(4088), 1, sym__call_signature, - STATE(4467), 1, + STATE(4506), 1, aux_sym_export_statement_repeat1, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156681,11 +156886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3081), 3, + STATE(3099), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3769), 6, + STATE(3770), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -156705,296 +156910,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22116] = 33, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(2348), 1, - anon_sym_namespace, - ACTIONS(2350), 1, - anon_sym_import, - ACTIONS(2352), 1, - anon_sym_var, - ACTIONS(2354), 1, - anon_sym_let, - ACTIONS(2356), 1, - anon_sym_const, - ACTIONS(2358), 1, - anon_sym_class, - ACTIONS(2360), 1, - anon_sym_async, - ACTIONS(2362), 1, - anon_sym_function, - ACTIONS(2364), 1, - anon_sym_declare, - ACTIONS(2368), 1, - anon_sym_abstract, - ACTIONS(2372), 1, - anon_sym_interface, - ACTIONS(2374), 1, - anon_sym_enum, - ACTIONS(3742), 1, - anon_sym_STAR, - ACTIONS(3744), 1, - anon_sym_default, - ACTIONS(3746), 1, - anon_sym_type, - ACTIONS(3748), 1, - anon_sym_EQ, - ACTIONS(3750), 1, - anon_sym_as, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3755), 1, - anon_sym_RBRACE, - ACTIONS(3760), 1, - anon_sym_module, - STATE(1290), 1, - sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, - sym_declaration, - STATE(4399), 1, - sym_internal_module, - STATE(4587), 1, - sym_export_clause, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - STATE(5325), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4393), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [22235] = 29, - ACTIONS(1583), 1, + [22116] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3656), 1, anon_sym_LBRACK, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3764), 1, + ACTIONS(3744), 1, anon_sym_RBRACE, - ACTIONS(3766), 1, + ACTIONS(3746), 1, anon_sym_SEMI, - ACTIONS(3768), 1, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, - anon_sym_abstract, - ACTIONS(3784), 1, - anon_sym_accessor, - STATE(2382), 1, - aux_sym_export_statement_repeat1, - STATE(2617), 1, - sym_method_definition, - STATE(2685), 1, - sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, - sym_override_modifier, - STATE(4526), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3770), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3778), 2, - anon_sym_get, - anon_sym_set, - STATE(1449), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3003), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5020), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3646), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [22346] = 29, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3672), 1, - anon_sym_override, ACTIONS(3762), 1, - anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_async, - ACTIONS(3772), 1, - anon_sym_AT, - ACTIONS(3774), 1, - anon_sym_static, - ACTIONS(3776), 1, - anon_sym_readonly, - ACTIONS(3780), 1, - anon_sym_declare, - ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3786), 1, - anon_sym_RBRACE, - ACTIONS(3788), 1, - anon_sym_SEMI, - STATE(2382), 1, + STATE(2390), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2636), 1, sym_method_definition, - STATE(2685), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2754), 1, sym_override_modifier, - STATE(4526), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3770), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3778), 2, - anon_sym_get, - anon_sym_set, - STATE(1448), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3003), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5020), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3646), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [22457] = 29, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3762), 1, - anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_async, - ACTIONS(3772), 1, - anon_sym_AT, - ACTIONS(3774), 1, - anon_sym_static, - ACTIONS(3776), 1, - anon_sym_readonly, - ACTIONS(3780), 1, - anon_sym_declare, - ACTIONS(3782), 1, - anon_sym_abstract, - ACTIONS(3784), 1, - anon_sym_accessor, - ACTIONS(3788), 1, - anon_sym_SEMI, - ACTIONS(3790), 1, - anon_sym_RBRACE, - STATE(2382), 1, - aux_sym_export_statement_repeat1, - STATE(2617), 1, - sym_method_definition, - STATE(2685), 1, - sym_accessibility_modifier, - STATE(2749), 1, + STATE(2756), 1, sym_decorator, - STATE(2757), 1, - sym_override_modifier, - STATE(4526), 1, + STATE(4565), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157002,24 +156957,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1448), 2, + STATE(1450), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3004), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4959), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157037,46 +156992,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22568] = 29, - ACTIONS(1583), 1, + [22227] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3656), 1, anon_sym_LBRACK, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3746), 1, + anon_sym_SEMI, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3792), 1, + ACTIONS(3766), 1, anon_sym_RBRACE, - ACTIONS(3794), 1, - anon_sym_SEMI, - STATE(2382), 1, + STATE(2390), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2636), 1, sym_method_definition, - STATE(2685), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2754), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157084,24 +157039,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1455), 2, + STATE(1450), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3004), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4959), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157119,46 +157074,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22679] = 29, - ACTIONS(1583), 1, + [22338] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3656), 1, anon_sym_LBRACK, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3746), 1, + anon_sym_SEMI, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3796), 1, + ACTIONS(3768), 1, anon_sym_RBRACE, - ACTIONS(3798), 1, - anon_sym_SEMI, - STATE(2382), 1, + STATE(2390), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2636), 1, sym_method_definition, - STATE(2685), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2754), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157166,24 +157121,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1442), 2, + STATE(1450), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3004), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4959), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157201,7 +157156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22790] = 33, + [22449] = 33, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2240), 1, @@ -157230,42 +157185,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3744), 1, + ACTIONS(3772), 1, anon_sym_default, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_type, - ACTIONS(3748), 1, + ACTIONS(3776), 1, anon_sym_EQ, - ACTIONS(3750), 1, + ACTIONS(3778), 1, anon_sym_as, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3760), 1, - anon_sym_module, - ACTIONS(3800), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - STATE(1290), 1, + ACTIONS(3788), 1, + anon_sym_module, + STATE(1282), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, + STATE(4069), 1, sym_declaration, - STATE(4399), 1, + STATE(4073), 1, sym_internal_module, - STATE(4587), 1, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, sym_export_clause, - STATE(5129), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4964), 1, aux_sym_object_pattern_repeat1, - STATE(5325), 1, + STATE(5311), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -157273,7 +157228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4393), 13, + STATE(4060), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -157287,7 +157242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [22909] = 33, + [22568] = 33, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2240), 1, @@ -157316,42 +157271,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3744), 1, + ACTIONS(3772), 1, anon_sym_default, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_type, - ACTIONS(3748), 1, + ACTIONS(3776), 1, anon_sym_EQ, - ACTIONS(3750), 1, + ACTIONS(3778), 1, anon_sym_as, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3760), 1, + ACTIONS(3788), 1, anon_sym_module, - ACTIONS(3803), 1, + ACTIONS(3790), 1, anon_sym_RBRACE, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, + STATE(4069), 1, sym_declaration, - STATE(4399), 1, + STATE(4073), 1, sym_internal_module, - STATE(4587), 1, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, sym_export_clause, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4947), 1, aux_sym_object_repeat1, - STATE(5325), 1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5311), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -157359,7 +157314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4393), 13, + STATE(4060), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -157373,210 +157328,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23028] = 29, - ACTIONS(3809), 1, - anon_sym_STAR, - ACTIONS(3812), 1, - anon_sym_RBRACE, - ACTIONS(3814), 1, - anon_sym_SEMI, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3820), 1, - anon_sym_DQUOTE, - ACTIONS(3823), 1, - anon_sym_SQUOTE, - ACTIONS(3826), 1, - anon_sym_async, - ACTIONS(3835), 1, - anon_sym_AT, - ACTIONS(3838), 1, - anon_sym_static, - ACTIONS(3841), 1, - anon_sym_readonly, - ACTIONS(3847), 1, - anon_sym_declare, - ACTIONS(3853), 1, - anon_sym_override, - ACTIONS(3856), 1, - anon_sym_abstract, - ACTIONS(3859), 1, - anon_sym_accessor, - STATE(2382), 1, - aux_sym_export_statement_repeat1, - STATE(2617), 1, - sym_method_definition, - STATE(2685), 1, - sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, - sym_override_modifier, - STATE(4526), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3832), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3844), 2, - anon_sym_get, - anon_sym_set, - STATE(1448), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3850), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3003), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5020), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3806), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [23139] = 29, - ACTIONS(1583), 1, + [22687] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3656), 1, anon_sym_LBRACK, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_async, - ACTIONS(3772), 1, - anon_sym_AT, - ACTIONS(3774), 1, - anon_sym_static, - ACTIONS(3776), 1, - anon_sym_readonly, - ACTIONS(3780), 1, - anon_sym_declare, - ACTIONS(3782), 1, - anon_sym_abstract, - ACTIONS(3784), 1, - anon_sym_accessor, - ACTIONS(3788), 1, + ACTIONS(3746), 1, anon_sym_SEMI, - ACTIONS(3862), 1, - anon_sym_RBRACE, - STATE(2382), 1, - aux_sym_export_statement_repeat1, - STATE(2617), 1, - sym_method_definition, - STATE(2685), 1, - sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, - sym_override_modifier, - STATE(4526), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3770), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3778), 2, - anon_sym_get, - anon_sym_set, - STATE(1448), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3003), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5020), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3646), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [23250] = 29, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3762), 1, - anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3864), 1, + ACTIONS(3793), 1, anon_sym_RBRACE, - ACTIONS(3866), 1, - anon_sym_SEMI, - STATE(2382), 1, + STATE(2390), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2636), 1, sym_method_definition, - STATE(2685), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2754), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157584,24 +157375,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1452), 2, + STATE(1450), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3004), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4959), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157619,7 +157410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23361] = 33, + [22798] = 33, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2240), 1, @@ -157648,42 +157439,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3744), 1, + ACTIONS(3772), 1, anon_sym_default, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_type, - ACTIONS(3748), 1, + ACTIONS(3776), 1, anon_sym_EQ, - ACTIONS(3750), 1, + ACTIONS(3778), 1, anon_sym_as, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3760), 1, + ACTIONS(3788), 1, anon_sym_module, - ACTIONS(3868), 1, + ACTIONS(3795), 1, anon_sym_RBRACE, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, + STATE(4069), 1, sym_declaration, - STATE(4399), 1, + STATE(4073), 1, sym_internal_module, - STATE(4587), 1, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, sym_export_clause, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5325), 1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5311), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -157691,7 +157482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4393), 13, + STATE(4060), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -157705,128 +157496,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23480] = 29, - ACTIONS(1583), 1, + [22917] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3656), 1, anon_sym_LBRACK, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, - anon_sym_abstract, - ACTIONS(3784), 1, - anon_sym_accessor, - ACTIONS(3788), 1, - anon_sym_SEMI, - ACTIONS(3871), 1, - anon_sym_RBRACE, - STATE(2382), 1, - aux_sym_export_statement_repeat1, - STATE(2617), 1, - sym_method_definition, - STATE(2685), 1, - sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, - sym_override_modifier, - STATE(4526), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3254), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3770), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3778), 2, - anon_sym_get, - anon_sym_set, - STATE(1448), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3003), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5020), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3646), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [23591] = 29, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3672), 1, - anon_sym_override, ACTIONS(3762), 1, - anon_sym_STAR, - ACTIONS(3768), 1, - anon_sym_async, - ACTIONS(3772), 1, - anon_sym_AT, - ACTIONS(3774), 1, - anon_sym_static, - ACTIONS(3776), 1, - anon_sym_readonly, - ACTIONS(3780), 1, - anon_sym_declare, - ACTIONS(3782), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3873), 1, + ACTIONS(3798), 1, anon_sym_RBRACE, - ACTIONS(3875), 1, + ACTIONS(3800), 1, anon_sym_SEMI, - STATE(2382), 1, + STATE(2390), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2636), 1, sym_method_definition, - STATE(2685), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2754), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -157834,24 +157543,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1443), 2, + STATE(1441), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3004), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4959), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -157869,132 +157578,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23702] = 33, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2240), 1, - anon_sym_LBRACE, - ACTIONS(2348), 1, - anon_sym_namespace, - ACTIONS(2350), 1, - anon_sym_import, - ACTIONS(2352), 1, - anon_sym_var, - ACTIONS(2354), 1, - anon_sym_let, - ACTIONS(2356), 1, - anon_sym_const, - ACTIONS(2358), 1, - anon_sym_class, - ACTIONS(2360), 1, - anon_sym_async, - ACTIONS(2362), 1, - anon_sym_function, - ACTIONS(2364), 1, - anon_sym_declare, - ACTIONS(2368), 1, - anon_sym_abstract, - ACTIONS(2372), 1, - anon_sym_interface, - ACTIONS(2374), 1, - anon_sym_enum, - ACTIONS(3742), 1, - anon_sym_STAR, - ACTIONS(3744), 1, - anon_sym_default, - ACTIONS(3746), 1, - anon_sym_type, - ACTIONS(3748), 1, - anon_sym_EQ, - ACTIONS(3750), 1, - anon_sym_as, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3760), 1, - anon_sym_module, - ACTIONS(3877), 1, - anon_sym_RBRACE, - STATE(1290), 1, - sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, - sym_declaration, - STATE(4399), 1, - sym_internal_module, - STATE(4587), 1, - sym_export_clause, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - STATE(5325), 1, - sym_namespace_export, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4393), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [23821] = 29, - ACTIONS(1583), 1, + [23028] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3656), 1, anon_sym_LBRACK, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(3762), 1, + ACTIONS(3742), 1, anon_sym_STAR, - ACTIONS(3768), 1, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3772), 1, + ACTIONS(3752), 1, anon_sym_AT, - ACTIONS(3774), 1, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3776), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3780), 1, + ACTIONS(3760), 1, anon_sym_declare, - ACTIONS(3782), 1, + ACTIONS(3762), 1, anon_sym_abstract, - ACTIONS(3784), 1, + ACTIONS(3764), 1, anon_sym_accessor, - ACTIONS(3788), 1, - anon_sym_SEMI, - ACTIONS(3880), 1, + ACTIONS(3802), 1, anon_sym_RBRACE, - STATE(2382), 1, + ACTIONS(3804), 1, + anon_sym_SEMI, + STATE(2390), 1, aux_sym_export_statement_repeat1, - STATE(2617), 1, + STATE(2636), 1, sym_method_definition, - STATE(2685), 1, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2749), 1, - sym_decorator, - STATE(2757), 1, + STATE(2754), 1, sym_override_modifier, - STATE(4526), 1, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -158002,24 +157625,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3770), 2, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3778), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - STATE(1448), 2, + STATE(1440), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3003), 3, + STATE(3004), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5020), 3, + STATE(4959), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -158036,231 +157659,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_object, - [23932] = 25, - ACTIONS(231), 1, - anon_sym_STAR, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(249), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3884), 1, - anon_sym_RBRACE, - ACTIONS(3886), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_async, - ACTIONS(3892), 1, - anon_sym_static, - ACTIONS(3894), 1, - anon_sym_readonly, - ACTIONS(3900), 1, - anon_sym_override, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2743), 1, - sym_override_modifier, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - STATE(4848), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3890), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3896), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3898), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3705), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4841), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3882), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [24034] = 25, - ACTIONS(231), 1, - anon_sym_STAR, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(249), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3886), 1, - anon_sym_LBRACK, - ACTIONS(3904), 1, - anon_sym_RBRACE, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3908), 1, - anon_sym_static, - ACTIONS(3910), 1, - anon_sym_readonly, - ACTIONS(3916), 1, - anon_sym_override, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2743), 1, - sym_override_modifier, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - STATE(4848), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3890), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3914), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3705), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4841), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3902), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [24136] = 25, - ACTIONS(231), 1, - anon_sym_STAR, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(249), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1505), 1, + anon_sym_object, + [23139] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3886), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3920), 1, - anon_sym_RBRACE, - ACTIONS(3922), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3924), 1, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3926), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3932), 1, - anon_sym_override, - STATE(2732), 1, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3806), 1, + anon_sym_RBRACE, + ACTIONS(3808), 1, + anon_sym_SEMI, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2754), 1, sym_override_modifier, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - STATE(4848), 1, - aux_sym_object_repeat1, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3890), 2, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3928), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - ACTIONS(3930), 3, + STATE(1452), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3004), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4841), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3918), 14, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -158268,141 +157742,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24238] = 13, - ACTIONS(830), 1, - anon_sym_BQUOTE, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(3944), 1, - anon_sym_QMARK_DOT, - ACTIONS(3946), 1, - anon_sym_LT, - STATE(1558), 1, - sym_type_arguments, - STATE(1620), 1, - sym_template_string, - STATE(1650), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3934), 12, + [23250] = 29, + ACTIONS(3813), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3936), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3816), 1, anon_sym_RBRACE, + ACTIONS(3818), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - [24316] = 25, - ACTIONS(231), 1, - anon_sym_STAR, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(249), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1505), 1, + ACTIONS(3821), 1, + anon_sym_LBRACK, + ACTIONS(3824), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(3827), 1, anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3886), 1, - anon_sym_LBRACK, - ACTIONS(3950), 1, - anon_sym_RBRACE, - ACTIONS(3952), 1, + ACTIONS(3830), 1, anon_sym_async, - ACTIONS(3954), 1, + ACTIONS(3839), 1, + anon_sym_AT, + ACTIONS(3842), 1, anon_sym_static, - ACTIONS(3956), 1, + ACTIONS(3845), 1, anon_sym_readonly, - ACTIONS(3962), 1, + ACTIONS(3851), 1, + anon_sym_declare, + ACTIONS(3857), 1, anon_sym_override, - STATE(2732), 1, + ACTIONS(3860), 1, + anon_sym_abstract, + ACTIONS(3863), 1, + anon_sym_accessor, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2754), 1, sym_override_modifier, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - STATE(4848), 1, - aux_sym_object_repeat1, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3890), 2, + ACTIONS(3833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3836), 2, sym_number, sym_private_property_identifier, - ACTIONS(3958), 2, + ACTIONS(3848), 2, anon_sym_get, anon_sym_set, - ACTIONS(3960), 3, + STATE(1450), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3854), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3004), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4841), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3948), 14, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3810), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -158410,76 +157824,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24418] = 25, - ACTIONS(231), 1, - anon_sym_STAR, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(249), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1505), 1, + [23361] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3886), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3966), 1, - anon_sym_RBRACE, - ACTIONS(3968), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3970), 1, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3972), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3978), 1, - anon_sym_override, - STATE(2732), 1, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3866), 1, + anon_sym_RBRACE, + ACTIONS(3868), 1, + anon_sym_SEMI, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2754), 1, sym_override_modifier, - STATE(4618), 1, - aux_sym_object_repeat1, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3890), 2, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3974), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - ACTIONS(3976), 3, + STATE(1442), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3004), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4687), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3964), 14, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -158487,76 +157906,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24520] = 25, - ACTIONS(231), 1, - anon_sym_STAR, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(249), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1505), 1, + [23472] = 29, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3886), 1, + ACTIONS(3656), 1, anon_sym_LBRACK, - ACTIONS(3982), 1, - anon_sym_RBRACE, - ACTIONS(3984), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3746), 1, + anon_sym_SEMI, + ACTIONS(3748), 1, anon_sym_async, - ACTIONS(3986), 1, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, anon_sym_static, - ACTIONS(3988), 1, + ACTIONS(3756), 1, anon_sym_readonly, - ACTIONS(3994), 1, - anon_sym_override, - STATE(2732), 1, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3870), 1, + anon_sym_RBRACE, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2754), 1, sym_override_modifier, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - STATE(4848), 1, - aux_sym_object_repeat1, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3890), 2, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, sym_number, sym_private_property_identifier, - ACTIONS(3990), 2, + ACTIONS(3758), 2, anon_sym_get, anon_sym_set, - ACTIONS(3992), 3, + STATE(1450), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3004), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4841), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3980), 14, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -158564,66 +157988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24622] = 8, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, - anon_sym_LT, - ACTIONS(4000), 1, - anon_sym_DOT, - STATE(1537), 1, - sym_arguments, - STATE(1538), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3996), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3998), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [24689] = 30, + [23583] = 33, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2240), 1, @@ -158652,37 +158017,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3744), 1, + ACTIONS(3772), 1, anon_sym_default, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_type, - ACTIONS(3748), 1, + ACTIONS(3776), 1, anon_sym_EQ, - ACTIONS(3750), 1, + ACTIONS(3778), 1, anon_sym_as, - ACTIONS(3760), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, anon_sym_module, - STATE(1290), 1, + ACTIONS(3872), 1, + anon_sym_RBRACE, + STATE(1282), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, + STATE(4069), 1, sym_declaration, - STATE(4399), 1, + STATE(4073), 1, sym_internal_module, - STATE(4587), 1, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, sym_export_clause, - STATE(5325), 1, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5311), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -158690,7 +158060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4393), 13, + STATE(4060), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -158704,237 +158074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24800] = 7, - ACTIONS(3946), 1, - anon_sym_LT, - ACTIONS(4008), 1, - anon_sym_DOT, - ACTIONS(4010), 1, - anon_sym_is, - STATE(1525), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4006), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3501), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [24865] = 8, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, - anon_sym_LT, - ACTIONS(4012), 1, - anon_sym_DOT, - STATE(1535), 1, - sym_arguments, - STATE(1536), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3445), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3441), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [24932] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1807), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1805), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [24989] = 8, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, - anon_sym_LT, - ACTIONS(4018), 1, - anon_sym_DOT, - STATE(1539), 1, - sym_type_arguments, - STATE(1609), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4014), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4016), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [25056] = 29, + [23702] = 33, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2240), 1, @@ -158963,44 +158103,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - ACTIONS(3742), 1, + ACTIONS(3770), 1, anon_sym_STAR, - ACTIONS(3744), 1, + ACTIONS(3772), 1, anon_sym_default, - ACTIONS(3746), 1, + ACTIONS(3774), 1, anon_sym_type, - ACTIONS(3750), 1, + ACTIONS(3776), 1, + anon_sym_EQ, + ACTIONS(3778), 1, anon_sym_as, - ACTIONS(3760), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, anon_sym_module, - ACTIONS(4020), 1, - anon_sym_EQ, - STATE(1290), 1, + ACTIONS(3875), 1, + anon_sym_RBRACE, + STATE(1282), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4398), 1, + STATE(4069), 1, sym_declaration, - STATE(4399), 1, + STATE(4073), 1, sym_internal_module, - STATE(4587), 1, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, sym_export_clause, - STATE(5325), 1, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5311), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 9, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4393), 13, + STATE(4060), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -159014,314 +158160,367 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [25165] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1845), 14, + [23821] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1843), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3878), 1, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, + ACTIONS(3880), 1, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [25222] = 9, - ACTIONS(830), 1, - anon_sym_BQUOTE, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(3944), 1, - anon_sym_QMARK_DOT, - STATE(1620), 1, - sym_template_string, - STATE(5072), 1, - sym_optional_chain, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1879), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1445), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23932] = 25, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(237), 1, anon_sym_COMMA, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3884), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - [25290] = 3, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(3888), 1, + anon_sym_async, + ACTIONS(3892), 1, + anon_sym_static, + ACTIONS(3894), 1, + anon_sym_readonly, + ACTIONS(3900), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(4837), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 14, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3896), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3898), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3882), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24034] = 25, + ACTIONS(231), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1843), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [25346] = 4, - ACTIONS(4010), 1, - anon_sym_is, + ACTIONS(3904), 1, + anon_sym_RBRACE, + ACTIONS(3906), 1, + anon_sym_async, + ACTIONS(3908), 1, + anon_sym_static, + ACTIONS(3910), 1, + anon_sym_readonly, + ACTIONS(3916), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(4837), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4022), 13, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3912), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3914), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3902), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24136] = 25, + ACTIONS(231), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4024), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [25404] = 3, + ACTIONS(3920), 1, + anon_sym_RBRACE, + ACTIONS(3922), 1, + anon_sym_async, + ACTIONS(3924), 1, + anon_sym_static, + ACTIONS(3926), 1, + anon_sym_readonly, + ACTIONS(3932), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(4837), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3162), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3164), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3928), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3930), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3918), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24238] = 13, + ACTIONS(822), 1, + anon_sym_BQUOTE, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3940), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(3944), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [25460] = 4, - ACTIONS(4010), 1, - anon_sym_is, + ACTIONS(3946), 1, + anon_sym_LT, + STATE(1587), 1, + sym_type_arguments, + STATE(1613), 1, + sym_template_string, + STATE(1626), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4026), 13, + ACTIONS(3934), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4028), 33, + ACTIONS(3936), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -159337,173 +158536,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [25518] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1807), 14, + [24316] = 25, + ACTIONS(231), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1805), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [25574] = 4, - ACTIONS(4034), 1, - anon_sym_is, + ACTIONS(3950), 1, + anon_sym_RBRACE, + ACTIONS(3952), 1, + anon_sym_async, + ACTIONS(3954), 1, + anon_sym_static, + ACTIONS(3956), 1, + anon_sym_readonly, + ACTIONS(3962), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(4837), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 13, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3958), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3960), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3948), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24418] = 25, + ACTIONS(231), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4032), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [25632] = 3, + ACTIONS(3966), 1, + anon_sym_RBRACE, + ACTIONS(3968), 1, + anon_sym_async, + ACTIONS(3970), 1, + anon_sym_static, + ACTIONS(3972), 1, + anon_sym_readonly, + ACTIONS(3978), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(4837), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1685), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1683), 34, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - anon_sym_is, - [25688] = 22, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3974), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3976), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3964), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24520] = 25, ACTIONS(231), 1, anon_sym_STAR, + ACTIONS(237), 1, + anon_sym_COMMA, ACTIONS(249), 1, anon_sym_DOT_DOT_DOT, ACTIONS(1505), 1, @@ -159514,51 +158707,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3886), 1, anon_sym_LBRACK, - ACTIONS(4038), 1, + ACTIONS(3982), 1, + anon_sym_RBRACE, + ACTIONS(3984), 1, anon_sym_async, - ACTIONS(4040), 1, + ACTIONS(3986), 1, anon_sym_static, - ACTIONS(4042), 1, + ACTIONS(3988), 1, anon_sym_readonly, - ACTIONS(4048), 1, + ACTIONS(3994), 1, anon_sym_override, - STATE(2732), 1, + STATE(2720), 1, sym_accessibility_modifier, - STATE(2743), 1, + STATE(2744), 1, sym_override_modifier, + STATE(4694), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3388), 2, - anon_sym_COMMA, - anon_sym_RBRACE, ACTIONS(3890), 2, sym_number, sym_private_property_identifier, - ACTIONS(4044), 2, + ACTIONS(3990), 2, anon_sym_get, anon_sym_set, - ACTIONS(4046), 3, + ACTIONS(3992), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3705), 3, + STATE(3668), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5520), 3, + STATE(4634), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5541), 3, + STATE(4638), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5891), 3, + STATE(5778), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4036), 14, + ACTIONS(3980), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -159573,39 +158769,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25782] = 3, + [24622] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(3996), 1, + anon_sym_DOT, + STATE(1555), 1, + sym_arguments, + STATE(1556), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3182), 14, + ACTIONS(3429), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3184), 33, + ACTIONS(3425), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -159626,86 +158828,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25838] = 5, - ACTIONS(1665), 1, + [24689] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, + anon_sym_STAR, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3776), 1, anon_sym_EQ, - ACTIONS(4050), 1, - sym__automatic_semicolon, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3788), 1, + anon_sym_module, + STATE(1282), 1, + sym_decorator, + STATE(4069), 1, + sym_declaration, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, + sym_export_clause, + STATE(5311), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1661), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1659), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3998), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [25898] = 6, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [24800] = 8, ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4056), 1, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(4006), 1, anon_sym_DOT, - STATE(1532), 1, + STATE(1559), 1, sym_arguments, + STATE(1560), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4052), 13, + ACTIONS(4002), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4054), 31, + ACTIONS(4004), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159737,89 +158968,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25960] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3186), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3188), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [24867] = 8, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26016] = 6, ACTIONS(3946), 1, anon_sym_LT, - ACTIONS(4008), 1, + ACTIONS(4012), 1, anon_sym_DOT, - STATE(1525), 1, + STATE(1557), 1, + sym_arguments, + STATE(1558), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4006), 12, + ACTIONS(4008), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 32, + ACTIONS(4010), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -159846,72 +159027,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26078] = 5, - ACTIONS(3946), 1, - anon_sym_LT, - STATE(1531), 1, - sym_type_arguments, + [24934] = 29, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, + anon_sym_STAR, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3788), 1, + anon_sym_module, + ACTIONS(4014), 1, + anon_sym_EQ, + STATE(1282), 1, + sym_decorator, + STATE(4069), 1, + sym_declaration, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, + sym_export_clause, + STATE(5311), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4032), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3786), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [26138] = 3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [25043] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4058), 13, + ACTIONS(1709), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -159919,19 +159125,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4060), 34, + anon_sym_QMARK, + ACTIONS(1707), 34, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -159952,27 +159160,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_implements, + anon_sym_PIPE_RBRACE, + [25100] = 7, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(4018), 1, + anon_sym_DOT, + ACTIONS(4020), 1, anon_sym_is, - [26194] = 3, + STATE(1545), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4062), 13, + ACTIONS(4016), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4064), 33, + ACTIONS(3499), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -159985,7 +159199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160006,97 +159219,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26249] = 7, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(2326), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4066), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4069), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1663), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1667), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [26312] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + [25165] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4072), 11, + ACTIONS(1725), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4074), 32, + anon_sym_QMARK, + ACTIONS(1723), 34, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -160116,22 +159271,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [26373] = 5, - ACTIONS(4086), 1, - anon_sym_QMARK, - ACTIONS(4088), 1, anon_sym_extends, + anon_sym_PIPE_RBRACE, + [25222] = 4, + ACTIONS(4026), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4022), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -160139,7 +159293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 31, + ACTIONS(4024), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160148,6 +159302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -160170,26 +159325,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26432] = 3, + [25280] = 6, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(4018), 1, + anon_sym_DOT, + STATE(1545), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4090), 13, + ACTIONS(4016), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4092), 33, + ACTIONS(3499), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160202,7 +159363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160223,17 +159383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26487] = 3, + [25342] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4026), 13, + ACTIONS(1725), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -160241,7 +159401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4028), 33, + anon_sym_QMARK, + ACTIONS(1723), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160275,29 +159436,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26542] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + [25398] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4094), 11, + ACTIONS(1709), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 32, + anon_sym_QMARK, + ACTIONS(1707), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160329,43 +159487,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [26603] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, anon_sym_extends, + anon_sym_implements, + [25454] = 6, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4032), 1, + anon_sym_DOT, + STATE(1553), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4098), 11, + ACTIONS(4028), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4100), 32, + ACTIONS(4030), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160384,98 +159543,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [26664] = 7, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, anon_sym_implements, - [26727] = 7, - ACTIONS(4104), 1, + [25516] = 5, + ACTIONS(1677), 1, anon_sym_EQ, - ACTIONS(4114), 1, - anon_sym_extends, + ACTIONS(4034), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4108), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4111), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4102), 10, + ACTIONS(1673), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 29, + ACTIONS(1671), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -160497,135 +159600,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [26790] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(4118), 1, - anon_sym_DOT, - STATE(1736), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1655), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1653), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [26851] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(4120), 1, - anon_sym_DOT, - STATE(1736), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1655), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + [25576] = 5, + ACTIONS(3946), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1653), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [26912] = 3, + STATE(1552), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 13, + ACTIONS(4022), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4124), 33, + ACTIONS(4024), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160659,21 +159655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26967] = 5, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(1736), 1, - sym_statement_block, + [25636] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1655), 13, + ACTIONS(1657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -160681,65 +159673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1653), 31, - sym__automatic_semicolon, + ACTIONS(1655), 34, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [27026] = 6, - ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4128), 1, - anon_sym_DOT, - STATE(1639), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1655), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1653), 30, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -160749,6 +159686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160767,24 +159705,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27087] = 6, - ACTIONS(4126), 1, - anon_sym_LBRACE, - ACTIONS(4130), 1, - anon_sym_DOT, - STATE(1639), 1, - sym_statement_block, + anon_sym_is, + [25692] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1655), 13, + ACTIONS(3182), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -160792,9 +159726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1653), 30, + anon_sym_QMARK, + ACTIONS(3184), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -160804,6 +159740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -160822,22 +159759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [27148] = 5, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1639), 1, - sym_statement_block, + [25748] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1655), 13, + ACTIONS(3170), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -160845,9 +159779,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1653), 31, + anon_sym_QMARK, + ACTIONS(3172), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -160876,74 +159812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [27207] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4132), 3, - anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4134), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, anon_sym_implements, - [27266] = 4, - ACTIONS(4050), 1, - sym__automatic_semicolon, + [25804] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1661), 13, + ACTIONS(4036), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -160951,7 +159832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 32, + ACTIONS(4038), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -160983,22 +159864,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [27323] = 5, - ACTIONS(4136), 1, - anon_sym_QMARK, - ACTIONS(4138), 1, anon_sym_extends, + anon_sym_implements, + anon_sym_is, + [25860] = 9, + ACTIONS(822), 1, + anon_sym_BQUOTE, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3944), 1, + anon_sym_QMARK_DOT, + STATE(1613), 1, + sym_template_string, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(1775), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161006,7 +159897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 31, + ACTIONS(1777), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161015,11 +159906,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -161035,20 +159924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27382] = 3, + [25928] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4140), 13, + ACTIONS(3188), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161056,7 +159944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4142), 33, + anon_sym_QMARK, + ACTIONS(3190), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161090,17 +159979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27437] = 3, + [25984] = 4, + ACTIONS(4020), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 13, + ACTIONS(4040), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161108,7 +159999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4032), 33, + ACTIONS(4042), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161142,17 +160033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27492] = 3, + [26042] = 4, + ACTIONS(4020), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 13, + ACTIONS(4044), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161160,7 +160053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4146), 33, + ACTIONS(4046), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161194,17 +160087,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27547] = 3, + [26100] = 22, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(4050), 1, + anon_sym_async, + ACTIONS(4052), 1, + anon_sym_static, + ACTIONS(4054), 1, + anon_sym_readonly, + ACTIONS(4060), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4022), 13, + ACTIONS(3388), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4056), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4058), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5479), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5493), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4048), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [26194] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4062), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161212,7 +160177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4024), 33, + ACTIONS(4064), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161246,29 +160211,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27602] = 5, - ACTIONS(830), 1, - anon_sym_BQUOTE, - STATE(1620), 1, - sym_template_string, + [26249] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, + ACTIONS(4066), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 31, + ACTIONS(4068), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161298,21 +160263,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [27661] = 4, - ACTIONS(4152), 1, - anon_sym_DOT, + [26310] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4148), 13, + ACTIONS(4076), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161320,7 +160284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4150), 32, + ACTIONS(4078), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161333,6 +160297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161353,17 +160318,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27718] = 3, + [26365] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4080), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161371,7 +160336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 33, + ACTIONS(4082), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161405,27 +160370,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27773] = 4, - ACTIONS(4158), 1, - anon_sym_LBRACK, + [26420] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4084), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 32, + ACTIONS(4086), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161436,6 +160403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161456,19 +160424,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27830] = 3, + [26481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 13, + ACTIONS(4080), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161476,7 +160443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4162), 33, + ACTIONS(4082), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161510,17 +160477,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27885] = 3, + [26536] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1635), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2328), 13, + ACTIONS(4088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161528,13 +160499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2326), 33, + ACTIONS(4090), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -161560,21 +160530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27940] = 4, - ACTIONS(4012), 1, - anon_sym_DOT, + [26595] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 13, + ACTIONS(4080), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161582,7 +160549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3441), 32, + ACTIONS(4082), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161595,6 +160562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161615,19 +160583,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27997] = 4, - ACTIONS(4168), 1, - anon_sym_DOT, + [26650] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 13, + ACTIONS(4092), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161635,7 +160601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4166), 32, + ACTIONS(4094), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161648,6 +160614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -161668,17 +160635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28054] = 3, + [26705] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4170), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161686,7 +160653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4172), 33, + ACTIONS(4098), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161720,17 +160687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28109] = 3, + [26760] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4174), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161738,7 +160705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4114), 33, + ACTIONS(4098), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161772,36 +160739,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28164] = 3, + [26815] = 7, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(2338), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4176), 13, + ACTIONS(4100), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4103), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1675), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4178), 33, + ACTIONS(1679), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161822,20 +160794,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28219] = 4, - ACTIONS(4076), 1, - anon_sym_AMP, + [26878] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4180), 12, + ACTIONS(4106), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161843,7 +160813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4182), 33, + ACTIONS(4108), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161877,36 +160847,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28276] = 3, + [26933] = 7, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 13, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4132), 33, + ACTIONS(3423), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [26996] = 7, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4122), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4116), 2, + anon_sym_COMMA, anon_sym_LBRACK, + ACTIONS(4119), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4110), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -161927,19 +160958,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_implements, + [27059] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4124), 3, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, + ACTIONS(4126), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_implements, - [28331] = 3, + [27118] = 5, + ACTIONS(4132), 1, + anon_sym_QMARK, + ACTIONS(4134), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 13, + ACTIONS(4128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161947,7 +161035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4186), 33, + ACTIONS(4130), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -161956,7 +161044,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -161979,19 +161066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28386] = 3, + [27177] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4188), 13, + ACTIONS(4044), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -161999,7 +161085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4190), 33, + ACTIONS(4046), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162033,17 +161119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28441] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, + [27232] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, anon_sym_PIPE, - ACTIONS(4080), 1, + ACTIONS(4074), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4192), 11, + ACTIONS(4136), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162055,7 +161141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4194), 32, + ACTIONS(4138), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162088,18 +161174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28502] = 6, - ACTIONS(4156), 1, + [27293] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, anon_sym_extends, - ACTIONS(4158), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4196), 11, + ACTIONS(4140), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -162111,7 +161196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4198), 31, + ACTIONS(4142), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162122,6 +161207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -162143,19 +161229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28563] = 4, - ACTIONS(4204), 1, - anon_sym_extends, + [27354] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4200), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162163,7 +161247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4202), 32, + ACTIONS(4146), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162195,20 +161279,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28620] = 4, - ACTIONS(4158), 1, - anon_sym_LBRACK, + [27409] = 6, + ACTIONS(4148), 1, + anon_sym_LBRACE, + ACTIONS(4150), 1, + anon_sym_DOT, + STATE(1709), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4206), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162216,10 +161305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4208), 32, + ACTIONS(1665), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162227,8 +161315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162247,19 +161335,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28677] = 3, + [27470] = 6, + ACTIONS(4148), 1, + anon_sym_LBRACE, + ACTIONS(4152), 1, + anon_sym_DOT, + STATE(1709), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162267,10 +161360,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4138), 33, + ACTIONS(1665), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162280,7 +161372,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162299,19 +161390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28732] = 3, + [27531] = 5, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1709), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4210), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162319,10 +161413,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4212), 33, + ACTIONS(1665), 31, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -162351,19 +161444,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28787] = 3, + [27590] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162371,7 +161463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4216), 33, + ACTIONS(4098), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162405,21 +161497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28842] = 5, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1660), 1, - sym_arguments, + [27645] = 4, + ACTIONS(3501), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 13, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162427,12 +161517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 31, + ACTIONS(3423), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -162459,17 +161550,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28901] = 3, + [27702] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2336), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162477,7 +161568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2334), 33, + ACTIONS(4156), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162511,17 +161602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28956] = 3, + [27757] = 4, + ACTIONS(4034), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4086), 13, + ACTIONS(1673), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162529,7 +161622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4088), 33, + ACTIONS(1671), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162561,19 +161654,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29011] = 3, + [27814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162581,7 +161673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4224), 33, + ACTIONS(4156), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162615,17 +161707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29066] = 3, + [27869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162633,7 +161725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 33, + ACTIONS(4156), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162667,17 +161759,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29121] = 3, + [27924] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4230), 13, + ACTIONS(4158), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162685,7 +161777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 33, + ACTIONS(4160), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162719,17 +161811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29176] = 3, + [27979] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4234), 13, + ACTIONS(4022), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162737,7 +161829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4236), 33, + ACTIONS(4024), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162771,17 +161863,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29231] = 3, + [28034] = 5, + ACTIONS(4162), 1, + anon_sym_QMARK, + ACTIONS(4164), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162789,7 +161885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4240), 33, + ACTIONS(4130), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162798,7 +161894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -162821,19 +161916,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [29286] = 3, + [28093] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162841,7 +161935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4244), 33, + ACTIONS(4168), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162875,17 +161969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29341] = 3, + [28148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162893,7 +161987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4248), 33, + ACTIONS(4172), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162927,19 +162021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29396] = 4, - ACTIONS(4254), 1, - anon_sym_DOT, + [28203] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(4040), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162947,7 +162039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4252), 32, + ACTIONS(4042), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162960,6 +162052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162980,17 +162073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29453] = 3, + [28258] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -162998,7 +162091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3419), 33, + ACTIONS(4176), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163032,17 +162125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29508] = 3, + [28313] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3625), 13, + ACTIONS(4178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163050,7 +162143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3429), 33, + ACTIONS(4180), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163084,19 +162177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29563] = 4, - ACTIONS(4257), 1, - anon_sym_DOT, + [28368] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(2332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163104,7 +162195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4252), 32, + ACTIONS(2330), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163117,6 +162208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163137,17 +162229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29620] = 3, + [28423] = 4, + ACTIONS(4186), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4182), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163155,7 +162249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4262), 33, + ACTIONS(4184), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163168,7 +162262,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163189,29 +162282,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29675] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + [28480] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 11, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4262), 32, + ACTIONS(4190), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163243,18 +162332,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [29736] = 3, + [28535] = 4, + ACTIONS(4192), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 13, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163262,7 +162354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4266), 33, + ACTIONS(4190), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163273,7 +162365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163296,17 +162387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29791] = 3, + [28592] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 13, + ACTIONS(4194), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163314,7 +162405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4270), 33, + ACTIONS(4196), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163348,17 +162439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29846] = 3, + [28647] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 13, + ACTIONS(2340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163366,7 +162457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4274), 33, + ACTIONS(2338), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163400,17 +162491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29901] = 3, + [28702] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 13, + ACTIONS(4198), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163418,7 +162509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4278), 33, + ACTIONS(4200), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163452,17 +162543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29956] = 3, + [28757] = 4, + ACTIONS(3996), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163470,7 +162563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4282), 33, + ACTIONS(3425), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163483,7 +162576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163504,18 +162596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30011] = 4, - ACTIONS(4076), 1, - anon_sym_AMP, + [28814] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 12, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163523,7 +162614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4286), 33, + ACTIONS(4204), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163557,70 +162648,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30068] = 4, - ACTIONS(4288), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1811), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1809), 32, - sym__ternary_qmark, - anon_sym_as, + [28869] = 6, + ACTIONS(4206), 1, 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, + ACTIONS(4208), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [30125] = 3, + STATE(1740), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163628,20 +162672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4292), 33, + ACTIONS(1665), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163660,76 +162702,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [30180] = 4, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_PIPE_RBRACE, + [28930] = 4, + ACTIONS(4214), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [30237] = 5, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1629), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 13, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163737,19 +162723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4296), 31, + ACTIONS(4212), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163768,18 +162754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30296] = 3, + [28987] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2340), 13, + ACTIONS(4216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163787,7 +162774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2338), 33, + ACTIONS(4218), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163821,17 +162808,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30351] = 3, + [29042] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163839,7 +162826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4300), 33, + ACTIONS(4122), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163873,19 +162860,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30406] = 4, - ACTIONS(4032), 1, - anon_sym_extends, + [29097] = 6, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(4222), 1, + anon_sym_DOT, + STATE(1740), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163893,20 +162884,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4304), 32, + ACTIONS(1665), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163925,30 +162914,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [30463] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [29158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 11, + ACTIONS(4224), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4304), 32, + ACTIONS(4226), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163980,18 +162965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30524] = 3, + [29213] = 4, + ACTIONS(4070), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 13, + ACTIONS(4228), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -163999,7 +162986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4308), 33, + ACTIONS(4230), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164033,17 +163020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30579] = 3, + [29270] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(4126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164051,7 +163038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 33, + ACTIONS(4124), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164085,17 +163072,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30634] = 3, + [29325] = 5, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(1740), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 13, + ACTIONS(1667), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164103,19 +163094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4316), 33, + ACTIONS(1665), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -164135,19 +163125,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [30689] = 3, + anon_sym_PIPE_RBRACE, + [29384] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164155,7 +163144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 33, + ACTIONS(4204), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164189,17 +163178,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30744] = 3, + [29439] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 13, + ACTIONS(4232), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164207,7 +163196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4316), 33, + ACTIONS(4234), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164241,17 +163230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30799] = 3, + [29494] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 13, + ACTIONS(4236), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164259,7 +163248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 33, + ACTIONS(4238), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164293,25 +163282,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30854] = 3, + [29549] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 13, + ACTIONS(4240), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4324), 33, + ACTIONS(4242), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164343,27 +163336,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30909] = 3, + [29610] = 6, + ACTIONS(4190), 1, + anon_sym_extends, + ACTIONS(4192), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 13, + ACTIONS(4188), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4244), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 33, + ACTIONS(4246), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164374,7 +163371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164395,19 +163391,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30964] = 3, + [29671] = 4, + ACTIONS(4252), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 13, + ACTIONS(4248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164415,7 +163412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4324), 33, + ACTIONS(4250), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164447,19 +163444,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31019] = 3, + [29728] = 4, + ACTIONS(4192), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 13, + ACTIONS(4254), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164467,7 +163465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4328), 33, + ACTIONS(4256), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164478,7 +163476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164501,17 +163498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31074] = 3, + [29785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 13, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164519,7 +163516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4332), 33, + ACTIONS(4204), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164553,25 +163550,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31129] = 3, + [29840] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 13, + ACTIONS(4258), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4328), 33, + ACTIONS(4260), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164603,19 +163604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31184] = 3, + [29901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 13, + ACTIONS(4262), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164623,7 +163623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4332), 33, + ACTIONS(4264), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164657,17 +163657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31239] = 3, + [29956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 13, + ACTIONS(4266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164675,7 +163675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4336), 33, + ACTIONS(4268), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164709,29 +163709,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31294] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + [30011] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 11, + ACTIONS(2344), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4340), 32, + ACTIONS(2342), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164763,18 +163759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31355] = 3, + [30066] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164782,7 +163779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4344), 33, + ACTIONS(4164), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164816,29 +163813,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31410] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + [30121] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 11, + ACTIONS(4270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4348), 32, + ACTIONS(4272), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164870,18 +163863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31471] = 3, + [30176] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 13, + ACTIONS(4274), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164889,7 +163883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4352), 33, + ACTIONS(4276), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164923,17 +163917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31526] = 3, + [30231] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 13, + ACTIONS(4278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -164941,7 +163935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4356), 33, + ACTIONS(4280), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164975,29 +163969,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31581] = 6, - ACTIONS(4076), 1, - anon_sym_AMP, - ACTIONS(4078), 1, - anon_sym_PIPE, - ACTIONS(4080), 1, - anon_sym_extends, + [30286] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 11, + ACTIONS(4282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4356), 32, + ACTIONS(4284), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165029,18 +164019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31642] = 3, + [30341] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2332), 13, + ACTIONS(4286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165048,7 +164039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2330), 33, + ACTIONS(4288), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165082,17 +164073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31697] = 3, + [30396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 13, + ACTIONS(4290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165100,7 +164091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 33, + ACTIONS(4292), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165134,17 +164125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31752] = 3, + [30451] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165152,7 +164143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 33, + ACTIONS(4296), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165186,17 +164177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31807] = 3, + [30506] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165204,7 +164195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 33, + ACTIONS(4300), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165238,17 +164229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31862] = 3, + [30561] = 4, + ACTIONS(4306), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165256,7 +164249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 33, + ACTIONS(4304), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165269,7 +164262,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165290,17 +164282,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31917] = 3, + [30618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(3640), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165308,7 +164300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 33, + ACTIONS(3417), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165342,17 +164334,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31972] = 3, + [30673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(3644), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165360,7 +164352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 33, + ACTIONS(3449), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165394,17 +164386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32027] = 3, + [30728] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165412,7 +164404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 33, + ACTIONS(4311), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165446,17 +164438,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32082] = 3, + [30783] = 4, + ACTIONS(4313), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165464,7 +164458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 33, + ACTIONS(4304), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165477,7 +164471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165498,17 +164491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32137] = 3, + [30840] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4316), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165516,7 +164509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 33, + ACTIONS(4318), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165550,25 +164543,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32192] = 3, + [30895] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4316), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 33, + ACTIONS(4318), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165600,19 +164597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32247] = 3, + [30956] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4374), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165620,7 +164616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4376), 33, + ACTIONS(4311), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165654,17 +164650,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32302] = 3, + [31011] = 5, + ACTIONS(822), 1, + anon_sym_BQUOTE, + STATE(1613), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 13, + ACTIONS(1775), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165672,7 +164672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4380), 33, + ACTIONS(1777), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165702,21 +164702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32357] = 3, + [31070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165724,7 +164722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4384), 33, + ACTIONS(4322), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165758,17 +164756,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32412] = 3, + [31125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2344), 13, + ACTIONS(4324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165776,7 +164774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2342), 33, + ACTIONS(4326), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165810,17 +164808,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32467] = 3, + [31180] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 13, + ACTIONS(4328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165828,7 +164826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4388), 33, + ACTIONS(4330), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165862,17 +164860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32522] = 3, + [31235] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165880,7 +164878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 33, + ACTIONS(4334), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165914,17 +164912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32577] = 3, + [31290] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165932,7 +164930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 33, + ACTIONS(4338), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165966,17 +164964,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32632] = 3, + [31345] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -165984,7 +164982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 33, + ACTIONS(4311), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166018,17 +165016,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32687] = 3, + [31400] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166036,7 +165034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 33, + ACTIONS(4342), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166070,17 +165068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32742] = 3, + [31455] = 4, + ACTIONS(4070), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4344), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166088,7 +165087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 33, + ACTIONS(4346), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166122,17 +165121,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32797] = 3, + [31512] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4348), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166140,7 +165139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 33, + ACTIONS(4350), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166174,17 +165173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32852] = 3, + [31567] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166192,7 +165191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 33, + ACTIONS(4342), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166226,17 +165225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32907] = 3, + [31622] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166244,7 +165243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 33, + ACTIONS(4342), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166278,17 +165277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32962] = 3, + [31677] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(2328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166296,7 +165295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 33, + ACTIONS(2326), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166330,17 +165329,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33017] = 3, + [31732] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 13, + ACTIONS(4352), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166348,7 +165347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4404), 33, + ACTIONS(4354), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166382,17 +165381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33072] = 3, + [31787] = 4, + ACTIONS(4356), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 13, + ACTIONS(1781), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166400,7 +165401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4408), 33, + ACTIONS(1779), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166432,21 +165433,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33127] = 4, - ACTIONS(4104), 1, - anon_sym_EQ, + [31844] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4102), 13, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166454,15 +165456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 31, + ACTIONS(4360), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -166486,17 +165488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33183] = 3, + [31903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166504,7 +165506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 32, + ACTIONS(4364), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166536,49 +165538,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33237] = 11, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4420), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [31958] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 25, + ACTIONS(4368), 33, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -166596,25 +165590,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [33307] = 3, + anon_sym_extends, + anon_sym_implements, + [32013] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 13, + ACTIONS(4370), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 32, + ACTIONS(4372), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166647,17 +165647,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33361] = 3, + [32074] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(2336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166665,7 +165665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 32, + ACTIONS(2334), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166697,18 +165697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33415] = 3, + [32129] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 13, + ACTIONS(4374), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166716,7 +165717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 32, + ACTIONS(4376), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166748,18 +165749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33469] = 3, + [32184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1693), 13, + ACTIONS(4378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166767,7 +165769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 32, + ACTIONS(4380), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166799,85 +165801,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33523] = 19, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - STATE(2748), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [32239] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, + ACTIONS(4382), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4384), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [33609] = 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32294] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(4378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166885,7 +165873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 32, + ACTIONS(4380), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166917,18 +165905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33663] = 3, + [32349] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166936,7 +165925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 32, + ACTIONS(4384), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166968,18 +165957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33717] = 3, + [32404] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4386), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -166987,7 +165977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 32, + ACTIONS(4388), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167019,18 +166009,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33771] = 3, + [32459] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167038,7 +166029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4451), 32, + ACTIONS(4392), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167070,18 +166061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33825] = 3, + [32514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4453), 13, + ACTIONS(4386), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167089,7 +166081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4455), 32, + ACTIONS(4388), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167121,334 +166113,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33879] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [32569] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4390), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4455), 7, + ACTIONS(4392), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [33989] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4501), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [34099] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_extends, + anon_sym_implements, + [32624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4394), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4503), 7, + ACTIONS(4396), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [34209] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4505), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [34319] = 3, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32679] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1817), 13, + ACTIONS(4258), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167456,7 +166237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1819), 32, + ACTIONS(4260), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167488,18 +166269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34373] = 3, + [32734] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167507,7 +166289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 32, + ACTIONS(4396), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167539,18 +166321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34427] = 3, + [32789] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4507), 13, + ACTIONS(4062), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167558,7 +166341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4509), 32, + ACTIONS(4064), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167590,18 +166373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34481] = 3, + [32844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4511), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167609,7 +166393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4513), 32, + ACTIONS(4400), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167641,18 +166425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34535] = 3, + [32899] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4515), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167660,7 +166445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4517), 32, + ACTIONS(4404), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167692,97 +166477,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34589] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4519), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [34699] = 3, + [32954] = 4, + ACTIONS(4024), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4521), 13, + ACTIONS(4066), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167790,7 +166499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4523), 32, + ACTIONS(4068), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167823,25 +166532,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34753] = 3, + [33011] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(4406), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 32, + ACTIONS(4408), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167874,17 +166587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34807] = 3, + [33072] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4525), 13, + ACTIONS(4132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167892,7 +166605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4527), 32, + ACTIONS(4134), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167924,18 +166637,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34861] = 3, + [33127] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 13, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4414), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [33237] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167943,7 +166736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1699), 32, + ACTIONS(4130), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167976,17 +166769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34915] = 3, + [33291] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1871), 13, + ACTIONS(4458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167994,7 +166787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 32, + ACTIONS(4460), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168027,39 +166820,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34969] = 6, - ACTIONS(4186), 1, - anon_sym_extends, + [33345] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4529), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4532), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4423), 10, + ACTIONS(4128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 29, + ACTIONS(4130), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168081,17 +166871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35029] = 3, + [33399] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 13, + ACTIONS(4462), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168099,7 +166889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 32, + ACTIONS(4464), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168132,51 +166922,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35083] = 13, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - ACTIONS(4543), 1, - anon_sym_LT, - STATE(1859), 1, - sym_type_arguments, - STATE(2090), 1, - sym_arguments, - STATE(2315), 1, - sym_template_string, - STATE(4753), 1, - sym_optional_chain, + [33453] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3934), 12, + ACTIONS(4466), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3936), 23, - sym__automatic_semicolon, + ACTIONS(4468), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168192,69 +166970,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33507] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, anon_sym_satisfies, - [35157] = 3, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 13, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1809), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4468), 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, + [33617] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4470), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [35211] = 3, + [33727] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1793), 13, + ACTIONS(4472), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168262,7 +167149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1791), 32, + ACTIONS(4474), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168295,17 +167182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35265] = 3, + [33781] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(4476), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168313,7 +167200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 32, + ACTIONS(4478), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168346,17 +167233,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35319] = 3, + [33835] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4480), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [33945] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 13, + ACTIONS(4482), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168364,7 +167330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4547), 32, + ACTIONS(4484), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168397,17 +167363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35373] = 3, + [33999] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 13, + ACTIONS(1787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168415,7 +167381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 32, + ACTIONS(1785), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168448,17 +167414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35427] = 3, + [34053] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(4486), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168466,7 +167432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 32, + ACTIONS(4488), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168499,17 +167465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35481] = 3, + [34107] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4549), 13, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168517,7 +167483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4551), 32, + ACTIONS(4492), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168550,17 +167516,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35535] = 3, + [34161] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 13, + ACTIONS(4494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168568,7 +167534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4555), 32, + ACTIONS(4496), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168601,17 +167567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35589] = 3, + [34215] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4557), 13, + ACTIONS(4498), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168619,7 +167585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4559), 32, + ACTIONS(4500), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168652,39 +167618,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35643] = 3, + [34269] = 13, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_QMARK_DOT, + ACTIONS(4510), 1, + anon_sym_LT, + STATE(1981), 1, + sym_type_arguments, + STATE(2145), 1, + sym_arguments, + STATE(2194), 1, + sym_template_string, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4561), 13, + ACTIONS(3934), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4563), 32, + ACTIONS(3936), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -168700,20 +167678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [35697] = 3, + [34343] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4565), 13, + ACTIONS(4512), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168721,7 +167697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4567), 32, + ACTIONS(4514), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168754,17 +167730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35751] = 3, + [34397] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4569), 13, + ACTIONS(4516), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168772,7 +167748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 32, + ACTIONS(4518), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168805,17 +167781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35805] = 3, + [34451] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4573), 13, + ACTIONS(4520), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168823,7 +167799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4575), 32, + ACTIONS(4522), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168856,78 +167832,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35859] = 31, + [34505] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 7, + ACTIONS(4524), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -168935,17 +167911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [35969] = 3, + [34615] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4579), 13, + ACTIONS(4526), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -168953,7 +167929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4581), 32, + ACTIONS(4528), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168986,78 +167962,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36023] = 31, + [34669] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4581), 7, + ACTIONS(4528), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -169065,53 +168041,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [36133] = 18, + [34779] = 18, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 7, + ACTIONS(4532), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 19, + ACTIONS(4530), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -169131,17 +168107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [36217] = 3, + [34863] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4587), 13, + ACTIONS(4534), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -169149,7 +168125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4589), 32, + ACTIONS(4536), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169182,163 +168158,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36271] = 19, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3868), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - STATE(2748), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, + [34917] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4538), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [36357] = 3, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4591), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4593), 32, + ACTIONS(4530), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36411] = 13, + [34991] = 25, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4483), 1, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4595), 1, + ACTIONS(4442), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4532), 1, + anon_sym_BANG, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 22, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -169349,129 +168289,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [35089] = 26, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4532), 1, + anon_sym_BANG, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4530), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [36485] = 3, + [35189] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4538), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4598), 13, + ACTIONS(4410), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4600), 32, + ACTIONS(4530), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [36539] = 25, + [35269] = 22, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_BANG, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 13, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4530), 14, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -169482,71 +168496,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [36637] = 26, + [35361] = 23, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_BANG, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 12, + ACTIONS(4530), 14, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -169555,53 +168565,71 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_satisfies, - [36737] = 16, + [35455] = 24, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4481), 1, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4595), 1, + ACTIONS(4442), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4479), 2, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4495), 2, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 8, + ACTIONS(4532), 2, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4583), 21, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -169612,73 +168640,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_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, anon_sym_satisfies, - [36817] = 22, + [35551] = 15, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4538), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4585), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4583), 14, + ACTIONS(4530), 21, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -169689,69 +168695,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_LT_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, anon_sym_satisfies, - [36909] = 23, + [35629] = 16, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4538), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 14, + ACTIONS(4530), 20, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -169760,40 +168759,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, - anon_sym_satisfies, - [37003] = 3, + [35709] = 6, + ACTIONS(4168), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 32, + ACTIONS(3423), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169815,36 +168824,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37057] = 3, + [35769] = 6, + ACTIONS(4042), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(4547), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4550), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4604), 32, + ACTIONS(3423), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169866,211 +168878,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37111] = 19, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, + [35829] = 20, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - STATE(2748), 1, - sym_override_modifier, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [37197] = 15, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [35917] = 27, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4481), 1, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4595), 1, + ACTIONS(4442), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4532), 1, + anon_sym_BANG, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4495), 2, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 10, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [36019] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 21, + ACTIONS(4555), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [37275] = 16, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4595), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_implements, + [36073] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4557), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 20, + ACTIONS(4559), 32, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [37355] = 3, + anon_sym_satisfies, + anon_sym_implements, + [36127] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4561), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170078,7 +169141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 32, + ACTIONS(4563), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170111,17 +169174,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37409] = 3, + [36181] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, + ACTIONS(4565), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170129,7 +169192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 32, + ACTIONS(4567), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170162,39 +169225,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37463] = 6, - ACTIONS(4146), 1, - anon_sym_extends, + [36235] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4567), 7, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [36345] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4569), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [36455] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4571), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 29, + ACTIONS(4573), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -170216,19 +169434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37523] = 4, - ACTIONS(4614), 1, - anon_sym_EQ, + [36509] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4612), 13, + ACTIONS(4575), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170236,7 +169452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 31, + ACTIONS(4577), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170245,6 +169461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -170268,39 +169485,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37579] = 6, - ACTIONS(4024), 1, - anon_sym_extends, + [36563] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4618), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4621), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4579), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 29, + ACTIONS(4581), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -170322,17 +169536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37639] = 3, + [36617] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4624), 13, + ACTIONS(1697), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170340,7 +169554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 32, + ACTIONS(1699), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170373,160 +169587,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37693] = 20, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [36671] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4583), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4585), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, + ACTIONS(4585), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [37781] = 27, - ACTIONS(3938), 1, + anon_sym_implements, + [36725] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1795), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1793), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4585), 1, - anon_sym_BANG, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36779] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4587), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 11, + ACTIONS(4589), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [37883] = 3, + anon_sym_implements, + [36833] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 13, + ACTIONS(4591), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170534,7 +169758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1719), 32, + ACTIONS(4593), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170567,17 +169791,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37937] = 3, + [36887] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 13, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4593), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [36997] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4595), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170585,7 +169888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 32, + ACTIONS(4597), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170618,17 +169921,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37991] = 3, + [37051] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4632), 13, + ACTIONS(4599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170636,7 +169939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4634), 32, + ACTIONS(4601), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170669,17 +169972,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38045] = 3, + [37105] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4636), 13, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4601), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [37215] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4603), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170687,7 +170069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4638), 32, + ACTIONS(4414), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170720,17 +170102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38099] = 3, + [37269] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4640), 13, + ACTIONS(4605), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170738,7 +170120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4642), 32, + ACTIONS(4607), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170771,17 +170153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38153] = 3, + [37323] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4644), 13, + ACTIONS(4609), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170789,7 +170171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4646), 32, + ACTIONS(4611), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170822,78 +170204,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38207] = 31, + [37377] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4642), 7, + ACTIONS(4613), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -170901,78 +170283,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [38317] = 31, + [37487] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4648), 7, + ACTIONS(4615), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -170980,17 +170362,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [38427] = 3, + [37597] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4650), 13, + ACTIONS(4617), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -170998,7 +170380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4652), 32, + ACTIONS(4619), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171031,17 +170413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38481] = 3, + [37651] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4654), 13, + ACTIONS(4621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171049,7 +170431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4656), 32, + ACTIONS(4623), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171082,17 +170464,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38535] = 3, + [37705] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4658), 13, + ACTIONS(4625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171100,7 +170482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4660), 32, + ACTIONS(4627), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171133,17 +170515,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38589] = 3, + [37759] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4662), 13, + ACTIONS(4621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171151,7 +170533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4664), 32, + ACTIONS(4623), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171184,17 +170566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38643] = 3, + [37813] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4666), 13, + ACTIONS(4629), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171202,7 +170584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4668), 32, + ACTIONS(4631), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171235,17 +170617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38697] = 3, + [37867] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 13, + ACTIONS(4633), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171253,7 +170635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 32, + ACTIONS(4635), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171286,19 +170668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38751] = 4, - ACTIONS(1665), 1, - anon_sym_EQ, + [37921] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1663), 13, + ACTIONS(4621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171306,7 +170686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 31, + ACTIONS(4623), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171315,6 +170695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -171338,36 +170719,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38807] = 3, + [37975] = 19, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [38061] = 6, + ACTIONS(4234), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4670), 13, + ACTIONS(4655), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4658), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4651), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4672), 32, + ACTIONS(4653), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -171389,17 +170840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38861] = 3, + [38121] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1739), 13, + ACTIONS(4661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171407,7 +170858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1737), 32, + ACTIONS(4663), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171440,17 +170891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [38915] = 3, + [38175] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1701), 13, + ACTIONS(4665), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171458,19 +170909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1699), 32, - sym__automatic_semicolon, + ACTIONS(4667), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171490,52 +170941,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [38969] = 12, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4678), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_implements, + [38229] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(4669), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4676), 23, + ACTIONS(4671), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -171549,19 +170988,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [39041] = 3, + anon_sym_implements, + [38283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1793), 13, + ACTIONS(4673), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171569,19 +171011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1791), 32, - sym__automatic_semicolon, + ACTIONS(4675), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -171601,18 +171043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [39095] = 3, + anon_sym_implements, + [38337] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1725), 13, + ACTIONS(4677), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171620,7 +171062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1723), 32, + ACTIONS(4679), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171653,17 +171095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39149] = 3, + [38391] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 13, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171671,7 +171113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4683), 32, + ACTIONS(1827), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171704,17 +171146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39203] = 3, + [38445] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 13, + ACTIONS(1835), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171722,7 +171164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 32, + ACTIONS(1837), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171755,17 +171197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39257] = 3, + [38499] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4685), 13, + ACTIONS(1855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171773,7 +171215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4687), 32, + ACTIONS(1857), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171806,17 +171248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39311] = 3, + [38553] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4689), 13, + ACTIONS(1741), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171824,7 +171266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4691), 32, + ACTIONS(1743), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171857,17 +171299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39365] = 3, + [38607] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(4681), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171875,7 +171317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1709), 32, + ACTIONS(4683), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171908,17 +171350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39419] = 3, + [38661] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 13, + ACTIONS(4685), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -171926,7 +171368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 32, + ACTIONS(4687), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171959,80 +171401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39473] = 15, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4701), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4697), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4699), 21, - 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, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_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, - [39551] = 3, + [38715] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 13, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -172040,7 +171419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4706), 32, + ACTIONS(4691), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172073,78 +171452,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39605] = 31, + [38769] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4708), 7, + ACTIONS(4693), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -172152,17 +171531,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39715] = 3, + [38879] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1745), 13, + ACTIONS(4695), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -172170,7 +171549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 32, + ACTIONS(4697), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172203,84 +171582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39769] = 19, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3755), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - STATE(2748), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [39855] = 3, + [38933] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4710), 13, + ACTIONS(1845), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -172288,7 +171600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4712), 32, + ACTIONS(1847), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172321,17 +171633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39909] = 3, + [38987] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4714), 13, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -172339,7 +171651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4716), 32, + ACTIONS(1719), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172372,163 +171684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [39963] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4716), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [40073] = 19, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - STATE(2748), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [40159] = 3, + [39041] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4718), 13, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -172536,7 +171702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4720), 32, + ACTIONS(1733), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172569,17 +171735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40213] = 3, + [39095] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4722), 13, + ACTIONS(1751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -172587,7 +171753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 32, + ACTIONS(1753), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172620,17 +171786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40267] = 3, + [39149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4726), 13, + ACTIONS(1761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -172638,7 +171804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4728), 32, + ACTIONS(1763), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172671,96 +171837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40321] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4728), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [40431] = 3, + [39203] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4730), 13, + ACTIONS(1805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -172768,7 +171855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4732), 32, + ACTIONS(1807), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172801,175 +171888,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40485] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [39257] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(1815), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4732), 7, + ACTIONS(1817), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [40595] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4734), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [40705] = 3, + anon_sym_satisfies, + anon_sym_implements, + [39311] = 4, + ACTIONS(4112), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 13, + ACTIONS(4110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -172977,7 +171959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 32, + ACTIONS(4114), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172986,7 +171968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -173010,151 +171991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40759] = 24, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 13, - sym__ternary_qmark, - anon_sym_as, - 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, - anon_sym_satisfies, - [40855] = 15, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3868), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, + [39367] = 4, + ACTIONS(4701), 1, anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4740), 2, - anon_sym_get, - anon_sym_set, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [40932] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1811), 13, + ACTIONS(4699), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -173162,18 +172011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1809), 31, - sym__automatic_semicolon, + ACTIONS(4703), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173193,81 +172042,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [40985] = 16, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, + anon_sym_implements, + [39423] = 4, + ACTIONS(1677), 1, anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4742), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [41064] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1871), 13, + ACTIONS(1675), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -173275,213 +172063,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1869), 31, - sym__automatic_semicolon, + ACTIONS(1679), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41117] = 15, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4740), 2, - anon_sym_get, - anon_sym_set, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [41194] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_implements, + [39479] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(1769), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4744), 6, + ACTIONS(1767), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [41303] = 16, - ACTIONS(1583), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39533] = 19, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3868), 1, + ACTIONS(3783), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4637), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4742), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4645), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, + ACTIONS(4649), 2, anon_sym_get, anon_sym_set, - STATE(3080), 3, + STATE(3059), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173489,7 +172194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -173497,12 +172202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -173510,19 +172213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41382] = 4, - ACTIONS(4746), 1, - sym__automatic_semicolon, + [39619] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 13, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -173530,17 +172231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1809), 30, + ACTIONS(1797), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173560,91 +172263,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41437] = 17, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4748), 1, - anon_sym_STAR, - ACTIONS(4750), 1, - anon_sym_LBRACE, - ACTIONS(4752), 1, - anon_sym_async, - ACTIONS(4756), 1, - anon_sym_readonly, - ACTIONS(4760), 1, - sym__automatic_semicolon, - STATE(2674), 1, - sym_statement_block, - STATE(2746), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4758), 2, - anon_sym_get, - anon_sym_set, - STATE(3017), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [41518] = 5, + anon_sym_implements, + [39673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1665), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4763), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1663), 13, + ACTIONS(1705), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -173652,12 +172282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 24, + ACTIONS(1703), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173677,17 +172314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [41575] = 3, + anon_sym_implements, + [39727] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1841), 13, + ACTIONS(1691), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -173695,18 +172333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 31, - sym__automatic_semicolon, + ACTIONS(1689), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173726,104 +172365,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [41628] = 16, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4768), 1, - anon_sym_static, - ACTIONS(4770), 1, - anon_sym_readonly, - ACTIONS(4772), 1, - anon_sym_abstract, - ACTIONS(4774), 1, - anon_sym_accessor, - STATE(2698), 1, - sym_accessibility_modifier, - STATE(2799), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4766), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3394), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [41707] = 7, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(4146), 1, - anon_sym_extends, + anon_sym_implements, + [39781] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(1781), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 27, + ACTIONS(1779), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -173844,79 +172416,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [41768] = 15, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4740), 2, - anon_sym_get, - anon_sym_set, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [41845] = 3, + anon_sym_implements, + [39835] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1835), 13, + ACTIONS(1769), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -173924,10 +172435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1833), 31, + ACTIONS(1767), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, @@ -173956,104 +172468,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [41898] = 16, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4742), 1, - anon_sym_LBRACK, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [41977] = 7, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4776), 1, - anon_sym_DOT, - ACTIONS(4778), 1, - anon_sym_is, - STATE(1888), 1, - sym_type_arguments, + [39889] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4006), 12, + ACTIONS(1799), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 28, + ACTIONS(1797), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_while, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174072,18 +172518,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [42038] = 3, + anon_sym_PIPE_RBRACE, + [39943] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1725), 13, + ACTIONS(1791), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -174091,18 +172537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1723), 31, - sym__automatic_semicolon, + ACTIONS(1789), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174122,40 +172569,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42091] = 15, - ACTIONS(1505), 1, + anon_sym_implements, + [39997] = 19, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3877), 1, + ACTIONS(3790), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4637), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + STATE(4947), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(4645), 2, sym_number, sym_private_property_identifier, - ACTIONS(4740), 2, + ACTIONS(4649), 2, anon_sym_get, anon_sym_set, - STATE(3890), 3, + STATE(3059), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174163,21 +172618,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -174185,42 +172637,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42168] = 8, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4780), 1, - anon_sym_DOT, - STATE(1901), 1, - sym_arguments, - STATE(1902), 1, - sym_type_arguments, + [40083] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 12, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3441), 27, - sym__automatic_semicolon, + ACTIONS(3423), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174239,43 +172687,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [42231] = 8, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4782), 1, - anon_sym_DOT, - STATE(1903), 1, - sym_arguments, - STATE(1904), 1, - sym_type_arguments, + anon_sym_implements, + [40137] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3996), 12, + ACTIONS(1775), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3998), 27, - sym__automatic_semicolon, + ACTIONS(1777), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -174294,44 +172738,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [42294] = 8, - ACTIONS(4535), 1, + anon_sym_implements, + [40191] = 12, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4784), 1, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, - STATE(1905), 1, - sym_arguments, - STATE(1906), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4709), 1, + anon_sym_LT, + STATE(1493), 1, sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4014), 12, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4016), 27, - sym__automatic_semicolon, + ACTIONS(4707), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -174345,67 +172797,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [40263] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4716), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 21, + 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, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, - anon_sym_satisfies, - anon_sym_extends, - [42357] = 16, - ACTIONS(1583), 1, + [40341] = 19, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, anon_sym_readonly, - ACTIONS(4792), 1, - anon_sym_abstract, - ACTIONS(4794), 1, - anon_sym_accessor, - STATE(2690), 1, - sym_accessibility_modifier, - STATE(2817), 1, + STATE(2745), 1, sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4786), 2, + ACTIONS(4645), 2, sym_number, sym_private_property_identifier, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3312), 3, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, @@ -174413,19 +172929,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42436] = 4, - ACTIONS(4796), 1, - sym__automatic_semicolon, + [40427] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1661), 13, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4719), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [40537] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4721), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -174433,17 +173026,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 30, + ACTIONS(4723), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174463,18 +173058,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42491] = 3, + anon_sym_implements, + [40591] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1739), 13, + ACTIONS(4725), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -174482,18 +173077,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1737), 31, - sym__automatic_semicolon, + ACTIONS(4727), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174513,104 +173109,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42544] = 15, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, + anon_sym_implements, + [40645] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4733), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4729), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4731), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3755), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + 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, + anon_sym_satisfies, + [40715] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4740), 2, - anon_sym_get, - anon_sym_set, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, + ACTIONS(4651), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [42621] = 16, - ACTIONS(1583), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40769] = 19, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3875), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4637), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4742), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4645), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, + ACTIONS(4649), 2, anon_sym_get, anon_sym_set, - STATE(3080), 3, + STATE(3059), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174618,7 +173268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, + ACTIONS(3646), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -174626,12 +173276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -174639,41 +173287,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42700] = 16, - ACTIONS(1583), 1, + [40855] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4112), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4736), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4110), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [40912] = 16, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3803), 1, + ACTIONS(3875), 1, anon_sym_RBRACE, - ACTIONS(4427), 1, + ACTIONS(4637), 1, anon_sym_STAR, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4433), 1, + ACTIONS(4643), 1, anon_sym_async, - ACTIONS(4742), 1, + ACTIONS(4739), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4645), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, + ACTIONS(4649), 2, anon_sym_get, anon_sym_set, - STATE(3080), 3, + STATE(3059), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174702,26 +173402,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42779] = 5, + [40991] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 2, + ACTIONS(4701), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4798), 5, + ACTIONS(4741), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4102), 13, + ACTIONS(4699), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -174729,7 +173429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 24, + ACTIONS(4703), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -174754,39 +173454,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42836] = 5, + [41048] = 7, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4801), 5, + ACTIONS(4541), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4612), 13, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 24, + ACTIONS(3423), 27, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -174806,29 +173508,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42893] = 9, - ACTIONS(87), 1, - anon_sym_BQUOTE, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - STATE(2315), 1, - sym_template_string, - STATE(4753), 1, - sym_optional_chain, + [41109] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, + ACTIONS(1781), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -174836,15 +173526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 24, + ACTIONS(1779), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -174860,159 +173555,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [42957] = 8, - ACTIONS(1665), 1, + anon_sym_PIPE_RBRACE, + [41162] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4066), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4804), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2326), 4, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1663), 11, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41239] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1667), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [43019] = 18, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41318] = 4, + ACTIONS(4750), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(1781), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, - sym__automatic_semicolon, + ACTIONS(1779), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43101] = 7, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4066), 1, - anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [41373] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2326), 2, + ACTIONS(1677), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4752), 5, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4069), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1663), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1675), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 26, + ACTIONS(1679), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -175032,104 +173786,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43161] = 18, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [41430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(1791), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(1789), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43243] = 7, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4114), 1, - anon_sym_extends, + anon_sym_PIPE_RBRACE, + [41483] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4108), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4111), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4102), 10, + ACTIONS(1787), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 26, + ACTIONS(1785), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -175149,41 +173885,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43303] = 8, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4108), 1, + anon_sym_PIPE_RBRACE, + [41536] = 17, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(4755), 1, + anon_sym_STAR, + ACTIONS(4757), 1, + anon_sym_LBRACE, + ACTIONS(4759), 1, + anon_sym_async, + ACTIONS(4763), 1, + anon_sym_readonly, + ACTIONS(4767), 1, + sym__automatic_semicolon, + STATE(2668), 1, + sym_statement_block, + STATE(2764), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4838), 2, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4765), 2, + anon_sym_get, + anon_sym_set, + STATE(3033), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4114), 4, - sym__automatic_semicolon, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4102), 11, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41617] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1705), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 22, + ACTIONS(1703), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -175203,40 +173999,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43365] = 7, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4108), 1, + anon_sym_PIPE_RBRACE, + [41670] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(4772), 1, + anon_sym_static, + ACTIONS(4774), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_abstract, + ACTIONS(4778), 1, + anon_sym_accessor, + STATE(2705), 1, + sym_accessibility_modifier, + STATE(2785), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 2, + ACTIONS(4770), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3462), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4111), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4102), 10, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41749] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1691), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 26, + ACTIONS(1689), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_while, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -175256,79 +174112,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43425] = 16, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + anon_sym_PIPE_RBRACE, + [41802] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4842), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4846), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4849), 1, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, anon_sym_satisfies, - STATE(1976), 1, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4780), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [41911] = 8, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4510), 1, + anon_sym_LT, + ACTIONS(4782), 1, + anon_sym_DOT, + STATE(1870), 1, + sym_arguments, + STATE(1871), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 18, + ACTIONS(3425), 27, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43503] = 3, + anon_sym_satisfies, + anon_sym_extends, + [41974] = 4, + ACTIONS(4784), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3186), 13, + ACTIONS(1673), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -175336,15 +174266,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3188), 30, - sym__automatic_semicolon, + ACTIONS(1671), 30, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_while, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -175365,40 +174296,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [43555] = 4, - ACTIONS(3437), 1, - anon_sym_EQ, + [42029] = 7, + ACTIONS(4510), 1, + anon_sym_LT, + ACTIONS(4786), 1, + anon_sym_DOT, + ACTIONS(4788), 1, + anon_sym_is, + STATE(2026), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4016), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 29, + ACTIONS(3499), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -175417,265 +174350,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [43609] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + anon_sym_extends, + [42090] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(4537), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42167] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42246] = 8, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4510), 1, + anon_sym_LT, + ACTIONS(4790), 1, + anon_sym_DOT, + STATE(1872), 1, sym_arguments, - STATE(4753), 1, - sym_optional_chain, + STATE(1873), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4008), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4642), 5, + ACTIONS(4010), 27, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [43717] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 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(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [42309] = 8, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4510), 1, + anon_sym_LT, + ACTIONS(4792), 1, + anon_sym_DOT, + STATE(1874), 1, sym_arguments, - STATE(4753), 1, - sym_optional_chain, + STATE(1875), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4002), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4708), 5, + ACTIONS(4004), 27, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [43825] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4889), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4716), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43933] = 13, + anon_sym_satisfies, + anon_sym_extends, + [42372] = 15, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3803), 1, + ACTIONS(3790), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4947), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(4746), 2, sym_number, sym_private_property_identifier, - STATE(3890), 3, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -175683,7 +174626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175693,8 +174636,69 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42449] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, + anon_sym_LBRACK, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, anon_sym_get, anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175707,93 +174711,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [44005] = 13, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [42528] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4846), 1, + ACTIONS(4796), 1, + anon_sym_static, + ACTIONS(4798), 1, + anon_sym_readonly, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4802), 1, + anon_sym_accessor, + STATE(2707), 1, + sym_accessibility_modifier, + STATE(2768), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4794), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3456), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3646), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42607] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(1795), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 20, + ACTIONS(1793), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44077] = 13, + anon_sym_PIPE_RBRACE, + [42660] = 15, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3877), 1, + ACTIONS(3872), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(4746), 2, sym_number, sym_private_property_identifier, - STATE(3890), 3, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -175801,7 +174864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -175811,8 +174874,131 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42737] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42816] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, anon_sym_get, anon_sym_set, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175825,621 +175011,864 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [44149] = 31, - ACTIONS(4418), 1, + [42893] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4832), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4470), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [43001] = 18, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, anon_sym_BANG, - ACTIONS(4849), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, anon_sym_satisfies, - ACTIONS(4875), 1, + [43083] = 13, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4862), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, - ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, + 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, + anon_sym_satisfies, + [43155] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4728), 5, + ACTIONS(4601), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [44257] = 31, - ACTIONS(4418), 1, + [43263] = 4, + ACTIONS(4869), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4865), 16, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4867), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + 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, + [43317] = 25, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4648), 5, + ACTIONS(4530), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [44365] = 25, - ACTIONS(4418), 1, + anon_sym_satisfies, + [43413] = 26, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4585), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(4826), 1, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - STATE(1976), 1, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 11, + ACTIONS(4530), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, + anon_sym_of, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [44461] = 6, - ACTIONS(3523), 1, - anon_sym_EQ, - ACTIONS(3548), 1, - anon_sym_QMARK, + [43511] = 16, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4862), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3435), 13, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4530), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + 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, anon_sym_BQUOTE, anon_sym_satisfies, - [44519] = 24, - ACTIONS(4418), 1, + [43589] = 22, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 11, + ACTIONS(4530), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [44613] = 31, - ACTIONS(4418), 1, + [43679] = 23, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4810), 1, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4501), 5, + ACTIONS(4530), 12, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, 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, - [44721] = 31, - ACTIONS(4418), 1, + anon_sym_satisfies, + [43771] = 24, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4810), 1, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, + ACTIONS(4873), 1, + anon_sym_AMP3, ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4732), 5, + ACTIONS(4530), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [44829] = 31, - ACTIONS(4418), 1, + anon_sym_satisfies, + [43865] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4812), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4503), 5, + ACTIONS(4414), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [44937] = 12, - ACTIONS(4418), 1, + [43973] = 15, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4895), 1, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4862), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(4848), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4676), 21, + ACTIONS(4530), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176451,8 +175880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -176461,48 +175888,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45007] = 15, - ACTIONS(4418), 1, + [44049] = 16, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(4898), 1, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4862), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4532), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 19, + ACTIONS(4530), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -176514,7 +175943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -176522,200 +175950,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [45083] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [44127] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4889), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, + STATE(5863), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4708), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [45191] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [44243] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4891), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, + STATE(5643), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4505), 5, + [44359] = 12, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4893), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4707), 21, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, - [45299] = 14, - ACTIONS(1583), 1, + anon_sym_satisfies, + [44429] = 13, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4903), 1, - anon_sym_static, - ACTIONS(4905), 1, - anon_sym_readonly, - ACTIONS(4907), 1, - anon_sym_abstract, - ACTIONS(4909), 1, - anon_sym_accessor, - STATE(2800), 1, - sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4901), 2, + ACTIONS(4746), 2, sym_number, sym_private_property_identifier, - STATE(3473), 3, + STATE(3917), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -176723,12 +176213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -176736,40 +176229,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [45373] = 7, - ACTIONS(1665), 1, + [44501] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4528), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [44609] = 6, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(2326), 1, - anon_sym_extends, + ACTIONS(3586), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4066), 2, + ACTIONS(3584), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4069), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1663), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 26, - sym__automatic_semicolon, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -176789,161 +176358,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [45433] = 20, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [44667] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4898), 1, + anon_sym_static, + ACTIONS(4900), 1, + anon_sym_readonly, + ACTIONS(4902), 1, + anon_sym_abstract, + ACTIONS(4904), 1, + anon_sym_accessor, + STATE(2817), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4896), 2, + sym_number, + sym_private_property_identifier, + STATE(3309), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44741] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4810), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4442), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4906), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, + STATE(5581), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4885), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4585), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4583), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - 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, - anon_sym_satisfies, - [45519] = 15, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4846), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [44857] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(3182), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 19, + ACTIONS(3184), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [45595] = 13, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [44909] = 13, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3800), 1, + ACTIONS(3795), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - STATE(5129), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4964), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(4746), 2, sym_number, sym_private_property_identifier, - STATE(3890), 3, + STATE(3917), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176975,176 +176607,408 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [45667] = 3, + [44981] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3162), 13, + ACTIONS(4804), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3164), 30, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4613), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + [45089] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, anon_sym_LBRACK, + ACTIONS(4506), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, anon_sym_AMP_AMP, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, anon_sym_PERCENT, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4693), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [45719] = 35, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(3938), 1, + [45197] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4812), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4816), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4828), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4832), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4846), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(4913), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, - STATE(5910), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45835] = 11, - ACTIONS(4418), 1, + ACTIONS(4569), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45305] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [45383] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4915), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4593), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45491] = 4, + ACTIONS(4788), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4040), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 23, + ACTIONS(4042), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -177162,198 +177026,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [45903] = 35, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(3938), 1, + anon_sym_extends, + [45545] = 4, + ACTIONS(4908), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4022), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4024), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [45599] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4812), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4816), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4828), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4832), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4846), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(4918), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, - STATE(5804), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46019] = 26, - ACTIONS(4418), 1, + ACTIONS(4615), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45707] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4585), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4826), 1, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - STATE(1976), 1, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4468), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [46117] = 13, - ACTIONS(4418), 1, + [45815] = 20, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4818), 1, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4920), 1, + ACTIONS(4860), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4848), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 20, + ACTIONS(4530), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177362,82 +177291,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [46189] = 27, - ACTIONS(4418), 1, + [45901] = 27, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4585), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(4810), 1, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4860), 1, anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - STATE(1976), 1, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4530), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177447,123 +177370,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [46289] = 31, - ACTIONS(4418), 1, + [46001] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4914), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4501), 5, + ACTIONS(4470), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [46397] = 14, - ACTIONS(1583), 1, + [46109] = 13, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_static, - ACTIONS(4927), 1, - anon_sym_readonly, - ACTIONS(4929), 1, - anon_sym_abstract, - ACTIONS(4931), 1, - anon_sym_accessor, - STATE(2782), 1, - sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4923), 2, + ACTIONS(4746), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + STATE(3917), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -177571,12 +177490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -177584,103 +177506,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [46471] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4716), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [46579] = 5, + [46181] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4933), 5, + ACTIONS(4134), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4102), 13, + anon_sym_extends, + ACTIONS(4128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -177688,10 +177529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 23, + ACTIONS(4130), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -177712,88 +177556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [46635] = 25, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4889), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [46731] = 3, + [46235] = 4, + ACTIONS(4788), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3182), 13, + ACTIONS(4044), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -177801,7 +177576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3184), 30, + ACTIONS(4046), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177831,116 +177606,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [46783] = 31, - ACTIONS(4418), 1, + [46289] = 11, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4916), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4889), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4642), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [46891] = 4, - ACTIONS(4778), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4026), 13, + ACTIONS(4729), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4028), 29, + ACTIONS(4731), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -177958,286 +177663,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [46945] = 31, - ACTIONS(4418), 1, + [46357] = 13, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4919), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4648), 5, + ACTIONS(4530), 20, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [47053] = 35, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(4935), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, - STATE(5791), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47169] = 31, - ACTIONS(4418), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46429] = 12, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4922), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4705), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4707), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, - ACTIONS(4863), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4728), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_BQUOTE, - [47277] = 16, - ACTIONS(4418), 1, + anon_sym_satisfies, + [46499] = 15, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4842), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(4920), 1, + ACTIONS(4925), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4712), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 18, + ACTIONS(4714), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -178249,6 +177833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -178256,375 +177841,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [47355] = 31, - ACTIONS(4418), 1, + [46575] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4914), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4732), 5, + ACTIONS(4719), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [47463] = 31, - ACTIONS(4418), 1, + [46683] = 11, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4928), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4729), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4734), 5, + ACTIONS(4731), 23, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [47571] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + anon_sym_of, anon_sym_AMP_AMP, - ACTIONS(4877), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 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(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46751] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4164), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4128), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4130), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4734), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [47679] = 31, - ACTIONS(4418), 1, + anon_sym_satisfies, + [46805] = 25, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, + ACTIONS(4532), 1, + anon_sym_BANG, ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, + anon_sym_GT_GT, ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4519), 5, + ACTIONS(4530), 11, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [47787] = 4, - ACTIONS(4941), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4937), 16, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4939), 26, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - [47841] = 3, + anon_sym_satisfies, + [46901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1685), 13, + ACTIONS(3188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -178632,7 +178114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1683), 30, + ACTIONS(3190), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178662,28 +178144,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_is, - [47893] = 6, - ACTIONS(3541), 1, + anon_sym_PIPE_RBRACE, + [46953] = 6, + ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(3548), 1, + ACTIONS(3544), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 5, + ACTIONS(3541), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3435), 13, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -178691,7 +178173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -178715,328 +178197,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [47951] = 31, - ACTIONS(4418), 1, + [47011] = 26, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4812), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4581), 5, + ACTIONS(4530), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [48059] = 3, + anon_sym_satisfies, + [47109] = 16, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4919), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4058), 13, + ACTIONS(4804), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4060), 30, + ACTIONS(4530), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [48111] = 31, - ACTIONS(4418), 1, + [47187] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4519), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [48219] = 26, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(4810), 1, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4860), 1, anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - STATE(1976), 1, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4567), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [48317] = 15, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [47295] = 6, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4931), 1, anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4943), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, + STATE(2048), 1, sym_arguments, - STATE(4753), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4028), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 19, + ACTIONS(4030), 27, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -179050,27 +178455,31 @@ 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, - [48393] = 5, + anon_sym_satisfies, + anon_sym_extends, + [47353] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1665), 2, + ACTIONS(4112), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4946), 5, + ACTIONS(4933), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1663), 13, + ACTIONS(4110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -179078,7 +178487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 23, + ACTIONS(4114), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -179102,58 +178511,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [48449] = 20, - ACTIONS(4418), 1, + [47409] = 23, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4816), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4828), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4832), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4863), 3, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4585), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4583), 14, + ACTIONS(4530), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179163,113 +178577,120 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_satisfies, - [48535] = 16, - ACTIONS(4418), 1, + [47501] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4920), 1, + ACTIONS(4860), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4814), 2, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 8, - anon_sym_BANG, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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_LT_EQ, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4569), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [48613] = 11, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4948), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [47609] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4701), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4935), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4699), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 23, - sym__automatic_semicolon, + ACTIONS(4703), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -179287,167 +178708,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [48681] = 31, - ACTIONS(4418), 1, + [47665] = 18, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4816), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4828), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4832), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4577), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [48789] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4088), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4082), 13, - anon_sym_STAR, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 26, + ACTIONS(4530), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [48843] = 7, - ACTIONS(3523), 1, - anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, + [47747] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4146), 6, - sym__automatic_semicolon, + ACTIONS(1677), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4937), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1675), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(1679), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -179467,39 +178823,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [48903] = 6, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4776), 1, - anon_sym_DOT, - STATE(1888), 1, - sym_type_arguments, + [47803] = 7, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(2338), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4006), 12, + ACTIONS(4100), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4103), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1675), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3501), 28, + ACTIONS(1679), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -179518,50 +178876,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [48961] = 12, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [47863] = 8, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4116), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4951), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4939), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4122), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4110), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4676), 21, - sym__automatic_semicolon, + ACTIONS(4114), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -179575,390 +178926,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [49031] = 31, - ACTIONS(4418), 1, + [47925] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4812), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4503), 5, + ACTIONS(4480), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [49139] = 31, - ACTIONS(4418), 1, + [48033] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4914), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4505), 5, + ACTIONS(4593), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - [49247] = 22, - ACTIONS(4418), 1, + [48141] = 24, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4828), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4832), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4885), 3, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 12, + ACTIONS(4530), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [49337] = 31, - ACTIONS(4418), 1, + [48235] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4914), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4455), 5, + ACTIONS(4480), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [49445] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4138), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4082), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4084), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [49499] = 6, - ACTIONS(3485), 1, + [48343] = 7, + ACTIONS(3523), 1, anon_sym_EQ, - ACTIONS(3579), 1, - anon_sym_QMARK, + ACTIONS(4541), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 5, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4168), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3435), 13, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -179978,270 +179284,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [49557] = 23, - ACTIONS(4418), 1, + [48403] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4810), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4816), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4879), 1, - anon_sym_AMP, - STATE(1976), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4808), 2, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4814), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 12, + ACTIONS(4601), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, + anon_sym_BQUOTE, + [48511] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, anon_sym_AMP_AMP, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, + ACTIONS(4844), 1, anon_sym_satisfies, - [49649] = 4, - ACTIONS(4778), 1, - anon_sym_is, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4022), 13, + ACTIONS(4804), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4024), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4567), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [49703] = 27, - ACTIONS(4418), 1, + [48619] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4585), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4826), 1, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - STATE(1976), 1, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4414), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_QMARK_QMARK, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [49803] = 13, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3755), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + [48727] = 4, + ACTIONS(3421), 1, anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [49875] = 4, - ACTIONS(4954), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 13, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -180249,16 +179535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4032), 29, - sym__automatic_semicolon, + ACTIONS(3423), 29, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -180278,112 +179565,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [49929] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4889), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4577), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [50037] = 13, + [48781] = 13, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3868), 1, + ACTIONS(3790), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4947), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(4746), 2, sym_number, sym_private_property_identifier, - STATE(3890), 3, + STATE(3917), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180415,160 +179624,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50109] = 5, - ACTIONS(4543), 1, + [48853] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, anon_sym_LT, - STATE(1894), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 12, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4032), 29, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4613), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_BQUOTE, + [48961] = 15, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, anon_sym_LBRACK, + ACTIONS(4506), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(4828), 1, anon_sym_PERCENT, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [50165] = 6, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1895), 1, + ACTIONS(4919), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4052), 13, + ACTIONS(4804), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4054), 27, + ACTIONS(4530), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [50223] = 16, - ACTIONS(1583), 1, + [49037] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, + ACTIONS(4945), 1, + anon_sym_static, + ACTIONS(4947), 1, anon_sym_readonly, - STATE(2748), 1, + ACTIONS(4949), 1, + anon_sym_abstract, + ACTIONS(4951), 1, + anon_sym_accessor, + STATE(2794), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4435), 2, + ACTIONS(4943), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, + STATE(3434), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 18, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -180580,603 +179822,677 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50301] = 31, - ACTIONS(4418), 1, + [49111] = 16, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4919), 1, + anon_sym_LT, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4532), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4530), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4581), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [50409] = 24, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [49189] = 7, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, - anon_sym_BANG, + ACTIONS(2338), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4103), 3, + anon_sym_GT, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(4808), 2, + ACTIONS(1675), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4887), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 11, - sym__automatic_semicolon, + ACTIONS(1679), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50503] = 16, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [49249] = 7, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4116), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4122), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4119), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4110), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4832), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4834), 1, anon_sym_STAR_STAR, - ACTIONS(4846), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49309] = 7, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4122), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4116), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4119), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4110), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 19, + ACTIONS(4114), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50581] = 22, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [49369] = 9, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, + ACTIONS(4508), 1, + anon_sym_QMARK_DOT, + STATE(2194), 1, + sym_template_string, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(1775), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 12, + ACTIONS(1777), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, 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_BQUOTE, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [50671] = 23, - ACTIONS(4418), 1, + [49433] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4857), 1, - anon_sym_AMP, - STATE(1976), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 12, + ACTIONS(4615), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [50763] = 35, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(3938), 1, + [49541] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4812), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4816), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4828), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4832), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4846), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(4958), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, - STATE(5616), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50879] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4719), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [49649] = 6, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4818), 1, anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49707] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4875), 1, + ACTIONS(4812), 1, anon_sym_AMP_AMP, - ACTIONS(4877), 1, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, - ACTIONS(4883), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(4891), 1, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4873), 2, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4887), 2, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4455), 5, + ACTIONS(4468), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [50987] = 15, - ACTIONS(4418), 1, + [49815] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4818), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4920), 1, + ACTIONS(4860), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 10, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - 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_LT_EQ, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4693), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, anon_sym_BQUOTE, - anon_sym_satisfies, - [51063] = 5, + [49923] = 8, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4100), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4614), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4960), 5, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4953), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4612), 13, + ACTIONS(2338), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1675), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 23, + ACTIONS(1679), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -181196,190 +180512,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51119] = 15, + [49985] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4962), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4957), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, + STATE(5874), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4410), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 18, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_implements, - [51194] = 12, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4742), 1, - anon_sym_LBRACK, - ACTIONS(4748), 1, - anon_sym_STAR, - ACTIONS(4752), 1, - anon_sym_async, - ACTIONS(4774), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4758), 2, - anon_sym_get, - anon_sym_set, - STATE(3017), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [51263] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1936), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [51316] = 6, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - sym__automatic_semicolon, + [50101] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1659), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1663), 13, + ACTIONS(4036), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -181387,12 +180611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 25, + ACTIONS(4038), 30, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -181413,39 +180640,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51373] = 5, - ACTIONS(4535), 1, + anon_sym_extends, + anon_sym_is, + [50153] = 15, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - STATE(2108), 1, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 13, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4296), 27, + ACTIONS(4714), 19, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -181459,67 +180702,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [51428] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, + [50229] = 13, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4429), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(2756), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(4746), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, + STATE(3917), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -181527,191 +180762,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [51511] = 33, - ACTIONS(4418), 1, + [50301] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4856), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4858), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4860), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4914), 1, sym__ternary_qmark, - ACTIONS(4967), 1, - anon_sym_COMMA, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4478), 1, - aux_sym_sequence_expression_repeat1, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4848), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(4871), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4883), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4969), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4863), 3, + ACTIONS(4879), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51622] = 3, + ACTIONS(4524), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [50409] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4140), 13, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4142), 29, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4528), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_BQUOTE, + [50517] = 27, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, anon_sym_LBRACK, + ACTIONS(4506), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(4812), 1, anon_sym_AMP_AMP, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, anon_sym_PERCENT, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51673] = 3, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4030), 13, + ACTIONS(4804), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4032), 29, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51724] = 3, + [50617] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4144), 13, + ACTIONS(3170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -181719,7 +181007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4146), 29, + ACTIONS(3172), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181749,17 +181037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51775] = 3, + anon_sym_PIPE_RBRACE, + [50669] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4022), 13, + ACTIONS(1657), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -181767,7 +181056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4024), 29, + ACTIONS(1655), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181797,27 +181086,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51826] = 4, - ACTIONS(4971), 1, + anon_sym_is, + [50721] = 6, + ACTIONS(4510), 1, + anon_sym_LT, + ACTIONS(4786), 1, anon_sym_DOT, + STATE(2026), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4148), 13, + ACTIONS(4016), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4150), 28, + ACTIONS(3499), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181846,122 +181139,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [51879] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4154), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4156), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [50779] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4504), 1, anon_sym_LBRACK, + ACTIONS(4506), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, anon_sym_AMP_AMP, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, anon_sym_PERCENT, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4844), 1, anon_sym_satisfies, - anon_sym_extends, - [51930] = 4, - ACTIONS(4973), 1, - anon_sym_LBRACK, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 13, + ACTIONS(4804), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4156), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4524), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51983] = 3, + [50887] = 5, + ACTIONS(4510), 1, + anon_sym_LT, + STATE(2046), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4160), 13, + ACTIONS(4022), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4162), 29, + ACTIONS(4024), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181991,121 +181267,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [52034] = 4, - ACTIONS(4032), 1, - anon_sym_extends, + [50943] = 20, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 13, + ACTIONS(4804), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4304), 28, + ACTIONS(4530), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52087] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [51029] = 22, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 11, + ACTIONS(4804), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4304), 28, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52144] = 5, - ACTIONS(87), 1, - anon_sym_BQUOTE, - STATE(2315), 1, - sym_template_string, + [51119] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -182113,7 +181419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 27, + ACTIONS(4204), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182140,24 +181446,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [52199] = 6, - ACTIONS(4146), 1, anon_sym_extends, + [51170] = 9, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, + ACTIONS(3560), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, + anon_sym_COLON, + ACTIONS(4168), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4544), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -182165,14 +181480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, - sym__automatic_semicolon, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -182192,38 +181503,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52256] = 6, - ACTIONS(4024), 1, - anon_sym_extends, + [51233] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4618), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4621), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4374), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, + ACTIONS(4376), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -182243,69 +181550,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52313] = 7, - ACTIONS(3503), 1, - anon_sym_EQ, - ACTIONS(4146), 1, anon_sym_extends, + [51284] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4962), 1, + anon_sym_STAR, + ACTIONS(4964), 1, + anon_sym_async, + ACTIONS(4968), 1, + anon_sym_readonly, + STATE(2752), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 25, + ACTIONS(4966), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4970), 2, + anon_sym_get, + anon_sym_set, + STATE(3094), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52372] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51357] = 9, + ACTIONS(4042), 1, anon_sym_extends, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(4976), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4338), 11, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4972), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4974), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182317,16 +181641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4340), 28, - sym__automatic_semicolon, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -182346,116 +181664,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52429] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2328), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2326), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [51420] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4504), 1, anon_sym_LBRACK, + ACTIONS(4506), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, anon_sym_AMP_AMP, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, anon_sym_PERCENT, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4844), 1, anon_sym_satisfies, - anon_sym_extends, - [52480] = 4, - ACTIONS(4780), 1, - anon_sym_DOT, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(4979), 1, + anon_sym_COMMA, + ACTIONS(4982), 1, + anon_sym_RBRACE, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 13, + ACTIONS(4524), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4804), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3441), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [52533] = 4, - ACTIONS(4981), 1, - anon_sym_DOT, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51531] = 4, + ACTIONS(3501), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 13, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -182463,7 +181762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4166), 28, + ACTIONS(3423), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182473,6 +181772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -182491,129 +181791,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [52586] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4170), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4172), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [51584] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4504), 1, anon_sym_LBRACK, + ACTIONS(4506), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, anon_sym_AMP_AMP, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, anon_sym_PERCENT, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4844), 1, anon_sym_satisfies, - anon_sym_extends, - [52637] = 9, - ACTIONS(4024), 1, - anon_sym_extends, - ACTIONS(4618), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_RPAREN, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(4984), 1, + anon_sym_COMMA, + ACTIONS(4987), 1, + anon_sym_RBRACE, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4983), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4985), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3435), 11, + ACTIONS(4524), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4804), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [52700] = 9, - ACTIONS(3523), 1, - anon_sym_EQ, - ACTIONS(3548), 1, - anon_sym_QMARK, - ACTIONS(4606), 1, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51695] = 9, + ACTIONS(4042), 1, + anon_sym_extends, + ACTIONS(4547), 1, anon_sym_LBRACK, + ACTIONS(4993), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4989), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4991), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4146), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 11, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -182625,7 +181900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -182648,162 +181923,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [52763] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4174), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4114), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [51758] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(4504), 1, anon_sym_LBRACK, + ACTIONS(4506), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, anon_sym_AMP_AMP, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, anon_sym_PERCENT, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4844), 1, anon_sym_satisfies, - anon_sym_extends, - [52814] = 3, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(4982), 1, + anon_sym_RBRACE, + ACTIONS(4996), 1, + anon_sym_COMMA, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4176), 13, + ACTIONS(4804), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4178), 29, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4999), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4834), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [52865] = 4, - ACTIONS(4975), 1, - anon_sym_AMP, + [51869] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, + ACTIONS(5007), 1, + anon_sym_readonly, + STATE(2758), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4180), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4182), 29, + ACTIONS(5005), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + STATE(3013), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [52918] = 3, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51942] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 13, + ACTIONS(4164), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -182811,15 +182083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4132), 29, - sym__automatic_semicolon, + ACTIONS(4130), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -182840,35 +182109,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [51995] = 10, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(2338), 1, anon_sym_extends, - [52969] = 3, + ACTIONS(2340), 1, + anon_sym_QMARK, + ACTIONS(4100), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4184), 13, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4953), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1675), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4186), 29, - sym__automatic_semicolon, + ACTIONS(1679), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -182888,18 +182164,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53020] = 3, + [52060] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, + ACTIONS(5013), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4188), 13, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5011), 2, + sym_number, + sym_private_property_identifier, + STATE(3014), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [52129] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2344), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -182907,7 +182239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4190), 29, + ACTIONS(2342), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182937,29 +182269,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53071] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [52180] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4192), 11, + ACTIONS(4162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4194), 28, + ACTIONS(4164), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182988,30 +182316,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53128] = 6, - ACTIONS(4156), 1, anon_sym_extends, - ACTIONS(4973), 1, - anon_sym_LBRACK, + [52231] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4196), 11, + ACTIONS(4270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4198), 27, + ACTIONS(4272), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183020,6 +182344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -183039,19 +182364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53185] = 4, - ACTIONS(4992), 1, anon_sym_extends, + [52282] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4200), 13, + ACTIONS(4274), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183059,7 +182383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4202), 28, + ACTIONS(4276), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183088,19 +182412,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53238] = 4, - ACTIONS(4973), 1, - anon_sym_LBRACK, + anon_sym_extends, + [52333] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4206), 13, + ACTIONS(4278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183108,7 +182431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4208), 28, + ACTIONS(4280), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183117,6 +182440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -183137,17 +182461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53291] = 3, + [52384] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4136), 13, + ACTIONS(4282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183155,7 +182479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4138), 29, + ACTIONS(4284), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183185,17 +182509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53342] = 3, + [52435] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4210), 13, + ACTIONS(4286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183203,7 +182527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4212), 29, + ACTIONS(4288), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183233,17 +182557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53393] = 3, + [52486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4214), 13, + ACTIONS(4290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183251,7 +182575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4216), 29, + ACTIONS(4292), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183281,17 +182605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53444] = 3, + [52537] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4090), 13, + ACTIONS(4294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183299,7 +182623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4092), 29, + ACTIONS(4296), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183329,251 +182653,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53495] = 33, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [52588] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4994), 1, - anon_sym_COMMA, - ACTIONS(4997), 1, - anon_sym_RBRACE, - STATE(1976), 1, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4999), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4863), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53606] = 33, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - ACTIONS(4994), 1, + ACTIONS(5015), 4, anon_sym_COMMA, - ACTIONS(4997), 1, anon_sym_RBRACE, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_RPAREN, + anon_sym_RBRACK, + [52695] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4501), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4298), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [53717] = 33, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4300), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4537), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - ACTIONS(4997), 1, - anon_sym_RBRACE, - ACTIONS(5001), 1, - anon_sym_COMMA, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4577), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53828] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52746] = 4, + ACTIONS(4306), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2336), 13, + ACTIONS(4302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183581,7 +182797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2334), 29, + ACTIONS(4304), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183591,7 +182807,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183611,34 +182826,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53879] = 3, + [52799] = 10, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4116), 1, + anon_sym_LBRACK, + ACTIONS(4122), 1, + anon_sym_extends, + ACTIONS(4220), 1, + anon_sym_QMARK, + ACTIONS(4933), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4086), 13, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4939), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4110), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4088), 29, - sym__automatic_semicolon, + ACTIONS(4114), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -183658,18 +182881,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53930] = 3, + [52864] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, + ACTIONS(3640), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183677,7 +182899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4224), 29, + ACTIONS(3417), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183707,17 +182929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53981] = 3, + [52915] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, + ACTIONS(3644), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183725,7 +182947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 29, + ACTIONS(3449), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183755,17 +182977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54032] = 3, + [52966] = 4, + ACTIONS(4313), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4230), 13, + ACTIONS(4302), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183773,7 +182997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 29, + ACTIONS(4304), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183783,7 +183007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -183803,17 +183026,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54083] = 3, + [53019] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 13, + ACTIONS(4316), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183821,7 +183044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4408), 29, + ACTIONS(4318), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183851,25 +183074,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54134] = 3, + [53070] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4234), 13, + ACTIONS(4316), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4236), 29, + ACTIONS(4318), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183898,18 +183125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [54185] = 3, + [53127] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, + ACTIONS(4320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183917,7 +183143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4240), 29, + ACTIONS(4322), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183947,17 +183173,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54236] = 3, + [53178] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -183965,7 +183191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4244), 29, + ACTIONS(4326), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183995,95 +183221,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54287] = 33, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - ACTIONS(5004), 1, - anon_sym_COMMA, - ACTIONS(5007), 1, - anon_sym_RBRACE, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [53229] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4577), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4328), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4330), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54398] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53280] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184091,7 +183287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4248), 29, + ACTIONS(4334), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184121,19 +183317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54449] = 4, - ACTIONS(4254), 1, - anon_sym_DOT, + [53331] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(4336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184141,7 +183335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4252), 28, + ACTIONS(4338), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184151,6 +183345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184170,17 +183365,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54502] = 3, + [53382] = 4, + ACTIONS(5017), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 13, + ACTIONS(4344), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184188,7 +183384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3419), 29, + ACTIONS(4346), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184218,17 +183414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54553] = 3, + [53435] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3625), 13, + ACTIONS(4348), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184236,7 +183432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3429), 29, + ACTIONS(4350), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184266,19 +183462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54604] = 4, - ACTIONS(4257), 1, - anon_sym_DOT, + [53486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 13, + ACTIONS(4106), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184286,7 +183480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4252), 28, + ACTIONS(4108), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184296,6 +183490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -184315,17 +183510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54657] = 3, + [53537] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4158), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184333,7 +183528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4262), 29, + ACTIONS(4160), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184363,29 +183558,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54708] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [53588] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 11, + ACTIONS(4022), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4262), 28, + ACTIONS(4024), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184414,17 +183605,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [54765] = 3, + anon_sym_extends, + [53639] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(5023), 1, + anon_sym_COMMA, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4518), 1, + aux_sym_sequence_expression_repeat1, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 13, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5025), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53750] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184432,7 +183702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4266), 29, + ACTIONS(2326), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184462,17 +183732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54816] = 3, + [53801] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 13, + ACTIONS(4352), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184480,7 +183750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4270), 29, + ACTIONS(4354), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184510,17 +183780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54867] = 3, + [53852] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 13, + ACTIONS(4362), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184528,7 +183798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4274), 29, + ACTIONS(4364), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184558,17 +183828,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54918] = 3, + [53903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 13, + ACTIONS(4378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184576,7 +183846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4278), 29, + ACTIONS(4380), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184606,17 +183876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54969] = 3, + [53954] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184624,7 +183894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4282), 29, + ACTIONS(4384), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184654,18 +183924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55020] = 4, - ACTIONS(4975), 1, - anon_sym_AMP, + [54005] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 12, + ACTIONS(4378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184673,7 +183942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4286), 29, + ACTIONS(4380), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184703,17 +183972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55073] = 3, + [54056] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 13, + ACTIONS(4382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184721,7 +183990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4292), 29, + ACTIONS(4384), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184751,17 +184020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55124] = 3, + [54107] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4062), 13, + ACTIONS(4386), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184769,7 +184038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4064), 29, + ACTIONS(4388), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184799,17 +184068,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55175] = 3, + [54158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2340), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184817,7 +184086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2338), 29, + ACTIONS(4392), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184847,17 +184116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55226] = 3, + [54209] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4386), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184865,7 +184134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4300), 29, + ACTIONS(4388), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184895,17 +184164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55277] = 3, + [54260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 13, + ACTIONS(4390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184913,7 +184182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4308), 29, + ACTIONS(4392), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184943,17 +184212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55328] = 3, + [54311] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -184961,7 +184230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 29, + ACTIONS(4396), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184991,17 +184260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55379] = 3, + [54362] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 13, + ACTIONS(4062), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185009,7 +184278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4316), 29, + ACTIONS(4064), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185039,17 +184308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55430] = 3, + [54413] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 13, + ACTIONS(4394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185057,7 +184326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 29, + ACTIONS(4396), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185087,17 +184356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55481] = 3, + [54464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 13, + ACTIONS(4062), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185105,7 +184374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4316), 29, + ACTIONS(4064), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185135,17 +184404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55532] = 3, + [54515] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 13, + ACTIONS(4398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185153,7 +184422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 29, + ACTIONS(4400), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185183,17 +184452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55583] = 3, + [54566] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 13, + ACTIONS(4402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185201,7 +184470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4324), 29, + ACTIONS(4404), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185231,25 +184500,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55634] = 3, + [54617] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 13, + ACTIONS(4406), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4320), 29, + ACTIONS(4408), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185278,18 +184551,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55685] = 3, + [54674] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 13, + ACTIONS(4092), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185297,7 +184569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4324), 29, + ACTIONS(4094), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185327,17 +184599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55736] = 3, + [54725] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 13, + ACTIONS(4258), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185345,7 +184617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4328), 29, + ACTIONS(4260), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185375,25 +184647,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55787] = 3, + [54776] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 13, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4541), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4168), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [54833] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4258), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4332), 29, + ACTIONS(4260), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185422,18 +184749,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55838] = 3, + [54890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 13, + ACTIONS(4144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185441,7 +184767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4328), 29, + ACTIONS(4146), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185471,17 +184797,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55889] = 3, + [54941] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 13, + ACTIONS(4166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185489,7 +184815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4332), 29, + ACTIONS(4168), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185519,17 +184845,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55940] = 3, + [54992] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4334), 13, + ACTIONS(2336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185537,7 +184863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4336), 29, + ACTIONS(2334), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185567,17 +184893,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55991] = 3, + [55043] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4342), 13, + ACTIONS(4076), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185585,7 +184911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4344), 29, + ACTIONS(4078), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185615,29 +184941,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56042] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [55094] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4346), 11, + ACTIONS(4080), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4348), 28, + ACTIONS(4082), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185666,17 +184988,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56099] = 3, + anon_sym_extends, + [55145] = 14, + ACTIONS(165), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(5031), 1, + anon_sym_RBRACE, + STATE(4838), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5033), 2, + sym_number, + sym_private_property_identifier, + STATE(4835), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5027), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [55218] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4350), 13, + ACTIONS(4080), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185684,7 +185066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4352), 29, + ACTIONS(4082), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185714,17 +185096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56150] = 3, + [55269] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 13, + ACTIONS(4080), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185732,7 +185114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4356), 29, + ACTIONS(4082), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185762,29 +185144,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56201] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [55320] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4354), 11, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4356), 28, + ACTIONS(4098), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185813,17 +185191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56258] = 3, + anon_sym_extends, + [55371] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4122), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185831,7 +185210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4124), 29, + ACTIONS(4098), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185861,17 +185240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56309] = 3, + [55422] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2332), 13, + ACTIONS(4096), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185879,7 +185258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2330), 29, + ACTIONS(4098), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185909,17 +185288,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56360] = 3, + [55473] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(5023), 1, + anon_sym_COMMA, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4518), 1, + aux_sym_sequence_expression_repeat1, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 13, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5035), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55584] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185927,7 +185384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4360), 29, + ACTIONS(4156), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185957,17 +185414,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56411] = 3, + [55635] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -185975,7 +185432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 29, + ACTIONS(4156), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186005,17 +185462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56462] = 3, + [55686] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186023,7 +185480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 29, + ACTIONS(4156), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186053,17 +185510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56513] = 3, + [55737] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 13, + ACTIONS(4170), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186071,7 +185528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4364), 29, + ACTIONS(4172), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186101,17 +185558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56564] = 3, + [55788] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(4174), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186119,7 +185576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 29, + ACTIONS(4176), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186149,17 +185606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56615] = 3, + [55839] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(4178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186167,7 +185624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 29, + ACTIONS(4180), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186197,17 +185654,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56666] = 3, + [55890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 13, + ACTIONS(2332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186215,7 +185672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4368), 29, + ACTIONS(2330), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186245,17 +185702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56717] = 3, + [55941] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4198), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186263,7 +185720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 29, + ACTIONS(4200), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186293,17 +185750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56768] = 3, + [55992] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186311,7 +185768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 29, + ACTIONS(4204), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186341,17 +185798,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56819] = 3, + [56043] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 13, + ACTIONS(4202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186359,7 +185816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4372), 29, + ACTIONS(4204), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186389,17 +185846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56870] = 3, + [56094] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4374), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186407,7 +185864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4376), 29, + ACTIONS(4311), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186437,17 +185894,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56921] = 3, + [56145] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4378), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186455,7 +185912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4380), 29, + ACTIONS(4311), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186485,17 +185942,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56972] = 3, + [56196] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4382), 13, + ACTIONS(4309), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186503,7 +185960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4384), 29, + ACTIONS(4311), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186533,17 +185990,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57023] = 3, + [56247] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2344), 13, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186551,7 +186008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2342), 29, + ACTIONS(4342), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186581,17 +186038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57074] = 3, + [56298] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 13, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186599,7 +186056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4388), 29, + ACTIONS(4342), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186629,17 +186086,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57125] = 3, + [56349] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186647,7 +186104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 29, + ACTIONS(4342), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186677,17 +186134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57176] = 3, + [56400] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186695,7 +186152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 29, + ACTIONS(4368), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186725,17 +186182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57227] = 3, + [56451] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 13, + ACTIONS(4040), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186743,7 +186200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4392), 29, + ACTIONS(4042), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186773,25 +186230,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57278] = 3, + [56502] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4370), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 29, + ACTIONS(4372), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186820,45 +186281,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57329] = 11, - ACTIONS(3938), 1, + [56559] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5009), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(5023), 1, + anon_sym_COMMA, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4518), 1, + aux_sym_sequence_expression_repeat1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5037), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56670] = 5, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4784), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1673), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 22, + ACTIONS(1671), 27, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -186876,18 +186409,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [57396] = 3, + [56725] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4739), 1, + anon_sym_LBRACK, + ACTIONS(4755), 1, + anon_sym_STAR, + ACTIONS(4759), 1, + anon_sym_async, + ACTIONS(4778), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4765), 2, + anon_sym_get, + anon_sym_set, + STATE(3033), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [56794] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [56847] = 14, + ACTIONS(165), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(5041), 1, + anon_sym_RBRACE, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5033), 2, + sym_number, + sym_private_property_identifier, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5039), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [56920] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2194), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186895,7 +186596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 29, + ACTIONS(1777), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186922,20 +186623,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57447] = 3, + [56975] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(2763), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57058] = 4, + ACTIONS(5045), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4182), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -186943,7 +186708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 29, + ACTIONS(4184), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186953,7 +186718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -186973,34 +186737,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57498] = 3, + [57111] = 12, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57180] = 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4658), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4655), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4234), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4651), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 29, - sym__automatic_semicolon, + ACTIONS(4653), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187020,35 +186845,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57549] = 3, + [57237] = 13, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 13, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57308] = 6, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4550), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4400), 29, - sym__automatic_semicolon, + ACTIONS(3423), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187068,18 +186954,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [57600] = 3, + [57365] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(2763), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4402), 13, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57448] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -187087,7 +187036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4404), 29, + ACTIONS(4190), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187117,29 +187066,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [57651] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [57499] = 4, + ACTIONS(1677), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4072), 11, + ACTIONS(1675), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4074), 28, + ACTIONS(1679), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187168,21 +187115,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57708] = 5, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4796), 1, + [57552] = 32, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4871), 1, + anon_sym_GT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + ACTIONS(5051), 1, + anon_sym_in, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5049), 4, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [57661] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(2763), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57744] = 4, + ACTIONS(4164), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1661), 13, + ACTIONS(4128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -187190,7 +187276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 27, + ACTIONS(4130), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -187218,10 +187305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57763] = 19, + [57797] = 19, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(722), 1, anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, @@ -187233,18 +187320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5043), 1, anon_sym_STAR, - STATE(2756), 1, + STATE(2763), 1, sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4947), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -187254,11 +187341,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -187282,21 +187369,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [57846] = 5, - ACTIONS(4535), 1, - anon_sym_LPAREN, - STATE(2088), 1, - sym_arguments, + [57880] = 4, + ACTIONS(5054), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -187304,15 +187389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 27, + ACTIONS(4190), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187332,23 +187417,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57901] = 6, - ACTIONS(4618), 1, + anon_sym_extends, + [57933] = 9, + ACTIONS(2338), 1, + anon_sym_extends, + ACTIONS(4100), 1, anon_sym_LBRACK, + ACTIONS(5056), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4621), 3, - anon_sym_GT, - anon_sym_AMP, + ACTIONS(1677), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4103), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4937), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1675), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -187356,14 +187449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, + ACTIONS(1679), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187383,118 +187472,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57958] = 32, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4810), 1, - anon_sym_GT_GT, - ACTIONS(4816), 1, - anon_sym_PERCENT, - ACTIONS(4818), 1, - anon_sym_STAR_STAR, - ACTIONS(4820), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4873), 1, - anon_sym_GT, - ACTIONS(4875), 1, - anon_sym_AMP_AMP, - ACTIONS(4877), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 1, - anon_sym_AMP, - ACTIONS(4881), 1, - anon_sym_CARET, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(4891), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4893), 1, - sym__ternary_qmark, - ACTIONS(5014), 1, - anon_sym_in, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [57996] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4194), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4812), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4814), 2, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4887), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 2, + ACTIONS(4196), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4885), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5012), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [58067] = 9, - ACTIONS(2326), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_extends, - ACTIONS(4066), 1, - anon_sym_LBRACK, - ACTIONS(5017), 1, - anon_sym_RPAREN, + [58047] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1665), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4069), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4946), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1663), 11, + ACTIONS(2340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 22, + ACTIONS(2338), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187514,26 +187567,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58130] = 9, - ACTIONS(4108), 1, + anon_sym_extends, + [58098] = 9, + ACTIONS(4116), 1, anon_sym_LBRACK, - ACTIONS(4114), 1, + ACTIONS(4122), 1, anon_sym_extends, - ACTIONS(5020), 1, + ACTIONS(5059), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 2, + ACTIONS(4112), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4111), 2, - anon_sym_AMP, + ACTIONS(4119), 2, + anon_sym_AMP3, anon_sym_PIPE, ACTIONS(4933), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4102), 11, + ACTIONS(4110), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187545,7 +187599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 22, + ACTIONS(4114), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187568,34 +187622,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58193] = 3, + [58161] = 7, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4026), 13, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4028), 29, + ACTIONS(3423), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187615,30 +187674,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [58244] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, - anon_sym_extends, + [58220] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4094), 11, + ACTIONS(4044), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4096), 28, + ACTIONS(4046), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187667,29 +187721,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58301] = 6, - ACTIONS(4975), 1, - anon_sym_AMP, - ACTIONS(4977), 1, - anon_sym_PIPE, - ACTIONS(4979), 1, anon_sym_extends, + [58271] = 4, + ACTIONS(4782), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4098), 11, + ACTIONS(3429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4100), 28, + ACTIONS(3425), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187699,7 +187752,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -187718,161 +187770,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58358] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - ACTIONS(5023), 1, - anon_sym_RBRACE, - STATE(2756), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58441] = 14, - ACTIONS(166), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3886), 1, - anon_sym_LBRACK, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(5029), 1, - anon_sym_RBRACE, - STATE(4849), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5031), 2, - sym_number, - sym_private_property_identifier, - STATE(4834), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5957), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5025), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58514] = 6, - ACTIONS(4606), 1, - anon_sym_LBRACK, + anon_sym_extends, + [58324] = 4, + ACTIONS(4024), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4066), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, + ACTIONS(4068), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -187892,258 +187820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58571] = 14, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_STAR, - ACTIONS(5035), 1, - anon_sym_async, - ACTIONS(5039), 1, - anon_sym_readonly, - STATE(2755), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5037), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5041), 2, - anon_sym_get, - anon_sym_set, - STATE(3031), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58644] = 12, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4931), 1, - anon_sym_abstract, - ACTIONS(5033), 1, - anon_sym_STAR, - ACTIONS(5035), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5037), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5041), 2, - anon_sym_get, - anon_sym_set, - STATE(3031), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58713] = 14, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5043), 1, - anon_sym_STAR, - ACTIONS(5045), 1, - anon_sym_async, - ACTIONS(5049), 1, - anon_sym_readonly, - STATE(2760), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5047), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5051), 2, - anon_sym_get, - anon_sym_set, - STATE(3012), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58786] = 12, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5043), 1, - anon_sym_STAR, - ACTIONS(5045), 1, - anon_sym_async, - ACTIONS(5055), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5051), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5053), 2, - sym_number, - sym_private_property_identifier, - STATE(3015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [58855] = 7, - ACTIONS(3469), 1, - anon_sym_DOT, - ACTIONS(3471), 1, - anon_sym_QMARK_DOT, + [58377] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3441), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(4066), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188155,10 +187842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 20, + ACTIONS(4068), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -188176,37 +187871,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58914] = 5, + [58434] = 32, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4132), 7, - sym__automatic_semicolon, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4982), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(5062), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58543] = 5, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2339), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4358), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(4360), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188226,23 +187998,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [58969] = 6, - ACTIONS(4529), 1, - anon_sym_LBRACK, + [58598] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4532), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4423), 10, + ACTIONS(4136), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188250,14 +188020,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 26, + ACTIONS(4138), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188277,85 +188049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59026] = 14, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5057), 1, - anon_sym_STAR, - ACTIONS(5059), 1, - anon_sym_async, - ACTIONS(5063), 1, - anon_sym_readonly, - STATE(2766), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5065), 2, - anon_sym_get, - anon_sym_set, - STATE(3055), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [59099] = 9, - ACTIONS(4024), 1, + [58655] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, anon_sym_extends, - ACTIONS(4618), 1, - anon_sym_LBRACK, - ACTIONS(5069), 1, - anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4983), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5067), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3435), 11, + ACTIONS(4140), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188367,10 +188071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(4142), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188390,42 +188100,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59162] = 9, - ACTIONS(3541), 1, - anon_sym_EQ, - ACTIONS(3548), 1, - anon_sym_QMARK, - ACTIONS(4606), 1, - anon_sym_LBRACK, + [58712] = 4, + ACTIONS(5064), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4146), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 11, + ACTIONS(4210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(4212), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -188444,83 +188148,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59225] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(2756), 1, - sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [59308] = 4, - ACTIONS(4614), 1, - anon_sym_EQ, + anon_sym_extends, + [58765] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4612), 13, + ACTIONS(4216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -188528,7 +188167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 28, + ACTIONS(4218), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188557,26 +188196,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59361] = 9, - ACTIONS(2326), 1, anon_sym_extends, - ACTIONS(4066), 1, + [58816] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4804), 1, - anon_sym_RPAREN, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(4982), 1, + anon_sym_RBRACE, + ACTIONS(4996), 1, + anon_sym_COMMA, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1665), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4069), 2, - anon_sym_AMP, + ACTIONS(4470), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58927] = 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4550), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(4763), 2, + ACTIONS(4547), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1663), 11, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4042), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -188588,7 +188303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 22, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188611,41 +188326,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59424] = 9, - ACTIONS(4108), 1, - anon_sym_LBRACK, - ACTIONS(4114), 1, - anon_sym_extends, - ACTIONS(4838), 1, - anon_sym_RPAREN, + [58984] = 4, + ACTIONS(4701), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4104), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4111), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4798), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4102), 11, + ACTIONS(4699), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 22, + ACTIONS(4703), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188665,36 +188375,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59487] = 4, + [59037] = 9, + ACTIONS(4042), 1, + anon_sym_extends, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(5069), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4082), 13, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4989), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5066), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 25, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188714,36 +188429,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59540] = 4, + [59100] = 9, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(4541), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4088), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3541), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4168), 2, + anon_sym_RPAREN, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4082), 13, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 25, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188763,7 +188483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59593] = 19, + [59163] = 19, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(1505), 1, @@ -188776,20 +188496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5043), 1, anon_sym_STAR, - ACTIONS(5074), 1, + ACTIONS(5073), 1, anon_sym_RBRACE, - STATE(2756), 1, + STATE(2763), 1, sym_override_modifier, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -188799,11 +188519,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -188827,42 +188547,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [59676] = 10, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(2326), 1, - anon_sym_extends, - ACTIONS(2328), 1, - anon_sym_QMARK, - ACTIONS(4066), 1, - anon_sym_LBRACK, - ACTIONS(4946), 1, - anon_sym_COLON, + [59246] = 5, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2138), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4804), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1663), 11, + ACTIONS(4088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 22, + ACTIONS(4090), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188882,1198 +188597,1066 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59741] = 10, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4108), 1, + [59301] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4114), 1, - anon_sym_extends, - ACTIONS(4174), 1, - anon_sym_QMARK, - ACTIONS(4933), 1, - anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4838), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4102), 11, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4468), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [59408] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, anon_sym_AMP_AMP, + ACTIONS(5081), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, anon_sym_PERCENT, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [59806] = 6, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4606), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4146), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4470), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [59515] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, anon_sym_AMP_AMP, + ACTIONS(5081), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, anon_sym_PERCENT, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 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(4480), 4, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_BQUOTE, + anon_sym_implements, + [59622] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - [59863] = 6, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4529), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4186), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4423), 11, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4524), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [59729] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, anon_sym_AMP_AMP, + ACTIONS(5081), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, anon_sym_PERCENT, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [59920] = 6, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4618), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4024), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3435), 11, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 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(4528), 4, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_BQUOTE, - anon_sym_satisfies, - [59977] = 4, - ACTIONS(3485), 1, - anon_sym_EQ, + anon_sym_implements, + [59836] = 18, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 28, - sym__automatic_semicolon, + ACTIONS(4530), 16, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60030] = 14, - ACTIONS(166), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3886), 1, + anon_sym_implements, + [59917] = 13, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(5078), 1, - anon_sym_RBRACE, - STATE(4622), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5031), 2, - sym_number, - sym_private_property_identifier, - STATE(4665), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5957), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5076), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [60103] = 7, - ACTIONS(3447), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(3451), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3445), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, - sym__automatic_semicolon, + ACTIONS(4530), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60162] = 5, + anon_sym_implements, + [59988] = 25, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4134), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5077), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, - sym__automatic_semicolon, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60083] = 26, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5079), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, anon_sym_PERCENT, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [60217] = 6, - ACTIONS(4186), 1, - anon_sym_extends, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4529), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4532), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4423), 10, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5077), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 26, - sym__automatic_semicolon, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60180] = 16, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5095), 1, anon_sym_PERCENT, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [60274] = 4, - ACTIONS(4138), 1, - anon_sym_extends, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 28, - sym__automatic_semicolon, + ACTIONS(4530), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60327] = 31, + anon_sym_implements, + [60257] = 22, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5099), 1, anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5101), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5080), 4, + ACTIONS(4530), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [60434] = 4, - ACTIONS(1665), 1, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60346] = 23, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1663), 13, - anon_sym_STAR, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 28, - sym__automatic_semicolon, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 11, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60487] = 19, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(2756), 1, - sym_override_modifier, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, + anon_sym_implements, + [60437] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [60570] = 14, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, - anon_sym_STAR, - ACTIONS(5084), 1, - anon_sym_async, - ACTIONS(5088), 1, - anon_sym_readonly, - STATE(2754), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5086), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5090), 2, - anon_sym_get, - anon_sym_set, - STATE(3004), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [60643] = 12, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5082), 1, - anon_sym_STAR, - ACTIONS(5084), 1, - anon_sym_async, - ACTIONS(5094), 1, - anon_sym_abstract, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5092), 2, - sym_number, - sym_private_property_identifier, - STATE(3006), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [60712] = 14, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, + anon_sym_PIPE, + ACTIONS(5075), 2, anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_async, - ACTIONS(5102), 1, - anon_sym_readonly, - STATE(2742), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5100), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60530] = 15, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [60785] = 9, - ACTIONS(4024), 1, - anon_sym_extends, - ACTIONS(4618), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5110), 1, - anon_sym_RPAREN, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5106), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5108), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3435), 11, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(4530), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60848] = 7, - ACTIONS(3511), 1, - anon_sym_EQ, - ACTIONS(4146), 1, - anon_sym_extends, + anon_sym_implements, + [60605] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 25, - sym__automatic_semicolon, + ACTIONS(4530), 17, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [60907] = 12, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4738), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4740), 2, - anon_sym_get, - anon_sym_set, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [60976] = 13, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4742), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [61047] = 14, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + anon_sym_implements, + [60682] = 6, + ACTIONS(4541), 1, anon_sym_LBRACK, - ACTIONS(5113), 1, - anon_sym_STAR, - ACTIONS(5115), 1, - anon_sym_async, - ACTIONS(5119), 1, - anon_sym_readonly, - STATE(2764), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5117), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5121), 2, - anon_sym_get, - anon_sym_set, - STATE(3075), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, + ACTIONS(4168), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [61120] = 4, - ACTIONS(4088), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4082), 13, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 28, - sym__automatic_semicolon, + ACTIONS(3423), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -190093,2102 +189676,2271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61173] = 33, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [60739] = 20, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(5099), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - ACTIONS(4967), 1, - anon_sym_COMMA, - STATE(1976), 1, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4478), 1, - aux_sym_sequence_expression_repeat1, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5123), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61284] = 33, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - ACTIONS(4967), 1, - anon_sym_COMMA, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4478), 1, - aux_sym_sequence_expression_repeat1, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5125), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4863), 3, + ACTIONS(5101), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61395] = 4, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4102), 13, - anon_sym_STAR, + ACTIONS(4532), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 28, - sym__automatic_semicolon, + ACTIONS(4530), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61448] = 31, + anon_sym_implements, + [60824] = 27, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5079), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5081), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5099), 1, anon_sym_LT, - ACTIONS(5159), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5101), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4455), 4, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_implements, - [61555] = 31, + [60923] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5079), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5081), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5099), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5107), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5109), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5101), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4501), 4, + ACTIONS(4567), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [61662] = 31, + [61030] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5079), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5081), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5099), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5107), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5109), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5101), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4519), 4, + ACTIONS(4569), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [61769] = 31, + [61137] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5079), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5081), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5099), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5107), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5109), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5101), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4577), 4, + ACTIONS(4593), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [61876] = 31, + [61244] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5079), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5081), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5099), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5107), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5109), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5101), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4581), 4, + ACTIONS(4601), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, - [61983] = 18, + [61351] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5135), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(5147), 1, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5099), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5137), 2, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4414), 4, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_BQUOTE, - anon_sym_satisfies, anon_sym_implements, - [62064] = 13, + [61458] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5149), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(5163), 1, + ACTIONS(5099), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(5075), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(4613), 4, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_BQUOTE, - anon_sym_satisfies, anon_sym_implements, - [62135] = 25, + [61565] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(5135), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5099), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5101), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4615), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61672] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4220), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4122), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62230] = 26, + anon_sym_extends, + [61723] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(5131), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, anon_sym_AMP_AMP, - ACTIONS(5135), 1, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5099), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5101), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4693), 4, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, anon_sym_implements, - [62327] = 16, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [61830] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5147), 1, - anon_sym_PERCENT, - ACTIONS(5149), 1, - anon_sym_STAR_STAR, - ACTIONS(5163), 1, + ACTIONS(5114), 1, + anon_sym_STAR, + ACTIONS(5116), 1, + anon_sym_async, + ACTIONS(5120), 1, + anon_sym_readonly, + STATE(2749), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5118), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5122), 2, + anon_sym_get, + anon_sym_set, + STATE(3018), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [61903] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4224), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5145), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 18, + ACTIONS(4226), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62404] = 22, - ACTIONS(3938), 1, + anon_sym_extends, + [61954] = 4, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4228), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4230), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5147), 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(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62007] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4951), 1, + anon_sym_abstract, + ACTIONS(5114), 1, + anon_sym_STAR, + ACTIONS(5116), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5118), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5122), 2, + anon_sym_get, + anon_sym_set, + STATE(3018), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62076] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4126), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 11, + ACTIONS(4124), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62493] = 23, - ACTIONS(3938), 1, + anon_sym_extends, + [62127] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4232), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4234), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5147), 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(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62178] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5127), 2, + ACTIONS(4236), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 11, + ACTIONS(4238), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62584] = 24, - ACTIONS(3938), 1, + anon_sym_extends, + [62229] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4240), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4242), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62286] = 6, + ACTIONS(4190), 1, + anon_sym_extends, + ACTIONS(5054), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, + ACTIONS(4188), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(5127), 2, + ACTIONS(4244), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 10, + ACTIONS(4246), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62677] = 15, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [62343] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(5124), 1, + anon_sym_STAR, + ACTIONS(5126), 1, + anon_sym_async, + ACTIONS(5130), 1, + anon_sym_readonly, + STATE(2755), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5128), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5132), 2, + anon_sym_get, + anon_sym_set, + STATE(3120), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62416] = 7, + ACTIONS(3431), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(3435), 1, anon_sym_QMARK_DOT, - ACTIONS(5147), 1, - anon_sym_PERCENT, - ACTIONS(5149), 1, - anon_sym_STAR_STAR, - ACTIONS(5163), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 18, + ACTIONS(3423), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62752] = 16, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5149), 1, - anon_sym_STAR_STAR, - ACTIONS(5163), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [62475] = 4, + ACTIONS(5134), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4248), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(4250), 28, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [62829] = 20, - ACTIONS(3938), 1, + anon_sym_satisfies, + [62528] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(5142), 1, + anon_sym_readonly, + STATE(2751), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5140), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5144), 2, + anon_sym_get, + anon_sym_set, + STATE(3024), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62601] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(5148), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5144), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5146), 2, + sym_number, + sym_private_property_identifier, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62670] = 7, + ACTIONS(3481), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(3483), 1, anon_sym_QMARK_DOT, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5147), 1, - anon_sym_PERCENT, - ACTIONS(5149), 1, - anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(3429), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3425), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3419), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5153), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4585), 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62729] = 4, + ACTIONS(5054), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4254), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_AMP, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 13, + ACTIONS(4256), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62914] = 27, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_extends, + [62782] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4126), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4124), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62837] = 6, + ACTIONS(4655), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4234), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4658), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4651), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(4653), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [63013] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [62894] = 9, + ACTIONS(2338), 1, + anon_sym_extends, + ACTIONS(4100), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4953), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1677), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4752), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1675), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62957] = 6, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(1681), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(1671), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1675), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4642), 4, - anon_sym_LBRACE, + ACTIONS(1679), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63120] = 31, - ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63014] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4124), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4126), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4648), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63227] = 31, - ACTIONS(3938), 1, + ACTIONS(3423), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63069] = 6, + ACTIONS(4234), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4655), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4658), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4651), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4716), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63334] = 31, - ACTIONS(3938), 1, + ACTIONS(4653), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63126] = 9, + ACTIONS(4116), 1, + anon_sym_LBRACK, + ACTIONS(4122), 1, + anon_sym_extends, + ACTIONS(4939), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4112), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4736), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4110), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4728), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63441] = 31, - ACTIONS(3938), 1, + ACTIONS(4114), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63189] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4132), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4732), 4, - anon_sym_LBRACE, + ACTIONS(4134), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63548] = 31, - ACTIONS(3938), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [63240] = 4, + ACTIONS(4134), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4128), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4503), 4, - anon_sym_LBRACE, + ACTIONS(4130), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63655] = 31, - ACTIONS(3938), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63293] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4134), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4128), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4505), 4, - anon_sym_LBRACE, + ACTIONS(4130), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63762] = 31, - ACTIONS(3938), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, - anon_sym_LT, - ACTIONS(5159), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63346] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4262), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4734), 4, - anon_sym_LBRACE, + ACTIONS(4264), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_implements, - [63869] = 32, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4537), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(4855), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 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(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [63397] = 6, + ACTIONS(4168), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4997), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5166), 2, + ACTIONS(3423), 26, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4863), 3, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63978] = 12, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5168), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63454] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(4266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4676), 20, + ACTIONS(4268), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192202,113 +191954,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [64047] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_extends, + [63505] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5131), 1, - anon_sym_AMP_AMP, - ACTIONS(5133), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, - anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, - anon_sym_CARET, - ACTIONS(5143), 1, - anon_sym_PIPE, - ACTIONS(5147), 1, - anon_sym_PERCENT, - ACTIONS(5149), 1, - anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(2763), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5159), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63588] = 6, + ACTIONS(4042), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(4547), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4550), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5129), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5137), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5145), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(3423), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4708), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [64154] = 3, + anon_sym_satisfies, + [63645] = 7, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 13, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4396), 29, + ACTIONS(3423), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192328,116 +192126,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [64205] = 33, + [63704] = 12, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5152), 1, anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5171), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64315] = 5, - ACTIONS(5173), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1813), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1817), 13, + ACTIONS(4705), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1819), 23, + ACTIONS(4707), 20, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192451,42 +192180,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64369] = 5, - ACTIONS(5175), 1, - sym__automatic_semicolon, + anon_sym_implements, + [63773] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5155), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1827), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 23, + ACTIONS(4714), 18, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192500,170 +192241,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [64423] = 31, + anon_sym_implements, + [63848] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5131), 1, + ACTIONS(5079), 1, anon_sym_AMP_AMP, - ACTIONS(5133), 1, + ACTIONS(5081), 1, anon_sym_PIPE_PIPE, - ACTIONS(5135), 1, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(5139), 1, - anon_sym_AMP, - ACTIONS(5141), 1, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, - ACTIONS(5143), 1, + ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5147), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(5149), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(5151), 1, + ACTIONS(5099), 1, anon_sym_LT, - ACTIONS(5159), 1, + ACTIONS(5107), 1, anon_sym_QMARK_QMARK, - ACTIONS(5161), 1, + ACTIONS(5109), 1, sym__ternary_qmark, - STATE(1614), 1, - sym_arguments, - STATE(2561), 1, + STATE(1493), 1, sym_type_arguments, - STATE(5072), 1, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5127), 2, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5129), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5137), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5145), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5155), 2, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5157), 2, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5153), 3, + ACTIONS(5101), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5177), 3, + ACTIONS(4719), 4, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_BQUOTE, anon_sym_implements, - [64529] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5181), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5183), 2, - anon_sym_get, - anon_sym_set, - STATE(3893), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [63955] = 11, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5158), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [64593] = 4, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1853), 13, + ACTIONS(4729), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 23, + ACTIONS(4731), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -192681,34 +192374,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64645] = 4, + anon_sym_implements, + [64022] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1863), 13, + ACTIONS(4084), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 23, + ACTIONS(4086), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -192729,24 +192426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64697] = 5, - ACTIONS(5185), 1, - sym__automatic_semicolon, + [64079] = 4, + ACTIONS(4112), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1713), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1717), 13, + ACTIONS(4110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -192754,10 +192446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1719), 23, + ACTIONS(4114), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -192778,24 +192475,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64751] = 5, + [64132] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5161), 1, + anon_sym_STAR, + ACTIONS(5163), 1, + anon_sym_async, + ACTIONS(5167), 1, + anon_sym_readonly, + STATE(2753), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5187), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5189), 3, + ACTIONS(5165), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5169), 2, + anon_sym_get, + anon_sym_set, + STATE(3113), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(3435), 13, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [64205] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4695), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -192803,10 +192552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4697), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -192827,23 +192581,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64805] = 4, + [64255] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1727), 5, - sym__automatic_semicolon, + ACTIONS(5171), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5173), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1731), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -192851,7 +192606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 23, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -192875,24 +192630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64857] = 5, + [64309] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5187), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5189), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4721), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -192900,10 +192648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4723), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -192924,36 +192677,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64911] = 5, + [64359] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5175), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5177), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5179), 2, + anon_sym_get, + anon_sym_set, + STATE(3889), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [64423] = 7, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4116), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5187), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5189), 3, + ACTIONS(4122), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + anon_sym_extends, + ACTIONS(4119), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4110), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4114), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -192973,17 +192782,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64965] = 3, + [64481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4670), 13, + ACTIONS(4575), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -192991,7 +192800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4672), 28, + ACTIONS(4577), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193020,90 +192829,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65015] = 15, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - ACTIONS(5023), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65089] = 11, - ACTIONS(1583), 1, + [64531] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5191), 1, + ACTIONS(5181), 1, anon_sym_STAR, - ACTIONS(5193), 1, + ACTIONS(5183), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5195), 2, + ACTIONS(5185), 2, sym_number, sym_private_property_identifier, - ACTIONS(5197), 2, + ACTIONS(5187), 2, anon_sym_get, anon_sym_set, - STATE(3111), 3, + STATE(3119), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -193134,27 +192884,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65155] = 16, + [64597] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5189), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4719), 1, + aux_sym_array_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64707] = 15, ACTIONS(237), 1, anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5043), 1, anon_sym_STAR, - ACTIONS(5023), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -193164,20 +192989,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -193194,247 +193020,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65231] = 31, + [64781] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5191), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5199), 3, + [64891] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4526), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4528), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - [65337] = 33, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(4819), 1, - aux_sym_array_repeat1, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65447] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64941] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5203), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5205), 2, - anon_sym_get, - anon_sym_set, - STATE(3853), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(2316), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [65511] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(5043), 1, anon_sym_STAR, - ACTIONS(5035), 1, - anon_sym_async, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5037), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5041), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3031), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 20, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -193455,21 +193204,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65577] = 4, - ACTIONS(5207), 1, - sym_regex_flags, + [65017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4937), 17, + ACTIONS(4565), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -193477,14 +193222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4939), 23, + ACTIONS(4567), 28, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -193500,20 +193246,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65629] = 3, + anon_sym_satisfies, + [65067] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4410), 13, + ACTIONS(4599), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -193521,7 +193269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4412), 28, + ACTIONS(4601), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193550,117 +193298,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65679] = 7, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4146), 2, + [65117] = 33, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4454), 1, anon_sym_satisfies, - [65737] = 5, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5193), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + STATE(4918), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4983), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5067), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [65791] = 3, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65227] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4549), 13, + ACTIONS(1693), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1697), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -193668,15 +193399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4551), 28, - sym__automatic_semicolon, + ACTIONS(1699), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -193697,35 +193423,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65841] = 10, + [65279] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5043), 1, anon_sym_STAR, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5209), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5211), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -193751,17 +193482,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [65905] = 3, + [65353] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4553), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4480), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65459] = 5, + ACTIONS(1701), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1693), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1697), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -193769,15 +193580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4555), 28, - sym__automatic_semicolon, + ACTIONS(1699), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -193798,17 +193606,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [65955] = 3, + [65513] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4557), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4524), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65619] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65683] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4472), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -193816,7 +193753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4559), 28, + ACTIONS(4474), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193845,110 +193782,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66005] = 32, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4501), 1, - anon_sym_COMMA, - ACTIONS(4535), 1, + [65733] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4855), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4861), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5231), 1, + anon_sym_SEMI, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4999), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4863), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66113] = 3, + [65843] = 7, + ACTIONS(4166), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4591), 13, + ACTIONS(4168), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4541), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4593), 28, - sym__automatic_semicolon, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -193968,22 +193910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66163] = 5, - ACTIONS(1769), 1, - sym__automatic_semicolon, + [65901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1761), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1765), 13, + ACTIONS(4725), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -193991,12 +193928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 25, + ACTIONS(4727), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194017,17 +193957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66217] = 3, + [65951] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4561), 13, + ACTIONS(4681), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -194035,7 +193975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4563), 28, + ACTIONS(4683), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194064,107 +194004,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66267] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, + [66001] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5057), 1, - anon_sym_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, ACTIONS(5213), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5215), 2, - anon_sym_get, - anon_sym_set, - STATE(3827), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4528), 3, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66331] = 10, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66107] = 21, + ACTIONS(231), 1, + anon_sym_STAR, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(1932), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4748), 1, - anon_sym_STAR, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5237), 1, + anon_sym_RBRACE, + ACTIONS(5239), 1, + anon_sym_async, + ACTIONS(5243), 1, + anon_sym_static, + ACTIONS(5245), 1, + anon_sym_readonly, + ACTIONS(5251), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(5156), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5217), 2, + ACTIONS(5241), 2, sym_number, sym_private_property_identifier, - ACTIONS(5219), 2, + ACTIONS(5247), 2, anon_sym_get, anon_sym_set, - STATE(3834), 3, + ACTIONS(5249), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3732), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 21, + STATE(5155), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5233), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -194172,45 +194144,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66395] = 11, - ACTIONS(1583), 1, + [66193] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4742), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5057), 1, + ACTIONS(5253), 1, anon_sym_STAR, - ACTIONS(5059), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5061), 2, + ACTIONS(5255), 2, sym_number, sym_private_property_identifier, - ACTIONS(5065), 2, + ACTIONS(5257), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -194227,186 +194198,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66461] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4662), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4664), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [66511] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, - anon_sym_GT_GT, - ACTIONS(4832), 1, - anon_sym_PERCENT, - ACTIONS(4834), 1, - anon_sym_STAR_STAR, - ACTIONS(4836), 1, - anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4830), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4867), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4744), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4863), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66617] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4453), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4455), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [66667] = 3, + [66257] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4710), 13, + ACTIONS(4462), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -194414,7 +194216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4712), 28, + ACTIONS(4464), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194443,17 +194245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66717] = 3, + [66307] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4714), 13, + ACTIONS(4458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -194461,7 +194263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4716), 28, + ACTIONS(4460), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194490,64 +194292,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66767] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4718), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4720), 28, + [66357] = 5, + ACTIONS(1755), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [66817] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4726), 13, + ACTIONS(1747), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -194555,15 +194315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4728), 28, - sym__automatic_semicolon, + ACTIONS(1753), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194584,49 +194341,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66867] = 15, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(1505), 1, + [66411] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5161), 1, anon_sym_STAR, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(5163), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5165), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, + ACTIONS(5169), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3113), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -194643,36 +194396,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [66941] = 7, - ACTIONS(5221), 1, - anon_sym_LPAREN, - ACTIONS(5224), 1, - anon_sym_COLON, - ACTIONS(5226), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_QMARK, + [66477] = 5, + ACTIONS(1765), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4525), 12, + ACTIONS(1757), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4527), 25, - sym__automatic_semicolon, + ACTIONS(1763), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -194694,27 +194445,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [66999] = 16, + [66531] = 15, ACTIONS(237), 1, anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5043), 1, anon_sym_STAR, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4947), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -194724,20 +194473,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -194754,36 +194504,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67075] = 3, + [66605] = 12, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5259), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4730), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4732), 28, - sym__automatic_semicolon, + ACTIONS(4707), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -194797,21 +194558,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67125] = 3, + [66673] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 13, + ACTIONS(1821), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -194819,15 +194584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 28, - sym__automatic_semicolon, + ACTIONS(1827), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194848,37 +194608,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67175] = 6, - ACTIONS(4146), 1, - anon_sym_extends, + [66725] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4606), 3, + ACTIONS(1831), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3435), 11, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1835), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(1837), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -194898,113 +194656,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67231] = 33, + [66777] = 15, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5231), 1, - anon_sym_RBRACK, - STATE(1533), 1, + ACTIONS(5262), 1, + anon_sym_LT, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67341] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4507), 13, + ACTIONS(4712), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4509), 28, - sym__automatic_semicolon, + ACTIONS(4714), 17, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -195018,38 +194714,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [67391] = 3, + [66851] = 8, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_QMARK, + ACTIONS(4541), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4521), 13, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4168), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4523), 28, - sym__automatic_semicolon, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195069,22 +194767,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67441] = 5, - ACTIONS(1697), 1, - sym__automatic_semicolon, + [66911] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1689), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1693), 13, + ACTIONS(4989), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5066), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195092,12 +194792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 25, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195118,17 +194816,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67495] = 3, + [66965] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(5265), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5267), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195136,15 +194841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 28, - sym__automatic_semicolon, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195165,91 +194865,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67545] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, + [67019] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5233), 1, - anon_sym_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5235), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5237), 2, - anon_sym_get, - anon_sym_set, - STATE(3916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 3, + anon_sym_RBRACE, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67609] = 6, - ACTIONS(4186), 1, - anon_sym_extends, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4529), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4423), 11, + ACTIONS(4486), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 24, + ACTIONS(4488), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -195269,22 +194987,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67665] = 5, - ACTIONS(1721), 1, - sym__automatic_semicolon, + [67175] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1713), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1717), 13, + ACTIONS(5269), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5271), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195292,12 +195012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1719), 25, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195318,22 +195036,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67719] = 5, - ACTIONS(1803), 1, + [67229] = 5, + ACTIONS(5273), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1795), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1799), 13, + ACTIONS(1851), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195341,12 +195061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 25, + ACTIONS(1857), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195367,17 +195085,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67773] = 3, + [67283] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4624), 13, + ACTIONS(5269), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5271), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195385,15 +195110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4626), 28, - sym__automatic_semicolon, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195414,17 +195134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67823] = 3, + [67337] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4441), 13, + ACTIONS(4617), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195432,7 +195152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4443), 28, + ACTIONS(4619), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195461,17 +195181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67873] = 3, + [67387] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4654), 13, + ACTIONS(4621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195479,7 +195199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4656), 28, + ACTIONS(4623), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195508,25 +195228,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67923] = 15, + [67437] = 16, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5043), 1, anon_sym_STAR, - ACTIONS(5074), 1, + ACTIONS(5047), 1, anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -195536,21 +195258,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 21, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -195567,38 +195288,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67997] = 5, - ACTIONS(1735), 1, - sym__automatic_semicolon, + [67513] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5275), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1727), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1731), 13, + ACTIONS(4729), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 25, + ACTIONS(4731), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -195616,96 +195343,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68051] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, + [67579] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5278), 1, anon_sym_STAR, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5280), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, + ACTIONS(5282), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3858), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [68127] = 9, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -195715,8 +195385,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -195729,47 +195397,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68189] = 9, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, + [67643] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_STAR, + ACTIONS(5286), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5288), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(5290), 2, + anon_sym_get, + anon_sym_set, + STATE(3026), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -195782,17 +195452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68251] = 3, + [67709] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 13, + ACTIONS(4625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195800,7 +195470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4683), 28, + ACTIONS(4627), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -195829,17 +195499,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68301] = 3, + [67759] = 5, + ACTIONS(1829), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 13, + ACTIONS(1821), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195847,15 +195522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 28, - sym__automatic_semicolon, + ACTIONS(1827), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195876,17 +195548,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68351] = 3, + [67813] = 5, + ACTIONS(1839), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, + ACTIONS(1831), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1835), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -195894,15 +195571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 28, - sym__automatic_semicolon, + ACTIONS(1837), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195923,214 +195597,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68401] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4441), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4443), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [67867] = 18, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5215), 1, anon_sym_PERCENT, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68451] = 4, - ACTIONS(5207), 1, - sym_regex_flags, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4937), 16, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4939), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [68503] = 7, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4066), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2326), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4069), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1663), 10, + ACTIONS(5195), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1667), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68561] = 7, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4108), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4114), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4111), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4102), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 24, - sym__automatic_semicolon, + ACTIONS(4530), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68619] = 3, + [67947] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4565), 13, + ACTIONS(4621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -196138,7 +195677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4567), 28, + ACTIONS(4623), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196167,100 +195706,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68669] = 9, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, + [67997] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, + ACTIONS(1595), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5292), 1, + anon_sym_STAR, + ACTIONS(5294), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [68731] = 9, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5296), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, + ACTIONS(5298), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -196273,37 +195761,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68793] = 7, - ACTIONS(5239), 1, - anon_sym_LPAREN, - ACTIONS(5242), 1, - anon_sym_COLON, - ACTIONS(5244), 1, - anon_sym_LT, - ACTIONS(5247), 1, - anon_sym_QMARK, + [68063] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 12, + ACTIONS(4490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 25, + ACTIONS(4492), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -196324,24 +195808,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68851] = 8, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4066), 1, - anon_sym_LBRACK, - ACTIONS(4946), 1, - anon_sym_COLON, + [68113] = 7, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4069), 2, - anon_sym_AMP, + ACTIONS(3429), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(2326), 3, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3425), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(1663), 11, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196353,12 +195836,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1667), 22, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -196376,39 +195859,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68911] = 8, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4108), 1, - anon_sym_LBRACK, - ACTIONS(4933), 1, - anon_sym_COLON, + [68171] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4111), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4114), 3, + ACTIONS(5300), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5302), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4102), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 22, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -196428,312 +195908,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68971] = 9, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3868), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69033] = 9, - ACTIONS(3752), 1, + [68225] = 16, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(3868), 1, + ACTIONS(722), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1505), 1, anon_sym_DQUOTE, + ACTIONS(1507), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(2316), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69095] = 9, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1938), 6, - anon_sym_STAR, + ACTIONS(4744), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69157] = 9, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1942), 6, + ACTIONS(5043), 1, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69219] = 9, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3755), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4947), 1, aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69281] = 9, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3755), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, + STATE(4964), 1, aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, - sym__automatic_semicolon, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -196746,17 +195968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69343] = 3, + [68301] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4569), 13, + ACTIONS(4629), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -196764,7 +195986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4571), 28, + ACTIONS(4631), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196793,265 +196015,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69393] = 33, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5249), 1, - anon_sym_RBRACE, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + [68351] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4126), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4124), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3419), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69503] = 33, - ACTIONS(1928), 1, + ACTIONS(3423), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(5251), 1, - anon_sym_RBRACK, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - STATE(5161), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69613] = 33, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(5253), 1, - anon_sym_RBRACK, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(4619), 1, - aux_sym_array_repeat1, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69723] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68405] = 7, + ACTIONS(4232), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4628), 13, + ACTIONS(4234), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4658), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4655), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4651), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4630), 28, - sym__automatic_semicolon, + ACTIONS(4653), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197071,94 +196115,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69773] = 33, + [68463] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5255), 1, - anon_sym_RBRACE, - STATE(1533), 1, + ACTIONS(5304), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4766), 1, + aux_sym_array_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69883] = 3, + [68573] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4632), 13, + ACTIONS(4633), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -197166,7 +196210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4634), 28, + ACTIONS(4635), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197195,190 +196239,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69933] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5285), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5287), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4455), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70039] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [68623] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5285), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5287), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4501), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70145] = 9, - ACTIONS(3437), 1, + ACTIONS(5269), 2, anon_sym_EQ, - ACTIONS(3577), 1, - anon_sym_COLON, - ACTIONS(4146), 1, - anon_sym_extends, - ACTIONS(4606), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5293), 2, + anon_sym_QMARK, + ACTIONS(5271), 3, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3435), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -197398,169 +196288,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70207] = 33, + [68677] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5297), 1, - anon_sym_RBRACK, - STATE(1533), 1, + ACTIONS(5306), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, + STATE(5219), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70317] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [68787] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5308), 1, + anon_sym_COLON, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4519), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70423] = 3, + [68897] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 13, + ACTIONS(4621), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -197568,7 +196460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4547), 28, + ACTIONS(4623), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197597,17 +196489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70473] = 3, + [68947] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4587), 13, + ACTIONS(4553), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -197615,7 +196507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4589), 28, + ACTIONS(4555), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197644,17 +196536,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70523] = 3, + [68997] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4598), 13, + ACTIONS(1737), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1741), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -197662,15 +196560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4600), 28, - sym__automatic_semicolon, + ACTIONS(1743), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197691,935 +196584,598 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70573] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [69049] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(1841), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1845), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4577), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70679] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(1847), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5263), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5285), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5287), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4581), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70785] = 18, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69101] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4476), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 15, + ACTIONS(4478), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70865] = 33, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [69151] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(5299), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(4826), 1, - aux_sym_array_repeat1, - STATE(5072), 1, - sym_optional_chain, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70975] = 13, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5310), 2, + sym_number, + sym_private_property_identifier, + STATE(3041), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5301), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69217] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 18, + ACTIONS(4496), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71045] = 33, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5304), 1, - anon_sym_RBRACK, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + [69267] = 5, + ACTIONS(5312), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(1713), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1717), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71155] = 25, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(5265), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 9, - sym__automatic_semicolon, + ACTIONS(1719), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [71249] = 26, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(5261), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5285), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5287), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71345] = 16, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5301), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [69321] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4534), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(4536), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71421] = 22, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [69371] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5265), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5277), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(4442), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5314), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4737), 1, + aux_sym_array_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5283), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [71509] = 23, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [69481] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5171), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5173), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 10, - sym__automatic_semicolon, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71599] = 24, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [69535] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5265), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5277), 1, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(4442), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5316), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4766), 1, + aux_sym_array_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [71691] = 15, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5301), 1, - anon_sym_LT, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + [69645] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(1938), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4585), 10, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4583), 17, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_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, - anon_sym_satisfies, - [71765] = 16, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69707] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5279), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5301), 1, + ACTIONS(5318), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4532), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, - sym__automatic_semicolon, + ACTIONS(4530), 18, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -198633,17 +197189,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [71841] = 3, + anon_sym_satisfies, + [69777] = 5, + ACTIONS(5321), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4636), 13, + ACTIONS(1727), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -198651,15 +197215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4638), 28, - sym__automatic_semicolon, + ACTIONS(1733), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198680,24 +197239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71891] = 5, + [69831] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4983), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4985), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4498), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -198705,10 +197257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4500), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198729,379 +197286,443 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71945] = 20, - ACTIONS(4418), 1, + [69881] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(5265), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5277), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5347), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4585), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 12, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(4468), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [72029] = 27, - ACTIONS(4418), 1, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69987] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4585), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(5261), 1, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5329), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5339), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5347), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 7, + ACTIONS(4470), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_SEMI, - anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - anon_sym_satisfies, - [72127] = 33, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70093] = 25, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5306), 1, - anon_sym_RBRACE, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72237] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4530), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70187] = 26, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4642), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72343] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70283] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5359), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4648), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72449] = 3, + [70393] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5318), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4685), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [70469] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4583), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -199109,7 +197730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4687), 28, + ACTIONS(4585), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199138,392 +197759,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72499] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [70519] = 22, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4716), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72605] = 31, - ACTIONS(4418), 1, + ACTIONS(4530), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70607] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(4812), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(4816), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(4824), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(4828), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(4832), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4804), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(4818), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4728), 3, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4780), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(4834), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72711] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [70713] = 23, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4732), 3, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70803] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1747), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, + anon_sym_PIPE_RBRACE, + ACTIONS(1751), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1753), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [72817] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70855] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5361), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4503), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72923] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [70965] = 24, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4505), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73029] = 3, + ACTIONS(4530), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71057] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4689), 13, + ACTIONS(1757), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -199531,15 +198184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4691), 28, - sym__automatic_semicolon, + ACTIONS(1763), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199560,191 +198208,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73079] = 33, + [71109] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5308), 1, - anon_sym_RBRACK, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5363), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [71215] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5161), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5365), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5367), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71279] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1845), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73189] = 31, - ACTIONS(4418), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71329] = 31, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5327), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5329), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5339), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5347), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5355), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5357), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, + ACTIONS(4480), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73295] = 12, - ACTIONS(166), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(3886), 1, + [71435] = 5, + ACTIONS(5369), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1801), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1805), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1807), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71489] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5031), 2, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5312), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5520), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5891), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5957), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(5310), 23, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -199768,17 +198561,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [73363] = 3, + [71551] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(1811), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1817), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71603] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1717), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -199786,7 +198627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1709), 28, + ACTIONS(1719), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199815,17 +198656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73413] = 3, + [71653] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1745), 13, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -199833,7 +198674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 28, + ACTIONS(1733), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199862,111 +198703,541 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73463] = 3, + [71703] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5371), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 13, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71813] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5175), 1, + anon_sym_STAR, + ACTIONS(5373), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5375), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5377), 2, + anon_sym_get, + anon_sym_set, + STATE(3123), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71879] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, anon_sym_GT_GT, - anon_sym_AMP, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5379), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71989] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5318), 1, anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 28, - sym__automatic_semicolon, + ACTIONS(4530), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [72063] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5318), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + [72139] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5381), 1, + anon_sym_STAR, + ACTIONS(5383), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5385), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5387), 2, + anon_sym_get, + anon_sym_set, + STATE(3089), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72205] = 20, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72289] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4454), 1, anon_sym_satisfies, - [73513] = 3, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5389), 1, + anon_sym_RBRACE, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1693), 13, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73563] = 3, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72399] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4511), 13, + ACTIONS(1751), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -199974,7 +199245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4513), 28, + ACTIONS(1753), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200003,456 +199274,436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73613] = 33, - ACTIONS(1928), 1, + [72449] = 15, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(5314), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - STATE(5209), 1, - aux_sym_array_repeat1, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72523] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73723] = 33, + ACTIONS(5286), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5290), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5391), 2, + sym_number, + sym_private_property_identifier, + STATE(3039), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72589] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5316), 1, - anon_sym_COLON, - STATE(1533), 1, + ACTIONS(5393), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4658), 1, + aux_sym_array_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73833] = 33, + [72699] = 27, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5318), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73943] = 33, + ACTIONS(4530), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72797] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5320), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4567), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74053] = 33, + [72903] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5322), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74163] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4640), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4642), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4569), 3, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74213] = 15, + [73009] = 15, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(724), 1, - anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5043), 1, anon_sym_STAR, - STATE(5129), 1, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4964), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -200463,11 +199714,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -200494,121 +199745,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74287] = 33, + [73083] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5324), 1, - anon_sym_SEMI, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4593), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74397] = 10, + [73189] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5326), 1, + ACTIONS(5043), 1, anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5328), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5330), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3888), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 21, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -200625,24 +199880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74461] = 5, + [73265] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5332), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5334), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(1761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -200650,10 +199898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(1763), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200674,150 +199927,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74515] = 33, - ACTIONS(1928), 1, - anon_sym_COMMA, + [73315] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(5336), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(4652), 1, - aux_sym_array_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74625] = 5, + ACTIONS(5395), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [73421] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5338), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5340), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4524), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73527] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, anon_sym_GT_GT, - anon_sym_AMP, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4528), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73633] = 18, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4530), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73713] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5397), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + STATE(4989), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [73823] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4601), 3, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_BQUOTE, - anon_sym_satisfies, - [74679] = 5, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73929] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5338), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5340), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -200825,10 +200384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4130), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200849,547 +200413,567 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74733] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, + [73979] = 13, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [74809] = 5, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5338), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5340), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4530), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74863] = 33, - ACTIONS(1928), 1, - anon_sym_COMMA, + [74049] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(5342), 1, - anon_sym_RPAREN, - STATE(1533), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5402), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(4684), 1, - aux_sym_array_repeat1, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74973] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, + [74159] = 25, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(5344), 1, - anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5348), 2, - anon_sym_get, - anon_sym_set, - STATE(3926), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75037] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74253] = 26, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(5344), 1, - anon_sym_STAR, - ACTIONS(5350), 1, - anon_sym_async, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5352), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5354), 2, - anon_sym_get, - anon_sym_set, - STATE(3026), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75103] = 33, - ACTIONS(1928), 1, - anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74349] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - ACTIONS(5356), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(4711), 1, - aux_sym_array_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4414), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75213] = 33, - ACTIONS(1928), 1, - anon_sym_COMMA, + [74455] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4613), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74561] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4603), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4414), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(5358), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(4729), 1, - aux_sym_array_repeat1, - STATE(5072), 1, - sym_optional_chain, + [74611] = 4, + ACTIONS(5404), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4865), 16, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_as, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - [75323] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5082), 1, - anon_sym_STAR, - ACTIONS(5084), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5090), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5360), 2, - sym_number, - sym_private_property_identifier, - STATE(3032), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + anon_sym_satisfies, + ACTIONS(4867), 24, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75389] = 12, - ACTIONS(4418), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [74663] = 16, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(5362), 1, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(5323), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4676), 19, + ACTIONS(4530), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201399,8 +200983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -201409,214 +200991,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [75457] = 31, + [74739] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5406), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5012), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [75563] = 15, - ACTIONS(4418), 1, + [74849] = 22, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5365), 1, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, anon_sym_LT, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(5323), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 17, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, - [75637] = 5, - ACTIONS(1711), 1, - sym__automatic_semicolon, + anon_sym_satisfies, + [74937] = 23, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1707), 13, - anon_sym_STAR, + ACTIONS(4532), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1709), 25, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75691] = 11, - ACTIONS(1583), 1, + [75027] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5233), 1, + ACTIONS(4755), 1, anon_sym_STAR, - ACTIONS(5368), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5370), 2, + ACTIONS(5408), 2, sym_number, sym_private_property_identifier, - ACTIONS(5372), 2, + ACTIONS(5410), 2, anon_sym_get, anon_sym_set, - STATE(3027), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -201626,11 +201233,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -201647,86 +201255,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75757] = 11, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [75091] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(5374), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, anon_sym_LT, - STATE(1976), 1, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 21, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4615), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75197] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, anon_sym_as, - anon_sym_SEMI, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, anon_sym_AMP_AMP, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, anon_sym_PERCENT, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4693), 3, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_BQUOTE, - anon_sym_satisfies, - [75823] = 11, - ACTIONS(1583), 1, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75303] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, + ACTIONS(5412), 1, anon_sym_STAR, - ACTIONS(5084), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5377), 2, + ACTIONS(5414), 2, sym_number, sym_private_property_identifier, - STATE(3009), 3, + ACTIONS(5416), 2, + anon_sym_get, + anon_sym_set, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -201736,11 +201437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -201757,44 +201459,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75889] = 10, + [75367] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5043), 1, anon_sym_STAR, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5379), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(5381), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3857), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -201811,49 +201519,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75953] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_async, + [75443] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5100), 2, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -201866,22 +201572,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76019] = 5, - ACTIONS(1749), 1, + [75505] = 5, + ACTIONS(1809), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 2, + ACTIONS(1801), 2, anon_sym_else, anon_sym_while, - ACTIONS(1745), 13, + ACTIONS(1805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -201889,7 +201595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 25, + ACTIONS(1807), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -201915,17 +201621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76073] = 3, + [75559] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4573), 13, + ACTIONS(4587), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -201933,7 +201639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4575), 28, + ACTIONS(4589), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201962,17 +201668,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76123] = 3, + [75609] = 5, + ACTIONS(1819), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4579), 13, + ACTIONS(1811), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -201980,15 +201691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4581), 28, - sym__automatic_semicolon, + ACTIONS(1817), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202009,39 +201717,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76173] = 8, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3577), 1, - anon_sym_COLON, - ACTIONS(4606), 1, - anon_sym_LBRACK, + [75663] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4146), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(1805), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(1807), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -202061,71 +201764,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76233] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5113), 1, - anon_sym_STAR, + [75713] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5383), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5385), 2, - anon_sym_get, - anon_sym_set, - STATE(3868), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(4571), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4573), 28, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [76297] = 3, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75763] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4515), 13, + ACTIONS(4605), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -202133,7 +201829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4517), 28, + ACTIONS(4607), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202162,106 +201858,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76347] = 33, + [75813] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(5081), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(5083), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(5095), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(5097), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(5099), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(5107), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(5109), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5387), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(2544), 1, + sym_type_arguments, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(5077), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(5085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(5093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(5103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(5105), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5418), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [75919] = 15, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [75993] = 16, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76457] = 10, + anon_sym_BQUOTE, + [76069] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5389), 1, + ACTIONS(5420), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, + ACTIONS(5422), 2, sym_number, sym_private_property_identifier, - ACTIONS(5393), 2, + ACTIONS(5424), 2, anon_sym_get, anon_sym_set, - STATE(3813), 3, + STATE(3771), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -202293,192 +202106,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76521] = 33, - ACTIONS(3938), 1, + [76133] = 4, + ACTIONS(5404), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4865), 17, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4867), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5395), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [76185] = 7, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76631] = 33, - ACTIONS(3938), 1, + ACTIONS(3423), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5397), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + anon_sym_implements, + [76243] = 5, + ACTIONS(1849), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(1841), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1845), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(1847), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76741] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76297] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5399), 1, + ACTIONS(5114), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 2, + ACTIONS(5426), 2, sym_number, sym_private_property_identifier, - ACTIONS(5403), 2, + ACTIONS(5428), 2, anon_sym_get, anon_sym_set, - STATE(3869), 3, + STATE(3915), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 21, anon_sym_export, anon_sym_type, @@ -202501,121 +202308,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76805] = 33, + [76361] = 15, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5430), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [76435] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4561), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4563), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76485] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4887), 1, anon_sym_COMMA, - ACTIONS(5405), 1, + ACTIONS(5433), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, + STATE(3623), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76915] = 10, - ACTIONS(1505), 1, + [76595] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76701] = 7, + ACTIONS(3576), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76759] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5407), 1, + ACTIONS(5114), 1, anon_sym_STAR, + ACTIONS(5116), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5409), 2, + ACTIONS(5118), 2, sym_number, sym_private_property_identifier, - ACTIONS(5411), 2, + ACTIONS(5122), 2, anon_sym_get, anon_sym_set, - STATE(3908), 3, + STATE(3018), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -202632,36 +202672,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76979] = 3, + [76825] = 11, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5435), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4644), 13, + ACTIONS(4729), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4646), 28, + ACTIONS(4731), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -202679,64 +202727,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77029] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4650), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4652), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [76891] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5438), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 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(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77079] = 3, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77001] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4704), 13, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -202744,7 +202822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4706), 28, + ACTIONS(1817), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202773,36 +202851,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77129] = 3, + [77051] = 12, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5440), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 28, + ACTIONS(4707), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -202816,87 +202905,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77179] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5082), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5413), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5415), 2, - anon_sym_get, - anon_sym_set, - STATE(3864), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, + [77119] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [77243] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4738), 2, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3890), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -202904,7 +202936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, + ACTIONS(1954), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -202928,31 +202960,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77307] = 11, - ACTIONS(1583), 1, + [77181] = 10, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5113), 1, + ACTIONS(4962), 1, anon_sym_STAR, - ACTIONS(5115), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5117), 2, + ACTIONS(5443), 2, sym_number, sym_private_property_identifier, - ACTIONS(5121), 2, + ACTIONS(5445), 2, anon_sym_get, anon_sym_set, - STATE(3075), 3, + STATE(3803), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -202962,11 +202992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -202983,1788 +203014,2150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77373] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, - anon_sym_AMP_AMP, - ACTIONS(5423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, - anon_sym_PERCENT, - ACTIONS(5439), 1, - anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - ACTIONS(5449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [77245] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4591), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4455), 3, + ACTIONS(4593), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77479] = 31, - ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - ACTIONS(5449), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77295] = 7, + ACTIONS(5447), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_COLON, + ACTIONS(5452), 1, + anon_sym_LT, + ACTIONS(5455), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(3419), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(3423), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4501), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77585] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77353] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5457), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4519), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77691] = 31, - ACTIONS(3938), 1, + [77463] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4512), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4514), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - ACTIONS(5449), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77513] = 9, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_COLON, + ACTIONS(4168), 1, + anon_sym_extends, + ACTIONS(4541), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5459), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3419), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4577), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77797] = 31, - ACTIONS(3938), 1, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - ACTIONS(5449), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77575] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(1697), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4581), 3, + ACTIONS(1699), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77903] = 18, - ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5437), 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(5439), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77625] = 7, + ACTIONS(3546), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4168), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 15, + ACTIONS(3423), 24, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77983] = 13, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5439), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [77683] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4482), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 18, + ACTIONS(4484), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78053] = 25, - ACTIONS(3938), 1, + [77733] = 20, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(5425), 1, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5347), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5447), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 12, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, + 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, anon_sym_satisfies, - [78147] = 26, - ACTIONS(3938), 1, + [77817] = 27, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(5421), 1, + ACTIONS(5327), 1, anon_sym_AMP_AMP, - ACTIONS(5425), 1, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5339), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5347), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(4530), 7, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [78243] = 16, + [77915] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5437), 1, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(4442), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5463), 1, + anon_sym_RBRACE, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5435), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 8, - anon_sym_BANG, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4583), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78319] = 22, - ACTIONS(3938), 1, + [78025] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5425), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5437), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5347), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5443), 3, + ACTIONS(4567), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78407] = 23, - ACTIONS(3938), 1, + [78131] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5425), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5437), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5347), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5417), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(4569), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 10, - sym__ternary_qmark, - anon_sym_as, + [78237] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5381), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5465), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5467), 2, + anon_sym_get, + anon_sym_set, + STATE(3936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78497] = 24, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78301] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5425), 1, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5437), 1, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(4442), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5469), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, + STATE(5142), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5417), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78589] = 15, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5437), 1, - anon_sym_PERCENT, - ACTIONS(5439), 1, - anon_sym_STAR_STAR, - ACTIONS(5453), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [78411] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(1775), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(1777), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78663] = 16, - ACTIONS(3938), 1, + [78461] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5439), 1, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - ACTIONS(5453), 1, + ACTIONS(4832), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [78567] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78629] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78691] = 8, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_COLON, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4168), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, + ACTIONS(3423), 22, sym__ternary_qmark, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [78739] = 20, - ACTIONS(3938), 1, + anon_sym_satisfies, + [78751] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5471), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5473), 2, + anon_sym_get, + anon_sym_set, + STATE(3769), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78815] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5425), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5437), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5347), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4585), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(4593), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, - [78823] = 27, - ACTIONS(3938), 1, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78921] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(5421), 1, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5329), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5339), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5347), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(4601), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78921] = 31, - ACTIONS(3938), 1, + [79027] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5327), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5329), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5339), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5347), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5355), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5357), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4642), 3, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4414), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79027] = 31, - ACTIONS(3938), 1, + [79133] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5327), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5329), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5339), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5347), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5355), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5357), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4648), 3, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4613), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79133] = 31, - ACTIONS(3938), 1, + [79239] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5327), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5329), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5339), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5347), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5355), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5357), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4716), 3, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4615), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79239] = 31, + [79345] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5475), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5477), 2, + anon_sym_get, + anon_sym_set, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79409] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5479), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5481), 2, + anon_sym_get, + anon_sym_set, + STATE(3850), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79473] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5483), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4728), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79345] = 31, + [79583] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5485), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4732), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79451] = 31, + [79693] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5487), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4503), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79557] = 31, + [79803] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5489), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4505), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79663] = 31, + [79913] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5491), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4734), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5443), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79769] = 15, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, + [80023] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5136), 1, anon_sym_STAR, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5493), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, + ACTIONS(5495), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -204790,29 +205183,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79843] = 10, + [80087] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4579), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80137] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5191), 1, + ACTIONS(5292), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5456), 2, + ACTIONS(5497), 2, sym_number, sym_private_property_identifier, - ACTIONS(5458), 2, + ACTIONS(5499), 2, anon_sym_get, anon_sym_set, - STATE(3911), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204844,17 +205284,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79907] = 3, + [80201] = 5, + ACTIONS(1745), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4722), 13, + ACTIONS(1737), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1741), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -204862,15 +205307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4724), 28, - sym__automatic_semicolon, + ACTIONS(1743), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204891,252 +205333,433 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79957] = 3, + [80255] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 28, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5501), 2, + sym_number, + sym_private_property_identifier, + STATE(3007), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80321] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4454), 1, anon_sym_satisfies, - [80007] = 3, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5503), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1799), 13, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80431] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4454), 1, anon_sym_satisfies, - [80057] = 3, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5505), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1817), 13, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1819), 28, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80541] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_STAR, + ACTIONS(5286), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5290), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5507), 2, + sym_number, + sym_private_property_identifier, + STATE(3006), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80607] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, anon_sym_AMP_AMP, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, anon_sym_PERCENT, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80107] = 3, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4468), 3, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80713] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4454), 1, anon_sym_satisfies, - [80157] = 3, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5509), 1, + anon_sym_RBRACE, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1853), 13, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80207] = 3, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80823] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(4128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -205144,7 +205767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 28, + ACTIONS(4130), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205173,542 +205796,423 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80257] = 33, + [80873] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4887), 1, anon_sym_COMMA, - ACTIONS(5460), 1, - anon_sym_SEMI, - STATE(1533), 1, + ACTIONS(5511), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, + STATE(3623), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80367] = 12, - ACTIONS(3938), 1, + [80983] = 32, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4470), 1, + anon_sym_COMMA, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5462), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4676), 19, - sym__ternary_qmark, + ACTIONS(4806), 1, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, anon_sym_AMP_AMP, + ACTIONS(4814), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, anon_sym_PERCENT, + ACTIONS(4830), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80435] = 15, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(5465), 1, - anon_sym_LT, - STATE(1533), 1, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4804), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4836), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 17, - sym__ternary_qmark, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4838), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4999), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [80509] = 31, + [81091] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4708), 3, + ACTIONS(4470), 3, anon_sym_RBRACE, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80615] = 11, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5468), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4414), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4416), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5221), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80681] = 33, + [81197] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4887), 1, anon_sym_COMMA, - ACTIONS(5471), 1, + ACTIONS(5513), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, + STATE(3623), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80791] = 4, - ACTIONS(3503), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [81307] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4454), 1, anon_sym_satisfies, - [80843] = 5, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5515), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5106), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5108), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80897] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81417] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4739), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5124), 1, anon_sym_STAR, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(5126), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5128), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, + ACTIONS(5132), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3120), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -205729,94 +206233,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80973] = 33, + [81483] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5517), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81593] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4693), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81699] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4887), 1, anon_sym_COMMA, - ACTIONS(5473), 1, + ACTIONS(5519), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, + STATE(3623), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81083] = 3, + [81809] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4658), 13, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -205824,7 +206480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4660), 28, + ACTIONS(3423), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205853,155 +206509,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81133] = 33, + [81859] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4887), 1, anon_sym_COMMA, - ACTIONS(5475), 1, + ACTIONS(5521), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, + STATE(3623), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81243] = 5, + [81969] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5523), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5477), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5479), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81297] = 10, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82079] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5481), 1, + ACTIONS(5525), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5483), 2, + ACTIONS(5527), 2, sym_number, sym_private_property_identifier, - ACTIONS(5485), 2, + ACTIONS(5529), 2, anon_sym_get, anon_sym_set, - STATE(3902), 3, + STATE(3907), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -206033,24 +206717,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81361] = 5, + [82143] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5487), 2, + ACTIONS(5171), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5489), 3, + ACTIONS(5173), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -206058,7 +206742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -206082,505 +206766,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81415] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5481), 1, - anon_sym_STAR, - ACTIONS(5491), 1, - anon_sym_async, + [82197] = 4, + ACTIONS(3503), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5493), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5495), 2, - anon_sym_get, - anon_sym_set, - STATE(3020), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3419), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81481] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5326), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5499), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5501), 2, - anon_sym_get, - anon_sym_set, - STATE(3040), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 27, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81547] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(5326), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5501), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5503), 2, - sym_number, - sym_private_property_identifier, - STATE(3011), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82249] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81613] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5326), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5501), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5505), 2, - sym_number, - sym_private_property_identifier, - STATE(3005), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81679] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5509), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5511), 2, - anon_sym_get, - anon_sym_set, - STATE(3826), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5531), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81743] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5513), 1, - anon_sym_async, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5515), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5517), 2, - anon_sym_get, - anon_sym_set, - STATE(3044), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [81809] = 33, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82359] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4887), 1, anon_sym_COMMA, - ACTIONS(5519), 1, - anon_sym_SEMI, - STATE(1533), 1, + ACTIONS(5533), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, + STATE(3623), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81919] = 33, + [82469] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4887), 1, anon_sym_COMMA, - ACTIONS(5521), 1, - anon_sym_SEMI, - STATE(1533), 1, + ACTIONS(5535), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, + STATE(3623), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82029] = 5, - ACTIONS(1821), 1, - sym__automatic_semicolon, + [82579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1813), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1817), 13, + ACTIONS(4661), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -206588,12 +207063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1819), 25, + ACTIONS(4663), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -206614,99 +207092,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82083] = 33, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(5523), 1, - anon_sym_RBRACK, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - STATE(5161), 1, - aux_sym_array_repeat1, + [82629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4665), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4667), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [82193] = 5, - ACTIONS(1831), 1, - sym__automatic_semicolon, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82679] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1827), 13, + ACTIONS(4669), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -206714,12 +207157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 25, + ACTIONS(4671), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -206740,89 +207186,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82247] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5399), 1, - anon_sym_STAR, - ACTIONS(5525), 1, - anon_sym_async, + [82729] = 6, + ACTIONS(4234), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5527), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5529), 2, - anon_sym_get, - anon_sym_set, - STATE(3048), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(4658), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4655), 3, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82313] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4445), 13, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4651), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 28, - sym__automatic_semicolon, + ACTIONS(4653), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -206842,108 +207236,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82363] = 21, - ACTIONS(231), 1, - anon_sym_STAR, + [82785] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(1932), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(5535), 1, - anon_sym_RBRACE, ACTIONS(5537), 1, - anon_sym_async, - ACTIONS(5541), 1, - anon_sym_static, - ACTIONS(5543), 1, - anon_sym_readonly, - ACTIONS(5549), 1, - anon_sym_override, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2743), 1, - sym_override_modifier, - STATE(5101), 1, - aux_sym_object_repeat1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - ACTIONS(5545), 2, + ACTIONS(5541), 2, anon_sym_get, anon_sym_set, - ACTIONS(5547), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3663), 3, + STATE(3944), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5100), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5531), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [82449] = 15, - ACTIONS(237), 1, + ACTIONS(3786), 9, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(697), 1, anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 21, anon_sym_export, anon_sym_type, @@ -206966,17 +207290,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82523] = 3, + [82849] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4666), 13, + ACTIONS(4989), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4991), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -206984,15 +207315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4668), 28, - sym__automatic_semicolon, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207013,46 +207339,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82573] = 16, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, + [82903] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(4962), 1, anon_sym_STAR, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(4964), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(4966), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, + ACTIONS(4970), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3094), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -207073,145 +207394,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82649] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1751), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1755), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1757), 23, - sym__ternary_qmark, - anon_sym_as, + [82969] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82701] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4826), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4832), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4834), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4836), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(4853), 1, - anon_sym_AMP_AMP, - ACTIONS(4855), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4857), 1, - anon_sym_AMP, - ACTIONS(4859), 1, - anon_sym_CARET, - ACTIONS(4861), 1, - anon_sym_PIPE, - ACTIONS(4869), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4871), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1976), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5543), 1, + anon_sym_SEMI, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4824), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4828), 2, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4830), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4851), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4865), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4867), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4863), 3, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5012), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [82807] = 5, - ACTIONS(1857), 1, - sym__automatic_semicolon, + [83079] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1853), 13, + ACTIONS(4466), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -207219,12 +207489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1855), 25, + ACTIONS(4468), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207245,117 +207518,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82861] = 7, - ACTIONS(4144), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4146), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4606), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3435), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 22, - sym__ternary_qmark, - anon_sym_as, + [83129] = 33, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, anon_sym_PERCENT, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4454), 1, anon_sym_satisfies, - [82919] = 5, - ACTIONS(1867), 1, - sym__automatic_semicolon, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5545), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1863), 13, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1865), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82973] = 3, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83239] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4082), 13, + ACTIONS(4685), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -207363,7 +207613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 28, + ACTIONS(4687), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207392,71 +207642,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83023] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5551), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5553), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5555), 2, - anon_sym_get, - anon_sym_set, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83087] = 3, + [83289] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 13, + ACTIONS(4689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -207464,7 +207660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4451), 28, + ACTIONS(4691), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207493,74 +207689,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83137] = 7, - ACTIONS(3550), 1, - anon_sym_EQ, - ACTIONS(4146), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4606), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [83195] = 4, + [83339] = 5, + ACTIONS(1721), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1707), 13, + ACTIONS(1713), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -207568,10 +207712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1709), 23, + ACTIONS(1719), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207592,23 +207738,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83247] = 4, + [83393] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1745), 13, + ACTIONS(4673), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -207616,10 +207756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1747), 23, + ACTIONS(4675), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207640,28 +207785,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83299] = 8, - ACTIONS(3523), 1, + [83443] = 7, + ACTIONS(1677), 1, anon_sym_EQ, - ACTIONS(4144), 1, - anon_sym_QMARK, - ACTIONS(4606), 1, + ACTIONS(4100), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4146), 3, + ACTIONS(2338), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(4103), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1675), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -207669,10 +207811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(1679), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207692,24 +207836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83359] = 5, - ACTIONS(5557), 1, - sym__automatic_semicolon, + [83501] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1761), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1765), 13, + ACTIONS(4677), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -207717,10 +207854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1767), 23, + ACTIONS(4679), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207741,94 +207883,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83413] = 33, + [83551] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4887), 1, anon_sym_COMMA, - ACTIONS(5559), 1, - anon_sym_SEMI, - STATE(1533), 1, + ACTIONS(5547), 1, + anon_sym_RPAREN, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, + STATE(3623), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83523] = 3, + [83661] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83723] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1755), 13, + ACTIONS(4516), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -207836,7 +208031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 28, + ACTIONS(4518), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207865,40 +208060,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83573] = 7, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, + [83773] = 7, + ACTIONS(5549), 1, + anon_sym_LPAREN, + ACTIONS(5552), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_LT, + ACTIONS(5557), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3441), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(4482), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(4484), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -207916,22 +208111,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83631] = 5, - ACTIONS(1759), 1, - sym__automatic_semicolon, + [83831] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1755), 13, + ACTIONS(5559), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5561), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -207939,12 +208136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1757), 25, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207965,36 +208160,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83685] = 5, + [83885] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4134), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4132), 4, - anon_sym_RBRACE, + ACTIONS(5563), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5565), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208014,23 +208209,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83739] = 7, - ACTIONS(4184), 1, - anon_sym_QMARK, + [83939] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 2, - anon_sym_RPAREN, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84001] = 6, + ACTIONS(4168), 1, anon_sym_extends, - ACTIONS(4532), 2, - anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4544), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(4529), 3, - anon_sym_COMMA, + ACTIONS(4541), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4423), 11, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -208042,10 +208287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 22, + ACTIONS(3423), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208065,25 +208312,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83797] = 7, - ACTIONS(3558), 1, + [84057] = 8, + ACTIONS(1677), 1, anon_sym_EQ, - ACTIONS(4606), 1, + ACTIONS(4100), 1, anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(2338), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(1675), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -208091,12 +208341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(1679), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208116,17 +208364,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83855] = 3, + [84117] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5567), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5569), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5571), 2, + anon_sym_get, + anon_sym_set, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84181] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4602), 13, + ACTIONS(4972), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4974), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -208134,15 +208443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4604), 28, - sym__automatic_semicolon, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208163,40 +208467,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83905] = 11, - ACTIONS(1583), 1, + [84235] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5389), 1, + ACTIONS(5567), 1, anon_sym_STAR, - ACTIONS(5561), 1, + ACTIONS(5573), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5563), 2, + ACTIONS(5575), 2, sym_number, sym_private_property_identifier, - ACTIONS(5565), 2, + ACTIONS(5577), 2, anon_sym_get, anon_sym_set, - STATE(3110), 3, + STATE(3038), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(3646), 20, anon_sym_export, anon_sym_type, @@ -208218,92 +208522,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83971] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5567), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [84077] = 3, + [84301] = 5, + ACTIONS(1735), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4525), 13, + ACTIONS(1727), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1731), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -208311,15 +208545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4527), 28, - sym__automatic_semicolon, + ACTIONS(1733), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -208340,34 +208571,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84127] = 3, + [84355] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5253), 1, + anon_sym_STAR, + ACTIONS(5579), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 13, + ACTIONS(5581), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5583), 2, + anon_sym_get, + anon_sym_set, + STATE(3022), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84421] = 8, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4116), 1, + anon_sym_LBRACK, + ACTIONS(4933), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4122), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4110), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1719), 28, - sym__automatic_semicolon, + ACTIONS(4114), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -208387,17 +208678,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84177] = 3, + [84481] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 13, + ACTIONS(4557), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -208405,7 +208696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 28, + ACTIONS(4559), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -208434,789 +208725,827 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84227] = 33, + [84531] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84605] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4887), 1, anon_sym_COMMA, - ACTIONS(5569), 1, - anon_sym_RPAREN, - STATE(1533), 1, + ACTIONS(5585), 1, + anon_sym_SEMI, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, + STATE(3623), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84337] = 33, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [84715] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(5412), 1, + anon_sym_STAR, + ACTIONS(5587), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5589), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5591), 2, + anon_sym_get, + anon_sym_set, + STATE(3021), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5571), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84781] = 4, + ACTIONS(3521), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(3419), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84447] = 33, - ACTIONS(3938), 1, + ACTIONS(3423), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, + [84833] = 16, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(5573), 1, - anon_sym_SEMI, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84557] = 33, - ACTIONS(3938), 1, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5575), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84909] = 5, + ACTIONS(1859), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(1851), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1855), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84667] = 33, - ACTIONS(3938), 1, + ACTIONS(1857), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5577), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + [84963] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4609), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84777] = 33, - ACTIONS(3938), 1, + ACTIONS(4611), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, + [85013] = 12, + ACTIONS(165), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5033), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5595), 2, anon_sym_COMMA, - ACTIONS(5579), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + anon_sym_RBRACE, + STATE(5479), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5593), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85081] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4595), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84887] = 33, - ACTIONS(3938), 1, + ACTIONS(4597), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5581), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4457), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84997] = 33, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85131] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5583), 1, + ACTIONS(5597), 1, anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4690), 1, + aux_sym_array_repeat1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85107] = 33, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [85241] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85303] = 9, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(5585), 1, - anon_sym_RPAREN, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(1956), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4489), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85217] = 33, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85365] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5587), 1, - anon_sym_RPAREN, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85327] = 4, - ACTIONS(3511), 1, - anon_sym_EQ, + ACTIONS(5049), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [85471] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5181), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5599), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5601), 2, + anon_sym_get, + anon_sym_set, + STATE(3961), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85535] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -209224,11 +209553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 27, + ACTIONS(1827), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, @@ -209252,254 +209582,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85379] = 33, + [85585] = 33, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - ACTIONS(4911), 1, + ACTIONS(4887), 1, anon_sym_COMMA, - ACTIONS(5589), 1, + ACTIONS(5603), 1, anon_sym_SEMI, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(3558), 1, + STATE(3623), 1, aux_sym_sequence_expression_repeat1, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85489] = 33, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, - anon_sym_AMP_AMP, - ACTIONS(4467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, - anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, - anon_sym_PERCENT, - ACTIONS(4483), 1, - anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5591), 1, - anon_sym_SEMI, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + [85695] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(1835), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85599] = 33, - ACTIONS(3938), 1, + ACTIONS(1837), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3940), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - ACTIONS(4911), 1, - anon_sym_COMMA, - ACTIONS(5593), 1, - anon_sym_SEMI, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(3558), 1, - aux_sym_sequence_expression_repeat1, - STATE(5072), 1, - sym_optional_chain, + [85745] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(1855), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(1857), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4487), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85709] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85795] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1689), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1693), 13, + ACTIONS(1741), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -209507,10 +209771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1695), 23, + ACTIONS(1743), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209531,23 +209800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85761] = 4, + [85845] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1795), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1799), 13, + ACTIONS(4651), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -209555,10 +209818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 23, + ACTIONS(4653), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209579,24 +209847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85813] = 5, + [85895] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5595), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5597), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3435), 13, + ACTIONS(4520), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -209604,10 +209865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(4522), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209628,162 +209894,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85867] = 10, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5599), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5601), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5603), 2, - anon_sym_get, - anon_sym_set, - STATE(3785), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [85931] = 31, - ACTIONS(4418), 1, + [85945] = 24, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5347), 1, anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4708), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BQUOTE, - ACTIONS(5283), 3, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86037] = 4, - ACTIONS(3550), 1, + ACTIONS(4530), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86037] = 7, + ACTIONS(3604), 1, anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4168), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 26, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -209803,47 +210012,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [86088] = 4, + [86094] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1942), 6, + ACTIONS(4410), 2, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5605), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86199] = 16, + ACTIONS(1505), 1, anon_sym_DQUOTE, + ACTIONS(1507), 1, anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(2763), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 11, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5607), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(2314), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -209851,35 +210145,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86139] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, + [86274] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5475), 2, sym_number, sym_private_property_identifier, - STATE(3887), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -209907,34 +210196,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86208] = 13, + [86333] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86384] = 13, ACTIONS(237), 1, anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5023), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3887), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -209963,37 +210299,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86277] = 7, - ACTIONS(4022), 1, - anon_sym_QMARK, - ACTIONS(4024), 1, - anon_sym_extends, + [86453] = 5, + ACTIONS(3421), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4618), 3, + ACTIONS(3635), 3, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(3435), 11, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210013,24 +210347,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86334] = 8, - ACTIONS(1583), 1, + [86506] = 19, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(1932), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4744), 1, anon_sym_LBRACK, + ACTIONS(5614), 1, + anon_sym_async, + ACTIONS(5616), 1, + anon_sym_static, + ACTIONS(5618), 1, + anon_sym_readonly, + ACTIONS(5624), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4923), 2, + ACTIONS(5241), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + ACTIONS(5612), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5620), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5622), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3732), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5493), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5610), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86587] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4943), 2, + sym_number, + sym_private_property_identifier, + STATE(3434), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210064,24 +210460,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86393] = 8, + [86646] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5605), 2, + ACTIONS(5626), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + STATE(3938), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210115,24 +210511,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86452] = 8, + [86705] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5413), 2, + ACTIONS(5479), 2, sym_number, sym_private_property_identifier, - STATE(3864), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210166,24 +210562,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86511] = 8, + [86764] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5426), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3915), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210217,80 +210613,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86570] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4138), 2, + [86823] = 13, + ACTIONS(237), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4082), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4084), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86621] = 8, + ACTIONS(722), 1, + anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5213), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3827), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -210315,232 +210669,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86680] = 4, + [86892] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4088), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4082), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4084), 25, + ACTIONS(5493), 2, + sym_number, + sym_private_property_identifier, + STATE(3828), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86731] = 6, - ACTIONS(4104), 1, anon_sym_EQ, - ACTIONS(4933), 1, - anon_sym_of, - ACTIONS(5607), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4102), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 25, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86786] = 6, - ACTIONS(4614), 1, - anon_sym_EQ, - ACTIONS(4960), 1, - anon_sym_of, - ACTIONS(5610), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4612), 12, - anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4616), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86841] = 6, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4946), 1, - anon_sym_of, - ACTIONS(5613), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1663), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1667), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86896] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86951] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5471), 2, sym_number, sym_private_property_identifier, - STATE(3887), 3, + STATE(3769), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -210565,24 +210771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86965] = 8, + [87010] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5328), 2, + ACTIONS(5414), 2, sym_number, sym_private_property_identifier, - STATE(3888), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210616,173 +210822,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87024] = 6, - ACTIONS(4618), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4024), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4621), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87079] = 7, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(4146), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4606), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87136] = 7, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3445), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3441), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87193] = 8, + [87069] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5203), 2, + ACTIONS(5569), 2, sym_number, sym_private_property_identifier, - STATE(3853), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210815,73 +210872,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_object, - [87252] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4134), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4132), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87305] = 8, + anon_sym_object, + [87128] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5217), 2, + ACTIONS(5628), 2, sym_number, sym_private_property_identifier, - STATE(3834), 3, + STATE(3960), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210915,38 +210924,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87364] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, + [87187] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5443), 2, sym_number, sym_private_property_identifier, - STATE(3887), 3, + STATE(3803), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -210971,212 +210975,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87433] = 6, - ACTIONS(4606), 1, + [87246] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(5280), 2, + sym_number, + sym_private_property_identifier, + STATE(3858), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87488] = 6, - ACTIONS(4529), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4186), 2, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4532), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4423), 10, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4425), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87543] = 6, - ACTIONS(4614), 1, - anon_sym_EQ, - ACTIONS(4960), 1, anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4801), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4612), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4616), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87598] = 23, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_AT, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5616), 1, - anon_sym_STAR, - ACTIONS(5618), 1, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(5622), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(5624), 1, anon_sym_readonly, - ACTIONS(5628), 1, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(5630), 1, - anon_sym_abstract, - ACTIONS(5632), 1, - anon_sym_accessor, - STATE(2642), 1, - sym_method_definition, - STATE(2686), 1, - sym_accessibility_modifier, - STATE(2717), 1, - aux_sym_export_statement_repeat1, - STATE(2749), 1, - sym_decorator, - STATE(2765), 1, - sym_override_modifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87305] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5620), 2, + ACTIONS(5255), 2, sym_number, sym_private_property_identifier, - ACTIONS(5626), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3000), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 13, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -211184,158 +211077,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87687] = 7, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(2326), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4066), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4069), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1663), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1667), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87744] = 7, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4114), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4108), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4111), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4102), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87801] = 16, + [87364] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(2756), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5177), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, + STATE(3889), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -211343,97 +211128,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87876] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, - anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5285), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5287), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5637), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5283), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87981] = 5, - ACTIONS(3437), 1, + [87423] = 6, + ACTIONS(3421), 1, anon_sym_EQ, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3629), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3435), 13, + ACTIONS(3419), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -211441,10 +211151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3423), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -211465,24 +211177,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88034] = 8, + [87478] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5527), 2, sym_number, sym_private_property_identifier, - STATE(3916), 3, + STATE(3907), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -211516,33 +211228,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88093] = 8, + [87537] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, + ACTIONS(5599), 2, sym_number, sym_private_property_identifier, - STATE(3926), 3, + STATE(3961), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -211567,33 +211279,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88152] = 8, + [87596] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5639), 2, + ACTIONS(5422), 2, sym_number, sym_private_property_identifier, - STATE(3914), 3, + STATE(3771), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -211618,382 +211330,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88211] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, + [87655] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5379), 2, - sym_number, - sym_private_property_identifier, - STATE(3857), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(1771), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [88270] = 32, - ACTIONS(4418), 1, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [87706] = 32, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5327), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5329), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5339), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5347), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5355), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5357), 1, sym__ternary_qmark, - ACTIONS(5641), 1, + ACTIONS(5630), 1, anon_sym_SEMI, - ACTIONS(5643), 1, + ACTIONS(5632), 1, sym__automatic_semicolon, - STATE(1976), 1, + STATE(1992), 1, sym_type_arguments, - STATE(2240), 1, + STATE(2282), 1, sym_arguments, - STATE(4753), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88377] = 32, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, + [87813] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4842), 1, - anon_sym_as, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_satisfies, - ACTIONS(5261), 1, - anon_sym_AMP_AMP, - ACTIONS(5263), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, - anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_CARET, - ACTIONS(5273), 1, - anon_sym_PIPE, - ACTIONS(5277), 1, - anon_sym_PERCENT, - ACTIONS(5279), 1, - anon_sym_STAR_STAR, - ACTIONS(5281), 1, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5289), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, - sym__ternary_qmark, - ACTIONS(5645), 1, - anon_sym_SEMI, - ACTIONS(5647), 1, - sym__automatic_semicolon, - STATE(1976), 1, - sym_type_arguments, - STATE(2240), 1, - sym_arguments, - STATE(4753), 1, - sym_optional_chain, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87882] = 4, + ACTIONS(4869), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(4865), 17, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5259), 2, + anon_sym_as, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5275), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(4867), 22, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [88484] = 31, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [87933] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4997), 2, + ACTIONS(4982), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88589] = 31, + [88038] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4465), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, + ACTIONS(4424), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, + ACTIONS(4426), 1, anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, anon_sym_CARET, - ACTIONS(4477), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4481), 1, + ACTIONS(4438), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, + ACTIONS(4440), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, + ACTIONS(4442), 1, anon_sym_LT, - ACTIONS(4493), 1, + ACTIONS(4450), 1, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4499), 1, + ACTIONS(4456), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(4410), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4463), 2, + ACTIONS(4418), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, + ACTIONS(4428), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4479), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + ACTIONS(4446), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(4448), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5007), 2, + ACTIONS(4987), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4487), 3, + ACTIONS(4444), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88694] = 8, + [88143] = 17, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(2763), 1, + sym_override_modifier, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88220] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5383), 2, + ACTIONS(5408), 2, sym_number, sym_private_property_identifier, - STATE(3868), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212018,33 +211814,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88753] = 8, + [88279] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3813), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212069,34 +211870,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88812] = 8, - ACTIONS(1505), 1, + [88348] = 23, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5636), 1, + anon_sym_STAR, + ACTIONS(5638), 1, + anon_sym_async, + ACTIONS(5642), 1, + anon_sym_static, + ACTIONS(5644), 1, + anon_sym_readonly, + ACTIONS(5648), 1, + anon_sym_declare, + ACTIONS(5650), 1, + anon_sym_abstract, + ACTIONS(5652), 1, + anon_sym_accessor, + STATE(2656), 1, + sym_method_definition, + STATE(2685), 1, + sym_accessibility_modifier, + STATE(2702), 1, + aux_sym_export_statement_repeat1, + STATE(2756), 1, + sym_decorator, + STATE(2761), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5640), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5646), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3015), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88437] = 7, + ACTIONS(4040), 1, + anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4547), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88494] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 2, + ACTIONS(5654), 2, sym_number, sym_private_property_identifier, - STATE(3869), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -212120,33 +212037,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88871] = 8, + [88553] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88604] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4164), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88655] = 6, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4933), 1, + anon_sym_of, + ACTIONS(5656), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4110), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88710] = 6, + ACTIONS(4701), 1, + anon_sym_EQ, + ACTIONS(4935), 1, + anon_sym_of, + ACTIONS(5659), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4699), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4703), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88765] = 6, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4937), 1, + anon_sym_of, + ACTIONS(5662), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1675), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88820] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5409), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3908), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212171,218 +212334,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88930] = 19, - ACTIONS(231), 1, - anon_sym_STAR, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(1932), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4736), 1, + [88889] = 6, + ACTIONS(4547), 1, anon_sym_LBRACK, - ACTIONS(5653), 1, - anon_sym_async, - ACTIONS(5655), 1, - anon_sym_static, - ACTIONS(5657), 1, - anon_sym_readonly, - ACTIONS(5663), 1, - anon_sym_override, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2743), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5539), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5651), 2, + ACTIONS(4042), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5659), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5661), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3663), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5541), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5649), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89011] = 17, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, + anon_sym_extends, + ACTIONS(4550), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(5665), 1, - anon_sym_RBRACE, - STATE(2756), 1, - sym_override_modifier, - STATE(5136), 1, - aux_sym_object_repeat1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88944] = 7, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4541), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89088] = 31, - ACTIONS(3938), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4465), 1, anon_sym_AMP_AMP, - ACTIONS(4467), 1, anon_sym_PIPE_PIPE, - ACTIONS(4469), 1, - anon_sym_GT_GT, - ACTIONS(4473), 1, - anon_sym_AMP, - ACTIONS(4475), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4477), 1, - anon_sym_PIPE, - ACTIONS(4481), 1, anon_sym_PERCENT, - ACTIONS(4483), 1, anon_sym_STAR_STAR, - ACTIONS(4485), 1, - anon_sym_LT, - ACTIONS(4493), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4497), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4499), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [89001] = 7, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4457), 2, + ACTIONS(3429), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3425), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4463), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4471), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4479), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4489), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4491), 2, + ACTIONS(3423), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4495), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5667), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89058] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4126), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4124), 4, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4487), 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89193] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89111] = 13, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(724), 1, - anon_sym_RBRACE, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - STATE(5129), 1, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4964), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -212390,11 +212554,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3887), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -212423,177 +212587,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89262] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, + [89180] = 6, + ACTIONS(4541), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, - sym_number, - sym_private_property_identifier, - STATE(3380), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4168), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89321] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89235] = 6, + ACTIONS(4655), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5553), 2, - sym_number, - sym_private_property_identifier, - STATE(3816), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4234), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4658), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4651), 10, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89290] = 6, + ACTIONS(4701), 1, + anon_sym_EQ, + ACTIONS(4935), 1, anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4741), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4699), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89380] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4703), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89345] = 7, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(2338), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5483), 2, - sym_number, - sym_private_property_identifier, - STATE(3902), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 9, - sym__automatic_semicolon, + ACTIONS(4100), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1675), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89402] = 7, + ACTIONS(4112), 1, anon_sym_EQ, + ACTIONS(4122), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4116), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4110), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89459] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5665), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89564] = 32, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + ACTIONS(5667), 1, anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5669), 1, + sym__automatic_semicolon, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89671] = 4, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89439] = 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [89722] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5509), 2, + ACTIONS(5365), 2, sym_number, sym_private_property_identifier, - STATE(3826), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -212627,33 +213081,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89498] = 8, + [89781] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5601), 2, + ACTIONS(5465), 2, sym_number, sym_private_property_identifier, - STATE(3785), 3, + STATE(3936), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2314), 23, anon_sym_export, anon_sym_type, @@ -212678,24 +213132,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89557] = 8, + [89840] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5456), 2, + ACTIONS(5497), 2, sym_number, sym_private_property_identifier, - STATE(3911), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -212729,71 +213183,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89616] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1873), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1877), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1879), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [89667] = 8, + [89899] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5181), 2, + ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - STATE(3893), 3, + STATE(3944), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 9, + ACTIONS(3786), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -212827,519 +213234,544 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89726] = 6, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3632), 1, - anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [89958] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4504), 1, anon_sym_LBRACK, + ACTIONS(4506), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, anon_sym_AMP_AMP, + ACTIONS(5329), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, anon_sym_PERCENT, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89781] = 4, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 5, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5062), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1877), 13, + ACTIONS(5323), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1879), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [89832] = 31, - ACTIONS(3938), 1, + [90063] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, + ACTIONS(4504), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, + ACTIONS(4506), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4806), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4808), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4844), 1, anon_sym_satisfies, - ACTIONS(5675), 1, + ACTIONS(5327), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, + ACTIONS(5329), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5331), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, anon_sym_CARET, - ACTIONS(5687), 1, + ACTIONS(5339), 1, anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5343), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5345), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5347), 1, anon_sym_LT, - ACTIONS(5703), 1, + ACTIONS(5355), 1, anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, + ACTIONS(5357), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1992), 1, sym_type_arguments, - STATE(1614), 1, + STATE(2282), 1, sym_arguments, - STATE(5072), 1, + STATE(4965), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(4495), 2, + ACTIONS(4842), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5323), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5325), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5333), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5341), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5351), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5353), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5671), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5349), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89937] = 31, + [90168] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4501), 2, + ACTIONS(4468), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90273] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1771), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90042] = 31, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [90324] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4519), 2, + ACTIONS(4480), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90147] = 31, + [90429] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4577), 2, + ACTIONS(4524), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90252] = 31, + [90534] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4581), 2, + ACTIONS(4528), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90357] = 18, + [90639] = 18, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5679), 1, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 7, + ACTIONS(4532), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 14, + ACTIONS(4530), 14, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213354,45 +213786,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [90436] = 13, + [90718] = 13, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5693), 1, + ACTIONS(5695), 1, anon_sym_STAR_STAR, - ACTIONS(5707), 1, + ACTIONS(5709), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4532), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(4530), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213410,66 +213842,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [90505] = 25, + [90787] = 25, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(5679), 1, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(4530), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213478,68 +213910,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [90598] = 26, + [90880] = 26, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(5675), 1, + ACTIONS(5677), 1, anon_sym_AMP_AMP, - ACTIONS(5679), 1, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 7, + ACTIONS(4530), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213547,49 +213979,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [90693] = 16, + [90975] = 16, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, anon_sym_STAR_STAR, - ACTIONS(5707), 1, + ACTIONS(5709), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 8, + ACTIONS(4532), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, + ACTIONS(4530), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213606,62 +214038,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [90768] = 22, + [91050] = 22, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5679), 1, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, + ACTIONS(4532), 3, anon_sym_BANG, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4530), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213671,63 +214103,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [90855] = 23, + [91137] = 23, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5679), 1, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5691), 1, - anon_sym_PERCENT, + ACTIONS(5685), 1, + anon_sym_AMP3, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, + ACTIONS(4532), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4530), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213737,65 +214169,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [90944] = 24, + [91226] = 24, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5679), 1, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, anon_sym_CARET, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, + ACTIONS(4532), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(4530), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213804,48 +214236,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [91035] = 15, + [91317] = 15, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, anon_sym_STAR_STAR, - ACTIONS(5707), 1, + ACTIONS(5709), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4585), 10, + ACTIONS(4532), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, + ACTIONS(4530), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213862,50 +214294,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [91108] = 16, + [91390] = 16, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5693), 1, + ACTIONS(5695), 1, anon_sym_STAR_STAR, - ACTIONS(5707), 1, + ACTIONS(5709), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4532), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 15, + ACTIONS(4530), 15, sym__ternary_qmark, anon_sym_RBRACK, anon_sym_AMP_AMP, @@ -213921,58 +214353,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [91183] = 20, + [91465] = 20, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5679), 1, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4585), 5, + ACTIONS(4532), 5, anon_sym_BANG, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 11, + ACTIONS(4530), 11, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213984,889 +214416,705 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [91266] = 27, + [91548] = 27, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 6, + ACTIONS(4530), 6, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [91363] = 31, + [91645] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4642), 2, + ACTIONS(4567), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91468] = 31, + [91750] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4648), 2, + ACTIONS(4569), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91573] = 31, + [91855] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4716), 2, + ACTIONS(4593), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91678] = 31, + [91960] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4601), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91783] = 31, + [92065] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4732), 2, + ACTIONS(4414), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5681), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5689), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5699), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5701), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91888] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, - ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, - anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, - anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, - ACTIONS(5693), 1, - anon_sym_STAR_STAR, - ACTIONS(5695), 1, - anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4503), 2, - anon_sym_RBRACK, - anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91993] = 31, + [92170] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4505), 2, + ACTIONS(4613), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92098] = 31, + [92275] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4734), 2, + ACTIONS(4615), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(5701), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [92203] = 12, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5710), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4676), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5703), 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, - anon_sym_satisfies, - [92270] = 15, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5713), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4697), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4699), 16, - sym__ternary_qmark, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5699), 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, - [92343] = 31, + [92380] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, ACTIONS(5685), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5691), 1, - anon_sym_PERCENT, ACTIONS(5693), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4708), 2, + ACTIONS(4693), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5671), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92448] = 11, + [92485] = 12, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5716), 1, + ACTIONS(5712), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 20, + ACTIONS(4707), 18, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -214883,172 +215131,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92513] = 31, - ACTIONS(4418), 1, + [92552] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5715), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 16, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [92625] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(5677), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5679), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5693), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5695), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5705), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5166), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5257), 2, + ACTIONS(4719), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5283), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92618] = 13, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, + [92730] = 11, + ACTIONS(3938), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5718), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [92687] = 4, - ACTIONS(4941), 1, - sym_regex_flags, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4937), 17, + ACTIONS(4729), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4939), 22, + ACTIONS(4731), 20, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215061,426 +215314,428 @@ 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, - [92738] = 31, + anon_sym_satisfies, + [92795] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(4468), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92843] = 31, + [92900] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4501), 2, + ACTIONS(4470), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92948] = 31, + [93005] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4519), 2, + ACTIONS(4480), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93053] = 31, + [93110] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4577), 2, + ACTIONS(4524), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93158] = 31, + [93215] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4581), 2, + ACTIONS(4528), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93263] = 18, + [93320] = 18, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5727), 1, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 7, + ACTIONS(4532), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 14, + ACTIONS(4530), 14, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -215495,45 +215750,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [93342] = 13, + [93399] = 13, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5741), 1, + ACTIONS(5743), 1, anon_sym_STAR_STAR, - ACTIONS(5755), 1, + ACTIONS(5757), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(4532), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 17, + ACTIONS(4530), 17, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -215551,66 +215806,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [93411] = 25, + [93468] = 25, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(5727), 1, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(4530), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -215619,68 +215874,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [93504] = 26, + [93561] = 26, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(5723), 1, + ACTIONS(5725), 1, anon_sym_AMP_AMP, - ACTIONS(5727), 1, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 7, + ACTIONS(4530), 7, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -215688,49 +215943,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [93599] = 16, + [93656] = 16, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, anon_sym_STAR_STAR, - ACTIONS(5755), 1, + ACTIONS(5757), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 8, + ACTIONS(4532), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, + ACTIONS(4530), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -215747,62 +216002,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [93674] = 22, + [93731] = 22, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5727), 1, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, + ACTIONS(4532), 3, anon_sym_BANG, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4530), 9, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -215812,63 +216067,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [93761] = 23, + [93818] = 23, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5727), 1, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5739), 1, - anon_sym_PERCENT, + ACTIONS(5733), 1, + anon_sym_AMP3, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, + ACTIONS(4532), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 9, + ACTIONS(4530), 9, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -215878,65 +216133,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [93850] = 24, + [93907] = 24, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5727), 1, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, anon_sym_CARET, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 2, + ACTIONS(4532), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(4530), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -215945,48 +216200,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [93941] = 15, + [93998] = 15, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, anon_sym_STAR_STAR, - ACTIONS(5755), 1, + ACTIONS(5757), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4585), 10, + ACTIONS(4532), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, + ACTIONS(4530), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -216003,50 +216258,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [94014] = 16, + [94071] = 16, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5741), 1, + ACTIONS(5743), 1, anon_sym_STAR_STAR, - ACTIONS(5755), 1, + ACTIONS(5757), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4532), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 15, + ACTIONS(4530), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -216062,58 +216317,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [94089] = 20, + [94146] = 20, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5727), 1, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4585), 5, + ACTIONS(4532), 5, anon_sym_BANG, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 11, + ACTIONS(4530), 11, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -216125,705 +216380,705 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [94172] = 27, + [94229] = 27, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 6, + ACTIONS(4530), 6, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [94269] = 31, + [94326] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4642), 2, + ACTIONS(4567), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94374] = 31, + [94431] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4648), 2, + ACTIONS(4569), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94479] = 31, + [94536] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4716), 2, + ACTIONS(4593), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94584] = 31, + [94641] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4728), 2, + ACTIONS(4601), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94689] = 31, + [94746] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4732), 2, + ACTIONS(4414), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94794] = 31, + [94851] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4503), 2, + ACTIONS(4613), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94899] = 31, + [94956] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4505), 2, + ACTIONS(4615), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95004] = 31, + [95061] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4734), 2, + ACTIONS(4693), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95109] = 12, + [95166] = 12, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5758), 1, + ACTIONS(5760), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(4705), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4676), 18, + ACTIONS(4707), 18, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -216842,48 +217097,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95176] = 15, + [95233] = 15, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5761), 1, + ACTIONS(5763), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4712), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 16, + ACTIONS(4714), 16, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -216900,114 +217155,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [95249] = 31, + [95306] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5723), 1, - anon_sym_AMP_AMP, ACTIONS(5725), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, ACTIONS(5733), 1, - anon_sym_CARET, + anon_sym_AMP3, ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5739), 1, - anon_sym_PERCENT, ACTIONS(5741), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5751), 1, - anon_sym_QMARK_QMARK, ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4708), 2, + ACTIONS(4719), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(5719), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5721), 2, + ACTIONS(5723), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5729), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95354] = 11, + [95411] = 11, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5764), 1, + ACTIONS(5766), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4729), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 20, + ACTIONS(4731), 20, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -217028,22 +217283,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95419] = 7, - ACTIONS(3596), 1, + [95476] = 7, + ACTIONS(3592), 1, anon_sym_EQ, - ACTIONS(4606), 1, + ACTIONS(4541), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, + ACTIONS(4168), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4609), 3, + ACTIONS(4544), 3, anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217054,7 +217309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -217078,155 +217333,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95476] = 7, - ACTIONS(3604), 1, - anon_sym_EQ, - ACTIONS(4606), 1, + [95533] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4470), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5675), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95533] = 31, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + [95638] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4539), 1, + ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4842), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4844), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5261), 1, + ACTIONS(4528), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5263), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5265), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5269), 1, - anon_sym_AMP, - ACTIONS(5271), 1, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5273), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5277), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5279), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5281), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5289), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5291), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1976), 1, + STATE(1493), 1, sym_type_arguments, - STATE(2240), 1, + STATE(1611), 1, sym_arguments, - STATE(4753), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4822), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5257), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5259), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5267), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5275), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5285), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5287), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5767), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5283), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95638] = 31, + [95742] = 26, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4505), 1, - anon_sym_BQUOTE, ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -217237,20 +217507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -217275,410 +217541,454 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95742] = 4, + ACTIONS(4530), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95836] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5805), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5805), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5808), 23, + ACTIONS(4530), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95792] = 4, + [95910] = 22, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4724), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5811), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5814), 23, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95842] = 31, + [95996] = 23, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, - anon_sym_AMP_AMP, - ACTIONS(5423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - ACTIONS(5817), 1, - anon_sym_COLON, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95946] = 31, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96084] = 24, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5675), 1, - anon_sym_AMP_AMP, - ACTIONS(5677), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5687), 1, - anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5703), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, - sym__ternary_qmark, - ACTIONS(5819), 1, - anon_sym_RBRACK, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96050] = 4, + ACTIONS(4530), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96174] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5805), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4660), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5821), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 23, + ACTIONS(4530), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96100] = 4, + [96246] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5805), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4082), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4084), 24, + ACTIONS(4530), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [96150] = 15, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, - anon_sym_override, - ACTIONS(4736), 1, + [96320] = 20, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - STATE(2756), 1, - sym_override_modifier, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [96222] = 31, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96402] = 27, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4455), 1, - anon_sym_BQUOTE, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, ACTIONS(5773), 1, anon_sym_AMP_AMP, ACTIONS(5775), 1, @@ -217686,7 +217996,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -217697,20 +218007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -217735,22 +218041,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96326] = 31, + ACTIONS(4530), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96498] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4501), 1, + ACTIONS(4567), 1, anon_sym_BQUOTE, ACTIONS(5773), 1, anon_sym_AMP_AMP, @@ -217759,7 +218071,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -217774,16 +218086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -217808,113 +218120,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96430] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3164), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3162), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [96478] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4088), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4082), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4084), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96528] = 31, + [96602] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4519), 1, + ACTIONS(4569), 1, anon_sym_BQUOTE, ACTIONS(5773), 1, anon_sym_AMP_AMP, @@ -217923,7 +218144,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -217938,16 +218159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -217972,22 +218193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96632] = 31, + [96706] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4577), 1, + ACTIONS(4593), 1, anon_sym_BQUOTE, ACTIONS(5773), 1, anon_sym_AMP_AMP, @@ -217996,7 +218217,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -218011,16 +218232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -218045,22 +218266,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96736] = 31, + [96810] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4581), 1, + ACTIONS(4601), 1, anon_sym_BQUOTE, ACTIONS(5773), 1, anon_sym_AMP_AMP, @@ -218069,7 +218290,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -218084,16 +218305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -218118,136 +218339,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96840] = 18, + [96914] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4414), 1, + anon_sym_BQUOTE, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, ACTIONS(5777), 1, anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, ACTIONS(5789), 1, anon_sym_PERCENT, ACTIONS(5791), 1, anon_sym_STAR_STAR, ACTIONS(5793), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4585), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96918] = 13, + [97018] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4613), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5829), 1, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 12, + ACTIONS(5769), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96986] = 25, + [97122] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4615), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -218258,16 +218520,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5793), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -218292,31 +218558,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97078] = 26, + [97226] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4693), 1, + anon_sym_BQUOTE, ACTIONS(5773), 1, anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -218327,16 +218593,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5793), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -218361,374 +218631,552 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97172] = 16, + [97330] = 12, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97396] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5789), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5829), 1, + ACTIONS(5219), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5808), 1, + anon_sym_COLON, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4585), 8, - anon_sym_BANG, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4583), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97246] = 22, + [97500] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5812), 1, + anon_sym_readonly, + STATE(2793), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5810), 2, + sym_number, + sym_private_property_identifier, + STATE(3366), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97564] = 9, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5816), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5814), 2, + sym_number, + sym_private_property_identifier, + STATE(3368), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97624] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5820), 1, + anon_sym_readonly, + STATE(2813), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5818), 2, + sym_number, + sym_private_property_identifier, + STATE(3379), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97688] = 9, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5824), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5822), 2, + sym_number, + sym_private_property_identifier, + STATE(3294), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97748] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5777), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5015), 1, + anon_sym_RBRACE, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5789), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5219), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4585), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5795), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4583), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97332] = 23, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [97852] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5769), 2, + ACTIONS(1743), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5826), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 8, + ACTIONS(5829), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97420] = 24, - ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4585), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97510] = 15, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5829), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [97902] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(1817), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5832), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4585), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 15, + ACTIONS(5835), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97582] = 16, + [97952] = 12, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5829), 1, + ACTIONS(5838), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4585), 11, + ACTIONS(4705), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 14, + ACTIONS(4707), 17, sym__ternary_qmark, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -218736,153 +219184,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [97656] = 20, + anon_sym_satisfies, + [98018] = 15, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5841), 1, anon_sym_LT, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(4712), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4585), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4583), 10, + ACTIONS(4714), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97738] = 27, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4585), 1, - anon_sym_BANG, - ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4583), 5, - sym__ternary_qmark, - anon_sym_as, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, - anon_sym_satisfies, - [97834] = 31, + [98090] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4642), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, ACTIONS(5773), 1, anon_sym_AMP_AMP, @@ -218891,7 +219266,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -218906,16 +219281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -218940,389 +219315,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97938] = 31, + [98194] = 11, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4648), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5844), 1, anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(4729), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(4731), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [98042] = 32, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98258] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5012), 1, - anon_sym_of, - ACTIONS(5721), 1, - anon_sym_GT, - ACTIONS(5723), 1, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(5725), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(5727), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5731), 1, - anon_sym_AMP, - ACTIONS(5733), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(5735), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(5739), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5741), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5743), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5751), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(5753), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - ACTIONS(5832), 1, - anon_sym_in, - STATE(1533), 1, + ACTIONS(5847), 1, + anon_sym_COLON, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5719), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5729), 2, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5737), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5747), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5749), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5745), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98148] = 31, + [98362] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4716), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(5849), 1, + anon_sym_COLON, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98252] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4728), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [98466] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(4675), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5851), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98356] = 31, - ACTIONS(3938), 1, + ACTIONS(5854), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4732), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98516] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(4679), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5857), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5860), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [98460] = 6, - ACTIONS(3544), 1, - anon_sym_COMMA, - ACTIONS(3567), 1, - anon_sym_RBRACK, - ACTIONS(3637), 1, - anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98566] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4573), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -219330,7 +219628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(5866), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -219354,103 +219652,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98514] = 31, + [98616] = 32, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5049), 1, + anon_sym_of, + ACTIONS(5723), 1, + anon_sym_GT, + ACTIONS(5725), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5727), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5729), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5737), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5741), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5743), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5745), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5753), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5755), 1, sym__ternary_qmark, - ACTIONS(5835), 1, - anon_sym_COLON, - STATE(1533), 1, + ACTIONS(5869), 1, + anon_sym_in, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5721), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5731), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5739), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5751), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5747), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98618] = 11, - ACTIONS(1583), 1, + [98722] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5839), 1, + ACTIONS(5872), 1, anon_sym_readonly, - STATE(2823), 1, + STATE(2794), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5837), 2, + ACTIONS(4943), 2, sym_number, sym_private_property_identifier, - STATE(3421), 3, + STATE(3434), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219480,26 +219779,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98682] = 9, - ACTIONS(1583), 1, + [98786] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5843), 1, - anon_sym_abstract, + ACTIONS(5874), 1, + anon_sym_readonly, + STATE(2773), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5841), 2, + ACTIONS(5654), 2, sym_number, sym_private_property_identifier, - STATE(3469), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219507,7 +219810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(3646), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219516,14 +219819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -219531,30 +219832,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98742] = 11, - ACTIONS(1583), 1, + [98850] = 9, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5847), 1, - anon_sym_readonly, - STATE(2805), 1, - sym_override_modifier, + ACTIONS(5876), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5845), 2, + ACTIONS(5654), 2, sym_number, sym_private_property_identifier, - STATE(3432), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219562,7 +219859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3646), 21, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -219571,12 +219868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -219584,26 +219883,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98806] = 9, - ACTIONS(1583), 1, + [98910] = 9, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5851), 1, + ACTIONS(4951), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5849), 2, + ACTIONS(4943), 2, sym_number, sym_private_property_identifier, - STATE(3342), 3, + STATE(3434), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -219635,104 +219934,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98866] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, + [98970] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, - anon_sym_AMP_AMP, - ACTIONS(5423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, - anon_sym_PERCENT, - ACTIONS(5439), 1, - anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - ACTIONS(5449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - ACTIONS(5853), 1, - anon_sym_COLON, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + ACTIONS(5880), 1, + anon_sym_readonly, + STATE(2795), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5445), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5447), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98970] = 31, + ACTIONS(5878), 2, + sym_number, + sym_private_property_identifier, + STATE(3381), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99034] = 25, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4532), 1, anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4503), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -219743,20 +220012,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -219781,19 +220046,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99074] = 4, - ACTIONS(3554), 1, + ACTIONS(4530), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99126] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99194] = 6, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99248] = 6, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99302] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(2763), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99374] = 6, + ACTIONS(3541), 1, + anon_sym_RBRACK, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99428] = 6, + ACTIONS(4112), 1, anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_RBRACK, + ACTIONS(4933), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(4110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -219801,12 +220334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 25, - sym__automatic_semicolon, + ACTIONS(4114), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -219827,139 +220358,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99124] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, - anon_sym_AMP_AMP, - ACTIONS(5423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, - anon_sym_PERCENT, - ACTIONS(5439), 1, - anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - ACTIONS(5449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - ACTIONS(5855), 1, - anon_sym_COLON, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5445), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5447), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99228] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3184), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, + [99482] = 6, + ACTIONS(4701), 1, + anon_sym_EQ, + ACTIONS(4741), 1, anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3182), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [99276] = 4, + ACTIONS(4935), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5857), 13, + ACTIONS(4699), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -219967,7 +220382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5860), 23, + ACTIONS(4703), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -219991,84 +220406,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99326] = 6, - ACTIONS(4429), 1, + [99536] = 6, + ACTIONS(1677), 1, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4002), 2, + ACTIONS(4752), 1, + anon_sym_RBRACK, + ACTIONS(4937), 1, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1936), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [99380] = 7, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4609), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 10, + ACTIONS(1675), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, + ACTIONS(1679), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220088,35 +220454,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99436] = 6, - ACTIONS(4429), 1, - anon_sym_EQ, + [99590] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1942), 6, + ACTIONS(3172), 12, anon_sym_STAR, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_AMP3, + anon_sym_PIPE, sym_number, sym_private_property_identifier, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + anon_sym_AT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1940), 23, + ACTIONS(3170), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -220136,181 +220496,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99490] = 31, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [99638] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - ACTIONS(5863), 1, + ACTIONS(5884), 1, anon_sym_COLON, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99594] = 31, + [99742] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4734), 1, - anon_sym_BQUOTE, - ACTIONS(5773), 1, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(5775), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(5785), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(5789), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5791), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5793), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5801), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(5886), 1, + anon_sym_COLON, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5769), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5771), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5779), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5787), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5797), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99698] = 6, - ACTIONS(4024), 1, - anon_sym_extends, + [99846] = 4, + ACTIONS(3576), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4618), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3435), 11, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3423), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220330,68 +220691,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99752] = 6, - ACTIONS(4606), 1, + [99896] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4609), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4146), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100000] = 31, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, anon_sym_AMP_AMP, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, anon_sym_PERCENT, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5890), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99806] = 6, - ACTIONS(4529), 1, + [100104] = 6, + ACTIONS(4547), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, + ACTIONS(4550), 2, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(4186), 3, + ACTIONS(4042), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4423), 11, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -220403,7 +220862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4425), 22, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -220426,49 +220885,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99860] = 13, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(5665), 1, - anon_sym_RBRACE, - STATE(5136), 1, - aux_sym_object_repeat1, + [100158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(3190), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_AMP3, + anon_sym_PIPE, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + anon_sym_AT, anon_sym_QMARK, - ACTIONS(2314), 21, + ACTIONS(3188), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -220481,123 +220927,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99928] = 31, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5421), 1, - anon_sym_AMP_AMP, - ACTIONS(5423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, - anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PIPE, - ACTIONS(5437), 1, - anon_sym_PERCENT, - ACTIONS(5439), 1, - anon_sym_STAR_STAR, - ACTIONS(5441), 1, - anon_sym_LT, - ACTIONS(5449), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, - sym__ternary_qmark, - ACTIONS(5865), 1, - anon_sym_COLON, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [100206] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(4134), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4128), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5419), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5435), 2, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(4130), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100032] = 14, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(5665), 1, - anon_sym_RBRACE, - STATE(5136), 1, - aux_sym_object_repeat1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100256] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(3184), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_AMP3, + anon_sym_PIPE, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + anon_sym_AT, anon_sym_QMARK, - ACTIONS(2314), 20, + ACTIONS(3182), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -220610,21 +221018,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100102] = 4, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [100304] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1695), 3, + ACTIONS(4164), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5867), 13, + anon_sym_extends, + ACTIONS(4128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -220632,11 +221042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 23, + ACTIONS(4130), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220656,33 +221067,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100152] = 4, + [100354] = 7, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4687), 3, + ACTIONS(4168), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5873), 13, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5876), 23, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220702,33 +221116,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100202] = 4, + [100410] = 6, + ACTIONS(4042), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4691), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5879), 13, + ACTIONS(4547), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5882), 23, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220748,35 +221164,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100252] = 6, - ACTIONS(4104), 1, - anon_sym_EQ, - ACTIONS(4798), 1, - anon_sym_RBRACK, - ACTIONS(4933), 1, - anon_sym_COMMA, + [100464] = 6, + ACTIONS(4541), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4102), 13, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4168), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4106), 23, + ACTIONS(3423), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220796,89 +221212,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100306] = 12, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + [100518] = 6, + ACTIONS(4655), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5634), 2, + ACTIONS(4658), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4234), 3, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100372] = 6, - ACTIONS(4614), 1, - anon_sym_EQ, - ACTIONS(4801), 1, anon_sym_RBRACK, - ACTIONS(4960), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4612), 13, + anon_sym_extends, + ACTIONS(4651), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4616), 23, + ACTIONS(4653), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220898,227 +221260,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100426] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5885), 1, - anon_sym_readonly, - STATE(2788), 1, - sym_override_modifier, + [100572] = 6, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1635), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5669), 2, - sym_number, - sym_private_property_identifier, - STATE(3380), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5892), 3, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4088), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100490] = 9, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4090), 21, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACK, - ACTIONS(5887), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5669), 2, - sym_number, - sym_private_property_identifier, - STATE(3380), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100550] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [100626] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5891), 1, - anon_sym_readonly, - STATE(2791), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5889), 2, - sym_number, - sym_private_property_identifier, - STATE(3423), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100614] = 9, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5895), 1, - anon_sym_abstract, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + ACTIONS(5894), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5893), 2, - sym_number, - sym_private_property_identifier, - STATE(3431), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100674] = 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100730] = 13, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5043), 1, anon_sym_STAR, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -221128,23 +221405,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -221161,239 +221436,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100742] = 6, - ACTIONS(1665), 1, - anon_sym_EQ, - ACTIONS(4763), 1, - anon_sym_RBRACK, - ACTIONS(4946), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1663), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1667), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100796] = 31, + [100798] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5675), 1, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(5677), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(5679), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5683), 1, - anon_sym_AMP, - ACTIONS(5685), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(5687), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(5691), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5693), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5695), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5703), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(5705), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - ACTIONS(5897), 1, - anon_sym_RBRACK, - STATE(1533), 1, + ACTIONS(5896), 1, + anon_sym_COLON, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5671), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5681), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5689), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5699), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5701), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5697), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100900] = 31, + [100902] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5080), 1, - anon_sym_RBRACE, - ACTIONS(5421), 1, + ACTIONS(5677), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5679), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5681), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5689), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5693), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5695), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5705), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5707), 1, sym__ternary_qmark, - STATE(1533), 1, + ACTIONS(5898), 1, + anon_sym_RBRACK, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5673), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5675), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5683), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5691), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5701), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5703), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5699), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101004] = 12, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(5899), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, + [101006] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4674), 12, + ACTIONS(1753), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5900), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4676), 17, + ACTIONS(5903), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -221407,51 +221624,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101070] = 15, - ACTIONS(3938), 1, + [101056] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1763), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5906), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5909), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5902), 1, - anon_sym_LT, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 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, + anon_sym_satisfies, + [101106] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4697), 11, + ACTIONS(4697), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5912), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4699), 15, + ACTIONS(5915), 23, sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -221465,23 +221716,26 @@ 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, - [101142] = 31, + anon_sym_satisfies, + [101156] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(4708), 1, + ACTIONS(4468), 1, anon_sym_BQUOTE, ACTIONS(5773), 1, anon_sym_AMP_AMP, @@ -221490,7 +221744,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5777), 1, anon_sym_GT_GT, ACTIONS(5781), 1, - anon_sym_AMP, + anon_sym_AMP3, ACTIONS(5783), 1, anon_sym_CARET, ACTIONS(5785), 1, @@ -221505,16 +221759,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5803), 1, sym__ternary_qmark, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5769), 2, @@ -221539,288 +221793,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101246] = 11, + [101260] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(5905), 1, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4470), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, anon_sym_LT, - STATE(1533), 1, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4416), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101310] = 31, + [101364] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(4480), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - ACTIONS(5908), 1, - anon_sym_COLON, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101414] = 11, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5910), 1, - anon_sym_readonly, - STATE(2782), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4923), 2, - sym_number, - sym_private_property_identifier, - STATE(3437), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101478] = 31, + [101468] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(4524), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5775), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5777), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5785), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5789), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5793), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5801), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5803), 1, sym__ternary_qmark, - ACTIONS(5912), 1, - anon_sym_COLON, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5769), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5771), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5779), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5797), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5799), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5795), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101582] = 3, + [101572] = 14, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3188), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3186), 27, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -221833,141 +222068,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [101630] = 4, + [101642] = 18, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1733), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5914), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5917), 23, + ACTIONS(4530), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101680] = 31, + [101720] = 31, ACTIONS(3938), 1, anon_sym_LPAREN, ACTIONS(3940), 1, anon_sym_LBRACK, ACTIONS(3942), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4461), 1, + ACTIONS(4416), 1, anon_sym_BANG, - ACTIONS(4497), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, anon_sym_satisfies, - ACTIONS(5421), 1, + ACTIONS(5199), 1, anon_sym_AMP_AMP, - ACTIONS(5423), 1, + ACTIONS(5201), 1, anon_sym_PIPE_PIPE, - ACTIONS(5425), 1, + ACTIONS(5203), 1, anon_sym_GT_GT, - ACTIONS(5429), 1, - anon_sym_AMP, - ACTIONS(5431), 1, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, anon_sym_CARET, - ACTIONS(5433), 1, + ACTIONS(5211), 1, anon_sym_PIPE, - ACTIONS(5437), 1, + ACTIONS(5215), 1, anon_sym_PERCENT, - ACTIONS(5439), 1, + ACTIONS(5217), 1, anon_sym_STAR_STAR, - ACTIONS(5441), 1, + ACTIONS(5219), 1, anon_sym_LT, - ACTIONS(5449), 1, + ACTIONS(5227), 1, anon_sym_QMARK_QMARK, - ACTIONS(5451), 1, + ACTIONS(5229), 1, sym__ternary_qmark, - ACTIONS(5920), 1, + ACTIONS(5918), 1, anon_sym_COLON, - STATE(1533), 1, + STATE(1493), 1, sym_type_arguments, - STATE(1614), 1, + STATE(1611), 1, sym_arguments, - STATE(5072), 1, + STATE(4886), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4495), 2, + ACTIONS(4452), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5417), 2, + ACTIONS(5195), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5419), 2, + ACTIONS(5197), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5427), 2, + ACTIONS(5205), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5435), 2, + ACTIONS(5213), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, + ACTIONS(5223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5447), 2, + ACTIONS(5225), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5443), 3, + ACTIONS(5221), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101784] = 4, - ACTIONS(3558), 1, + [101824] = 4, + ACTIONS(3546), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -221975,7 +222221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 25, + ACTIONS(3423), 25, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, @@ -222001,171 +222247,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101834] = 9, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4931), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4923), 2, - sym_number, - sym_private_property_identifier, - STATE(3437), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101894] = 6, - ACTIONS(4618), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4621), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4024), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3435), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 22, - sym__ternary_qmark, - anon_sym_as, + [101874] = 13, + ACTIONS(3938), 1, anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, anon_sym_DOT, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(5791), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101948] = 6, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1660), 1, + ACTIONS(5805), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, sym_arguments, + STATE(4886), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5922), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4218), 13, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 21, + ACTIONS(4530), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [102002] = 8, - ACTIONS(1583), 1, + [101942] = 9, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(5922), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5924), 2, + ACTIONS(5920), 2, sym_number, sym_private_property_identifier, - STATE(3315), 3, + STATE(3474), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222197,33 +222353,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102059] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [102002] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5924), 2, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + STATE(3439), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222247,12 +222402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102118] = 8, - ACTIONS(1583), 1, + [102059] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -222260,11 +222415,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5926), 2, sym_number, sym_private_property_identifier, - STATE(3378), 3, + STATE(3374), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222296,57 +222451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102175] = 4, - ACTIONS(4941), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4937), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4939), 20, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [102224] = 8, - ACTIONS(1583), 1, + [102116] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -222354,11 +222464,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5928), 2, sym_number, sym_private_property_identifier, - STATE(3401), 3, + STATE(3355), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222390,104 +222500,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102281] = 30, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_LBRACK, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(2240), 1, - sym_arguments, - STATE(2670), 1, - sym_type_arguments, - STATE(4753), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102382] = 9, + [102173] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5074), 1, + ACTIONS(724), 1, anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(1956), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + ACTIONS(1954), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222511,33 +222550,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102441] = 9, + [102232] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(5074), 1, + ACTIONS(5073), 1, anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, + ACTIONS(1938), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222561,33 +222600,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102500] = 9, + [102291] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5023), 1, + ACTIONS(697), 1, anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(1956), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + ACTIONS(1954), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222611,44 +222650,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102559] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5023), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [102350] = 12, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -222661,12 +222703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102618] = 8, - ACTIONS(1583), 1, + [102415] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -222674,11 +222716,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5930), 2, sym_number, sym_private_property_identifier, - STATE(3302), 3, + STATE(3429), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222710,34 +222752,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102675] = 10, - ACTIONS(1505), 1, + [102472] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5932), 2, sym_number, sym_private_property_identifier, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, + STATE(3386), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222761,95 +222801,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102736] = 30, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3940), 1, - anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4459), 1, - anon_sym_as, - ACTIONS(4461), 1, - anon_sym_BANG, - ACTIONS(4497), 1, - anon_sym_satisfies, - ACTIONS(5773), 1, - anon_sym_AMP_AMP, - ACTIONS(5775), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5777), 1, - anon_sym_GT_GT, - ACTIONS(5781), 1, - anon_sym_AMP, - ACTIONS(5783), 1, - anon_sym_CARET, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5789), 1, - anon_sym_PERCENT, - ACTIONS(5791), 1, - anon_sym_STAR_STAR, - ACTIONS(5793), 1, - anon_sym_LT, - ACTIONS(5801), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5803), 1, - sym__ternary_qmark, - STATE(1533), 1, - sym_type_arguments, - STATE(1614), 1, - sym_arguments, - STATE(5072), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5769), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5771), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5779), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5787), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5797), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5799), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5795), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102837] = 8, - ACTIONS(1583), 1, + [102529] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5932), 2, + ACTIONS(5934), 2, sym_number, sym_private_property_identifier, - STATE(3305), 3, + STATE(3466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222881,24 +222850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102894] = 8, - ACTIONS(1583), 1, + [102586] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5934), 2, + ACTIONS(5936), 2, sym_number, sym_private_property_identifier, - STATE(3455), 3, + STATE(3435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222930,32 +222899,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102951] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, + [102643] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5936), 2, - sym_number, - sym_private_property_identifier, - STATE(3386), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -222979,77 +222949,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103008] = 4, - ACTIONS(3604), 1, + [102702] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, anon_sym_EQ, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3786), 4, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103057] = 8, - ACTIONS(1583), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102761] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5938), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3303), 3, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223073,24 +223050,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103114] = 8, - ACTIONS(1583), 1, + [102822] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5940), 2, + ACTIONS(5938), 2, sym_number, sym_private_property_identifier, - STATE(3466), 3, + STATE(3438), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223122,24 +223099,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103171] = 8, - ACTIONS(1583), 1, + [102879] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5942), 2, + ACTIONS(5940), 2, sym_number, sym_private_property_identifier, - STATE(3399), 3, + STATE(3357), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223171,24 +223148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103228] = 8, - ACTIONS(1583), 1, + [102936] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5944), 2, + ACTIONS(5942), 2, sym_number, sym_private_property_identifier, - STATE(3408), 3, + STATE(3450), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223220,35 +223197,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103285] = 11, - ACTIONS(1505), 1, + [102993] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103052] = 30, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103153] = 9, + ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(5665), 1, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5047), 1, anon_sym_RBRACE, - STATE(5136), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 23, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223272,24 +223368,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103348] = 8, - ACTIONS(1583), 1, + [103212] = 4, + ACTIONS(4869), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4865), 17, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4867), 20, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [103261] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5946), 2, + ACTIONS(5944), 2, sym_number, sym_private_property_identifier, - STATE(3406), 3, + STATE(3441), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223321,47 +223462,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103405] = 12, - ACTIONS(1505), 1, + [103318] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5946), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, + STATE(3460), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2314), 20, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -223374,32 +223511,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103470] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, + [103375] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5948), 2, - sym_number, - sym_private_property_identifier, - STATE(3336), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223423,80 +223561,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103527] = 6, - ACTIONS(3485), 1, - anon_sym_EQ, - ACTIONS(3632), 1, - anon_sym_in, - ACTIONS(3635), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103580] = 9, + [103434] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(722), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4947), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(1956), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + ACTIONS(1954), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223520,33 +223611,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103639] = 9, + [103493] = 9, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(697), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, + ACTIONS(1938), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223570,24 +223661,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103698] = 8, - ACTIONS(1583), 1, + [103552] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5950), 2, + ACTIONS(5948), 2, sym_number, sym_private_property_identifier, - STATE(3451), 3, + STATE(3461), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223619,33 +223710,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103755] = 9, + [103609] = 9, ACTIONS(237), 1, anon_sym_COMMA, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - STATE(5129), 1, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4964), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(1956), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103668] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5950), 2, + sym_number, + sym_private_property_identifier, + STATE(3361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223669,33 +223809,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103814] = 9, + [103725] = 9, ACTIONS(237), 1, anon_sym_COMMA, ACTIONS(724), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - STATE(5129), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5131), 1, + STATE(4964), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, + ACTIONS(1938), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223719,12 +223859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103873] = 8, - ACTIONS(1583), 1, + [103784] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -223732,11 +223872,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5952), 2, sym_number, sym_private_property_identifier, - STATE(3454), 3, + STATE(3365), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -223768,32 +223908,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103930] = 8, - ACTIONS(1583), 1, + [103841] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5954), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3439), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223817,14 +223960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103987] = 11, + [103904] = 11, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5043), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, @@ -223835,14 +223978,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - ACTIONS(5827), 2, + ACTIONS(5882), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3887), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -223869,83 +224012,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104050] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [103967] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5954), 2, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [104109] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, + STATE(3422), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -223969,19 +224061,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104168] = 4, - ACTIONS(3596), 1, + [104024] = 6, + ACTIONS(3501), 1, anon_sym_EQ, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3419), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223989,12 +224084,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 24, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -224014,69 +224108,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104217] = 9, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + [104077] = 4, + ACTIONS(3592), 1, anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(3419), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1936), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [104276] = 4, - ACTIONS(3730), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104126] = 4, + ACTIONS(3604), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -224084,10 +224173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3423), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -224108,11 +224198,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104324] = 3, + [104175] = 30, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(2282), 1, + sym_arguments, + STATE(2667), 1, + sym_type_arguments, + STATE(4965), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 12, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104276] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224125,7 +224286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1811), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224151,11 +224312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104370] = 3, + [104322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, + ACTIONS(1779), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224168,7 +224329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(1781), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224194,55 +224355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104416] = 4, - ACTIONS(3736), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [104464] = 3, + [104368] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224255,7 +224372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224281,12 +224398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104510] = 3, + [104414] = 4, + ACTIONS(5964), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 12, - sym__automatic_semicolon, + ACTIONS(1671), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -224298,7 +224416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5960), 25, + ACTIONS(1673), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224324,29 +224442,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104556] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(5964), 1, - anon_sym_LPAREN, - ACTIONS(5966), 1, - anon_sym_DOT, - STATE(2747), 1, - sym_arguments, - STATE(5376), 1, - sym_type_arguments, + [104462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 7, + ACTIONS(1789), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3515), 25, + ACTIONS(1791), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224372,11 +224485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104612] = 3, + [104508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(5968), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224389,7 +224502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(5966), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224415,11 +224528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104658] = 3, + [104554] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5974), 12, + ACTIONS(5972), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224432,7 +224545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5972), 25, + ACTIONS(5970), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224458,13 +224571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104704] = 4, - ACTIONS(5976), 1, - sym__automatic_semicolon, + [104600] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 11, + ACTIONS(5976), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -224476,7 +224588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1811), 25, + ACTIONS(5974), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224502,11 +224614,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104752] = 3, + [104646] = 4, + ACTIONS(3720), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 12, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104694] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224519,7 +224675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5960), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224545,7 +224701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104798] = 3, + [104740] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -224588,11 +224744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104844] = 3, + [104786] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 12, + ACTIONS(5972), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224605,7 +224761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5982), 25, + ACTIONS(5970), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224631,11 +224787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104890] = 3, + [104832] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 12, + ACTIONS(5972), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224648,7 +224804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5982), 25, + ACTIONS(5970), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224674,11 +224830,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104936] = 3, + [104878] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224691,7 +224847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5982), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224717,54 +224873,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [104982] = 3, + [104924] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2194), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5988), 12, - sym__automatic_semicolon, + ACTIONS(1775), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5986), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [105028] = 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [104974] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(5972), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224777,7 +224935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(5970), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224803,17 +224961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105074] = 5, - ACTIONS(5998), 1, - anon_sym_SEMI, - ACTIONS(6001), 1, - sym__automatic_semicolon, + [105020] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5996), 10, + ACTIONS(5976), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -224822,7 +224978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5994), 25, + ACTIONS(5974), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224848,11 +225004,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105124] = 3, + [105066] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6005), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224865,7 +225021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6003), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224891,11 +225047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105170] = 3, + [105112] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, + ACTIONS(5988), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224908,7 +225064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224934,11 +225090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105216] = 3, + [105158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 12, + ACTIONS(5992), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -224951,7 +225107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(5990), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -224977,7 +225133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105262] = 3, + [105204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -225020,57 +225176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105308] = 4, - ACTIONS(3698), 1, - anon_sym_EQ, + [105250] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105356] = 4, - ACTIONS(6015), 1, + ACTIONS(5996), 12, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1659), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -225082,7 +225193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1661), 25, + ACTIONS(5994), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225108,11 +225219,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105404] = 3, + [105296] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6019), 12, + ACTIONS(6000), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225125,7 +225236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6017), 25, + ACTIONS(5998), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225151,148 +225262,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105450] = 9, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2292), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [105508] = 4, - ACTIONS(3712), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105556] = 4, - ACTIONS(3708), 1, - anon_sym_EQ, + [105342] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105604] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6023), 12, + ACTIONS(6004), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225305,7 +225279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6021), 25, + ACTIONS(6002), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225331,11 +225305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105650] = 3, + [105388] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1723), 12, + ACTIONS(6008), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225348,7 +225322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1725), 25, + ACTIONS(6006), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225374,11 +225348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105696] = 3, + [105434] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225391,7 +225365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225417,11 +225391,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105742] = 3, + [105480] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225434,7 +225408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225460,19 +225434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105788] = 4, - ACTIONS(3706), 1, + [105526] = 4, + ACTIONS(3716), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -225480,7 +225454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -225504,56 +225478,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105836] = 4, - ACTIONS(3728), 1, - anon_sym_EQ, + [105574] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(5980), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105884] = 3, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5978), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105620] = 4, + ACTIONS(6010), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 12, - sym__automatic_semicolon, + ACTIONS(1779), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -225565,7 +225539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(1781), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225591,11 +225565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105930] = 3, + [105668] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6027), 12, + ACTIONS(5988), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225608,7 +225582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6025), 25, + ACTIONS(5986), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225634,13 +225608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [105976] = 4, - ACTIONS(6029), 1, - sym__automatic_semicolon, + [105714] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 11, + ACTIONS(5980), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -225652,7 +225625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1811), 25, + ACTIONS(5978), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225678,7 +225651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106024] = 3, + [105760] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -225721,12 +225694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106070] = 3, + [105806] = 4, + ACTIONS(6012), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, - sym__automatic_semicolon, + ACTIONS(1779), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -225738,7 +225712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(1781), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225764,7 +225738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106116] = 3, + [105854] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -225807,15 +225781,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106162] = 3, + [105900] = 4, + ACTIONS(3714), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 12, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105948] = 5, + ACTIONS(6018), 1, + anon_sym_SEMI, + ACTIONS(6021), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6016), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -225824,7 +225844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5982), 25, + ACTIONS(6014), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225850,11 +225870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106208] = 3, + [105998] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, + ACTIONS(5962), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225867,7 +225887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(5960), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225893,17 +225913,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106254] = 5, - ACTIONS(6035), 1, - anon_sym_SEMI, - ACTIONS(6038), 1, + [106044] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 12, sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5960), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106090] = 4, + ACTIONS(3718), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106138] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6033), 10, + ACTIONS(5972), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -225912,7 +226017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6031), 25, + ACTIONS(5970), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225938,11 +226043,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106304] = 3, + [106184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 12, + ACTIONS(5976), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225955,7 +226060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5960), 25, + ACTIONS(5974), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225981,11 +226086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106350] = 3, + [106230] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(6025), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -225998,7 +226103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(6023), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226024,11 +226129,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106396] = 3, + [106276] = 4, + ACTIONS(3722), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106324] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6027), 12, + ACTIONS(5972), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226041,7 +226190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6025), 25, + ACTIONS(5970), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226067,11 +226216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106442] = 3, + [106370] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(5976), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226084,7 +226233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(5974), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226110,54 +226259,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106488] = 3, + [106416] = 4, + ACTIONS(3724), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 12, - sym__automatic_semicolon, + ACTIONS(3419), 13, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6011), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106534] = 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(5980), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226170,7 +226320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(5978), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226196,11 +226346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106580] = 3, + [106510] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 12, + ACTIONS(5958), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226213,7 +226363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(5956), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226239,11 +226389,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106626] = 3, + [106556] = 4, + ACTIONS(3732), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106604] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226256,7 +226450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(5978), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226282,11 +226476,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106672] = 3, + [106650] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 12, + ACTIONS(5980), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226299,7 +226493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6011), 25, + ACTIONS(5978), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226325,11 +226519,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106718] = 3, + [106696] = 4, + ACTIONS(3688), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106744] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5972), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226342,7 +226580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(5970), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226368,24 +226606,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106764] = 3, + [106790] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5968), 25, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226409,14 +226655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106810] = 3, + [106848] = 4, + ACTIONS(6027), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 12, - sym__automatic_semicolon, + ACTIONS(1671), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -226428,7 +226673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5956), 25, + ACTIONS(1673), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226454,59 +226699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106856] = 4, - ACTIONS(3704), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3435), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3439), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [106904] = 3, + [106896] = 5, + ACTIONS(6033), 1, + anon_sym_SEMI, + ACTIONS(6036), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5974), 12, - sym__automatic_semicolon, + ACTIONS(6031), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -226515,7 +226718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5972), 25, + ACTIONS(6029), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226541,11 +226744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106950] = 3, + [106946] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 12, + ACTIONS(5984), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226558,7 +226761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5990), 25, + ACTIONS(5982), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226584,19 +226787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [106996] = 4, - ACTIONS(3718), 1, + [106992] = 4, + ACTIONS(3736), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3419), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -226604,7 +226807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3439), 23, + ACTIONS(3423), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -226628,51 +226831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107044] = 4, - ACTIONS(6040), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1659), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1661), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107092] = 3, + [107040] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -226715,56 +226874,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107138] = 5, - ACTIONS(87), 1, - anon_sym_BQUOTE, - STATE(2315), 1, - sym_template_string, + [107086] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1877), 13, + ACTIONS(5976), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5974), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107132] = 8, + ACTIONS(3519), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1879), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6038), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(6040), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, + STATE(2759), 1, + sym_arguments, + STATE(5279), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3515), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3513), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, [107188] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 12, + ACTIONS(5980), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -226777,7 +226982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5960), 25, + ACTIONS(5978), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226846,29 +227051,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107280] = 7, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(5665), 1, - anon_sym_RBRACE, - STATE(5136), 1, - aux_sym_object_repeat1, + [107280] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(1789), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + anon_sym_AT, + ACTIONS(1791), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226892,7 +227091,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107333] = 3, + anon_sym_abstract, + anon_sym_accessor, + [107325] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -226934,14 +227135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107378] = 14, + [107370] = 14, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(6046), 1, anon_sym_STAR, @@ -226949,7 +227150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(6052), 1, anon_sym_readonly, - STATE(2762), 1, + STATE(2766), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -226960,11 +227161,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6054), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3791), 3, + STATE(3877), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -226987,28 +227188,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107445] = 6, - ACTIONS(4429), 1, - anon_sym_EQ, + [107437] = 5, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2138), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4088), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4090), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [107486] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6058), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + anon_sym_AT, + ACTIONS(6056), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227032,23 +227272,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107496] = 3, + anon_sym_abstract, + anon_sym_accessor, + [107531] = 6, + ACTIONS(4639), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 11, - anon_sym_STAR, + ACTIONS(5607), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1811), 25, + ACTIONS(1954), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227072,30 +227319,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107541] = 6, - ACTIONS(4429), 1, - anon_sym_EQ, + [107582] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1938), 6, + ACTIONS(1779), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_private_property_identifier, - ACTIONS(1936), 23, + anon_sym_AT, + ACTIONS(1781), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227119,73 +227359,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107592] = 5, - ACTIONS(4535), 1, - anon_sym_LPAREN, - STATE(2088), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4220), 21, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [107641] = 7, - ACTIONS(5533), 1, + anon_sym_abstract, + anon_sym_accessor, + [107627] = 7, + ACTIONS(5235), 1, anon_sym_COMMA, - ACTIONS(5665), 1, + ACTIONS(5634), 1, anon_sym_RBRACE, - STATE(5136), 1, + STATE(5170), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, + ACTIONS(3786), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, + ACTIONS(1956), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + ACTIONS(1954), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227209,11 +227407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107694] = 3, + [107680] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6058), 11, + ACTIONS(6062), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227225,7 +227423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6056), 25, + ACTIONS(6060), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227251,11 +227449,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107739] = 3, + [107725] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1723), 11, + ACTIONS(6066), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -227267,7 +227465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1725), 25, + ACTIONS(6064), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227293,7 +227491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107784] = 3, + [107770] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -227335,23 +227533,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107829] = 3, + [107815] = 6, + ACTIONS(4639), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6066), 11, - anon_sym_STAR, + ACTIONS(5607), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6064), 25, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227375,25 +227578,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107874] = 3, + [107866] = 7, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6058), 11, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6056), 25, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227417,14 +227624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, [107919] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(6046), 1, anon_sym_STAR, @@ -227437,11 +227642,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6054), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3791), 3, + STATE(3877), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -227467,34 +227672,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107977] = 9, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(6068), 1, - anon_sym_EQ_GT, + [107977] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3582), 9, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_LT, - anon_sym_QMARK, - STATE(3791), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3580), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -227514,38 +227711,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108033] = 10, + anon_sym_abstract, + anon_sym_accessor, + [108021] = 11, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6070), 1, + ACTIONS(6046), 1, anon_sym_STAR, + ACTIONS(6048), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6072), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - ACTIONS(6074), 2, + ACTIONS(6054), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3833), 3, + STATE(3877), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 21, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -227562,26 +227762,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108091] = 5, + [108081] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6068), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 4, + ACTIONS(6070), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6072), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1938), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1936), 23, + STATE(3898), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227591,8 +227798,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227605,37 +227810,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108139] = 5, + [108139] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6068), 1, + anon_sym_STAR, + ACTIONS(6074), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 4, + ACTIONS(6070), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6072), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1942), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1940), 23, + STATE(3898), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227648,47 +227859,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108187] = 10, - ACTIONS(1505), 1, + [108199] = 17, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(6076), 1, + ACTIONS(4755), 1, anon_sym_STAR, + ACTIONS(4759), 1, + anon_sym_async, + ACTIONS(4778), 1, + anon_sym_accessor, + ACTIONS(6076), 1, + anon_sym_static, + ACTIONS(6078), 1, + anon_sym_readonly, + ACTIONS(6080), 1, + anon_sym_declare, + ACTIONS(6082), 1, + anon_sym_abstract, + STATE(2764), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6078), 2, + ACTIONS(4761), 2, sym_number, sym_private_property_identifier, - ACTIONS(6080), 2, + ACTIONS(4765), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3804), 3, + STATE(3033), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 21, + ACTIONS(3646), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -227696,17 +227914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108245] = 11, + [108271] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6082), 1, - anon_sym_STAR, ACTIONS(6084), 1, - anon_sym_async, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -227716,19 +227932,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6088), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3883), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -227745,39 +227962,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108305] = 11, + [108329] = 10, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6076), 1, - anon_sym_STAR, ACTIONS(6090), 1, - anon_sym_async, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6078), 2, + ACTIONS(6092), 2, sym_number, sym_private_property_identifier, - ACTIONS(6080), 2, + ACTIONS(6094), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3804), 3, + STATE(3831), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 20, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -227794,41 +228010,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108365] = 17, - ACTIONS(1583), 1, + [108387] = 17, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4748), 1, + ACTIONS(5136), 1, anon_sym_STAR, - ACTIONS(4752), 1, + ACTIONS(5138), 1, anon_sym_async, - ACTIONS(4774), 1, - anon_sym_accessor, - ACTIONS(6092), 1, + ACTIONS(6098), 1, anon_sym_static, - ACTIONS(6094), 1, + ACTIONS(6100), 1, anon_sym_readonly, - ACTIONS(6096), 1, + ACTIONS(6102), 1, anon_sym_declare, - ACTIONS(6098), 1, + ACTIONS(6104), 1, anon_sym_abstract, - STATE(2746), 1, + ACTIONS(6106), 1, + anon_sym_accessor, + STATE(2747), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4758), 2, + ACTIONS(5144), 2, anon_sym_get, anon_sym_set, - STATE(3017), 3, + ACTIONS(6096), 2, + sym_number, + sym_private_property_identifier, + STATE(3035), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -227849,54 +228065,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108437] = 17, - ACTIONS(1583), 1, + [108459] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1585), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5043), 1, - anon_sym_STAR, - ACTIONS(5045), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(6102), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(6104), 1, anon_sym_readonly, - ACTIONS(6106), 1, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(6108), 1, - anon_sym_abstract, - ACTIONS(6110), 1, - anon_sym_accessor, - STATE(2763), 1, - sym_override_modifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108507] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5051), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6100), 2, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3021), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 16, + ACTIONS(1936), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -227904,31 +228151,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108509] = 11, + [108555] = 11, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6046), 1, + ACTIONS(6084), 1, anon_sym_STAR, - ACTIONS(6048), 1, + ACTIONS(6108), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - ACTIONS(6054), 2, + ACTIONS(6088), 2, anon_sym_get, anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3791), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -227953,33 +228200,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108569] = 10, + [108615] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6082), 1, - anon_sym_STAR, + ACTIONS(6110), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - ACTIONS(6088), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3883), 3, + STATE(3877), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 21, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227989,6 +228233,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -228001,26 +228247,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108627] = 3, + [108671] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3572), 9, - anon_sym_STAR, + ACTIONS(5527), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_LT, + anon_sym_QMARK, + STATE(3907), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108724] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, + ACTIONS(1507), 1, anon_sym_SQUOTE, - anon_sym_LT, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5422), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3570), 26, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3771), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, anon_sym_async, anon_sym_new, sym_identifier, @@ -228040,38 +228337,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [108671] = 13, - ACTIONS(1583), 1, + [108777] = 8, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6114), 1, - anon_sym_static, - ACTIONS(6116), 1, - anon_sym_readonly, - ACTIONS(6118), 1, - anon_sym_abstract, - ACTIONS(6120), 1, - anon_sym_accessor, - STATE(2795), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(6112), 2, sym_number, sym_private_property_identifier, - STATE(3445), 3, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3903), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 20, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228079,12 +228366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -228092,24 +228382,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108734] = 8, + [108830] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6122), 2, + ACTIONS(5365), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3866), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228137,24 +228427,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108787] = 8, + [108883] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6124), 2, + ACTIONS(5465), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3879), 3, + STATE(3936), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228182,24 +228472,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108840] = 8, + [108936] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(5497), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3883), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228227,24 +228517,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108893] = 8, + [108989] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5601), 2, + ACTIONS(6114), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3785), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228272,24 +228562,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108946] = 8, + [109042] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5203), 2, + ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3853), 3, + STATE(3944), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228317,24 +228607,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108999] = 8, + [109095] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5456), 2, + ACTIONS(6116), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3911), 3, + STATE(3945), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228362,24 +228652,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109052] = 8, + [109148] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, + ACTIONS(6092), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3791), 3, + STATE(3831), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228407,74 +228697,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109105] = 13, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_static, - ACTIONS(4927), 1, - anon_sym_readonly, - ACTIONS(4929), 1, - anon_sym_abstract, - ACTIONS(4931), 1, - anon_sym_accessor, - STATE(2782), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4923), 2, - sym_number, - sym_private_property_identifier, - STATE(3437), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109168] = 8, + [109201] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6078), 2, + ACTIONS(5426), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3804), 3, + STATE(3915), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228502,24 +228742,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109221] = 8, + [109254] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5181), 2, + ACTIONS(5599), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3893), 3, + STATE(3961), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228547,118 +228787,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109274] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, + [109307] = 6, + ACTIONS(6118), 1, + anon_sym_AT, + STATE(2702), 1, + aux_sym_export_statement_repeat1, + STATE(2756), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3926), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109327] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(3552), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5639), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3914), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109380] = 8, - ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5379), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3857), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3550), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228682,24 +228828,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109433] = 8, + anon_sym_abstract, + anon_sym_accessor, + [109356] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5383), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3868), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228727,24 +228875,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109486] = 8, + [109409] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, + ACTIONS(5569), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3813), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228772,118 +228920,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109539] = 8, - ACTIONS(1505), 1, + [109462] = 13, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5401), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3869), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(3672), 1, anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109592] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5409), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3908), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, + ACTIONS(4945), 1, anon_sym_static, + ACTIONS(4947), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109645] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, + ACTIONS(4949), 1, + anon_sym_abstract, + ACTIONS(4951), 1, + anon_sym_accessor, + STATE(2794), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6126), 2, + ACTIONS(4943), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3795), 3, + STATE(3434), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228891,15 +228957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -228907,24 +228970,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109698] = 8, + [109525] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6128), 2, + ACTIONS(5628), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3802), 3, + STATE(3960), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -228952,28 +229015,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109751] = 8, - ACTIONS(1505), 1, + [109578] = 13, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(6123), 1, + anon_sym_static, + ACTIONS(6125), 1, + anon_sym_readonly, + ACTIONS(6127), 1, + anon_sym_abstract, + ACTIONS(6129), 1, + anon_sym_accessor, + STATE(2804), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6072), 2, + ACTIONS(6121), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3833), 3, + STATE(3447), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228981,15 +229052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -228997,24 +229065,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109804] = 8, + [109641] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5483), 2, + ACTIONS(5255), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3902), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229042,24 +229110,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109857] = 8, + [109694] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6130), 2, + ACTIONS(6131), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3924), 3, + STATE(3767), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229087,24 +229155,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109910] = 8, + [109747] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5509), 2, + ACTIONS(6133), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3826), 3, + STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229132,24 +229200,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109963] = 8, + [109800] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5413), 2, + ACTIONS(5475), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3864), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229177,24 +229245,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110016] = 8, + [109853] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5328), 2, + ACTIONS(5479), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3888), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229222,24 +229290,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110069] = 8, + [109906] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5414), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3916), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229267,24 +229335,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110122] = 6, - ACTIONS(6132), 1, - anon_sym_AT, - STATE(2717), 1, - aux_sym_export_statement_repeat1, - STATE(2749), 1, - sym_decorator, + [109959] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5280), 2, sym_number, sym_private_property_identifier, - ACTIONS(3581), 25, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3858), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229308,26 +229380,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110171] = 8, + [110012] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5553), 2, + ACTIONS(6135), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3816), 3, + STATE(3860), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229355,24 +229425,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110224] = 8, + [110065] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6135), 2, + ACTIONS(5443), 2, sym_number, sym_private_property_identifier, - ACTIONS(3758), 3, + ACTIONS(3786), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3850), 3, + STATE(3803), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229400,24 +229470,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110277] = 9, + [110118] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6137), 1, - anon_sym_RBRACE, - STATE(4823), 1, - sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6139), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - STATE(4037), 3, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3877), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229445,24 +229515,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110331] = 9, + [110171] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6141), 1, - anon_sym_RBRACE, - STATE(5484), 1, - sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(6070), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229490,24 +229560,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110385] = 9, + [110224] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6145), 1, - anon_sym_RBRACE, - STATE(5484), 1, - sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(5177), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3889), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229535,43 +229605,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110439] = 12, - ACTIONS(1583), 1, + [110277] = 14, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5910), 1, - anon_sym_readonly, - ACTIONS(6147), 1, + ACTIONS(5043), 1, anon_sym_STAR, - STATE(2758), 1, + ACTIONS(6137), 1, + anon_sym_static, + STATE(2763), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6149), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - ACTIONS(6151), 2, + ACTIONS(2320), 2, anon_sym_get, anon_sym_set, - STATE(3010), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 19, + ACTIONS(2314), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -229583,65 +229655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110499] = 22, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2346), 1, - anon_sym_type, - ACTIONS(2348), 1, - anon_sym_namespace, - ACTIONS(2350), 1, - anon_sym_import, - ACTIONS(2352), 1, - anon_sym_var, - ACTIONS(2354), 1, - anon_sym_let, - ACTIONS(2356), 1, - anon_sym_const, - ACTIONS(2358), 1, - anon_sym_class, - ACTIONS(2360), 1, - anon_sym_async, - ACTIONS(2362), 1, - anon_sym_function, - ACTIONS(2364), 1, - anon_sym_declare, - ACTIONS(2368), 1, - anon_sym_abstract, - ACTIONS(2372), 1, - anon_sym_interface, - ACTIONS(2374), 1, - anon_sym_enum, - ACTIONS(3760), 1, - anon_sym_module, - ACTIONS(6153), 1, - anon_sym_default, - STATE(1290), 1, - sym_decorator, - STATE(3962), 1, - sym_declaration, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4399), 1, - sym_internal_module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4393), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [110579] = 22, + [110341] = 22, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2238), 1, @@ -229662,6 +229676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(2262), 1, anon_sym_declare, + ACTIONS(2264), 1, + anon_sym_module, ACTIONS(2266), 1, anon_sym_abstract, ACTIONS(2268), 1, @@ -229670,22 +229686,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2296), 1, anon_sym_type, - ACTIONS(2298), 1, - anon_sym_module, - ACTIONS(2300), 1, - anon_sym_global, - STATE(811), 1, - sym_internal_module, - STATE(886), 1, + ACTIONS(6139), 1, + anon_sym_default, + STATE(831), 1, sym_declaration, - STATE(1290), 1, + STATE(877), 1, + sym_internal_module, + STATE(1282), 1, sym_decorator, - STATE(4284), 1, + STATE(4008), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(852), 13, + STATE(887), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -229699,49 +229713,134 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [110659] = 14, - ACTIONS(1583), 1, + [110421] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5057), 1, - anon_sym_STAR, - ACTIONS(5059), 1, + ACTIONS(6141), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(5063), 1, - anon_sym_readonly, - ACTIONS(6155), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - STATE(2766), 1, - sym_override_modifier, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110475] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6145), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5061), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(5065), 2, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3055), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110529] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6147), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 17, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -229749,7 +229848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110723] = 22, + [110583] = 22, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2346), 1, @@ -229782,18 +229881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2374), 1, anon_sym_enum, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, - STATE(4367), 1, - aux_sym_export_statement_repeat1, - STATE(4399), 1, + STATE(4073), 1, sym_internal_module, - STATE(4415), 1, + STATE(4194), 1, sym_declaration, + STATE(4283), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4393), 13, + STATE(4060), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -229807,57 +229906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [110803] = 14, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(3672), 1, - anon_sym_override, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, - ACTIONS(6157), 1, - anon_sym_static, - STATE(2748), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4435), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [110867] = 22, + [110663] = 22, ACTIONS(97), 1, anon_sym_AT, ACTIONS(2242), 1, @@ -229882,26 +229931,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2296), 1, anon_sym_type, + ACTIONS(2300), 1, + anon_sym_global, ACTIONS(2306), 1, anon_sym_namespace, ACTIONS(2308), 1, anon_sym_declare, - ACTIONS(2310), 1, + ACTIONS(2324), 1, anon_sym_module, - ACTIONS(6159), 1, - anon_sym_default, - STATE(811), 1, - sym_internal_module, - STATE(843), 1, + STATE(864), 1, sym_declaration, - STATE(1290), 1, + STATE(877), 1, + sym_internal_module, + STATE(1282), 1, sym_decorator, - STATE(4284), 1, + STATE(4008), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(852), 13, + STATE(887), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -229915,16 +229964,16 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [110947] = 9, + [110743] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6161), 1, + ACTIONS(6149), 1, anon_sym_RBRACE, - STATE(5484), 1, + STATE(5374), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, @@ -229932,7 +229981,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + STATE(4546), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -229960,16 +230009,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111001] = 9, + [110797] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6163), 1, + ACTIONS(6151), 1, anon_sym_RBRACE, - STATE(5484), 1, + STATE(5374), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, @@ -229977,7 +230026,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + STATE(4546), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230005,39 +230054,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111055] = 14, - ACTIONS(1505), 1, + [110851] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(2322), 1, + ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(4637), 1, anon_sym_STAR, - ACTIONS(6165), 1, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + ACTIONS(6153), 1, anon_sym_static, - STATE(2756), 1, + STATE(2745), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(4645), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, + ACTIONS(4649), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3059), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 17, + ACTIONS(3646), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230055,82 +230104,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111119] = 22, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(2238), 1, - anon_sym_namespace, - ACTIONS(2242), 1, - anon_sym_import, - ACTIONS(2244), 1, - anon_sym_var, - ACTIONS(2246), 1, - anon_sym_let, - ACTIONS(2248), 1, - anon_sym_const, - ACTIONS(2253), 1, - anon_sym_class, - ACTIONS(2255), 1, - anon_sym_async, - ACTIONS(2257), 1, - anon_sym_function, - ACTIONS(2262), 1, - anon_sym_declare, - ACTIONS(2264), 1, - anon_sym_module, - ACTIONS(2266), 1, - anon_sym_abstract, - ACTIONS(2268), 1, - anon_sym_interface, - ACTIONS(2270), 1, - anon_sym_enum, - ACTIONS(2296), 1, - anon_sym_type, - ACTIONS(6167), 1, - anon_sym_default, - STATE(811), 1, - sym_internal_module, - STATE(843), 1, - sym_declaration, - STATE(1290), 1, - sym_decorator, - STATE(4284), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(852), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [111199] = 9, + [110915] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6169), 1, + ACTIONS(6155), 1, anon_sym_RBRACE, - STATE(4815), 1, + STATE(5374), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6171), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(3979), 3, + STATE(4546), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230158,9 +230149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111253] = 22, + [110969] = 22, ACTIONS(97), 1, anon_sym_AT, + ACTIONS(2238), 1, + anon_sym_namespace, ACTIONS(2242), 1, anon_sym_import, ACTIONS(2244), 1, @@ -230175,6 +230168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(2257), 1, anon_sym_function, + ACTIONS(2262), 1, + anon_sym_declare, ACTIONS(2266), 1, anon_sym_abstract, ACTIONS(2268), 1, @@ -230183,26 +230178,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2296), 1, anon_sym_type, + ACTIONS(2298), 1, + anon_sym_module, ACTIONS(2300), 1, anon_sym_global, - ACTIONS(2306), 1, - anon_sym_namespace, - ACTIONS(2308), 1, - anon_sym_declare, - ACTIONS(2324), 1, - anon_sym_module, - STATE(811), 1, - sym_internal_module, - STATE(886), 1, + STATE(864), 1, sym_declaration, - STATE(1290), 1, + STATE(877), 1, + sym_internal_module, + STATE(1282), 1, sym_decorator, - STATE(4284), 1, + STATE(4008), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(852), 13, + STATE(887), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -230216,28 +230207,35 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111333] = 9, - ACTIONS(1505), 1, + [111049] = 12, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(6173), 1, - anon_sym_RBRACE, - STATE(5484), 1, - sym_enum_assignment, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6161), 1, + anon_sym_readonly, + STATE(2742), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(6159), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + ACTIONS(6163), 2, + anon_sym_get, + anon_sym_set, + STATE(3011), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230246,14 +230244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -230261,114 +230255,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111387] = 9, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(6175), 1, - anon_sym_RBRACE, - STATE(5484), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6143), 2, - sym_number, - sym_private_property_identifier, - STATE(4531), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, - anon_sym_export, + [111109] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2346), 1, anon_sym_type, + ACTIONS(2348), 1, anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3788), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111441] = 9, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - ACTIONS(6177), 1, - anon_sym_RBRACE, - STATE(5484), 1, - sym_enum_assignment, + ACTIONS(6165), 1, + anon_sym_default, + STATE(1282), 1, + sym_decorator, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4419), 1, + sym_declaration, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, - sym_number, - sym_private_property_identifier, - STATE(4531), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [111189] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2238), 1, anon_sym_namespace, + ACTIONS(2242), 1, + anon_sym_import, + ACTIONS(2244), 1, + anon_sym_var, + ACTIONS(2246), 1, anon_sym_let, + ACTIONS(2248), 1, + anon_sym_const, + ACTIONS(2253), 1, + anon_sym_class, + ACTIONS(2255), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(2257), 1, + anon_sym_function, + ACTIONS(2262), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2264), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111495] = 9, + ACTIONS(2266), 1, + anon_sym_abstract, + ACTIONS(2268), 1, + anon_sym_interface, + ACTIONS(2270), 1, + anon_sym_enum, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(6167), 1, + anon_sym_default, + STATE(831), 1, + sym_declaration, + STATE(877), 1, + sym_internal_module, + STATE(1282), 1, + sym_decorator, + STATE(4008), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(887), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [111269] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6179), 1, + ACTIONS(6169), 1, anon_sym_RBRACE, - STATE(5484), 1, + STATE(4988), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(6171), 2, sym_number, sym_private_property_identifier, - STATE(4531), 3, + STATE(4307), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230396,11 +230416,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111549] = 22, + [111323] = 22, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(2238), 1, - anon_sym_namespace, ACTIONS(2242), 1, anon_sym_import, ACTIONS(2244), 1, @@ -230415,10 +230433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(2257), 1, anon_sym_function, - ACTIONS(2262), 1, - anon_sym_declare, - ACTIONS(2264), 1, - anon_sym_module, ACTIONS(2266), 1, anon_sym_abstract, ACTIONS(2268), 1, @@ -230427,20 +230441,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2296), 1, anon_sym_type, - ACTIONS(6181), 1, + ACTIONS(2306), 1, + anon_sym_namespace, + ACTIONS(2308), 1, + anon_sym_declare, + ACTIONS(2310), 1, + anon_sym_module, + ACTIONS(6173), 1, anon_sym_default, - STATE(811), 1, - sym_internal_module, - STATE(843), 1, + STATE(831), 1, sym_declaration, - STATE(1290), 1, + STATE(877), 1, + sym_internal_module, + STATE(1282), 1, sym_decorator, - STATE(4284), 1, + STATE(4008), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(852), 13, + STATE(887), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -230454,28 +230474,28 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [111629] = 12, - ACTIONS(1583), 1, + [111403] = 12, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, ACTIONS(3672), 1, anon_sym_override, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6187), 1, + ACTIONS(5872), 1, anon_sym_readonly, - STATE(2745), 1, + ACTIONS(6175), 1, + anon_sym_STAR, + STATE(2750), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6185), 2, + ACTIONS(6177), 2, sym_number, sym_private_property_identifier, - ACTIONS(6189), 2, + ACTIONS(6179), 2, anon_sym_get, anon_sym_set, STATE(3023), 3, @@ -230502,40 +230522,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111689] = 11, - ACTIONS(1583), 1, + [111463] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5513), 1, - anon_sym_async, - ACTIONS(6191), 1, - anon_sym_readonly, + ACTIONS(6181), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5515), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(5517), 2, - anon_sym_get, - anon_sym_set, - STATE(3044), 3, + STATE(4546), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 19, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -230548,45 +230567,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111746] = 11, - ACTIONS(1505), 1, + [111517] = 14, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(2316), 1, - anon_sym_async, - ACTIONS(2318), 1, - anon_sym_readonly, - ACTIONS(4736), 1, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4965), 1, + ACTIONS(5124), 1, anon_sym_STAR, + ACTIONS(5126), 1, + anon_sym_async, + ACTIONS(5130), 1, + anon_sym_readonly, + ACTIONS(6183), 1, + anon_sym_static, + STATE(2755), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5128), 2, sym_number, sym_private_property_identifier, - ACTIONS(2320), 2, + ACTIONS(5132), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3120), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 19, + ACTIONS(3646), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -230594,40 +230617,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111803] = 11, - ACTIONS(1583), 1, + [111581] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4427), 1, - anon_sym_STAR, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(4433), 1, - anon_sym_async, - ACTIONS(4437), 1, - anon_sym_readonly, + ACTIONS(6185), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(4439), 2, - anon_sym_get, - anon_sym_set, - STATE(3080), 3, + STATE(4546), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 19, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -230640,29 +230662,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111860] = 9, + [111635] = 9, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6147), 1, - anon_sym_STAR, + ACTIONS(6187), 1, + anon_sym_RBRACE, + STATE(5132), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5605), 2, + ACTIONS(6189), 2, sym_number, sym_private_property_identifier, - ACTIONS(6193), 2, - anon_sym_get, - anon_sym_set, - STATE(3775), 3, + STATE(4465), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 21, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230672,6 +230693,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -230684,40 +230707,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111913] = 11, - ACTIONS(1583), 1, + [111689] = 9, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, + ACTIONS(6175), 1, anon_sym_STAR, - ACTIONS(5035), 1, - anon_sym_async, - ACTIONS(5039), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5037), 2, + ACTIONS(5626), 2, sym_number, sym_private_property_identifier, - ACTIONS(5041), 2, + ACTIONS(6191), 2, anon_sym_get, anon_sym_set, - STATE(3031), 3, + STATE(3938), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 19, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -230730,11 +230751,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111970] = 3, + [111742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 7, + ACTIONS(3515), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -230742,7 +230763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3600), 25, + ACTIONS(3513), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230768,29 +230789,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [112011] = 11, - ACTIONS(1583), 1, + [111783] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5113), 1, + ACTIONS(5043), 1, anon_sym_STAR, - ACTIONS(5115), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111840] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5161), 1, + anon_sym_STAR, + ACTIONS(5163), 1, anon_sym_async, - ACTIONS(5119), 1, + ACTIONS(5167), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5117), 2, + ACTIONS(5165), 2, sym_number, sym_private_property_identifier, - ACTIONS(5121), 2, + ACTIONS(5169), 2, anon_sym_get, anon_sym_set, - STATE(3075), 3, + STATE(3113), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230814,19 +230881,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112068] = 3, + [111897] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3617), 7, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3615), 25, + ACTIONS(1954), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230850,31 +230920,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112109] = 11, - ACTIONS(1583), 1, + [111940] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5057), 1, + ACTIONS(5001), 1, anon_sym_STAR, - ACTIONS(5059), 1, + ACTIONS(5003), 1, anon_sym_async, - ACTIONS(5063), 1, + ACTIONS(6195), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5061), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5065), 2, + ACTIONS(5009), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + ACTIONS(6193), 2, + sym_number, + sym_private_property_identifier, + STATE(3017), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -230898,30 +230966,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112166] = 3, + [111997] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3621), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(4645), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3619), 25, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112054] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5567), 1, + anon_sym_STAR, + ACTIONS(5573), 1, + anon_sym_async, + ACTIONS(6197), 1, anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5575), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5577), 2, anon_sym_get, anon_sym_set, + STATE(3038), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -230934,21 +231058,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112207] = 3, + [112111] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6199), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5628), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3515), 25, + ACTIONS(6201), 2, + anon_sym_get, + anon_sym_set, + STATE(3960), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230958,8 +231090,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -230972,32 +231102,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112248] = 3, + [112164] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, + ACTIONS(6205), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3594), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6203), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3592), 25, + STATE(3009), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231010,31 +231148,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [112289] = 11, - ACTIONS(1583), 1, + [112221] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5326), 1, + ACTIONS(5175), 1, anon_sym_STAR, - ACTIONS(5497), 1, + ACTIONS(5373), 1, anon_sym_async, - ACTIONS(6197), 1, + ACTIONS(6207), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5501), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6195), 2, + ACTIONS(5375), 2, sym_number, sym_private_property_identifier, - STATE(3014), 3, + ACTIONS(5377), 2, + anon_sym_get, + anon_sym_set, + STATE(3123), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231058,29 +231194,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112346] = 11, - ACTIONS(1583), 1, + [112278] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5344), 1, + ACTIONS(5381), 1, anon_sym_STAR, - ACTIONS(5350), 1, + ACTIONS(5383), 1, anon_sym_async, - ACTIONS(6199), 1, + ACTIONS(6209), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5385), 2, sym_number, sym_private_property_identifier, - ACTIONS(5354), 2, + ACTIONS(5387), 2, anon_sym_get, anon_sym_set, - STATE(3026), 3, + STATE(3089), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231104,33 +231240,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112403] = 11, - ACTIONS(1505), 1, + [112335] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(6046), 1, + ACTIONS(4755), 1, anon_sym_STAR, - ACTIONS(6048), 1, + ACTIONS(4759), 1, anon_sym_async, - ACTIONS(6052), 1, + ACTIONS(4763), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, + ACTIONS(4761), 2, sym_number, sym_private_property_identifier, - ACTIONS(6054), 2, + ACTIONS(4765), 2, anon_sym_get, anon_sym_set, - STATE(3791), 3, + STATE(3033), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 19, + ACTIONS(3646), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231150,29 +231286,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112460] = 11, - ACTIONS(1583), 1, + [112392] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(4748), 1, + ACTIONS(4962), 1, anon_sym_STAR, - ACTIONS(4752), 1, + ACTIONS(4964), 1, anon_sym_async, - ACTIONS(4756), 1, + ACTIONS(4968), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4754), 2, + ACTIONS(4966), 2, sym_number, sym_private_property_identifier, - ACTIONS(4758), 2, + ACTIONS(4970), 2, anon_sym_get, anon_sym_set, - STATE(3017), 3, + STATE(3094), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231196,29 +231332,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112517] = 9, + [112449] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3613), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3611), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [112490] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6201), 1, - anon_sym_STAR, + STATE(5374), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5639), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(6203), 2, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3914), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112541] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_STAR, + ACTIONS(5286), 1, + anon_sym_async, + ACTIONS(6213), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5290), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6211), 2, + sym_number, + sym_private_property_identifier, + STATE(3040), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 21, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112598] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3602), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3600), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231228,6 +231481,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231240,22 +231495,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112570] = 4, + anon_sym_abstract, + anon_sym_accessor, + [112639] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1942), 6, + ACTIONS(3590), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1940), 23, + anon_sym_AT, + ACTIONS(3588), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231279,29 +231533,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112613] = 11, - ACTIONS(1583), 1, + anon_sym_abstract, + anon_sym_accessor, + [112680] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, + ACTIONS(5136), 1, anon_sym_STAR, - ACTIONS(5084), 1, + ACTIONS(5138), 1, anon_sym_async, - ACTIONS(6207), 1, + ACTIONS(6217), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(5144), 2, anon_sym_get, anon_sym_set, - ACTIONS(6205), 2, + ACTIONS(6215), 2, sym_number, sym_private_property_identifier, - STATE(3034), 3, + STATE(3036), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231325,26 +231581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112670] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, - STATE(5484), 1, - sym_enum_assignment, + [112737] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6143), 2, + ACTIONS(3621), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(4531), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, + anon_sym_AT, + ACTIONS(3619), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231368,29 +231617,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112721] = 11, + anon_sym_abstract, + anon_sym_accessor, + [112778] = 11, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6082), 1, + ACTIONS(6046), 1, anon_sym_STAR, - ACTIONS(6084), 1, + ACTIONS(6048), 1, anon_sym_async, - ACTIONS(6209), 1, + ACTIONS(6052), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - ACTIONS(6088), 2, + ACTIONS(6054), 2, anon_sym_get, anon_sym_set, - STATE(3883), 3, + STATE(3877), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231414,29 +231665,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112778] = 11, - ACTIONS(1583), 1, + [112835] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5082), 1, + ACTIONS(5114), 1, anon_sym_STAR, - ACTIONS(5084), 1, + ACTIONS(5116), 1, anon_sym_async, - ACTIONS(6213), 1, + ACTIONS(5120), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6211), 2, + ACTIONS(5118), 2, sym_number, sym_private_property_identifier, - STATE(3008), 3, + ACTIONS(5122), 2, + anon_sym_get, + anon_sym_set, + STATE(3018), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231460,29 +231711,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112835] = 11, - ACTIONS(1583), 1, + [112892] = 11, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5389), 1, + ACTIONS(5124), 1, anon_sym_STAR, - ACTIONS(5561), 1, + ACTIONS(5126), 1, anon_sym_async, - ACTIONS(6215), 1, + ACTIONS(5130), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5563), 2, + ACTIONS(5128), 2, sym_number, sym_private_property_identifier, - ACTIONS(5565), 2, + ACTIONS(5132), 2, anon_sym_get, anon_sym_set, - STATE(3110), 3, + STATE(3120), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231506,40 +231757,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112892] = 11, - ACTIONS(1583), 1, + [112949] = 11, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(5043), 1, + ACTIONS(6084), 1, anon_sym_STAR, - ACTIONS(5045), 1, + ACTIONS(6108), 1, anon_sym_async, ACTIONS(6219), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5051), 2, + ACTIONS(6086), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6088), 2, anon_sym_get, anon_sym_set, - ACTIONS(6217), 2, + STATE(3836), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113006] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6050), 2, sym_number, sym_private_property_identifier, - STATE(3022), 3, + STATE(3877), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 19, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231552,40 +231844,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112949] = 11, - ACTIONS(1583), 1, + [113054] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_async, - ACTIONS(5102), 1, + ACTIONS(6223), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5100), 2, + ACTIONS(6221), 2, sym_number, sym_private_property_identifier, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - STATE(3069), 3, + STATE(3465), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 19, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -231598,20 +231886,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113006] = 7, + [113104] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5553), 2, + ACTIONS(6092), 2, sym_number, sym_private_property_identifier, - STATE(3816), 3, + STATE(3831), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231639,20 +231927,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113054] = 7, + [113152] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5213), 2, + ACTIONS(5497), 2, sym_number, sym_private_property_identifier, - STATE(3827), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231680,20 +231968,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113102] = 7, + [113200] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4738), 2, + ACTIONS(5599), 2, sym_number, sym_private_property_identifier, - STATE(3890), 3, + STATE(3961), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231721,20 +232009,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113150] = 7, + [113248] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5383), 2, + ACTIONS(5408), 2, sym_number, sym_private_property_identifier, - STATE(3868), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231762,65 +232050,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113198] = 7, - ACTIONS(1505), 1, + [113296] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6050), 2, - sym_number, - sym_private_property_identifier, - STATE(3791), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2314), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(6225), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113246] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(4736), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5391), 2, + ACTIONS(5940), 2, sym_number, sym_private_property_identifier, - STATE(3813), 3, + STATE(3357), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231829,7 +232078,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -231844,20 +232092,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113294] = 7, - ACTIONS(1583), 1, + [113346] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4766), 2, + ACTIONS(5940), 2, sym_number, sym_private_property_identifier, - STATE(3394), 3, + STATE(3357), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231885,20 +232133,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113342] = 7, + [113394] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5401), 2, + ACTIONS(6131), 2, sym_number, sym_private_property_identifier, - STATE(3869), 3, + STATE(3767), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231926,20 +232174,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113390] = 7, + [113442] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6124), 2, + ACTIONS(6086), 2, sym_number, sym_private_property_identifier, - STATE(3879), 3, + STATE(3836), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231967,24 +232215,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113438] = 7, - ACTIONS(1505), 1, + [113490] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5409), 2, + ACTIONS(4943), 2, sym_number, sym_private_property_identifier, - STATE(3908), 3, + STATE(3434), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232008,20 +232256,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113486] = 7, + [113538] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6126), 2, + ACTIONS(6133), 2, sym_number, sym_private_property_identifier, - STATE(3795), 3, + STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232049,24 +232297,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113534] = 7, - ACTIONS(1505), 1, + [113586] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(6229), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6128), 2, + ACTIONS(6227), 2, sym_number, sym_private_property_identifier, - STATE(3802), 3, + STATE(3312), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232075,7 +232325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232090,20 +232339,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113582] = 7, + [113636] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6086), 2, + ACTIONS(4746), 2, sym_number, sym_private_property_identifier, - STATE(3883), 3, + STATE(3917), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232131,20 +232380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113630] = 7, + [113684] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5346), 2, + ACTIONS(5493), 2, sym_number, sym_private_property_identifier, - STATE(3926), 3, + STATE(3828), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232172,145 +232421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113678] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(6223), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6221), 2, - sym_number, - sym_private_property_identifier, - STATE(3319), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113728] = 8, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5885), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5669), 2, - sym_number, - sym_private_property_identifier, - STATE(3380), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113778] = 7, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5669), 2, - sym_number, - sym_private_property_identifier, - STATE(3380), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113826] = 7, + [113732] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6072), 2, + ACTIONS(5465), 2, sym_number, sym_private_property_identifier, - STATE(3833), 3, + STATE(3936), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232338,61 +232462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113874] = 7, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6225), 2, - sym_number, - sym_private_property_identifier, - STATE(3301), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3646), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113922] = 7, + [113780] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5639), 2, + ACTIONS(5527), 2, sym_number, sym_private_property_identifier, - STATE(3914), 3, + STATE(3907), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232420,20 +232503,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113970] = 7, + [113828] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5483), 2, + ACTIONS(5475), 2, sym_number, sym_private_property_identifier, - STATE(3902), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232461,22 +232544,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114018] = 8, - ACTIONS(1583), 1, + [113876] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(6227), 1, + ACTIONS(5872), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5940), 2, + ACTIONS(4943), 2, sym_number, sym_private_property_identifier, - STATE(3466), 3, + STATE(3434), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232503,20 +232586,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114068] = 7, - ACTIONS(1583), 1, + [113926] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5940), 2, + ACTIONS(6231), 2, sym_number, sym_private_property_identifier, - STATE(3466), 3, + STATE(3313), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232544,20 +232627,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114116] = 7, + [113974] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6130), 2, + ACTIONS(5479), 2, sym_number, sym_private_property_identifier, - STATE(3924), 3, + STATE(3850), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232585,26 +232668,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114164] = 8, - ACTIONS(1583), 1, + [114022] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6231), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6229), 2, + ACTIONS(5414), 2, sym_number, sym_private_property_identifier, - STATE(3419), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232613,6 +232694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232627,24 +232709,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114214] = 7, - ACTIONS(1583), 1, + [114070] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6233), 2, + ACTIONS(5569), 2, sym_number, sym_private_property_identifier, - STATE(3444), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232668,26 +232750,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114262] = 8, - ACTIONS(1583), 1, + [114118] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6237), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6235), 2, + ACTIONS(5280), 2, sym_number, sym_private_property_identifier, - STATE(3366), 3, + STATE(3858), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232696,6 +232776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232710,24 +232791,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114312] = 7, - ACTIONS(1583), 1, + [114166] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6239), 2, + ACTIONS(5426), 2, sym_number, sym_private_property_identifier, - STATE(3367), 3, + STATE(3915), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232751,26 +232832,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114360] = 8, - ACTIONS(1583), 1, + [114214] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6243), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6241), 2, + ACTIONS(6135), 2, sym_number, sym_private_property_identifier, - STATE(3375), 3, + STATE(3860), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232779,6 +232858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232793,24 +232873,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114410] = 7, - ACTIONS(1583), 1, + [114262] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(6235), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6245), 2, + ACTIONS(6233), 2, sym_number, sym_private_property_identifier, - STATE(3320), 3, + STATE(3436), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232819,7 +232901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232834,24 +232915,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114458] = 7, - ACTIONS(1583), 1, + [114312] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(5874), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6247), 2, + ACTIONS(5654), 2, sym_number, sym_private_property_identifier, - STATE(3383), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232860,7 +232943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232875,22 +232957,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114506] = 8, - ACTIONS(1583), 1, + [114362] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(6251), 1, + ACTIONS(6239), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6249), 2, + ACTIONS(6237), 2, sym_number, sym_private_property_identifier, - STATE(3372), 3, + STATE(3363), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232917,26 +232999,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114556] = 8, - ACTIONS(1583), 1, + [114412] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(5910), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4923), 2, + ACTIONS(6241), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + STATE(3364), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232945,6 +233025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -232959,26 +233040,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114606] = 8, - ACTIONS(1583), 1, + [114460] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(6255), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6253), 2, + ACTIONS(5654), 2, sym_number, sym_private_property_identifier, - STATE(3333), 3, + STATE(3319), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232987,6 +233066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233001,20 +233081,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114656] = 7, + [114508] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2292), 2, + ACTIONS(5443), 2, sym_number, sym_private_property_identifier, - STATE(3887), 3, + STATE(3803), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233042,20 +233122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114704] = 7, + [114556] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5605), 2, + ACTIONS(6112), 2, sym_number, sym_private_property_identifier, - STATE(3775), 3, + STATE(3903), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233083,24 +233163,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114752] = 7, - ACTIONS(1505), 1, + [114604] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5209), 2, + ACTIONS(6243), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3437), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233124,20 +233204,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114800] = 7, + [114652] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5509), 2, + ACTIONS(5628), 2, sym_number, sym_private_property_identifier, - STATE(3826), 3, + STATE(3960), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233165,22 +233245,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114848] = 8, - ACTIONS(1583), 1, + [114700] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(6259), 1, + ACTIONS(6247), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6257), 2, + ACTIONS(6245), 2, sym_number, sym_private_property_identifier, - STATE(3295), 3, + STATE(3370), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233207,24 +233287,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114898] = 7, - ACTIONS(1505), 1, + [114750] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5413), 2, + ACTIONS(6249), 2, sym_number, sym_private_property_identifier, - STATE(3864), 3, + STATE(3371), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233248,24 +233328,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114946] = 7, - ACTIONS(1505), 1, + [114798] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(6253), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5181), 2, + ACTIONS(6251), 2, sym_number, sym_private_property_identifier, - STATE(3893), 3, + STATE(3373), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233274,7 +233356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233289,20 +233370,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114994] = 7, + [114848] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5456), 2, + ACTIONS(5539), 2, sym_number, sym_private_property_identifier, - STATE(3911), 3, + STATE(3944), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233330,20 +233411,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115042] = 7, + [114896] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5328), 2, + ACTIONS(6070), 2, sym_number, sym_private_property_identifier, - STATE(3888), 3, + STATE(3898), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233371,20 +233452,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115090] = 7, + [114944] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5203), 2, + ACTIONS(2292), 2, sym_number, sym_private_property_identifier, - STATE(3853), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233412,24 +233493,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115138] = 7, - ACTIONS(1505), 1, + [114992] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5235), 2, + ACTIONS(4770), 2, sym_number, sym_private_property_identifier, - STATE(3916), 3, + STATE(3462), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233453,20 +233534,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115186] = 7, - ACTIONS(1583), 1, + [115040] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(6257), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4923), 2, + ACTIONS(6255), 2, sym_number, sym_private_property_identifier, - STATE(3437), 3, + STATE(3458), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115090] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6259), 2, + sym_number, + sym_private_property_identifier, + STATE(3459), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233494,12 +233617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115234] = 7, - ACTIONS(1583), 1, + [115138] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -233507,7 +233630,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6261), 2, sym_number, sym_private_property_identifier, - STATE(3402), 3, + STATE(3377), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233535,12 +233658,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115282] = 8, - ACTIONS(1583), 1, + [115186] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5365), 2, + sym_number, + sym_private_property_identifier, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115234] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(6265), 1, anon_sym_readonly, @@ -233550,7 +233714,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6263), 2, sym_number, sym_private_property_identifier, - STATE(3435), 3, + STATE(3444), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233577,12 +233741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115332] = 7, - ACTIONS(1583), 1, + [115284] = 7, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -233590,7 +233754,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6267), 2, sym_number, sym_private_property_identifier, - STATE(3436), 3, + STATE(3445), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233618,24 +233782,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115380] = 7, - ACTIONS(1505), 1, + [115332] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(6271), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6135), 2, + ACTIONS(6269), 2, sym_number, sym_private_property_identifier, - STATE(3850), 3, + STATE(3382), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115382] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6273), 2, + sym_number, + sym_private_property_identifier, + STATE(3383), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233659,22 +233865,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115428] = 8, - ACTIONS(1583), 1, + [115430] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, - ACTIONS(6271), 1, + ACTIONS(6277), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6269), 2, + ACTIONS(6275), 2, sym_number, sym_private_property_identifier, - STATE(3452), 3, + STATE(3385), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233701,20 +233907,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115478] = 7, + [115480] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6078), 2, + ACTIONS(5471), 2, sym_number, sym_private_property_identifier, - STATE(3804), 3, + STATE(3769), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233742,26 +233948,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115526] = 8, - ACTIONS(1583), 1, + [115528] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6275), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6273), 2, + ACTIONS(6114), 2, sym_number, sym_private_property_identifier, - STATE(3297), 3, + STATE(3830), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233770,6 +233974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233785,19 +233990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [115576] = 7, - ACTIONS(1583), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6277), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - STATE(3298), 3, + STATE(3351), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233826,23 +234031,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [115624] = 7, - ACTIONS(1583), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6279), 2, + ACTIONS(5255), 2, sym_number, sym_private_property_identifier, - STATE(3417), 3, + STATE(3852), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233871,15 +234076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6122), 2, + ACTIONS(5177), 2, sym_number, sym_private_property_identifier, - STATE(3866), 3, + STATE(3889), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233907,26 +234112,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115720] = 8, - ACTIONS(1583), 1, + [115720] = 7, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, - ACTIONS(6283), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6281), 2, + ACTIONS(6116), 2, sym_number, sym_private_property_identifier, - STATE(3430), 3, + STATE(3945), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 22, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233935,6 +234138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233949,24 +234153,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115770] = 7, - ACTIONS(1505), 1, + [115768] = 8, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, + ACTIONS(6283), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5379), 2, + ACTIONS(6281), 2, sym_number, sym_private_property_identifier, - STATE(3857), 3, + STATE(3401), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233975,7 +234181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -233995,15 +234200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5217), 2, + ACTIONS(5422), 2, sym_number, sym_private_property_identifier, - STATE(3834), 3, + STATE(3771), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234032,23 +234237,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [115866] = 7, - ACTIONS(1505), 1, + ACTIONS(1593), 1, anon_sym_DQUOTE, - ACTIONS(1507), 1, + ACTIONS(1595), 1, anon_sym_SQUOTE, - ACTIONS(4736), 1, + ACTIONS(4641), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5601), 2, + ACTIONS(6285), 2, sym_number, sym_private_property_identifier, - STATE(3785), 3, + STATE(3405), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2314), 23, + ACTIONS(3646), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234073,23 +234278,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [115914] = 7, - ACTIONS(1583), 1, + ACTIONS(1505), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(4744), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6285), 2, + ACTIONS(5626), 2, sym_number, sym_private_property_identifier, - STATE(3379), 3, + STATE(3938), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3646), 23, + ACTIONS(2314), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234116,7 +234321,7 @@ static const uint16_t ts_small_parse_table[] = { [115962] = 4, ACTIONS(6287), 1, sym_identifier, - STATE(5649), 1, + STATE(5608), 1, sym_mapped_type_clause, ACTIONS(5), 2, sym_html_comment, @@ -234145,25 +234350,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [115997] = 9, - ACTIONS(3443), 1, + ACTIONS(3427), 1, anon_sym_LPAREN, - ACTIONS(3447), 1, + ACTIONS(3431), 1, anon_sym_DOT, - ACTIONS(3451), 1, + ACTIONS(3435), 1, anon_sym_QMARK_DOT, ACTIONS(6291), 1, anon_sym_LT, - STATE(2880), 1, + STATE(2873), 1, sym_arguments, - STATE(2987), 1, + STATE(2924), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, + ACTIONS(3429), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3441), 12, + ACTIONS(3425), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -234173,11 +234378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, [116038] = 9, - ACTIONS(3443), 1, + ACTIONS(3427), 1, anon_sym_LPAREN, ACTIONS(6291), 1, anon_sym_LT, @@ -234185,17 +234390,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(6295), 1, anon_sym_QMARK_DOT, - STATE(2872), 1, + STATE(2875), 1, sym_arguments, - STATE(2992), 1, + STATE(2942), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4014), 2, + ACTIONS(4008), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4016), 12, + ACTIONS(4010), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -234205,11 +234410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, [116079] = 9, - ACTIONS(3443), 1, + ACTIONS(3427), 1, anon_sym_LPAREN, ACTIONS(6291), 1, anon_sym_LT, @@ -234217,17 +234422,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(6299), 1, anon_sym_QMARK_DOT, - STATE(2876), 1, + STATE(2879), 1, sym_arguments, - STATE(2989), 1, + STATE(2900), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3996), 2, + ACTIONS(4002), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3998), 12, + ACTIONS(4004), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -234237,17 +234442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, [116120] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, + ACTIONS(4340), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4332), 17, + ACTIONS(4342), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234261,7 +234466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234269,10 +234474,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 2, + ACTIONS(4309), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4396), 17, + ACTIONS(4311), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234286,7 +234491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234294,10 +234499,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4340), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4392), 17, + ACTIONS(4342), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234311,7 +234516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234319,10 +234524,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 2, + ACTIONS(4340), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4396), 17, + ACTIONS(4342), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234336,7 +234541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234344,10 +234549,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 2, + ACTIONS(4076), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4400), 17, + ACTIONS(4078), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234361,7 +234566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234369,10 +234574,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4358), 2, + ACTIONS(4080), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4360), 17, + ACTIONS(4082), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234386,7 +234591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234394,10 +234599,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 2, + ACTIONS(4080), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4368), 17, + ACTIONS(4082), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234411,7 +234616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234419,10 +234624,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 2, + ACTIONS(4080), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4372), 17, + ACTIONS(4082), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234436,7 +234641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234444,10 +234649,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 2, + ACTIONS(4096), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4368), 17, + ACTIONS(4098), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234461,7 +234666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234469,10 +234674,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 2, + ACTIONS(4096), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4372), 17, + ACTIONS(4098), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234486,7 +234691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234494,10 +234699,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4394), 2, + ACTIONS(4096), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4396), 17, + ACTIONS(4098), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234511,7 +234716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234519,10 +234724,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 2, + ACTIONS(4154), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4300), 17, + ACTIONS(4156), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234536,7 +234741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234544,10 +234749,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 2, + ACTIONS(4309), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4400), 17, + ACTIONS(4311), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234561,7 +234766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234569,10 +234774,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 2, + ACTIONS(4154), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4308), 17, + ACTIONS(4156), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234586,7 +234791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234594,10 +234799,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 2, + ACTIONS(4352), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4312), 17, + ACTIONS(4354), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234611,7 +234816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234619,10 +234824,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 2, + ACTIONS(4362), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4316), 17, + ACTIONS(4364), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234636,7 +234841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234644,10 +234849,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4378), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4392), 17, + ACTIONS(4380), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234661,7 +234866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234669,10 +234874,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4314), 2, + ACTIONS(4382), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4316), 17, + ACTIONS(4384), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234686,7 +234891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234694,10 +234899,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 2, + ACTIONS(4378), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4364), 17, + ACTIONS(4380), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234711,7 +234916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234719,10 +234924,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 2, + ACTIONS(4382), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4364), 17, + ACTIONS(4384), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234736,7 +234941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234744,10 +234949,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4366), 2, + ACTIONS(4386), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4368), 17, + ACTIONS(4388), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234761,7 +234966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234769,10 +234974,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4362), 2, + ACTIONS(4390), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4364), 17, + ACTIONS(4392), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234786,7 +234991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234794,10 +234999,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4386), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4320), 17, + ACTIONS(4388), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234811,7 +235016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234819,10 +235024,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4370), 2, + ACTIONS(4390), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4372), 17, + ACTIONS(4392), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234836,7 +235041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234844,10 +235049,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, + ACTIONS(4394), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4324), 17, + ACTIONS(4396), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234861,7 +235066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234869,10 +235074,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4062), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4320), 17, + ACTIONS(4064), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234886,7 +235091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234894,10 +235099,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4322), 2, + ACTIONS(4394), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4324), 17, + ACTIONS(4396), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234911,7 +235116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234919,10 +235124,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4062), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4328), 17, + ACTIONS(4064), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234936,7 +235141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234944,10 +235149,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4198), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4328), 17, + ACTIONS(4200), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234961,7 +235166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234969,10 +235174,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4330), 2, + ACTIONS(4202), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4332), 17, + ACTIONS(4204), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -234986,7 +235191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -234994,10 +235199,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4386), 2, + ACTIONS(4202), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4388), 17, + ACTIONS(4204), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235011,7 +235216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -235019,10 +235224,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4390), 2, + ACTIONS(4202), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4392), 17, + ACTIONS(4204), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235036,7 +235241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -235044,10 +235249,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4398), 2, + ACTIONS(4309), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4400), 17, + ACTIONS(4311), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235061,7 +235266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, @@ -235069,10 +235274,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 2, + ACTIONS(4154), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4312), 17, + ACTIONS(4156), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235086,17 +235291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, [117072] = 3, - ACTIONS(1807), 1, + ACTIONS(1725), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1805), 17, + ACTIONS(1723), 17, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -235109,13 +235314,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117099] = 18, - ACTIONS(3521), 1, + [117099] = 3, + ACTIONS(1709), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1707), 17, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117126] = 18, + ACTIONS(3519), 1, anon_sym_LT, ACTIONS(6301), 1, sym_identifier, @@ -235137,24 +235366,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_GT, ACTIONS(6320), 1, anon_sym_extends, - STATE(3345), 1, + STATE(3410), 1, sym_type_arguments, - STATE(3348), 1, + STATE(3411), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, - STATE(4554), 1, + STATE(4603), 1, sym_constraint, - STATE(5514), 1, + STATE(5495), 1, sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [117156] = 18, - ACTIONS(3521), 1, + [117183] = 6, + ACTIONS(4016), 1, + anon_sym_EQ, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6322), 1, + anon_sym_DOT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117216] = 18, + ACTIONS(3519), 1, anon_sym_LT, ACTIONS(6301), 1, sym_identifier, @@ -235174,87 +235430,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(6320), 1, anon_sym_extends, - ACTIONS(6322), 1, + ACTIONS(6324), 1, anon_sym_SLASH_GT, - STATE(3304), 1, + STATE(3442), 1, sym_type_arguments, - STATE(3458), 1, + STATE(3443), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, - STATE(4554), 1, + STATE(4603), 1, sym_constraint, - STATE(5514), 1, + STATE(5495), 1, sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [117213] = 6, - ACTIONS(4006), 1, + [117273] = 3, + ACTIONS(3640), 1, anon_sym_EQ, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6324), 1, - anon_sym_DOT, - STATE(2909), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 14, + ACTIONS(3417), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117246] = 3, - ACTIONS(1845), 1, - anon_sym_PIPE, + [117299] = 5, + ACTIONS(6326), 1, + anon_sym_DOT, + ACTIONS(6328), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 17, - sym__automatic_semicolon, + ACTIONS(4210), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4212), 13, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_with, - anon_sym_assert, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117273] = 3, - ACTIONS(4264), 1, - anon_sym_EQ, + [117329] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 16, + ACTIONS(4162), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4164), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -235262,22 +235515,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [117299] = 3, + [117355] = 3, + ACTIONS(4324), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4406), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4408), 15, + ACTIONS(4326), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -235285,57 +235538,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [117325] = 15, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(6326), 1, - sym_identifier, - ACTIONS(6328), 1, - anon_sym_STAR, - ACTIONS(6330), 1, - anon_sym_type, - ACTIONS(6332), 1, - anon_sym_LBRACE, - ACTIONS(6334), 1, - anon_sym_typeof, - ACTIONS(6338), 1, - anon_sym_DOT, - STATE(4242), 1, - sym_string, - STATE(4306), 1, - sym_import_require_clause, - STATE(5294), 1, - sym__import_identifier, - STATE(5483), 1, - sym_import_clause, + [117381] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5775), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [117375] = 3, - ACTIONS(4272), 1, + ACTIONS(4274), 2, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4274), 16, + anon_sym_QMARK, + ACTIONS(4276), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -235343,17 +235561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [117401] = 3, - ACTIONS(4268), 1, + [117407] = 3, + ACTIONS(4328), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 16, + ACTIONS(4330), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235366,22 +235584,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117427] = 3, + [117433] = 3, + ACTIONS(4332), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4228), 15, + ACTIONS(4334), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -235389,25 +235607,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [117453] = 7, - ACTIONS(4006), 1, + [117459] = 7, + ACTIONS(4016), 1, anon_sym_EQ, ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6324), 1, + ACTIONS(6322), 1, anon_sym_DOT, - ACTIONS(6340), 1, + ACTIONS(6330), 1, anon_sym_is, - STATE(2909), 1, + STATE(2994), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 12, + ACTIONS(3499), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [117493] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4282), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4284), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -235416,66 +235655,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [117487] = 3, - ACTIONS(4276), 1, + [117519] = 4, + ACTIONS(1797), 1, + anon_sym_DOT, + ACTIONS(4302), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 16, + ACTIONS(4304), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [117513] = 5, - ACTIONS(6342), 1, + [117547] = 9, + ACTIONS(3429), 1, + anon_sym_PIPE, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(3481), 1, anon_sym_DOT, - ACTIONS(6344), 1, + ACTIONS(3483), 1, anon_sym_QMARK_DOT, + ACTIONS(6332), 1, + anon_sym_LT, + STATE(3101), 1, + sym_arguments, + STATE(3220), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4164), 2, + ACTIONS(3425), 10, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4166), 13, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP3, anon_sym_extends, - [117543] = 3, + anon_sym_PIPE_RBRACE, + [117585] = 5, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4086), 2, + ACTIONS(3429), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4088), 15, + ACTIONS(3425), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235485,21 +235735,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [117569] = 4, - ACTIONS(1699), 1, + [117615] = 4, + ACTIONS(1767), 1, anon_sym_DOT, - ACTIONS(4250), 1, + ACTIONS(4302), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 15, + ACTIONS(4304), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235510,18 +235758,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [117597] = 3, - ACTIONS(3623), 1, + [117643] = 3, + ACTIONS(3644), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 16, + ACTIONS(3449), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235534,58 +235782,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117623] = 9, - ACTIONS(3467), 1, - anon_sym_LPAREN, - ACTIONS(4014), 1, - anon_sym_PIPE, + [117669] = 15, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(6334), 1, + sym_identifier, + ACTIONS(6336), 1, + anon_sym_STAR, + ACTIONS(6338), 1, + anon_sym_type, + ACTIONS(6340), 1, + anon_sym_LBRACE, + ACTIONS(6342), 1, + anon_sym_typeof, ACTIONS(6346), 1, anon_sym_DOT, - ACTIONS(6348), 1, + STATE(4189), 1, + sym_string, + STATE(4200), 1, + sym_import_require_clause, + STATE(5470), 1, + sym_import_clause, + STATE(5490), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5763), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(6344), 3, + anon_sym_LPAREN, anon_sym_QMARK_DOT, - ACTIONS(6350), 1, anon_sym_LT, - STATE(3043), 1, - sym_arguments, - STATE(3209), 1, + [117719] = 5, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2903), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4016), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4024), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117661] = 9, - ACTIONS(3445), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(3467), 1, + anon_sym_QMARK, + anon_sym_extends, + [117749] = 9, + ACTIONS(3479), 1, anon_sym_LPAREN, - ACTIONS(3469), 1, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(6332), 1, + anon_sym_LT, + ACTIONS(6348), 1, anon_sym_DOT, - ACTIONS(3471), 1, - anon_sym_QMARK_DOT, ACTIONS(6350), 1, - anon_sym_LT, - STATE(3046), 1, + anon_sym_QMARK_DOT, + STATE(3104), 1, sym_arguments, - STATE(3197), 1, + STATE(3221), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 10, + ACTIONS(4010), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -235593,41 +235872,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117699] = 5, - ACTIONS(4030), 1, - anon_sym_EQ, - ACTIONS(6291), 1, + [117787] = 9, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(4002), 1, + anon_sym_PIPE, + ACTIONS(6332), 1, anon_sym_LT, - STATE(2922), 1, + ACTIONS(6352), 1, + anon_sym_DOT, + ACTIONS(6354), 1, + anon_sym_QMARK_DOT, + STATE(3106), 1, + sym_arguments, + STATE(3222), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 14, - anon_sym_as, + ACTIONS(4004), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_AMP3, anon_sym_extends, - [117729] = 3, - ACTIONS(3625), 1, + anon_sym_PIPE_RBRACE, + [117825] = 3, + ACTIONS(4320), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 16, + ACTIONS(4322), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235640,48 +235923,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117755] = 9, - ACTIONS(3467), 1, + [117851] = 6, + ACTIONS(3427), 1, anon_sym_LPAREN, - ACTIONS(3996), 1, - anon_sym_PIPE, - ACTIONS(6350), 1, - anon_sym_LT, - ACTIONS(6352), 1, + ACTIONS(4028), 1, + anon_sym_EQ, + ACTIONS(6356), 1, anon_sym_DOT, - ACTIONS(6354), 1, - anon_sym_QMARK_DOT, - STATE(3071), 1, + STATE(2896), 1, sym_arguments, - STATE(3207), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3998), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4030), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117793] = 4, - ACTIONS(1791), 1, - anon_sym_DOT, - ACTIONS(4250), 1, + [117882] = 4, + ACTIONS(4182), 1, anon_sym_EQ, + ACTIONS(6358), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 15, + ACTIONS(4184), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235692,23 +235971,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [117821] = 5, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, + [117909] = 3, + ACTIONS(4132), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3445), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3441), 13, + ACTIONS(4134), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235718,17 +235991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [117851] = 3, - ACTIONS(4136), 1, + [117934] = 3, + ACTIONS(1657), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 15, + ACTIONS(1655), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235738,63 +236013,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117876] = 3, - ACTIONS(4058), 1, + anon_sym_is, + [117959] = 3, + ACTIONS(4144), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4060), 15, + ACTIONS(4146), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [117901] = 3, - ACTIONS(4062), 1, + [117984] = 3, + ACTIONS(4036), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4064), 15, + ACTIONS(4038), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117926] = 3, - ACTIONS(4214), 1, + anon_sym_is, + [118009] = 3, + ACTIONS(4266), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 15, + ACTIONS(4268), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235806,17 +236081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117951] = 3, - ACTIONS(4122), 1, + [118034] = 3, + ACTIONS(4106), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 15, + ACTIONS(4108), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235828,46 +236103,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [117976] = 4, - ACTIONS(4148), 1, + [118059] = 3, + ACTIONS(4374), 1, anon_sym_EQ, - ACTIONS(6356), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 14, + ACTIONS(4376), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118003] = 6, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(4052), 1, + [118084] = 3, + ACTIONS(4174), 1, anon_sym_EQ, - ACTIONS(6358), 1, - anon_sym_DOT, - STATE(2893), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 12, + ACTIONS(4176), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -235877,16 +236146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [118034] = 3, - ACTIONS(1685), 1, + [118108] = 3, + ACTIONS(4286), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 15, + ACTIONS(4288), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235897,61 +236167,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [118059] = 3, - ACTIONS(4090), 1, + [118132] = 3, + ACTIONS(4290), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4092), 15, + ACTIONS(4292), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118084] = 3, - ACTIONS(4370), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4372), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118108] = 3, - ACTIONS(4184), 1, + [118156] = 3, + ACTIONS(4294), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 14, + ACTIONS(4296), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -235962,58 +236209,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118132] = 3, - ACTIONS(4314), 1, - anon_sym_PIPE, + [118180] = 3, + ACTIONS(4262), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4264), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118156] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6360), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [118178] = 3, - ACTIONS(4260), 1, + [118204] = 3, + ACTIONS(4298), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 14, + ACTIONS(4300), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236024,101 +236251,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118202] = 3, - ACTIONS(4318), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4320), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [118228] = 8, + ACTIONS(6360), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(6362), 1, anon_sym_DOT, + ACTIONS(6364), 1, anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(6366), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118226] = 3, - ACTIONS(4386), 1, - anon_sym_PIPE, + STATE(3255), 1, + sym_arguments, + STATE(3463), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4388), 14, + ACTIONS(3425), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [118262] = 8, + ACTIONS(6360), 1, + anon_sym_LPAREN, + ACTIONS(6366), 1, + anon_sym_LT, + ACTIONS(6368), 1, anon_sym_DOT, + ACTIONS(6370), 1, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118250] = 3, - ACTIONS(4390), 1, - anon_sym_PIPE, + STATE(3188), 1, + sym_arguments, + STATE(3299), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 14, + ACTIONS(4010), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [118296] = 8, + ACTIONS(6360), 1, + anon_sym_LPAREN, + ACTIONS(6366), 1, + anon_sym_LT, + ACTIONS(6372), 1, anon_sym_DOT, + ACTIONS(6374), 1, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118274] = 3, - ACTIONS(4390), 1, - anon_sym_PIPE, + STATE(3189), 1, + sym_arguments, + STATE(3328), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 14, + ACTIONS(4004), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118298] = 3, - ACTIONS(4280), 1, + [118330] = 3, + ACTIONS(4316), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 14, + ACTIONS(4318), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236129,17 +236350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118322] = 3, - ACTIONS(4188), 1, + [118354] = 3, + ACTIONS(4336), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 14, + ACTIONS(4338), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236150,140 +236371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118346] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6362), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [118368] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6366), 1, - sym_number, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5600), 2, - sym_string, - sym_predefined_type, - ACTIONS(6364), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118400] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6370), 1, - sym_number, - STATE(5619), 1, - sym_string, - STATE(5620), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118434] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6372), 1, - sym_number, - STATE(5638), 1, - sym_string, - STATE(5651), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118468] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6374), 1, - sym_number, - STATE(5663), 1, - sym_string, - STATE(5664), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [118502] = 3, - ACTIONS(4290), 1, + [118378] = 3, + ACTIONS(4348), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 14, + ACTIONS(4350), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236294,84 +236392,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118526] = 3, - ACTIONS(4322), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4324), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118550] = 5, - ACTIONS(4196), 1, + [118402] = 3, + ACTIONS(4188), 1, anon_sym_EQ, - ACTIONS(6376), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4198), 10, + ACTIONS(4190), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_QMARK, - [118578] = 3, - ACTIONS(4390), 1, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4392), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118602] = 4, - ACTIONS(4206), 1, + [118426] = 4, + ACTIONS(4188), 1, anon_sym_EQ, ACTIONS(6376), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 13, + ACTIONS(4190), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236381,59 +236435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118628] = 3, - ACTIONS(4318), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4320), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118652] = 3, - ACTIONS(4394), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4396), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118676] = 3, - ACTIONS(4210), 1, + [118452] = 3, + ACTIONS(4194), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 14, + ACTIONS(4196), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236444,11 +236456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118700] = 2, + [118476] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -236468,55 +236480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [118722] = 3, - ACTIONS(4394), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4396), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118746] = 3, - ACTIONS(4322), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4324), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118770] = 3, - ACTIONS(4144), 1, + [118498] = 3, + ACTIONS(4044), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 14, + ACTIONS(4046), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236527,101 +236497,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118794] = 3, - ACTIONS(4022), 1, - anon_sym_EQ, + [118522] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + sym_number, + ACTIONS(6384), 1, + anon_sym_unique, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [118818] = 3, - ACTIONS(4394), 1, - anon_sym_PIPE, + STATE(5706), 2, + sym_string, + sym_predefined_type, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118554] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6386), 1, + sym_number, + STATE(5719), 1, + sym_string, + STATE(5720), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118842] = 3, - ACTIONS(4398), 1, - anon_sym_PIPE, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118588] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6388), 1, + sym_number, + STATE(5726), 1, + sym_string, + STATE(5727), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118866] = 3, - ACTIONS(4398), 1, - anon_sym_PIPE, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118622] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6390), 1, + sym_number, + STATE(5738), 1, + sym_string, + STATE(5739), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118890] = 3, - ACTIONS(4154), 1, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118656] = 3, + ACTIONS(4398), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 14, + ACTIONS(4400), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236632,39 +236621,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118914] = 4, - ACTIONS(4154), 1, + [118680] = 3, + ACTIONS(4402), 1, anon_sym_EQ, - ACTIONS(6376), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 13, + ACTIONS(4404), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118940] = 3, - ACTIONS(4374), 1, + [118704] = 3, + ACTIONS(4092), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4376), 14, + ACTIONS(4094), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236675,38 +236663,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [118964] = 3, - ACTIONS(4398), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4400), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118988] = 3, - ACTIONS(4160), 1, + [118728] = 3, + ACTIONS(4258), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 14, + ACTIONS(4260), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236717,17 +236684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119012] = 3, - ACTIONS(4026), 1, + [118752] = 3, + ACTIONS(4270), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 14, + ACTIONS(4272), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -236738,26 +236705,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119036] = 7, + [118776] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6384), 1, anon_sym_unique, - ACTIONS(6380), 1, + ACTIONS(6392), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5760), 2, + STATE(5670), 2, sym_string, sym_predefined_type, - ACTIONS(6364), 9, + ACTIONS(6380), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236767,23 +236734,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119068] = 8, + [118808] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6384), 1, anon_sym_unique, - ACTIONS(6382), 1, + ACTIONS(6394), 1, sym_number, - STATE(5773), 1, + STATE(5672), 1, sym_string, - STATE(5781), 1, + STATE(5675), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6380), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236793,23 +236760,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119102] = 8, + [118842] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6396), 1, sym_number, - STATE(5817), 1, + STATE(5679), 1, sym_string, - STATE(5857), 1, + STATE(5681), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6380), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236819,23 +236786,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119136] = 8, + [118876] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6384), 1, anon_sym_unique, - ACTIONS(6386), 1, + ACTIONS(6398), 1, sym_number, - STATE(5943), 1, + STATE(5685), 1, sym_string, - STATE(5945), 1, + STATE(5686), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6380), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -236845,13 +236812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119170] = 3, - ACTIONS(4326), 1, + [118910] = 3, + ACTIONS(4352), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 14, + ACTIONS(4354), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236862,17 +236829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119194] = 3, - ACTIONS(4330), 1, + [118934] = 3, + ACTIONS(4362), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 14, + ACTIONS(4364), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236883,37 +236850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119218] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6388), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119240] = 3, - ACTIONS(4326), 1, + [118958] = 3, + ACTIONS(4378), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 14, + ACTIONS(4380), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236924,17 +236871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119264] = 3, - ACTIONS(4298), 1, + [118982] = 3, + ACTIONS(4382), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 14, + ACTIONS(4384), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -236945,146 +236892,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119288] = 8, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6392), 1, - anon_sym_DOT, - ACTIONS(6394), 1, - anon_sym_QMARK_DOT, - ACTIONS(6396), 1, - anon_sym_LT, - STATE(3186), 1, - sym_arguments, - STATE(3296), 1, - sym_type_arguments, + [119006] = 3, + ACTIONS(4378), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 9, + ACTIONS(4380), 14, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119322] = 8, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6396), 1, - anon_sym_LT, - ACTIONS(6398), 1, anon_sym_DOT, - ACTIONS(6400), 1, anon_sym_QMARK_DOT, - STATE(3187), 1, - sym_arguments, - STATE(3306), 1, - sym_type_arguments, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119030] = 3, + ACTIONS(4382), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3998), 9, + ACTIONS(4384), 14, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119356] = 8, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6396), 1, - anon_sym_LT, - ACTIONS(6402), 1, anon_sym_DOT, - ACTIONS(6404), 1, anon_sym_QMARK_DOT, - STATE(3190), 1, - sym_arguments, - STATE(3323), 1, - sym_type_arguments, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119054] = 3, + ACTIONS(4386), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4016), 9, + ACTIONS(4388), 14, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, anon_sym_extends, - [119390] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6406), 1, - sym_number, + anon_sym_PIPE_RBRACE, + [119078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5694), 2, - sym_string, - sym_predefined_type, - ACTIONS(6364), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [119422] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6408), 1, - sym_number, - STATE(5715), 1, - sym_string, - STATE(5717), 1, - sym_predefined_type, + ACTIONS(6400), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [119100] = 3, + ACTIONS(4390), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [119456] = 3, - ACTIONS(4370), 1, + ACTIONS(4392), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119124] = 3, + ACTIONS(4386), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 14, + ACTIONS(4388), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237095,43 +237017,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119480] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6410), 1, - sym_number, - STATE(5735), 1, - sym_string, - STATE(5745), 1, - sym_predefined_type, + [119148] = 3, + ACTIONS(4390), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [119514] = 3, - ACTIONS(4330), 1, + ACTIONS(4392), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119172] = 3, + ACTIONS(4394), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 14, + ACTIONS(4396), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237142,37 +237059,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119538] = 2, + [119196] = 3, + ACTIONS(4062), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6412), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119560] = 3, - ACTIONS(4378), 1, + ACTIONS(4064), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119220] = 3, + ACTIONS(4278), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 14, + ACTIONS(4280), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237183,26 +237101,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [119584] = 7, + [119244] = 3, + ACTIONS(4062), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4064), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119268] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6384), 1, anon_sym_unique, - ACTIONS(6414), 1, + ACTIONS(6402), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5871), 2, + STATE(5737), 2, sym_string, sym_predefined_type, - ACTIONS(6364), 9, + ACTIONS(6380), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237212,23 +237151,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119616] = 8, + [119300] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6384), 1, anon_sym_unique, - ACTIONS(6416), 1, + ACTIONS(6404), 1, sym_number, - STATE(5884), 1, + STATE(5755), 1, sym_string, - STATE(5893), 1, + STATE(5757), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6380), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237238,23 +237177,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119650] = 8, + [119334] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6384), 1, anon_sym_unique, - ACTIONS(6418), 1, + ACTIONS(6406), 1, sym_number, - STATE(5903), 1, + STATE(5767), 1, sym_string, - STATE(5909), 1, + STATE(5787), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6380), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237264,23 +237203,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119684] = 8, + [119368] = 8, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6384), 1, anon_sym_unique, - ACTIONS(6420), 1, + ACTIONS(6408), 1, sym_number, - STATE(5916), 1, + STATE(5790), 1, sym_string, - STATE(5923), 1, + STATE(5807), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6380), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237290,13 +237229,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [119718] = 3, - ACTIONS(4306), 1, + [119402] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6410), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [119424] = 3, + ACTIONS(4076), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 14, + ACTIONS(4078), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237307,17 +237266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119742] = 3, - ACTIONS(4310), 1, + [119448] = 3, + ACTIONS(4080), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 14, + ACTIONS(4082), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237328,17 +237287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119766] = 3, - ACTIONS(4314), 1, + [119472] = 3, + ACTIONS(4080), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 14, + ACTIONS(4082), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237349,58 +237308,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119790] = 3, - ACTIONS(4382), 1, - anon_sym_EQ, + [119496] = 3, + ACTIONS(4080), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 14, - anon_sym_as, + ACTIONS(4082), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, anon_sym_extends, - [119814] = 2, + anon_sym_PIPE_RBRACE, + [119520] = 3, + ACTIONS(4096), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6422), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119836] = 3, - ACTIONS(4310), 1, + ACTIONS(4098), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119544] = 3, + ACTIONS(4096), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 14, + ACTIONS(4098), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237411,17 +237371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119860] = 3, - ACTIONS(4358), 1, + [119568] = 3, + ACTIONS(4096), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 14, + ACTIONS(4098), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237432,17 +237392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119884] = 3, - ACTIONS(4362), 1, + [119592] = 3, + ACTIONS(4154), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 14, + ACTIONS(4156), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237453,17 +237413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119908] = 3, - ACTIONS(4362), 1, + [119616] = 3, + ACTIONS(4154), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 14, + ACTIONS(4156), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237474,58 +237434,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119932] = 2, + [119640] = 3, + ACTIONS(4154), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6424), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [119954] = 3, - ACTIONS(4140), 1, + ACTIONS(4156), 14, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119664] = 3, + ACTIONS(4198), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 14, - anon_sym_as, + ACTIONS(4200), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, anon_sym_extends, - [119978] = 3, - ACTIONS(4362), 1, + anon_sym_PIPE_RBRACE, + [119688] = 3, + ACTIONS(4202), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 14, + ACTIONS(4204), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237536,63 +237497,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120002] = 3, - ACTIONS(4170), 1, - anon_sym_EQ, + [119712] = 3, + ACTIONS(4202), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 14, - anon_sym_as, + ACTIONS(4204), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, anon_sym_extends, - [120026] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6426), 1, - sym_number, + anon_sym_PIPE_RBRACE, + [119736] = 3, + ACTIONS(4202), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5667), 2, - sym_string, - sym_predefined_type, - ACTIONS(6364), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120058] = 3, - ACTIONS(4366), 1, + ACTIONS(4204), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119760] = 3, + ACTIONS(4309), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 14, + ACTIONS(4311), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237603,17 +237560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120082] = 3, - ACTIONS(4366), 1, + [119784] = 3, + ACTIONS(4309), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 14, + ACTIONS(4311), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237624,89 +237581,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120106] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6428), 1, - sym_number, - STATE(5796), 1, - sym_string, - STATE(5827), 1, - sym_predefined_type, + [119808] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120140] = 3, - ACTIONS(4402), 1, + ACTIONS(4311), 14, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119832] = 3, + ACTIONS(4340), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 14, - anon_sym_as, + ACTIONS(4342), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, anon_sym_extends, - [120164] = 7, - ACTIONS(4006), 1, + anon_sym_PIPE_RBRACE, + [119856] = 3, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(6350), 1, - anon_sym_LT, - ACTIONS(6430), 1, - anon_sym_DOT, - ACTIONS(6432), 1, - anon_sym_is, - STATE(3245), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 10, + ACTIONS(4342), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120196] = 3, - ACTIONS(4366), 1, + [119880] = 3, + ACTIONS(4340), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 14, + ACTIONS(4342), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -237717,27 +237665,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120220] = 8, + [119904] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6384), 1, anon_sym_unique, - ACTIONS(6434), 1, + ACTIONS(6412), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5604), 2, + sym_string, + sym_predefined_type, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [119936] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6414), 1, + sym_number, + STATE(5611), 1, + sym_string, + STATE(5703), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [119970] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6416), 1, + sym_number, + STATE(5714), 1, + sym_string, + STATE(5724), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120004] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6418), 1, sym_number, - STATE(5759), 1, + STATE(5732), 1, sym_string, - STATE(5890), 1, + STATE(5747), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6380), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237747,13 +237772,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120254] = 3, - ACTIONS(4030), 1, + [120038] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6420), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120060] = 3, + ACTIONS(4170), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 14, + ACTIONS(4172), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237764,17 +237809,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120278] = 3, - ACTIONS(4174), 1, + [120084] = 3, + ACTIONS(4366), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 14, + ACTIONS(4368), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237785,27 +237830,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120108] = 3, + ACTIONS(4178), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4180), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120302] = 8, + [120132] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120154] = 7, ACTIONS(1505), 1, anon_sym_DQUOTE, ACTIONS(1507), 1, anon_sym_SQUOTE, - ACTIONS(6368), 1, + ACTIONS(6384), 1, anon_sym_unique, - ACTIONS(6436), 1, + ACTIONS(6424), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5855), 2, + sym_string, + sym_predefined_type, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120186] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6426), 1, sym_number, - STATE(5634), 1, + STATE(5871), 1, sym_string, - STATE(5811), 1, + STATE(5873), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 9, + ACTIONS(6380), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -237815,34 +237926,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120336] = 3, - ACTIONS(4334), 1, - anon_sym_EQ, + [120220] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6428), 1, + sym_number, + STATE(5879), 1, + sym_string, + STATE(5894), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 14, - anon_sym_as, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120254] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6430), 1, + sym_number, + STATE(5897), 1, + sym_string, + STATE(5898), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120288] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6432), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120310] = 7, + ACTIONS(4016), 1, + anon_sym_PIPE, + ACTIONS(6332), 1, + anon_sym_LT, + ACTIONS(6434), 1, + anon_sym_DOT, + ACTIONS(6436), 1, + anon_sym_is, + STATE(3212), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_AMP3, anon_sym_extends, - [120360] = 3, - ACTIONS(4342), 1, + anon_sym_PIPE_RBRACE, + [120342] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6438), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120364] = 3, + ACTIONS(4158), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 14, + ACTIONS(4160), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237853,17 +238060,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120384] = 3, - ACTIONS(4350), 1, + [120388] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120410] = 3, + ACTIONS(4216), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4352), 14, + ACTIONS(4218), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237874,17 +238101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120408] = 3, - ACTIONS(4222), 1, + [120434] = 3, + ACTIONS(4220), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 14, + ACTIONS(4122), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237895,17 +238122,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120432] = 3, - ACTIONS(4354), 1, + [120458] = 3, + ACTIONS(4224), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 14, + ACTIONS(4226), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237916,17 +238143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120456] = 3, - ACTIONS(4230), 1, + [120482] = 3, + ACTIONS(4126), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 14, + ACTIONS(4124), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237937,15 +238164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120480] = 2, + [120506] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6438), 15, + ACTIONS(6442), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237961,34 +238188,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [120502] = 3, - ACTIONS(4370), 1, - anon_sym_PIPE, + [120528] = 3, + ACTIONS(4022), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4024), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120526] = 3, - ACTIONS(4234), 1, + [120552] = 3, + ACTIONS(4232), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 14, + ACTIONS(4234), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -237999,17 +238226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120550] = 3, - ACTIONS(4176), 1, + [120576] = 3, + ACTIONS(4236), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4178), 14, + ACTIONS(4238), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238020,38 +238247,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120574] = 3, - ACTIONS(4238), 1, + [120600] = 5, + ACTIONS(4244), 1, anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 14, + ACTIONS(4190), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4246), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [120598] = 3, - ACTIONS(4242), 1, + [120628] = 3, + ACTIONS(4166), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 14, + ACTIONS(4168), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238062,58 +238291,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120622] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6440), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120644] = 3, - ACTIONS(4134), 1, + [120652] = 4, + ACTIONS(4254), 1, anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 14, + ACTIONS(4256), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120668] = 3, - ACTIONS(4246), 1, + [120678] = 3, + ACTIONS(4040), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 14, + ACTIONS(4042), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238124,80 +238334,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [120692] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(6368), 1, - anon_sym_unique, - ACTIONS(6442), 1, - sym_number, - STATE(5725), 1, - sym_string, - STATE(5727), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6364), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120726] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6448), 1, - anon_sym_BANG, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6454), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(4182), 1, - sym_type_annotation, - STATE(4755), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5558), 1, - sym__call_signature, + [120702] = 3, + ACTIONS(4394), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6446), 3, + ACTIONS(4396), 14, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [120769] = 6, - ACTIONS(214), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120726] = 6, + ACTIONS(213), 1, anon_sym_unique, - STATE(3392), 1, + STATE(2915), 1, sym_type_predicate, - STATE(5787), 1, + STATE(5687), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 2, + ACTIONS(6444), 2, sym_identifier, sym_this, - ACTIONS(216), 9, + ACTIONS(215), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238207,15 +238382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [120798] = 4, - ACTIONS(4026), 1, + [120755] = 4, + ACTIONS(4040), 1, anon_sym_EQ, - ACTIONS(6340), 1, + ACTIONS(6330), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 12, + ACTIONS(4042), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -238225,491 +238400,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [120823] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6460), 1, - anon_sym_BANG, - ACTIONS(6462), 1, - anon_sym_LPAREN, - ACTIONS(6464), 1, - anon_sym_QMARK, - STATE(3396), 1, - sym_formal_parameters, - STATE(3788), 1, - sym__call_signature, - STATE(4329), 1, - sym_type_annotation, - STATE(4989), 1, - sym__initializer, - STATE(5339), 1, - sym_type_parameters, + [120780] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(2915), 1, + sym_type_predicate, + STATE(5810), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6458), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120866] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6468), 1, - anon_sym_BANG, - ACTIONS(6470), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(4055), 1, - sym_type_annotation, - STATE(4879), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5539), 1, - sym__call_signature, + ACTIONS(6446), 2, + sym_identifier, + sym_this, + ACTIONS(215), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120809] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(2915), 1, + sym_type_predicate, + STATE(5754), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120909] = 13, - ACTIONS(2478), 1, + ACTIONS(6448), 2, + sym_identifier, + sym_this, + ACTIONS(215), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120838] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6474), 1, - anon_sym_BANG, - ACTIONS(6476), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(4024), 1, - sym_type_annotation, - STATE(4763), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5334), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [120952] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(6454), 1, + anon_sym_BANG, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6478), 1, - anon_sym_BANG, - ACTIONS(6480), 1, + ACTIONS(6460), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(4071), 1, + STATE(3832), 1, + sym__call_signature, + STATE(4027), 1, sym_type_annotation, - STATE(4950), 1, + STATE(4750), 1, sym__initializer, - STATE(5231), 1, + STATE(5452), 1, sym_type_parameters, - STATE(5317), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [120995] = 11, - ACTIONS(2478), 1, + [120881] = 11, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3872), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - STATE(3699), 1, + STATE(3754), 1, sym_formal_parameters, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5356), 1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5486), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 5, + ACTIONS(3786), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [121034] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6482), 1, - anon_sym_BANG, - ACTIONS(6484), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(4420), 1, - sym_type_annotation, - STATE(5151), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5506), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121077] = 13, - ACTIONS(2478), 1, + [120920] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6486), 1, - anon_sym_BANG, - ACTIONS(6488), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(4442), 1, - sym_type_annotation, - STATE(5190), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5540), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121120] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6492), 1, + ACTIONS(6464), 1, anon_sym_BANG, - ACTIONS(6494), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4325), 1, - sym_type_annotation, - STATE(4997), 1, - sym__call_signature, - STATE(4998), 1, - sym__initializer, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6490), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121163] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6496), 1, - anon_sym_BANG, - ACTIONS(6498), 1, + ACTIONS(6468), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3949), 1, + STATE(4437), 1, sym_type_annotation, - STATE(4799), 1, + STATE(5198), 1, sym__initializer, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5381), 1, + STATE(5535), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121206] = 13, - ACTIONS(2478), 1, + [120963] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6502), 1, - anon_sym_BANG, - ACTIONS(6504), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(4334), 1, - sym_type_annotation, - STATE(5004), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5354), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6500), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121249] = 14, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(6328), 1, - anon_sym_STAR, - ACTIONS(6332), 1, - anon_sym_LBRACE, - ACTIONS(6506), 1, - sym_identifier, - ACTIONS(6508), 1, - anon_sym_type, - ACTIONS(6510), 1, - anon_sym_COMMA, - ACTIONS(6512), 1, - anon_sym_from, - STATE(4188), 1, - sym_string, - STATE(4189), 1, - sym_import_require_clause, - STATE(5294), 1, - sym__import_identifier, - STATE(5345), 1, - sym_import_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5775), 2, - sym_namespace_import, - sym_named_imports, - [121294] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6514), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6472), 1, anon_sym_BANG, - ACTIONS(6516), 1, + ACTIONS(6474), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3961), 1, + STATE(4093), 1, sym_type_annotation, - STATE(4614), 1, + STATE(4879), 1, sym__initializer, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5289), 1, + STATE(5537), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121337] = 13, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, + [121006] = 4, + ACTIONS(4022), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6518), 1, - anon_sym_BANG, - ACTIONS(6520), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(4340), 1, - sym_type_annotation, - STATE(5009), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5359), 1, - sym__call_signature, + ACTIONS(6476), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121380] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(4024), 12, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3800), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(3699), 1, - sym_formal_parameters, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5356), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [121419] = 13, - ACTIONS(2478), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [121031] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(6524), 1, + ACTIONS(6478), 1, anon_sym_BANG, - ACTIONS(6526), 1, + ACTIONS(6480), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3897), 1, - sym__call_signature, - STATE(4166), 1, + STATE(4097), 1, sym_type_annotation, - STATE(4699), 1, - sym__initializer, - STATE(5339), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6522), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121462] = 4, - ACTIONS(4022), 1, - anon_sym_EQ, - ACTIONS(6340), 1, - anon_sym_is, + STATE(4884), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5553), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 12, - anon_sym_LBRACE, + ACTIONS(6470), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [121487] = 6, - ACTIONS(214), 1, + anon_sym_SEMI, + [121074] = 6, + ACTIONS(213), 1, anon_sym_unique, - STATE(2936), 1, + STATE(1976), 1, sym_type_predicate, - STATE(5962), 1, + STATE(5982), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6482), 2, sym_identifier, sym_this, - ACTIONS(216), 9, + ACTIONS(215), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -238719,253 +238641,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121516] = 13, - ACTIONS(2478), 1, + [121103] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6462), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, + ACTIONS(6486), 1, anon_sym_BANG, - ACTIONS(6534), 1, + ACTIONS(6488), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(3810), 1, - sym__call_signature, - STATE(4235), 1, + STATE(4317), 1, sym_type_annotation, - STATE(4884), 1, + STATE(5037), 1, + sym__call_signature, + STATE(5040), 1, sym__initializer, - STATE(5339), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121559] = 13, - ACTIONS(2478), 1, + [121146] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6536), 1, - anon_sym_BANG, - ACTIONS(6538), 1, - anon_sym_QMARK, - STATE(3848), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(3754), 1, sym_formal_parameters, - STATE(4360), 1, - sym_type_annotation, - STATE(5046), 1, - sym__initializer, - STATE(5231), 1, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5486), 1, sym_type_parameters, - STATE(5396), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, + ACTIONS(3786), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [121602] = 13, - ACTIONS(2478), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [121185] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6540), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, anon_sym_BANG, - ACTIONS(6542), 1, + ACTIONS(6492), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(4363), 1, + STATE(4149), 1, sym_type_annotation, - STATE(5051), 1, + STATE(4935), 1, sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5402), 1, + STATE(5270), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121645] = 13, - ACTIONS(2478), 1, + [121228] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6444), 1, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6524), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6494), 1, anon_sym_BANG, - ACTIONS(6544), 1, + ACTIONS(6496), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(4166), 1, + STATE(4155), 1, sym_type_annotation, - STATE(4720), 1, - sym__call_signature, - STATE(4722), 1, + STATE(4938), 1, sym__initializer, - STATE(5435), 1, + STATE(5274), 1, + sym__call_signature, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6522), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121688] = 11, - ACTIONS(2478), 1, + [121271] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(3699), 1, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6500), 1, + anon_sym_BANG, + ACTIONS(6502), 1, + anon_sym_QMARK, + STATE(3954), 1, sym_formal_parameters, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - STATE(5356), 1, + STATE(4454), 1, + sym_type_annotation, + STATE(5096), 1, + sym__initializer, + STATE(5239), 1, + sym__call_signature, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 5, + ACTIONS(6498), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [121727] = 9, - ACTIONS(4006), 1, - anon_sym_extends, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6324), 1, - anon_sym_DOT, - ACTIONS(6546), 1, - sym_identifier, - ACTIONS(6550), 1, - anon_sym_GT, - STATE(2909), 1, - sym_type_arguments, + [121314] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(3254), 1, + sym_type_predicate, + STATE(5696), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6548), 3, - anon_sym_LBRACE, - sym_jsx_identifier, - anon_sym_SLASH_GT, - ACTIONS(3501), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [121762] = 13, - ACTIONS(2478), 1, + ACTIONS(6504), 2, + sym_identifier, + sym_this, + ACTIONS(215), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121343] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(6555), 1, + ACTIONS(6506), 1, anon_sym_BANG, - ACTIONS(6557), 1, + ACTIONS(6508), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3913), 1, - sym__call_signature, - STATE(4451), 1, + STATE(4180), 1, sym_type_annotation, - STATE(5205), 1, + STATE(4957), 1, sym__initializer, - STATE(5339), 1, + STATE(5291), 1, + sym__call_signature, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6553), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121805] = 13, - ACTIONS(2478), 1, + [121386] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6561), 1, + ACTIONS(6512), 1, anon_sym_BANG, - ACTIONS(6563), 1, + ACTIONS(6514), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(4183), 1, + STATE(3939), 1, + sym__call_signature, + STATE(4381), 1, sym_type_annotation, - STATE(4756), 1, + STATE(5067), 1, sym__initializer, - STATE(5231), 1, + STATE(5452), 1, sym_type_parameters, - STATE(5326), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6510), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121848] = 6, - ACTIONS(4006), 1, + [121429] = 6, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(6350), 1, + ACTIONS(6332), 1, anon_sym_LT, - ACTIONS(6430), 1, + ACTIONS(6434), 1, anon_sym_DOT, - STATE(3245), 1, + STATE(3212), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 10, + ACTIONS(3499), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238973,22 +238892,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121877] = 6, - ACTIONS(3467), 1, + [121458] = 6, + ACTIONS(3479), 1, anon_sym_LPAREN, - ACTIONS(4052), 1, + ACTIONS(4028), 1, anon_sym_PIPE, - ACTIONS(6565), 1, + ACTIONS(6516), 1, anon_sym_DOT, - STATE(3172), 1, + STATE(3132), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 10, + ACTIONS(4030), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -238996,231 +238915,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121906] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(1492), 1, - sym_type_predicate, - STATE(5722), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6567), 2, - sym_identifier, - sym_this, - ACTIONS(216), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121935] = 13, - ACTIONS(2478), 1, + [121487] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(6492), 1, + ACTIONS(6520), 1, anon_sym_BANG, - ACTIONS(6569), 1, + ACTIONS(6522), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3881), 1, - sym__call_signature, - STATE(4325), 1, + STATE(4119), 1, sym_type_annotation, - STATE(4977), 1, + STATE(4723), 1, sym__initializer, - STATE(5339), 1, + STATE(5509), 1, sym_type_parameters, + STATE(5575), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [121978] = 13, - ACTIONS(2478), 1, + [121530] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6571), 1, + ACTIONS(6526), 1, anon_sym_BANG, - ACTIONS(6573), 1, + ACTIONS(6528), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(4197), 1, + STATE(3911), 1, + sym__call_signature, + STATE(4263), 1, sym_type_annotation, - STATE(5181), 1, + STATE(5023), 1, sym__initializer, - STATE(5231), 1, + STATE(5452), 1, sym_type_parameters, - STATE(5545), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6524), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122021] = 11, - ACTIONS(2478), 1, + [121573] = 13, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3868), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(3699), 1, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6512), 1, + anon_sym_BANG, + ACTIONS(6530), 1, + anon_sym_QMARK, + STATE(3274), 1, sym_formal_parameters, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - STATE(5356), 1, + STATE(4381), 1, + sym_type_annotation, + STATE(5146), 1, + sym__call_signature, + STATE(5147), 1, + sym__initializer, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 5, + ACTIONS(6510), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [122060] = 13, - ACTIONS(2478), 1, + [121616] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6575), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6534), 1, anon_sym_BANG, - ACTIONS(6577), 1, + ACTIONS(6536), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(4426), 1, + STATE(4463), 1, sym_type_annotation, - STATE(5146), 1, + STATE(5151), 1, sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5504), 1, + STATE(5506), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6532), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [122103] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(2936), 1, - sym_type_predicate, - STATE(5733), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6579), 2, - sym_identifier, - sym_this, - ACTIONS(216), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122132] = 4, - ACTIONS(4030), 1, + [121659] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6581), 1, - anon_sym_is, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6538), 1, + anon_sym_BANG, + ACTIONS(6540), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4079), 1, + sym_type_annotation, + STATE(5159), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5510), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 12, - anon_sym_LBRACE, + ACTIONS(6532), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + [121702] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [122157] = 6, - ACTIONS(214), 1, - anon_sym_unique, - STATE(1981), 1, - sym_type_predicate, - STATE(5969), 1, - sym_predefined_type, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_BANG, + ACTIONS(6544), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4274), 1, + sym_type_annotation, + STATE(5033), 1, + sym__initializer, + STATE(5399), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6583), 2, - sym_identifier, - sym_this, - ACTIONS(216), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [122186] = 6, - ACTIONS(214), 1, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121745] = 6, + ACTIONS(213), 1, anon_sym_unique, - STATE(3180), 1, + STATE(1504), 1, sym_type_predicate, - STATE(5835), 1, + STATE(5750), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6585), 2, + ACTIONS(6546), 2, sym_identifier, sym_this, - ACTIONS(216), 9, + ACTIONS(215), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239230,78 +239121,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122215] = 11, - ACTIONS(2478), 1, + [121774] = 11, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(3752), 1, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3803), 1, + ACTIONS(3795), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - STATE(3699), 1, + STATE(3754), 1, sym_formal_parameters, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5356), 1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5486), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 5, + ACTIONS(3786), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [122254] = 13, - ACTIONS(2478), 1, + [121813] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(6336), 1, + anon_sym_STAR, + ACTIONS(6340), 1, + anon_sym_LBRACE, + ACTIONS(6548), 1, + sym_identifier, + ACTIONS(6550), 1, + anon_sym_type, + ACTIONS(6552), 1, + anon_sym_COMMA, + ACTIONS(6554), 1, + anon_sym_from, + STATE(4068), 1, + sym_string, + STATE(4072), 1, + sym_import_require_clause, + STATE(5397), 1, + sym_import_clause, + STATE(5490), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5763), 2, + sym_namespace_import, + sym_named_imports, + [121858] = 9, + ACTIONS(4016), 1, + anon_sym_extends, + ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6322), 1, + anon_sym_DOT, + ACTIONS(6556), 1, + sym_identifier, + ACTIONS(6560), 1, + anon_sym_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6558), 3, + anon_sym_LBRACE, + sym_jsx_identifier, + anon_sym_SLASH_GT, + ACTIONS(3499), 5, anon_sym_EQ, - ACTIONS(6450), 1, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + [121893] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6587), 1, - anon_sym_BANG, - ACTIONS(6589), 1, - anon_sym_QMARK, - STATE(3848), 1, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(3754), 1, sym_formal_parameters, - STATE(4390), 1, - sym_type_annotation, - STATE(5035), 1, - sym__initializer, - STATE(5231), 1, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5486), 1, sym_type_parameters, - STATE(5383), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(3786), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [122297] = 6, - ACTIONS(214), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [121932] = 6, + ACTIONS(213), 1, anon_sym_unique, - STATE(2936), 1, + STATE(3471), 1, sym_type_predicate, - STATE(5684), 1, + STATE(5780), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6591), 2, + ACTIONS(6563), 2, sym_identifier, sym_this, - ACTIONS(216), 9, + ACTIONS(215), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -239311,207 +239257,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [122326] = 2, + [121961] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6486), 1, + anon_sym_BANG, + ACTIONS(6565), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3923), 1, + sym__call_signature, + STATE(4317), 1, + sym_type_annotation, + STATE(4995), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 13, + ACTIONS(6484), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [122346] = 3, - ACTIONS(4406), 1, - anon_sym_PIPE, + [122004] = 4, + ACTIONS(4044), 1, + anon_sym_EQ, + ACTIONS(6330), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 12, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4046), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122368] = 10, - ACTIONS(2478), 1, + [122029] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6595), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6567), 1, + anon_sym_BANG, + ACTIONS(6569), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(4057), 1, + STATE(4168), 1, + sym_type_annotation, + STATE(4667), 1, + sym__initializer, + STATE(5342), 1, sym__call_signature, - STATE(4058), 1, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [122072] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6571), 1, + anon_sym_BANG, + ACTIONS(6573), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4208), 1, sym_type_annotation, - STATE(5435), 1, + STATE(4674), 1, + sym__initializer, + STATE(5386), 1, + sym__call_signature, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6593), 5, + ACTIONS(6532), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [122115] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(3754), 1, + sym_formal_parameters, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5486), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 5, + sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [122404] = 2, + [122154] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6577), 1, + anon_sym_BANG, + ACTIONS(6579), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3859), 1, + sym__call_signature, + STATE(4080), 1, + sym_type_annotation, + STATE(4862), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 13, + ACTIONS(6575), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [122197] = 13, + ACTIONS(2470), 1, anon_sym_LT, - anon_sym_extends, - [122424] = 3, - ACTIONS(4086), 1, - anon_sym_PIPE, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6581), 1, + anon_sym_BANG, + ACTIONS(6583), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4359), 1, + sym_type_annotation, + STATE(5125), 1, + sym__initializer, + STATE(5478), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4088), 12, + ACTIONS(6462), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122446] = 3, - ACTIONS(3182), 1, - anon_sym_PIPE, + [122240] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6585), 1, + anon_sym_BANG, + ACTIONS(6587), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4366), 1, + sym_type_annotation, + STATE(5131), 1, + sym__initializer, + STATE(5487), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3184), 12, + ACTIONS(6462), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122468] = 10, - ACTIONS(2478), 1, + [122283] = 13, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6599), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6589), 1, + anon_sym_BANG, + ACTIONS(6591), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3524), 1, - sym__call_signature, - STATE(4271), 1, + STATE(4183), 1, sym_type_annotation, - STATE(5435), 1, + STATE(4958), 1, + sym__initializer, + STATE(5295), 1, + sym__call_signature, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6597), 5, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122504] = 2, + [122326] = 4, + ACTIONS(1797), 1, + anon_sym_DOT, + ACTIONS(4302), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 13, + ACTIONS(4304), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP3, anon_sym_LT, anon_sym_extends, - [122524] = 2, + anon_sym_PIPE_RBRACE, + [122350] = 3, + ACTIONS(4320), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 13, + ACTIONS(4322), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + anon_sym_AMP3, anon_sym_extends, - [122544] = 2, + anon_sym_PIPE_RBRACE, + [122372] = 3, + ACTIONS(4324), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 13, + ACTIONS(4326), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + anon_sym_AMP3, anon_sym_extends, - [122564] = 13, - ACTIONS(3521), 1, + anon_sym_PIPE_RBRACE, + [122394] = 13, + ACTIONS(3519), 1, anon_sym_LT, ACTIONS(6301), 1, sym_identifier, @@ -239521,31 +239585,31 @@ static const uint16_t ts_small_parse_table[] = { sym_jsx_identifier, ACTIONS(6316), 1, anon_sym_DOT, - ACTIONS(6601), 1, + ACTIONS(6593), 1, anon_sym_COLON, - ACTIONS(6603), 1, + ACTIONS(6595), 1, anon_sym_GT, - ACTIONS(6605), 1, + ACTIONS(6597), 1, anon_sym_SLASH_GT, - STATE(3350), 1, + STATE(3395), 1, sym_type_arguments, - STATE(3365), 1, + STATE(3397), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [122606] = 3, - ACTIONS(4264), 1, + [122436] = 3, + ACTIONS(4328), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 12, + ACTIONS(4330), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239555,66 +239619,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122628] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6609), 1, - anon_sym_COLON, - ACTIONS(6611), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3759), 1, - sym__call_signature, - STATE(4203), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + [122458] = 3, + ACTIONS(4332), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6607), 5, + ACTIONS(4334), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122664] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6615), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4370), 1, - sym__call_signature, - STATE(4371), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6613), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [122700] = 2, + [122480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4396), 13, + ACTIONS(4311), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239624,15 +239655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122720] = 2, + [122500] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4388), 13, + ACTIONS(4311), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239642,37 +239673,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122740] = 6, - ACTIONS(4192), 1, - anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, + [122520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 9, + ACTIONS(4342), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [122768] = 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4400), 13, + ACTIONS(4342), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239682,39 +239709,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [122788] = 4, - ACTIONS(1699), 1, - anon_sym_DOT, - ACTIONS(4250), 1, - anon_sym_PIPE, + [122560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 11, + ACTIONS(4342), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122812] = 4, - ACTIONS(4200), 1, + [122580] = 4, + ACTIONS(4344), 1, anon_sym_EQ, - ACTIONS(6623), 1, - anon_sym_extends, + ACTIONS(6599), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 11, + ACTIONS(4346), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239724,40 +239749,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, anon_sym_PIPE, - [122836] = 3, - ACTIONS(4268), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4270), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122858] = 6, - ACTIONS(4346), 1, + [122604] = 6, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 9, + ACTIONS(4318), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239767,58 +239773,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [122886] = 4, - ACTIONS(4284), 1, - anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, + [122632] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_COLON, + ACTIONS(6609), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3576), 1, + sym__call_signature, + STATE(4112), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 11, - anon_sym_LBRACE, + ACTIONS(6605), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [122668] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4354), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [122910] = 3, - ACTIONS(3625), 1, - anon_sym_PIPE, + [122688] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6615), 1, + anon_sym_LT_SLASH, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + STATE(1614), 1, + sym_jsx_closing_element, + STATE(3075), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 12, + ACTIONS(6613), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3062), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [122722] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4364), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_AMP, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, + [122742] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6623), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3542), 1, + sym__call_signature, + STATE(4334), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6621), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [122932] = 6, - ACTIONS(4260), 1, + [122778] = 6, + ACTIONS(4136), 1, anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 9, + ACTIONS(4138), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239828,19 +239908,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [122960] = 6, - ACTIONS(4098), 1, + [122806] = 6, + ACTIONS(4140), 1, anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 9, + ACTIONS(4142), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239850,99 +239930,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [122988] = 6, - ACTIONS(4354), 1, - anon_sym_EQ, + [122834] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6615), 1, + anon_sym_LT_SLASH, ACTIONS(6617), 1, anon_sym_AMP, ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, + anon_sym_LT, + STATE(1651), 1, + sym_jsx_closing_element, + STATE(3075), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 9, + ACTIONS(6625), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [122868] = 13, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6593), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6595), 1, anon_sym_GT, - anon_sym_EQ_GT, - [123016] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, ACTIONS(6627), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3954), 1, - sym__call_signature, - STATE(3955), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + anon_sym_SLASH_GT, + STATE(3301), 1, + sym_type_arguments, + STATE(3302), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [122910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6625), 5, + ACTIONS(4380), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [123052] = 5, - ACTIONS(4030), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(6350), 1, anon_sym_LT, - STATE(3256), 1, - sym_type_arguments, + anon_sym_extends, + [122930] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + ACTIONS(6631), 1, + anon_sym_LT_SLASH, + STATE(2088), 1, + sym_jsx_closing_element, + STATE(3075), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6629), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3091), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [122964] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 10, + ACTIONS(4384), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123078] = 3, - ACTIONS(4226), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122984] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 12, + ACTIONS(4380), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123100] = 2, + [123004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 13, + ACTIONS(4384), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239952,90 +240077,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123120] = 4, - ACTIONS(1791), 1, - anon_sym_DOT, - ACTIONS(4250), 1, - anon_sym_PIPE, + [123024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 11, + ACTIONS(4388), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123144] = 13, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(6603), 1, - anon_sym_GT, - ACTIONS(6629), 1, - anon_sym_SLASH_GT, - STATE(3318), 1, - sym_type_arguments, - STATE(3327), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [123044] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [123186] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(4392), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6631), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3687), 1, - sym__call_signature, - STATE(3955), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123064] = 5, + ACTIONS(4022), 1, + anon_sym_PIPE, + ACTIONS(6332), 1, + anon_sym_LT, + STATE(3218), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6625), 5, + ACTIONS(4024), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [123222] = 2, + [123090] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 13, + ACTIONS(4388), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240045,11 +240152,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123242] = 2, + [123110] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -240063,170 +240170,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123262] = 5, - ACTIONS(3445), 1, - anon_sym_PIPE, - ACTIONS(3469), 1, + [123130] = 6, + ACTIONS(6366), 1, + anon_sym_LT, + ACTIONS(6633), 1, anon_sym_DOT, - ACTIONS(3471), 1, - anon_sym_QMARK_DOT, + ACTIONS(6635), 1, + anon_sym_is, + STATE(3358), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 10, + ACTIONS(3499), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123288] = 3, - ACTIONS(3162), 1, + [123158] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + ACTIONS(6639), 1, + anon_sym_LT_SLASH, + STATE(3075), 1, + sym_jsx_opening_element, + STATE(3796), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6637), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3078), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [123192] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4396), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3164), 12, + ACTIONS(4064), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123310] = 10, - ACTIONS(2478), 1, + [123232] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6633), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3579), 1, - sym__call_signature, - STATE(4371), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + ACTIONS(6639), 1, + anon_sym_LT_SLASH, + STATE(3075), 1, + sym_jsx_opening_element, + STATE(3817), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6625), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [123266] = 5, + ACTIONS(3429), 1, + anon_sym_PIPE, + ACTIONS(3481), 1, + anon_sym_DOT, + ACTIONS(3483), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6613), 5, + ACTIONS(3425), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [123346] = 10, - ACTIONS(2478), 1, + [123292] = 10, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6635), 1, + ACTIONS(6643), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4202), 1, + STATE(3594), 1, sym__call_signature, - STATE(4203), 1, + STATE(3969), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6607), 5, + ACTIONS(6641), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [123382] = 6, - ACTIONS(4094), 1, - anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4096), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [123410] = 3, - ACTIONS(4276), 1, - anon_sym_PIPE, + [123328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 12, + ACTIONS(4396), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123432] = 6, - ACTIONS(6396), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(6637), 1, + anon_sym_extends, + [123348] = 5, + ACTIONS(4210), 1, + anon_sym_PIPE, + ACTIONS(6645), 1, anon_sym_DOT, - ACTIONS(6639), 1, - anon_sym_is, - STATE(3448), 1, - sym_type_arguments, + ACTIONS(6647), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 9, + ACTIONS(4212), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP3, anon_sym_extends, - [123460] = 2, + anon_sym_PIPE_RBRACE, + [123374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(4064), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240236,33 +240382,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123480] = 2, + [123394] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + ACTIONS(6651), 1, + anon_sym_LT_SLASH, + STATE(3075), 1, + sym_jsx_opening_element, + STATE(4213), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6649), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3085), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [123428] = 9, + ACTIONS(6611), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6617), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6619), 1, anon_sym_LT, - anon_sym_extends, - [123500] = 2, + ACTIONS(6651), 1, + anon_sym_LT_SLASH, + STATE(3075), 1, + sym_jsx_opening_element, + STATE(4273), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6625), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [123462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 13, + ACTIONS(4078), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240272,15 +240450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123520] = 2, + [123482] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 13, + ACTIONS(4082), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240290,15 +240468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123540] = 2, + [123502] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4312), 13, + ACTIONS(4082), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240308,33 +240486,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123560] = 2, + [123522] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6655), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3525), 1, + sym__call_signature, + STATE(4456), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4316), 13, + ACTIONS(6653), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [123580] = 2, + anon_sym_PIPE_RBRACE, + [123558] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 13, + ACTIONS(4082), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240344,33 +240530,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123600] = 2, + [123578] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + ACTIONS(6631), 1, + anon_sym_LT_SLASH, + STATE(2228), 1, + sym_jsx_closing_element, + STATE(3075), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 13, + ACTIONS(6625), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [123612] = 3, + ACTIONS(3170), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3172), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + anon_sym_AMP3, anon_sym_extends, - [123620] = 2, + anon_sym_PIPE_RBRACE, + [123634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4320), 13, + ACTIONS(4098), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240380,33 +240592,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123640] = 2, + [123654] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6659), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4214), 1, + sym__call_signature, + STATE(4215), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4324), 13, + ACTIONS(6657), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [123660] = 2, + anon_sym_PIPE_RBRACE, + [123690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4098), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240416,15 +240636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123680] = 2, + [123710] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(4098), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240434,15 +240654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123700] = 2, + [123730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4328), 13, + ACTIONS(4156), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240452,15 +240672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123720] = 2, + [123750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4332), 13, + ACTIONS(4156), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240470,21 +240690,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123740] = 5, - ACTIONS(4164), 1, + [123770] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6661), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4111), 1, + sym__call_signature, + STATE(4112), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6605), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [123806] = 3, + ACTIONS(3188), 1, anon_sym_PIPE, - ACTIONS(6641), 1, - anon_sym_DOT, - ACTIONS(6643), 1, - anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 10, + ACTIONS(3190), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240492,33 +240734,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123766] = 3, - ACTIONS(3623), 1, + [123828] = 3, + ACTIONS(4162), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 12, + ACTIONS(4164), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_AMP, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123788] = 2, + [123850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4392), 13, + ACTIONS(4156), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240528,34 +240772,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123808] = 3, - ACTIONS(4272), 1, + [123870] = 6, + ACTIONS(4370), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4372), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [123898] = 3, + ACTIONS(4274), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 12, + ACTIONS(4276), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_AMP, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [123830] = 2, + [123920] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4360), 13, + ACTIONS(4200), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240565,87 +240831,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123850] = 2, + [123940] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 13, + ACTIONS(4284), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123962] = 6, + ACTIONS(4406), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(6603), 1, anon_sym_extends, - [123870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4408), 9, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [123890] = 2, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [123990] = 4, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4364), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4230), 11, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [123910] = 2, + [124014] = 3, + ACTIONS(3182), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(3184), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + anon_sym_AMP3, anon_sym_extends, - [123930] = 2, + anon_sym_PIPE_RBRACE, + [124036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(4204), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240655,15 +240929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123950] = 2, + [124056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4368), 13, + ACTIONS(4204), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -240673,75 +240947,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [123970] = 10, - ACTIONS(2478), 1, + [124076] = 6, + ACTIONS(4258), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [124104] = 10, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6645), 1, + ACTIONS(6663), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(3732), 1, + STATE(3577), 1, sym__call_signature, - STATE(4058), 1, + STATE(4215), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6593), 5, + ACTIONS(6657), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124006] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6647), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4270), 1, - sym__call_signature, - STATE(4271), 1, - sym_type_annotation, - STATE(5435), 1, - sym_type_parameters, + [124140] = 4, + ACTIONS(1767), 1, + anon_sym_DOT, + ACTIONS(4302), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6597), 5, + ACTIONS(4304), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [124042] = 6, - ACTIONS(4072), 1, + [124164] = 6, + ACTIONS(4240), 1, anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 9, + ACTIONS(4242), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -240751,206 +241041,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [124070] = 2, + [124192] = 3, + ACTIONS(3640), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4372), 13, + ACTIONS(3417), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + anon_sym_AMP3, anon_sym_extends, - [124090] = 3, - ACTIONS(3186), 1, + anon_sym_PIPE_RBRACE, + [124214] = 3, + ACTIONS(3644), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3188), 12, + ACTIONS(3449), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124112] = 4, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(6617), 1, - anon_sym_AMP, + [124236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 11, + ACTIONS(4204), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [124136] = 3, - ACTIONS(4058), 1, - anon_sym_PIPE, + [124256] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6665), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3969), 1, + sym_type_annotation, + STATE(4181), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4060), 11, + ACTIONS(6641), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [124157] = 12, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6649), 1, - anon_sym_GT, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(6653), 1, - anon_sym_SLASH_GT, - STATE(3397), 1, - sym_type_arguments, - STATE(3434), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [124196] = 9, - ACTIONS(2478), 1, + [124292] = 10, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6667), 1, + anon_sym_QMARK, + STATE(3274), 1, sym_formal_parameters, - STATE(4355), 1, + STATE(4332), 1, sym__call_signature, - STATE(4356), 1, + STATE(4334), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6655), 5, + ACTIONS(6621), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124229] = 3, - ACTIONS(4090), 1, - anon_sym_PIPE, + [124328] = 4, + ACTIONS(4248), 1, + anon_sym_EQ, + ACTIONS(6669), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4092), 11, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4250), 11, 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_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124250] = 8, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(3699), 1, - sym_formal_parameters, - STATE(5356), 1, - sym_type_parameters, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + [124352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3758), 5, + ACTIONS(4311), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124281] = 9, - ACTIONS(2478), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [124372] = 10, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6671), 1, + anon_sym_QMARK, + STATE(3274), 1, sym_formal_parameters, - STATE(3670), 1, + STATE(4455), 1, sym__call_signature, - STATE(4356), 1, + STATE(4456), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6655), 5, + ACTIONS(6653), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124314] = 4, - ACTIONS(4026), 1, + [124408] = 4, + ACTIONS(4044), 1, anon_sym_PIPE, - ACTIONS(6432), 1, + ACTIONS(6436), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 10, + ACTIONS(4046), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240958,165 +241229,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [124337] = 9, - ACTIONS(2478), 1, + [124431] = 9, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(3730), 1, + STATE(3588), 1, sym__call_signature, - STATE(4054), 1, + STATE(3970), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 5, + ACTIONS(6673), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124370] = 9, - ACTIONS(2478), 1, + [124464] = 9, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(3583), 1, + STATE(4450), 1, sym__call_signature, - STATE(4377), 1, + STATE(4452), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6659), 5, + ACTIONS(6675), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124403] = 12, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6649), 1, - anon_sym_GT, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(6661), 1, - anon_sym_SLASH_GT, - STATE(3331), 1, - sym_type_arguments, - STATE(3339), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [124442] = 11, - ACTIONS(2478), 1, + [124497] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_formal_parameters, - STATE(3952), 1, + STATE(4185), 1, sym_type_annotation, - STATE(4920), 1, + STATE(4961), 1, sym__initializer, - STATE(5228), 1, + STATE(5299), 1, sym__call_signature, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124479] = 5, - ACTIONS(6396), 1, + [124534] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6637), 1, - anon_sym_DOT, - STATE(3448), 1, - sym_type_arguments, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(3754), 1, + sym_formal_parameters, + STATE(5486), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3998), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 5, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [124565] = 3, + ACTIONS(4132), 1, anon_sym_PIPE, - anon_sym_extends, - [124504] = 5, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6665), 1, - anon_sym_DOT, - STATE(3261), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 9, + ACTIONS(4134), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_DOT, + anon_sym_AMP3, anon_sym_extends, - [124529] = 7, - ACTIONS(3752), 1, + anon_sym_PIPE_RBRACE, + [124586] = 7, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3868), 1, + ACTIONS(3790), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4947), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -241124,242 +241369,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [124558] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3848), 1, - sym_formal_parameters, - STATE(4029), 1, - sym_type_annotation, - STATE(4778), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5370), 1, - sym__call_signature, + [124615] = 3, + ACTIONS(1657), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(1655), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124595] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(3904), 1, - sym__call_signature, - STATE(3927), 1, - sym_type_annotation, - STATE(5198), 1, - sym__initializer, - STATE(5339), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [124636] = 3, + ACTIONS(4266), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6667), 3, + ACTIONS(4268), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124632] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124657] = 7, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3848), 1, - sym_formal_parameters, - STATE(4042), 1, - sym_type_annotation, - STATE(4839), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5478), 1, - sym__call_signature, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(3786), 7, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [124669] = 11, - ACTIONS(2478), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6444), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [124686] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(3927), 1, - sym_type_annotation, - STATE(5218), 1, + STATE(3922), 1, sym__call_signature, - STATE(5219), 1, + STATE(4166), 1, + sym_type_annotation, + STATE(5157), 1, sym__initializer, - STATE(5435), 1, + STATE(5452), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6667), 3, + ACTIONS(6679), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124706] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(3899), 1, - sym__call_signature, - STATE(4093), 1, - sym_type_annotation, - STATE(5090), 1, - sym__initializer, - STATE(5339), 1, - sym_type_parameters, + [124723] = 4, + ACTIONS(4040), 1, + anon_sym_PIPE, + ACTIONS(6436), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6669), 3, + ACTIONS(4042), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124743] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3848), 1, - sym_formal_parameters, - STATE(4139), 1, - sym_type_annotation, - STATE(4732), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5518), 1, - sym__call_signature, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124746] = 4, + ACTIONS(4022), 1, + anon_sym_PIPE, + ACTIONS(6681), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(4024), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124780] = 11, - ACTIONS(2478), 1, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124769] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_formal_parameters, - STATE(4138), 1, + STATE(3972), 1, sym_type_annotation, - STATE(5148), 1, + STATE(4896), 1, sym__initializer, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5446), 1, + STATE(5543), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124817] = 11, - ACTIONS(2478), 1, + [124806] = 9, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4179), 1, + STATE(4216), 1, + sym__call_signature, + STATE(4217), 1, sym_type_annotation, - STATE(4746), 1, - sym__initializer, - STATE(5231), 1, + STATE(5499), 1, sym_type_parameters, - STATE(5313), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6685), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [124854] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(3882), 1, - sym__call_signature, - STATE(4326), 1, - sym_type_annotation, - STATE(4981), 1, - sym__initializer, - STATE(5339), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [124839] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(6336), 1, + anon_sym_STAR, + ACTIONS(6340), 1, + anon_sym_LBRACE, + ACTIONS(6548), 1, + sym_identifier, + ACTIONS(6550), 1, + anon_sym_type, + STATE(4068), 1, + sym_string, + STATE(4072), 1, + sym_import_require_clause, + STATE(5397), 1, + sym_import_clause, + STATE(5490), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6675), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124891] = 12, - ACTIONS(3521), 1, + STATE(5763), 2, + sym_namespace_import, + sym_named_imports, + [124878] = 12, + ACTIONS(3519), 1, anon_sym_LT, ACTIONS(6301), 1, sym_identifier, @@ -241367,189 +241577,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6649), 1, + ACTIONS(6687), 1, anon_sym_GT, - ACTIONS(6651), 1, + ACTIONS(6689), 1, anon_sym_DOT, - ACTIONS(6677), 1, + ACTIONS(6691), 1, anon_sym_SLASH_GT, - STATE(3316), 1, + STATE(3412), 1, sym_type_arguments, - STATE(3363), 1, + STATE(3416), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [124930] = 11, - ACTIONS(2478), 1, + [124917] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(4186), 1, + STATE(3943), 1, + sym__call_signature, + STATE(4384), 1, sym_type_annotation, - STATE(4762), 1, + STATE(5077), 1, sym__initializer, - STATE(5231), 1, + STATE(5452), 1, sym_type_parameters, - STATE(5340), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124967] = 7, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + [124954] = 8, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6297), 1, + anon_sym_DOT, + ACTIONS(6299), 1, + anon_sym_QMARK_DOT, + ACTIONS(6695), 1, + anon_sym_LPAREN, + STATE(2879), 1, + sym_arguments, + STATE(2900), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124996] = 11, - ACTIONS(2478), 1, + ACTIONS(4004), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [124985] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6444), 1, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_formal_parameters, - STATE(4326), 1, + STATE(4082), 1, sym_type_annotation, - STATE(4992), 1, - sym__call_signature, - STATE(4993), 1, + STATE(4653), 1, sym__initializer, - STATE(5435), 1, + STATE(5509), 1, sym_type_parameters, + STATE(5514), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6675), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125033] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, + [125022] = 4, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(6697), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4184), 10, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [125045] = 11, + ACTIONS(2470), 1, + anon_sym_LT, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_formal_parameters, - STATE(4107), 1, + STATE(4124), 1, sym_type_annotation, - STATE(5130), 1, + STATE(4735), 1, sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5480), 1, + STATE(5249), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125070] = 9, - ACTIONS(2478), 1, + [125082] = 9, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4265), 1, + STATE(3598), 1, sym__call_signature, - STATE(4266), 1, + STATE(4368), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6679), 5, + ACTIONS(6699), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125103] = 11, - ACTIONS(2478), 1, + [125115] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_formal_parameters, - STATE(4446), 1, + STATE(4296), 1, sym_type_annotation, - STATE(5199), 1, + STATE(4709), 1, sym__initializer, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5546), 1, + STATE(5531), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125140] = 7, - ACTIONS(3752), 1, + [125152] = 7, + ACTIONS(3780), 1, anon_sym_COMMA, - ACTIONS(3755), 1, + ACTIONS(3872), 1, anon_sym_RBRACE, - ACTIONS(4429), 1, + ACTIONS(4639), 1, anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, + STATE(4902), 1, aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -241557,537 +241787,629 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125169] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, + [125181] = 3, + ACTIONS(4374), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4376), 11, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6450), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [125202] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4396), 1, + STATE(4384), 1, sym_type_annotation, - STATE(5108), 1, + STATE(5134), 1, + sym__call_signature, + STATE(5141), 1, sym__initializer, - STATE(5231), 1, + STATE(5499), 1, sym_type_parameters, - STATE(5464), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125206] = 9, - ACTIONS(2478), 1, + [125239] = 8, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6293), 1, + anon_sym_DOT, + ACTIONS(6295), 1, + anon_sym_QMARK_DOT, + ACTIONS(6695), 1, + anon_sym_LPAREN, + STATE(2875), 1, + sym_arguments, + STATE(2942), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4010), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [125270] = 9, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(3956), 1, + STATE(3719), 1, sym__call_signature, - STATE(3957), 1, + STATE(4452), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6681), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125239] = 3, - ACTIONS(4062), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4064), 11, + ACTIONS(6675), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [125260] = 11, - ACTIONS(2478), 1, + [125303] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4250), 1, + STATE(4054), 1, sym_type_annotation, - STATE(4859), 1, + STATE(4876), 1, + sym__call_signature, + STATE(4877), 1, sym__initializer, - STATE(5231), 1, + STATE(5499), 1, sym_type_parameters, - STATE(5527), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6703), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125297] = 11, - ACTIONS(2478), 1, + [125340] = 9, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4354), 1, + STATE(4005), 1, + sym__call_signature, + STATE(4018), 1, sym_type_annotation, - STATE(5032), 1, - sym__initializer, - STATE(5231), 1, + STATE(5499), 1, sym_type_parameters, - STATE(5347), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6683), 3, + ACTIONS(6705), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [125334] = 9, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [125373] = 12, + ACTIONS(3519), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6687), 1, + anon_sym_GT, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(6707), 1, + anon_sym_SLASH_GT, + STATE(3448), 1, + sym_type_arguments, + STATE(3449), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [125412] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_formal_parameters, - STATE(3653), 1, - sym__call_signature, - STATE(4266), 1, + STATE(4095), 1, sym_type_annotation, - STATE(5435), 1, + STATE(4881), 1, + sym__initializer, + STATE(5509), 1, sym_type_parameters, + STATE(5544), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6679), 5, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125367] = 4, - ACTIONS(3938), 1, + [125449] = 5, + ACTIONS(6360), 1, anon_sym_LPAREN, - STATE(1660), 1, + ACTIONS(6709), 1, + anon_sym_DOT, + STATE(3262), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 10, + ACTIONS(4030), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [125390] = 9, - ACTIONS(2478), 1, + [125474] = 9, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4376), 1, + STATE(3722), 1, sym__call_signature, - STATE(4377), 1, + STATE(4018), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6659), 5, + ACTIONS(6705), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125423] = 8, + [125507] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4361), 1, + sym_type_annotation, + STATE(5127), 1, + sym__initializer, + STATE(5482), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125544] = 8, ACTIONS(3530), 1, anon_sym_COLON, ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6324), 1, + ACTIONS(6322), 1, anon_sym_DOT, - ACTIONS(6685), 1, + ACTIONS(6713), 1, anon_sym_QMARK, - STATE(2909), 1, + STATE(2994), 1, sym_type_arguments, - STATE(5414), 1, + STATE(5530), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 6, + ACTIONS(3499), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [125454] = 9, - ACTIONS(2478), 1, + [125575] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_formal_parameters, - STATE(4053), 1, - sym__call_signature, - STATE(4054), 1, + STATE(4102), 1, sym_type_annotation, - STATE(5435), 1, + STATE(4891), 1, + sym__initializer, + STATE(5509), 1, sym_type_parameters, + STATE(5569), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6657), 5, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125487] = 12, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(6328), 1, - anon_sym_STAR, - ACTIONS(6332), 1, - anon_sym_LBRACE, - ACTIONS(6506), 1, + [125612] = 12, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(6508), 1, - anon_sym_type, - STATE(4188), 1, - sym_string, - STATE(4189), 1, - sym_import_require_clause, - STATE(5294), 1, - sym__import_identifier, - STATE(5345), 1, - sym_import_clause, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6687), 1, + anon_sym_GT, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(6716), 1, + anon_sym_SLASH_GT, + STATE(3398), 1, + sym_type_arguments, + STATE(3399), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5775), 2, - sym_namespace_import, - sym_named_imports, - [125526] = 3, - ACTIONS(1685), 1, - anon_sym_PIPE, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [125651] = 8, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6724), 1, + anon_sym_LT_SLASH, + ACTIONS(6726), 1, + anon_sym_AMP, + ACTIONS(6729), 1, + anon_sym_LT, + STATE(3075), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1683), 11, - sym__automatic_semicolon, + ACTIONS(6721), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [125682] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_is, - anon_sym_PIPE_RBRACE, - [125547] = 4, - ACTIONS(4148), 1, - anon_sym_PIPE, - ACTIONS(6688), 1, - anon_sym_DOT, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4022), 1, + sym_type_annotation, + STATE(4629), 1, + sym__initializer, + STATE(5314), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 10, + ACTIONS(6732), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125570] = 11, - ACTIONS(2478), 1, + [125719] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_formal_parameters, - STATE(3976), 1, + STATE(4372), 1, sym_type_annotation, - STATE(4780), 1, + STATE(5138), 1, sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5373), 1, + STATE(5492), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125607] = 4, - ACTIONS(4022), 1, + [125756] = 3, + ACTIONS(4106), 1, anon_sym_PIPE, - ACTIONS(6432), 1, - anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 10, + ACTIONS(4108), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125630] = 9, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, + [125777] = 7, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(6452), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [125806] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3267), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_formal_parameters, - STATE(3688), 1, - sym__call_signature, - STATE(3957), 1, + STATE(4272), 1, sym_type_annotation, - STATE(5435), 1, + STATE(5028), 1, + sym__initializer, + STATE(5396), 1, + sym__call_signature, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6681), 5, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [125843] = 7, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [125663] = 4, - ACTIONS(4030), 1, - anon_sym_PIPE, - ACTIONS(6690), 1, - anon_sym_is, + [125872] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4406), 1, + sym_type_annotation, + STATE(5047), 1, + sym__initializer, + STATE(5409), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 10, + ACTIONS(6683), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125686] = 8, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3451), 1, - anon_sym_QMARK_DOT, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6692), 1, + [125909] = 4, + ACTIONS(3938), 1, anon_sym_LPAREN, - STATE(2880), 1, + STATE(1635), 1, sym_arguments, - STATE(2987), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3441), 6, - anon_sym_as, + ACTIONS(4272), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_GT, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [125717] = 8, - ACTIONS(6291), 1, + [125932] = 9, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6297), 1, - anon_sym_DOT, - ACTIONS(6299), 1, - anon_sym_QMARK_DOT, - ACTIONS(6692), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(2876), 1, - sym_arguments, - STATE(2989), 1, - sym_type_arguments, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(3582), 1, + sym__call_signature, + STATE(4217), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3998), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [125748] = 8, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6293), 1, + ACTIONS(6685), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [125965] = 8, + ACTIONS(3431), 1, anon_sym_DOT, - ACTIONS(6295), 1, + ACTIONS(3435), 1, anon_sym_QMARK_DOT, - ACTIONS(6692), 1, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6695), 1, anon_sym_LPAREN, - STATE(2872), 1, + STATE(2873), 1, sym_arguments, - STATE(2992), 1, + STATE(2924), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4016), 6, + ACTIONS(3425), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [125779] = 11, - ACTIONS(2478), 1, + [125996] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3848), 1, - sym_formal_parameters, - STATE(4314), 1, - sym_type_annotation, - STATE(4961), 1, - sym__initializer, - STATE(5231), 1, - sym_type_parameters, - STATE(5322), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6694), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [125816] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - STATE(3396), 1, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3389), 1, sym_formal_parameters, - STATE(3783), 1, + STATE(3854), 1, sym__call_signature, - STATE(4173), 1, + STATE(4054), 1, sym_type_annotation, - STATE(4733), 1, + STATE(4842), 1, sym__initializer, - STATE(5339), 1, + STATE(5452), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6696), 3, + ACTIONS(6703), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125853] = 7, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3800), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [125882] = 12, - ACTIONS(3521), 1, + [126033] = 12, + ACTIONS(3519), 1, anon_sym_LT, ACTIONS(6301), 1, sym_identifier, @@ -242095,97 +242417,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6649), 1, + ACTIONS(6687), 1, anon_sym_GT, - ACTIONS(6651), 1, + ACTIONS(6689), 1, anon_sym_DOT, - ACTIONS(6698), 1, + ACTIONS(6734), 1, anon_sym_SLASH_GT, - STATE(3369), 1, + STATE(3303), 1, sym_type_arguments, - STATE(3384), 1, + STATE(3304), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [125921] = 11, - ACTIONS(2478), 1, + [126072] = 5, + ACTIONS(6366), 1, + anon_sym_LT, + ACTIONS(6633), 1, + anon_sym_DOT, + STATE(3358), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126097] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, - anon_sym_EQ, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, sym_formal_parameters, - STATE(4285), 1, + STATE(4440), 1, sym_type_annotation, - STATE(4916), 1, + STATE(5201), 1, sym__initializer, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5238), 1, + STATE(5538), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125958] = 3, - ACTIONS(4214), 1, - anon_sym_PIPE, + [126134] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(3970), 1, + sym_type_annotation, + STATE(4430), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 11, + ACTIONS(6673), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [125979] = 7, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3803), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + [126167] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4445), 1, + sym_type_annotation, + STATE(5207), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5545), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 7, + ACTIONS(6711), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126008] = 3, - ACTIONS(4122), 1, + [126204] = 3, + ACTIONS(4144), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 11, + ACTIONS(4146), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242194,42 +242546,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126029] = 11, - ACTIONS(2478), 1, + [126225] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6462), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3786), 1, - sym__call_signature, - STATE(4199), 1, + STATE(4276), 1, sym_type_annotation, - STATE(4796), 1, + STATE(5036), 1, sym__initializer, - STATE(5339), 1, + STATE(5403), 1, + sym__call_signature, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6700), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126066] = 3, - ACTIONS(4136), 1, + [126262] = 3, + ACTIONS(4036), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 11, + ACTIONS(4038), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242237,81 +242589,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [126087] = 11, - ACTIONS(2478), 1, + [126283] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6444), 1, + ACTIONS(6450), 1, anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4175), 1, + sym_type_annotation, + STATE(4953), 1, + sym__initializer, + STATE(5287), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126320] = 11, + ACTIONS(2470), 1, + anon_sym_LT, ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3848), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(4397), 1, + STATE(3950), 1, + sym__call_signature, + STATE(4403), 1, sym_type_annotation, - STATE(5018), 1, + STATE(5057), 1, sym__initializer, - STATE(5231), 1, + STATE(5452), 1, sym_type_parameters, - STATE(5333), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126124] = 5, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_LBRACK, + [126357] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(4348), 1, + sym__call_signature, + STATE(4368), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4198), 7, + ACTIONS(6699), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126148] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, - anon_sym_PIPE, - ACTIONS(6708), 1, - anon_sym_extends, + [126390] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3389), 1, + sym_formal_parameters, + STATE(3908), 1, + sym__call_signature, + STATE(4258), 1, + sym_type_annotation, + STATE(5012), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 8, + ACTIONS(6738), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [126172] = 3, - ACTIONS(4026), 1, + [126427] = 3, + ACTIONS(4348), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 10, + ACTIONS(4350), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242319,72 +242709,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126192] = 3, - ACTIONS(1699), 1, - anon_sym_DOT, + [126447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 10, + ACTIONS(4276), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [126212] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6714), 1, - anon_sym_LT_SLASH, - ACTIONS(6716), 1, - anon_sym_LT, - STATE(3252), 1, - sym_jsx_opening_element, - STATE(4305), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6712), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3185), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126242] = 3, - ACTIONS(1791), 1, - anon_sym_DOT, + [126465] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 10, + ACTIONS(4284), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [126262] = 3, - ACTIONS(2336), 1, + [126483] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5552), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [126501] = 3, + ACTIONS(4022), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2334), 10, + ACTIONS(4024), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242392,70 +242774,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126282] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6714), 1, - anon_sym_LT_SLASH, - ACTIONS(6716), 1, - anon_sym_LT, - STATE(3252), 1, - sym_jsx_opening_element, - STATE(4321), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6718), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3273), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126312] = 2, + [126521] = 3, + ACTIONS(4166), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4088), 11, + ACTIONS(4168), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP3, anon_sym_extends, - [126330] = 2, + anon_sym_PIPE_RBRACE, + [126541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 11, + ACTIONS(3417), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [126348] = 3, - ACTIONS(4280), 1, + [126559] = 3, + ACTIONS(4040), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 10, + ACTIONS(4042), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242463,16 +242824,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126368] = 3, - ACTIONS(4342), 1, + [126579] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126597] = 3, + ACTIONS(4188), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 10, + ACTIONS(4190), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242480,52 +242857,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126388] = 2, + [126617] = 4, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(6740), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4408), 11, + ACTIONS(4190), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP3, anon_sym_extends, - [126406] = 4, - ACTIONS(6396), 1, - anon_sym_LT, - STATE(3456), 1, - sym_type_arguments, + anon_sym_PIPE_RBRACE, + [126639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 9, + ACTIONS(4322), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [126428] = 4, - ACTIONS(4284), 1, + [126657] = 3, + ACTIONS(4194), 1, anon_sym_PIPE, - ACTIONS(6704), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 9, + ACTIONS(4196), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242533,90 +242908,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126450] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, - anon_sym_PIPE, - ACTIONS(6708), 1, - anon_sym_extends, + [126677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4096), 8, + ACTIONS(4326), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [126474] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, + anon_sym_DOT, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(6708), 1, anon_sym_extends, + [126695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4100), 8, + ACTIONS(4330), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [126498] = 3, - ACTIONS(4350), 1, + anon_sym_DOT, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_extends, + [126713] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4352), 10, + ACTIONS(4334), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126518] = 6, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6324), 1, anon_sym_DOT, - ACTIONS(6720), 1, - anon_sym_is, - STATE(2909), 1, - sym_type_arguments, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 7, + ACTIONS(3184), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [126544] = 3, - ACTIONS(4222), 1, + [126749] = 3, + ACTIONS(2340), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 10, + ACTIONS(2338), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242624,16 +242989,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126564] = 3, - ACTIONS(4354), 1, + [126769] = 3, + ACTIONS(4216), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 10, + ACTIONS(4218), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242641,38 +243006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126584] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, - anon_sym_LT, - ACTIONS(6724), 1, - anon_sym_LT_SLASH, - STATE(1621), 1, - sym_jsx_closing_element, - STATE(3252), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6722), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3247), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126614] = 3, - ACTIONS(4374), 1, + [126789] = 3, + ACTIONS(4220), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4376), 10, + ACTIONS(4122), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242680,16 +243023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126634] = 3, - ACTIONS(4378), 1, + [126809] = 3, + ACTIONS(4224), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 10, + ACTIONS(4226), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242697,16 +243040,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126654] = 3, - ACTIONS(4382), 1, + [126829] = 4, + ACTIONS(4228), 1, anon_sym_PIPE, + ACTIONS(6742), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 10, + ACTIONS(4230), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242714,16 +243059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126674] = 3, - ACTIONS(2344), 1, + [126851] = 3, + ACTIONS(4126), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2342), 10, + ACTIONS(4124), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242731,20 +243075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126694] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, + [126871] = 3, + ACTIONS(4232), 1, anon_sym_PIPE, - ACTIONS(6708), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 8, + ACTIONS(4234), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242752,30 +243092,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [126718] = 2, + [126891] = 4, + ACTIONS(6366), 1, + anon_sym_LT, + STATE(3359), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3188), 11, + ACTIONS(4024), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [126736] = 3, - ACTIONS(2340), 1, + [126913] = 3, + ACTIONS(4236), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 10, + ACTIONS(4238), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242783,16 +243127,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126756] = 3, - ACTIONS(4230), 1, + [126933] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4232), 10, + ACTIONS(4242), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242800,51 +243148,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [126776] = 4, - ACTIONS(6392), 1, - anon_sym_DOT, - ACTIONS(6394), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3441), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126798] = 3, - ACTIONS(4234), 1, + [126957] = 5, + ACTIONS(4188), 1, anon_sym_PIPE, + ACTIONS(6740), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 10, + ACTIONS(4190), 2, + anon_sym_AMP3, + anon_sym_extends, + ACTIONS(4246), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [126818] = 3, - ACTIONS(4140), 1, + [126981] = 4, + ACTIONS(4248), 1, anon_sym_PIPE, + ACTIONS(6748), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 10, + ACTIONS(4250), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242852,51 +243184,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_AMP3, anon_sym_PIPE_RBRACE, - [126838] = 3, - ACTIONS(4030), 1, + [127003] = 4, + ACTIONS(4254), 1, anon_sym_PIPE, + ACTIONS(6740), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 10, + ACTIONS(4256), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126858] = 4, - ACTIONS(6726), 1, - anon_sym_DOT, - ACTIONS(6728), 1, - anon_sym_QMARK_DOT, + [127025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4166), 9, + ACTIONS(3172), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [126880] = 3, - ACTIONS(4144), 1, + [127043] = 3, + ACTIONS(4262), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 10, + ACTIONS(4264), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242904,16 +243234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126900] = 3, - ACTIONS(4238), 1, + [127063] = 3, + ACTIONS(2344), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 10, + ACTIONS(2342), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242921,16 +243251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126920] = 3, - ACTIONS(4022), 1, + [127083] = 3, + ACTIONS(4270), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 10, + ACTIONS(4272), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242938,58 +243268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126940] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, - anon_sym_LT, - ACTIONS(6730), 1, - anon_sym_LT_SLASH, - STATE(2172), 1, - sym_jsx_closing_element, - STATE(3252), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6718), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3273), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [126970] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3699), 1, - sym_formal_parameters, - STATE(5356), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [126996] = 3, - ACTIONS(4154), 1, + [127103] = 3, + ACTIONS(4278), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 10, + ACTIONS(4280), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -242997,16 +243285,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127016] = 3, - ACTIONS(4160), 1, + [127123] = 3, + ACTIONS(4286), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 10, + ACTIONS(4288), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243014,112 +243302,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127036] = 2, + [127143] = 4, + ACTIONS(6362), 1, + anon_sym_DOT, + ACTIONS(6364), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3419), 11, + ACTIONS(3425), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [127054] = 2, + [127165] = 3, + ACTIONS(4290), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 11, + ACTIONS(4292), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [127072] = 2, + [127185] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3429), 11, + ACTIONS(4296), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP3, anon_sym_extends, - [127090] = 2, + anon_sym_PIPE_RBRACE, + [127205] = 3, + ACTIONS(4298), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5224), 11, + ACTIONS(4300), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [127108] = 2, + [127225] = 4, + ACTIONS(6750), 1, + anon_sym_DOT, + ACTIONS(6752), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 11, + ACTIONS(4212), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [127126] = 2, + [127247] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 11, + ACTIONS(4318), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127267] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, anon_sym_PIPE, + ACTIONS(6746), 1, anon_sym_extends, - [127144] = 3, - ACTIONS(2328), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [127291] = 3, + ACTIONS(4336), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2326), 10, + ACTIONS(4338), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243127,16 +243442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127164] = 3, - ACTIONS(4290), 1, + [127311] = 4, + ACTIONS(4344), 1, anon_sym_PIPE, + ACTIONS(6742), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 10, + ACTIONS(4346), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243144,20 +243461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127184] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, + [127333] = 3, + ACTIONS(2328), 1, anon_sym_PIPE, - ACTIONS(6708), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 8, + ACTIONS(2326), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243165,46 +243477,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [127208] = 2, + [127353] = 3, + ACTIONS(1767), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 11, + ACTIONS(4304), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [127226] = 2, + [127373] = 3, + ACTIONS(1797), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 11, + ACTIONS(4304), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [127244] = 3, - ACTIONS(4402), 1, + [127393] = 3, + ACTIONS(4398), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 10, + ACTIONS(4400), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243212,16 +243528,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127264] = 3, - ACTIONS(2332), 1, + [127413] = 3, + ACTIONS(4402), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2330), 10, + ACTIONS(4404), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243229,16 +243545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127284] = 3, - ACTIONS(4242), 1, + [127433] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 10, + ACTIONS(4408), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243246,32 +243566,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [127304] = 2, + [127457] = 3, + ACTIONS(4092), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3164), 11, + ACTIONS(4094), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP3, anon_sym_extends, - [127322] = 3, - ACTIONS(4246), 1, + anon_sym_PIPE_RBRACE, + [127477] = 3, + ACTIONS(4258), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 10, + ACTIONS(4260), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243279,20 +243598,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127342] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, + [127497] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, anon_sym_PIPE, - ACTIONS(6708), 1, + ACTIONS(6746), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 8, + ACTIONS(4260), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243301,85 +243620,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [127366] = 2, + [127521] = 3, + ACTIONS(2336), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3184), 11, + ACTIONS(2334), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP3, anon_sym_extends, - [127384] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, - anon_sym_LT, - ACTIONS(6730), 1, - anon_sym_LT_SLASH, - STATE(2317), 1, - sym_jsx_closing_element, - STATE(3252), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6732), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3216), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [127414] = 3, - ACTIONS(4170), 1, + anon_sym_PIPE_RBRACE, + [127541] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4270), 1, anon_sym_PIPE, + STATE(1635), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 10, + ACTIONS(4272), 8, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127434] = 3, - ACTIONS(4174), 1, - anon_sym_PIPE, + [127565] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 10, + ACTIONS(3190), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127454] = 3, - ACTIONS(4176), 1, + [127583] = 3, + ACTIONS(4170), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4178), 10, + ACTIONS(4172), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243387,18 +243686,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127474] = 4, - ACTIONS(4180), 1, + [127603] = 3, + ACTIONS(4174), 1, anon_sym_PIPE, - ACTIONS(6704), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 9, + ACTIONS(4176), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243406,15 +243703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127496] = 3, - ACTIONS(4134), 1, + [127623] = 3, + ACTIONS(4178), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 10, + ACTIONS(4180), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243422,16 +243720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127516] = 3, - ACTIONS(4184), 1, + [127643] = 3, + ACTIONS(2332), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 10, + ACTIONS(2330), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243439,16 +243737,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127536] = 3, - ACTIONS(4188), 1, + [127663] = 11, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6754), 1, + sym_identifier, + ACTIONS(6756), 1, + anon_sym_type, + ACTIONS(6758), 1, + anon_sym_COMMA, + ACTIONS(6760), 1, + anon_sym_RBRACE, + ACTIONS(6762), 1, + anon_sym_typeof, + STATE(4834), 1, + sym_import_specifier, + STATE(5480), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5759), 2, + sym__module_export_name, + sym_string, + [127699] = 3, + ACTIONS(4366), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 10, + ACTIONS(4368), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243456,20 +243779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127556] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, + [127719] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, anon_sym_PIPE, - ACTIONS(6708), 1, + ACTIONS(6746), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 8, + ACTIONS(4372), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243478,72 +243801,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [127580] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, + [127743] = 6, + ACTIONS(6291), 1, anon_sym_LT, - ACTIONS(6724), 1, - anon_sym_LT_SLASH, - STATE(1684), 1, - sym_jsx_closing_element, - STATE(3252), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6718), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3273), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [127610] = 5, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(4222), 1, + ACTIONS(6322), 1, + anon_sym_DOT, + ACTIONS(6764), 1, + anon_sym_is, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, anon_sym_PIPE, - STATE(1660), 1, - sym_arguments, + anon_sym_QMARK, + anon_sym_extends, + [127769] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3754), 1, + sym_formal_parameters, + STATE(5486), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 8, + ACTIONS(3786), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127634] = 4, - ACTIONS(4200), 1, - anon_sym_PIPE, - ACTIONS(6734), 1, - anon_sym_extends, + [127795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 9, + ACTIONS(3786), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127656] = 3, - ACTIONS(4260), 1, + [127813] = 3, + ACTIONS(4044), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 10, + ACTIONS(4046), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243551,120 +243871,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127676] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, - anon_sym_LT, - ACTIONS(6736), 1, - anon_sym_LT_SLASH, - STATE(3252), 1, - sym_jsx_opening_element, - STATE(4196), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6718), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3273), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [127706] = 8, - ACTIONS(6710), 1, - anon_sym_LBRACE, - ACTIONS(6716), 1, - anon_sym_LT, - ACTIONS(6736), 1, - anon_sym_LT_SLASH, - STATE(3252), 1, - sym_jsx_opening_element, - STATE(4175), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6738), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3251), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [127736] = 3, - ACTIONS(4334), 1, - anon_sym_PIPE, + [127833] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 10, + ACTIONS(4164), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127756] = 11, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6740), 1, - sym_identifier, + [127851] = 5, ACTIONS(6742), 1, - anon_sym_type, + anon_sym_AMP3, ACTIONS(6744), 1, - anon_sym_COMMA, - ACTIONS(6746), 1, - anon_sym_RBRACE, - ACTIONS(6748), 1, - anon_sym_typeof, - STATE(4805), 1, - sym_import_specifier, - STATE(5428), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5603), 2, - sym__module_export_name, - sym_string, - [127792] = 4, - ACTIONS(4206), 1, anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_LBRACK, + ACTIONS(6746), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 9, + ACTIONS(4138), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_extends, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [127814] = 3, - ACTIONS(4210), 1, + [127875] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 10, + ACTIONS(4142), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -243672,102 +243927,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [127834] = 4, - ACTIONS(4154), 1, + [127899] = 3, + ACTIONS(4158), 1, anon_sym_PIPE, - ACTIONS(6702), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 9, + ACTIONS(4160), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP3, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127856] = 11, - ACTIONS(2478), 1, + [127919] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6750), 1, + ACTIONS(6766), 1, sym_identifier, - ACTIONS(6752), 1, + ACTIONS(6768), 1, anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6770), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6772), 1, anon_sym_implements, - STATE(2288), 1, + STATE(2061), 1, sym_class_body, - STATE(3741), 1, + STATE(3660), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5379), 1, + STATE(5458), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127891] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6754), 1, - anon_sym_extends, - ACTIONS(6756), 1, - anon_sym_implements, - ACTIONS(6758), 1, - sym_identifier, - STATE(2330), 1, - sym_class_body, - STATE(3593), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5260), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [127954] = 3, + ACTIONS(6774), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [127926] = 9, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6740), 1, - sym_identifier, - ACTIONS(6760), 1, - anon_sym_type, - ACTIONS(6762), 1, - anon_sym_as, - STATE(5245), 1, - sym__import_identifier, + ACTIONS(4024), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [127973] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 2, + ACTIONS(4134), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5931), 2, - sym__module_export_name, - sym_string, - [127957] = 2, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [127990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4216), 10, + ACTIONS(4268), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243775,52 +244012,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [127974] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6754), 1, - anon_sym_extends, - ACTIONS(6756), 1, - anon_sym_implements, - ACTIONS(6764), 1, - sym_identifier, - STATE(2288), 1, - sym_class_body, - STATE(3741), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5379), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [128007] = 8, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6776), 1, + anon_sym_EQ, + ACTIONS(6780), 1, + anon_sym_BANG, + STATE(4209), 1, + sym__initializer, + STATE(4233), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128009] = 5, - ACTIONS(5964), 1, - anon_sym_LPAREN, - ACTIONS(6358), 1, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6778), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128036] = 6, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6322), 1, anon_sym_DOT, - STATE(2893), 1, - sym_arguments, + ACTIONS(6784), 1, + anon_sym_is, + STATE(2994), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 7, - anon_sym_COMMA, + ACTIONS(3499), 6, + anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [128032] = 10, + [128061] = 10, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, @@ -243829,2907 +244064,2958 @@ static const uint16_t ts_small_parse_table[] = { sym_jsx_identifier, ACTIONS(6318), 1, anon_sym_SLASH_GT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(6603), 1, - anon_sym_GT, - STATE(3337), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [128065] = 10, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6601), 1, + ACTIONS(6593), 1, anon_sym_COLON, - ACTIONS(6603), 1, + ACTIONS(6595), 1, anon_sym_GT, - ACTIONS(6605), 1, - anon_sym_SLASH_GT, - STATE(3314), 1, + STATE(3407), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [128098] = 4, + [128094] = 11, + ACTIONS(2470), 1, + anon_sym_LT, ACTIONS(6768), 1, - anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6786), 1, + sym_identifier, + STATE(2061), 1, + sym_class_body, + STATE(3660), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5458), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3836), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6766), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128119] = 4, - ACTIONS(6768), 1, - anon_sym_COLON, + [128129] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3824), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6770), 6, + ACTIONS(6788), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [128140] = 8, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6772), 1, - anon_sym_EQ, - ACTIONS(6776), 1, - anon_sym_BANG, - STATE(4126), 1, - sym__initializer, - STATE(4264), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6774), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [128169] = 10, - ACTIONS(2970), 1, + [128152] = 10, + ACTIONS(3084), 1, anon_sym_DQUOTE, - ACTIONS(2972), 1, + ACTIONS(3086), 1, anon_sym_SQUOTE, - ACTIONS(6740), 1, + ACTIONS(6754), 1, sym_identifier, - ACTIONS(6742), 1, + ACTIONS(6756), 1, anon_sym_type, - ACTIONS(6748), 1, + ACTIONS(6762), 1, anon_sym_typeof, - ACTIONS(6780), 1, + ACTIONS(6790), 1, anon_sym_RBRACE, - STATE(5428), 1, - sym__import_identifier, - STATE(5458), 1, + STATE(5439), 1, sym_import_specifier, + STATE(5480), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5603), 2, + STATE(5759), 2, sym__module_export_name, sym_string, - [128202] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6754), 1, - anon_sym_extends, - ACTIONS(6756), 1, - anon_sym_implements, - ACTIONS(6782), 1, - sym_identifier, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(1669), 1, - sym_class_body, - STATE(3679), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5299), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [128237] = 4, - ACTIONS(4429), 1, - anon_sym_EQ, + [128185] = 4, + ACTIONS(6794), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4002), 2, + STATE(3820), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6792), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3758), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [128258] = 10, + [128206] = 10, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6322), 1, - anon_sym_SLASH_GT, - ACTIONS(6601), 1, + ACTIONS(6593), 1, anon_sym_COLON, - ACTIONS(6603), 1, + ACTIONS(6595), 1, anon_sym_GT, - STATE(3438), 1, + ACTIONS(6597), 1, + anon_sym_SLASH_GT, + STATE(3393), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [128291] = 7, - ACTIONS(6786), 1, - anon_sym_LBRACE, - ACTIONS(6792), 1, - anon_sym_LT_SLASH, - ACTIONS(6794), 1, - anon_sym_LT, - STATE(3252), 1, - sym_jsx_opening_element, + [128239] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6789), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(3273), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [128318] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, + ACTIONS(1655), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6754), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6756), 1, + anon_sym_is, + [128256] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, anon_sym_implements, - ACTIONS(6797), 1, + ACTIONS(6796), 1, sym_identifier, - STATE(2330), 1, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1721), 1, sym_class_body, - STATE(3593), 1, + STATE(3587), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5260), 1, + STATE(5517), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128353] = 3, - ACTIONS(6639), 1, - anon_sym_is, + [128291] = 9, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6780), 1, + anon_sym_BANG, + ACTIONS(6800), 1, + sym__automatic_semicolon, + STATE(4233), 1, + sym_type_annotation, + STATE(4979), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6778), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + [128322] = 4, + ACTIONS(6794), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 9, + STATE(3797), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6803), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [128343] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4038), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [128372] = 6, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6324), 1, - anon_sym_DOT, - ACTIONS(6799), 1, anon_sym_is, - STATE(2909), 1, - sym_type_arguments, + [128360] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6805), 1, + sym_identifier, + STATE(2061), 1, + sym_class_body, + STATE(3660), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5458), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3501), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128397] = 11, - ACTIONS(2478), 1, + [128395] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, + ACTIONS(6768), 1, anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6770), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6772), 1, anon_sym_implements, - ACTIONS(6801), 1, + ACTIONS(6807), 1, sym_identifier, - STATE(2330), 1, + STATE(2217), 1, sym_class_body, - STATE(3593), 1, + STATE(3602), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5260), 1, + STATE(5350), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128432] = 9, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6803), 1, - sym_identifier, - ACTIONS(6807), 1, - anon_sym_COMMA, + [128430] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6798), 1, + anon_sym_LBRACE, ACTIONS(6809), 1, - anon_sym_RBRACE, - STATE(5023), 1, - sym_export_specifier, + sym_identifier, + STATE(1655), 1, + sym_class_body, + STATE(3735), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5307), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6805), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5027), 2, - sym__module_export_name, - sym_string, - [128463] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, - anon_sym_PIPE, - ACTIONS(6708), 1, + [128465] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6811), 1, + sym_identifier, + STATE(2061), 1, + sym_class_body, + STATE(3660), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5458), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6811), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128486] = 3, + [128500] = 9, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6754), 1, + sym_identifier, ACTIONS(6813), 1, - anon_sym_is, + anon_sym_type, + ACTIONS(6815), 1, + anon_sym_as, + STATE(5449), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6552), 2, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128505] = 11, - ACTIONS(2478), 1, + anon_sym_RBRACE, + STATE(5705), 2, + sym__module_export_name, + sym_string, + [128531] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6754), 1, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6772), 1, anon_sym_implements, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6815), 1, + ACTIONS(6817), 1, sym_identifier, - STATE(2483), 1, + STATE(2217), 1, sym_class_body, - STATE(3729), 1, + STATE(3602), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5230), 1, + STATE(5350), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128540] = 10, - ACTIONS(2970), 1, + [128566] = 9, + ACTIONS(3084), 1, anon_sym_DQUOTE, - ACTIONS(2972), 1, + ACTIONS(3086), 1, anon_sym_SQUOTE, - ACTIONS(6740), 1, + ACTIONS(6819), 1, sym_identifier, - ACTIONS(6742), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6825), 1, + anon_sym_RBRACE, + STATE(4816), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6821), 2, anon_sym_type, - ACTIONS(6748), 1, anon_sym_typeof, - ACTIONS(6817), 1, + STATE(4818), 2, + sym__module_export_name, + sym_string, + [128597] = 10, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6754), 1, + sym_identifier, + ACTIONS(6756), 1, + anon_sym_type, + ACTIONS(6762), 1, + anon_sym_typeof, + ACTIONS(6827), 1, anon_sym_RBRACE, - STATE(5428), 1, - sym__import_identifier, - STATE(5458), 1, + STATE(5439), 1, sym_import_specifier, + STATE(5480), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5603), 2, + STATE(5759), 2, sym__module_export_name, sym_string, - [128573] = 11, - ACTIONS(2478), 1, + [128630] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, + ACTIONS(6768), 1, anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6770), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6772), 1, anon_sym_implements, - ACTIONS(6819), 1, + ACTIONS(6829), 1, sym_identifier, - STATE(2288), 1, + STATE(2217), 1, sym_class_body, - STATE(3741), 1, + STATE(3602), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5379), 1, + STATE(5350), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128608] = 2, + [128665] = 4, + ACTIONS(4639), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4060), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3998), 2, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [128625] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1683), 10, + anon_sym_RBRACE, + ACTIONS(3786), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_is, - [128642] = 2, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [128686] = 10, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(6595), 1, + anon_sym_GT, + ACTIONS(6627), 1, + anon_sym_SLASH_GT, + STATE(3300), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4138), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [128659] = 3, - ACTIONS(6821), 1, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128719] = 3, + ACTIONS(6831), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4150), 9, + ACTIONS(4184), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [128678] = 11, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6754), 1, - anon_sym_extends, - ACTIONS(6756), 1, - anon_sym_implements, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6823), 1, - sym_identifier, - STATE(1691), 1, - sym_class_body, - STATE(3745), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5320), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [128713] = 11, - ACTIONS(2478), 1, + [128738] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, + ACTIONS(6768), 1, anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6770), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6772), 1, anon_sym_implements, - ACTIONS(6825), 1, + ACTIONS(6833), 1, sym_identifier, - STATE(2330), 1, + STATE(2217), 1, sym_class_body, - STATE(3593), 1, + STATE(3602), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5260), 1, + STATE(5350), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128748] = 9, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6776), 1, - anon_sym_BANG, - ACTIONS(6827), 1, - sym__automatic_semicolon, - STATE(4264), 1, - sym_type_annotation, - STATE(4878), 1, - sym__initializer, + [128773] = 3, + ACTIONS(6635), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6774), 2, + ACTIONS(4042), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [128779] = 11, - ACTIONS(2478), 1, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [128792] = 11, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6770), 1, anon_sym_extends, - ACTIONS(6756), 1, + ACTIONS(6772), 1, anon_sym_implements, - ACTIONS(6830), 1, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, sym_identifier, - STATE(2288), 1, + STATE(2513), 1, sym_class_body, - STATE(3741), 1, + STATE(3729), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5379), 1, + STATE(5388), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [128814] = 3, - ACTIONS(6639), 1, + [128827] = 5, + ACTIONS(6038), 1, + anon_sym_LPAREN, + ACTIONS(6356), 1, + anon_sym_DOT, + STATE(2896), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4030), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [128850] = 3, + ACTIONS(6635), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 9, + ACTIONS(4046), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [128833] = 10, + [128869] = 10, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6601), 1, + ACTIONS(6324), 1, + anon_sym_SLASH_GT, + ACTIONS(6593), 1, anon_sym_COLON, - ACTIONS(6603), 1, + ACTIONS(6595), 1, anon_sym_GT, - ACTIONS(6629), 1, - anon_sym_SLASH_GT, - STATE(3308), 1, + STATE(3440), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [128866] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6832), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [128882] = 8, - ACTIONS(6444), 1, + [128902] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6834), 1, + ACTIONS(6837), 1, anon_sym_BANG, - ACTIONS(6836), 1, + ACTIONS(6839), 1, anon_sym_QMARK, - STATE(4208), 1, + STATE(4405), 1, sym_type_annotation, - STATE(4798), 1, + STATE(5148), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128910] = 2, + [128930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 9, + ACTIONS(4168), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [128926] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6838), 1, - anon_sym_BANG, - ACTIONS(6840), 1, - anon_sym_QMARK, - STATE(4217), 1, - sym_type_annotation, - STATE(4803), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [128954] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6842), 1, - anon_sym_BANG, - ACTIONS(6844), 1, - anon_sym_QMARK, - STATE(4263), 1, - sym_type_annotation, - STATE(4874), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [128982] = 9, + [128946] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6846), 1, + ACTIONS(6595), 1, anon_sym_GT, - ACTIONS(6848), 1, + ACTIONS(6627), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3305), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [129012] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [129038] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6850), 1, - anon_sym_BANG, - ACTIONS(6852), 1, - anon_sym_QMARK, - STATE(4210), 1, - sym_type_annotation, - STATE(4804), 1, - sym__initializer, + [128976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(4042), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129066] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6854), 1, - anon_sym_BANG, - ACTIONS(6856), 1, - anon_sym_QMARK, - STATE(4219), 1, - sym_type_annotation, - STATE(4814), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [128992] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(4300), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129094] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6858), 1, - anon_sym_BANG, - ACTIONS(6860), 1, - anon_sym_QMARK, - STATE(4140), 1, - sym_type_annotation, - STATE(4643), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(4280), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129122] = 9, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129024] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6862), 1, + ACTIONS(6841), 1, anon_sym_GT, - ACTIONS(6864), 1, + ACTIONS(6843), 1, anon_sym_SLASH_GT, - STATE(3410), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [129152] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6866), 1, - anon_sym_BANG, - ACTIONS(6868), 1, - anon_sym_QMARK, - STATE(4236), 1, - sym_type_annotation, - STATE(4838), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6559), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129180] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4232), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129196] = 9, + [129054] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6322), 1, - anon_sym_SLASH_GT, - ACTIONS(6603), 1, + ACTIONS(6845), 1, anon_sym_GT, - STATE(3370), 1, + ACTIONS(6847), 1, + anon_sym_SLASH_GT, + STATE(3307), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [129226] = 9, + [129084] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6870), 1, + ACTIONS(6849), 1, anon_sym_GT, - ACTIONS(6872), 1, + ACTIONS(6851), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [129256] = 9, + [129114] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6874), 1, + ACTIONS(6853), 1, anon_sym_GT, - ACTIONS(6876), 1, + ACTIONS(6855), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3308), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [129286] = 9, + [129144] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6878), 1, + ACTIONS(6857), 1, anon_sym_GT, - ACTIONS(6880), 1, + ACTIONS(6859), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [129316] = 9, + [129174] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6874), 1, + ACTIONS(6861), 1, anon_sym_GT, - ACTIONS(6882), 1, + ACTIONS(6863), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [129346] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6884), 1, - anon_sym_BANG, - ACTIONS(6886), 1, - anon_sym_QMARK, - STATE(4345), 1, - sym_type_annotation, - STATE(5016), 1, - sym__initializer, + [129204] = 8, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6819), 1, + sym_identifier, + ACTIONS(6865), 1, + anon_sym_RBRACE, + STATE(5389), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [129374] = 9, + ACTIONS(6821), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4818), 2, + sym__module_export_name, + sym_string, + [129232] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6878), 1, + ACTIONS(6867), 1, anon_sym_GT, - ACTIONS(6888), 1, + ACTIONS(6869), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [129404] = 9, + [129262] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6870), 1, + ACTIONS(6871), 1, anon_sym_GT, - ACTIONS(6890), 1, + ACTIONS(6873), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [129434] = 7, - ACTIONS(6444), 1, + [129292] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4101), 1, + ACTIONS(6875), 1, + anon_sym_BANG, + ACTIONS(6877), 1, + anon_sym_QMARK, + STATE(4167), 1, sym_type_annotation, - STATE(5063), 1, + STATE(4946), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6894), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6892), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129460] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6896), 1, - anon_sym_GT, - ACTIONS(6898), 1, - anon_sym_SLASH_GT, - STATE(3340), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [129320] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129490] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6900), 1, + ACTIONS(4318), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6902), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129336] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(849), 1, - sym_class_body, - STATE(3527), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5259), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129522] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + ACTIONS(4318), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6862), 1, - anon_sym_GT, - ACTIONS(6906), 1, - anon_sym_SLASH_GT, - STATE(3349), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129552] = 8, - ACTIONS(6444), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [129358] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6908), 1, + ACTIONS(6885), 1, anon_sym_BANG, - ACTIONS(6910), 1, + ACTIONS(6887), 1, anon_sym_QMARK, - STATE(4351), 1, + STATE(4171), 1, sym_type_annotation, - STATE(5025), 1, + STATE(4950), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129580] = 8, - ACTIONS(6444), 1, + [129386] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6912), 1, + ACTIONS(6889), 1, anon_sym_BANG, - ACTIONS(6914), 1, + ACTIONS(6891), 1, anon_sym_QMARK, - STATE(4352), 1, + STATE(4173), 1, sym_type_annotation, - STATE(5028), 1, + STATE(4951), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6500), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129608] = 2, + [129414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 9, + ACTIONS(4190), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [129624] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, + [129430] = 3, + ACTIONS(6893), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(780), 1, - sym_class_body, - STATE(3536), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5309), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129448] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129656] = 2, + ACTIONS(4196), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 9, + ACTIONS(4400), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [129672] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, + [129480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4404), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6902), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129496] = 7, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4080), 1, + sym_type_annotation, + STATE(4867), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6577), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6575), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [129522] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2192), 1, - sym_class_body, - STATE(3562), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5443), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129704] = 3, - ACTIONS(6918), 1, + ACTIONS(4408), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, + [129544] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 8, + ACTIONS(4094), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [129722] = 2, + [129560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4162), 9, + ACTIONS(4260), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [129738] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6920), 1, - anon_sym_GT, - ACTIONS(6922), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [129768] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, + [129576] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6924), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_class_body, - STATE(3568), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5369), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129800] = 2, + ACTIONS(4260), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [129598] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 9, + ACTIONS(4146), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [129816] = 2, + [129614] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4384), 9, + ACTIONS(2334), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [129832] = 9, + [129630] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6896), 1, - anon_sym_GT, - ACTIONS(6926), 1, + ACTIONS(6318), 1, anon_sym_SLASH_GT, - STATE(3364), 1, + ACTIONS(6595), 1, + anon_sym_GT, + STATE(3423), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [129862] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(3726), 1, - sym_type_parameters, - STATE(4096), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5237), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [129660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129894] = 8, - ACTIONS(6444), 1, + ACTIONS(6895), 9, anon_sym_EQ, - ACTIONS(6452), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(6928), 1, - anon_sym_BANG, - ACTIONS(6930), 1, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(3995), 1, - sym_type_annotation, - STATE(5125), 1, - sym__initializer, + [129676] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(4288), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129922] = 4, - ACTIONS(6932), 1, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129692] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3960), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6766), 5, + ACTIONS(4292), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129942] = 8, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6803), 1, - sym_identifier, - ACTIONS(6934), 1, - anon_sym_RBRACE, - STATE(5553), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6805), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5027), 2, - sym__module_export_name, - sym_string, - [129970] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6936), 1, - anon_sym_BANG, - ACTIONS(6938), 1, - anon_sym_QMARK, - STATE(4004), 1, - sym_type_annotation, - STATE(4634), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(4296), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [129998] = 9, - ACTIONS(6301), 1, - sym_identifier, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129724] = 7, ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6870), 1, - anon_sym_GT, - ACTIONS(6940), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + ACTIONS(6897), 1, + anon_sym_DQUOTE, + ACTIONS(6899), 1, + anon_sym_SQUOTE, + ACTIONS(6901), 1, + anon_sym_LT, + STATE(3084), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4084), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [130028] = 2, + sym_jsx_self_closing_element, + sym__jsx_string, + [129750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4404), 9, + ACTIONS(2338), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [130044] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6942), 1, - anon_sym_GT, - ACTIONS(6944), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130074] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6878), 1, - anon_sym_GT, - ACTIONS(6946), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [129766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130104] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + ACTIONS(4172), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6846), 1, - anon_sym_GT, - ACTIONS(6948), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130134] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6950), 1, - anon_sym_BANG, - ACTIONS(6952), 1, - anon_sym_QMARK, - STATE(3986), 1, - sym_type_annotation, - STATE(4940), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129782] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(4176), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130162] = 2, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2326), 9, + ACTIONS(4338), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [130178] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(3603), 1, - sym_type_parameters, - STATE(4012), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5454), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [129814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130210] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + ACTIONS(4180), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6862), 1, - anon_sym_GT, - ACTIONS(6954), 1, - anon_sym_SLASH_GT, - STATE(3309), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130240] = 2, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1805), 9, + ACTIONS(2330), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [130256] = 2, + [129846] = 3, + ACTIONS(6879), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6956), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [130272] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + ACTIONS(4346), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6920), 1, - anon_sym_GT, - ACTIONS(6958), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [129864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130302] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + ACTIONS(4218), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6874), 1, - anon_sym_GT, - ACTIONS(6960), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129880] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130332] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + ACTIONS(4350), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6862), 1, - anon_sym_GT, - ACTIONS(6962), 1, - anon_sym_SLASH_GT, - STATE(3311), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130362] = 2, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4172), 9, + ACTIONS(4122), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [130378] = 2, + [129912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4114), 9, + ACTIONS(4226), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [130394] = 2, + [129928] = 3, + ACTIONS(6879), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4178), 9, + ACTIONS(4230), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130410] = 2, + [129946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 9, + ACTIONS(4124), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [130426] = 3, - ACTIONS(6964), 1, - anon_sym_AMP, + [129962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 8, + ACTIONS(4234), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129978] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, anon_sym_PIPE, + ACTIONS(6883), 1, anon_sym_extends, - [130444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4132), 9, + ACTIONS(4242), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + [130000] = 4, + ACTIONS(6893), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 3, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [130460] = 2, + ACTIONS(4246), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [130020] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4186), 9, + ACTIONS(4368), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [130476] = 2, + [130036] = 3, + ACTIONS(6903), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 9, + ACTIONS(4250), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - anon_sym_extends, - [130492] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, + [130054] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [130080] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6905), 1, + anon_sym_BANG, + ACTIONS(6907), 1, + anon_sym_QMARK, + STATE(4100), 1, + sym_type_annotation, + STATE(4887), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130108] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, anon_sym_PIPE, - ACTIONS(6968), 1, + ACTIONS(6883), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 6, + ACTIONS(4372), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [130514] = 4, - ACTIONS(6918), 1, + [130130] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6909), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(229), 1, + sym_class_body, + STATE(3654), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5335), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [130162] = 3, + ACTIONS(6893), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, - anon_sym_AMP, + ACTIONS(4256), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - ACTIONS(4198), 5, + [130180] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_BANG, + ACTIONS(6919), 1, + anon_sym_QMARK, + STATE(4390), 1, + sym_type_annotation, + STATE(4731), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6915), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130208] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4108), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130534] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [130224] = 7, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4263), 1, + sym_type_annotation, + STATE(5016), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(6526), 2, + anon_sym_BANG, anon_sym_QMARK, - [130560] = 3, - ACTIONS(6970), 1, + ACTIONS(6524), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130250] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4238), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_extends, + [130266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 8, + ACTIONS(4264), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - [130578] = 9, + anon_sym_extends, + [130282] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6942), 1, + ACTIONS(6871), 1, anon_sym_GT, - ACTIONS(6972), 1, + ACTIONS(6921), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [130608] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6878), 1, - anon_sym_GT, - ACTIONS(6974), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [130312] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6923), 1, + anon_sym_BANG, + ACTIONS(6925), 1, + anon_sym_QMARK, + STATE(4291), 1, + sym_type_annotation, + STATE(5051), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130638] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130340] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6920), 1, - anon_sym_GT, - ACTIONS(6976), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2074), 1, + sym_class_body, + STATE(3532), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5521), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130668] = 8, - ACTIONS(6444), 1, + [130372] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6978), 1, + ACTIONS(6927), 1, anon_sym_BANG, - ACTIONS(6980), 1, + ACTIONS(6929), 1, anon_sym_QMARK, - STATE(4458), 1, + STATE(4297), 1, sym_type_annotation, - STATE(5216), 1, + STATE(5055), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130696] = 8, - ACTIONS(6444), 1, + [130400] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6982), 1, + ACTIONS(6931), 1, anon_sym_BANG, - ACTIONS(6984), 1, + ACTIONS(6933), 1, anon_sym_QMARK, - STATE(4227), 1, + STATE(4302), 1, sym_type_annotation, - STATE(4880), 1, + STATE(5058), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130724] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(724), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, + [130428] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5129), 1, - aux_sym_object_repeat1, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6935), 1, + anon_sym_BANG, + ACTIONS(6937), 1, + anon_sym_QMARK, + STATE(4316), 1, + sym_type_annotation, + STATE(5072), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130456] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(6939), 1, + anon_sym_BANG, + ACTIONS(6941), 1, anon_sym_QMARK, - [130750] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6896), 1, - anon_sym_GT, - ACTIONS(6986), 1, - anon_sym_SLASH_GT, - STATE(3310), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + STATE(4333), 1, + sym_type_annotation, + STATE(5090), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130780] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6846), 1, - anon_sym_GT, - ACTIONS(6988), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130484] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [130810] = 3, - ACTIONS(6918), 1, + ACTIONS(1707), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [130500] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6943), 1, + anon_sym_BANG, + ACTIONS(6945), 1, + anon_sym_QMARK, + STATE(4337), 1, + sym_type_annotation, + STATE(5094), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4208), 8, + ACTIONS(6462), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, + [130528] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, anon_sym_extends, - [130828] = 8, - ACTIONS(6444), 1, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2503), 1, + sym_class_body, + STATE(3584), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5288), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [130560] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6990), 1, + ACTIONS(6947), 1, anon_sym_BANG, - ACTIONS(6992), 1, + ACTIONS(6949), 1, anon_sym_QMARK, - STATE(3987), 1, + STATE(4340), 1, sym_type_annotation, - STATE(5010), 1, + STATE(5097), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130588] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6951), 1, + anon_sym_BANG, + ACTIONS(6953), 1, + anon_sym_QMARK, + STATE(4343), 1, + sym_type_annotation, + STATE(5100), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130856] = 9, + [130616] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6603), 1, + ACTIONS(6595), 1, anon_sym_GT, - ACTIONS(6605), 1, + ACTIONS(6597), 1, anon_sym_SLASH_GT, - STATE(3299), 1, + STATE(3400), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [130886] = 7, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6994), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_SQUOTE, - ACTIONS(6998), 1, - anon_sym_LT, - STATE(3182), 1, - sym_jsx_opening_element, + [130646] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6955), 1, + anon_sym_BANG, + ACTIONS(6957), 1, + anon_sym_QMARK, + STATE(4349), 1, + sym_type_annotation, + STATE(5107), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4253), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [130912] = 8, - ACTIONS(6444), 1, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130674] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7000), 1, + ACTIONS(6959), 1, anon_sym_BANG, - ACTIONS(7002), 1, + ACTIONS(6961), 1, anon_sym_QMARK, - STATE(3934), 1, + STATE(4352), 1, sym_type_annotation, - STATE(4613), 1, + STATE(5110), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130940] = 5, - ACTIONS(6358), 1, + [130702] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [130728] = 5, + ACTIONS(6356), 1, anon_sym_DOT, - ACTIONS(6692), 1, + ACTIONS(6695), 1, anon_sym_LPAREN, - STATE(2893), 1, + STATE(2896), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4054), 6, + ACTIONS(4030), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [130962] = 7, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6994), 1, - anon_sym_DQUOTE, - ACTIONS(6996), 1, - anon_sym_SQUOTE, - ACTIONS(6998), 1, - anon_sym_LT, - STATE(3182), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4254), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [130988] = 8, - ACTIONS(6444), 1, + [130750] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7004), 1, + ACTIONS(6963), 1, anon_sym_BANG, - ACTIONS(7006), 1, + ACTIONS(6965), 1, anon_sym_QMARK, - STATE(4160), 1, + STATE(4370), 1, sym_type_annotation, - STATE(4679), 1, + STATE(5135), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131016] = 8, - ACTIONS(6444), 1, + [130778] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7008), 1, - anon_sym_BANG, - ACTIONS(7010), 1, - anon_sym_QMARK, - STATE(3989), 1, + ACTIONS(6800), 1, + sym__automatic_semicolon, + STATE(4233), 1, sym_type_annotation, - STATE(5031), 1, + STATE(4985), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, + ACTIONS(6778), 2, anon_sym_COMMA, anon_sym_SEMI, - [131044] = 7, - ACTIONS(6444), 1, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + [130806] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4451), 1, + ACTIONS(6967), 1, + anon_sym_BANG, + ACTIONS(6969), 1, + anon_sym_QMARK, + STATE(4379), 1, sym_type_annotation, - STATE(5212), 1, + STATE(5143), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6555), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6553), 3, + ACTIONS(6462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131070] = 2, + [130834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 9, + ACTIONS(1723), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131086] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(6968), 1, anon_sym_extends, + [130850] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6971), 1, + anon_sym_BANG, + ACTIONS(6973), 1, + anon_sym_QMARK, + STATE(4106), 1, + sym_type_annotation, + STATE(4897), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 6, + ACTIONS(6470), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [131108] = 8, - ACTIONS(6444), 1, + [130878] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7012), 1, + ACTIONS(6975), 1, anon_sym_BANG, - ACTIONS(7014), 1, + ACTIONS(6977), 1, anon_sym_QMARK, - STATE(3974), 1, + STATE(4409), 1, sym_type_annotation, - STATE(4706), 1, + STATE(5165), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131136] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6942), 1, - anon_sym_GT, - ACTIONS(7016), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + [130906] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6979), 1, + anon_sym_BANG, + ACTIONS(6981), 1, + anon_sym_QMARK, + STATE(4413), 1, + sym_type_annotation, + STATE(5167), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [131166] = 7, - ACTIONS(237), 1, + ACTIONS(6462), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(722), 1, - anon_sym_RBRACE, - ACTIONS(4429), 1, - anon_sym_EQ, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [130934] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, + ACTIONS(6983), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [131192] = 8, - ACTIONS(6444), 1, + [130950] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7020), 1, + ACTIONS(6985), 1, anon_sym_BANG, - ACTIONS(7022), 1, + ACTIONS(6987), 1, anon_sym_QMARK, - STATE(4286), 1, + STATE(4423), 1, sym_type_annotation, - STATE(4918), 1, + STATE(5177), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7018), 3, + ACTIONS(6462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131220] = 7, - ACTIONS(237), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, + [130978] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(5023), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6989), 1, + anon_sym_BANG, + ACTIONS(6991), 1, + anon_sym_QMARK, + STATE(4425), 1, + sym_type_annotation, + STATE(5179), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131246] = 7, - ACTIONS(237), 1, + ACTIONS(6462), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5072), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, - STATE(5191), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [131006] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6867), 1, + anon_sym_GT, + ACTIONS(6993), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131036] = 10, + ACTIONS(2470), 1, anon_sym_LT, - anon_sym_QMARK, - [131272] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, + ACTIONS(6911), 1, anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_class_body, + STATE(3657), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5485), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131068] = 4, + ACTIONS(6997), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 6, + STATE(4232), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6803), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [131294] = 10, - ACTIONS(2478), 1, + [131088] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - STATE(2310), 1, - sym_class_body, - STATE(3571), 1, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(3611), 1, sym_type_parameters, - STATE(5174), 1, + STATE(4346), 1, + sym_class_body, + STATE(5098), 1, sym_extends_clause, - STATE(5500), 1, + STATE(5406), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131326] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, + [131120] = 7, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2324), 1, - sym_class_body, - STATE(3680), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5453), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(6897), 1, + anon_sym_DQUOTE, + ACTIONS(6899), 1, + anon_sym_SQUOTE, + ACTIONS(6901), 1, + anon_sym_LT, + STATE(3084), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131358] = 2, + STATE(4086), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [131146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 9, + ACTIONS(2326), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [131374] = 2, + [131162] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6841), 1, + anon_sym_GT, + ACTIONS(6999), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7024), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [131390] = 7, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4166), 1, - sym_type_annotation, - STATE(4716), 1, - sym__initializer, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131192] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(775), 1, + sym_class_body, + STATE(3595), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5528), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6524), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6522), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131416] = 9, + [131224] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6846), 1, + ACTIONS(6845), 1, anon_sym_GT, - ACTIONS(7026), 1, + ACTIONS(7001), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3428), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [131446] = 4, - ACTIONS(6932), 1, - anon_sym_COLON, + [131254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4428), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6770), 5, + ACTIONS(4376), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131466] = 9, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [131270] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6896), 1, + ACTIONS(6849), 1, anon_sym_GT, - ACTIONS(7028), 1, + ACTIONS(7003), 1, anon_sym_SLASH_GT, - STATE(3313), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [131496] = 2, + [131300] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6853), 1, + anon_sym_GT, + ACTIONS(7005), 1, + anon_sym_SLASH_GT, + STATE(3431), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4092), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131330] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131512] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7030), 1, - anon_sym_BANG, - ACTIONS(7032), 1, - anon_sym_QMARK, - STATE(4407), 1, - sym_type_annotation, - STATE(5128), 1, - sym__initializer, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6857), 1, + anon_sym_GT, + ACTIONS(7007), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131540] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131360] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - STATE(767), 1, - sym_class_body, - STATE(3742), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5316), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6861), 1, + anon_sym_GT, + ACTIONS(7009), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131572] = 8, - ACTIONS(6444), 1, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131390] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7034), 1, + ACTIONS(7011), 1, anon_sym_BANG, - ACTIONS(7036), 1, + ACTIONS(7013), 1, anon_sym_QMARK, - STATE(4169), 1, + STATE(4118), 1, sym_type_annotation, - STATE(4709), 1, + STATE(4903), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131600] = 8, - ACTIONS(6444), 1, + [131418] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7038), 1, - anon_sym_BANG, - ACTIONS(7040), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4047), 1, - sym_type_annotation, - STATE(4736), 1, - sym__initializer, + [131444] = 8, + ACTIONS(7015), 1, + sym_identifier, + ACTIONS(7018), 1, + anon_sym_LBRACE, + ACTIONS(7023), 1, + sym_jsx_identifier, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131628] = 2, + ACTIONS(7021), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131472] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4282), 9, + ACTIONS(4138), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131644] = 3, - ACTIONS(6964), 1, - anon_sym_AMP, + [131494] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7026), 1, + anon_sym_BANG, + ACTIONS(7028), 1, + anon_sym_QMARK, + STATE(4121), 1, + sym_type_annotation, + STATE(4907), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 8, + ACTIONS(6470), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + [131522] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, anon_sym_PIPE, + ACTIONS(6883), 1, anon_sym_extends, - [131662] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 9, + ACTIONS(4142), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131678] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [131544] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6841), 1, + anon_sym_GT, + ACTIONS(7030), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131574] = 7, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7042), 1, - anon_sym_BANG, - ACTIONS(7044), 1, - anon_sym_QMARK, - STATE(3937), 1, - sym_type_annotation, - STATE(4653), 1, + ACTIONS(6776), 1, + anon_sym_EQ, + STATE(4210), 1, sym__initializer, + STATE(4233), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6778), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131706] = 2, + [131600] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4064), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131722] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(3786), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7046), 1, - anon_sym_BANG, - ACTIONS(7048), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4430), 1, - sym_type_annotation, - STATE(5165), 1, - sym__initializer, + [131626] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6845), 1, + anon_sym_GT, + ACTIONS(7032), 1, + anon_sym_SLASH_GT, + STATE(3387), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131750] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6900), 1, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131656] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(796), 1, - sym_class_body, - STATE(3649), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5425), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6849), 1, + anon_sym_GT, + ACTIONS(7034), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131782] = 9, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131686] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6874), 1, + ACTIONS(6853), 1, anon_sym_GT, - ACTIONS(7050), 1, + ACTIONS(7036), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3360), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [131812] = 2, + [131716] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2244), 1, + sym_class_body, + STATE(3596), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5401), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2338), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [131748] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2077), 1, + sym_class_body, + STATE(3681), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5252), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131780] = 6, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, + ACTIONS(6603), 1, anon_sym_extends, - [131828] = 9, + ACTIONS(7038), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6788), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [131804] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6603), 1, + ACTIONS(6857), 1, anon_sym_GT, - ACTIONS(6629), 1, + ACTIONS(7040), 1, anon_sym_SLASH_GT, - STATE(3341), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [131858] = 10, - ACTIONS(2478), 1, + [131834] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, + ACTIONS(6909), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - STATE(2326), 1, + STATE(236), 1, sym_class_body, - STATE(3710), 1, + STATE(3618), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5305), 1, + STATE(5240), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131890] = 2, + [131866] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2351), 1, + sym_class_body, + STATE(3743), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5339), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [131898] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131906] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, + ACTIONS(6911), 1, anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2132), 1, + sym_class_body, + STATE(3663), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5573), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4096), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [131930] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [131928] = 2, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6324), 1, + anon_sym_SLASH_GT, + ACTIONS(6595), 1, + anon_sym_GT, + STATE(3451), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4376), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131944] = 8, - ACTIONS(6444), 1, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131960] = 8, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6819), 1, + sym_identifier, + ACTIONS(7042), 1, + anon_sym_RBRACE, + STATE(5389), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6821), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4818), 2, + sym__module_export_name, + sym_string, + [131988] = 7, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7052), 1, - anon_sym_BANG, - ACTIONS(7054), 1, - anon_sym_QMARK, - STATE(4155), 1, + STATE(4222), 1, sym_type_annotation, - STATE(4668), 1, + STATE(5075), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(7046), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7044), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131972] = 2, + [132014] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6861), 1, + anon_sym_GT, + ACTIONS(7048), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132044] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -246740,186 +247026,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [131988] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7056), 1, - anon_sym_BANG, - ACTIONS(7058), 1, - anon_sym_QMARK, - STATE(4418), 1, - sym_type_annotation, - STATE(5150), 1, - sym__initializer, + [132060] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, + ACTIONS(7050), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [132016] = 2, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132076] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(3739), 1, + sym_type_parameters, + STATE(3968), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5310), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [132108] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6798), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_extends, - [132032] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7060), 1, - anon_sym_BANG, - ACTIONS(7062), 1, - anon_sym_QMARK, - STATE(4443), 1, - sym_type_annotation, - STATE(5193), 1, - sym__initializer, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(1658), 1, + sym_class_body, + STATE(3746), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5315), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132060] = 6, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7064), 1, - anon_sym_EQ, + [132140] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6867), 1, + anon_sym_GT, + ACTIONS(7052), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6811), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [132084] = 8, - ACTIONS(6444), 1, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132170] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7066), 1, + ACTIONS(7054), 1, anon_sym_BANG, - ACTIONS(7068), 1, + ACTIONS(7056), 1, anon_sym_QMARK, - STATE(4218), 1, + STATE(4109), 1, sym_type_annotation, - STATE(4797), 1, + STATE(5093), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132112] = 2, + [132198] = 4, + ACTIONS(6997), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4380), 9, + STATE(4404), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6792), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132128] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4100), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [132218] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [132150] = 2, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6871), 1, + anon_sym_GT, + ACTIONS(7058), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4336), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132166] = 2, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132248] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4344), 9, + ACTIONS(4160), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [132182] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6318), 1, - anon_sym_SLASH_GT, - ACTIONS(6603), 1, - anon_sym_GT, - STATE(3395), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132212] = 2, + [132264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7070), 9, + ACTIONS(7060), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -246929,1142 +247193,1098 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [132228] = 8, - ACTIONS(6444), 1, + [132280] = 7, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7072), 1, - anon_sym_BANG, - ACTIONS(7074), 1, - anon_sym_QMARK, - STATE(4150), 1, + STATE(4381), 1, sym_type_annotation, - STATE(4661), 1, + STATE(5118), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, + ACTIONS(6512), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6510), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132256] = 8, - ACTIONS(6444), 1, + [132306] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7076), 1, + ACTIONS(7062), 1, anon_sym_BANG, - ACTIONS(7078), 1, + ACTIONS(7064), 1, anon_sym_QMARK, - STATE(3935), 1, + STATE(4196), 1, sym_type_annotation, - STATE(4632), 1, + STATE(4856), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132284] = 8, - ACTIONS(6444), 1, + [132334] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7080), 1, + ACTIONS(7066), 1, anon_sym_BANG, - ACTIONS(7082), 1, + ACTIONS(7068), 1, anon_sym_QMARK, - STATE(3984), 1, + STATE(4407), 1, sym_type_annotation, - STATE(4865), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132312] = 7, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6772), 1, - anon_sym_EQ, - STATE(4127), 1, + STATE(4937), 1, sym__initializer, - STATE(4264), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6774), 3, + ACTIONS(6518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132338] = 9, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6305), 1, - anon_sym_LBRACE, - ACTIONS(6314), 1, - sym_jsx_identifier, - ACTIONS(6942), 1, - anon_sym_GT, - ACTIONS(7084), 1, - anon_sym_SLASH_GT, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [132368] = 8, - ACTIONS(6444), 1, + [132362] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7086), 1, + ACTIONS(7070), 1, anon_sym_BANG, - ACTIONS(7088), 1, + ACTIONS(7072), 1, anon_sym_QMARK, - STATE(4066), 1, + STATE(4003), 1, sym_type_annotation, - STATE(4888), 1, + STATE(4969), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132396] = 8, - ACTIONS(6444), 1, + [132390] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7090), 1, + ACTIONS(7074), 1, anon_sym_BANG, - ACTIONS(7092), 1, + ACTIONS(7076), 1, anon_sym_QMARK, - STATE(4072), 1, + STATE(4051), 1, sym_type_annotation, - STATE(4945), 1, + STATE(5017), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132424] = 7, - ACTIONS(6444), 1, + [132418] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4325), 1, + ACTIONS(7078), 1, + anon_sym_BANG, + ACTIONS(7080), 1, + anon_sym_QMARK, + STATE(3992), 1, sym_type_annotation, - STATE(4987), 1, + STATE(5129), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6492), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6490), 3, + ACTIONS(6518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132450] = 9, + [132446] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6870), 1, + ACTIONS(6841), 1, anon_sym_GT, - ACTIONS(7094), 1, + ACTIONS(7082), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [132480] = 8, - ACTIONS(6444), 1, + [132476] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7096), 1, + ACTIONS(7084), 1, anon_sym_BANG, - ACTIONS(7098), 1, + ACTIONS(7086), 1, anon_sym_QMARK, - STATE(4322), 1, + STATE(4153), 1, sym_type_annotation, - STATE(4974), 1, + STATE(4803), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7018), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132508] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4348), 6, + ACTIONS(6518), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [132530] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4352), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [132504] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132546] = 2, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6845), 1, + anon_sym_GT, + ACTIONS(7088), 1, + anon_sym_SLASH_GT, + STATE(3472), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132534] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132562] = 2, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6849), 1, + anon_sym_GT, + ACTIONS(7090), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132578] = 8, - ACTIONS(6444), 1, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132564] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7100), 1, + ACTIONS(7092), 1, anon_sym_BANG, - ACTIONS(7102), 1, + ACTIONS(7094), 1, anon_sym_QMARK, - STATE(4422), 1, + STATE(3963), 1, sym_type_annotation, - STATE(5152), 1, + STATE(4898), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6518), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132606] = 8, - ACTIONS(6444), 1, + [132592] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7104), 1, + ACTIONS(7096), 1, anon_sym_BANG, - ACTIONS(7106), 1, + ACTIONS(7098), 1, anon_sym_QMARK, - STATE(4405), 1, + STATE(4198), 1, sym_type_annotation, - STATE(4862), 1, + STATE(4911), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132634] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4356), 6, + ACTIONS(6518), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [132656] = 10, - ACTIONS(2478), 1, + [132620] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - STATE(2350), 1, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(803), 1, sym_class_body, - STATE(3588), 1, + STATE(3590), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5568), 1, + STATE(5508), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132688] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4190), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132704] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4124), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132720] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2330), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132736] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7108), 1, - anon_sym_BANG, - ACTIONS(7110), 1, - anon_sym_QMARK, - STATE(4205), 1, - sym_type_annotation, - STATE(4785), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6559), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132764] = 8, - ACTIONS(6444), 1, + [132652] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7112), 1, + ACTIONS(7102), 1, anon_sym_BANG, - ACTIONS(7114), 1, + ACTIONS(7104), 1, anon_sym_QMARK, - STATE(4459), 1, + STATE(4131), 1, sym_type_annotation, - STATE(5204), 1, + STATE(4917), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132792] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6924), 1, + [132680] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, anon_sym_LBRACE, - STATE(236), 1, - sym_class_body, - STATE(3577), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5526), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6853), 1, + anon_sym_GT, + ACTIONS(7106), 1, + anon_sym_SLASH_GT, + STATE(3473), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132824] = 8, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7116), 1, - anon_sym_BANG, - ACTIONS(7118), 1, - anon_sym_QMARK, - STATE(3947), 1, - sym_type_annotation, - STATE(4705), 1, - sym__initializer, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132710] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6857), 1, + anon_sym_GT, + ACTIONS(7108), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132852] = 8, - ACTIONS(6444), 1, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132740] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7120), 1, + ACTIONS(7110), 1, anon_sym_BANG, - ACTIONS(7122), 1, + ACTIONS(7112), 1, anon_sym_QMARK, - STATE(4112), 1, + STATE(4133), 1, sym_type_annotation, - STATE(5176), 1, + STATE(4643), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6559), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132880] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4212), 9, + ACTIONS(6915), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132896] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(3635), 1, - sym_type_parameters, - STATE(3967), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5332), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [132928] = 9, + [132768] = 9, ACTIONS(6301), 1, sym_identifier, ACTIONS(6305), 1, anon_sym_LBRACE, ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(6920), 1, + ACTIONS(6861), 1, anon_sym_GT, - ACTIONS(7124), 1, + ACTIONS(7114), 1, anon_sym_SLASH_GT, - STATE(3468), 1, + STATE(3403), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, + STATE(3888), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4421), 2, + STATE(4178), 2, sym_jsx_expression, sym_jsx_attribute, - [132958] = 9, - ACTIONS(2970), 1, + [132798] = 9, + ACTIONS(3084), 1, anon_sym_DQUOTE, - ACTIONS(2972), 1, + ACTIONS(3086), 1, anon_sym_SQUOTE, - ACTIONS(6740), 1, + ACTIONS(6754), 1, sym_identifier, - ACTIONS(6742), 1, + ACTIONS(6756), 1, anon_sym_type, - ACTIONS(6748), 1, + ACTIONS(6762), 1, anon_sym_typeof, - STATE(5428), 1, - sym__import_identifier, - STATE(5458), 1, + STATE(5439), 1, sym_import_specifier, + STATE(5480), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5603), 2, - sym__module_export_name, - sym_string, - [132988] = 8, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6803), 1, - sym_identifier, - ACTIONS(7126), 1, - anon_sym_RBRACE, - STATE(5553), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6805), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5027), 2, + STATE(5759), 2, sym__module_export_name, sym_string, - [133016] = 10, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2110), 1, - sym_class_body, - STATE(3642), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5503), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133048] = 10, - ACTIONS(2478), 1, + [132828] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6902), 1, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - ACTIONS(6916), 1, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(3647), 1, + STATE(3756), 1, sym_type_parameters, - STATE(4036), 1, + STATE(4125), 1, sym_class_body, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5513), 1, + STATE(5224), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133080] = 2, + [132860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4146), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7116), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133096] = 10, - ACTIONS(2478), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132876] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(1616), 1, - sym_class_body, - STATE(3648), 1, - sym_type_parameters, - STATE(5174), 1, - sym_extends_clause, - STATE(5532), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + anon_sym_QMARK, + [132902] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7118), 1, + anon_sym_BANG, + ACTIONS(7120), 1, + anon_sym_QMARK, + STATE(4341), 1, + sym_type_annotation, + STATE(5208), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133128] = 10, - ACTIONS(2478), 1, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132930] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - STATE(1694), 1, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(881), 1, sym_class_body, - STATE(3528), 1, + STATE(3630), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5348), 1, + STATE(5463), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133160] = 7, - ACTIONS(6444), 1, + [132962] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4235), 1, + ACTIONS(7122), 1, + anon_sym_BANG, + ACTIONS(7124), 1, + anon_sym_QMARK, + STATE(4001), 1, sym_type_annotation, - STATE(4837), 1, + STATE(4621), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6532), 2, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132990] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7126), 1, anon_sym_BANG, + ACTIONS(7128), 1, anon_sym_QMARK, - ACTIONS(6530), 3, + STATE(4015), 1, + sym_type_annotation, + STATE(4622), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133186] = 8, - ACTIONS(6444), 1, + [133018] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6827), 1, - sym__automatic_semicolon, - STATE(4264), 1, + ACTIONS(7130), 1, + anon_sym_BANG, + ACTIONS(7132), 1, + anon_sym_QMARK, + STATE(4228), 1, sym_type_annotation, - STATE(4886), 1, + STATE(4940), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6774), 2, + ACTIONS(6518), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [133214] = 8, - ACTIONS(7128), 1, - sym_identifier, - ACTIONS(7131), 1, - anon_sym_LBRACE, + [133046] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7134), 1, + anon_sym_BANG, ACTIONS(7136), 1, - sym_jsx_identifier, - STATE(3468), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(3796), 1, - sym_jsx_namespace_name, + anon_sym_QMARK, + STATE(4395), 1, + sym_type_annotation, + STATE(4993), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7134), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(4421), 2, - sym_jsx_expression, - sym_jsx_attribute, - [133242] = 8, - ACTIONS(6444), 1, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133074] = 7, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7139), 1, - anon_sym_BANG, - ACTIONS(7141), 1, - anon_sym_QMARK, - STATE(4447), 1, + STATE(4317), 1, sym_type_annotation, - STATE(5202), 1, + STATE(5008), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6472), 3, + ACTIONS(6486), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6484), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133270] = 2, + [133100] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2334), 9, + ACTIONS(4272), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [133286] = 2, + [133116] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2275), 1, + sym_class_body, + STATE(3760), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5349), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7143), 9, + [133148] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(6458), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(7138), 1, + anon_sym_BANG, + ACTIONS(7140), 1, anon_sym_QMARK, - [133302] = 2, + STATE(4134), 1, + sym_type_annotation, + STATE(4922), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4024), 9, + ACTIONS(6470), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133318] = 8, - ACTIONS(6444), 1, + [133176] = 8, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7145), 1, + ACTIONS(7142), 1, anon_sym_BANG, - ACTIONS(7147), 1, + ACTIONS(7144), 1, anon_sym_QMARK, - STATE(4180), 1, + STATE(4137), 1, sym_type_annotation, - STATE(4660), 1, + STATE(4923), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6466), 3, + ACTIONS(6470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133346] = 10, - ACTIONS(2478), 1, + [133204] = 10, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6784), 1, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(3762), 1, + sym_type_parameters, + STATE(4179), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5361), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133236] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6798), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - STATE(2534), 1, + STATE(1689), 1, sym_class_body, - STATE(3614), 1, + STATE(3763), 1, sym_type_parameters, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5551), 1, + STATE(5376), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133378] = 6, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7149), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, - anon_sym_QMARK_COLON, + [133268] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4153), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133401] = 4, - ACTIONS(4535), 1, + ACTIONS(3786), 4, anon_sym_LPAREN, - STATE(2088), 1, - sym_arguments, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [133294] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 6, + ACTIONS(4024), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [133310] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4046), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [133420] = 9, - ACTIONS(7155), 1, + [133326] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6867), 1, + anon_sym_GT, + ACTIONS(7146), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [133356] = 9, + ACTIONS(6301), 1, sym_identifier, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(7159), 1, - anon_sym_GT, - ACTIONS(7161), 1, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, sym_jsx_identifier, - ACTIONS(7163), 1, + ACTIONS(6871), 1, + anon_sym_GT, + ACTIONS(7148), 1, anon_sym_SLASH_GT, - STATE(3139), 1, - sym_nested_identifier, - STATE(3307), 1, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, sym_jsx_namespace_name, - STATE(4801), 1, - sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133449] = 7, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7165), 1, - anon_sym_enum, - STATE(4496), 1, - sym_variable_declarator, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [133386] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7150), 1, + anon_sym_BANG, + ACTIONS(7152), 1, + anon_sym_QMARK, + STATE(4114), 1, + sym_type_annotation, + STATE(4901), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [133474] = 7, - ACTIONS(2970), 1, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133414] = 7, + ACTIONS(3084), 1, anon_sym_DQUOTE, - ACTIONS(2972), 1, + ACTIONS(3086), 1, anon_sym_SQUOTE, - ACTIONS(6803), 1, + ACTIONS(6819), 1, sym_identifier, - STATE(5553), 1, + STATE(5389), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6805), 2, + ACTIONS(6821), 2, anon_sym_type, anon_sym_typeof, - STATE(5027), 2, + STATE(4818), 2, sym__module_export_name, sym_string, - [133499] = 7, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [133439] = 6, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(6776), 1, - anon_sym_BANG, - STATE(4264), 1, - sym_type_annotation, - STATE(4878), 1, - sym__initializer, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6774), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133524] = 2, + STATE(3995), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1805), 8, + ACTIONS(1723), 8, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [133539] = 5, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, + [133477] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3172), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(6968), 1, anon_sym_extends, + [133492] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6811), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1799), 2, + anon_sym_while, + sym_identifier, + ACTIONS(1797), 6, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [133560] = 2, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + [133509] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7162), 1, + anon_sym_BQUOTE, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 8, - anon_sym_as, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133534] = 4, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2138), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4272), 6, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_GT, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [133575] = 9, + [133553] = 9, ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7167), 1, + ACTIONS(7168), 1, sym_identifier, - ACTIONS(7169), 1, + ACTIONS(7170), 1, sym_this, - STATE(2883), 1, - sym__type_query_subscript_expression, - STATE(2887), 1, + STATE(1747), 1, sym__type_query_member_expression, - STATE(3099), 1, + STATE(1748), 1, + sym__type_query_subscript_expression, + STATE(1984), 1, sym__type_query_call_expression, - STATE(3239), 1, + STATE(1985), 1, sym__type_query_instantiation_expression, - STATE(4495), 1, + STATE(4512), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133604] = 7, - ACTIONS(7171), 1, + [133582] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1769), 2, + anon_sym_while, + sym_identifier, + ACTIONS(1767), 6, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + [133599] = 7, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6780), 1, + anon_sym_BANG, + STATE(4233), 1, + sym_type_annotation, + STATE(4979), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6778), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133624] = 7, + ACTIONS(7160), 1, sym_escape_sequence, - ACTIONS(7173), 1, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7172), 1, anon_sym_BQUOTE, - ACTIONS(7175), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133649] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7164), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, + ACTIONS(7166), 1, sym__template_chars, + ACTIONS(7174), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3819), 2, + STATE(3895), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4374), 2, + STATE(4147), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [133629] = 6, - ACTIONS(6452), 1, + [133674] = 6, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7154), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7156), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7158), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4454), 4, + STATE(4083), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133652] = 9, - ACTIONS(1499), 1, - anon_sym_import, - ACTIONS(7179), 1, - sym_identifier, - ACTIONS(7181), 1, - sym_this, - STATE(2830), 1, - sym__type_query_subscript_expression, - STATE(2831), 1, - sym__type_query_member_expression, - STATE(2879), 1, - sym__type_query_call_expression, - STATE(2972), 1, - sym__type_query_instantiation_expression, - STATE(4468), 1, - sym_import, + [133697] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7176), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133681] = 6, - ACTIONS(6452), 1, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133722] = 6, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7154), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7156), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7158), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4091), 4, + STATE(4252), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133704] = 6, - ACTIONS(6452), 1, + [133745] = 6, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7154), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7156), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7158), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4092), 4, + STATE(4253), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133727] = 2, + [133768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3188), 8, + ACTIONS(3190), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [133742] = 9, - ACTIONS(1499), 1, - anon_sym_import, - ACTIONS(7183), 1, - sym_identifier, - ACTIONS(7185), 1, - sym_this, - STATE(1463), 1, - sym__type_query_member_expression, - STATE(1468), 1, - sym__type_query_subscript_expression, - STATE(1518), 1, - sym__type_query_call_expression, - STATE(1519), 1, - sym__type_query_instantiation_expression, - STATE(4465), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133771] = 2, + [133783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -248074,927 +248294,592 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133786] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3164), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [133801] = 7, - ACTIONS(7171), 1, - sym_escape_sequence, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7187), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133826] = 7, - ACTIONS(7171), 1, - sym_escape_sequence, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7189), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133851] = 6, - ACTIONS(6452), 1, + [133798] = 6, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7154), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7156), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7158), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4274), 4, + STATE(3998), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [133874] = 6, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7149), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, - anon_sym_QMARK_COLON, + [133821] = 5, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(7180), 1, + anon_sym_DOT, + STATE(3966), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4311), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [133897] = 9, + ACTIONS(1665), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [133842] = 9, ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7191), 1, + ACTIONS(7182), 1, sym_identifier, - ACTIONS(7193), 1, + ACTIONS(7184), 1, sym_this, - STATE(2947), 1, + STATE(2830), 1, sym__type_query_member_expression, - STATE(2948), 1, + STATE(2831), 1, sym__type_query_subscript_expression, - STATE(3212), 1, - sym__type_query_call_expression, - STATE(3351), 1, - sym__type_query_instantiation_expression, - STATE(4519), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133926] = 7, - ACTIONS(7171), 1, - sym_escape_sequence, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7195), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133951] = 9, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(7159), 1, - anon_sym_GT, - ACTIONS(7197), 1, - sym_identifier, - ACTIONS(7199), 1, - sym_jsx_identifier, - ACTIONS(7201), 1, - anon_sym_SLASH_GT, - STATE(3170), 1, - sym_nested_identifier, - STATE(3428), 1, - sym_jsx_namespace_name, - STATE(4801), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133980] = 9, - ACTIONS(1499), 1, - anon_sym_import, - ACTIONS(7181), 1, - sym_this, - ACTIONS(7203), 1, - sym_identifier, - STATE(2879), 1, + STATE(2872), 1, sym__type_query_call_expression, - STATE(2972), 1, + STATE(2987), 1, sym__type_query_instantiation_expression, - STATE(3165), 1, - sym__type_query_member_expression, - STATE(3166), 1, - sym__type_query_subscript_expression, - STATE(4515), 1, + STATE(4600), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134009] = 5, - ACTIONS(7205), 1, - anon_sym_LBRACE, - ACTIONS(7207), 1, - anon_sym_DOT, - STATE(4392), 1, - sym_statement_block, + [133871] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1653), 5, + ACTIONS(7186), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134030] = 3, - ACTIONS(6720), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4024), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, + [133892] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(6746), 1, anon_sym_extends, - [134047] = 5, - ACTIONS(7205), 1, - anon_sym_LBRACE, - ACTIONS(7209), 1, - anon_sym_DOT, - STATE(4392), 1, - sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1653), 5, + ACTIONS(7188), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134068] = 3, - ACTIONS(7211), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4032), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [134085] = 7, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7213), 1, - sym_escape_sequence, - ACTIONS(7215), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3812), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134110] = 7, - ACTIONS(7171), 1, - sym_escape_sequence, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7217), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134135] = 7, - ACTIONS(7171), 1, - sym_escape_sequence, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7219), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3819), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134160] = 7, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7221), 1, - anon_sym_enum, - STATE(4487), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134185] = 7, - ACTIONS(7175), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7177), 1, - sym__template_chars, - ACTIONS(7213), 1, - sym_escape_sequence, - ACTIONS(7223), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3812), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134210] = 9, + [133913] = 9, ACTIONS(1499), 1, anon_sym_import, - ACTIONS(7225), 1, + ACTIONS(7190), 1, sym_identifier, - ACTIONS(7227), 1, + ACTIONS(7192), 1, sym_this, - STATE(1746), 1, + STATE(2887), 1, sym__type_query_member_expression, - STATE(1747), 1, + STATE(2888), 1, sym__type_query_subscript_expression, - STATE(1879), 1, + STATE(3082), 1, sym__type_query_call_expression, - STATE(1880), 1, + STATE(3205), 1, sym__type_query_instantiation_expression, - STATE(4481), 1, + STATE(4497), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134239] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1701), 2, - anon_sym_while, - sym_identifier, - ACTIONS(1699), 6, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - anon_sym_LT, - [134256] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1793), 2, - anon_sym_while, - sym_identifier, - ACTIONS(1791), 6, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - anon_sym_LT, - [134273] = 3, - ACTIONS(6720), 1, + [133942] = 3, + ACTIONS(6764), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 7, + ACTIONS(4046), 7, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [134290] = 6, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(7149), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4159), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134313] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, - anon_sym_PIPE, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7229), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134334] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, - anon_sym_PIPE, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7231), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134355] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6706), 1, + [133959] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, anon_sym_PIPE, - ACTIONS(6708), 1, + ACTIONS(6883), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7233), 5, + ACTIONS(6788), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134376] = 6, - ACTIONS(6452), 1, + [133980] = 6, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7154), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7156), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7158), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4168), 4, + STATE(4089), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134399] = 6, - ACTIONS(6452), 1, + [134003] = 6, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7149), 1, + ACTIONS(7154), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7151), 1, + ACTIONS(7156), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7153), 1, + ACTIONS(7158), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4273), 4, + STATE(4090), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134422] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4275), 1, - sym_type_annotation, - STATE(4893), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7235), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134444] = 2, + [134026] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7194), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5224), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [134458] = 7, - ACTIONS(3530), 1, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134051] = 6, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7237), 1, - anon_sym_EQ, - ACTIONS(7241), 1, - anon_sym_QMARK, - STATE(4540), 1, - sym_type_annotation, - STATE(5318), 1, - sym__initializer, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7239), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [134482] = 4, - ACTIONS(2444), 1, + STATE(4254), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134074] = 5, + ACTIONS(7178), 1, anon_sym_LBRACE, - STATE(5505), 1, + ACTIONS(7196), 1, + anon_sym_DOT, + STATE(3966), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 5, + ACTIONS(1665), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134500] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7245), 1, - sym_identifier, - STATE(4476), 1, - sym_variable_declarator, + [134095] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7198), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3433), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134522] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7247), 1, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4290), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134120] = 9, + ACTIONS(7200), 1, sym_identifier, - STATE(4496), 1, - sym_variable_declarator, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(7204), 1, + anon_sym_GT, + ACTIONS(7206), 1, + sym_jsx_identifier, + ACTIONS(7208), 1, + anon_sym_SLASH_GT, + STATE(3155), 1, + sym_nested_identifier, + STATE(3420), 1, + sym_jsx_namespace_name, + STATE(4771), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3467), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134544] = 8, - ACTIONS(6900), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(877), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5493), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [134149] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7210), 1, + sym_identifier, + ACTIONS(7212), 1, + sym_this, + STATE(2906), 1, + sym__type_query_member_expression, + STATE(2907), 1, + sym__type_query_subscript_expression, + STATE(3227), 1, + sym__type_query_call_expression, + STATE(3339), 1, + sym__type_query_instantiation_expression, + STATE(4604), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134570] = 8, - ACTIONS(6784), 1, + [134178] = 7, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(3370), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(1711), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5525), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7214), 1, + anon_sym_enum, + STATE(4473), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134596] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5386), 1, - sym_statement_block, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134203] = 7, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7216), 1, + sym_escape_sequence, + ACTIONS(7218), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7249), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134614] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + STATE(3893), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134228] = 6, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4184), 1, - sym_type_annotation, - STATE(4757), 1, - sym__initializer, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134636] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4423), 1, + STATE(4335), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(5154), 1, - sym__initializer, + [134251] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7220), 1, + sym_identifier, + ACTIONS(7222), 1, + sym_this, + STATE(1465), 1, + sym__type_query_subscript_expression, + STATE(1466), 1, + sym__type_query_member_expression, + STATE(1535), 1, + sym__type_query_call_expression, + STATE(1536), 1, + sym__type_query_instantiation_expression, + STATE(4530), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134658] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4191), 1, - sym_type_annotation, - STATE(4767), 1, - sym__initializer, + [134280] = 7, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7216), 1, + sym_escape_sequence, + ACTIONS(7224), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134680] = 2, + STATE(3893), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134305] = 9, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(7204), 1, + anon_sym_GT, + ACTIONS(7226), 1, + sym_identifier, + ACTIONS(7228), 1, + sym_jsx_identifier, + ACTIONS(7230), 1, + anon_sym_SLASH_GT, + STATE(3140), 1, + sym_nested_identifier, + STATE(3326), 1, + sym_jsx_namespace_name, + STATE(4771), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7251), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [134694] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4164), 1, - sym_type_annotation, - STATE(4689), 1, - sym__initializer, + [134334] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7184), 1, + sym_this, + ACTIONS(7232), 1, + sym_identifier, + STATE(2872), 1, + sym__type_query_call_expression, + STATE(2987), 1, + sym__type_query_instantiation_expression, + STATE(3142), 1, + sym__type_query_subscript_expression, + STATE(3151), 1, + sym__type_query_member_expression, + STATE(4568), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134716] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4192), 1, - sym_type_annotation, - STATE(4773), 1, - sym__initializer, + [134363] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, + ACTIONS(1707), 8, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - [134738] = 8, - ACTIONS(6902), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, + [134378] = 7, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(3370), 1, anon_sym_LBRACE, - STATE(765), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5254), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7234), 1, + anon_sym_enum, + STATE(4602), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134764] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3975), 1, - sym_type_annotation, - STATE(4770), 1, - sym__initializer, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134403] = 3, + ACTIONS(6764), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, + ACTIONS(4042), 7, anon_sym_COMMA, - anon_sym_SEMI, - [134786] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4206), 1, - sym_type_annotation, - STATE(4790), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134420] = 3, + ACTIONS(7236), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, + ACTIONS(4024), 7, anon_sym_COMMA, - anon_sym_SEMI, - [134808] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4207), 1, - sym_type_annotation, - STATE(4792), 1, - sym__initializer, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134437] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7238), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [134830] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [134458] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4425), 1, + STATE(3979), 1, sym_type_annotation, - STATE(5157), 1, + STATE(4743), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134852] = 8, - ACTIONS(2478), 1, - anon_sym_LT, + [134480] = 6, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5495), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134878] = 6, - ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4408), 1, + STATE(4431), 1, sym_type_annotation, - STATE(5135), 1, + STATE(5186), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134900] = 6, - ACTIONS(6444), 1, + [134502] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4213), 1, + STATE(4432), 1, sym_type_annotation, - STATE(4806), 1, + STATE(5188), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134922] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7257), 7, - sym__automatic_semicolon, + [134524] = 6, + ACTIONS(3370), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [134936] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4216), 1, - sym_type_annotation, - STATE(4810), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134958] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4433), 1, - sym_type_annotation, - STATE(5169), 1, - sym__initializer, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + sym_identifier, + STATE(4601), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134980] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4220), 1, - sym_type_annotation, - STATE(4816), 1, - sym__initializer, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134546] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5566), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7242), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135002] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [134564] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4224), 1, + STATE(4438), 1, sym_type_annotation, - STATE(4820), 1, + STATE(5199), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135024] = 2, + [134586] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4960), 7, + ACTIONS(4935), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -249002,763 +248887,651 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [135038] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4173), 1, - sym_type_annotation, - STATE(4730), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6696), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135060] = 6, - ACTIONS(6303), 1, - anon_sym_EQ, - STATE(4533), 1, - sym_constraint, - STATE(5485), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7259), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(7261), 2, - anon_sym_COLON, - anon_sym_extends, - [135082] = 5, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(7263), 1, - sym_identifier, - ACTIONS(7265), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7267), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [135102] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4225), 1, - sym_type_annotation, - STATE(4825), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135124] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4226), 1, - sym_type_annotation, - STATE(4827), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135146] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4539), 1, - anon_sym_DOT, - STATE(2240), 1, - sym_arguments, - STATE(5288), 1, - sym_optional_chain, - STATE(5366), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135172] = 6, - ACTIONS(6444), 1, + [134600] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3929), 1, + STATE(4443), 1, sym_type_annotation, - STATE(4860), 1, + STATE(5204), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135194] = 6, - ACTIONS(6444), 1, + [134622] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4238), 1, + STATE(4174), 1, sym_type_annotation, - STATE(4840), 1, + STATE(5223), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135216] = 4, - ACTIONS(4911), 1, - anon_sym_COMMA, - STATE(3713), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7269), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [135234] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4074), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [135254] = 6, - ACTIONS(6444), 1, + [134644] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4239), 1, + STATE(4033), 1, sym_type_annotation, - STATE(4842), 1, + STATE(5175), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7244), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135276] = 6, - ACTIONS(6444), 1, + [134666] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4243), 1, + STATE(4248), 1, sym_type_annotation, - STATE(4846), 1, + STATE(4686), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135298] = 8, - ACTIONS(6752), 1, + [134688] = 8, + ACTIONS(6768), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - STATE(2277), 1, + STATE(2096), 1, sym_class_body, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5285), 1, + STATE(5550), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135324] = 6, - ACTIONS(6444), 1, + [134714] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4245), 1, + STATE(4403), 1, sym_type_annotation, - STATE(4850), 1, + STATE(5045), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135346] = 4, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4061), 1, - sym_type_annotation, + [134736] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7277), 5, + ACTIONS(4937), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135364] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4248), 1, - sym_type_annotation, - STATE(4858), 1, - sym__initializer, + [134750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(4933), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135386] = 6, - ACTIONS(6303), 1, anon_sym_EQ, - STATE(4554), 1, - sym_constraint, - STATE(5514), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6307), 2, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(7261), 2, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_extends, - [135408] = 6, - ACTIONS(3521), 1, + [134764] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(4535), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(2147), 1, - sym_arguments, - STATE(5572), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7279), 3, - anon_sym_LBRACK, + ACTIONS(7246), 1, sym_identifier, - sym_private_property_identifier, - [135430] = 8, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6924), 1, - anon_sym_LBRACE, - STATE(251), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5256), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(7248), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5400), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135456] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4165), 1, - sym_type_annotation, - STATE(4696), 1, - sym__initializer, + [134790] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135478] = 5, - ACTIONS(5533), 1, + ACTIONS(4318), 4, anon_sym_COMMA, - ACTIONS(5665), 1, - anon_sym_RBRACE, - STATE(5136), 1, - aux_sym_object_repeat1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [134810] = 3, + ACTIONS(7250), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(4346), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_QMARK, - [135498] = 8, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2320), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5538), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [134826] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135524] = 6, - ACTIONS(6444), 1, + ACTIONS(4138), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [134846] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4372), 1, + STATE(4227), 1, sym_type_annotation, - STATE(5068), 1, + STATE(4669), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7281), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135546] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1699), 7, + ACTIONS(6701), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [135560] = 2, + [134868] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(4142), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [135574] = 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [134888] = 4, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5360), 1, + STATE(5445), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 5, + ACTIONS(7256), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135592] = 2, + [134906] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4159), 1, + sym_type_annotation, + STATE(4648), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7285), 7, + ACTIONS(6701), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [135606] = 8, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6924), 1, + [134928] = 6, + ACTIONS(3370), 1, anon_sym_LBRACE, - STATE(235), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5372), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + sym_identifier, + STATE(5161), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134950] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + sym_identifier, + STATE(4602), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135632] = 6, - ACTIONS(6444), 1, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134972] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3927), 1, + STATE(4101), 1, sym_type_annotation, - STATE(5196), 1, + STATE(4889), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6667), 3, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135654] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5491), 1, - sym_statement_block, + [134994] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4054), 1, + sym_type_annotation, + STATE(4839), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 5, + ACTIONS(6703), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [135672] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [135016] = 4, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3930), 1, + STATE(4224), 1, sym_type_annotation, - STATE(5155), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(7258), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135694] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [135034] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4373), 1, + STATE(4029), 1, sym_type_annotation, - STATE(5070), 1, + STATE(4849), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7281), 3, + ACTIONS(7260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135716] = 8, - ACTIONS(3521), 1, + [135056] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7262), 1, + sym_identifier, + ACTIONS(7264), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5520), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135082] = 5, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [135102] = 8, + ACTIONS(3519), 1, anon_sym_LT, ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(7287), 1, + ACTIONS(3942), 1, anon_sym_DOT, - STATE(1834), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + STATE(1611), 1, sym_arguments, - STATE(5404), 1, + STATE(5549), 1, sym_optional_chain, - STATE(5405), 1, + STATE(5551), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135742] = 4, + [135128] = 4, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5411), 1, + STATE(5227), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7289), 5, + ACTIONS(7266), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [135760] = 6, - ACTIONS(6444), 1, + [135146] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135166] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4436), 1, + STATE(4258), 1, sym_type_annotation, - STATE(5173), 1, + STATE(5011), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6738), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135782] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4404), 1, - sym_type_annotation, - STATE(5114), 1, - sym__initializer, + [135188] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5574), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(7256), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135804] = 2, + anon_sym_PIPE_RBRACE, + [135206] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5352), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4946), 7, + ACTIONS(7268), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + anon_sym_PIPE_RBRACE, + [135224] = 6, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(4475), 1, + sym_constraint, + STATE(5346), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7270), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(7272), 2, anon_sym_COLON, - [135818] = 8, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(6291), 1, - anon_sym_LT, - STATE(1826), 1, - sym_arguments, - STATE(3153), 1, - sym_type_arguments, - STATE(5404), 1, - sym_optional_chain, + anon_sym_extends, + [135246] = 5, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(7274), 1, + sym_identifier, + ACTIONS(7276), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135844] = 8, - ACTIONS(6752), 1, + ACTIONS(7278), 4, anon_sym_LBRACE, - ACTIONS(6902), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [135266] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2065), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5280), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135870] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4406), 1, - sym_type_annotation, - STATE(4795), 1, - sym__initializer, + ACTIONS(4260), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135286] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5354), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(7280), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135892] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4438), 1, - sym_type_annotation, - STATE(5182), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [135304] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5229), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(7282), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [135914] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [135322] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4068), 1, + STATE(4122), 1, sym_type_annotation, - STATE(4941), 1, + STATE(4908), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135936] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4439), 1, - sym_type_annotation, - STATE(5185), 1, - sym__initializer, + [135344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6983), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [135958] = 8, - ACTIONS(6752), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [135358] = 4, + ACTIONS(7178), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2085), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5488), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135984] = 2, + STATE(3966), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6956), 7, + ACTIONS(1665), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [135998] = 8, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [135376] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7291), 1, + ACTIONS(7284), 1, sym_identifier, - ACTIONS(7293), 1, + ACTIONS(7286), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5494), 1, + STATE(5525), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136024] = 3, - ACTIONS(7295), 1, + [135402] = 6, + ACTIONS(6450), 1, anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4123), 1, + sym_type_annotation, + STATE(4910), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 6, + ACTIONS(6677), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [135424] = 4, + ACTIONS(7288), 1, + anon_sym_COMMA, + STATE(3568), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4780), 5, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK, - [136040] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, + [135442] = 4, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4093), 1, + STATE(4457), 1, sym_type_annotation, - STATE(5044), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6669), 3, + ACTIONS(7291), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136062] = 2, + anon_sym_PIPE_RBRACE, + [135460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4933), 7, + ACTIONS(7060), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -249766,1395 +249539,1666 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [136076] = 6, - ACTIONS(6444), 1, + [135474] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3938), 1, + STATE(4420), 1, sym_type_annotation, - STATE(4813), 1, + STATE(4736), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136098] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4082), 1, - sym_type_annotation, - STATE(4979), 1, - sym__initializer, + [135496] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, - sym__automatic_semicolon, + ACTIONS(4372), 4, anon_sym_COMMA, - anon_sym_SEMI, - [136120] = 6, - ACTIONS(6444), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135516] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4103), 1, + STATE(4142), 1, sym_type_annotation, - STATE(5053), 1, + STATE(4645), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136142] = 6, - ACTIONS(6444), 1, + [135538] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(7293), 1, + anon_sym_DOT, + STATE(1793), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135564] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3990), 1, + STATE(4030), 1, sym_type_annotation, - STATE(5040), 1, + STATE(4852), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(7260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136164] = 8, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, + [135586] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(4086), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5224), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + STATE(5393), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136190] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3994), 1, - sym_type_annotation, - STATE(5073), 1, - sym__initializer, + ACTIONS(7295), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135604] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5502), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(7282), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136212] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [135622] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3939), 1, + STATE(3978), 1, sym_type_annotation, - STATE(4877), 1, + STATE(4741), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136234] = 6, - ACTIONS(6444), 1, + [135644] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4171), 1, + STATE(4246), 1, sym_type_annotation, - STATE(4712), 1, + STATE(4684), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136256] = 8, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(6291), 1, - anon_sym_LT, - STATE(1490), 1, - sym_arguments, - STATE(3153), 1, - sym_type_arguments, - STATE(5404), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [136282] = 6, - ACTIONS(6444), 1, + [135666] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3973), 1, + STATE(3980), 1, sym_type_annotation, - STATE(4644), 1, + STATE(4748), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136304] = 6, - ACTIONS(6444), 1, + [135688] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3983), 1, + STATE(3981), 1, sym_type_annotation, - STATE(4818), 1, + STATE(4752), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136326] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3985), 1, - sym_type_annotation, - STATE(4895), 1, - sym__initializer, + [135710] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5503), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(7266), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136348] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3988), 1, - sym_type_annotation, - STATE(4938), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [135728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(1767), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136370] = 8, - ACTIONS(3521), 1, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [135742] = 8, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2550), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5332), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135768] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3938), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(7298), 1, - anon_sym_DOT, - STATE(1834), 1, - sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, - sym_type_arguments, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5400), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136396] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4104), 1, - sym_type_annotation, - STATE(5120), 1, - sym__initializer, + [135794] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(1797), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136418] = 8, - ACTIONS(6784), 1, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [135808] = 8, + ACTIONS(6798), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - STATE(2479), 1, + STATE(1624), 1, sym_class_body, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5308), 1, + STATE(5267), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136444] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3940), 1, - sym_type_annotation, - STATE(5142), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136466] = 2, + [135834] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5230), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7070), 7, + ACTIONS(7268), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [136480] = 8, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + anon_sym_PIPE_RBRACE, + [135852] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4539), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(7301), 1, anon_sym_DOT, - ACTIONS(6291), 1, - anon_sym_LT, - STATE(2366), 1, + STATE(2537), 1, sym_arguments, - STATE(3476), 1, - sym_type_arguments, - STATE(5288), 1, + STATE(5549), 1, sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136506] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(3941), 1, - sym_type_annotation, - STATE(4949), 1, - sym__initializer, + [135878] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(825), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5407), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136528] = 6, - ACTIONS(6444), 1, + [135904] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4010), 1, + STATE(3989), 1, sym_type_annotation, - STATE(4664), 1, + STATE(4764), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136550] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4110), 1, - sym_type_annotation, - STATE(5160), 1, - sym__initializer, + [135926] = 8, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(6332), 1, + anon_sym_LT, + STATE(1866), 1, + sym_arguments, + STATE(3242), 1, + sym_type_arguments, + STATE(5549), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136572] = 6, - ACTIONS(6444), 1, + [135952] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4172), 1, + STATE(4271), 1, sym_type_annotation, - STATE(4717), 1, + STATE(5026), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136594] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4176), 1, - sym_type_annotation, - STATE(4728), 1, - sym__initializer, + [135974] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5243), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7280), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136616] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [135992] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5554), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136018] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2349), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5318), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136044] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4267), 1, + STATE(4211), 1, sym_type_annotation, - STATE(4882), 1, + STATE(4657), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136638] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4264), 1, - sym_type_annotation, - STATE(4886), 1, - sym__initializer, + [136066] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5305), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6774), 3, + ACTIONS(7303), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [136660] = 6, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [136084] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4445), 1, + STATE(4275), 1, sym_type_annotation, - STATE(5195), 1, + STATE(5034), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136682] = 2, + [136106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 7, + ACTIONS(6895), 7, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136696] = 6, - ACTIONS(3378), 1, + [136120] = 6, + ACTIONS(3370), 1, anon_sym_LBRACE, - ACTIONS(3380), 1, + ACTIONS(3372), 1, anon_sym_LBRACK, - ACTIONS(7300), 1, + ACTIONS(7305), 1, sym_identifier, - STATE(4771), 1, + STATE(4554), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, + STATE(3408), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [136718] = 8, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7302), 1, - sym_identifier, - ACTIONS(7304), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5495), 1, - sym__call_signature, + [136142] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2316), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5259), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136168] = 3, + ACTIONS(7307), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136744] = 6, - ACTIONS(6444), 1, + ACTIONS(3560), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136184] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4111), 1, + STATE(4279), 1, sym_type_annotation, - STATE(5164), 1, + STATE(5039), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136766] = 4, - ACTIONS(6452), 1, + [136206] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(7310), 1, + sym_identifier, + ACTIONS(7312), 1, + anon_sym_DOT, + STATE(3494), 1, + sym_nested_identifier, + STATE(3565), 1, + sym_string, + STATE(4195), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136232] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3933), 1, + STATE(3990), 1, sym_type_annotation, + STATE(4767), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7306), 5, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136784] = 3, - ACTIONS(7308), 1, + [136254] = 6, + ACTIONS(6450), 1, anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4285), 1, + sym_type_annotation, + STATE(5042), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 6, + ACTIONS(6711), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [136800] = 3, - ACTIONS(6799), 1, - anon_sym_is, + anon_sym_SEMI, + [136276] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7314), 1, + sym_identifier, + STATE(4473), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4028), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136816] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(7311), 1, - anon_sym_DOT, - STATE(2364), 1, - sym_arguments, - STATE(5288), 1, - sym_optional_chain, - STATE(5366), 1, - sym_type_arguments, + STATE(3378), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136298] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4166), 1, + sym_type_annotation, + STATE(4900), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136842] = 8, - ACTIONS(2478), 1, + ACTIONS(6679), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136320] = 8, + ACTIONS(1017), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, + anon_sym_LBRACE, + ACTIONS(7316), 1, anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7313), 1, - sym_identifier, - ACTIONS(7315), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, + ACTIONS(7318), 1, + anon_sym_extends, + STATE(4041), 1, + sym_object_type, + STATE(4249), 1, sym_type_parameters, - STATE(5494), 1, - sym__call_signature, + STATE(4942), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136868] = 8, - ACTIONS(6902), 1, + [136346] = 8, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - ACTIONS(6916), 1, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(4035), 1, + STATE(4186), 1, sym_class_body, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5511), 1, + STATE(5431), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136894] = 8, + [136372] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4292), 1, + sym_type_annotation, + STATE(5052), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136394] = 6, + ACTIONS(3519), 1, + anon_sym_LT, ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(6291), 1, - anon_sym_LT, - STATE(2489), 1, + STATE(1649), 1, sym_arguments, - STATE(3153), 1, + STATE(5300), 1, sym_type_arguments, - STATE(5404), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136920] = 4, - ACTIONS(6452), 1, + ACTIONS(7320), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [136416] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3977), 1, + STATE(4293), 1, sym_type_annotation, + STATE(5053), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7317), 5, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [136938] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7319), 1, - sym_identifier, - ACTIONS(7321), 1, - anon_sym_DOT, - STATE(781), 1, - sym_string, - STATE(900), 1, - sym__module, - STATE(4574), 1, - sym_nested_identifier, + [136438] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4184), 1, + sym_type_annotation, + STATE(4960), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136964] = 3, - ACTIONS(7323), 1, - anon_sym_EQ, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 6, + ACTIONS(3560), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [136980] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4177), 1, - sym_type_annotation, - STATE(4737), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137002] = 6, - ACTIONS(6444), 1, + [136474] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4326), 1, + STATE(4411), 1, sym_type_annotation, - STATE(4978), 1, + STATE(4807), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6675), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137024] = 8, - ACTIONS(6752), 1, + [136496] = 8, + ACTIONS(6909), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - STATE(2314), 1, + STATE(238), 1, sym_class_body, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5235), 1, + STATE(5505), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137050] = 8, - ACTIONS(2478), 1, - anon_sym_LT, + [136522] = 6, ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4338), 1, + sym_type_annotation, + STATE(4722), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136544] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7325), 1, + ACTIONS(7322), 1, sym_identifier, - ACTIONS(7327), 1, + ACTIONS(7324), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5494), 1, + STATE(5525), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137076] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - STATE(1614), 1, - sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137102] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(7329), 1, - anon_sym_DOT, - STATE(1506), 1, - sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, - sym_type_arguments, + [136570] = 6, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(4603), 1, + sym_constraint, + STATE(5495), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137128] = 6, - ACTIONS(6444), 1, + ACTIONS(6307), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(7272), 2, + anon_sym_COLON, + anon_sym_extends, + [136592] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4178), 1, + STATE(4026), 1, sym_type_annotation, - STATE(4745), 1, + STATE(4814), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137150] = 8, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(4099), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5243), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [136614] = 4, + ACTIONS(4887), 1, + anon_sym_COMMA, + STATE(3568), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137176] = 8, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(1668), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5251), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(7326), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [136632] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4304), 1, + sym_type_annotation, + STATE(5061), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137202] = 8, - ACTIONS(6900), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(840), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5549), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136654] = 3, + ACTIONS(7328), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137228] = 6, - ACTIONS(6444), 1, + ACTIONS(3560), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136670] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4039), 1, + STATE(4056), 1, sym_type_annotation, - STATE(4832), 1, + STATE(5216), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137250] = 8, - ACTIONS(3521), 1, + [136692] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3938), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, ACTIONS(7331), 1, - anon_sym_DOT, - STATE(2484), 1, - sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, - sym_type_arguments, + sym_identifier, + ACTIONS(7333), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5400), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137276] = 3, - ACTIONS(7271), 1, - anon_sym_AMP, + [136718] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4362), 1, + sym_type_annotation, + STATE(4976), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 6, + ACTIONS(6683), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [137292] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5469), 1, - sym_statement_block, + anon_sym_SEMI, + [136740] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4383), 1, + sym_type_annotation, + STATE(4994), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 5, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137310] = 3, - ACTIONS(7335), 1, + [136762] = 8, + ACTIONS(6911), 1, anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5384), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - [137326] = 8, - ACTIONS(3942), 1, + [136788] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7335), 1, + sym_identifier, + ACTIONS(7337), 1, anon_sym_DOT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(6350), 1, - anon_sym_LT, - STATE(2002), 1, - sym_arguments, - STATE(3248), 1, - sym_type_arguments, - STATE(5404), 1, - sym_optional_chain, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, + STATE(4482), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137352] = 8, - ACTIONS(7337), 1, - anon_sym_LBRACE, - ACTIONS(7339), 1, + [136814] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4305), 1, + sym_type_annotation, + STATE(5064), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [136836] = 8, + ACTIONS(7339), 1, + anon_sym_LBRACE, ACTIONS(7341), 1, - anon_sym_DOT, + anon_sym_COMMA, ACTIONS(7343), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(7345), 1, + anon_sym_LT, + ACTIONS(7347), 1, anon_sym_LBRACE_PIPE, - STATE(4598), 1, + STATE(4468), 1, aux_sym_extends_type_clause_repeat1, - STATE(5143), 1, + STATE(4630), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137378] = 4, - ACTIONS(7205), 1, - anon_sym_LBRACE, - STATE(4392), 1, - sym_statement_block, + [136862] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4117), 1, + sym_type_annotation, + STATE(5128), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1653), 5, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137396] = 4, - ACTIONS(4429), 1, + [136884] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4130), 1, + sym_type_annotation, + STATE(5145), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136906] = 3, + ACTIONS(7349), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5634), 2, + ACTIONS(3584), 6, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3758), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [137414] = 2, + [136922] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4071), 1, + sym_type_annotation, + STATE(5218), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136944] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4144), 1, + sym_type_annotation, + STATE(5217), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7347), 7, + ACTIONS(6683), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [136966] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [137428] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5358), 1, - sym_statement_block, + STATE(4146), 1, + sym_type_annotation, + STATE(4660), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 5, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137446] = 8, - ACTIONS(3521), 1, + [136988] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, ACTIONS(7351), 1, + sym_identifier, + ACTIONS(7353), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5525), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137014] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(7355), 1, anon_sym_DOT, - STATE(2001), 1, + STATE(1503), 1, sym_arguments, - STATE(5404), 1, + STATE(5549), 1, sym_optional_chain, - STATE(5405), 1, + STATE(5551), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137472] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5365), 1, - sym_statement_block, + [137040] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4152), 1, + sym_type_annotation, + STATE(4725), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7353), 5, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137490] = 8, - ACTIONS(2478), 1, - anon_sym_LT, + [137062] = 6, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7355), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - ACTIONS(7357), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5482), 1, - sym__call_signature, + STATE(4164), 1, + sym_type_annotation, + STATE(4738), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137084] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137516] = 6, - ACTIONS(6444), 1, + ACTIONS(5552), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [137098] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4011), 1, + STATE(4323), 1, sym_type_annotation, - STATE(4680), 1, + STATE(5076), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137538] = 6, - ACTIONS(6444), 1, + [137120] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4114), 1, + STATE(4328), 1, sym_type_annotation, - STATE(5184), 1, + STATE(5080), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137560] = 6, - ACTIONS(6444), 1, + [137142] = 8, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(1968), 1, + sym_arguments, + STATE(3481), 1, + sym_type_arguments, + STATE(5415), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137168] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4278), 1, + STATE(4329), 1, sym_type_annotation, - STATE(4900), 1, + STATE(5082), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137582] = 6, - ACTIONS(6444), 1, + [137190] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4279), 1, + STATE(4384), 1, sym_type_annotation, - STATE(4902), 1, + STATE(5069), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137604] = 6, - ACTIONS(3378), 1, + [137212] = 6, + ACTIONS(3370), 1, anon_sym_LBRACE, - ACTIONS(3380), 1, + ACTIONS(3372), 1, anon_sym_LBRACK, - ACTIONS(7300), 1, + ACTIONS(7240), 1, sym_identifier, - STATE(4484), 1, + STATE(4554), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, + STATE(3716), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [137626] = 6, - ACTIONS(6444), 1, + [137234] = 3, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4230), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [137250] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4242), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [137270] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4282), 1, + STATE(4141), 1, sym_type_annotation, - STATE(4910), 1, + STATE(4929), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137648] = 4, - ACTIONS(2444), 1, + [137292] = 8, + ACTIONS(6909), 1, anon_sym_LBRACE, - STATE(5565), 1, - sym_statement_block, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(250), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5394), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137666] = 6, - ACTIONS(6444), 1, + [137318] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4283), 1, + STATE(4330), 1, sym_type_annotation, - STATE(4911), 1, + STATE(5084), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137688] = 6, - ACTIONS(6444), 1, + [137340] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7337), 1, + anon_sym_DOT, + ACTIONS(7357), 1, + sym_identifier, + STATE(752), 1, + sym_nested_identifier, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137366] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(780), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5473), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137392] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7359), 1, + sym_identifier, + ACTIONS(7361), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5268), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137418] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(1801), 1, + sym_arguments, + STATE(3171), 1, + sym_type_arguments, + STATE(5549), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137444] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2118), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5321), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137470] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4117), 1, + STATE(4197), 1, sym_type_annotation, - STATE(5206), 1, + STATE(4883), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137710] = 6, - ACTIONS(6444), 1, + [137492] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4288), 1, + STATE(4219), 1, sym_type_annotation, - STATE(4922), 1, + STATE(4899), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137514] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2159), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5250), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137540] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7116), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [137732] = 6, - ACTIONS(6444), 1, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137554] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4293), 1, + STATE(4028), 1, sym_type_annotation, - STATE(4926), 1, + STATE(4820), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(7260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137754] = 6, - ACTIONS(6444), 1, + [137576] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4295), 1, + STATE(4075), 1, sym_type_annotation, - STATE(4928), 1, + STATE(4982), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137776] = 6, - ACTIONS(6444), 1, + [137598] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4296), 1, + STATE(4103), 1, sym_type_annotation, - STATE(4929), 1, + STATE(4992), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137798] = 6, - ACTIONS(6444), 1, + [137620] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7363), 1, + anon_sym_COLON, + ACTIONS(7365), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5312), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137646] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4297), 1, + STATE(4113), 1, sym_type_annotation, - STATE(4933), 1, + STATE(5048), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137820] = 6, - ACTIONS(6444), 1, + [137668] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4298), 1, + STATE(4116), 1, sym_type_annotation, - STATE(4934), 1, + STATE(5066), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137842] = 8, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(1648), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5242), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137868] = 8, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2190), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5418), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137894] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7300), 1, - sym_identifier, - STATE(4487), 1, - sym_variable_declarator, + [137690] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4261), 1, + sym_type_annotation, + STATE(5083), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137916] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5272), 1, - sym_statement_block, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137712] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4310), 1, + sym_type_annotation, + STATE(5091), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 5, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [137934] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5274), 1, - sym_statement_block, + [137734] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 5, + ACTIONS(7367), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [137952] = 8, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(4539), 1, - anon_sym_DOT, - ACTIONS(6291), 1, - anon_sym_LT, - STATE(2026), 1, - sym_arguments, - STATE(3476), 1, - sym_type_arguments, - STATE(5288), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137978] = 6, - ACTIONS(6444), 1, + [137748] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4353), 1, + STATE(4052), 1, sym_type_annotation, - STATE(5030), 1, + STATE(5136), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -251163,14187 +251207,14564 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138000] = 8, - ACTIONS(2478), 1, - anon_sym_LT, + [137770] = 6, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7363), 1, - sym_identifier, - ACTIONS(7365), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5321), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138026] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5406), 1, - sym_statement_block, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4064), 1, + sym_type_annotation, + STATE(5153), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 5, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138044] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5407), 1, - sym_statement_block, + [137792] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4066), 1, + sym_type_annotation, + STATE(5187), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 5, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138062] = 6, - ACTIONS(6444), 1, + [137814] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4307), 1, + STATE(4067), 1, sym_type_annotation, - STATE(4948), 1, + STATE(5190), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138084] = 6, - ACTIONS(6444), 1, + [137836] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4309), 1, + STATE(4074), 1, sym_type_annotation, - STATE(5220), 1, + STATE(4644), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138106] = 6, - ACTIONS(6444), 1, + [137858] = 4, + ACTIONS(4639), 1, anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4125), 1, - sym_type_annotation, - STATE(5210), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, + ACTIONS(5607), 2, anon_sym_COMMA, - anon_sym_SEMI, - [138128] = 8, - ACTIONS(1583), 1, + anon_sym_RBRACE, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [137876] = 7, + ACTIONS(3084), 1, anon_sym_DQUOTE, - ACTIONS(1585), 1, + ACTIONS(3086), 1, anon_sym_SQUOTE, - ACTIONS(7367), 1, + ACTIONS(6754), 1, sym_identifier, - ACTIONS(7369), 1, - anon_sym_DOT, - STATE(3504), 1, - sym_nested_identifier, - STATE(3657), 1, - sym_string, - STATE(4416), 1, - sym__module, + ACTIONS(6813), 1, + anon_sym_type, + STATE(5449), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138154] = 8, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1575), 1, + STATE(5705), 2, + sym__module_export_name, + sym_string, + [137900] = 8, + ACTIONS(6768), 1, anon_sym_LBRACE, - ACTIONS(7371), 1, - anon_sym_LT, - ACTIONS(7373), 1, + ACTIONS(6911), 1, anon_sym_extends, - STATE(3944), 1, - sym_object_type, - STATE(4008), 1, - sym_type_parameters, - STATE(4667), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138180] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7300), 1, - sym_identifier, - STATE(4496), 1, - sym_variable_declarator, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2114), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5320), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [138202] = 6, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1682), 1, - sym_arguments, - STATE(5239), 1, - sym_type_arguments, + [137926] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4120), 1, + sym_type_annotation, + STATE(4729), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7279), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [138224] = 6, - ACTIONS(6444), 1, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137948] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4131), 1, + STATE(4350), 1, sym_type_annotation, - STATE(4616), 1, + STATE(4724), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138246] = 8, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7321), 1, - anon_sym_DOT, - ACTIONS(7375), 1, + [137970] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, sym_identifier, - STATE(751), 1, - sym_nested_identifier, - STATE(781), 1, - sym_string, - STATE(900), 1, - sym__module, + STATE(4473), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138272] = 6, - ACTIONS(6444), 1, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [137992] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4394), 1, + STATE(4132), 1, sym_type_annotation, - STATE(5102), 1, + STATE(4751), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138294] = 4, - ACTIONS(6452), 1, + [138014] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4368), 1, + STATE(4143), 1, sym_type_annotation, + STATE(4765), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7377), 5, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [138312] = 6, - ACTIONS(6444), 1, + [138036] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4313), 1, + STATE(4344), 1, sym_type_annotation, - STATE(4960), 1, + STATE(5101), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138334] = 6, - ACTIONS(6444), 1, + [138058] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4134), 1, + STATE(4345), 1, sym_type_annotation, - STATE(4628), 1, + STATE(5103), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138356] = 6, - ACTIONS(6444), 1, + [138080] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4137), 1, + STATE(4207), 1, sym_type_annotation, - STATE(4631), 1, + STATE(4651), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138378] = 8, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1495), 1, - anon_sym_LBRACE, - ACTIONS(7371), 1, - anon_sym_LT, - ACTIONS(7373), 1, - anon_sym_extends, - STATE(909), 1, - sym_object_type, - STATE(4251), 1, - sym_type_parameters, - STATE(5217), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138404] = 8, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(4418), 1, + [138102] = 8, + ACTIONS(4420), 1, anon_sym_QMARK_DOT, - ACTIONS(4535), 1, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(7379), 1, + ACTIONS(4506), 1, anon_sym_DOT, - STATE(2014), 1, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2394), 1, sym_arguments, - STATE(5288), 1, - sym_optional_chain, - STATE(5366), 1, + STATE(3481), 1, sym_type_arguments, + STATE(5415), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138430] = 8, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7357), 1, - anon_sym_QMARK, - ACTIONS(7381), 1, - anon_sym_COLON, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5482), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138456] = 8, - ACTIONS(2478), 1, - anon_sym_LT, + [138128] = 6, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7383), 1, - sym_identifier, - ACTIONS(7385), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5257), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138482] = 6, - ACTIONS(6444), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4016), 1, + STATE(4094), 1, sym_type_annotation, - STATE(4700), 1, + STATE(4880), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138504] = 6, - ACTIONS(6444), 1, + [138150] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4317), 1, + STATE(4160), 1, sym_type_annotation, - STATE(4968), 1, + STATE(4819), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138526] = 6, - ACTIONS(6444), 1, + [138172] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4319), 1, + STATE(4162), 1, sym_type_annotation, - STATE(4969), 1, + STATE(4850), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138548] = 8, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2224), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5371), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [138194] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_DOT, + STATE(2044), 1, + sym_arguments, + STATE(5415), 1, + sym_optional_chain, + STATE(5426), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138574] = 6, - ACTIONS(6444), 1, + [138220] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4141), 1, + STATE(4353), 1, sym_type_annotation, - STATE(4645), 1, + STATE(5112), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138596] = 6, - ACTIONS(6444), 1, + [138242] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4400), 1, + STATE(4354), 1, sym_type_annotation, STATE(5113), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138618] = 4, - ACTIONS(7387), 1, - anon_sym_COMMA, - STATE(3713), 1, - aux_sym_sequence_expression_repeat1, + [138264] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4202), 1, + sym_type_annotation, + STATE(4914), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 5, - anon_sym_RBRACE, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [138636] = 6, - ACTIONS(6444), 1, + [138286] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4323), 1, + STATE(4205), 1, sym_type_annotation, - STATE(4975), 1, + STATE(4921), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138658] = 6, - ACTIONS(6444), 1, + [138308] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4324), 1, + STATE(4355), 1, sym_type_annotation, - STATE(4976), 1, + STATE(5115), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138680] = 6, - ACTIONS(6444), 1, + [138330] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4327), 1, + STATE(4356), 1, sym_type_annotation, - STATE(4982), 1, + STATE(5117), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138702] = 6, - ACTIONS(6444), 1, + [138352] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4328), 1, + STATE(4099), 1, sym_type_annotation, - STATE(4984), 1, + STATE(4626), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138724] = 6, - ACTIONS(6444), 1, + [138374] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4331), 1, + STATE(4221), 1, sym_type_annotation, - STATE(4994), 1, + STATE(4666), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138746] = 7, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(6740), 1, - sym_identifier, - ACTIONS(6760), 1, - anon_sym_type, - STATE(5245), 1, - sym__import_identifier, + [138396] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5931), 2, - sym__module_export_name, - sym_string, - [138770] = 6, - ACTIONS(6444), 1, + ACTIONS(7371), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [138410] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4332), 1, + STATE(4108), 1, sym_type_annotation, - STATE(4996), 1, + STATE(4628), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138792] = 6, - ACTIONS(6444), 1, + [138432] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4335), 1, + STATE(4360), 1, sym_type_annotation, - STATE(5006), 1, + STATE(5126), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138814] = 6, - ACTIONS(6444), 1, + [138454] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4336), 1, + STATE(4289), 1, sym_type_annotation, - STATE(5007), 1, + STATE(4707), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138836] = 3, - ACTIONS(6799), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4024), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [138852] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4143), 1, - sym_type_annotation, - STATE(4647), 1, - sym__initializer, + [138476] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5422), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7373), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [138874] = 3, - ACTIONS(7390), 1, + anon_sym_PIPE_RBRACE, + [138494] = 3, + ACTIONS(6784), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4032), 6, + ACTIONS(4042), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [138890] = 8, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(6916), 1, + [138510] = 4, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(4129), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5311), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + STATE(5417), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7375), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138528] = 7, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(7377), 1, + anon_sym_EQ, + ACTIONS(7381), 1, + anon_sym_QMARK, + STATE(4567), 1, + sym_type_annotation, + STATE(5246), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138916] = 4, + ACTIONS(7379), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [138552] = 4, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5497), 1, + STATE(5496), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 5, + ACTIONS(7383), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138934] = 4, + [138570] = 4, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5499), 1, + STATE(5257), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 5, + ACTIONS(7385), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138952] = 8, - ACTIONS(6784), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2536), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5279), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [138588] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7050), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [138602] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4371), 1, + sym_type_annotation, + STATE(5137), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138978] = 4, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138624] = 4, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5351), 1, + STATE(5419), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 5, + ACTIONS(7242), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138996] = 4, + [138642] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4233), 1, + sym_type_annotation, + STATE(4985), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6778), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138664] = 3, + ACTIONS(7387), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [138680] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(2045), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138706] = 4, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5232), 1, + STATE(5558), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7396), 5, + ACTIONS(7375), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139014] = 4, + [138724] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4506), 1, + anon_sym_DOT, + STATE(2282), 1, + sym_arguments, + STATE(5415), 1, + sym_optional_chain, + STATE(5426), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138750] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(7293), 1, + anon_sym_DOT, + STATE(1503), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138776] = 4, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5374), 1, + STATE(5364), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 5, + ACTIONS(7383), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139032] = 8, - ACTIONS(2478), 1, + [138794] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4020), 1, + sym_type_annotation, + STATE(4624), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6732), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138816] = 8, + ACTIONS(3519), 1, anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(7391), 1, + anon_sym_DOT, + STATE(1793), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138842] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4236), 1, + sym_type_annotation, + STATE(4949), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138864] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4287), 1, + sym_type_annotation, + STATE(4968), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138886] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4301), 1, + sym_type_annotation, + STATE(4974), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138908] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4306), 1, + sym_type_annotation, + STATE(4980), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138930] = 8, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2512), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5293), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138956] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4396), 1, + sym_type_annotation, + STATE(4996), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138978] = 6, ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4397), 1, + sym_type_annotation, + STATE(4999), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139000] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7398), 1, - sym_identifier, - ACTIONS(7400), 1, - anon_sym_STAR, - STATE(3848), 1, + ACTIONS(7365), 1, + anon_sym_QMARK, + ACTIONS(7393), 1, + anon_sym_COLON, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5495), 1, + STATE(5312), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139058] = 2, + [139026] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4412), 1, + sym_type_annotation, + STATE(4734), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6832), 7, + ACTIONS(6701), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [139072] = 6, - ACTIONS(6444), 1, + [139048] = 6, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2131), 1, + sym_arguments, + STATE(5436), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7320), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [139070] = 8, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(1685), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5351), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139096] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4018), 1, + STATE(4398), 1, sym_type_annotation, - STATE(4704), 1, + STATE(5004), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139094] = 6, - ACTIONS(6444), 1, + [139118] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4414), 1, + STATE(4399), 1, sym_type_annotation, - STATE(5138), 1, + STATE(5007), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139116] = 8, - ACTIONS(2478), 1, + [139140] = 8, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7402), 1, + ACTIONS(7395), 1, sym_identifier, - ACTIONS(7404), 1, + ACTIONS(7397), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5494), 1, + STATE(5525), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139142] = 4, - ACTIONS(2444), 1, + [139166] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(5234), 1, - sym_statement_block, + STATE(4177), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5355), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139160] = 2, + [139192] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7399), 1, + sym_identifier, + ACTIONS(7401), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5400), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7024), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [139174] = 6, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, - ACTIONS(7300), 1, - sym_identifier, - STATE(4476), 1, - sym_variable_declarator, + [139218] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(7403), 1, + anon_sym_DOT, + STATE(2393), 1, + sym_arguments, + STATE(5415), 1, + sym_optional_chain, + STATE(5426), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3624), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [139196] = 8, - ACTIONS(6752), 1, - anon_sym_LBRACE, - ACTIONS(6902), 1, - anon_sym_extends, - ACTIONS(6904), 1, - anon_sym_implements, - STATE(2185), 1, - sym_class_body, - STATE(5174), 1, - sym_extends_clause, - STATE(5419), 1, - sym_class_heritage, - STATE(5952), 1, - sym_implements_clause, + [139244] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139222] = 8, - ACTIONS(6902), 1, + ACTIONS(7405), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [139258] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(774), 1, + STATE(2187), 1, sym_class_body, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5269), 1, + STATE(5255), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139248] = 8, - ACTIONS(2478), 1, - anon_sym_LT, + [139284] = 6, ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7408), 1, - sym_identifier, - ACTIONS(7410), 1, - anon_sym_STAR, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5495), 1, - sym__call_signature, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4402), 1, + sym_type_annotation, + STATE(5035), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139274] = 6, - ACTIONS(6444), 1, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139306] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(3950), 1, + STATE(4138), 1, sym_type_annotation, - STATE(4822), 1, + STATE(4924), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139296] = 8, - ACTIONS(6784), 1, + [139328] = 8, + ACTIONS(6798), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6911), 1, anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6913), 1, anon_sym_implements, - STATE(1705), 1, + STATE(1687), 1, sym_class_body, - STATE(5174), 1, + STATE(5098), 1, sym_extends_clause, - STATE(5507), 1, + STATE(5366), 1, sym_class_heritage, - STATE(5952), 1, + STATE(5745), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139322] = 6, - ACTIONS(6444), 1, + [139354] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4156), 1, + STATE(4414), 1, sym_type_annotation, - STATE(4669), 1, + STATE(5169), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139344] = 6, - ACTIONS(6444), 1, + [139376] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4158), 1, + STATE(4139), 1, sym_type_annotation, - STATE(4671), 1, + STATE(4925), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139366] = 6, - ACTIONS(6444), 1, + [139398] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4025), 1, + STATE(4415), 1, sym_type_annotation, - STATE(4772), 1, + STATE(5171), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139388] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, + [139420] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5491), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 4, + ACTIONS(7407), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139408] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4161), 1, - sym_type_annotation, - STATE(4681), 1, - sym__initializer, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139438] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2539), 1, + sym_arguments, + STATE(3171), 1, + sym_type_arguments, + STATE(5549), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139464] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, + ACTIONS(7409), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139430] = 2, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [139478] = 4, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4192), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7143), 7, + ACTIONS(7411), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, + anon_sym_PIPE_RBRACE, + [139496] = 4, + ACTIONS(6458), 1, anon_sym_COLON, - [139444] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, + STATE(4288), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 4, + ACTIONS(7413), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139464] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139514] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4426), 1, + sym_type_annotation, + STATE(5180), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 4, + ACTIONS(6711), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139484] = 3, - ACTIONS(7271), 1, - anon_sym_AMP, + anon_sym_SEMI, + [139536] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4278), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5392), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [139500] = 8, - ACTIONS(3521), 1, - anon_sym_LT, + [139562] = 8, ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(4418), 1, - anon_sym_QMARK_DOT, - ACTIONS(7287), 1, + ACTIONS(3942), 1, anon_sym_DOT, - STATE(1506), 1, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(1519), 1, sym_arguments, - STATE(5404), 1, - sym_optional_chain, - STATE(5405), 1, + STATE(3171), 1, sym_type_arguments, + STATE(5549), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139526] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4199), 1, - sym_type_annotation, - STATE(4782), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6700), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139548] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, + [139588] = 3, + ACTIONS(6784), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4096), 4, - anon_sym_COMMA, + ACTIONS(4046), 6, + anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - [139568] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(7275), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4100), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [139588] = 4, + [139604] = 4, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5413), 1, + STATE(5498), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7412), 5, + ACTIONS(7415), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139606] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4163), 1, - sym_type_annotation, - STATE(4685), 1, - sym__initializer, + [139622] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2092), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5405), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6673), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139628] = 6, - ACTIONS(6444), 1, + [139648] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4358), 1, + STATE(4428), 1, sym_type_annotation, - STATE(5042), 1, + STATE(5181), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7281), 3, + ACTIONS(6711), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139650] = 6, - ACTIONS(6444), 1, - anon_sym_EQ, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4359), 1, - sym_type_annotation, - STATE(5043), 1, - sym__initializer, + [139670] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4367), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5410), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7281), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139672] = 4, - ACTIONS(2444), 1, + [139696] = 8, + ACTIONS(6798), 1, anon_sym_LBRACE, - STATE(5352), 1, - sym_statement_block, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(1699), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5416), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139690] = 4, - ACTIONS(2444), 1, + [139722] = 8, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, anon_sym_LBRACE, - STATE(5368), 1, - sym_statement_block, + ACTIONS(7316), 1, + anon_sym_LT, + ACTIONS(7318), 1, + anon_sym_extends, + STATE(810), 1, + sym_object_type, + STATE(4267), 1, + sym_type_parameters, + STATE(4956), 1, + sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139708] = 6, - ACTIONS(6444), 1, + [139748] = 6, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(6452), 1, + ACTIONS(6458), 1, anon_sym_COLON, - STATE(4277), 1, + STATE(4140), 1, sym_type_annotation, - STATE(4891), 1, + STATE(4928), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6663), 3, + ACTIONS(6677), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139730] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, + [139770] = 3, + ACTIONS(7417), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 4, + ACTIONS(4250), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, anon_sym_QMARK, - [139750] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2607), 1, - sym_statement_block, + [139786] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(7419), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3786), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139767] = 5, - ACTIONS(7416), 1, - anon_sym_default, - ACTIONS(7419), 1, - anon_sym_RBRACE, + [139809] = 5, ACTIONS(7421), 1, - anon_sym_case, + anon_sym_BQUOTE, + ACTIONS(7423), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3768), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [139786] = 4, - STATE(3773), 1, - aux_sym_object_type_repeat1, + ACTIONS(7216), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3893), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [139828] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7425), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4239), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3720), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7424), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139803] = 4, - STATE(3885), 1, + [139851] = 4, + STATE(3801), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3688), 2, + ACTIONS(3712), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7426), 3, + ACTIONS(7427), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139820] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [139868] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7429), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4000), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3720), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7424), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139837] = 5, + [139891] = 5, ACTIONS(7431), 1, - anon_sym_BQUOTE, + anon_sym_default, ACTIONS(7433), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE, + ACTIONS(7435), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7428), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3772), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [139856] = 4, - STATE(3885), 1, + STATE(3894), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [139910] = 3, + ACTIONS(4374), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4376), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [139925] = 4, + STATE(3807), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3724), 2, + ACTIONS(3712), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7436), 3, + ACTIONS(7427), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139873] = 7, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(7367), 1, - sym_identifier, - STATE(3504), 1, - sym_nested_identifier, - STATE(3657), 1, - sym_string, - STATE(4416), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139896] = 7, - ACTIONS(2478), 1, + [139942] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7438), 1, - anon_sym_QMARK, - STATE(3267), 1, + ACTIONS(7437), 1, + sym_identifier, + STATE(3954), 1, sym_formal_parameters, - STATE(4991), 1, + STATE(5423), 1, sym__call_signature, - STATE(5435), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139919] = 7, - ACTIONS(7339), 1, - anon_sym_COMMA, - ACTIONS(7343), 1, - anon_sym_LT, - ACTIONS(7440), 1, - anon_sym_LBRACE, - ACTIONS(7442), 1, - anon_sym_LBRACE_PIPE, - STATE(4601), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5149), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [139942] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2338), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [139955] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [139965] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(7444), 1, + ACTIONS(7439), 1, anon_sym_COMMA, - ACTIONS(7446), 1, + ACTIONS(7441), 1, anon_sym_GT, - STATE(4731), 1, + STATE(5221), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139978] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7375), 1, + [139988] = 5, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(7443), 1, sym_identifier, - STATE(751), 1, - sym_nested_identifier, - STATE(781), 1, - sym_string, - STATE(904), 1, - sym__module, + ACTIONS(7445), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140001] = 4, - STATE(3876), 1, + STATE(4535), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140007] = 4, + STATE(3781), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7450), 2, + ACTIONS(7449), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7448), 3, + ACTIONS(7447), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140018] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2330), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [140031] = 5, - ACTIONS(3238), 1, + [140024] = 5, + ACTIONS(3370), 1, anon_sym_LBRACE, - ACTIONS(7452), 1, - sym_identifier, - ACTIONS(7454), 1, + ACTIONS(3372), 1, anon_sym_LBRACK, + ACTIONS(7451), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4666), 3, + STATE(4943), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [140050] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2628), 1, - sym_statement_block, + [140043] = 4, + STATE(3782), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7289), 4, + ACTIONS(3734), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7453), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140067] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2342), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [140080] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_QMARK, - STATE(3396), 1, - sym_formal_parameters, - STATE(3856), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [140060] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140103] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2644), 1, - sym_statement_block, + ACTIONS(3734), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140077] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 4, + ACTIONS(3738), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7455), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140120] = 3, - ACTIONS(4090), 1, - sym_identifier, + [140094] = 6, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(7377), 1, + anon_sym_EQ, + STATE(4498), 1, + sym_type_annotation, + STATE(5373), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4092), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, + ACTIONS(7457), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [140115] = 7, + ACTIONS(7204), 1, anon_sym_GT, + ACTIONS(7459), 1, + sym_identifier, + ACTIONS(7461), 1, sym_jsx_identifier, + ACTIONS(7463), 1, anon_sym_SLASH_GT, - [140135] = 4, - ACTIONS(7414), 1, + STATE(3162), 1, + sym_nested_identifier, + STATE(3372), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140138] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2624), 1, + STATE(2622), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7412), 4, + ACTIONS(7407), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140152] = 4, - ACTIONS(7414), 1, + [140155] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2639), 1, + STATE(2623), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 4, + ACTIONS(7415), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140169] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [140172] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7467), 1, anon_sym_COMMA, - ACTIONS(7460), 1, + ACTIONS(7469), 1, anon_sym_GT, - STATE(4828), 1, + STATE(4659), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140192] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7462), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5382), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140215] = 7, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3521), 1, - anon_sym_LT, - ACTIONS(7464), 1, - anon_sym_RPAREN, - ACTIONS(7466), 1, - anon_sym_DOT, - STATE(1270), 1, - sym_arguments, - STATE(5556), 1, - sym_type_arguments, + [140195] = 5, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(7445), 1, + anon_sym_LBRACK, + ACTIONS(7471), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140238] = 3, + STATE(4971), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140214] = 4, + STATE(3793), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5827), 2, - anon_sym_COMMA, + ACTIONS(7475), 2, anon_sym_RBRACE, - ACTIONS(3758), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [140253] = 5, - ACTIONS(7468), 1, - anon_sym_BQUOTE, - ACTIONS(7470), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140231] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7213), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3812), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140272] = 7, - ACTIONS(2478), 1, + ACTIONS(7479), 2, + anon_sym_AMP, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(7477), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140246] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(7472), 1, + ACTIONS(7481), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(3738), 1, + STATE(3910), 1, sym__call_signature, - STATE(5435), 1, + STATE(5452), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140295] = 4, - ACTIONS(7474), 1, - sym_identifier, - ACTIONS(7476), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7478), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [140312] = 3, - ACTIONS(4062), 1, - sym_identifier, + [140269] = 4, + STATE(3794), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4064), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [140327] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, + ACTIONS(3690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7483), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140286] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7480), 3, - anon_sym_EQ, + ACTIONS(3690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7483), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [140346] = 5, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, + anon_sym_SEMI, + [140303] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4096), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140365] = 5, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, + ACTIONS(3692), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7485), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140320] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4074), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140384] = 5, - ACTIONS(7482), 1, + ACTIONS(4725), 2, anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4100), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140403] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7488), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4382), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140426] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7490), 1, - sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5502), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140449] = 7, - ACTIONS(2478), 1, anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7492), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5501), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140472] = 7, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7494), 1, - anon_sym_export, - ACTIONS(7496), 1, - anon_sym_class, - ACTIONS(7498), 1, - anon_sym_abstract, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + ACTIONS(4727), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140335] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140495] = 6, - ACTIONS(7271), 1, + ACTIONS(4462), 2, anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, - ACTIONS(7502), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7500), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [140516] = 6, - ACTIONS(7341), 1, - anon_sym_DOT, - ACTIONS(7343), 1, anon_sym_LT, - ACTIONS(7504), 1, + ACTIONS(4464), 4, + sym_jsx_text, anon_sym_LBRACE, - STATE(5143), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7506), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [140537] = 2, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7251), 6, + ACTIONS(7487), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [140550] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + anon_sym_PIPE_RBRACE, + [140363] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(7508), 1, + ACTIONS(7489), 1, anon_sym_COMMA, - ACTIONS(7510), 1, + ACTIONS(7491), 1, anon_sym_GT, - STATE(4654), 1, + STATE(4692), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140573] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2645), 1, - sym_statement_block, + [140386] = 4, + STATE(3802), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 4, + ACTIONS(7495), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7493), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140590] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2619), 1, - sym_statement_block, + [140403] = 4, + STATE(3804), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7249), 4, + ACTIONS(3696), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7497), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140607] = 5, - ACTIONS(7470), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7514), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7512), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3772), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140626] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7516), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3728), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, + [140420] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140649] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7518), 1, - anon_sym_LBRACE, - ACTIONS(7520), 1, + ACTIONS(3702), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7499), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(5088), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140672] = 4, - STATE(3885), 1, + anon_sym_SEMI, + [140437] = 4, + STATE(3807), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3692), 2, + ACTIONS(3696), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7522), 3, + ACTIONS(7497), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140689] = 7, - ACTIONS(2478), 1, + [140454] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7524), 1, + ACTIONS(7501), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5336), 1, + STATE(4191), 1, sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140712] = 2, + [140477] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7347), 6, + ACTIONS(3698), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7503), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [140725] = 2, + [140494] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 6, - sym__automatic_semicolon, + ACTIONS(7507), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7505), 4, + sym_jsx_text, anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140509] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7509), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [140738] = 5, - ACTIONS(7470), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7528), 1, - anon_sym_BQUOTE, + ACTIONS(7511), 1, + anon_sym_GT, + STATE(4721), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7512), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3772), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140757] = 4, - STATE(3831), 1, + [140532] = 4, + STATE(3807), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7532), 2, + ACTIONS(7516), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7530), 3, + ACTIONS(7513), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140774] = 3, - ACTIONS(4122), 1, - sym_identifier, + [140549] = 4, + STATE(3811), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [140789] = 5, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, + ACTIONS(7520), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140566] = 4, + STATE(3812), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3704), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140583] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(7486), 1, + ACTIONS(6603), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4348), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140808] = 2, + ACTIONS(7524), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_GT, + [140602] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7257), 6, + ACTIONS(3704), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7522), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [140821] = 2, + [140619] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 6, + ACTIONS(3706), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7526), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [140834] = 7, - ACTIONS(7159), 1, + [140636] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7528), 1, + anon_sym_COMMA, + ACTIONS(7530), 1, anon_sym_GT, - ACTIONS(7536), 1, - sym_identifier, - ACTIONS(7538), 1, - sym_jsx_identifier, - ACTIONS(7540), 1, - anon_sym_SLASH_GT, - STATE(3125), 1, - sym_nested_identifier, - STATE(3412), 1, - sym_jsx_namespace_name, + STATE(4739), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140857] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7542), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4052), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, + [140659] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140880] = 7, - ACTIONS(2478), 1, + ACTIONS(4512), 2, + anon_sym_AMP, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7544), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(4366), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, + ACTIONS(4514), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140674] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140903] = 4, - STATE(3855), 1, - aux_sym_object_type_repeat1, + ACTIONS(4516), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4518), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140689] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3738), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7546), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [140920] = 5, - ACTIONS(7482), 1, + ACTIONS(4557), 2, anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, + anon_sym_LT, + ACTIONS(4559), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4356), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140939] = 4, - STATE(3835), 1, - aux_sym_object_type_repeat1, + ACTIONS(4561), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4563), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140719] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3740), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7548), 3, + ACTIONS(7532), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140956] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + anon_sym_PIPE_RBRACE, + [140732] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3740), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7548), 3, + ACTIONS(7534), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [140973] = 2, + anon_sym_PIPE_RBRACE, + [140745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7550), 6, + ACTIONS(7536), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [140986] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7552), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5375), 1, - sym__call_signature, + [140758] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7538), 1, + anon_sym_export, + ACTIONS(7540), 1, + anon_sym_class, + ACTIONS(7542), 1, + anon_sym_abstract, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141009] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - ACTIONS(7554), 1, - anon_sym_QMARK, - STATE(3396), 1, - sym_formal_parameters, - STATE(3843), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [140781] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6792), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [140798] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7357), 1, + sym_identifier, + STATE(752), 1, + sym_nested_identifier, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141032] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [140821] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7546), 1, + sym_html_character_reference, + ACTIONS(7548), 1, + anon_sym_DQUOTE, + ACTIONS(7550), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(7552), 1, + anon_sym_AMP2, + STATE(3900), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [140844] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7548), 1, + anon_sym_SQUOTE, + ACTIONS(7554), 1, + sym_html_character_reference, + ACTIONS(7556), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(7558), 1, + anon_sym_AMP2, + STATE(3901), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [140867] = 6, + ACTIONS(7343), 1, + anon_sym_DOT, + ACTIONS(7345), 1, + anon_sym_LT, + ACTIONS(7560), 1, + anon_sym_LBRACE, + STATE(4630), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3726), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7556), 3, - sym__automatic_semicolon, + ACTIONS(7562), 2, anon_sym_COMMA, - anon_sym_SEMI, - [141049] = 2, + anon_sym_LBRACE_PIPE, + [140888] = 3, + ACTIONS(4144), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7558), 6, - sym__automatic_semicolon, + ACTIONS(4146), 5, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [141062] = 7, - ACTIONS(7159), 1, + anon_sym_LPAREN, anon_sym_GT, - ACTIONS(7560), 1, - sym_identifier, - ACTIONS(7562), 1, sym_jsx_identifier, - ACTIONS(7564), 1, anon_sym_SLASH_GT, - STATE(3117), 1, - sym_nested_identifier, - STATE(3373), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141085] = 7, - ACTIONS(2478), 1, + [140903] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7566), 1, + ACTIONS(7564), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5344), 1, + STATE(5313), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141108] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2641), 1, - sym_statement_block, + [140926] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7566), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5271), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141125] = 5, - ACTIONS(3238), 1, - anon_sym_LBRACE, - ACTIONS(7454), 1, - anon_sym_LBRACK, + [140949] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, ACTIONS(7568), 1, - sym_identifier, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4046), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4570), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [141144] = 7, - ACTIONS(2478), 1, + [140972] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, ACTIONS(7570), 1, - sym_identifier, - STATE(3848), 1, + anon_sym_QMARK, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5262), 1, + STATE(5357), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141167] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7375), 1, - sym_identifier, - STATE(751), 1, - sym_nested_identifier, - STATE(781), 1, - sym_string, - STATE(900), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141190] = 4, - ACTIONS(7414), 1, + [140995] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2614), 1, + STATE(2642), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 4, + ACTIONS(7295), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141207] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [141012] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3738), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7546), 3, + ACTIONS(7367), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141224] = 3, - ACTIONS(6546), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6548), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [141239] = 5, - ACTIONS(3378), 1, - anon_sym_LBRACE, - ACTIONS(3380), 1, - anon_sym_LBRACK, + anon_sym_COLON, + [141025] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, ACTIONS(7572), 1, - sym_identifier, + anon_sym_LBRACE, + ACTIONS(7574), 1, + anon_sym_COMMA, + STATE(4966), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4623), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [141258] = 4, - ACTIONS(7414), 1, + [141048] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2608), 1, + STATE(2624), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 4, + ACTIONS(7373), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141275] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6770), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141292] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2326), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141305] = 7, - ACTIONS(2478), 1, + [141065] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, ACTIONS(7576), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5346), 1, + STATE(5234), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141328] = 7, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - ACTIONS(7367), 1, - sym_identifier, - STATE(3504), 1, - sym_nested_identifier, - STATE(3657), 1, - sym_string, - STATE(4391), 1, - sym__module, + [141088] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141351] = 7, - ACTIONS(2478), 1, + ACTIONS(7580), 2, + anon_sym_AMP, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(7578), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141103] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7578), 1, - sym_identifier, - STATE(3848), 1, + ACTIONS(7582), 1, + anon_sym_QMARK, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5451), 1, + STATE(5365), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141374] = 7, - ACTIONS(2478), 1, + [141126] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7580), 1, - anon_sym_QMARK, - STATE(3396), 1, + ACTIONS(7584), 1, + sym_identifier, + STATE(3954), 1, sym_formal_parameters, - STATE(3839), 1, + STATE(5334), 1, sym__call_signature, - STATE(5339), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141397] = 5, - ACTIONS(7582), 1, - anon_sym_default, - ACTIONS(7584), 1, - anon_sym_RBRACE, + [141149] = 3, ACTIONS(7586), 1, - anon_sym_case, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3768), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [141416] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + ACTIONS(4230), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [141164] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3722), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7588), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141433] = 4, - ACTIONS(7414), 1, + ACTIONS(4242), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141183] = 3, + ACTIONS(7592), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4250), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + [141198] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4623), 4, + sym_jsx_text, anon_sym_LBRACE, - STATE(2611), 1, - sym_statement_block, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141213] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7353), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141450] = 7, - ACTIONS(2478), 1, + ACTIONS(4625), 2, + anon_sym_AMP, anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7590), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(3932), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, + ACTIONS(4627), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141228] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141473] = 7, - ACTIONS(6617), 1, + ACTIONS(4621), 2, anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7592), 1, - anon_sym_COMMA, - ACTIONS(7594), 1, - anon_sym_GT, - STATE(4686), 1, - aux_sym_implements_clause_repeat1, + anon_sym_LT, + ACTIONS(4623), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141243] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141496] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7319), 1, - sym_identifier, - STATE(781), 1, - sym_string, - STATE(904), 1, - sym__module, - STATE(4574), 1, - sym_nested_identifier, + ACTIONS(4629), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4631), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141258] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141519] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, + ACTIONS(4633), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4635), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141273] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6766), 2, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4623), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [141536] = 7, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7319), 1, - sym_identifier, - STATE(781), 1, - sym_string, - STATE(900), 1, - sym__module, - STATE(4574), 1, - sym_nested_identifier, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141288] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141559] = 7, - ACTIONS(2478), 1, + ACTIONS(7375), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141305] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, - sym_identifier, - STATE(3848), 1, + ACTIONS(7594), 1, + anon_sym_QMARK, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5451), 1, + STATE(5413), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141582] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7598), 1, - anon_sym_COMMA, - ACTIONS(7600), 1, - anon_sym_GT, - STATE(5211), 1, - aux_sym_implements_clause_repeat1, + [141328] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2616), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141605] = 7, - ACTIONS(2478), 1, + ACTIONS(7242), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141345] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(7602), 1, + ACTIONS(7596), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5524), 1, + STATE(3905), 1, sym__call_signature, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141628] = 7, - ACTIONS(2478), 1, + [141368] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7604), 1, + ACTIONS(7598), 1, sym_identifier, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5426), 1, + STATE(5423), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141651] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7606), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5367), 1, - sym__call_signature, + [141391] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141674] = 7, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7496), 1, - anon_sym_class, - ACTIONS(7498), 1, - anon_sym_abstract, - ACTIONS(7608), 1, - anon_sym_export, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + ACTIONS(7375), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141408] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141697] = 7, - ACTIONS(2478), 1, + ACTIONS(4665), 2, + anon_sym_AMP, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(4667), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141423] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4669), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4671), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141438] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7610), 1, + ACTIONS(7600), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3683), 1, - sym__call_signature, STATE(5435), 1, + sym__call_signature, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141720] = 7, - ACTIONS(2478), 1, + [141461] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7612), 1, + ACTIONS(7602), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3764), 1, + STATE(5443), 1, sym__call_signature, - STATE(5435), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141743] = 7, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(3521), 1, + [141484] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2645), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7242), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141501] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(7466), 1, - anon_sym_DOT, - ACTIONS(7614), 1, - anon_sym_RPAREN, - STATE(1270), 1, - sym_arguments, - STATE(5556), 1, - sym_type_arguments, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7604), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5448), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141766] = 4, - STATE(3815), 1, + [141524] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7552), 1, + anon_sym_AMP2, + ACTIONS(7606), 1, + sym_html_character_reference, + ACTIONS(7608), 1, + anon_sym_DQUOTE, + ACTIONS(7610), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(3824), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [141547] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7558), 1, + anon_sym_AMP2, + ACTIONS(7608), 1, + anon_sym_SQUOTE, + ACTIONS(7612), 1, + sym_html_character_reference, + ACTIONS(7614), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(3825), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [141570] = 4, + STATE(3774), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3714), 2, + ACTIONS(7618), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(7616), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141783] = 7, - ACTIONS(2478), 1, + [141587] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7618), 1, - sym_identifier, - STATE(3848), 1, + ACTIONS(7620), 1, + anon_sym_QMARK, + STATE(3274), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5502), 1, + STATE(5025), 1, sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141806] = 3, - ACTIONS(7482), 1, + [141610] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7624), 2, anon_sym_AMP, + anon_sym_LT, + ACTIONS(7622), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4182), 5, + ACTIONS(2338), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AMP3, anon_sym_PIPE, anon_sym_extends, - [141821] = 5, - ACTIONS(7482), 1, + [141638] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [141651] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4685), 2, anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, + anon_sym_LT, + ACTIONS(4687), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141666] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4194), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141840] = 3, - ACTIONS(7620), 1, - anon_sym_extends, + ACTIONS(4689), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4691), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141681] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7628), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7626), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4202), 5, + ACTIONS(2342), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_AMP3, anon_sym_PIPE, - [141855] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + anon_sym_extends, + [141709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3714), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7616), 3, + ACTIONS(7405), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141872] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + anon_sym_COLON, + [141722] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2326), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, anon_sym_PIPE, - ACTIONS(6621), 1, anon_sym_extends, - ACTIONS(7622), 1, - anon_sym_COMMA, - ACTIONS(7624), 1, - anon_sym_GT, - STATE(4830), 1, - aux_sym_implements_clause_repeat1, + [141735] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7630), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5298), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141895] = 4, - STATE(3889), 1, - aux_sym_object_type_repeat1, + [141758] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7628), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7626), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141912] = 7, - ACTIONS(2478), 1, + ACTIONS(7634), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7632), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141773] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2330), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [141786] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7630), 1, + ACTIONS(7636), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3918), 1, + STATE(5241), 1, sym__call_signature, - STATE(5339), 1, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141809] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7638), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5317), 1, + sym__call_signature, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141935] = 2, + [141832] = 6, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(7642), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 6, - anon_sym_EQ, + ACTIONS(7640), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [141853] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5882), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3786), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [141948] = 4, - ACTIONS(7414), 1, + [141868] = 3, + ACTIONS(4106), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4108), 5, anon_sym_LBRACE, - STATE(2660), 1, - sym_statement_block, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [141883] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7542), 1, + anon_sym_abstract, + ACTIONS(7644), 1, + anon_sym_export, + ACTIONS(7646), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141965] = 4, - ACTIONS(7414), 1, + [141906] = 5, + ACTIONS(7423), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7648), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7160), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141925] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2662), 1, + STATE(2620), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 4, + ACTIONS(7383), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141982] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7632), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5275), 1, - sym__call_signature, + [141942] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(7310), 1, + sym_identifier, + STATE(3494), 1, + sym_nested_identifier, + STATE(3565), 1, + sym_string, + STATE(4385), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142005] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7634), 1, + [141965] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(7310), 1, sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5502), 1, - sym__call_signature, + STATE(3494), 1, + sym_nested_identifier, + STATE(3565), 1, + sym_string, + STATE(4195), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142028] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [141988] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7639), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7636), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142045] = 4, - STATE(3896), 1, - aux_sym_object_type_repeat1, + ACTIONS(7652), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7650), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [142003] = 4, + ACTIONS(7654), 1, + sym_identifier, + ACTIONS(7656), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3734), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7641), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142062] = 7, - ACTIONS(2478), 1, + ACTIONS(7658), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [142020] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7643), 1, + ACTIONS(7660), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5310), 1, + STATE(4449), 1, sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142085] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7645), 1, - anon_sym_QMARK, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5247), 1, - sym__call_signature, + [142043] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142108] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + ACTIONS(7664), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7662), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [142058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3734), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7641), 3, + ACTIONS(7409), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [142125] = 7, - ACTIONS(2478), 1, + anon_sym_COLON, + [142071] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7647), 1, - anon_sym_QMARK, - STATE(3267), 1, + ACTIONS(7666), 1, + sym_identifier, + STATE(3954), 1, sym_formal_parameters, - STATE(3575), 1, + STATE(5317), 1, sym__call_signature, - STATE(5435), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142148] = 5, - ACTIONS(7582), 1, + [142094] = 5, + ACTIONS(7423), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7670), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7668), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3899), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142113] = 5, + ACTIONS(7672), 1, anon_sym_default, - ACTIONS(7586), 1, - anon_sym_case, - ACTIONS(7649), 1, + ACTIONS(7675), 1, anon_sym_RBRACE, + ACTIONS(7677), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3854), 3, + STATE(3894), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [142167] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - ACTIONS(7651), 1, + [142132] = 5, + ACTIONS(7423), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7680), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7668), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3899), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142151] = 7, + ACTIONS(7204), 1, + anon_sym_GT, + ACTIONS(7682), 1, sym_identifier, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5451), 1, - sym__call_signature, + ACTIONS(7684), 1, + sym_jsx_identifier, + ACTIONS(7686), 1, + anon_sym_SLASH_GT, + STATE(3175), 1, + sym_nested_identifier, + STATE(3296), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142174] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7357), 1, + sym_identifier, + STATE(752), 1, + sym_nested_identifier, + STATE(759), 1, + sym_string, + STATE(850), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142190] = 7, - ACTIONS(2478), 1, + [142197] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7653), 1, + ACTIONS(7688), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(4350), 1, - sym__call_signature, - STATE(5435), 1, + STATE(5509), 1, sym_type_parameters, + STATE(5576), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142213] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2334), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [142226] = 5, - ACTIONS(7470), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7655), 1, + [142220] = 5, + ACTIONS(7693), 1, anon_sym_BQUOTE, + ACTIONS(7695), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7171), 2, + ACTIONS(7690), 2, sym__template_chars, sym_escape_sequence, - STATE(3819), 2, + STATE(3899), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [142245] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, + [142239] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7698), 1, + sym_html_character_reference, + ACTIONS(7701), 1, + anon_sym_DQUOTE, + ACTIONS(7703), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(7706), 1, + anon_sym_AMP2, + STATE(3900), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [142262] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7709), 1, + sym_html_character_reference, + ACTIONS(7712), 1, + anon_sym_SQUOTE, + ACTIONS(7714), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(7717), 1, + anon_sym_AMP2, + STATE(3901), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [142285] = 7, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(7720), 1, + anon_sym_RPAREN, + ACTIONS(7722), 1, + anon_sym_DOT, + STATE(1273), 1, + sym_arguments, + STATE(5286), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3702), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7657), 3, + [142308] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7724), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5454), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142331] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2617), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7268), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142262] = 4, - ACTIONS(7414), 1, + [142348] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2613), 1, + STATE(2618), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 4, + ACTIONS(7280), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142279] = 5, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, + [142365] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(7486), 1, + ACTIONS(6603), 1, anon_sym_extends, + ACTIONS(7726), 1, + anon_sym_COMMA, + ACTIONS(7728), 1, + anon_sym_GT, + STATE(4990), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [142298] = 4, - ACTIONS(7414), 1, + [142388] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(7730), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3951), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142411] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(2657), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 4, + ACTIONS(7268), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142315] = 4, - ACTIONS(7414), 1, + [142428] = 7, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(7722), 1, + anon_sym_DOT, + ACTIONS(7732), 1, + anon_sym_RPAREN, + STATE(1273), 1, + sym_arguments, + STATE(5286), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142451] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2620), 1, + STATE(2602), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 4, + ACTIONS(7256), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142332] = 2, + [142468] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7285), 6, + ACTIONS(7280), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [142345] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - ACTIONS(7659), 1, - anon_sym_QMARK, - STATE(3396), 1, - sym_formal_parameters, - STATE(3921), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [142485] = 3, + ACTIONS(6556), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142368] = 4, - STATE(3923), 1, - aux_sym_object_type_repeat1, + ACTIONS(6558), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [142500] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7335), 1, + sym_identifier, + STATE(759), 1, + sym_string, + STATE(850), 1, + sym__module, + STATE(4482), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7663), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7661), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142385] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2631), 1, - sym_statement_block, + [142523] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7335), 1, + sym_identifier, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, + STATE(4482), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142402] = 7, - ACTIONS(2478), 1, + [142546] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - ACTIONS(7665), 1, - sym_identifier, - STATE(3848), 1, + ACTIONS(7734), 1, + anon_sym_QMARK, + STATE(3389), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5502), 1, + STATE(3930), 1, sym__call_signature, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142425] = 4, - STATE(3844), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7669), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7667), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142442] = 7, - ACTIONS(2478), 1, + [142569] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7671), 1, + ACTIONS(7736), 1, sym_identifier, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5451), 1, + STATE(5423), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142465] = 7, - ACTIONS(2478), 1, + [142592] = 7, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7673), 1, + ACTIONS(7738), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(3662), 1, + STATE(3556), 1, sym__call_signature, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142488] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, + [142615] = 4, + STATE(3927), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7675), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - [142507] = 7, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(7677), 1, + ACTIONS(7742), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7740), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7679), 1, - anon_sym_GT, - STATE(4713), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [142632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142530] = 7, - ACTIONS(2478), 1, + ACTIONS(7746), 2, + anon_sym_AMP, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(7744), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [142647] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, anon_sym_LPAREN, - ACTIONS(7681), 1, - anon_sym_QMARK, - STATE(3267), 1, + ACTIONS(7748), 1, + sym_identifier, + STATE(3954), 1, sym_formal_parameters, - STATE(4262), 1, + STATE(5317), 1, sym__call_signature, - STATE(5435), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142553] = 4, - ACTIONS(7414), 1, + [142670] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(2609), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7396), 4, + ACTIONS(7266), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142570] = 4, - ACTIONS(7414), 1, + [142687] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2634), 1, + STATE(2619), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 4, + ACTIONS(7383), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142587] = 7, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - ACTIONS(7683), 1, - anon_sym_QMARK, - STATE(3267), 1, - sym_formal_parameters, - STATE(5215), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142610] = 4, - ACTIONS(7414), 1, + [142704] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2621), 1, + STATE(2613), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 4, + ACTIONS(7256), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142627] = 7, - ACTIONS(2478), 1, + [142721] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7685), 1, + ACTIONS(7750), 1, anon_sym_QMARK, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5315), 1, + STATE(3562), 1, sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142650] = 6, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(7237), 1, - anon_sym_EQ, - STATE(4477), 1, - sym_type_annotation, - STATE(5227), 1, - sym__initializer, + [142744] = 4, + STATE(3937), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3726), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7752), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142761] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7687), 2, + ACTIONS(7754), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, - [142671] = 4, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_statement_block, + anon_sym_GT, + [142780] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 4, + ACTIONS(3726), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7752), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142688] = 7, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7498), 1, - anon_sym_abstract, - ACTIONS(7689), 1, - anon_sym_export, - ACTIONS(7691), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [142797] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142711] = 4, - STATE(3770), 1, - aux_sym_object_type_repeat1, + ACTIONS(4318), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [142816] = 3, + ACTIONS(7586), 1, + anon_sym_AMP3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3690), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7693), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142728] = 4, - ACTIONS(7414), 1, + ACTIONS(4346), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [142831] = 4, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2635), 1, + STATE(2610), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 4, + ACTIONS(7282), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142745] = 3, - ACTIONS(7482), 1, + [142848] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7758), 2, anon_sym_AMP, + anon_sym_LT, + ACTIONS(7756), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [142863] = 5, + ACTIONS(7431), 1, + anon_sym_default, + ACTIONS(7435), 1, + anon_sym_case, + ACTIONS(7760), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3772), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142882] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 5, + ACTIONS(4138), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + [142901] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, anon_sym_PIPE, + ACTIONS(7590), 1, anon_sym_extends, - [142760] = 4, - STATE(3885), 1, - aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3690), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7693), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142777] = 7, - ACTIONS(2478), 1, + ACTIONS(4142), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [142920] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(7762), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3851), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142943] = 7, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7695), 1, + ACTIONS(7764), 1, anon_sym_QMARK, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4890), 1, + STATE(3715), 1, sym__call_signature, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142800] = 4, - STATE(3771), 1, + [142966] = 4, + STATE(3807), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7699), 2, + ACTIONS(3728), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7697), 3, + ACTIONS(7766), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142817] = 7, - ACTIONS(2478), 1, + [142983] = 7, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - ACTIONS(7701), 1, + ACTIONS(7768), 1, anon_sym_QMARK, - STATE(3396), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(3900), 1, + STATE(5133), 1, sym__call_signature, - STATE(5339), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142840] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4754), 1, - sym__initializer, + [143006] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2631), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7282), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142856] = 3, - ACTIONS(7707), 1, - anon_sym_LT, + [143023] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7705), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [142870] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4702), 1, - sym__initializer, + ACTIONS(4408), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [143042] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142886] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4703), 1, - sym__initializer, + ACTIONS(4260), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [143061] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7770), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3561), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143084] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2632), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7266), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142902] = 6, - ACTIONS(2478), 1, + [143101] = 7, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3267), 1, + ACTIONS(7772), 1, + anon_sym_QMARK, + STATE(3274), 1, sym_formal_parameters, - STATE(4050), 1, + STATE(3712), 1, sym__call_signature, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142922] = 2, + [143124] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7774), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3759), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7361), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142934] = 2, + [143147] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7711), 5, - sym__automatic_semicolon, + ACTIONS(4372), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [143166] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7776), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [142946] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4725), 1, - sym__initializer, + ACTIONS(7778), 1, + anon_sym_GT, + STATE(5162), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142962] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5163), 1, - sym__initializer, + [143189] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142978] = 3, - ACTIONS(7719), 1, + ACTIONS(7746), 2, + anon_sym_AMP, anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7717), 4, + ACTIONS(7744), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [142992] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4739), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143008] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4740), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143024] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4741), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143040] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4742), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143056] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4744), 1, - sym__initializer, + [143204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143072] = 3, - ACTIONS(7723), 1, + ACTIONS(7782), 2, + anon_sym_AMP, anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 4, + ACTIONS(7780), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [143086] = 2, + [143219] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2926), 5, + ACTIONS(7303), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143098] = 2, + [143236] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2621), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2930), 5, + ACTIONS(7385), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143110] = 2, + [143253] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7540), 1, + anon_sym_class, + ACTIONS(7542), 1, + anon_sym_abstract, + ACTIONS(7784), 1, + anon_sym_export, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2934), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143122] = 2, + [143276] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7725), 5, - anon_sym_EQ, + ACTIONS(7788), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7786), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [143134] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4656), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7715), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143150] = 4, - ACTIONS(7574), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [143291] = 4, + ACTIONS(7544), 1, anon_sym_COLON, - ACTIONS(7727), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5489), 3, + ACTIONS(6803), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5297), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [143166] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4747), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143182] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4748), 1, - sym__initializer, + [143308] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143198] = 3, - ACTIONS(7732), 1, + ACTIONS(7746), 2, + anon_sym_AMP, anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7730), 4, + ACTIONS(7744), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [143212] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4751), 1, - sym__initializer, + [143323] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7371), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143228] = 3, - ACTIONS(7732), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7730), 4, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [143242] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7361), 5, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143254] = 2, + anon_sym_COLON, + [143336] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7790), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5423), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7734), 5, - sym__automatic_semicolon, + [143359] = 7, + ACTIONS(7341), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143266] = 2, + ACTIONS(7345), 1, + anon_sym_LT, + ACTIONS(7792), 1, + anon_sym_LBRACE, + ACTIONS(7794), 1, + anon_sym_LBRACE_PIPE, + STATE(4607), 1, + aux_sym_extends_type_clause_repeat1, + STATE(4635), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143278] = 2, + [143382] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7796), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5317), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7736), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143290] = 2, + [143405] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7798), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4871), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [143302] = 2, + [143428] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7800), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4154), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7550), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [143314] = 2, + [143451] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7558), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [143326] = 4, - ACTIONS(6444), 1, + ACTIONS(2334), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [143464] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4766), 1, + STATE(4740), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143342] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2702), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [143480] = 6, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(7804), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143354] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2742), 5, + ACTIONS(7806), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143366] = 2, + ACTIONS(7808), 1, + sym__function_signature_automatic_semicolon, + STATE(762), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143378] = 2, + [143500] = 4, + ACTIONS(1797), 1, + anon_sym_DOT, + ACTIONS(4302), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2876), 5, - sym__automatic_semicolon, + ACTIONS(4304), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143390] = 2, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [143516] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2888), 5, + ACTIONS(1689), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143402] = 2, + [143528] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1751), 5, + ACTIONS(2728), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143414] = 2, + [143540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, + ACTIONS(1693), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143426] = 2, + [143552] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, + ACTIONS(7810), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143438] = 2, + [143564] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, + ACTIONS(7812), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143450] = 2, + [143576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2742), 5, + ACTIONS(2716), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143462] = 5, - ACTIONS(7738), 1, - sym_identifier, - ACTIONS(7740), 1, - anon_sym_LPAREN, - STATE(2606), 1, - sym_decorator_member_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(2752), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [143480] = 4, - ACTIONS(6444), 1, + [143588] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4662), 1, + STATE(5197), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143496] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4776), 1, - sym__initializer, + [143604] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7816), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [143512] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4779), 1, - sym__initializer, + [143622] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143528] = 4, - ACTIONS(6444), 1, + ACTIONS(5267), 5, anon_sym_EQ, - STATE(4781), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143544] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7744), 5, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143556] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4960), 5, - anon_sym_EQ, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, anon_sym_COLON, - [143568] = 6, - ACTIONS(7237), 1, - anon_sym_EQ, - ACTIONS(7746), 1, - anon_sym_COMMA, - ACTIONS(7748), 1, - anon_sym_RBRACE, - STATE(4873), 1, - aux_sym_enum_body_repeat1, - STATE(5562), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143588] = 2, + anon_sym_QMARK, + [143634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 5, + ACTIONS(2716), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143600] = 2, + [143646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2600), 5, + ACTIONS(2716), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143612] = 2, + [143658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2664), 5, + ACTIONS(2716), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143624] = 4, - ACTIONS(6444), 1, + [143670] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4670), 1, + STATE(4863), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143640] = 4, - ACTIONS(6444), 1, + [143686] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4794), 1, + STATE(4864), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143656] = 4, - ACTIONS(6444), 1, + [143702] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4694), 1, + STATE(4869), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143672] = 4, - ACTIONS(6444), 1, + [143718] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4812), 1, + STATE(4870), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143688] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4824), 1, - sym__initializer, + [143734] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4240), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143704] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4701), 1, - sym__initializer, + [143754] = 3, + ACTIONS(7822), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143720] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4829), 1, - sym__initializer, + ACTIONS(7824), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [143768] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, - sym__automatic_semicolon, + ACTIONS(7826), 2, anon_sym_COMMA, - anon_sym_SEMI, - [143736] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4831), 1, - sym__initializer, + anon_sym_RBRACK, + [143786] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5497), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143752] = 4, - ACTIONS(3530), 1, - anon_sym_COLON, - STATE(5414), 1, - sym_type_annotation, + [143806] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [143768] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7750), 1, - anon_sym_EQ_GT, + ACTIONS(7828), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [143824] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7830), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143784] = 6, - ACTIONS(7753), 1, - sym_identifier, - ACTIONS(7755), 1, - anon_sym_GT, - ACTIONS(7757), 1, - sym_jsx_identifier, - STATE(5258), 1, - sym_nested_identifier, - STATE(5602), 1, - sym_jsx_namespace_name, + STATE(5848), 2, + sym__module_export_name, + sym_string, + [143842] = 5, + ACTIONS(7345), 1, + anon_sym_LT, + ACTIONS(7832), 1, + anon_sym_LBRACE, + STATE(4635), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143804] = 4, - ACTIONS(6444), 1, + ACTIONS(7834), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [143860] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4836), 1, + STATE(4872), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143820] = 4, - ACTIONS(6444), 1, + [143876] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4843), 1, + STATE(4873), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143836] = 6, - ACTIONS(3758), 1, - anon_sym_COLON, - ACTIONS(4429), 1, + [143892] = 4, + ACTIONS(6346), 1, + anon_sym_DOT, + ACTIONS(7836), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [143908] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(7759), 1, - anon_sym_RBRACE, - STATE(5131), 1, - aux_sym_object_pattern_repeat1, + STATE(4693), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143856] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7761), 1, - anon_sym_EQ_GT, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143924] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7540), 1, + anon_sym_class, + ACTIONS(7542), 1, + anon_sym_abstract, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [143872] = 3, - ACTIONS(7766), 1, + [143944] = 6, + ACTIONS(2470), 1, anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4281), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7764), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [143886] = 5, - ACTIONS(7768), 1, - anon_sym_BQUOTE, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7772), 1, - sym__template_chars, + [143964] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4026), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143904] = 2, + ACTIONS(7838), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2540), 5, + ACTIONS(7383), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143916] = 2, + [143988] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5228), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144008] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2540), 5, + ACTIONS(7840), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143928] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(7774), 1, - anon_sym_SEMI, - ACTIONS(7776), 1, - sym__automatic_semicolon, - ACTIONS(7778), 1, - sym__function_signature_automatic_semicolon, - STATE(2089), 1, - sym_statement_block, + [144020] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(4040), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143948] = 2, + [144040] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2540), 5, + ACTIONS(7385), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143960] = 4, - ACTIONS(6444), 1, + [144052] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4852), 1, + STATE(4927), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7842), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143976] = 5, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7780), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5226), 2, - sym__module_export_name, - sym_string, - [143994] = 6, - ACTIONS(2478), 1, + [144068] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(4065), 1, + STATE(5316), 1, sym__call_signature, - STATE(5339), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144014] = 6, - ACTIONS(2478), 1, - anon_sym_LT, + [144088] = 4, ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5290), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144034] = 6, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1575), 1, - anon_sym_LBRACE, - ACTIONS(7373), 1, - anon_sym_extends, - STATE(4014), 1, - sym_object_type, - STATE(4821), 1, - sym_extends_type_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144054] = 6, - ACTIONS(7205), 1, - anon_sym_LBRACE, - ACTIONS(7774), 1, - anon_sym_SEMI, - ACTIONS(7776), 1, - sym__automatic_semicolon, - ACTIONS(7778), 1, - sym__function_signature_automatic_semicolon, - STATE(766), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144074] = 4, - ACTIONS(6444), 1, anon_sym_EQ, - STATE(4853), 1, + STATE(4661), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144090] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4854), 1, - sym__initializer, + [144104] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144106] = 2, + ACTIONS(4935), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [144116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2552), 5, + ACTIONS(7383), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144118] = 2, + [144128] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2556), 5, + ACTIONS(2750), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144130] = 2, + [144140] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4298), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2564), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144142] = 2, + [144160] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7542), 1, + anon_sym_abstract, + ACTIONS(7844), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2572), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144154] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4856), 1, - sym__initializer, + [144180] = 5, + ACTIONS(7846), 1, + sym_identifier, + ACTIONS(7848), 1, + anon_sym_LPAREN, + STATE(1217), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144170] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, + STATE(1293), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [144198] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5337), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7782), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144188] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4857), 1, - sym__initializer, + [144218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(2754), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144204] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7786), 1, - anon_sym_EQ_GT, + anon_sym_PIPE_RBRACE, + [144230] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7542), 1, + anon_sym_abstract, + ACTIONS(7646), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144220] = 6, - ACTIONS(2478), 1, + [144250] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5342), 1, + STATE(5353), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144240] = 6, - ACTIONS(7205), 1, - anon_sym_LBRACE, - ACTIONS(7789), 1, - anon_sym_SEMI, - ACTIONS(7791), 1, - sym__automatic_semicolon, - ACTIONS(7793), 1, - sym__function_signature_automatic_semicolon, - STATE(4044), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144260] = 3, - ACTIONS(7766), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7764), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [144274] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, + [144270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7795), 2, + ACTIONS(2758), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144292] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [144282] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4863), 1, + STATE(4930), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7842), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144308] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4866), 1, - sym__initializer, + [144298] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(7850), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144324] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7797), 1, - anon_sym_BQUOTE, - ACTIONS(7799), 1, - sym__template_chars, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144314] = 5, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(7853), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [144342] = 3, - ACTIONS(7801), 1, - anon_sym_EQ, + STATE(5002), 2, + sym__module_export_name, + sym_string, + [144332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3577), 4, + ACTIONS(7855), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144344] = 4, + ACTIONS(3530), 1, anon_sym_COLON, - anon_sym_RBRACK, - [144356] = 2, + STATE(5530), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2580), 5, - sym__automatic_semicolon, + ACTIONS(3560), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144368] = 4, - ACTIONS(6444), 1, + anon_sym_RBRACK, + [144360] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4871), 1, + STATE(4931), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7857), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144384] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(7803), 1, - anon_sym_SEMI, - ACTIONS(7805), 1, - sym__automatic_semicolon, - ACTIONS(7807), 1, - sym__function_signature_automatic_semicolon, - STATE(2301), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144404] = 2, + [144376] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4322), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2584), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144416] = 2, + [144396] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4932), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2584), 5, + ACTIONS(7857), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144428] = 2, + [144412] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5363), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2588), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144440] = 2, + [144432] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5369), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144452] = 2, + [144452] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5375), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1741), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144464] = 2, + [144472] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4885), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1689), 5, + ACTIONS(7859), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144476] = 6, - ACTIONS(7237), 1, + [144488] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - ACTIONS(7809), 1, - anon_sym_COMMA, - ACTIONS(7811), 1, - anon_sym_RBRACE, - STATE(4885), 1, - aux_sym_enum_body_repeat1, - STATE(5562), 1, + STATE(5059), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144496] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2604), 5, + ACTIONS(7861), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144508] = 4, - ACTIONS(6444), 1, + [144504] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4872), 1, + STATE(4892), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7859), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144524] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7813), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144540] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7816), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144556] = 4, - ACTIONS(6444), 1, + [144520] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4875), 1, + STATE(4893), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7859), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144572] = 6, - ACTIONS(7205), 1, - anon_sym_LBRACE, - ACTIONS(7819), 1, - anon_sym_SEMI, - ACTIONS(7821), 1, - sym__automatic_semicolon, - ACTIONS(7823), 1, - sym__function_signature_automatic_semicolon, - STATE(4059), 1, - sym_statement_block, + [144536] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4895), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144592] = 3, - ACTIONS(5557), 1, + ACTIONS(7859), 3, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1761), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144606] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, + [144552] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(7863), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7825), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144624] = 2, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144568] = 5, + ACTIONS(7866), 1, + anon_sym_BQUOTE, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7870), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2620), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144636] = 4, - ACTIONS(6444), 1, + STATE(4290), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [144586] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5122), 1, + STATE(4805), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7872), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144652] = 6, - ACTIONS(2478), 1, + [144602] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3682), 1, + STATE(5391), 1, sym__call_signature, - STATE(5435), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144672] = 5, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7827), 1, - sym_identifier, + [144622] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5261), 2, - sym__module_export_name, - sym_string, - [144690] = 2, + ACTIONS(5271), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [144634] = 6, + ACTIONS(7874), 1, + sym_identifier, + ACTIONS(7876), 1, + anon_sym_GT, + ACTIONS(7878), 1, + sym_jsx_identifier, + STATE(5533), 1, + sym_nested_identifier, + STATE(5926), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144702] = 6, - ACTIONS(2478), 1, + [144654] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(4259), 1, + STATE(3835), 1, sym__call_signature, - STATE(5435), 1, + STATE(5452), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144722] = 2, + [144674] = 6, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_SEMI, + ACTIONS(7882), 1, + sym__automatic_semicolon, + ACTIONS(7884), 1, + sym__function_signature_automatic_semicolon, + STATE(2104), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144734] = 2, + [144694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7392), 5, + ACTIONS(2590), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144746] = 2, + [144706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7829), 5, + ACTIONS(7407), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144758] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5121), 1, - sym__initializer, + [144718] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(2594), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [144774] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7831), 1, - anon_sym_EQ_GT, + anon_sym_PIPE_RBRACE, + [144730] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5412), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [144790] = 2, + [144750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7394), 5, + ACTIONS(2598), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144802] = 2, + [144762] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5414), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7834), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144814] = 3, - ACTIONS(5173), 1, - sym__automatic_semicolon, + [144782] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(4047), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1813), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144828] = 3, - ACTIONS(5175), 1, - sym__automatic_semicolon, + [144802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 4, + ACTIONS(7415), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144842] = 2, + [144814] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7836), 5, + ACTIONS(7373), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144854] = 6, - ACTIONS(2478), 1, + [144826] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3727), 1, + STATE(5248), 1, sym__call_signature, - STATE(5435), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144874] = 3, - ACTIONS(7838), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7840), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [144888] = 6, - ACTIONS(2478), 1, + [144846] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5263), 1, + STATE(3904), 1, sym__call_signature, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144908] = 6, - ACTIONS(7205), 1, - anon_sym_LBRACE, - ACTIONS(7803), 1, - anon_sym_SEMI, - ACTIONS(7805), 1, - sym__automatic_semicolon, - ACTIONS(7807), 1, - sym__function_signature_automatic_semicolon, - STATE(771), 1, - sym_statement_block, + [144866] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7886), 1, + anon_sym_BQUOTE, + ACTIONS(7888), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144928] = 4, - ACTIONS(6444), 1, + STATE(4098), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [144884] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4605), 1, + STATE(4675), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144944] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7842), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144962] = 4, - ACTIONS(6444), 1, + [144900] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5123), 1, + STATE(4695), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144978] = 3, - ACTIONS(5185), 1, - sym__automatic_semicolon, + [144916] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1713), 4, + ACTIONS(5271), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144992] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(3763), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145012] = 4, - ACTIONS(6444), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [144928] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4811), 1, + STATE(5010), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7890), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145028] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5186), 1, - sym__initializer, + [144944] = 4, + ACTIONS(6376), 1, + anon_sym_LBRACK, + ACTIONS(7892), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145044] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, + ACTIONS(4190), 3, + anon_sym_AMP3, anon_sym_PIPE, + anon_sym_extends, + [144960] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4809), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7844), 2, + ACTIONS(7820), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [145062] = 6, - ACTIONS(2478), 1, + [144976] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3660), 1, + STATE(5433), 1, sym__call_signature, - STATE(5435), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145082] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(3731), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, + [144996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145102] = 6, - ACTIONS(2478), 1, + ACTIONS(5271), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145008] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(3529), 1, + STATE(3964), 1, sym__call_signature, - STATE(5435), 1, + STATE(5452), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145122] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5233), 1, - sym__call_signature, + [145028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145142] = 6, - ACTIONS(2478), 1, + ACTIONS(1771), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145040] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5363), 1, + STATE(5501), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145162] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2678), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + [145060] = 6, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(7894), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145174] = 2, + ACTIONS(7896), 1, + sym__automatic_semicolon, + ACTIONS(7898), 1, + sym__function_signature_automatic_semicolon, + STATE(764), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2678), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145186] = 2, + [145080] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2678), 5, - sym__automatic_semicolon, + ACTIONS(4991), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145198] = 4, - ACTIONS(6444), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145092] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5187), 1, + STATE(4700), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145214] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2682), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145226] = 6, - ACTIONS(2478), 1, + [145108] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(3912), 1, + STATE(5421), 1, sym__call_signature, - STATE(5339), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145246] = 2, + [145128] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4702), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2686), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145258] = 2, + [145144] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4703), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2690), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145270] = 2, + [145160] = 4, + STATE(5428), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7902), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [145176] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2694), 5, + ACTIONS(2762), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145282] = 6, - ACTIONS(2478), 1, + [145188] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5273), 1, + STATE(5442), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145302] = 2, + [145208] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4810), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2698), 5, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145314] = 2, + [145224] = 4, + STATE(5437), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2514), 5, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7904), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145326] = 2, + [145240] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7846), 5, + ACTIONS(1771), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145338] = 2, + [145252] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4704), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7848), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145350] = 4, - ACTIONS(6444), 1, + [145268] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4892), 1, + STATE(4664), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7850), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145366] = 2, + [145284] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5447), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2710), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145378] = 2, + [145304] = 5, + ACTIONS(7906), 1, + anon_sym_BQUOTE, + ACTIONS(7908), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7911), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2710), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145390] = 2, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145322] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2722), 5, + ACTIONS(7914), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145402] = 2, + [145340] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4894), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1795), 5, + ACTIONS(7842), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145414] = 2, + [145356] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5014), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 5, + ACTIONS(7916), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145426] = 2, + [145372] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5450), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145392] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4706), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1859), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145438] = 2, + [145408] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2938), 5, + ACTIONS(7918), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145450] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4894), 1, - sym__initializer, + [145420] = 3, + ACTIONS(7920), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7852), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145466] = 6, - ACTIONS(2478), 1, + ACTIONS(7922), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [145434] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5282), 1, + STATE(5020), 1, sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145454] = 3, + ACTIONS(7924), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7926), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [145468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145486] = 4, - ACTIONS(6444), 1, + ACTIONS(5565), 5, anon_sym_EQ, - STATE(5189), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7928), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145492] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7930), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145502] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4896), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [145504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7932), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145518] = 6, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [145516] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5399), 1, + STATE(5570), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145538] = 6, - ACTIONS(7856), 1, - sym_identifier, - ACTIONS(7858), 1, - anon_sym_GT, - ACTIONS(7860), 1, - sym_jsx_identifier, - STATE(5534), 1, - sym_nested_identifier, - STATE(5887), 1, - sym_jsx_namespace_name, + [145536] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(7934), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145558] = 4, - ACTIONS(6444), 1, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [145552] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4897), 1, + STATE(5029), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145574] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7862), 1, - anon_sym_BQUOTE, - ACTIONS(7864), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [145592] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(7789), 1, - anon_sym_SEMI, - ACTIONS(7791), 1, - sym__automatic_semicolon, - ACTIONS(7793), 1, - sym__function_signature_automatic_semicolon, - STATE(2322), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145612] = 4, - ACTIONS(6444), 1, + [145568] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4898), 1, + STATE(5030), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145628] = 4, - ACTIONS(6444), 1, + [145584] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4899), 1, + STATE(5031), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145644] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4903), 1, - sym__initializer, + [145600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(2826), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145660] = 6, - ACTIONS(2478), 1, - anon_sym_LT, + anon_sym_PIPE_RBRACE, + [145612] = 4, ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5436), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145680] = 4, - ACTIONS(6444), 1, anon_sym_EQ, - STATE(4904), 1, + STATE(5038), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145696] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7799), 1, - sym__template_chars, + [145628] = 5, ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7941), 1, anon_sym_BQUOTE, + ACTIONS(7943), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 2, + STATE(4077), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145714] = 6, - ACTIONS(4116), 1, - anon_sym_LBRACE, - ACTIONS(7819), 1, - anon_sym_SEMI, - ACTIONS(7821), 1, - sym__automatic_semicolon, - ACTIONS(7823), 1, - sym__function_signature_automatic_semicolon, - STATE(2060), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145734] = 4, - ACTIONS(6444), 1, + [145646] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4905), 1, + STATE(4811), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145750] = 2, + [145662] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5044), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2772), 5, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145762] = 2, + [145678] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5046), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2776), 5, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145774] = 2, + [145694] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5049), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2780), 5, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145786] = 2, + [145710] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4665), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2784), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145798] = 2, + [145726] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5390), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2788), 5, + ACTIONS(2826), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145810] = 2, + [145758] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5054), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2792), 5, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145822] = 2, + [145774] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2796), 5, + ACTIONS(2826), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145834] = 4, - ACTIONS(6444), 1, + [145786] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4906), 1, + STATE(4813), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145850] = 4, - ACTIONS(7872), 1, - anon_sym_in, - ACTIONS(7874), 1, - anon_sym_of, + [145802] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4613), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7870), 3, + ACTIONS(7802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145866] = 4, - ACTIONS(7876), 1, - anon_sym_in, - ACTIONS(7878), 1, - anon_sym_of, + [145818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7870), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145882] = 2, + ACTIONS(7945), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [145830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2812), 5, + ACTIONS(7295), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145894] = 2, + [145842] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2816), 5, + ACTIONS(7947), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145906] = 2, + [145854] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4676), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1727), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145918] = 4, - ACTIONS(6444), 1, + [145870] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4907), 1, + STATE(5065), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145934] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5439), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145954] = 6, - ACTIONS(7880), 1, + [145886] = 6, + ACTIONS(7949), 1, sym_identifier, - ACTIONS(7882), 1, + ACTIONS(7951), 1, anon_sym_GT, - ACTIONS(7884), 1, + ACTIONS(7953), 1, sym_jsx_identifier, - STATE(5222), 1, + STATE(5542), 1, sym_nested_identifier, - STATE(5685), 1, + STATE(5930), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145974] = 4, - ACTIONS(6444), 1, + [145906] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4908), 1, + STATE(4681), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145990] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5334), 5, + [145922] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146002] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7886), 1, - anon_sym_BQUOTE, - ACTIONS(7888), 1, - sym__template_chars, + STATE(4615), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4142), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146020] = 4, - ACTIONS(6444), 1, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145938] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4909), 1, + STATE(5081), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146036] = 4, - ACTIONS(6444), 1, + [145954] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5126), 1, + STATE(4713), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146052] = 4, - ACTIONS(6444), 1, + [145970] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4973), 1, + STATE(4716), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146068] = 4, - ACTIONS(6444), 1, + [145986] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4913), 1, + STATE(5085), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146084] = 4, - ACTIONS(6444), 1, + [146002] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(5086), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146100] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7799), 1, - sym__template_chars, - ACTIONS(7890), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4223), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146118] = 4, - ACTIONS(6444), 1, + [146018] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4915), 1, + STATE(5087), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146134] = 2, + [146034] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4717), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2852), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146146] = 2, + [146050] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2856), 5, + ACTIONS(2830), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146158] = 2, + [146062] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2860), 5, + ACTIONS(2834), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146170] = 2, + [146074] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2864), 5, + ACTIONS(2838), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146182] = 2, + [146086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2872), 5, + ACTIONS(2842), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146194] = 2, + [146098] = 5, + ACTIONS(7955), 1, + anon_sym_SEMI, + ACTIONS(7957), 1, + sym__automatic_semicolon, + STATE(5477), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5340), 5, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + [146116] = 4, + ACTIONS(6450), 1, anon_sym_EQ, + STATE(4616), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146206] = 4, - ACTIONS(6444), 1, + anon_sym_SEMI, + [146132] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4927), 1, + STATE(5105), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146222] = 2, + [146148] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4718), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5340), 5, - anon_sym_EQ, + ACTIONS(7814), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146234] = 2, + anon_sym_SEMI, + [146164] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4822), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5340), 5, - anon_sym_EQ, + ACTIONS(7959), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146246] = 2, + anon_sym_SEMI, + [146180] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5114), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7892), 5, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146258] = 6, - ACTIONS(2478), 1, + [146196] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(3789), 1, + STATE(4038), 1, sym__call_signature, - STATE(5339), 1, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146216] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4231), 1, + sym__call_signature, + STATE(5452), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146278] = 4, - ACTIONS(6444), 1, + [146236] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4930), 1, + STATE(5119), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146294] = 4, - ACTIONS(6444), 1, + [146252] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4931), 1, + STATE(5120), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146310] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7894), 1, - anon_sym_BQUOTE, - ACTIONS(7896), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4162), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146328] = 4, - ACTIONS(6444), 1, + [146268] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4932), 1, + STATE(5121), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146344] = 2, + [146284] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5122), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7898), 5, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146356] = 4, - ACTIONS(6444), 1, + [146300] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4936), 1, + STATE(5123), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146372] = 4, - ACTIONS(6444), 1, + [146316] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4937), 1, + STATE(4825), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146388] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7799), 1, - sym__template_chars, - ACTIONS(7900), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4223), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [146406] = 4, - ACTIONS(6444), 1, + [146332] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4939), 1, + STATE(4720), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146422] = 4, - ACTIONS(6444), 1, + [146348] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4946), 1, + STATE(4617), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146438] = 4, - ACTIONS(6444), 1, + [146364] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7961), 1, + anon_sym_class, + ACTIONS(7963), 1, + anon_sym_abstract, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146384] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4947), 1, + STATE(4618), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146454] = 4, - ACTIONS(6444), 1, + [146400] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7943), 1, + sym__template_chars, + ACTIONS(7965), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146418] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4342), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146438] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4983), 1, + STATE(5130), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7902), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146470] = 6, - ACTIONS(2478), 1, + [146454] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5338), 1, + STATE(5567), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146490] = 2, + [146474] = 3, + ACTIONS(7479), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7477), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [146488] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4619), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146504] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4726), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146520] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7904), 5, + ACTIONS(7280), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146502] = 4, - ACTIONS(6444), 1, + [146532] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4951), 1, + STATE(5140), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146518] = 5, - ACTIONS(7908), 1, + [146548] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5225), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146568] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5331), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146588] = 6, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(7894), 1, anon_sym_SEMI, - ACTIONS(7910), 1, + ACTIONS(7896), 1, sym__automatic_semicolon, - STATE(5450), 1, - sym_import_attribute, + ACTIONS(7898), 1, + sym__function_signature_automatic_semicolon, + STATE(252), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - [146536] = 4, - ACTIONS(6444), 1, + [146608] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4952), 1, + STATE(4826), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146552] = 4, - ACTIONS(6444), 1, + [146624] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4953), 1, + STATE(4727), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146568] = 4, - ACTIONS(6444), 1, + [146640] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4974), 5, anon_sym_EQ, - STATE(4995), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146652] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4728), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7912), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146584] = 3, - ACTIONS(4410), 1, - anon_sym_LT, + [146668] = 5, + ACTIONS(7967), 1, + sym_identifier, + ACTIONS(7969), 1, + anon_sym_LPAREN, + STATE(2661), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146598] = 3, - ACTIONS(4449), 1, - anon_sym_LT, + STATE(2743), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [146686] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4623), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146612] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4954), 1, - sym__initializer, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146702] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(2850), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146628] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [146714] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4955), 1, + STATE(5166), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7971), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146644] = 4, - ACTIONS(6444), 1, + [146730] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4956), 1, + STATE(5173), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146660] = 4, - ACTIONS(6444), 1, + [146746] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4959), 1, + STATE(4954), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7842), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146762] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2854), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146774] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2854), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146676] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [146786] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5084), 1, + STATE(5185), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146692] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(3847), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [146802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146712] = 4, - ACTIONS(6444), 1, + ACTIONS(2858), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146814] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5033), 1, + STATE(5191), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7914), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146728] = 4, - ACTIONS(6444), 1, + [146830] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4962), 1, + STATE(5192), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146744] = 4, - ACTIONS(6444), 1, + [146846] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4963), 1, + STATE(5194), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146760] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4002), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [146862] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146780] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4965), 1, - sym__initializer, + ACTIONS(1821), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(1831), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146796] = 3, - ACTIONS(4565), 1, - anon_sym_LT, + anon_sym_PIPE_RBRACE, + [146886] = 3, + ACTIONS(7973), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4567), 4, - sym_jsx_text, + ACTIONS(7975), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146810] = 4, - STATE(5236), 1, - sym_import_attribute, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [146900] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7916), 2, + ACTIONS(1737), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146826] = 4, - STATE(5241), 1, - sym_import_attribute, + anon_sym_PIPE_RBRACE, + [146912] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5203), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7918), 2, + ACTIONS(7937), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [146842] = 3, - ACTIONS(4569), 1, - anon_sym_LT, + [146928] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4571), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146856] = 4, - ACTIONS(6444), 1, + ACTIONS(7280), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146940] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2862), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146952] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4966), 1, + STATE(5209), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7937), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146872] = 4, - ACTIONS(6444), 1, + [146968] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4967), 1, + STATE(5210), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146888] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7496), 1, - anon_sym_class, - ACTIONS(7498), 1, - anon_sym_abstract, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [146984] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5212), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146908] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4021), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147000] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146928] = 3, - ACTIONS(4632), 1, - anon_sym_LT, + ACTIONS(2652), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147012] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4634), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146942] = 3, - ACTIONS(4636), 1, - anon_sym_LT, + ACTIONS(7266), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147024] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(7977), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4638), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [146956] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4957), 1, - sym__initializer, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [147040] = 4, + STATE(5294), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7980), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [146972] = 6, - ACTIONS(2478), 1, + [147056] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5349), 1, + STATE(4446), 1, sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146992] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5036), 1, - sym__initializer, + [147076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7920), 3, + ACTIONS(7282), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147008] = 6, - ACTIONS(7922), 1, - sym_identifier, - ACTIONS(7924), 1, - anon_sym_GT, - ACTIONS(7926), 1, - sym_jsx_identifier, - STATE(5423), 1, - sym_nested_identifier, - STATE(5635), 1, - sym_jsx_namespace_name, + anon_sym_PIPE_RBRACE, + [147088] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147028] = 6, - ACTIONS(2478), 1, + ACTIONS(7982), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147100] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(4030), 1, + STATE(4158), 1, sym__call_signature, - STATE(5339), 1, + STATE(5452), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147048] = 2, + [147120] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7412), 5, + ACTIONS(2778), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147060] = 2, + [147132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7928), 5, + ACTIONS(2782), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147072] = 6, - ACTIONS(2478), 1, - anon_sym_LT, + [147144] = 4, ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5430), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147092] = 4, - ACTIONS(6444), 1, anon_sym_EQ, - STATE(4970), 1, + STATE(4633), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147108] = 4, - ACTIONS(6444), 1, + [147160] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4971), 1, + STATE(4637), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147124] = 4, - ACTIONS(6444), 1, + [147176] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4972), 1, + STATE(4745), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147140] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4980), 1, - sym__initializer, + [147192] = 3, + ACTIONS(4834), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5450), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [147206] = 4, + STATE(5306), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7984), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [147156] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, + [147222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7930), 2, + ACTIONS(2878), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [147174] = 4, - ACTIONS(6444), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147234] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4986), 1, + STATE(4746), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147190] = 6, - ACTIONS(2478), 1, + [147250] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(4043), 1, + STATE(5323), 1, sym__call_signature, - STATE(5339), 1, + STATE(5509), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147210] = 6, - ACTIONS(2478), 1, + [147270] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5522), 1, + STATE(5333), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147230] = 4, - ACTIONS(6444), 1, + [147290] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4988), 1, + STATE(4747), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147246] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5528), 1, - sym__call_signature, + [147306] = 5, + ACTIONS(7986), 1, + anon_sym_SEMI, + ACTIONS(7988), 1, + sym__automatic_semicolon, + STATE(5348), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147266] = 6, - ACTIONS(2478), 1, - anon_sym_LT, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + [147324] = 4, ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5530), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [147286] = 4, - ACTIONS(6444), 1, anon_sym_EQ, - STATE(4990), 1, + STATE(4827), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147302] = 4, - ACTIONS(6444), 1, + [147340] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4697), 1, + STATE(4962), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7842), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147318] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5145), 1, - sym__initializer, + [147356] = 4, + ACTIONS(7992), 1, + anon_sym_in, + ACTIONS(7994), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7990), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147334] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5000), 1, - sym__initializer, + [147372] = 4, + ACTIONS(7996), 1, + anon_sym_in, + ACTIONS(7998), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7990), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147350] = 4, - ACTIONS(6444), 1, + [147388] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5001), 1, + STATE(4828), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147366] = 4, - ACTIONS(6376), 1, - anon_sym_LBRACK, - ACTIONS(7932), 1, - anon_sym_RBRACE, + [147404] = 3, + ACTIONS(4725), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [147382] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5223), 1, - sym__call_signature, - STATE(5231), 1, - sym_type_parameters, + ACTIONS(4727), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147418] = 3, + ACTIONS(4462), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147402] = 5, - ACTIONS(7934), 1, - anon_sym_BQUOTE, - ACTIONS(7936), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7939), 1, - sym__template_chars, + ACTIONS(4464), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147432] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [147420] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5002), 1, - sym__initializer, + ACTIONS(7282), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(8000), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147436] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5003), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147456] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7266), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147452] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5005), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [147468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(8002), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147468] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [147480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8004), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [147492] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4698), 1, + STATE(4640), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147484] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5250), 1, - sym__call_signature, + [147508] = 6, + ACTIONS(8006), 1, + sym_identifier, + ACTIONS(8008), 1, + anon_sym_GT, + ACTIONS(8010), 1, + sym_jsx_identifier, + STATE(5304), 1, + sym_nested_identifier, + STATE(5960), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147504] = 3, - ACTIONS(4441), 1, - anon_sym_LT, + [147528] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4829), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147518] = 3, - ACTIONS(4624), 1, - anon_sym_LT, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147544] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5178), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4626), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147532] = 3, - ACTIONS(4441), 1, - anon_sym_LT, + ACTIONS(8012), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147560] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147546] = 3, - ACTIONS(4654), 1, - anon_sym_LT, + STATE(4259), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147578] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4656), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147560] = 3, - ACTIONS(4681), 1, - anon_sym_LT, + ACTIONS(8018), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147590] = 6, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8020), 1, + anon_sym_RBRACE, + STATE(4904), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4683), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147574] = 3, - ACTIONS(4441), 1, + [147610] = 6, + ACTIONS(2470), 1, anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5418), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147588] = 4, - ACTIONS(6444), 1, + [147630] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5052), 1, + STATE(4830), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7942), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147604] = 4, - ACTIONS(6444), 1, + [147646] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5008), 1, + STATE(4754), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7866), 3, + ACTIONS(7802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147620] = 6, - ACTIONS(2478), 1, + [147662] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5314), 1, + STATE(5378), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147640] = 4, - ACTIONS(6444), 1, + [147682] = 6, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4639), 1, anon_sym_EQ, - STATE(5012), 1, - sym__initializer, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8022), 1, + anon_sym_RBRACE, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147702] = 6, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(7804), 1, + anon_sym_SEMI, + ACTIONS(7806), 1, + sym__automatic_semicolon, + ACTIONS(7808), 1, + sym__function_signature_automatic_semicolon, + STATE(233), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147722] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7487), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [147656] = 4, - ACTIONS(6444), 1, + [147734] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5013), 1, + STATE(5152), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(8024), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147672] = 3, - ACTIONS(4587), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4589), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147686] = 3, - ACTIONS(4598), 1, - anon_sym_LT, + [147750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4600), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147700] = 4, - STATE(5533), 1, - sym_import_attribute, + ACTIONS(5302), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [147762] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8026), 1, + anon_sym_BQUOTE, + ACTIONS(8028), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(7944), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [147716] = 4, - ACTIONS(6444), 1, + STATE(4294), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147780] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5014), 1, + STATE(4755), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147732] = 6, - ACTIONS(2478), 1, + [147796] = 3, + ACTIONS(8030), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8032), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147810] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5335), 1, + STATE(4187), 1, sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147752] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5015), 1, - sym__initializer, + [147830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7256), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147842] = 6, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(7894), 1, anon_sym_SEMI, - [147768] = 6, - ACTIONS(2478), 1, + ACTIONS(7896), 1, + sym__automatic_semicolon, + ACTIONS(7898), 1, + sym__function_signature_automatic_semicolon, + STATE(2338), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147862] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5343), 1, + STATE(4062), 1, sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147882] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2522), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147894] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147788] = 6, - ACTIONS(2478), 1, + ACTIONS(5173), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [147906] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3954), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5357), 1, + STATE(5457), 1, sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147808] = 4, - ACTIONS(6444), 1, + ACTIONS(2522), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147938] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5017), 1, + STATE(4831), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147824] = 5, - ACTIONS(7946), 1, - anon_sym_SEMI, - ACTIONS(7948), 1, - sym__automatic_semicolon, - STATE(5297), 1, - sym_import_attribute, + [147954] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - [147842] = 4, - ACTIONS(6444), 1, + ACTIONS(5173), 5, anon_sym_EQ, - STATE(5019), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [147966] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4832), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7854), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147858] = 6, - ACTIONS(218), 1, + [147982] = 6, + ACTIONS(1017), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1495), 1, + ACTIONS(1585), 1, anon_sym_LBRACE, - ACTIONS(7373), 1, + ACTIONS(7318), 1, anon_sym_extends, - STATE(799), 1, + STATE(4127), 1, sym_object_type, - STATE(4807), 1, + STATE(4986), 1, sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147878] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5597), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [147890] = 3, - ACTIONS(7950), 1, + [148002] = 3, + ACTIONS(4512), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7952), 4, + ACTIONS(4514), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [147904] = 3, - ACTIONS(7954), 1, + [148016] = 3, + ACTIONS(4516), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7956), 4, + ACTIONS(4518), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [147918] = 3, - ACTIONS(7960), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7958), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147932] = 3, - ACTIONS(7964), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7962), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [147946] = 2, + [148030] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7966), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [147958] = 6, - ACTIONS(3758), 1, - anon_sym_COLON, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(5027), 1, + ACTIONS(8034), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7968), 1, anon_sym_RBRACE, - STATE(5192), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148042] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147978] = 2, + ACTIONS(8036), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 5, + ACTIONS(8038), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147990] = 6, - ACTIONS(2478), 1, + [148066] = 3, + ACTIONS(7580), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7578), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148080] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(4348), 1, + STATE(3884), 1, sym__call_signature, - STATE(5435), 1, + STATE(5452), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148010] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5067), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148022] = 2, + [148100] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 5, + ACTIONS(2680), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148034] = 4, - ACTIONS(6444), 1, + [148112] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4710), 1, + STATE(5124), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(8040), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148050] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4759), 1, - sym__initializer, + [148128] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7943), 1, + sym__template_chars, + ACTIONS(8042), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [148146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7970), 3, + ACTIONS(2522), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148066] = 2, + anon_sym_PIPE_RBRACE, + [148158] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4682), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7333), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148078] = 2, + [148174] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7972), 5, + ACTIONS(2526), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148090] = 4, - ACTIONS(6444), 1, + [148186] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4719), 1, + STATE(4991), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(8044), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148106] = 3, - ACTIONS(4650), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4652), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [148120] = 3, - ACTIONS(4704), 1, + [148202] = 6, + ACTIONS(2470), 1, anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(3921), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4706), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [148134] = 2, + [148222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7243), 5, + ACTIONS(2684), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148146] = 2, + [148234] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8046), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148250] = 6, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + ACTIONS(7318), 1, + anon_sym_extends, + STATE(883), 1, + sym_object_type, + STATE(5108), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148270] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7974), 5, + ACTIONS(2688), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148158] = 6, - ACTIONS(2478), 1, + [148282] = 3, + ACTIONS(4557), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4559), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148296] = 6, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(5105), 1, + STATE(4668), 1, sym__call_signature, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148178] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7976), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148190] = 2, + [148316] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4730), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7978), 5, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148202] = 4, - ACTIONS(6444), 1, + [148332] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5034), 1, + STATE(4742), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7980), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148218] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(3811), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [148348] = 3, + ACTIONS(4561), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148238] = 4, - ACTIONS(6444), 1, + ACTIONS(4563), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148362] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5117), 1, + STATE(4913), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148254] = 4, - ACTIONS(6444), 1, + [148378] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5037), 1, + STATE(4920), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148270] = 4, - ACTIONS(6444), 1, + [148394] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5038), 1, + STATE(4939), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148286] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(7984), 1, - anon_sym_EQ_GT, + [148410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [148302] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4109), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + ACTIONS(2530), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148422] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148322] = 4, - ACTIONS(6444), 1, + ACTIONS(2534), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148434] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5039), 1, + STATE(4948), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148338] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5041), 1, - sym__initializer, + [148450] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2538), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148462] = 6, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_SEMI, + ACTIONS(7882), 1, + sym__automatic_semicolon, + ACTIONS(7884), 1, + sym__function_signature_automatic_semicolon, + STATE(4325), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + [148482] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2542), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148354] = 6, + anon_sym_PIPE_RBRACE, + [148494] = 6, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(7498), 1, + ACTIONS(7963), 1, anon_sym_abstract, - ACTIONS(7987), 1, + ACTIONS(8053), 1, anon_sym_class, - STATE(1253), 1, + STATE(1227), 1, aux_sym_export_statement_repeat1, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148374] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5118), 1, - sym__initializer, + [148514] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8055), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [148390] = 4, - ACTIONS(6444), 1, + [148532] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5045), 1, + STATE(4955), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7989), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148406] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7991), 1, - anon_sym_class, - ACTIONS(7993), 1, - anon_sym_abstract, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [148548] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148426] = 4, - ACTIONS(6444), 1, + ACTIONS(2546), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148560] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5048), 1, + STATE(4760), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148442] = 2, + [148576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5189), 5, - anon_sym_EQ, + ACTIONS(8057), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148454] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4116), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [148474] = 6, - ACTIONS(2478), 1, - anon_sym_LT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148588] = 4, ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5557), 1, - sym__call_signature, + anon_sym_EQ, + STATE(4843), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148494] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5498), 1, - sym__call_signature, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148604] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7943), 1, + sym__template_chars, + ACTIONS(8059), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148514] = 4, - ACTIONS(6444), 1, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [148622] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5049), 1, + STATE(5006), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148530] = 6, - ACTIONS(2478), 1, - anon_sym_LT, + [148638] = 4, ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5265), 1, - sym__call_signature, + anon_sym_EQ, + STATE(5041), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148550] = 4, - ACTIONS(6444), 1, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148654] = 4, + ACTIONS(6450), 1, anon_sym_EQ, STATE(5050), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148566] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5054), 1, - sym__initializer, + [148670] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7943), 1, + sym__template_chars, + ACTIONS(8061), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [148688] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(2656), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148582] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [148700] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5056), 1, + STATE(4844), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148598] = 4, - ACTIONS(6444), 1, + [148716] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5057), 1, + STATE(5189), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148614] = 2, + [148732] = 6, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(7804), 1, + anon_sym_SEMI, + ACTIONS(7806), 1, + sym__automatic_semicolon, + ACTIONS(7808), 1, + sym__function_signature_automatic_semicolon, + STATE(2313), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5189), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148626] = 2, + [148752] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5189), 5, - anon_sym_EQ, + ACTIONS(2668), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [148638] = 5, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - ACTIONS(7995), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5980), 2, - sym__module_export_name, - sym_string, - [148656] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148764] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5108), 5, + ACTIONS(5561), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148668] = 5, - ACTIONS(7997), 1, - sym_identifier, - ACTIONS(7999), 1, - anon_sym_LPAREN, - STATE(1217), 1, - sym_decorator_member_expression, + [148776] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4761), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1284), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [148686] = 3, - ACTIONS(4410), 1, - sym_identifier, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148792] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4687), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4412), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148700] = 3, - ACTIONS(4449), 1, - sym_identifier, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148808] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 4, - anon_sym_LBRACE, + ACTIONS(8063), 2, + anon_sym_COMMA, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148714] = 4, - STATE(5547), 1, - sym_import_attribute, + [148826] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4708), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7906), 2, - anon_sym_with, - anon_sym_assert, - ACTIONS(8001), 2, + ACTIONS(8049), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [148730] = 4, - ACTIONS(6444), 1, + [148842] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5058), 1, + STATE(4712), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148746] = 2, + [148858] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4763), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5479), 5, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148874] = 6, + ACTIONS(7377), 1, anon_sym_EQ, + ACTIONS(8065), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8067), 1, + anon_sym_RBRACE, + STATE(5022), 1, + aux_sym_enum_body_repeat1, + STATE(5404), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148894] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(3785), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148914] = 4, + ACTIONS(7544), 1, anon_sym_COLON, - anon_sym_QMARK, - [148758] = 4, - ACTIONS(6444), 1, + ACTIONS(8069), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148930] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5059), 1, + STATE(4683), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148774] = 6, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, + [148946] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8072), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148962] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148978] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5474), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148998] = 6, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, anon_sym_PIPE, - ACTIONS(7486), 1, + ACTIONS(7590), 1, anon_sym_extends, - ACTIONS(8003), 1, + ACTIONS(8078), 1, anon_sym_as, - ACTIONS(8005), 1, + ACTIONS(8080), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148794] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8007), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148806] = 4, - ACTIONS(6338), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + [149018] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(8082), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [148822] = 4, - ACTIONS(6444), 1, + STATE(5522), 2, + sym__module_export_name, + sym_string, + [149036] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5062), 1, + STATE(4753), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148838] = 4, - ACTIONS(6444), 1, + [149052] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5064), 1, + STATE(5089), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8084), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148854] = 3, - ACTIONS(4565), 1, - sym_identifier, + [149068] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8086), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4567), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148868] = 3, - ACTIONS(4569), 1, - sym_identifier, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149084] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8089), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4571), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148882] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5065), 1, - sym__initializer, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149100] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5494), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149120] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(2558), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148898] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(3767), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + anon_sym_PIPE_RBRACE, + [149132] = 6, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(8092), 1, + anon_sym_SEMI, + ACTIONS(8094), 1, + sym__automatic_semicolon, + ACTIONS(8096), 1, + sym__function_signature_automatic_semicolon, + STATE(4357), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148918] = 4, - ACTIONS(6444), 1, + [149152] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5067), 1, + STATE(4769), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148934] = 3, - ACTIONS(4632), 1, - sym_identifier, + [149168] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8098), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4634), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148948] = 3, - ACTIONS(4636), 1, - sym_identifier, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149184] = 3, + ACTIONS(5273), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4638), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [148962] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5074), 1, - sym__initializer, + ACTIONS(1851), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149198] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8101), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [149216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7989), 3, + ACTIONS(2558), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148978] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [149228] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5075), 1, + STATE(4796), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148994] = 4, - ACTIONS(6444), 1, + [149244] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5076), 1, + STATE(4800), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149010] = 4, - ACTIONS(6444), 1, + [149260] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5200), 1, + STATE(4801), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8011), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149026] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5203), 1, - sym__initializer, + [149276] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(3553), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8013), 3, + ACTIONS(7256), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149042] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [149308] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5078), 1, + STATE(4909), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149058] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(5080), 1, - sym__initializer, + [149324] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8103), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149074] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4735), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [149336] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8015), 3, + ACTIONS(8105), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149090] = 6, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [149348] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(3244), 1, + ACTIONS(6456), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3389), 1, sym_formal_parameters, - STATE(5214), 1, + STATE(3849), 1, sym__call_signature, - STATE(5435), 1, + STATE(5452), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149110] = 4, - ACTIONS(6444), 1, + [149368] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5081), 1, + STATE(4997), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149126] = 4, - ACTIONS(6444), 1, + [149384] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5082), 1, + STATE(4845), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149142] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7498), 1, - anon_sym_abstract, - ACTIONS(7691), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [149400] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149162] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4765), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8017), 3, + ACTIONS(7516), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149178] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [149412] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5085), 1, + STATE(5079), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149194] = 4, - ACTIONS(6444), 1, + [149428] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5086), 1, + STATE(4912), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7982), 3, + ACTIONS(7842), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149210] = 3, - ACTIONS(4441), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4443), 4, + [149444] = 6, + ACTIONS(4206), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149224] = 3, - ACTIONS(4624), 1, - sym_identifier, + ACTIONS(8092), 1, + anon_sym_SEMI, + ACTIONS(8094), 1, + sym__automatic_semicolon, + ACTIONS(8096), 1, + sym__function_signature_automatic_semicolon, + STATE(2137), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4626), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149238] = 3, - ACTIONS(4441), 1, - sym_identifier, + [149464] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5095), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149252] = 4, - ACTIONS(6444), 1, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149480] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4752), 1, + STATE(5099), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149268] = 3, - ACTIONS(4654), 1, - sym_identifier, + [149496] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5111), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4656), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149282] = 3, - ACTIONS(4681), 1, - sym_identifier, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149512] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4683), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149296] = 3, - ACTIONS(4441), 1, - sym_identifier, + ACTIONS(2574), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149524] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8107), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4443), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149310] = 5, - ACTIONS(2970), 1, - anon_sym_DQUOTE, - ACTIONS(2972), 1, - anon_sym_SQUOTE, - ACTIONS(8019), 1, - sym_identifier, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4629), 2, - sym__module_export_name, - sym_string, - [149328] = 4, - ACTIONS(6444), 1, + ACTIONS(7303), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149552] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5087), 1, + STATE(5176), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149344] = 3, - ACTIONS(4587), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4589), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149358] = 3, - ACTIONS(4598), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4600), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149372] = 2, + [149568] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4846), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 5, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149384] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(4378), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149404] = 2, + [149584] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7353), 5, + ACTIONS(1841), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149416] = 4, - ACTIONS(6444), 1, + [149596] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4883), 1, + STATE(5220), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149432] = 4, - ACTIONS(6444), 1, + [149612] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5026), 1, + STATE(4627), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149448] = 4, - ACTIONS(6444), 1, + [149628] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5092), 1, + STATE(4632), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8021), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149464] = 4, - ACTIONS(6444), 1, + [149644] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4611), 1, + STATE(4641), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8021), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149480] = 2, + [149660] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4642), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7349), 5, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149492] = 2, + [149676] = 3, + ACTIONS(5312), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8023), 5, - sym__automatic_semicolon, + ACTIONS(1713), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149504] = 2, + [149690] = 3, + ACTIONS(5321), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8025), 5, - sym__automatic_semicolon, + ACTIONS(1727), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149516] = 4, - ACTIONS(6444), 1, + [149704] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5091), 1, + STATE(4673), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8027), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149532] = 4, - ACTIONS(6444), 1, + [149720] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5096), 1, + STATE(4685), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8027), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149548] = 4, - ACTIONS(6444), 1, + [149736] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5127), 1, + STATE(4705), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149564] = 3, - ACTIONS(4650), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4652), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149578] = 3, - ACTIONS(4704), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4706), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [149592] = 4, - ACTIONS(6444), 1, + [149752] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5213), 1, + STATE(5205), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8017), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149608] = 2, + [149768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5489), 5, - anon_sym_EQ, + ACTIONS(1747), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [149620] = 6, - ACTIONS(2478), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149780] = 6, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4456), 1, + STATE(3709), 1, sym__call_signature, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149640] = 2, + [149800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 5, + ACTIONS(2692), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149652] = 6, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(7993), 1, - anon_sym_abstract, - ACTIONS(8029), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [149812] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4744), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149672] = 2, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149828] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8031), 5, + ACTIONS(1757), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149684] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4009), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [149840] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149704] = 2, + ACTIONS(8110), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149852] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7283), 5, + ACTIONS(2578), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149716] = 2, + [149864] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4789), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8033), 5, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149728] = 4, - ACTIONS(6444), 1, + [149880] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5097), 1, + STATE(4792), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8027), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149744] = 4, - ACTIONS(6444), 1, + [149896] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5098), 1, + STATE(4799), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8027), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149760] = 5, - ACTIONS(7770), 1, + [149912] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7532), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [149924] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2700), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149936] = 5, + ACTIONS(7868), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7799), 1, - sym__template_chars, - ACTIONS(8035), 1, + ACTIONS(8112), 1, anon_sym_BQUOTE, + ACTIONS(8114), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4223), 2, + STATE(4147), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [149778] = 2, + [149954] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7639), 5, + ACTIONS(8116), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149790] = 2, + [149972] = 3, + ACTIONS(4621), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4623), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [149986] = 3, + ACTIONS(4625), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4627), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150000] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4878), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7289), 5, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149802] = 2, + [150016] = 3, + ACTIONS(5369), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8037), 5, - sym__automatic_semicolon, + ACTIONS(1801), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149814] = 2, + [150030] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4847), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7396), 5, + ACTIONS(8118), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149826] = 6, - ACTIONS(2478), 1, + [150046] = 6, + ACTIONS(2470), 1, anon_sym_LT, ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3267), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(4389), 1, + STATE(3557), 1, sym__call_signature, - STATE(5435), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149846] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(8039), 1, - anon_sym_EQ_GT, + [150066] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5206), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149862] = 6, - ACTIONS(2478), 1, - anon_sym_LT, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150082] = 4, ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5471), 1, - sym__call_signature, + anon_sym_EQ, + STATE(4848), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149882] = 2, + ACTIONS(8120), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7406), 5, + ACTIONS(1703), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149894] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(8042), 1, - anon_sym_EQ_GT, + [150110] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(3711), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5489), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149910] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(8045), 1, - anon_sym_EQ_GT, + [150130] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149926] = 6, - ACTIONS(2478), 1, + ACTIONS(7534), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [150142] = 3, + ACTIONS(4621), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4623), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150156] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5490), 1, + STATE(3750), 1, sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149946] = 6, - ACTIONS(2478), 1, - anon_sym_LT, + [150176] = 4, ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4859), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7959), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150192] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3848), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5523), 1, + STATE(3707), 1, sym__call_signature, + STATE(5499), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149966] = 4, - ACTIONS(7574), 1, - anon_sym_COLON, - ACTIONS(8048), 1, - anon_sym_EQ_GT, + [150212] = 3, + ACTIONS(4629), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5302), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [149982] = 6, - ACTIONS(1657), 1, + ACTIONS(4631), 4, anon_sym_LBRACE, - ACTIONS(7803), 1, - anon_sym_SEMI, - ACTIONS(7805), 1, - sym__automatic_semicolon, - ACTIONS(7807), 1, - sym__function_signature_automatic_semicolon, - STATE(243), 1, - sym_statement_block, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150226] = 3, + ACTIONS(4633), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150002] = 2, + ACTIONS(4635), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150240] = 3, + ACTIONS(4621), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7249), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150014] = 4, - ACTIONS(6444), 1, + ACTIONS(4623), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150254] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5144), 1, + STATE(4772), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7802), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150030] = 2, + [150270] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4774), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150042] = 2, + [150286] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4775), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150054] = 2, + [150302] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 5, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150066] = 4, - ACTIONS(6444), 1, + [150318] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5147), 1, + STATE(4786), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150082] = 5, - ACTIONS(7770), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8051), 1, - anon_sym_BQUOTE, - ACTIONS(8053), 1, - sym__template_chars, + [150334] = 3, + ACTIONS(4665), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4374), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [150100] = 4, - ACTIONS(6444), 1, + ACTIONS(4667), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150348] = 3, + ACTIONS(4669), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4671), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150362] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5156), 1, + STATE(4787), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150116] = 4, - ACTIONS(6444), 1, + [150378] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4734), 1, + STATE(5144), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(8122), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150132] = 2, + [150394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2844), 5, + ACTIONS(7536), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150144] = 2, + [150406] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4926), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1873), 5, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150156] = 4, - ACTIONS(6444), 1, + [150422] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5158), 1, + STATE(4790), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150172] = 3, - ACTIONS(8055), 1, - sym_identifier, + [150438] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4649), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8057), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [150186] = 5, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150454] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8059), 2, + ACTIONS(1811), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150204] = 5, - ACTIONS(7343), 1, - anon_sym_LT, - ACTIONS(8061), 1, - anon_sym_LBRACE, - STATE(5149), 1, - sym_type_arguments, + anon_sym_PIPE_RBRACE, + [150466] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4970), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8063), 2, + ACTIONS(8051), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [150222] = 4, - ACTIONS(6444), 1, + anon_sym_SEMI, + [150482] = 6, + ACTIONS(8124), 1, + sym_identifier, + ACTIONS(8126), 1, + anon_sym_GT, + ACTIONS(8128), 1, + sym_jsx_identifier, + STATE(5467), 1, + sym_nested_identifier, + STATE(5744), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150502] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5159), 1, + STATE(5193), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7814), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150238] = 4, - ACTIONS(6444), 1, + [150518] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4777), 1, + STATE(4860), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150254] = 4, - ACTIONS(6444), 1, + [150534] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4964), 1, + STATE(4983), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150270] = 4, - ACTIONS(6444), 1, + [150550] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5170), 1, + STATE(4984), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150286] = 4, - ACTIONS(6444), 1, + [150566] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5171), 1, + STATE(4987), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150302] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4413), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + [150582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150322] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3396), 1, - sym_formal_parameters, - STATE(4388), 1, - sym__call_signature, - STATE(5339), 1, - sym_type_parameters, + ACTIONS(7268), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150594] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150342] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5470), 1, - sym__call_signature, + ACTIONS(4937), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [150606] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150362] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5355), 1, - sym__call_signature, + ACTIONS(4933), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [150618] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150382] = 6, - ACTIONS(1657), 1, - anon_sym_LBRACE, - ACTIONS(7774), 1, - anon_sym_SEMI, - ACTIONS(7776), 1, + ACTIONS(2676), 5, sym__automatic_semicolon, - ACTIONS(7778), 1, - sym__function_signature_automatic_semicolon, - STATE(237), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150402] = 4, - ACTIONS(6444), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150630] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5172), 1, + STATE(4861), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(7820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150418] = 2, + [150646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2848), 5, + ACTIONS(2716), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150430] = 2, + [150658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2904), 5, + ACTIONS(2806), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150442] = 3, - ACTIONS(7723), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [150456] = 4, - ACTIONS(6444), 1, + [150670] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(5208), 1, + STATE(5000), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150472] = 3, - ACTIONS(8067), 1, - anon_sym_LT, + [150686] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8065), 4, - sym_jsx_text, + ACTIONS(8130), 5, + anon_sym_EQ, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [150486] = 4, - ACTIONS(6444), 1, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [150698] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4808), 1, + STATE(5018), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150502] = 3, - ACTIONS(8069), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8071), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [150516] = 4, - ACTIONS(6444), 1, + [150714] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4621), 1, + STATE(5019), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150532] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4626), 1, - sym__initializer, + [150730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(2810), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150548] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8073), 2, - anon_sym_COMMA, - anon_sym_GT, - [150566] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [150742] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4627), 1, + STATE(5021), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150582] = 4, - ACTIONS(6444), 1, + [150758] = 3, + ACTIONS(8132), 1, anon_sym_EQ, - STATE(5110), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, - sym__automatic_semicolon, + ACTIONS(3584), 4, anon_sym_COMMA, - anon_sym_SEMI, - [150598] = 3, - ACTIONS(8077), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8075), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [150612] = 2, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [150772] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 5, + ACTIONS(7268), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150624] = 4, - ACTIONS(1699), 1, - anon_sym_DOT, - ACTIONS(4250), 1, - anon_sym_LBRACE, + anon_sym_PIPE_RBRACE, + [150784] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5024), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 3, + ACTIONS(8049), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [150640] = 4, - ACTIONS(6444), 1, + anon_sym_SEMI, + [150800] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4635), 1, + STATE(5032), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150656] = 2, + [150816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2746), 5, + ACTIONS(2716), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150668] = 4, - ACTIONS(1791), 1, - anon_sym_DOT, - ACTIONS(4250), 1, - anon_sym_LBRACE, + [150828] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5524), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4252), 3, - anon_sym_COMMA, + [150848] = 6, + ACTIONS(2470), 1, anon_sym_LT, - anon_sym_LBRACE_PIPE, - [150684] = 4, - ACTIONS(6444), 1, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(4868), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150868] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(3996), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150888] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4636), 1, + STATE(5056), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8051), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150700] = 2, + [150904] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5060), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2916), 5, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150712] = 2, + [150920] = 3, + ACTIONS(4685), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8079), 5, - anon_sym_EQ, + ACTIONS(4687), 4, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [150724] = 4, - ACTIONS(6444), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150934] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4637), 1, + STATE(5068), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150740] = 3, - ACTIONS(8083), 1, - anon_sym_LT, + [150950] = 3, + ACTIONS(4689), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8081), 4, - sym_jsx_text, + ACTIONS(4691), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [150754] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4638), 1, - sym__initializer, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150964] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(2612), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150770] = 4, - ACTIONS(6444), 1, + anon_sym_PIPE_RBRACE, + [150976] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4639), 1, + STATE(5074), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7709), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150786] = 3, - ACTIONS(7723), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7721), 4, - sym_jsx_text, + [150992] = 4, + ACTIONS(1767), 1, + anon_sym_DOT, + ACTIONS(4302), 1, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [150800] = 3, - ACTIONS(4863), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5242), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4304), 3, + anon_sym_COMMA, anon_sym_LT, - anon_sym_QMARK, - [150814] = 4, - ACTIONS(6444), 1, + anon_sym_LBRACE_PIPE, + [151008] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4845), 1, + STATE(5078), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + ACTIONS(8049), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150830] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4651), 1, - sym__initializer, + [151024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7375), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150846] = 6, - ACTIONS(2478), 1, + anon_sym_PIPE_RBRACE, + [151036] = 6, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(3244), 1, anon_sym_LPAREN, - STATE(3396), 1, + STATE(3274), 1, sym_formal_parameters, - STATE(3915), 1, + STATE(4416), 1, sym__call_signature, - STATE(5339), 1, + STATE(5499), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150866] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4851), 1, - sym__initializer, + [151056] = 4, + ACTIONS(6346), 1, + anon_sym_DOT, + ACTIONS(8134), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [151072] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7242), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150882] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4864), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [151084] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7742), 3, + ACTIONS(7375), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150898] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4677), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [151096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(2616), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150914] = 3, - ACTIONS(8087), 1, - anon_sym_LT, + anon_sym_PIPE_RBRACE, + [151108] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8085), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [150928] = 2, + ACTIONS(8136), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151120] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4946), 5, + ACTIONS(2720), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151132] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [150940] = 2, + STATE(4631), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4933), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [150952] = 4, - ACTIONS(6444), 1, - anon_sym_EQ, - STATE(4802), 1, - sym__initializer, + ACTIONS(8138), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151148] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8089), 3, + ACTIONS(7242), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150968] = 4, - ACTIONS(6338), 1, - anon_sym_DOT, - ACTIONS(8091), 1, - sym_identifier, + anon_sym_PIPE_RBRACE, + [151160] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [150984] = 2, + ACTIONS(8140), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2652), 5, + ACTIONS(8142), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150996] = 2, + [151184] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(8144), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5446), 2, + sym__module_export_name, + sym_string, + [151202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8093), 5, + ACTIONS(2620), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [151008] = 2, + [151214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2656), 5, + ACTIONS(2624), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [151020] = 2, + [151226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7359), 5, + ACTIONS(2628), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [151032] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3267), 1, - sym_formal_parameters, - STATE(4867), 1, - sym__call_signature, - STATE(5435), 1, - sym_type_parameters, + [151238] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151052] = 4, - ACTIONS(6444), 1, + ACTIONS(2632), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151250] = 4, + ACTIONS(6450), 1, anon_sym_EQ, - STATE(4688), 1, + STATE(4882), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7842), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151068] = 4, - ACTIONS(6444), 1, + [151266] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2636), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151278] = 6, + ACTIONS(7377), 1, anon_sym_EQ, - STATE(5079), 1, + ACTIONS(8146), 1, + anon_sym_COMMA, + ACTIONS(8148), 1, + anon_sym_RBRACE, + STATE(4802), 1, + aux_sym_enum_body_repeat1, + STATE(5404), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 3, + [151298] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2648), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [151084] = 6, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3848), 1, - sym_formal_parameters, - STATE(5231), 1, - sym_type_parameters, - STATE(5244), 1, - sym__call_signature, + anon_sym_PIPE_RBRACE, + [151310] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151104] = 6, - ACTIONS(3), 1, + ACTIONS(5173), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [151322] = 5, + ACTIONS(7341), 1, + anon_sym_COMMA, + ACTIONS(8150), 1, + anon_sym_LBRACE, + ACTIONS(8152), 1, + anon_sym_LBRACE_PIPE, + STATE(4501), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [151339] = 2, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8095), 1, - sym_html_character_reference, - ACTIONS(8097), 1, - anon_sym_DQUOTE, - ACTIONS(8099), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4522), 1, - aux_sym__jsx_string_repeat1, - [151123] = 5, + sym_comment, + ACTIONS(8154), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [151350] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8156), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151367] = 5, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8158), 1, + anon_sym_EQ, + ACTIONS(8160), 1, + anon_sym_RBRACK, + STATE(4919), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151384] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8101), 1, + ACTIONS(8162), 1, anon_sym_DQUOTE, - STATE(4567), 1, + STATE(4580), 1, aux_sym_string_repeat1, - ACTIONS(8103), 2, + ACTIONS(8164), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151140] = 5, + [151401] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4557), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8168), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151416] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8101), 1, + ACTIONS(8162), 1, anon_sym_SQUOTE, - STATE(4572), 1, + STATE(4581), 1, aux_sym_string_repeat2, - ACTIONS(8105), 2, + ACTIONS(8170), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151157] = 4, - ACTIONS(8109), 1, - anon_sym_COMMA, - STATE(4464), 1, - aux_sym_extends_clause_repeat1, + [151433] = 4, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(5256), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8107), 2, - anon_sym_LBRACE, - anon_sym_implements, - [151172] = 5, - ACTIONS(3938), 1, - anon_sym_LPAREN, - ACTIONS(8112), 1, - anon_sym_LT, - STATE(1535), 1, - sym_arguments, - STATE(1536), 1, - sym_type_arguments, + ACTIONS(8172), 2, + anon_sym_COMMA, + anon_sym_GT, + [151448] = 5, + ACTIONS(8174), 1, + sym_identifier, + STATE(3958), 1, + sym_nested_type_identifier, + STATE(4561), 1, + sym_generic_type, + STATE(5816), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151189] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [151465] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8114), 1, - anon_sym_RPAREN, + ACTIONS(8176), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151206] = 5, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(8116), 1, - anon_sym_export, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [151482] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8178), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8164), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151499] = 4, + ACTIONS(8180), 1, + anon_sym_COMMA, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151223] = 5, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(6291), 1, - anon_sym_LT, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, + ACTIONS(7524), 2, + anon_sym_LBRACE, + anon_sym_GT, + [151514] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8178), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151531] = 5, + ACTIONS(1665), 1, + anon_sym_while, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(6316), 1, + anon_sym_DOT, + STATE(867), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151240] = 5, - ACTIONS(7339), 1, - anon_sym_COMMA, - ACTIONS(7440), 1, + [151548] = 5, + ACTIONS(1665), 1, + anon_sym_while, + ACTIONS(2444), 1, anon_sym_LBRACE, - ACTIONS(7442), 1, - anon_sym_LBRACE_PIPE, - STATE(4602), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(6689), 1, + anon_sym_DOT, + STATE(867), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151257] = 4, - ACTIONS(8118), 1, - anon_sym_COMMA, - STATE(4470), 1, - aux_sym_variable_declaration_repeat1, + [151565] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5277), 1, + sym_type_parameters, + STATE(5973), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8121), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151272] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8123), 1, - anon_sym_COLON, + [151582] = 3, + ACTIONS(8183), 1, + sym_escape_sequence, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151289] = 4, - ACTIONS(8125), 1, + ACTIONS(8185), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [151595] = 4, + ACTIONS(8188), 1, anon_sym_COMMA, - STATE(4470), 1, - aux_sym_variable_declaration_repeat1, + STATE(4485), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8127), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151304] = 4, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5440), 1, - sym__from_clause, + ACTIONS(5395), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [151610] = 4, + ACTIONS(8191), 1, + anon_sym_COMMA, + STATE(4486), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8131), 2, + ACTIONS(4780), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151319] = 4, - ACTIONS(8135), 1, + [151625] = 4, + ACTIONS(8196), 1, anon_sym_COMMA, - STATE(4600), 1, + STATE(4487), 1, aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8133), 2, + ACTIONS(8194), 2, anon_sym_LBRACE, anon_sym_implements, - [151334] = 5, + [151640] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8199), 1, + anon_sym_SQUOTE, + STATE(4528), 1, + aux_sym_string_repeat2, + ACTIONS(8201), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151657] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8137), 1, + ACTIONS(8203), 1, anon_sym_DQUOTE, - STATE(4546), 1, + STATE(4472), 1, aux_sym_string_repeat1, - ACTIONS(8139), 2, + ACTIONS(8205), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151351] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4472), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [151674] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8141), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151366] = 4, - ACTIONS(7237), 1, - anon_sym_EQ, - STATE(5441), 1, - sym__initializer, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(8143), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [151381] = 4, - ACTIONS(4967), 1, - anon_sym_COMMA, - STATE(4584), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(8203), 1, + anon_sym_SQUOTE, + STATE(4474), 1, + aux_sym_string_repeat2, + ACTIONS(8207), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151691] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5456), 1, + sym_type_parameters, + STATE(5630), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7269), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151396] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [151708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8209), 1, + anon_sym_DQUOTE, + STATE(4537), 1, + aux_sym_string_repeat1, + ACTIONS(8211), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151725] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8145), 1, - anon_sym_RPAREN, + ACTIONS(8213), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151742] = 3, + ACTIONS(6346), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151413] = 5, - ACTIONS(7157), 1, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [151755] = 5, + ACTIONS(7202), 1, anon_sym_const, - ACTIONS(8147), 1, + ACTIONS(8215), 1, sym_identifier, - ACTIONS(8149), 1, + ACTIONS(8217), 1, anon_sym_GT, - STATE(5384), 1, + STATE(5455), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151430] = 5, - ACTIONS(4535), 1, + [151772] = 4, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5370), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8221), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151787] = 5, + ACTIONS(3479), 1, anon_sym_LPAREN, - ACTIONS(8151), 1, + ACTIONS(6332), 1, anon_sym_LT, - STATE(1901), 1, + STATE(3101), 1, sym_arguments, - STATE(1902), 1, + STATE(3220), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151447] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3637), 1, - sym_formal_parameters, - STATE(5422), 1, - sym_type_parameters, + [151804] = 4, + ACTIONS(7377), 1, + anon_sym_EQ, + STATE(5285), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151464] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(8223), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [151819] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8153), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151481] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4516), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(8225), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8155), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151496] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [151836] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8157), 1, + ACTIONS(8227), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151513] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5444), 1, - sym_type_parameters, - STATE(5885), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151530] = 4, - ACTIONS(8125), 1, + [151853] = 5, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(8231), 1, anon_sym_COMMA, - STATE(4517), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(8234), 1, + anon_sym_LBRACE_PIPE, + STATE(4501), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8159), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151545] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8161), 1, - anon_sym_RBRACK, + [151870] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5326), 1, + sym_type_parameters, + STATE(5805), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151562] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4470), 1, - aux_sym_variable_declaration_repeat1, + [151887] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5432), 1, + sym_type_parameters, + STATE(5603), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8163), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151577] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [151904] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8165), 1, + ACTIONS(8236), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151594] = 5, - ACTIONS(2478), 1, + [151921] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5461), 1, + STATE(5327), 1, sym_type_parameters, - STATE(5718), 1, + STATE(5618), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151611] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5442), 1, - sym_type_parameters, - STATE(5669), 1, - sym_formal_parameters, + [151938] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8238), 1, + anon_sym_export, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151628] = 3, - ACTIONS(6068), 1, - anon_sym_EQ_GT, + [151955] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8240), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [151641] = 3, - ACTIONS(8167), 1, - sym_escape_sequence, + [151972] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8242), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8169), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [151654] = 5, - ACTIONS(3467), 1, + [151989] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8244), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152006] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8246), 1, + anon_sym_DQUOTE, + STATE(4520), 1, + aux_sym_string_repeat1, + ACTIONS(8248), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152023] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8250), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8164), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152040] = 5, + ACTIONS(4502), 1, anon_sym_LPAREN, - ACTIONS(6350), 1, + ACTIONS(8252), 1, anon_sym_LT, - STATE(3046), 1, + STATE(1870), 1, sym_arguments, - STATE(3197), 1, + STATE(1871), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151671] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4489), 1, - aux_sym_variable_declaration_repeat1, + [152057] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8254), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8172), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151686] = 5, + [152074] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8256), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152091] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8174), 1, + ACTIONS(8258), 1, anon_sym_DQUOTE, - STATE(4501), 1, + STATE(4478), 1, aux_sym_string_repeat1, - ACTIONS(8176), 2, + ACTIONS(8260), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151703] = 5, + [152108] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8174), 1, + ACTIONS(8246), 1, anon_sym_SQUOTE, - STATE(4503), 1, + STATE(4524), 1, aux_sym_string_repeat2, - ACTIONS(8178), 2, + ACTIONS(8262), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151720] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5452), 1, - sym_type_parameters, - STATE(5763), 1, - sym_formal_parameters, + [152125] = 4, + ACTIONS(6336), 1, + anon_sym_STAR, + ACTIONS(6340), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151737] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8180), 1, - anon_sym_RPAREN, + STATE(5781), 2, + sym_namespace_import, + sym_named_imports, + [152140] = 4, + ACTIONS(5023), 1, + anon_sym_COMMA, + STATE(4486), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7326), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152155] = 5, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8158), 1, + anon_sym_EQ, + ACTIONS(8264), 1, + anon_sym_RBRACK, + STATE(4770), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151754] = 5, + [152172] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8182), 1, + ACTIONS(8266), 1, anon_sym_DQUOTE, - STATE(4567), 1, + STATE(4580), 1, aux_sym_string_repeat1, - ACTIONS(8103), 2, + ACTIONS(8164), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151771] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5277), 1, - sym_type_parameters, - STATE(5920), 1, - sym_formal_parameters, + [152189] = 4, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5308), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5062), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152204] = 4, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5233), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8268), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152219] = 4, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4639), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151788] = 5, + ACTIONS(8270), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [152234] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8182), 1, + ACTIONS(8266), 1, anon_sym_SQUOTE, - STATE(4572), 1, + STATE(4581), 1, aux_sym_string_repeat2, - ACTIONS(8105), 2, + ACTIONS(8170), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151805] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, - ACTIONS(8184), 1, - anon_sym_QMARK, + [152251] = 4, + ACTIONS(8274), 1, + anon_sym_COMMA, + STATE(4487), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151822] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8186), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + ACTIONS(8272), 2, + anon_sym_LBRACE, + anon_sym_implements, + [152266] = 5, + ACTIONS(3), 1, sym_comment, - [151839] = 4, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5324), 1, - sym__from_clause, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8258), 1, + anon_sym_SQUOTE, + STATE(4480), 1, + aux_sym_string_repeat2, + ACTIONS(8276), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152283] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8278), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5166), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151854] = 5, + [152300] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8137), 1, + ACTIONS(8250), 1, anon_sym_SQUOTE, - STATE(4548), 1, + STATE(4581), 1, aux_sym_string_repeat2, - ACTIONS(8188), 2, + ACTIONS(8170), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151871] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [152317] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8190), 1, - anon_sym_COLON, + ACTIONS(8280), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151888] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8192), 1, - anon_sym_COLON, + [152334] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(8282), 1, + anon_sym_LT, + STATE(1555), 1, + sym_arguments, + STATE(1556), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151905] = 2, + [152351] = 5, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + ACTIONS(8284), 1, + anon_sym_GT, + STATE(5455), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8194), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [151916] = 5, - ACTIONS(2478), 1, + [152368] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5278), 1, + STATE(5440), 1, sym_type_parameters, - STATE(5755), 1, + STATE(5721), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151933] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5417), 1, - sym_type_parameters, - STATE(5614), 1, - sym_formal_parameters, + [152385] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4558), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151950] = 5, - ACTIONS(1779), 1, + ACTIONS(8286), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152400] = 4, + ACTIONS(8166), 1, anon_sym_COMMA, - ACTIONS(8196), 1, + STATE(4558), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8288), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152415] = 4, + ACTIONS(8290), 1, anon_sym_EQ, - ACTIONS(8198), 1, - anon_sym_RBRACK, - STATE(4620), 1, - aux_sym_array_pattern_repeat1, + STATE(5330), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151967] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + [152430] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8200), 1, - anon_sym_RBRACK, + ACTIONS(8292), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151984] = 5, - ACTIONS(6291), 1, - anon_sym_LT, - ACTIONS(6692), 1, - anon_sym_LPAREN, - STATE(2880), 1, - sym_arguments, - STATE(2987), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, + [152447] = 5, + ACTIONS(3), 1, sym_comment, - [152001] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4470), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - ACTIONS(8202), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152016] = 4, - ACTIONS(8125), 1, - anon_sym_COMMA, - STATE(4470), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(8294), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8164), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152464] = 5, + ACTIONS(8296), 1, + sym_identifier, + STATE(3988), 1, + sym_nested_type_identifier, + STATE(4779), 1, + sym_generic_type, + STATE(5816), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8204), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152031] = 5, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5481), 1, - sym_type_parameters, - STATE(5970), 1, - sym_formal_parameters, + [152481] = 3, + ACTIONS(8298), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152048] = 5, - ACTIONS(6390), 1, + ACTIONS(3786), 3, anon_sym_LPAREN, - ACTIONS(6396), 1, anon_sym_LT, - STATE(3186), 1, - sym_arguments, - STATE(3296), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152065] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + anon_sym_QMARK, + [152494] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8206), 1, + ACTIONS(8300), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152082] = 3, - ACTIONS(7932), 1, - anon_sym_RBRACE, + [152511] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8294), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152528] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8302), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4156), 3, - anon_sym_AMP, + [152545] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, + ACTIONS(6603), 1, anon_sym_extends, - [152095] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(8304), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8208), 1, - sym_html_character_reference, - ACTIONS(8210), 1, - anon_sym_DQUOTE, - ACTIONS(8212), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4547), 1, - aux_sym__jsx_string_repeat1, - [152114] = 6, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8210), 1, - anon_sym_SQUOTE, - ACTIONS(8214), 1, - sym_html_character_reference, - ACTIONS(8216), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4551), 1, - aux_sym__jsx_string_repeat2, - [152133] = 5, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - ACTIONS(8218), 1, - anon_sym_GT, - STATE(5384), 1, - sym_type_parameter, + [152562] = 3, + ACTIONS(8306), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152150] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [152575] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8220), 1, - anon_sym_RBRACK, + ACTIONS(8308), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152167] = 2, + [152592] = 4, + ACTIONS(7377), 1, + anon_sym_EQ, + STATE(5404), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6001), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8310), 2, anon_sym_COMMA, - anon_sym_SEMI, - [152178] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + anon_sym_RBRACE, + [152607] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8222), 1, + ACTIONS(8312), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152195] = 5, - ACTIONS(8224), 1, - anon_sym_LBRACE, - ACTIONS(8226), 1, - anon_sym_COMMA, - ACTIONS(8229), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + [152624] = 5, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + ACTIONS(8314), 1, + anon_sym_GT, + STATE(5455), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152212] = 5, + [152641] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8231), 1, + ACTIONS(8316), 1, anon_sym_DQUOTE, - STATE(4536), 1, + STATE(4582), 1, aux_sym_string_repeat1, - ACTIONS(8233), 2, + ACTIONS(8318), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152229] = 5, - ACTIONS(1779), 1, - anon_sym_COMMA, - ACTIONS(8196), 1, - anon_sym_EQ, - ACTIONS(8235), 1, - anon_sym_RBRACK, - STATE(5175), 1, - aux_sym_array_pattern_repeat1, + [152658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152246] = 4, - ACTIONS(7237), 1, - anon_sym_EQ, - STATE(5562), 1, - sym__initializer, + ACTIONS(8320), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152669] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5444), 1, + sym_type_parameters, + STATE(5775), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8237), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [152261] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [152686] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8239), 1, + ACTIONS(8322), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152278] = 4, - ACTIONS(6303), 1, - anon_sym_EQ, - STATE(5535), 1, - sym_default_type, + [152703] = 4, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5371), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8241), 2, + ACTIONS(4999), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152718] = 4, + ACTIONS(8166), 1, anon_sym_COMMA, - anon_sym_GT, - [152293] = 3, - ACTIONS(6338), 1, - anon_sym_DOT, + STATE(4556), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [152306] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8243), 1, - anon_sym_RBRACK, + ACTIONS(8324), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152733] = 5, + ACTIONS(7341), 1, + anon_sym_COMMA, + ACTIONS(8326), 1, + anon_sym_LBRACE, + ACTIONS(8328), 1, + anon_sym_LBRACE_PIPE, + STATE(4501), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152750] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4558), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8330), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152765] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4558), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8332), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152780] = 4, + ACTIONS(8334), 1, + anon_sym_COMMA, + STATE(4558), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152323] = 5, + ACTIONS(8337), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152795] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8245), 1, + ACTIONS(8244), 1, anon_sym_DQUOTE, - STATE(4567), 1, + STATE(4580), 1, aux_sym_string_repeat1, - ACTIONS(8103), 2, + ACTIONS(8164), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152340] = 5, + [152812] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(8339), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152829] = 5, + ACTIONS(7341), 1, + anon_sym_COMMA, + ACTIONS(7792), 1, + anon_sym_LBRACE, + ACTIONS(7794), 1, + anon_sym_LBRACE_PIPE, + STATE(4555), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152846] = 5, ACTIONS(97), 1, anon_sym_AT, - ACTIONS(8247), 1, + ACTIONS(8341), 1, anon_sym_class, - STATE(1253), 1, + STATE(1227), 1, aux_sym_export_statement_repeat1, - STATE(1290), 1, + STATE(1282), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152357] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152863] = 3, + ACTIONS(6110), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8245), 1, - anon_sym_SQUOTE, - STATE(4572), 1, - aux_sym_string_repeat2, - ACTIONS(8105), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152374] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + sym_comment, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [152876] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(7254), 1, anon_sym_extends, - ACTIONS(8249), 1, - anon_sym_RBRACK, + ACTIONS(8343), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152893] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6021), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152904] = 4, + ACTIONS(8274), 1, + anon_sym_COMMA, + STATE(4525), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152391] = 4, - ACTIONS(7237), 1, + ACTIONS(8345), 2, + anon_sym_LBRACE, + anon_sym_implements, + [152919] = 4, + ACTIONS(7377), 1, anon_sym_EQ, - STATE(5229), 1, + STATE(5387), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8251), 2, + ACTIONS(8347), 2, anon_sym_COMMA, anon_sym_RPAREN, - [152406] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152934] = 5, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6695), 1, + anon_sym_LPAREN, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8253), 1, - anon_sym_SQUOTE, - STATE(4545), 1, - aux_sym_string_repeat2, - ACTIONS(8255), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152423] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + sym_comment, + [152951] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(7254), 1, anon_sym_extends, - ACTIONS(8257), 1, - anon_sym_COLON, + ACTIONS(8349), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152440] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [152968] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8259), 1, - anon_sym_RBRACK, + ACTIONS(8351), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152457] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8261), 1, - anon_sym_DQUOTE, - STATE(4567), 1, - aux_sym_string_repeat1, - ACTIONS(8103), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152474] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8261), 1, - anon_sym_SQUOTE, - STATE(4572), 1, - aux_sym_string_repeat2, - ACTIONS(8105), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8263), 1, - anon_sym_DQUOTE, - STATE(4567), 1, - aux_sym_string_repeat1, - ACTIONS(8103), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152508] = 6, + [152985] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8265), 1, + ACTIONS(8355), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(8353), 3, sym_html_character_reference, - ACTIONS(8268), 1, anon_sym_DQUOTE, - ACTIONS(8270), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(4547), 1, - aux_sym__jsx_string_repeat1, - [152527] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8263), 1, - anon_sym_SQUOTE, - STATE(4572), 1, - aux_sym_string_repeat2, - ACTIONS(8105), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152544] = 5, - ACTIONS(2478), 1, + anon_sym_AMP2, + [153000] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5329), 1, + STATE(5358), 1, sym_type_parameters, - STATE(5820), 1, + STATE(5700), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152561] = 5, - ACTIONS(2478), 1, + [153017] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5330), 1, + STATE(5359), 1, sym_type_parameters, - STATE(5807), 1, + STATE(5799), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152578] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8273), 1, - sym_html_character_reference, - ACTIONS(8276), 1, - anon_sym_SQUOTE, - ACTIONS(8278), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(4551), 1, - aux_sym__jsx_string_repeat2, - [152597] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, + [153034] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(7254), 1, anon_sym_extends, - ACTIONS(8281), 1, + ACTIONS(8357), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152614] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8283), 1, - anon_sym_DQUOTE, - STATE(4557), 1, - aux_sym_string_repeat1, - ACTIONS(8285), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152631] = 4, - ACTIONS(6303), 1, - anon_sym_EQ, - STATE(5537), 1, - sym_default_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8287), 2, - anon_sym_COMMA, + [153051] = 5, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + ACTIONS(8359), 1, anon_sym_GT, - [152646] = 2, + STATE(5455), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8289), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [152657] = 5, + [153068] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8283), 1, + ACTIONS(8316), 1, anon_sym_SQUOTE, - STATE(4558), 1, + STATE(4589), 1, aux_sym_string_repeat2, - ACTIONS(8291), 2, + ACTIONS(8361), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152674] = 5, + [153085] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8293), 1, + ACTIONS(8363), 1, anon_sym_DQUOTE, - STATE(4567), 1, + STATE(4559), 1, aux_sym_string_repeat1, - ACTIONS(8103), 2, + ACTIONS(8365), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152691] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8293), 1, - anon_sym_SQUOTE, - STATE(4572), 1, - aux_sym_string_repeat2, - ACTIONS(8105), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152708] = 4, - ACTIONS(8295), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7675), 2, - anon_sym_LBRACE, - anon_sym_GT, - [152723] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8298), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152740] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8300), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152751] = 5, + [153102] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8231), 1, + ACTIONS(8363), 1, anon_sym_SQUOTE, - STATE(4538), 1, + STATE(4509), 1, aux_sym_string_repeat2, - ACTIONS(8302), 2, + ACTIONS(8367), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152768] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8304), 1, - anon_sym_DQUOTE, - STATE(4571), 1, - aux_sym_string_repeat1, - ACTIONS(8306), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152785] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [153119] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8308), 1, + ACTIONS(8369), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152802] = 5, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - ACTIONS(8310), 1, - anon_sym_GT, - STATE(5384), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152819] = 4, - ACTIONS(8312), 1, - anon_sym_COMMA, - STATE(4566), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5567), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [152834] = 5, + [153136] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8315), 1, + ACTIONS(8371), 1, anon_sym_DQUOTE, - STATE(4567), 1, + STATE(4580), 1, aux_sym_string_repeat1, - ACTIONS(8317), 2, + ACTIONS(8373), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152851] = 5, + [153153] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8304), 1, + ACTIONS(8376), 1, anon_sym_SQUOTE, STATE(4581), 1, aux_sym_string_repeat2, - ACTIONS(8320), 2, + ACTIONS(8378), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152868] = 3, - ACTIONS(8322), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3758), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [152881] = 4, - ACTIONS(8324), 1, - anon_sym_EQ, - STATE(5306), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [152896] = 5, + [153170] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8326), 1, + ACTIONS(8381), 1, anon_sym_DQUOTE, - STATE(4567), 1, + STATE(4580), 1, aux_sym_string_repeat1, - ACTIONS(8103), 2, + ACTIONS(8164), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152913] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8328), 1, - anon_sym_SQUOTE, - STATE(4572), 1, - aux_sym_string_repeat2, - ACTIONS(8330), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152930] = 5, - ACTIONS(1653), 1, - anon_sym_while, - ACTIONS(2444), 1, - anon_sym_LBRACE, - ACTIONS(6316), 1, - anon_sym_DOT, - STATE(911), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152947] = 5, - ACTIONS(1653), 1, - anon_sym_while, - ACTIONS(2444), 1, - anon_sym_LBRACE, - ACTIONS(6651), 1, - anon_sym_DOT, - STATE(911), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152964] = 4, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5353), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4999), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152979] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, - ACTIONS(8333), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152996] = 5, - ACTIONS(2478), 1, + [153187] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5362), 1, + STATE(5557), 1, sym_type_parameters, - STATE(5645), 1, + STATE(5676), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153013] = 5, - ACTIONS(2478), 1, + [153204] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5364), 1, + STATE(5560), 1, sym_type_parameters, - STATE(5797), 1, + STATE(5695), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153030] = 4, - ACTIONS(6328), 1, - anon_sym_STAR, - ACTIONS(6332), 1, - anon_sym_LBRACE, + [153221] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(8383), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5982), 2, - sym_namespace_import, - sym_named_imports, - [153045] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, + [153238] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(7254), 1, anon_sym_extends, - ACTIONS(8335), 1, + ACTIONS(8385), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153062] = 5, + [153255] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8326), 1, + ACTIONS(8209), 1, anon_sym_SQUOTE, - STATE(4572), 1, + STATE(4541), 1, aux_sym_string_repeat2, - ACTIONS(8105), 2, + ACTIONS(8387), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [153079] = 4, - ACTIONS(3758), 1, - anon_sym_COLON, - ACTIONS(4429), 1, - anon_sym_EQ, + [153272] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3548), 1, + sym_formal_parameters, + STATE(5561), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8337), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [153094] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, - ACTIONS(8339), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, + [153289] = 5, + ACTIONS(3), 1, sym_comment, - [153111] = 4, - ACTIONS(8341), 1, - anon_sym_COMMA, - STATE(4584), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8381), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153306] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4744), 2, + ACTIONS(8389), 4, sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, anon_sym_SEMI, - [153126] = 6, + [153317] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8097), 1, - anon_sym_SQUOTE, - ACTIONS(8344), 1, - sym_html_character_reference, - ACTIONS(8346), 1, + ACTIONS(8355), 1, sym_unescaped_single_jsx_string_fragment, - STATE(4523), 1, - aux_sym__jsx_string_repeat2, - [153145] = 3, - ACTIONS(8348), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [153158] = 4, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5521), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8350), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [153173] = 5, + ACTIONS(8353), 3, + sym_html_character_reference, + anon_sym_SQUOTE, + anon_sym_AMP2, + [153332] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8352), 1, + ACTIONS(8199), 1, anon_sym_DQUOTE, - STATE(4462), 1, + STATE(4511), 1, aux_sym_string_repeat1, - ACTIONS(8354), 2, + ACTIONS(8391), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [153190] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, - ACTIONS(8356), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153207] = 5, - ACTIONS(97), 1, - anon_sym_AT, - ACTIONS(8358), 1, - anon_sym_class, - STATE(1253), 1, - aux_sym_export_statement_repeat1, - STATE(1290), 1, - sym_decorator, + [153349] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8393), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153224] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8352), 1, - anon_sym_SQUOTE, - STATE(4463), 1, - aux_sym_string_repeat2, - ACTIONS(8360), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [153241] = 5, - ACTIONS(2478), 1, + [153366] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5561), 1, + STATE(5488), 1, sym_type_parameters, - STATE(5673), 1, + STATE(5935), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153258] = 5, - ACTIONS(2478), 1, + [153383] = 5, + ACTIONS(2470), 1, anon_sym_LT, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5564), 1, + STATE(5275), 1, sym_type_parameters, - STATE(5692), 1, + STATE(5952), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153275] = 5, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, + [153400] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, anon_sym_PIPE, - ACTIONS(6621), 1, + ACTIONS(6603), 1, anon_sym_extends, - ACTIONS(8362), 1, + ACTIONS(8395), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153292] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, - ACTIONS(8364), 1, - anon_sym_QMARK, + [153417] = 3, + ACTIONS(7892), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153309] = 5, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - ACTIONS(8366), 1, - anon_sym_GT, - STATE(5384), 1, - sym_type_parameter, + ACTIONS(4190), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [153430] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8397), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153326] = 5, - ACTIONS(8368), 1, - sym_identifier, - STATE(4403), 1, - sym_nested_type_identifier, - STATE(5124), 1, - sym_generic_type, - STATE(5806), 1, - sym_nested_identifier, + [153447] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8399), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153343] = 5, - ACTIONS(7339), 1, - anon_sym_COMMA, - ACTIONS(8370), 1, - anon_sym_LBRACE, - ACTIONS(8372), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + [153464] = 5, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153360] = 5, - ACTIONS(8374), 1, - sym_identifier, - STATE(3776), 1, - sym_nested_type_identifier, - STATE(4469), 1, - sym_generic_type, - STATE(5806), 1, - sym_nested_identifier, + [153481] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4533), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153377] = 4, - ACTIONS(8135), 1, + ACTIONS(8401), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153496] = 4, + ACTIONS(8166), 1, anon_sym_COMMA, - STATE(4464), 1, - aux_sym_extends_clause_repeat1, + STATE(4534), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8376), 2, - anon_sym_LBRACE, - anon_sym_implements, - [153392] = 5, - ACTIONS(7339), 1, - anon_sym_COMMA, - ACTIONS(8378), 1, - anon_sym_LBRACE, - ACTIONS(8380), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + ACTIONS(8403), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153511] = 4, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(5427), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153409] = 5, - ACTIONS(7339), 1, + ACTIONS(8405), 2, anon_sym_COMMA, - ACTIONS(8378), 1, - anon_sym_LBRACE, - ACTIONS(8380), 1, - anon_sym_LBRACE_PIPE, - STATE(4528), 1, - aux_sym_extends_type_clause_repeat1, + anon_sym_GT, + [153526] = 5, + ACTIONS(6360), 1, + anon_sym_LPAREN, + ACTIONS(6366), 1, + anon_sym_LT, + STATE(3255), 1, + sym_arguments, + STATE(3463), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153426] = 5, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, + [153543] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, anon_sym_PIPE, - ACTIONS(7275), 1, + ACTIONS(7254), 1, anon_sym_extends, - ACTIONS(8382), 1, + ACTIONS(8407), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153443] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [153560] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5523), 1, + sym_type_parameters, + STATE(5883), 1, + sym_formal_parameters, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8253), 1, - anon_sym_DQUOTE, - STATE(4544), 1, - aux_sym_string_repeat1, - ACTIONS(8384), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [153460] = 2, + sym_comment, + [153577] = 5, + ACTIONS(7341), 1, + anon_sym_COMMA, + ACTIONS(8326), 1, + anon_sym_LBRACE, + ACTIONS(8328), 1, + anon_sym_LBRACE_PIPE, + STATE(4501), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, + [153594] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153470] = 4, - ACTIONS(8388), 1, + ACTIONS(5397), 1, + anon_sym_RPAREN, + STATE(4989), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153608] = 4, + ACTIONS(8409), 1, sym_identifier, - ACTIONS(8390), 1, + ACTIONS(8411), 1, anon_sym_LBRACK, - ACTIONS(8392), 1, + ACTIONS(8413), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153484] = 4, - ACTIONS(8394), 1, + [153622] = 4, + ACTIONS(8415), 1, sym_identifier, - ACTIONS(8396), 1, + ACTIONS(8417), 1, anon_sym_LBRACK, - ACTIONS(8398), 1, + ACTIONS(8419), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153498] = 4, - ACTIONS(8400), 1, + [153636] = 4, + ACTIONS(8421), 1, sym_identifier, - ACTIONS(8402), 1, + ACTIONS(8423), 1, anon_sym_LBRACK, - ACTIONS(8404), 1, + ACTIONS(8425), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153512] = 4, - ACTIONS(8406), 1, + [153650] = 4, + ACTIONS(8427), 1, sym_identifier, - ACTIONS(8408), 1, + ACTIONS(8429), 1, anon_sym_LBRACK, - ACTIONS(8410), 1, + ACTIONS(8431), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153526] = 4, - ACTIONS(2548), 1, + [153664] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153674] = 4, + ACTIONS(2550), 1, anon_sym_RBRACK, - ACTIONS(8412), 1, + ACTIONS(8435), 1, anon_sym_COMMA, - STATE(5104), 1, + STATE(4759), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153540] = 2, + [153688] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8414), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153550] = 4, - ACTIONS(8416), 1, - anon_sym_COMMA, - ACTIONS(8419), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + [153698] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153564] = 2, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153574] = 2, + [153718] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153584] = 4, - ACTIONS(8423), 1, + [153728] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8426), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [153738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153598] = 2, + ACTIONS(7367), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [153748] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153608] = 4, - ACTIONS(1641), 1, - anon_sym_RPAREN, - ACTIONS(8430), 1, - anon_sym_COMMA, - STATE(4847), 1, - aux_sym_formal_parameters_repeat1, + [153758] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153622] = 4, - ACTIONS(5533), 1, + ACTIONS(8439), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8432), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [153768] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153636] = 4, - ACTIONS(1928), 1, + ACTIONS(8437), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8434), 1, - anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153650] = 4, - ACTIONS(1779), 1, + ACTIONS(8441), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8436), 1, - anon_sym_RBRACK, - STATE(5177), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [153788] = 4, + ACTIONS(8443), 1, + anon_sym_COMMA, + ACTIONS(8446), 1, + anon_sym_RPAREN, + STATE(4625), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153664] = 2, + [153802] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153674] = 4, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(8440), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, + [153812] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153688] = 3, - ACTIONS(8442), 1, + ACTIONS(8450), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153822] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6778), 2, - anon_sym_in, - anon_sym_of, - [153700] = 4, - ACTIONS(1928), 1, + ACTIONS(8448), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(4819), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153832] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153714] = 2, + ACTIONS(8441), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153842] = 3, + ACTIONS(4236), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7347), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [153724] = 2, + ACTIONS(4238), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [153854] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8452), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153734] = 2, + [153864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153744] = 2, + [153874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153754] = 3, - ACTIONS(8446), 1, - anon_sym_as, + [153884] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8454), 1, + anon_sym_RBRACE, + STATE(4652), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153898] = 3, + ACTIONS(4262), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8448), 2, + ACTIONS(4264), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [153766] = 2, + anon_sym_LBRACE_PIPE, + [153910] = 3, + ACTIONS(8456), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8450), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [153776] = 2, + ACTIONS(8004), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [153922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153786] = 2, + [153932] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8458), 1, + anon_sym_RBRACE, + STATE(4663), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153796] = 4, + [153946] = 4, ACTIONS(3938), 1, anon_sym_LPAREN, - ACTIONS(8454), 1, + ACTIONS(8460), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1609), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153810] = 2, + [153960] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153820] = 2, + [153970] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153830] = 2, + [153980] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153840] = 2, + [153990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153850] = 2, + [154000] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153860] = 2, + [154010] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153870] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153884] = 4, + [154020] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5336), 1, + ACTIONS(5393), 1, anon_sym_RPAREN, - STATE(4652), 1, + STATE(4658), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153898] = 4, + [154034] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5336), 1, + ACTIONS(5393), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4485), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153912] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8456), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153922] = 2, + [154048] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153932] = 2, + [154058] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153942] = 4, + [154068] = 4, ACTIONS(6316), 1, anon_sym_DOT, - ACTIONS(6601), 1, + ACTIONS(6593), 1, anon_sym_COLON, - ACTIONS(8460), 1, + ACTIONS(8466), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153956] = 2, + [154082] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153966] = 4, - ACTIONS(4535), 1, - anon_sym_LPAREN, - ACTIONS(8462), 1, - anon_sym_DOT, - STATE(1893), 1, - sym_arguments, + [154092] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8468), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153980] = 4, - ACTIONS(8464), 1, + [154106] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8466), 1, + anon_sym_SEMI, + [154116] = 4, + ACTIONS(8470), 1, + anon_sym_COMMA, + ACTIONS(8472), 1, anon_sym_RBRACK, - STATE(4659), 1, + STATE(4662), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153994] = 4, - ACTIONS(4080), 1, + [154130] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(8474), 1, + anon_sym_LPAREN, + STATE(771), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154144] = 4, + ACTIONS(4074), 1, anon_sym_extends, - ACTIONS(8468), 1, - anon_sym_AMP, - ACTIONS(8470), 1, + ACTIONS(8476), 1, + anon_sym_AMP3, + ACTIONS(8478), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154008] = 2, + [154158] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154018] = 4, + [154168] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8472), 1, + ACTIONS(8480), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4485), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154032] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8421), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154042] = 4, - ACTIONS(3212), 1, + [154182] = 4, + ACTIONS(3174), 1, anon_sym_GT, - ACTIONS(8474), 1, + ACTIONS(8482), 1, anon_sym_COMMA, - STATE(4559), 1, + STATE(4479), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154056] = 4, - ACTIONS(8476), 1, - anon_sym_COMMA, - ACTIONS(8479), 1, - anon_sym_GT, - STATE(4655), 1, - aux_sym_type_parameters_repeat1, + [154196] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154070] = 2, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154080] = 4, - ACTIONS(7126), 1, - anon_sym_RBRACE, - ACTIONS(8481), 1, + [154216] = 4, + ACTIONS(2566), 1, + anon_sym_RBRACK, + ACTIONS(8484), 1, anon_sym_COMMA, - STATE(4881), 1, - aux_sym_export_clause_repeat1, + STATE(4759), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154094] = 4, - ACTIONS(8483), 1, - sym_identifier, - STATE(3792), 1, - sym_decorator_member_expression, - STATE(5915), 1, - sym_decorator_call_expression, + [154230] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8486), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154108] = 4, - ACTIONS(2568), 1, - anon_sym_RBRACK, - ACTIONS(8485), 1, - anon_sym_COMMA, - STATE(5104), 1, - aux_sym_tuple_type_repeat1, + [154244] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154122] = 2, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154132] = 2, + [154264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154142] = 2, + [154274] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154152] = 4, - ACTIONS(8149), 1, - anon_sym_GT, - ACTIONS(8489), 1, - anon_sym_COMMA, - STATE(4655), 1, - aux_sym_type_parameters_repeat1, + [154284] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154166] = 2, + ACTIONS(8488), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154294] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154176] = 4, - ACTIONS(5027), 1, + [154304] = 4, + ACTIONS(8490), 1, anon_sym_COMMA, - ACTIONS(8440), 1, + ACTIONS(8493), 1, anon_sym_RBRACE, - STATE(5060), 1, - aux_sym_object_pattern_repeat1, + STATE(4670), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154190] = 4, - ACTIONS(3530), 1, - anon_sym_COLON, - ACTIONS(8493), 1, - anon_sym_RPAREN, - STATE(5868), 1, - sym_type_annotation, + [154318] = 4, + ACTIONS(8495), 1, + anon_sym_COMMA, + ACTIONS(8498), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154204] = 4, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1575), 1, - anon_sym_LBRACE, - STATE(4013), 1, - sym_object_type, + [154332] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154218] = 2, + ACTIONS(8500), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [154342] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154228] = 2, + [154352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154238] = 2, + [154362] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154248] = 2, + [154372] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154258] = 3, - ACTIONS(8495), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7725), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [154270] = 4, - ACTIONS(6390), 1, + [154382] = 4, + ACTIONS(6360), 1, anon_sym_LPAREN, - ACTIONS(8497), 1, + ACTIONS(8504), 1, anon_sym_DOT, - STATE(3286), 1, + STATE(3261), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154284] = 4, - ACTIONS(1928), 1, + [154396] = 4, + ACTIONS(8506), 1, anon_sym_COMMA, - ACTIONS(5299), 1, - anon_sym_RPAREN, - STATE(4826), 1, - aux_sym_array_repeat1, + ACTIONS(8509), 1, + anon_sym_RBRACE, + STATE(4678), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154298] = 4, + [154410] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5342), 1, + ACTIONS(5597), 1, anon_sym_RPAREN, - STATE(4684), 1, + STATE(4690), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154312] = 4, + [154424] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5342), 1, + ACTIONS(5597), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4485), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154326] = 2, + [154438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154336] = 4, - ACTIONS(1928), 1, + [154448] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5299), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [154458] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154350] = 2, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154468] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154478] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154360] = 2, + [154488] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154370] = 2, + [154498] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154380] = 4, - ACTIONS(8499), 1, + [154508] = 4, + ACTIONS(8511), 1, anon_sym_COMMA, - ACTIONS(8501), 1, + ACTIONS(8513), 1, anon_sym_RBRACK, - STATE(4695), 1, + STATE(4701), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154394] = 4, - ACTIONS(6964), 1, - anon_sym_AMP, - ACTIONS(6966), 1, + [154522] = 4, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, anon_sym_PIPE, - ACTIONS(6968), 1, + ACTIONS(6883), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154408] = 4, + [154536] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8503), 1, + ACTIONS(8515), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4485), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154422] = 2, + [154550] = 3, + ACTIONS(8517), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8519), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [154432] = 4, - ACTIONS(3176), 1, + [154562] = 4, + ACTIONS(3164), 1, anon_sym_GT, - ACTIONS(8505), 1, + ACTIONS(8521), 1, anon_sym_COMMA, - STATE(4559), 1, + STATE(4479), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154446] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8432), 1, - anon_sym_RBRACE, - STATE(5094), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154460] = 2, + [154576] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154470] = 2, + [154586] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8458), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154480] = 4, - ACTIONS(8507), 1, + [154610] = 4, + ACTIONS(8523), 1, sym_identifier, - ACTIONS(8509), 1, + ACTIONS(8525), 1, anon_sym_LBRACK, - ACTIONS(8511), 1, + ACTIONS(8527), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154494] = 4, - ACTIONS(8513), 1, + [154624] = 4, + ACTIONS(8529), 1, sym_identifier, - ACTIONS(8515), 1, + ACTIONS(8531), 1, anon_sym_LBRACK, - ACTIONS(8517), 1, + ACTIONS(8533), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154508] = 4, - ACTIONS(8519), 1, + [154638] = 4, + ACTIONS(8535), 1, sym_identifier, - ACTIONS(8521), 1, + ACTIONS(8537), 1, anon_sym_LBRACK, - ACTIONS(8523), 1, + ACTIONS(8539), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154522] = 4, - ACTIONS(8525), 1, + [154652] = 4, + ACTIONS(8541), 1, sym_identifier, - ACTIONS(8527), 1, + ACTIONS(8543), 1, anon_sym_LBRACK, - ACTIONS(8529), 1, + ACTIONS(8545), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154536] = 2, + [154666] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154546] = 4, - ACTIONS(2576), 1, + [154676] = 4, + ACTIONS(2582), 1, anon_sym_RBRACK, - ACTIONS(8531), 1, + ACTIONS(8547), 1, anon_sym_COMMA, - STATE(5104), 1, + STATE(4759), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154560] = 2, + [154690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154570] = 2, + [154700] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154580] = 2, + [154710] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154590] = 2, + [154720] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8533), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154600] = 2, + [154730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154610] = 2, + [154740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154620] = 2, + [154750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154630] = 2, + [154760] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154640] = 2, + [154770] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, + ACTIONS(7405), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [154780] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5395), 3, anon_sym_COMMA, - anon_sym_SEMI, - [154650] = 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [154790] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154660] = 2, + [154800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154670] = 4, + [154810] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5356), 1, + ACTIONS(5189), 1, anon_sym_RPAREN, - STATE(4711), 1, + STATE(4719), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154684] = 4, + [154824] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5356), 1, + ACTIONS(5189), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4485), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154698] = 2, + [154838] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154848] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154708] = 2, + [154858] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154718] = 4, + [154868] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8535), 1, + ACTIONS(8549), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4485), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154732] = 2, + [154882] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154742] = 4, - ACTIONS(3196), 1, + [154892] = 4, + ACTIONS(3208), 1, anon_sym_GT, - ACTIONS(8537), 1, + ACTIONS(8551), 1, anon_sym_COMMA, - STATE(4559), 1, + STATE(4479), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154756] = 3, - ACTIONS(8539), 1, - anon_sym_as, + [154906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 2, + ACTIONS(8448), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [154768] = 4, - ACTIONS(6508), 1, - anon_sym_type, - ACTIONS(8541), 1, - sym_identifier, - STATE(5456), 1, - sym__import_identifier, + anon_sym_SEMI, + [154916] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154782] = 2, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154936] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8533), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154792] = 2, + [154946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154802] = 4, - ACTIONS(6508), 1, - anon_sym_type, - ACTIONS(8543), 1, - sym_identifier, - STATE(5457), 1, - sym__import_identifier, + [154956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154816] = 2, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154826] = 2, + [154976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8545), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154836] = 4, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8547), 1, - anon_sym_GT, + [154986] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154850] = 2, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8533), 3, + ACTIONS(8462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154860] = 4, + [155006] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5358), 1, + ACTIONS(5314), 1, anon_sym_RPAREN, - STATE(4729), 1, + STATE(4737), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154874] = 4, + [155020] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(5358), 1, + ACTIONS(5314), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4485), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154888] = 2, + [155034] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154898] = 4, - ACTIONS(6780), 1, - anon_sym_RBRACE, - ACTIONS(8549), 1, - anon_sym_COMMA, - STATE(5106), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154912] = 3, - ACTIONS(7207), 1, - anon_sym_DOT, + [155044] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8551), 2, + ACTIONS(8464), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [154924] = 2, + [155054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154934] = 4, + [155064] = 4, ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8553), 1, + ACTIONS(8555), 1, anon_sym_RPAREN, - STATE(4566), 1, + STATE(4485), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154948] = 2, + [155078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8555), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154958] = 4, - ACTIONS(3200), 1, + [155088] = 4, + ACTIONS(3206), 1, anon_sym_GT, ACTIONS(8557), 1, anon_sym_COMMA, - STATE(4559), 1, + STATE(4479), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154972] = 2, + [155102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154982] = 2, + [155112] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8555), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154992] = 2, + [155122] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155002] = 2, + [155132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8559), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155012] = 2, + [155142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155022] = 2, + [155152] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155032] = 3, - ACTIONS(7209), 1, - anon_sym_DOT, + [155162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8551), 2, + ACTIONS(8437), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [155044] = 2, + [155172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155054] = 2, + [155182] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155064] = 2, + [155192] = 4, + ACTIONS(8559), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, + anon_sym_await, + STATE(47), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155074] = 2, + [155206] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155084] = 4, - ACTIONS(8561), 1, - anon_sym_LPAREN, - ACTIONS(8563), 1, - anon_sym_await, - STATE(50), 1, - sym__for_header, + [155216] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155098] = 2, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155226] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155108] = 2, + [155236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155118] = 2, + [155246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155128] = 2, + [155256] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155138] = 2, + [155266] = 3, + ACTIONS(8158), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, + ACTIONS(8565), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155148] = 4, - ACTIONS(8129), 1, + anon_sym_RBRACK, + [155278] = 4, + ACTIONS(8219), 1, anon_sym_from, - ACTIONS(8565), 1, + ACTIONS(8567), 1, anon_sym_as, - STATE(5467), 1, + STATE(5226), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155162] = 4, + [155292] = 4, ACTIONS(2240), 1, anon_sym_LBRACE, - ACTIONS(8567), 1, + ACTIONS(8569), 1, sym_identifier, - STATE(4506), 1, + STATE(4521), 1, sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155176] = 2, + [155306] = 4, + ACTIONS(8571), 1, + anon_sym_COMMA, + ACTIONS(8574), 1, + anon_sym_RBRACK, + STATE(4759), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155320] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155186] = 2, + [155330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155196] = 4, - ACTIONS(8571), 1, - sym_identifier, - ACTIONS(8573), 1, - anon_sym_LBRACK, - ACTIONS(8575), 1, - sym_private_property_identifier, + [155340] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155210] = 2, + ACTIONS(8576), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [155350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8577), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155220] = 2, + [155360] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8579), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155230] = 2, + [155370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155240] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8428), 3, - sym__automatic_semicolon, + [155380] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155250] = 2, + ACTIONS(8578), 1, + anon_sym_RBRACK, + STATE(4485), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8581), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155260] = 2, + [155394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8583), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155270] = 4, - ACTIONS(7157), 1, + [155404] = 4, + ACTIONS(7202), 1, anon_sym_const, - ACTIONS(8147), 1, + ACTIONS(8215), 1, sym_identifier, - STATE(5029), 1, + STATE(4874), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155284] = 2, + [155418] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6510), 3, + ACTIONS(8450), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [155294] = 2, + anon_sym_SEMI, + [155428] = 4, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8580), 1, + anon_sym_RBRACK, + STATE(4776), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, - sym__automatic_semicolon, + [155442] = 4, + ACTIONS(8582), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155304] = 2, + ACTIONS(8584), 1, + anon_sym_GT, + STATE(4890), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155456] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155314] = 4, - ACTIONS(8585), 1, + [155466] = 4, + ACTIONS(8586), 1, sym_identifier, - STATE(3870), 1, + STATE(3902), 1, sym_decorator_member_expression, - STATE(5795), 1, + STATE(5669), 1, sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155328] = 2, + [155480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155338] = 2, + [155490] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155348] = 2, + [155500] = 4, + ACTIONS(8565), 1, + anon_sym_RBRACK, + ACTIONS(8588), 1, + anon_sym_COMMA, + STATE(4776), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155358] = 3, - ACTIONS(8587), 1, - anon_sym_EQ, + [155514] = 4, + ACTIONS(6550), 1, + anon_sym_type, + ACTIONS(8591), 1, + sym_identifier, + STATE(5265), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8589), 2, - anon_sym_COMMA, - anon_sym_from, - [155370] = 2, + [155528] = 4, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + STATE(5455), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8591), 3, + [155542] = 3, + ACTIONS(7832), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [155380] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, + ACTIONS(7834), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155390] = 2, + anon_sym_LBRACE_PIPE, + [155554] = 4, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + STATE(4590), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8121), 3, + [155568] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155400] = 2, + [155578] = 4, + ACTIONS(6550), 1, + anon_sym_type, + ACTIONS(8593), 1, + sym_identifier, + STATE(5276), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, + [155592] = 4, + ACTIONS(8595), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155410] = 2, + ACTIONS(8598), 1, + anon_sym_RBRACE, + STATE(4783), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, - sym__automatic_semicolon, + [155606] = 3, + ACTIONS(4374), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4376), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155420] = 3, - ACTIONS(7207), 1, - anon_sym_DOT, + anon_sym_LBRACE_PIPE, + [155618] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8593), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [155432] = 3, - ACTIONS(7209), 1, - anon_sym_DOT, + ACTIONS(7320), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [155628] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8593), 2, + ACTIONS(8437), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [155444] = 2, + [155638] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155454] = 2, + [155648] = 3, + ACTIONS(4106), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, + ACTIONS(4108), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155464] = 2, + anon_sym_LBRACE_PIPE, + [155660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155474] = 2, + [155670] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155484] = 2, + [155680] = 3, + ACTIONS(4144), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, + ACTIONS(4146), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155494] = 2, + anon_sym_LBRACE_PIPE, + [155692] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155504] = 2, + [155702] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8595), 3, - sym__automatic_semicolon, + ACTIONS(6552), 3, anon_sym_COMMA, - anon_sym_SEMI, - [155514] = 4, - ACTIONS(2492), 1, - anon_sym_while, - ACTIONS(8597), 1, - anon_sym_else, - STATE(850), 1, - sym_else_clause, + anon_sym_RBRACE, + anon_sym_from, + [155712] = 3, + ACTIONS(8600), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155528] = 4, - ACTIONS(8599), 1, + ACTIONS(8602), 2, anon_sym_COMMA, - ACTIONS(8601), 1, - anon_sym_RBRACK, - STATE(4870), 1, - aux_sym_tuple_type_repeat1, + anon_sym_from, + [155724] = 4, + ACTIONS(2476), 1, + anon_sym_while, + ACTIONS(8604), 1, + anon_sym_else, + STATE(861), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155542] = 2, + [155738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155552] = 4, - ACTIONS(5964), 1, + [155748] = 4, + ACTIONS(6038), 1, anon_sym_LPAREN, - ACTIONS(8603), 1, + ACTIONS(8606), 1, anon_sym_DOT, - STATE(2890), 1, + STATE(2892), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155566] = 4, - ACTIONS(4979), 1, - anon_sym_extends, - ACTIONS(8605), 1, - anon_sym_AMP, - ACTIONS(8607), 1, - anon_sym_PIPE, + [155762] = 3, + ACTIONS(8608), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155580] = 4, - ACTIONS(8609), 1, - sym_identifier, - ACTIONS(8611), 1, - anon_sym_LBRACK, - ACTIONS(8613), 1, - sym_private_property_identifier, + ACTIONS(8610), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [155774] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155594] = 4, - ACTIONS(8615), 1, - sym_identifier, - ACTIONS(8617), 1, - anon_sym_LBRACK, - ACTIONS(8619), 1, - sym_private_property_identifier, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155784] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155608] = 2, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155794] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155618] = 4, - ACTIONS(8621), 1, - sym_identifier, - ACTIONS(8623), 1, - anon_sym_LBRACK, - ACTIONS(8625), 1, - sym_private_property_identifier, + [155804] = 4, + ACTIONS(8612), 1, + anon_sym_COMMA, + ACTIONS(8614), 1, + anon_sym_RBRACE, + STATE(4783), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155632] = 2, + [155818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155642] = 4, - ACTIONS(8627), 1, - sym_identifier, - ACTIONS(8629), 1, - anon_sym_LBRACK, - ACTIONS(8631), 1, - sym_private_property_identifier, + [155828] = 4, + ACTIONS(8616), 1, + anon_sym_COMMA, + ACTIONS(8618), 1, + anon_sym_RBRACE, + STATE(4783), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155656] = 2, + [155842] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8620), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155666] = 2, + [155852] = 4, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(8622), 1, + anon_sym_EQ, + STATE(5758), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155866] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155676] = 2, + [155876] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8624), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [155886] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8595), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155686] = 2, + [155896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155696] = 2, + [155906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155706] = 2, + [155916] = 4, + ACTIONS(8628), 1, + anon_sym_COMMA, + ACTIONS(8631), 1, + anon_sym_RBRACE, + STATE(4812), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155716] = 3, - ACTIONS(8633), 1, - anon_sym_as, + [155940] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8589), 2, + ACTIONS(8633), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155950] = 4, + ACTIONS(5029), 1, anon_sym_COMMA, + ACTIONS(8454), 1, anon_sym_RBRACE, - [155728] = 4, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155964] = 4, ACTIONS(8635), 1, anon_sym_COMMA, ACTIONS(8637), 1, - anon_sym_GT, - STATE(5180), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RBRACE, + STATE(5213), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155978] = 4, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + STATE(5704), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155742] = 2, + [155992] = 3, + ACTIONS(8639), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8639), 3, - sym__automatic_semicolon, + ACTIONS(8641), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155752] = 2, + anon_sym_RBRACE, + [156004] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155762] = 2, + [156014] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8633), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155772] = 4, - ACTIONS(8641), 1, - anon_sym_COMMA, - ACTIONS(8643), 1, - anon_sym_RBRACE, - STATE(4726), 1, - aux_sym_named_imports_repeat1, + [156024] = 4, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155786] = 2, + [156038] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8643), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155796] = 4, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1495), 1, - anon_sym_LBRACE, - STATE(841), 1, - sym_object_type, + [156048] = 3, + ACTIONS(8645), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8602), 2, + anon_sym_COMMA, + anon_sym_from, + [156060] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8647), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155810] = 2, + [156074] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155820] = 4, - ACTIONS(2676), 1, - anon_sym_RBRACK, - ACTIONS(8645), 1, - anon_sym_COMMA, - STATE(5104), 1, - aux_sym_tuple_type_repeat1, + [156084] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155834] = 2, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155844] = 2, + [156104] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155854] = 2, + [156114] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155864] = 2, + [156124] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155874] = 2, + [156134] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155884] = 4, - ACTIONS(8647), 1, + [156144] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [156154] = 3, ACTIONS(8649), 1, - anon_sym_RBRACE, - STATE(4876), 1, - aux_sym_enum_body_repeat1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155898] = 2, + ACTIONS(8602), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [156166] = 4, + ACTIONS(8651), 1, + anon_sym_COMMA, + ACTIONS(8653), 1, + anon_sym_RBRACE, + STATE(5104), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, - sym__automatic_semicolon, + [156180] = 4, + ACTIONS(5029), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155908] = 4, - ACTIONS(7482), 1, - anon_sym_AMP, - ACTIONS(7484), 1, - anon_sym_PIPE, - ACTIONS(7486), 1, - anon_sym_extends, + ACTIONS(8655), 1, + anon_sym_RBRACE, + STATE(4905), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155922] = 2, + [156194] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8657), 1, + anon_sym_RBRACE, + STATE(4906), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, - sym__automatic_semicolon, + [156208] = 4, + ACTIONS(5235), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155932] = 4, - ACTIONS(1928), 1, + ACTIONS(8657), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156222] = 4, + ACTIONS(5029), 1, anon_sym_COMMA, - ACTIONS(8651), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, + ACTIONS(8655), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155946] = 2, + [156236] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8659), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155956] = 4, - ACTIONS(1033), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1575), 1, + [156246] = 4, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8264), 1, + anon_sym_RBRACK, + STATE(4770), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156260] = 3, + ACTIONS(8661), 1, anon_sym_LBRACE, - STATE(4087), 1, - sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155970] = 2, + ACTIONS(8130), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [156272] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8659), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155980] = 4, - ACTIONS(8653), 1, - anon_sym_COMMA, - ACTIONS(8655), 1, - anon_sym_RBRACE, - STATE(4887), 1, - aux_sym_enum_body_repeat1, + [156282] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155994] = 2, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156004] = 2, + [156302] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156014] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(8657), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, + [156312] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156028] = 2, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156322] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8663), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156038] = 4, - ACTIONS(3170), 1, - anon_sym_GT, - ACTIONS(8659), 1, + [156332] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8665), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + [156342] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156052] = 2, + ACTIONS(8633), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156062] = 4, - ACTIONS(3178), 1, - anon_sym_GT, - ACTIONS(8661), 1, + [156362] = 4, + ACTIONS(8667), 1, anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, + ACTIONS(8669), 1, + anon_sym_RPAREN, + STATE(4916), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156076] = 2, + [156376] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8633), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156086] = 2, + [156386] = 4, + ACTIONS(8671), 1, + sym_identifier, + ACTIONS(8673), 1, + anon_sym_require, + STATE(5109), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, + [156400] = 4, + ACTIONS(1869), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156096] = 2, + ACTIONS(8160), 1, + anon_sym_RBRACK, + STATE(4919), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7279), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [156106] = 4, - ACTIONS(5027), 1, + [156414] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8663), 1, - anon_sym_RBRACE, - STATE(5197), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5193), 1, + anon_sym_RBRACK, + STATE(4918), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156120] = 3, - ACTIONS(8665), 1, - anon_sym_EQ, + [156428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8589), 2, + ACTIONS(8553), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [156132] = 2, + anon_sym_SEMI, + [156438] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5193), 1, + anon_sym_RBRACK, + STATE(4485), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, + [156452] = 4, + ACTIONS(1869), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156142] = 2, + ACTIONS(8160), 1, + anon_sym_RBRACK, + STATE(4776), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8667), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156152] = 2, + [156466] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8643), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156162] = 2, + [156476] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156172] = 2, + [156486] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156182] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8669), 1, - anon_sym_RBRACE, - STATE(5207), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156196] = 2, + [156496] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8675), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156206] = 2, + [156506] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156216] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7285), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [156226] = 2, + [156516] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156236] = 2, + [156526] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8677), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [156246] = 4, - ACTIONS(8671), 1, + [156536] = 4, + ACTIONS(8679), 1, anon_sym_COMMA, - ACTIONS(8674), 1, - anon_sym_RPAREN, - STATE(4847), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8681), 1, + anon_sym_RBRACK, + STATE(5211), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156260] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8669), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + [156550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156274] = 4, - ACTIONS(5027), 1, + ACTIONS(8675), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8663), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [156560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156288] = 2, + ACTIONS(8683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156570] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156298] = 2, + [156580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156308] = 2, + [156590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8685), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156318] = 2, + [156600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156328] = 2, + [156610] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156338] = 4, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_require, - STATE(4738), 1, - sym_nested_identifier, + [156620] = 4, + ACTIONS(8687), 1, + anon_sym_COMMA, + ACTIONS(8689), 1, + anon_sym_GT, + STATE(4941), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156352] = 2, + [156634] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_RBRACK, + STATE(4766), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156362] = 2, + [156648] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8683), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156372] = 2, + [156658] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8659), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156382] = 2, + [156668] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156392] = 2, + [156678] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156402] = 4, - ACTIONS(8680), 1, - anon_sym_COMMA, - ACTIONS(8682), 1, - anon_sym_RPAREN, - STATE(4943), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156416] = 2, + [156688] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156426] = 2, + [156698] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156436] = 2, + [156708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156446] = 2, + [156718] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156456] = 2, + [156728] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156466] = 2, + [156738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8684), 3, + ACTIONS(8697), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156476] = 4, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, + [156748] = 4, + ACTIONS(8699), 1, sym_identifier, - STATE(5384), 1, - sym_type_parameter, + ACTIONS(8701), 1, + anon_sym_LBRACK, + ACTIONS(8703), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156490] = 2, + [156762] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8686), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [156500] = 4, - ACTIONS(2920), 1, - anon_sym_RBRACK, - ACTIONS(8688), 1, anon_sym_COMMA, - STATE(5104), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156514] = 2, + anon_sym_SEMI, + [156772] = 4, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156524] = 2, + [156786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156534] = 4, - ACTIONS(8690), 1, + [156796] = 4, + ACTIONS(8217), 1, + anon_sym_GT, + ACTIONS(8705), 1, anon_sym_COMMA, - ACTIONS(8692), 1, - anon_sym_RBRACE, - STATE(5133), 1, - aux_sym_enum_body_repeat1, + STATE(5092), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156548] = 2, + [156810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156558] = 2, + [156820] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8697), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156568] = 4, - ACTIONS(8694), 1, - anon_sym_COMMA, - ACTIONS(8696), 1, - anon_sym_RBRACE, - STATE(5133), 1, - aux_sym_enum_body_repeat1, + [156830] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156582] = 2, + ACTIONS(8697), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156840] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156592] = 2, + [156850] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7870), 3, + ACTIONS(8697), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156602] = 2, + [156860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156612] = 2, + [156870] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156622] = 4, - ACTIONS(8698), 1, - anon_sym_COMMA, - ACTIONS(8701), 1, - anon_sym_RBRACE, - STATE(4881), 1, - aux_sym_export_clause_repeat1, + [156880] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156636] = 2, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156646] = 2, + [156900] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156656] = 2, + [156910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8667), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156666] = 4, - ACTIONS(8703), 1, + [156920] = 4, + ACTIONS(5235), 1, anon_sym_COMMA, - ACTIONS(8705), 1, + ACTIONS(8709), 1, anon_sym_RBRACE, - STATE(5133), 1, - aux_sym_enum_body_repeat1, + STATE(4670), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156680] = 2, + [156934] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7870), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156690] = 4, - ACTIONS(8707), 1, + [156944] = 4, + ACTIONS(5029), 1, anon_sym_COMMA, - ACTIONS(8709), 1, + ACTIONS(8711), 1, anon_sym_RBRACE, - STATE(5133), 1, - aux_sym_enum_body_repeat1, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156704] = 2, + [156958] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8713), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, - sym__automatic_semicolon, + [156972] = 4, + ACTIONS(5235), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156714] = 4, - ACTIONS(8711), 1, - anon_sym_COMMA, - ACTIONS(8713), 1, - anon_sym_RPAREN, - STATE(4617), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8715), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156728] = 2, + [156986] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8715), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156738] = 2, + [156996] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156748] = 2, + [157006] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8717), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156758] = 2, + [157016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8719), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156768] = 2, + [157026] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8721), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156778] = 2, + [157036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156788] = 2, + [157046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156798] = 2, + [157056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156808] = 2, + [157066] = 4, + ACTIONS(8219), 1, + anon_sym_from, + ACTIONS(8567), 1, + anon_sym_as, + STATE(5377), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, + [157080] = 4, + ACTIONS(1645), 1, + anon_sym_RPAREN, + ACTIONS(8717), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156818] = 2, + STATE(4625), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156828] = 2, + [157094] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156838] = 4, - ACTIONS(1779), 1, + [157104] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8719), 1, + anon_sym_RBRACK, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157118] = 4, + ACTIONS(1869), 1, anon_sym_COMMA, - ACTIONS(8198), 1, + ACTIONS(8721), 1, anon_sym_RBRACK, - STATE(4620), 1, + STATE(4776), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156852] = 2, + [157132] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156862] = 2, + [157142] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156872] = 2, + [157152] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156882] = 2, + [157162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156892] = 2, + [157172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156902] = 2, + [157182] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156912] = 2, + [157192] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156922] = 2, + [157202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156932] = 2, + [157212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156942] = 2, + [157222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156952] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5253), 1, - anon_sym_RBRACK, - STATE(4619), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156966] = 2, + [157232] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156976] = 2, + [157242] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -265351,7 +265772,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156986] = 2, + [157252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -265359,1451 +265780,1421 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156996] = 2, + [157262] = 4, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(8725), 1, + anon_sym_DOT, + STATE(2043), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + [157276] = 4, + ACTIONS(6695), 1, + anon_sym_LPAREN, + ACTIONS(8606), 1, + anon_sym_DOT, + STATE(2892), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157290] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157006] = 2, + [157300] = 4, + ACTIONS(8727), 1, + sym_identifier, + STATE(3909), 1, + sym_decorator_member_expression, + STATE(5768), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8729), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [157016] = 2, + [157324] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157026] = 4, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(8733), 1, - anon_sym_EQ, - STATE(5706), 1, - sym_type_parameters, + [157334] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157040] = 2, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157050] = 4, - ACTIONS(1928), 1, + [157354] = 4, + ACTIONS(8359), 1, + anon_sym_GT, + ACTIONS(8729), 1, anon_sym_COMMA, - ACTIONS(5253), 1, - anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, + STATE(5092), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157064] = 2, + [157368] = 4, + ACTIONS(1017), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, + anon_sym_LBRACE, + STATE(4126), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + [157382] = 3, + ACTIONS(8731), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157074] = 4, - ACTIONS(1779), 1, - anon_sym_COMMA, - ACTIONS(8198), 1, - anon_sym_RBRACK, - STATE(5177), 1, - aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157088] = 4, - ACTIONS(6692), 1, - anon_sym_LPAREN, - ACTIONS(8603), 1, - anon_sym_DOT, - STATE(2890), 1, - sym_arguments, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + [157394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157102] = 3, - ACTIONS(4090), 1, + ACTIONS(7409), 3, anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [157404] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5397), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4092), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157114] = 2, + [157418] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157124] = 2, + [157428] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8733), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157134] = 2, + [157442] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157144] = 2, + [157452] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157154] = 2, + [157462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157164] = 2, + [157472] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157174] = 2, + [157482] = 4, + ACTIONS(1643), 1, + anon_sym_RPAREN, + ACTIONS(8735), 1, + anon_sym_COMMA, + STATE(4625), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + [157496] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157184] = 2, + [157506] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157194] = 2, + [157516] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157204] = 3, - ACTIONS(7801), 1, - anon_sym_EQ, + [157526] = 4, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(882), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3635), 2, - anon_sym_in, - anon_sym_of, - [157216] = 2, + [157540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157226] = 2, + [157550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8691), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157236] = 2, + [157560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(6021), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157246] = 2, + [157570] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157256] = 2, + [157580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8693), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157266] = 2, + [157590] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8695), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157276] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7257), 3, - anon_sym_LBRACE, + [157600] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6593), 1, anon_sym_COLON, - anon_sym_EQ_GT, - [157286] = 4, - ACTIONS(1627), 1, - anon_sym_RPAREN, - ACTIONS(8735), 1, - anon_sym_COMMA, - STATE(4847), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157300] = 4, - ACTIONS(1583), 1, - anon_sym_DQUOTE, - ACTIONS(1585), 1, - anon_sym_SQUOTE, - STATE(4510), 1, - sym_string, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157314] = 2, + ACTIONS(8737), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, - sym__automatic_semicolon, + [157614] = 4, + ACTIONS(5029), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157324] = 2, + ACTIONS(8739), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157334] = 2, + [157628] = 4, + ACTIONS(8741), 1, + sym_identifier, + ACTIONS(8743), 1, + anon_sym_LBRACK, + ACTIONS(8745), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, + [157642] = 4, + ACTIONS(7574), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157344] = 2, + ACTIONS(8747), 1, + anon_sym_LBRACE, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, + [157656] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157354] = 2, + ACTIONS(5304), 1, + anon_sym_RBRACK, + STATE(4485), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157364] = 2, + [157670] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157374] = 2, + [157680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157384] = 2, + [157690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157394] = 2, + [157700] = 4, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(8749), 1, + anon_sym_RPAREN, + STATE(5740), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157404] = 2, + [157714] = 3, + ACTIONS(7196), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8751), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [157414] = 2, + [157726] = 3, + ACTIONS(7180), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8751), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [157424] = 2, + [157738] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157434] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8386), 3, - sym__automatic_semicolon, + [157748] = 4, + ACTIONS(1869), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157444] = 4, - ACTIONS(8129), 1, - anon_sym_from, - ACTIONS(8565), 1, - anon_sym_as, - STATE(5304), 1, - sym__from_clause, + ACTIONS(8264), 1, + anon_sym_RBRACK, + STATE(4776), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157458] = 2, + [157762] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157468] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, + [157772] = 4, + ACTIONS(8753), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157478] = 2, + ACTIONS(8755), 1, + anon_sym_RBRACK, + STATE(5013), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157488] = 2, + [157786] = 4, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(8757), 1, + anon_sym_AMP3, + ACTIONS(8759), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157498] = 2, + [157800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(7990), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157508] = 2, + [157810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157518] = 2, + [157820] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5469), 1, + anon_sym_RPAREN, + STATE(5142), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157528] = 2, + [157834] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157538] = 2, + [157844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157548] = 2, + [157854] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157558] = 2, + [157864] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(7990), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157568] = 2, + [157874] = 4, + ACTIONS(1017), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, + anon_sym_LBRACE, + STATE(4280), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157578] = 2, + [157888] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157588] = 2, + [157898] = 4, + ACTIONS(8761), 1, + anon_sym_COMMA, + ACTIONS(8763), 1, + anon_sym_RBRACE, + STATE(5027), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, - sym__automatic_semicolon, + [157912] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157598] = 2, + ACTIONS(8765), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, - sym__automatic_semicolon, + [157926] = 4, + ACTIONS(3194), 1, + anon_sym_GT, + ACTIONS(8767), 1, anon_sym_COMMA, - anon_sym_SEMI, - [157608] = 2, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8731), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157618] = 2, + [157940] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8769), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157628] = 2, + [157950] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157638] = 2, + [157960] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8737), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157648] = 2, + [157970] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8739), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157658] = 2, + [157980] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157668] = 2, + [157990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157678] = 2, + [158000] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8739), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157688] = 2, + [158010] = 3, + ACTIONS(8773), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157698] = 2, + ACTIONS(7945), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [158022] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8741), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157708] = 2, + [158032] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157718] = 2, + [158042] = 4, + ACTIONS(8775), 1, + anon_sym_COMMA, + ACTIONS(8777), 1, + anon_sym_RPAREN, + STATE(4952), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6336), 3, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LT, - [157728] = 2, + [158056] = 3, + ACTIONS(8779), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, - sym__automatic_semicolon, + ACTIONS(8781), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157738] = 2, + anon_sym_RBRACE, + [158068] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8737), 3, + ACTIONS(8783), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [157748] = 2, + [158078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157758] = 2, + [158088] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5469), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8743), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157768] = 2, + [158102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157778] = 2, + [158112] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8745), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157788] = 2, + [158122] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8747), 3, + ACTIONS(8771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157798] = 2, + [158132] = 3, + ACTIONS(8158), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8739), 3, - sym__automatic_semicolon, + ACTIONS(8785), 2, anon_sym_COMMA, - anon_sym_SEMI, - [157808] = 2, + anon_sym_RBRACE, + [158144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8787), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157818] = 2, + [158154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8749), 3, + ACTIONS(8789), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157828] = 2, + [158164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8789), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157838] = 2, + [158174] = 4, + ACTIONS(2918), 1, + anon_sym_RBRACK, + ACTIONS(8791), 1, + anon_sym_COMMA, + STATE(4759), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8745), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157848] = 2, + [158188] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8737), 3, + ACTIONS(8793), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157858] = 4, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8751), 1, - anon_sym_GT, + [158198] = 4, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + STATE(4771), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157872] = 2, + [158212] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8795), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157882] = 2, + [158222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157892] = 2, + [158232] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157902] = 2, + [158242] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157912] = 2, + [158252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8797), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157922] = 2, + [158262] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157932] = 2, + [158272] = 4, + ACTIONS(8799), 1, + anon_sym_COMMA, + ACTIONS(8801), 1, + anon_sym_RBRACE, + STATE(4783), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157942] = 2, + [158286] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8795), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157952] = 2, + [158296] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8727), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157962] = 2, + [158306] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8803), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157972] = 2, + [158316] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157982] = 2, + [158326] = 4, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(8809), 1, + anon_sym_RBRACE, + STATE(4783), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7251), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [157992] = 2, + [158340] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158002] = 2, + [158350] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158012] = 2, + [158360] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158022] = 2, + [158370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158032] = 2, + [158380] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158042] = 2, + [158390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158052] = 2, + [158400] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158062] = 2, + [158410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8723), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158072] = 2, + [158420] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6001), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158082] = 2, + [158430] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8755), 3, + ACTIONS(8817), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [158092] = 3, - ACTIONS(8757), 1, - anon_sym_LBRACE, + [158440] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7966), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [158104] = 4, - ACTIONS(8759), 1, + ACTIONS(8811), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8761), 1, - anon_sym_RBRACE, - STATE(4657), 1, - aux_sym_export_clause_repeat1, + anon_sym_SEMI, + [158450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158118] = 3, - ACTIONS(4062), 1, - anon_sym_LBRACE, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158460] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4064), 2, + ACTIONS(8771), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158130] = 2, + anon_sym_SEMI, + [158470] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158140] = 2, + [158480] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158150] = 3, - ACTIONS(8763), 1, - anon_sym_as, + [158490] = 4, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(8819), 1, + anon_sym_EQ, + STATE(5636), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8765), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [158162] = 2, + [158504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158172] = 4, - ACTIONS(8767), 1, - anon_sym_COMMA, - ACTIONS(8769), 1, - anon_sym_GT, - STATE(4663), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158186] = 2, + [158514] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8771), 3, + ACTIONS(8821), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158196] = 2, + [158524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158206] = 2, + [158534] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8771), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158216] = 2, + [158544] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8773), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158226] = 2, + [158554] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8775), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158236] = 2, + [158564] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158246] = 2, + [158574] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8777), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158256] = 2, + [158584] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158266] = 2, + [158594] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158276] = 2, + [158604] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158286] = 2, + [158614] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158296] = 2, + [158624] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158306] = 2, + [158634] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8781), 3, + ACTIONS(8821), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158316] = 2, + [158644] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8781), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158326] = 2, + [158654] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8783), 3, + ACTIONS(8823), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158336] = 2, + [158664] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8785), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158346] = 2, + [158674] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158356] = 3, - ACTIONS(8196), 1, + [158684] = 3, + ACTIONS(7349), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8787), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [158368] = 2, + ACTIONS(3626), 2, + anon_sym_in, + anon_sym_of, + [158696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LT, + [158706] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158378] = 2, + [158716] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158388] = 2, + [158726] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158398] = 2, + [158736] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8825), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158408] = 2, + [158746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8789), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158418] = 2, + [158756] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, + ACTIONS(8827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158428] = 2, + [158766] = 3, + ACTIONS(8829), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, - sym__automatic_semicolon, + ACTIONS(6552), 2, anon_sym_COMMA, - anon_sym_SEMI, - [158438] = 3, - ACTIONS(8791), 1, + anon_sym_RBRACE, + [158778] = 4, + ACTIONS(6550), 1, + anon_sym_type, + ACTIONS(8831), 1, sym_identifier, + STATE(5362), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8793), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [158450] = 2, + [158792] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158460] = 2, + [158802] = 4, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158470] = 2, + [158816] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158480] = 2, + [158826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8833), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158490] = 4, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(8795), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158504] = 4, - ACTIONS(2478), 1, - anon_sym_LT, - ACTIONS(8797), 1, - anon_sym_EQ, - STATE(5633), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158518] = 2, + [158836] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158528] = 2, + [158846] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8799), 3, + ACTIONS(8827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158538] = 2, + [158856] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158548] = 2, + [158866] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158558] = 4, - ACTIONS(8801), 1, - anon_sym_COMMA, - ACTIONS(8803), 1, - anon_sym_RBRACK, - STATE(4809), 1, - aux_sym_tuple_type_repeat1, + [158876] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158572] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8779), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158582] = 2, + [158886] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8781), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158592] = 3, - ACTIONS(8805), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8079), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [158604] = 2, + [158896] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8781), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158614] = 3, - ACTIONS(4122), 1, - anon_sym_LBRACE, + [158906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4124), 2, + ACTIONS(8464), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [158626] = 4, - ACTIONS(8807), 1, - sym_identifier, - ACTIONS(8809), 1, - anon_sym_LBRACK, - ACTIONS(8811), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158640] = 2, + anon_sym_SEMI, + [158916] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158650] = 2, + [158926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8785), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158660] = 2, + [158936] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158670] = 2, + [158946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158680] = 4, - ACTIONS(6617), 1, - anon_sym_AMP, - ACTIONS(6619), 1, - anon_sym_PIPE, - ACTIONS(6621), 1, - anon_sym_extends, + [158956] = 4, + ACTIONS(6550), 1, + anon_sym_type, + ACTIONS(8835), 1, + sym_identifier, + STATE(5395), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158694] = 2, + [158970] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8837), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158704] = 2, + [158980] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158714] = 2, + [158990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158724] = 2, + [159000] = 4, + ACTIONS(8839), 1, + anon_sym_COMMA, + ACTIONS(8842), 1, + anon_sym_GT, + STATE(5092), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158734] = 2, + [159014] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158744] = 3, - ACTIONS(7323), 1, - anon_sym_EQ, + [159024] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3635), 2, - anon_sym_in, - anon_sym_of, - [158756] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8386), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158766] = 2, + [159034] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158776] = 2, + [159044] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8779), 3, + ACTIONS(8844), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158786] = 2, + [159054] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158796] = 4, - ACTIONS(7520), 1, - anon_sym_COMMA, - ACTIONS(8813), 1, + [159064] = 4, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(8846), 1, anon_sym_LBRACE, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158810] = 4, - ACTIONS(7271), 1, - anon_sym_AMP, - ACTIONS(7273), 1, - anon_sym_PIPE, - ACTIONS(7275), 1, - anon_sym_extends, + STATE(5827), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158824] = 2, + [159078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8783), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158834] = 2, + [159088] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -266811,61 +267202,60 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158844] = 2, + [159098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8414), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158854] = 4, + [159108] = 4, ACTIONS(2240), 1, anon_sym_LBRACE, - ACTIONS(8817), 1, + ACTIONS(8848), 1, sym_identifier, - STATE(4575), 1, + STATE(4553), 1, sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158868] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8819), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + [159122] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158882] = 4, - ACTIONS(6508), 1, - anon_sym_type, - ACTIONS(8821), 1, - sym_identifier, - STATE(5291), 1, - sym__import_identifier, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159132] = 4, + ACTIONS(6827), 1, + anon_sym_RBRACE, + ACTIONS(8850), 1, + anon_sym_COMMA, + STATE(4812), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158896] = 2, + [159146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8815), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158906] = 2, + [159156] = 3, + ACTIONS(7196), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8815), 3, + ACTIONS(8852), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [158916] = 2, + [159168] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -266873,6559 +267263,6482 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158926] = 4, - ACTIONS(6508), 1, - anon_sym_type, - ACTIONS(8823), 1, - sym_identifier, - STATE(5293), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158940] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8825), 1, - anon_sym_RBRACE, - STATE(5137), 1, - aux_sym_object_repeat1, + [159178] = 4, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(791), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158954] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8825), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + [159192] = 3, + ACTIONS(7180), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158968] = 2, + ACTIONS(8852), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159204] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158978] = 3, - ACTIONS(8827), 1, - sym_identifier, + [159214] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8829), 2, + ACTIONS(8450), 3, sym__automatic_semicolon, - anon_sym_SEMI, - [158990] = 4, - ACTIONS(8831), 1, anon_sym_COMMA, - ACTIONS(8834), 1, - anon_sym_RBRACK, - STATE(5104), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159004] = 2, + anon_sym_SEMI, + [159224] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8836), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159014] = 4, - ACTIONS(8838), 1, - anon_sym_COMMA, - ACTIONS(8841), 1, - anon_sym_RBRACE, - STATE(5106), 1, - aux_sym_named_imports_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159028] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8843), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [159038] = 2, + [159234] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159048] = 4, - ACTIONS(8845), 1, - anon_sym_COMMA, - ACTIONS(8847), 1, - anon_sym_RPAREN, - STATE(5141), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159062] = 2, + [159244] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159072] = 4, - ACTIONS(2444), 1, - anon_sym_LBRACE, - ACTIONS(8849), 1, - anon_sym_LPAREN, - STATE(759), 1, - sym_statement_block, + [159254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159086] = 4, - ACTIONS(1779), 1, + ACTIONS(8805), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8235), 1, - anon_sym_RBRACK, - STATE(5175), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [159264] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159100] = 2, + ACTIONS(8854), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [159274] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159110] = 2, + [159284] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8825), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159120] = 4, - ACTIONS(3443), 1, - anon_sym_LPAREN, - ACTIONS(8603), 1, - anon_sym_DOT, - STATE(2890), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159134] = 4, - ACTIONS(1505), 1, - anon_sym_DQUOTE, - ACTIONS(1507), 1, - anon_sym_SQUOTE, - STATE(5748), 1, - sym_string, + [159294] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159148] = 2, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159304] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159158] = 2, + [159314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159168] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5523), 1, - anon_sym_RBRACK, - STATE(5161), 1, - aux_sym_array_repeat1, + [159324] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159182] = 2, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159334] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159192] = 2, + [159344] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8856), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159202] = 2, + [159354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159212] = 2, + [159364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159222] = 3, - ACTIONS(8061), 1, - anon_sym_LBRACE, + [159374] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8063), 2, + ACTIONS(8805), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159234] = 2, + anon_sym_SEMI, + [159384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159244] = 2, + [159394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8553), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159254] = 2, + [159404] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159264] = 2, + [159414] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159274] = 4, - ACTIONS(5533), 1, + [159424] = 4, + ACTIONS(8858), 1, anon_sym_COMMA, - ACTIONS(8851), 1, + ACTIONS(8860), 1, anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + STATE(4804), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159288] = 2, + [159438] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8862), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159298] = 4, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(8853), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, + [159448] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159312] = 4, - ACTIONS(1928), 1, + ACTIONS(8864), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5523), 1, - anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [159458] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159326] = 4, - ACTIONS(8855), 1, + ACTIONS(8815), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8858), 1, - anon_sym_RBRACE, - STATE(5133), 1, - aux_sym_enum_body_repeat1, + anon_sym_SEMI, + [159468] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159340] = 4, - ACTIONS(1779), 1, + ACTIONS(8464), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8235), 1, - anon_sym_RBRACK, - STATE(5177), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159354] = 2, + anon_sym_SEMI, + [159478] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159364] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8860), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + [159488] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159378] = 4, - ACTIONS(5533), 1, + ACTIONS(8805), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8862), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159392] = 2, + anon_sym_SEMI, + [159498] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159402] = 2, + [159508] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5567), 3, + ACTIONS(8811), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [159412] = 3, - ACTIONS(8196), 1, - anon_sym_EQ, + anon_sym_SEMI, + [159518] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8864), 2, + ACTIONS(8827), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [159424] = 4, - ACTIONS(1645), 1, - anon_sym_RPAREN, - ACTIONS(8866), 1, + anon_sym_SEMI, + [159528] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - STATE(4847), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8868), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159438] = 2, + [159542] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159448] = 3, - ACTIONS(4188), 1, - anon_sym_LBRACE, + [159552] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4190), 2, + ACTIONS(8870), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159460] = 2, + anon_sym_SEMI, + [159562] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159470] = 2, + [159572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8862), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159480] = 2, + [159582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8825), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159490] = 2, + [159592] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159500] = 2, + [159602] = 4, + ACTIONS(8872), 1, + sym_identifier, + ACTIONS(8874), 1, + anon_sym_LBRACK, + ACTIONS(8876), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159510] = 3, - ACTIONS(4210), 1, - anon_sym_LBRACE, + [159616] = 4, + ACTIONS(8878), 1, + sym_identifier, + ACTIONS(8880), 1, + anon_sym_LBRACK, + ACTIONS(8882), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [159522] = 2, + [159630] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159532] = 2, + [159640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8884), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159542] = 2, + [159650] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159552] = 4, - ACTIONS(3467), 1, - anon_sym_LPAREN, - ACTIONS(8868), 1, - anon_sym_DOT, - STATE(3176), 1, - sym_arguments, + [159660] = 4, + ACTIONS(8886), 1, + sym_identifier, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(8890), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159566] = 2, + [159674] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, + anon_sym_RBRACE, + STATE(5172), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, + [159688] = 4, + ACTIONS(5235), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159576] = 2, + ACTIONS(8892), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159586] = 2, + [159702] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159596] = 2, + [159712] = 4, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8896), 1, + anon_sym_RPAREN, + STATE(5174), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159606] = 2, + [159726] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159616] = 2, + [159736] = 4, + ACTIONS(8898), 1, + sym_identifier, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(8902), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159626] = 2, + [159750] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8337), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159636] = 4, - ACTIONS(1928), 1, + [159760] = 4, + ACTIONS(3196), 1, + anon_sym_GT, + ACTIONS(8904), 1, anon_sym_COMMA, - ACTIONS(8870), 1, - anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159650] = 4, - ACTIONS(8872), 1, + [159774] = 3, + ACTIONS(8132), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3626), 2, + anon_sym_in, + anon_sym_of, + [159786] = 4, + ACTIONS(8906), 1, anon_sym_LPAREN, - ACTIONS(8874), 1, + ACTIONS(8908), 1, anon_sym_await, - STATE(75), 1, + STATE(74), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159664] = 2, + [159800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159674] = 2, + [159810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8910), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159684] = 2, + [159820] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159694] = 4, - ACTIONS(2492), 1, + [159830] = 4, + ACTIONS(2476), 1, anon_sym_while, - ACTIONS(8876), 1, + ACTIONS(8912), 1, anon_sym_else, - STATE(850), 1, + STATE(861), 1, sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159708] = 4, - ACTIONS(1928), 1, - anon_sym_COMMA, - ACTIONS(5314), 1, - anon_sym_RPAREN, - STATE(5209), 1, - aux_sym_array_repeat1, + [159844] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159722] = 4, - ACTIONS(1928), 1, + ACTIONS(8805), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5314), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [159854] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8914), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159736] = 2, + [159868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159746] = 2, + [159878] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159756] = 2, + [159902] = 4, + ACTIONS(1635), 1, + anon_sym_RPAREN, + ACTIONS(8918), 1, + anon_sym_COMMA, + STATE(4625), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + [159916] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8920), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159766] = 2, + [159926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8444), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159776] = 2, + [159936] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159786] = 4, - ACTIONS(6904), 1, - anon_sym_implements, - ACTIONS(8878), 1, - anon_sym_LBRACE, - STATE(5783), 1, - sym_implements_clause, + [159946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159800] = 4, - ACTIONS(1779), 1, + ACTIONS(8922), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8880), 1, - anon_sym_RBRACK, - STATE(5177), 1, - aux_sym_array_pattern_repeat1, + anon_sym_SEMI, + [159956] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159814] = 2, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159966] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159824] = 4, - ACTIONS(8864), 1, - anon_sym_RBRACK, - ACTIONS(8882), 1, - anon_sym_COMMA, - STATE(5177), 1, - aux_sym_array_pattern_repeat1, + [159976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159838] = 4, - ACTIONS(7157), 1, - anon_sym_const, - ACTIONS(8147), 1, - sym_identifier, - STATE(4801), 1, - sym_type_parameter, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159986] = 4, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(8924), 1, + anon_sym_DOT, + STATE(3129), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159852] = 4, - ACTIONS(6316), 1, - anon_sym_DOT, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8885), 1, - anon_sym_GT, + [160000] = 3, + ACTIONS(8926), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159866] = 4, - ACTIONS(8310), 1, - anon_sym_GT, - ACTIONS(8887), 1, + ACTIONS(3560), 2, anon_sym_COMMA, - STATE(4655), 1, - aux_sym_type_parameters_repeat1, + anon_sym_RBRACK, + [160012] = 4, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(8606), 1, + anon_sym_DOT, + STATE(2892), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159880] = 2, + [160026] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159890] = 2, + [160036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159900] = 3, - ACTIONS(8889), 1, - anon_sym_EQ, + [160046] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3544), 2, + ACTIONS(8464), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [159912] = 2, + anon_sym_SEMI, + [160056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159922] = 2, + [160066] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8491), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159932] = 2, + [160076] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8386), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159942] = 2, + [160086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159952] = 4, - ACTIONS(8892), 1, - anon_sym_LPAREN, - ACTIONS(8894), 1, - anon_sym_await, - STATE(66), 1, - sym__for_header, + [160096] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159966] = 2, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160106] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8487), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159976] = 2, + [160116] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159986] = 4, - ACTIONS(5533), 1, + [160126] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8896), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + ACTIONS(5306), 1, + anon_sym_RPAREN, + STATE(5219), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160000] = 4, - ACTIONS(5027), 1, + [160140] = 4, + ACTIONS(1928), 1, anon_sym_COMMA, - ACTIONS(8898), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(5306), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160014] = 2, + [160154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160024] = 4, - ACTIONS(8900), 1, - anon_sym_COMMA, - ACTIONS(8902), 1, - anon_sym_RBRACK, - STATE(4610), 1, - aux_sym_tuple_type_repeat1, + [160164] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160038] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8458), 3, + ACTIONS(8815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160048] = 2, + [160174] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8904), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160058] = 4, - ACTIONS(5027), 1, - anon_sym_COMMA, - ACTIONS(8906), 1, - anon_sym_RBRACE, - STATE(4615), 1, - aux_sym_object_pattern_repeat1, + [160184] = 4, + ACTIONS(8929), 1, + anon_sym_LPAREN, + ACTIONS(8931), 1, + anon_sym_await, + STATE(38), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160072] = 2, + [160198] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8904), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160082] = 2, + [160208] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8933), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8458), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160092] = 2, + [160222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8908), 3, + ACTIONS(8811), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160102] = 4, - ACTIONS(6704), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_extends, - ACTIONS(7784), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160116] = 2, + [160232] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160126] = 2, + [160242] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8910), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160136] = 2, + [160252] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 3, + ACTIONS(8437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160146] = 2, + [160262] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8912), 3, + ACTIONS(8805), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160156] = 2, + [160272] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160166] = 4, - ACTIONS(5533), 1, - anon_sym_COMMA, - ACTIONS(8914), 1, - anon_sym_RBRACE, - STATE(4612), 1, - aux_sym_object_repeat1, + [160282] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160180] = 2, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160292] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8438), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160190] = 4, - ACTIONS(1928), 1, + [160302] = 4, + ACTIONS(2732), 1, + anon_sym_RBRACK, + ACTIONS(8935), 1, anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_RPAREN, - STATE(4566), 1, - aux_sym_array_repeat1, + STATE(4759), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160204] = 2, + [160316] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8428), 3, + ACTIONS(8813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160214] = 4, - ACTIONS(3166), 1, - anon_sym_GT, - ACTIONS(8918), 1, + [160326] = 4, + ACTIONS(7042), 1, + anon_sym_RBRACE, + ACTIONS(8937), 1, anon_sym_COMMA, - STATE(4559), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160228] = 2, + STATE(4678), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8912), 3, - sym__automatic_semicolon, + [160340] = 4, + ACTIONS(8939), 1, anon_sym_COMMA, - anon_sym_SEMI, - [160238] = 2, + ACTIONS(8941), 1, + anon_sym_RBRACK, + STATE(4614), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8569), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160248] = 2, + [160354] = 4, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8920), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160258] = 2, + [160368] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8922), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160268] = 2, + [160378] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8421), 3, + ACTIONS(8464), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160278] = 4, - ACTIONS(218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1495), 1, - anon_sym_LBRACE, - STATE(797), 1, - sym_object_type, + [160388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160292] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8920), 3, + ACTIONS(8448), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160302] = 2, + [160398] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8943), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8904), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160312] = 2, + [160412] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8725), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160322] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(778), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160333] = 3, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(8924), 1, + [160422] = 4, + ACTIONS(3186), 1, anon_sym_GT, + ACTIONS(8945), 1, + anon_sym_COMMA, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160344] = 3, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2114), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160355] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(4120), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160366] = 2, + [160436] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7550), 2, + ACTIONS(7371), 3, anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ_GT, - [160375] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8926), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160384] = 2, + [160446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8928), 2, + ACTIONS(8693), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [160393] = 3, - ACTIONS(7414), 1, + anon_sym_SEMI, + [160456] = 3, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(2648), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160404] = 2, + STATE(4277), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8930), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [160413] = 3, - ACTIONS(6784), 1, + [160467] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(2535), 1, - sym_class_body, + STATE(2164), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160424] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3860), 1, - sym_formal_parameters, + [160478] = 3, + ACTIONS(8947), 1, + anon_sym_SEMI, + ACTIONS(8949), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160435] = 2, + [160489] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5988), 2, + ACTIONS(5958), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160444] = 3, + [160498] = 3, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5386), 1, + STATE(5417), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160455] = 2, + [160509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6005), 2, + ACTIONS(5980), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160464] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2120), 1, - sym_class_body, + [160518] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160475] = 2, + ACTIONS(5984), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160527] = 3, + ACTIONS(8951), 1, + sym_identifier, + ACTIONS(8953), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8932), 2, + [160538] = 3, + ACTIONS(8955), 1, + anon_sym_SEMI, + ACTIONS(8957), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160549] = 3, + ACTIONS(8959), 1, anon_sym_SEMI, - [160484] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(4128), 1, - sym_class_body, + ACTIONS(8961), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160495] = 3, - ACTIONS(7414), 1, + [160560] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2631), 1, + STATE(5419), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160506] = 3, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1644), 1, - sym_arguments, + [160571] = 3, + ACTIONS(8963), 1, + sym_identifier, + ACTIONS(8965), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160517] = 3, - ACTIONS(8934), 1, + [160582] = 3, + ACTIONS(8967), 1, sym_identifier, - ACTIONS(8936), 1, + ACTIONS(8969), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160528] = 2, + [160593] = 3, + ACTIONS(8971), 1, + sym_identifier, + ACTIONS(8973), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8938), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160537] = 3, - ACTIONS(6784), 1, + [160604] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8446), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160613] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(1713), 1, - sym_class_body, + STATE(2642), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160548] = 3, - ACTIONS(6916), 1, + [160624] = 3, + ACTIONS(6909), 1, anon_sym_LBRACE, - STATE(4130), 1, + STATE(237), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160559] = 3, - ACTIONS(7414), 1, + [160635] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2607), 1, + STATE(5229), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160570] = 2, + [160646] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8940), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160579] = 2, + ACTIONS(4474), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160655] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8942), 2, - anon_sym_in, - anon_sym_of, - [160588] = 3, - ACTIONS(7414), 1, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160664] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2620), 1, + STATE(870), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160599] = 3, - ACTIONS(8944), 1, + [160675] = 3, + ACTIONS(8975), 1, anon_sym_LBRACE, - STATE(831), 1, + STATE(4014), 1, sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160610] = 3, - ACTIONS(8946), 1, - sym_identifier, - ACTIONS(8948), 1, - sym_private_property_identifier, + [160686] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160621] = 3, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1681), 1, - sym_statement_block, + ACTIONS(8977), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160695] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5582), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160632] = 3, - ACTIONS(6784), 1, + [160706] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(1703), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160643] = 3, - ACTIONS(8950), 1, - sym_identifier, - ACTIONS(8952), 1, - sym_private_property_identifier, + STATE(2216), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160654] = 3, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8547), 1, - anon_sym_GT, + [160717] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2626), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160665] = 3, - ACTIONS(6916), 1, + [160728] = 3, + ACTIONS(6768), 1, anon_sym_LBRACE, - STATE(770), 1, + STATE(2166), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160676] = 3, - ACTIONS(8954), 1, + [160739] = 3, + ACTIONS(8979), 1, sym_identifier, - ACTIONS(8956), 1, + ACTIONS(8981), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160687] = 3, - ACTIONS(6924), 1, + [160750] = 3, + ACTIONS(6768), 1, anon_sym_LBRACE, - STATE(233), 1, + STATE(2113), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160698] = 3, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1717), 1, - sym_statement_block, + [160761] = 3, + ACTIONS(8983), 1, + sym_identifier, + ACTIONS(8985), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160709] = 3, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(8958), 1, - anon_sym_GT, + [160772] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160720] = 3, - ACTIONS(6900), 1, + ACTIONS(8987), 2, + anon_sym_in, + anon_sym_of, + [160781] = 3, + ACTIONS(6768), 1, anon_sym_LBRACE, - STATE(876), 1, + STATE(2235), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160731] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2083), 1, - sym_class_body, + [160792] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160742] = 2, + ACTIONS(8989), 2, + anon_sym_COMMA, + anon_sym_GT, + [160801] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8960), 2, + ACTIONS(5996), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160751] = 3, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1707), 1, - sym_statement_block, + [160810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160762] = 3, - ACTIONS(7205), 1, + ACTIONS(8991), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160819] = 3, + ACTIONS(6768), 1, anon_sym_LBRACE, - STATE(776), 1, - sym_statement_block, + STATE(2059), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160773] = 3, - ACTIONS(8962), 1, + [160830] = 3, + ACTIONS(8993), 1, sym_identifier, - ACTIONS(8964), 1, + ACTIONS(8995), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160784] = 3, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2066), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160795] = 3, - ACTIONS(8966), 1, + [160841] = 3, + ACTIONS(8997), 1, sym_identifier, - ACTIONS(8968), 1, + ACTIONS(8999), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160806] = 3, - ACTIONS(8970), 1, + [160852] = 3, + ACTIONS(9001), 1, sym_identifier, - ACTIONS(8972), 1, + ACTIONS(9003), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160817] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5944), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160828] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(777), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160839] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160850] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8974), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160859] = 2, + [160863] = 3, + ACTIONS(9005), 1, + sym_identifier, + ACTIONS(9007), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160868] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5497), 1, - sym_statement_block, + [160874] = 3, + ACTIONS(9009), 1, + sym_identifier, + ACTIONS(9011), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160879] = 2, + [160885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 2, + ACTIONS(9013), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160888] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(5499), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160899] = 3, - ACTIONS(8976), 1, + [160894] = 3, + ACTIONS(9015), 1, sym_identifier, - ACTIONS(8978), 1, + ACTIONS(9017), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160910] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5742), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160921] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5747), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160932] = 3, - ACTIONS(6784), 1, + [160905] = 3, + ACTIONS(6798), 1, anon_sym_LBRACE, - STATE(2480), 1, + STATE(1661), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160943] = 3, - ACTIONS(6752), 1, + [160916] = 3, + ACTIONS(4148), 1, anon_sym_LBRACE, - STATE(2068), 1, - sym_class_body, + STATE(1664), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160954] = 3, - ACTIONS(8980), 1, - sym_identifier, - ACTIONS(8982), 1, - sym_private_property_identifier, + [160927] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5970), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160965] = 3, - ACTIONS(4116), 1, + [160938] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2334), 1, + STATE(2650), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160976] = 3, - ACTIONS(8984), 1, - sym_identifier, - ACTIONS(8986), 1, - sym_private_property_identifier, + [160949] = 3, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1668), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160987] = 3, - ACTIONS(8988), 1, - sym_identifier, - ACTIONS(8990), 1, - sym_private_property_identifier, + [160960] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160998] = 3, - ACTIONS(6752), 1, + ACTIONS(9019), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160969] = 3, + ACTIONS(9021), 1, anon_sym_LBRACE, - STATE(2335), 1, - sym_class_body, + STATE(5481), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161009] = 3, - ACTIONS(8992), 1, - sym_identifier, - ACTIONS(8994), 1, - sym_private_property_identifier, + [160980] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2651), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161020] = 3, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8751), 1, - anon_sym_GT, + [160991] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5577), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161031] = 3, - ACTIONS(8571), 1, - sym_identifier, - ACTIONS(8575), 1, - sym_private_property_identifier, + [161002] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161042] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2649), 1, - sym_statement_block, + ACTIONS(9023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161011] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5666), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161053] = 3, - ACTIONS(7205), 1, - anon_sym_LBRACE, - STATE(772), 1, - sym_statement_block, + [161022] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(5319), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161064] = 2, + [161033] = 3, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(2760), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8996), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161073] = 2, + [161044] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4513), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161082] = 2, + [161055] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8998), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161091] = 3, - ACTIONS(9000), 1, - anon_sym_COMMA, - ACTIONS(9002), 1, - anon_sym_from, + ACTIONS(5037), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161064] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161102] = 2, + [161075] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4616), 2, + ACTIONS(4703), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161111] = 2, + [161084] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9004), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161120] = 3, - ACTIONS(9006), 1, - anon_sym_SEMI, - ACTIONS(9008), 1, - sym__automatic_semicolon, + [161095] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161131] = 3, - ACTIONS(9010), 1, + ACTIONS(9027), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161104] = 3, + ACTIONS(3427), 1, anon_sym_LPAREN, - STATE(48), 1, - sym_parenthesized_expression, + STATE(1255), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161142] = 3, - ACTIONS(6784), 1, + [161115] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(1647), 1, - sym_class_body, + STATE(2659), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161153] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_parenthesized_expression, + [161126] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(2549), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161164] = 2, + [161137] = 3, + ACTIONS(9029), 1, + sym_identifier, + ACTIONS(9031), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5123), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161173] = 2, + [161148] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7558), 2, + ACTIONS(9033), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [161157] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [161182] = 3, - ACTIONS(9012), 1, - sym_identifier, - STATE(4738), 1, - sym_nested_identifier, + STATE(2662), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161193] = 3, - ACTIONS(9014), 1, - anon_sym_SEMI, - ACTIONS(9016), 1, - sym__automatic_semicolon, + [161168] = 3, + ACTIONS(9035), 1, + sym_identifier, + ACTIONS(9037), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161204] = 3, - ACTIONS(6752), 1, + [161179] = 3, + ACTIONS(6798), 1, anon_sym_LBRACE, - STATE(2218), 1, + STATE(2551), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161215] = 3, - ACTIONS(7872), 1, - anon_sym_in, - ACTIONS(7874), 1, - anon_sym_of, + [161190] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161226] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(51), 1, - sym_parenthesized_expression, + ACTIONS(9039), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161199] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2628), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161237] = 3, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(2556), 1, - sym_class_body, + [161210] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161248] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(764), 1, - sym_class_body, + ACTIONS(8574), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [161219] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161259] = 3, + ACTIONS(7487), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [161228] = 3, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5360), 1, + STATE(5574), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161270] = 3, - ACTIONS(6916), 1, + [161239] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(4148), 1, - sym_class_body, + STATE(2600), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161281] = 3, - ACTIONS(9018), 1, - sym_identifier, - ACTIONS(9020), 1, - sym_private_property_identifier, + [161250] = 3, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1681), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161292] = 3, - ACTIONS(7414), 1, + [161261] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2657), 1, + STATE(716), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161303] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2621), 1, - sym_statement_block, + [161272] = 3, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8737), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161314] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2635), 1, - sym_statement_block, + [161283] = 3, + ACTIONS(9041), 1, + sym_identifier, + ACTIONS(9043), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161325] = 3, - ACTIONS(6916), 1, - anon_sym_LBRACE, - STATE(773), 1, - sym_class_body, + [161294] = 3, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(9045), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161305] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161314] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161336] = 3, - ACTIONS(7414), 1, + ACTIONS(7904), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161323] = 3, + ACTIONS(6798), 1, anon_sym_LBRACE, - STATE(2638), 1, - sym_statement_block, + STATE(1684), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161347] = 2, + [161334] = 3, + ACTIONS(9047), 1, + anon_sym_SEMI, + ACTIONS(9049), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9022), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161356] = 2, + [161345] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9024), 2, + ACTIONS(9051), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161365] = 3, - ACTIONS(6784), 1, + [161354] = 3, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(1704), 1, + STATE(4176), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, + [161365] = 3, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5232), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [161376] = 3, - ACTIONS(4126), 1, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(1649), 1, + STATE(5393), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [161387] = 3, - ACTIONS(7414), 1, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(2602), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [161398] = 3, - ACTIONS(4750), 1, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2665), 1, + STATE(2605), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [161409] = 3, - ACTIONS(9026), 1, - anon_sym_SEMI, - ACTIONS(9028), 1, - sym__automatic_semicolon, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1686), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, [161420] = 3, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5517), 1, - sym__from_clause, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1688), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [161431] = 3, - ACTIONS(7414), 1, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(2645), 1, + STATE(2084), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [161442] = 3, - ACTIONS(9030), 1, - anon_sym_in, - ACTIONS(9032), 1, - anon_sym_COLON, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2162), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, [161453] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5734), 1, - sym_formal_parameters, + ACTIONS(9053), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, [161464] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5985), 1, - sym_formal_parameters, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2225), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, [161475] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5687), 1, - sym_formal_parameters, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2214), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161486] = 2, + [161486] = 3, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(5139), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9034), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161495] = 3, - ACTIONS(6916), 1, + [161497] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(4034), 1, - sym_class_body, + STATE(2167), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161506] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2643), 1, - sym_statement_block, + [161508] = 3, + ACTIONS(9055), 1, + sym_identifier, + ACTIONS(9057), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161517] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2651), 1, - sym_statement_block, + [161519] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5797), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161528] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2608), 1, - sym_statement_block, + [161530] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5605), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161539] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2611), 1, - sym_statement_block, + [161541] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5588), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161550] = 3, - ACTIONS(9036), 1, - anon_sym_LPAREN, - STATE(52), 1, - sym__for_header, + [161552] = 3, + ACTIONS(9059), 1, + sym_identifier, + ACTIONS(9061), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161561] = 3, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2191), 1, - sym_statement_block, + [161563] = 3, + ACTIONS(9063), 1, + sym_identifier, + ACTIONS(9065), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161572] = 3, - ACTIONS(6462), 1, - anon_sym_LPAREN, - STATE(3334), 1, - sym_formal_parameters, + [161574] = 3, + ACTIONS(7992), 1, + anon_sym_in, + ACTIONS(7994), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161583] = 3, - ACTIONS(7414), 1, + [161585] = 3, + ACTIONS(1669), 1, anon_sym_LBRACE, - STATE(2616), 1, + STATE(235), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161594] = 2, + [161596] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(2504), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5125), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161603] = 3, - ACTIONS(2444), 1, + [161607] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(5272), 1, + STATE(2168), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161614] = 3, - ACTIONS(7414), 1, + [161618] = 3, + ACTIONS(4148), 1, anon_sym_LBRACE, - STATE(2615), 1, + STATE(1690), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161625] = 3, - ACTIONS(7414), 1, + [161629] = 3, + ACTIONS(6909), 1, anon_sym_LBRACE, - STATE(2614), 1, - sym_statement_block, + STATE(249), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161636] = 3, - ACTIONS(8129), 1, - anon_sym_from, - STATE(4170), 1, - sym__from_clause, + [161640] = 3, + ACTIONS(9067), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161647] = 3, - ACTIONS(7414), 1, + [161651] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(2618), 1, + STATE(2329), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161658] = 3, - ACTIONS(7414), 1, + [161662] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2628), 1, + STATE(782), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161669] = 3, - ACTIONS(6784), 1, + [161673] = 3, + ACTIONS(6768), 1, anon_sym_LBRACE, - STATE(1706), 1, + STATE(2177), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161680] = 3, - ACTIONS(4126), 1, + [161684] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5025), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161693] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7532), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [161702] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(1615), 1, + STATE(2637), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161691] = 2, + [161713] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4969), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161700] = 2, + ACTIONS(7534), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [161722] = 3, + ACTIONS(9069), 1, + sym_identifier, + ACTIONS(9071), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5970), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161709] = 2, + [161733] = 3, + ACTIONS(9073), 1, + anon_sym_LBRACE, + STATE(859), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 2, + [161744] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9075), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [161718] = 3, - ACTIONS(9038), 1, - anon_sym_SEMI, - ACTIONS(9040), 1, - sym__automatic_semicolon, + anon_sym_GT, + [161753] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161729] = 3, - ACTIONS(7414), 1, + ACTIONS(7536), 2, anon_sym_LBRACE, - STATE(2613), 1, - sym_statement_block, + anon_sym_EQ_GT, + [161762] = 3, + ACTIONS(9077), 1, + anon_sym_SEMI, + ACTIONS(9079), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161740] = 3, - ACTIONS(2444), 1, + [161773] = 3, + ACTIONS(6768), 1, anon_sym_LBRACE, - STATE(5358), 1, - sym_statement_block, + STATE(2090), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161751] = 3, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3630), 1, - sym_formal_parameters, + [161784] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2314), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161762] = 3, - ACTIONS(7414), 1, + [161795] = 3, + ACTIONS(6798), 1, anon_sym_LBRACE, - STATE(2619), 1, - sym_statement_block, + STATE(1694), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161773] = 2, + [161806] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5974), 2, + ACTIONS(5984), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161782] = 3, - ACTIONS(7414), 1, + [161815] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2612), 1, + STATE(5496), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161793] = 2, + [161826] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 2, + ACTIONS(5988), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161802] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5702), 1, - sym_formal_parameters, + [161835] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4351), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161813] = 3, - ACTIONS(6450), 1, + [161846] = 3, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5794), 1, + STATE(5730), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161824] = 3, + [161857] = 3, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5232), 1, + STATE(5257), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161835] = 3, - ACTIONS(6450), 1, + [161868] = 3, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5858), 1, + STATE(5796), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161846] = 2, + [161879] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5847), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5980), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161855] = 3, - ACTIONS(4535), 1, - anon_sym_LPAREN, - STATE(2088), 1, - sym_arguments, + [161890] = 3, + ACTIONS(9081), 1, + sym_identifier, + STATE(5109), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161866] = 3, - ACTIONS(2444), 1, + [161901] = 3, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(5234), 1, - sym_statement_block, + STATE(4363), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161877] = 2, + [161912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6027), 2, + ACTIONS(9083), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161886] = 3, - ACTIONS(6924), 1, + [161921] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(250), 1, - sym_class_body, + STATE(2609), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161897] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2652), 1, - sym_statement_block, + [161932] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161908] = 3, - ACTIONS(6752), 1, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161941] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2115), 1, - sym_class_body, + STATE(2610), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161919] = 3, - ACTIONS(6924), 1, + [161952] = 3, + ACTIONS(6798), 1, anon_sym_LBRACE, - STATE(240), 1, + STATE(1695), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161930] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2650), 1, - sym_statement_block, + [161963] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161941] = 2, + [161974] = 3, + ACTIONS(9085), 1, + anon_sym_SEMI, + ACTIONS(9087), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161950] = 3, - ACTIONS(2444), 1, + [161985] = 3, + ACTIONS(4148), 1, anon_sym_LBRACE, - STATE(5365), 1, + STATE(1696), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161961] = 3, - ACTIONS(5964), 1, - anon_sym_LPAREN, - STATE(2753), 1, - sym_arguments, + [161996] = 3, + ACTIONS(9089), 1, + anon_sym_SEMI, + ACTIONS(9091), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161972] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(63), 1, - sym_parenthesized_expression, + [162007] = 3, + ACTIONS(9093), 1, + anon_sym_SEMI, + ACTIONS(9095), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161983] = 2, + [162018] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9042), 2, + ACTIONS(9097), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161992] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2179), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162003] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5625), 1, - sym_formal_parameters, + [162027] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162014] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2647), 1, - sym_statement_block, + ACTIONS(9099), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162036] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162025] = 3, - ACTIONS(2444), 1, + ACTIONS(9101), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162045] = 3, + ACTIONS(4148), 1, anon_sym_LBRACE, - STATE(5274), 1, + STATE(1697), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162036] = 3, - ACTIONS(7414), 1, + [162056] = 3, + ACTIONS(6798), 1, anon_sym_LBRACE, - STATE(2634), 1, - sym_statement_block, + STATE(1698), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162047] = 2, + [162067] = 3, + ACTIONS(9103), 1, + anon_sym_SEMI, + ACTIONS(9105), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8479), 2, - anon_sym_COMMA, - anon_sym_GT, - [162056] = 3, - ACTIONS(7205), 1, + [162078] = 3, + ACTIONS(1669), 1, anon_sym_LBRACE, - STATE(3943), 1, + STATE(247), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162067] = 2, + [162089] = 3, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5368), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162076] = 3, - ACTIONS(9036), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym__for_header, + [162100] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162087] = 3, - ACTIONS(9044), 1, + ACTIONS(8785), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162109] = 3, + ACTIONS(9107), 1, sym_identifier, - ACTIONS(9046), 1, + ACTIONS(9109), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162098] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4664), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162107] = 3, - ACTIONS(8609), 1, + [162120] = 3, + ACTIONS(9111), 1, sym_identifier, - ACTIONS(8613), 1, + ACTIONS(9113), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162118] = 2, + [162131] = 3, + ACTIONS(9115), 1, + sym_identifier, + ACTIONS(9117), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4668), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162127] = 3, - ACTIONS(8944), 1, + [162142] = 3, + ACTIONS(7100), 1, anon_sym_LBRACE, - STATE(910), 1, - sym_enum_body, + STATE(817), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162138] = 3, - ACTIONS(9048), 1, + [162153] = 3, + ACTIONS(9119), 1, sym_identifier, - ACTIONS(9050), 1, + ACTIONS(9121), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162149] = 3, - ACTIONS(9052), 1, + [162164] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(3945), 1, - sym_enum_body, + STATE(2638), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162160] = 3, - ACTIONS(9054), 1, - sym_identifier, - ACTIONS(9056), 1, - sym_private_property_identifier, + [162175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162171] = 3, - ACTIONS(7414), 1, + ACTIONS(9123), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162184] = 3, + ACTIONS(6798), 1, anon_sym_LBRACE, - STATE(2663), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162182] = 3, - ACTIONS(9058), 1, - sym_identifier, - ACTIONS(9060), 1, - sym_private_property_identifier, + STATE(2511), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162193] = 2, + [162195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8787), 2, + ACTIONS(8509), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162202] = 3, + [162204] = 3, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5411), 1, + STATE(5305), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162213] = 3, - ACTIONS(9062), 1, - sym_identifier, - ACTIONS(9064), 1, - sym_private_property_identifier, + [162215] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2213), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162224] = 3, - ACTIONS(9066), 1, - sym_identifier, - ACTIONS(9068), 1, - sym_private_property_identifier, + [162226] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4459), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162235] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2640), 1, - sym_statement_block, + [162237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(6025), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [162246] = 3, - ACTIONS(9070), 1, - sym_identifier, - ACTIONS(9072), 1, - sym_private_property_identifier, + ACTIONS(6909), 1, + anon_sym_LBRACE, + STATE(251), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162257] = 3, - ACTIONS(8807), 1, - sym_identifier, - ACTIONS(8811), 1, - sym_private_property_identifier, + [162257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162268] = 3, - ACTIONS(3938), 1, - anon_sym_LPAREN, - STATE(1660), 1, - sym_arguments, + ACTIONS(9125), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162266] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162279] = 2, + [162277] = 3, + ACTIONS(8219), 1, + anon_sym_from, + STATE(4206), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5958), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162288] = 2, + [162288] = 3, + ACTIONS(9127), 1, + anon_sym_in, + ACTIONS(9129), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5962), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162297] = 3, - ACTIONS(9074), 1, - sym_identifier, - ACTIONS(9076), 1, - anon_sym_STAR, + [162299] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2645), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162308] = 3, - ACTIONS(9078), 1, - sym_identifier, - ACTIONS(9080), 1, - anon_sym_STAR, + [162310] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2341), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162319] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(4041), 1, - sym_formal_parameters, + [162321] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2347), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162330] = 2, + [162332] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5677), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162339] = 3, - ACTIONS(3530), 1, - anon_sym_COLON, - STATE(5459), 1, - sym_type_annotation, + [162343] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2640), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162350] = 2, + [162354] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6019), 2, + ACTIONS(9131), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162359] = 2, + [162363] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2215), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9082), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162368] = 3, - ACTIONS(3530), 1, - anon_sym_COLON, - STATE(5414), 1, - sym_type_annotation, + [162374] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4466), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162379] = 2, + [162385] = 3, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(837), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9084), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162388] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5696), 1, - sym_formal_parameters, + [162396] = 3, + ACTIONS(4757), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162399] = 3, - ACTIONS(6752), 1, + [162407] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2273), 1, - sym_class_body, + STATE(2663), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162410] = 3, - ACTIONS(6752), 1, + [162418] = 3, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(2271), 1, + STATE(4408), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162421] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, + [162429] = 3, + ACTIONS(9133), 1, + sym_identifier, + ACTIONS(9135), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162432] = 3, - ACTIONS(9086), 1, - sym_identifier, - STATE(4775), 1, - sym_nested_identifier, + [162440] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162443] = 3, - ACTIONS(3244), 1, - anon_sym_LPAREN, - STATE(3564), 1, - sym_formal_parameters, + [162451] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2616), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162454] = 3, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(9088), 1, - anon_sym_GT, + [162462] = 3, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1700), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162465] = 3, - ACTIONS(9090), 1, + [162473] = 3, + ACTIONS(8741), 1, sym_identifier, - ACTIONS(9092), 1, - anon_sym_STAR, + ACTIONS(8745), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162476] = 3, - ACTIONS(6900), 1, + [162484] = 3, + ACTIONS(6798), 1, anon_sym_LBRACE, - STATE(839), 1, + STATE(1701), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162487] = 3, - ACTIONS(4126), 1, - anon_sym_LBRACE, - STATE(1686), 1, - sym_statement_block, + [162495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162498] = 3, + ACTIONS(5972), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162504] = 3, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(908), 1, + STATE(5352), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162509] = 2, + [162515] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9094), 2, + ACTIONS(5976), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162518] = 3, - ACTIONS(9096), 1, - sym_identifier, - ACTIONS(9098), 1, - sym_private_property_identifier, + [162524] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(86), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162529] = 3, - ACTIONS(4116), 1, + [162535] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(2303), 1, + STATE(2350), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162540] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(3997), 1, - sym_formal_parameters, + [162546] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162551] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(4280), 1, - sym_formal_parameters, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162555] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2218), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162562] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5700), 1, - sym_formal_parameters, + [162566] = 3, + ACTIONS(9137), 1, + sym_identifier, + ACTIONS(9139), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162573] = 3, - ACTIONS(9100), 1, - sym_identifier, - ACTIONS(9102), 1, - sym_private_property_identifier, + [162577] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(4092), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162584] = 3, - ACTIONS(3244), 1, + [162588] = 3, + ACTIONS(4502), 1, anon_sym_LPAREN, - STATE(3266), 1, - sym_formal_parameters, + STATE(2138), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162595] = 3, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2274), 1, - sym_statement_block, + [162599] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162606] = 3, - ACTIONS(9104), 1, - sym_identifier, - ACTIONS(9106), 1, - sym_private_property_identifier, + ACTIONS(9141), 2, + anon_sym_COMMA, + anon_sym_GT, + [162608] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162617] = 3, - ACTIONS(9108), 1, - anon_sym_SEMI, - ACTIONS(9110), 1, + ACTIONS(9143), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [162617] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(4312), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [162628] = 3, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2275), 1, - sym_statement_block, + ACTIONS(9145), 1, + sym_identifier, + ACTIONS(9147), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [162639] = 3, - ACTIONS(9112), 1, - anon_sym_SEMI, - ACTIONS(9114), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162650] = 2, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4374), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9116), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162659] = 3, - ACTIONS(6450), 1, + [162650] = 3, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5762), 1, + STATE(5607), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162670] = 3, - ACTIONS(6752), 1, + [162661] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2276), 1, - sym_class_body, + STATE(2617), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162681] = 3, - ACTIONS(6450), 1, + [162672] = 3, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5940), 1, + STATE(5736), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162692] = 3, - ACTIONS(9118), 1, - sym_identifier, - ACTIONS(9120), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162703] = 3, - ACTIONS(7414), 1, + [162683] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2605), 1, + STATE(2618), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162714] = 3, - ACTIONS(9122), 1, - sym_identifier, - ACTIONS(9124), 1, - anon_sym_STAR, + [162694] = 3, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2301), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162725] = 3, - ACTIONS(9126), 1, - sym_identifier, - ACTIONS(9128), 1, - sym_private_property_identifier, + [162705] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162736] = 3, - ACTIONS(9130), 1, + ACTIONS(9149), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162714] = 3, + ACTIONS(9151), 1, sym_identifier, - ACTIONS(9132), 1, + ACTIONS(9153), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162747] = 3, - ACTIONS(9134), 1, - anon_sym_SEMI, - ACTIONS(9136), 1, - sym__automatic_semicolon, + [162725] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162758] = 3, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2237), 1, - sym_statement_block, + ACTIONS(8631), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162734] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5774), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162769] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5830), 1, - sym_formal_parameters, + [162745] = 3, + ACTIONS(9155), 1, + sym_identifier, + STATE(4973), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162780] = 3, - ACTIONS(6752), 1, + [162756] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2189), 1, - sym_class_body, + STATE(2620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162791] = 3, - ACTIONS(6916), 1, + [162767] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(4085), 1, - sym_class_body, + STATE(2621), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162802] = 3, - ACTIONS(9138), 1, - sym_identifier, - ACTIONS(9140), 1, - sym_private_property_identifier, + [162778] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5829), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162813] = 2, + [162789] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9142), 2, + ACTIONS(5962), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162822] = 2, + [162798] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9144), 2, + ACTIONS(9157), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162831] = 2, + [162807] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2622), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8841), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162840] = 2, + [162818] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2623), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9146), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162849] = 2, + [162829] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8834), 2, + ACTIONS(9159), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [162858] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5724), 1, - sym_formal_parameters, + anon_sym_RBRACE, + [162838] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2624), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162869] = 3, - ACTIONS(9148), 1, + [162849] = 3, + ACTIONS(9161), 1, sym_identifier, - ACTIONS(9150), 1, + ACTIONS(9163), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162880] = 3, - ACTIONS(9152), 1, + [162860] = 3, + ACTIONS(6456), 1, anon_sym_LPAREN, - STATE(758), 1, - sym_parenthesized_expression, + STATE(3430), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162871] = 3, + ACTIONS(9165), 1, + sym_identifier, + ACTIONS(9167), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162891] = 3, - ACTIONS(7414), 1, + [162882] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(2646), 1, + STATE(5498), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, + [162893] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8842), 2, + anon_sym_COMMA, + anon_sym_GT, [162902] = 3, - ACTIONS(6450), 1, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(4056), 1, + STATE(5934), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [162913] = 3, - ACTIONS(9052), 1, + ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(3982), 1, - sym_enum_body, + STATE(5491), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [162924] = 3, - ACTIONS(9154), 1, - anon_sym_SEMI, - ACTIONS(9156), 1, - sym__automatic_semicolon, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2102), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162935] = 3, - ACTIONS(2444), 1, - anon_sym_LBRACE, - STATE(902), 1, - sym_statement_block, + [162935] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162946] = 2, + ACTIONS(1679), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162944] = 3, + ACTIONS(9169), 1, + sym_identifier, + ACTIONS(9171), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5992), 2, - anon_sym_COMMA, - anon_sym_RBRACE, [162955] = 3, - ACTIONS(1657), 1, - anon_sym_LBRACE, - STATE(244), 1, - sym_statement_block, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(44), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, [162966] = 3, - ACTIONS(7205), 1, - anon_sym_LBRACE, - STATE(4060), 1, - sym_statement_block, + ACTIONS(9173), 1, + sym_identifier, + ACTIONS(9175), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, [162977] = 3, - ACTIONS(9158), 1, + ACTIONS(7100), 1, anon_sym_LBRACE, - STATE(833), 1, - sym_switch_body, + STATE(789), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, [162988] = 3, - ACTIONS(8507), 1, - sym_identifier, - ACTIONS(8511), 1, - sym_private_property_identifier, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8647), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [162999] = 3, - ACTIONS(9160), 1, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(809), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163010] = 3, + ACTIONS(3200), 1, + sym_jsx_identifier, + ACTIONS(9177), 1, sym_identifier, - ACTIONS(9162), 1, - sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163010] = 2, + [163021] = 3, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(9179), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 2, + [163032] = 3, + ACTIONS(2444), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [163019] = 3, - ACTIONS(9164), 1, - sym_identifier, - ACTIONS(9166), 1, - sym_private_property_identifier, + STATE(767), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163043] = 3, + ACTIONS(9067), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163054] = 3, + ACTIONS(8219), 1, + anon_sym_from, + STATE(4129), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163030] = 3, - ACTIONS(9168), 1, + [163065] = 3, + ACTIONS(9181), 1, sym_identifier, - ACTIONS(9170), 1, + ACTIONS(9183), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163041] = 3, - ACTIONS(7414), 1, + [163076] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(4347), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163087] = 3, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(2653), 1, + STATE(768), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163098] = 3, + ACTIONS(7178), 1, + anon_sym_LBRACE, + STATE(4358), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163052] = 3, - ACTIONS(9172), 1, + [163109] = 3, + ACTIONS(8523), 1, sym_identifier, - ACTIONS(9174), 1, + ACTIONS(8527), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163063] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2644), 1, - sym_statement_block, + [163120] = 3, + ACTIONS(9185), 1, + sym_identifier, + ACTIONS(9187), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163074] = 3, - ACTIONS(6450), 1, - anon_sym_LPAREN, - STATE(5784), 1, - sym_formal_parameters, + [163131] = 3, + ACTIONS(9189), 1, + anon_sym_SEMI, + ACTIONS(9191), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163085] = 3, - ACTIONS(2444), 1, + [163142] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(5413), 1, + STATE(2641), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163096] = 3, - ACTIONS(8129), 1, - anon_sym_from, - STATE(4249), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163107] = 2, + [163153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9176), 2, + ACTIONS(8498), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163116] = 2, + [163162] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9178), 2, + ACTIONS(9193), 2, anon_sym_COMMA, - anon_sym_GT, - [163125] = 2, + anon_sym_RBRACE, + [163171] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9180), 2, + ACTIONS(9195), 2, sym__automatic_semicolon, anon_sym_SEMI, - [163134] = 3, - ACTIONS(6450), 1, + [163180] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2653), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163191] = 3, + ACTIONS(9197), 1, + sym_identifier, + ACTIONS(9199), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163202] = 3, + ACTIONS(9201), 1, anon_sym_LPAREN, - STATE(5675), 1, - sym_formal_parameters, + STATE(755), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163145] = 3, - ACTIONS(6752), 1, + [163213] = 3, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(2097), 1, + STATE(763), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163156] = 2, + [163224] = 3, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3753), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [163165] = 3, - ACTIONS(7205), 1, + [163235] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(4069), 1, + STATE(2660), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163176] = 2, + [163246] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5645), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5984), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163185] = 2, + [163257] = 3, + ACTIONS(9203), 1, + sym_identifier, + ACTIONS(9205), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8864), 2, + [163268] = 3, + ACTIONS(9207), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [163194] = 3, - ACTIONS(6900), 1, - anon_sym_LBRACE, - STATE(892), 1, - sym_class_body, + ACTIONS(9209), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163205] = 3, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2099), 1, - sym_statement_block, + [163279] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163216] = 3, - ACTIONS(4116), 1, + ACTIONS(6000), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163288] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2086), 1, + STATE(2606), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163227] = 2, + [163299] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1667), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163236] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5970), 2, + ACTIONS(8493), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163245] = 3, - ACTIONS(2444), 1, + [163308] = 3, + ACTIONS(7178), 1, anon_sym_LBRACE, - STATE(5352), 1, + STATE(4380), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163256] = 2, + [163319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6013), 2, + ACTIONS(9211), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [163265] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2319), 1, - sym_class_body, + anon_sym_GT, + [163328] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163276] = 3, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163337] = 3, ACTIONS(2444), 1, anon_sym_LBRACE, - STATE(5368), 1, + STATE(5422), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163287] = 3, - ACTIONS(4116), 1, - anon_sym_LBRACE, - STATE(2105), 1, - sym_statement_block, + [163348] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163298] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2312), 1, - sym_class_body, + ACTIONS(6004), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163357] = 3, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3269), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163368] = 3, + ACTIONS(8872), 1, + sym_identifier, + ACTIONS(8876), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163309] = 3, - ACTIONS(7414), 1, + [163379] = 3, + ACTIONS(7178), 1, anon_sym_LBRACE, - STATE(2602), 1, + STATE(781), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163320] = 2, + [163390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6027), 2, + ACTIONS(5980), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163329] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_statement_block, + [163399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163340] = 3, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(1718), 1, - sym_class_body, + ACTIONS(5958), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163408] = 3, + ACTIONS(9213), 1, + sym_identifier, + ACTIONS(9215), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163351] = 2, + [163419] = 3, + ACTIONS(6909), 1, + anon_sym_LBRACE, + STATE(248), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8674), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [163360] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(65), 1, - sym_parenthesized_expression, + [163430] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2613), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163371] = 3, - ACTIONS(3194), 1, - sym_jsx_identifier, - ACTIONS(9182), 1, + [163441] = 3, + ACTIONS(9217), 1, sym_identifier, + ACTIONS(9219), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163382] = 3, - ACTIONS(6916), 1, + [163452] = 3, + ACTIONS(7100), 1, anon_sym_LBRACE, - STATE(4097), 1, + STATE(824), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163393] = 3, - ACTIONS(9010), 1, + [163463] = 3, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5472), 1, - sym_parenthesized_expression, + STATE(3822), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163404] = 3, - ACTIONS(6916), 1, + [163474] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(4098), 1, - sym_class_body, + STATE(2634), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163415] = 2, + [163485] = 3, + ACTIONS(9221), 1, + sym_identifier, + ACTIONS(9223), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9184), 2, - anon_sym_COMMA, - anon_sym_GT, - [163424] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(74), 1, - sym_parenthesized_expression, + [163496] = 3, + ACTIONS(9073), 1, + anon_sym_LBRACE, + STATE(811), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163435] = 3, - ACTIONS(9010), 1, + [163507] = 3, + ACTIONS(9025), 1, anon_sym_LPAREN, - STATE(76), 1, + STATE(73), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163446] = 3, - ACTIONS(9186), 1, - anon_sym_SEMI, - ACTIONS(9188), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163457] = 3, - ACTIONS(7414), 1, + [163518] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2662), 1, + STATE(2625), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163468] = 3, - ACTIONS(9036), 1, + [163529] = 3, + ACTIONS(9025), 1, anon_sym_LPAREN, - STATE(77), 1, - sym__for_header, + STATE(75), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163479] = 2, + [163540] = 3, + ACTIONS(9225), 1, + sym_identifier, + ACTIONS(9227), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8426), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163488] = 3, - ACTIONS(9190), 1, - anon_sym_SEMI, - ACTIONS(9192), 1, - sym__automatic_semicolon, + [163551] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1623), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163499] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2639), 1, - sym_statement_block, + [163562] = 3, + ACTIONS(9067), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163510] = 3, - ACTIONS(1657), 1, - anon_sym_LBRACE, - STATE(231), 1, - sym_statement_block, + [163573] = 3, + ACTIONS(3530), 1, + anon_sym_COLON, + STATE(5530), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163521] = 3, - ACTIONS(7414), 1, + [163584] = 3, + ACTIONS(4148), 1, anon_sym_LBRACE, - STATE(2641), 1, + STATE(1625), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163532] = 3, - ACTIONS(6784), 1, + [163595] = 3, + ACTIONS(6768), 1, anon_sym_LBRACE, - STATE(1724), 1, + STATE(2095), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163543] = 3, - ACTIONS(6924), 1, - anon_sym_LBRACE, - STATE(230), 1, - sym_class_body, + [163606] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163554] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2630), 1, - sym_statement_block, + ACTIONS(9229), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163615] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5947), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163565] = 3, - ACTIONS(4126), 1, + [163626] = 3, + ACTIONS(7178), 1, anon_sym_LBRACE, - STATE(1627), 1, + STATE(776), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163576] = 3, - ACTIONS(9194), 1, - anon_sym_LBRACE, - STATE(5319), 1, - sym_object, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163587] = 3, - ACTIONS(4126), 1, + [163637] = 3, + ACTIONS(4206), 1, anon_sym_LBRACE, - STATE(1643), 1, + STATE(2136), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163598] = 3, - ACTIONS(6601), 1, + [163648] = 3, + ACTIONS(6593), 1, anon_sym_COLON, - ACTIONS(8885), 1, + ACTIONS(8466), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163609] = 3, - ACTIONS(6784), 1, + [163659] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(4188), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163670] = 3, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(1645), 1, + STATE(761), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163620] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(9196), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163629] = 3, - ACTIONS(6651), 1, - anon_sym_DOT, - ACTIONS(9198), 1, - anon_sym_GT, + [163681] = 3, + ACTIONS(3530), 1, + anon_sym_COLON, + STATE(5290), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163640] = 2, + [163692] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9200), 2, + ACTIONS(9231), 2, anon_sym_COMMA, - anon_sym_GT, - [163649] = 3, - ACTIONS(2444), 1, + anon_sym_RBRACK, + [163701] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(779), 1, + STATE(2619), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163660] = 2, + [163712] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9202), 2, + ACTIONS(8565), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [163721] = 3, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(9233), 1, anon_sym_GT, - [163669] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2351), 1, - sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163680] = 3, - ACTIONS(7414), 1, + [163732] = 3, + ACTIONS(7178), 1, anon_sym_LBRACE, - STATE(2637), 1, + STATE(4039), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163691] = 3, - ACTIONS(7414), 1, + [163743] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2604), 1, + STATE(2607), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163702] = 2, + [163754] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8419), 2, + ACTIONS(9235), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [163711] = 3, - ACTIONS(9204), 1, - sym_identifier, - ACTIONS(9206), 1, - sym_private_property_identifier, + anon_sym_RBRACK, + [163763] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2631), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163722] = 3, - ACTIONS(9208), 1, - sym_identifier, - ACTIONS(9210), 1, - sym_private_property_identifier, + [163774] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2611), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163733] = 3, - ACTIONS(9212), 1, - sym_identifier, - ACTIONS(9214), 1, - sym_private_property_identifier, + [163785] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163744] = 3, - ACTIONS(7414), 1, + ACTIONS(4577), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163794] = 3, + ACTIONS(8975), 1, anon_sym_LBRACE, - STATE(2660), 1, - sym_statement_block, + STATE(4043), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163755] = 3, - ACTIONS(7414), 1, - anon_sym_LBRACE, - STATE(2610), 1, - sym_statement_block, + [163805] = 3, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8933), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163766] = 2, + [163816] = 3, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(9237), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7918), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163775] = 3, - ACTIONS(8129), 1, - anon_sym_from, - STATE(5438), 1, - sym__from_clause, + [163827] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2657), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163786] = 3, - ACTIONS(6900), 1, + [163838] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(868), 1, - sym_class_body, + STATE(2632), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163797] = 3, - ACTIONS(9216), 1, - sym_identifier, - ACTIONS(9218), 1, - sym_private_property_identifier, + [163849] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2612), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163808] = 3, - ACTIONS(6784), 1, - anon_sym_LBRACE, - STATE(2522), 1, - sym_class_body, + [163860] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163819] = 3, - ACTIONS(9220), 1, + ACTIONS(4581), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163869] = 3, + ACTIONS(9239), 1, sym_identifier, - ACTIONS(9222), 1, + ACTIONS(9241), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163830] = 2, + [163880] = 3, + ACTIONS(9243), 1, + sym_identifier, + ACTIONS(9245), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8701), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163839] = 3, - ACTIONS(9224), 1, + [163891] = 3, + ACTIONS(8699), 1, sym_identifier, - ACTIONS(9226), 1, + ACTIONS(8703), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163850] = 3, - ACTIONS(9228), 1, - sym_identifier, - ACTIONS(9230), 1, - sym_private_property_identifier, + [163902] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2133), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163861] = 3, - ACTIONS(3443), 1, + [163913] = 3, + ACTIONS(3938), 1, anon_sym_LPAREN, - STATE(1259), 1, + STATE(1635), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163872] = 3, - ACTIONS(4116), 1, + [163924] = 3, + ACTIONS(8409), 1, + sym_identifier, + ACTIONS(8413), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163935] = 3, + ACTIONS(7465), 1, anon_sym_LBRACE, - STATE(2061), 1, + STATE(2647), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163883] = 3, - ACTIONS(7414), 1, + [163946] = 3, + ACTIONS(6995), 1, anon_sym_LBRACE, - STATE(2624), 1, - sym_statement_block, + STATE(772), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163894] = 3, - ACTIONS(6450), 1, + [163957] = 3, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5680), 1, + STATE(5683), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163905] = 3, - ACTIONS(6450), 1, + [163968] = 3, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(4384), 1, + STATE(4319), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163916] = 3, - ACTIONS(6450), 1, + [163979] = 3, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5691), 1, + STATE(5694), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163927] = 2, + [163990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(9232), 2, + ACTIONS(5972), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163936] = 3, - ACTIONS(6450), 1, + [163999] = 3, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(4387), 1, + STATE(4324), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163947] = 3, - ACTIONS(6450), 1, + [164010] = 3, + ACTIONS(6466), 1, anon_sym_LPAREN, - STATE(5698), 1, + STATE(5701), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163958] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5974), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [163967] = 3, - ACTIONS(6601), 1, - anon_sym_COLON, - ACTIONS(8460), 1, - anon_sym_GT, + [164021] = 3, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3569), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163978] = 3, - ACTIONS(9234), 1, + [164032] = 3, + ACTIONS(9247), 1, sym_identifier, - ACTIONS(9236), 1, + ACTIONS(9249), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163989] = 3, - ACTIONS(6752), 1, - anon_sym_LBRACE, - STATE(2064), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164000] = 3, - ACTIONS(9010), 1, - anon_sym_LPAREN, - STATE(67), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164011] = 3, - ACTIONS(9238), 1, + [164043] = 3, + ACTIONS(9251), 1, sym_identifier, - ACTIONS(9240), 1, + ACTIONS(9253), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164022] = 3, - ACTIONS(6452), 1, - anon_sym_COLON, - STATE(4758), 1, - sym_type_annotation, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164033] = 3, - ACTIONS(4535), 1, - anon_sym_LPAREN, - STATE(2155), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164044] = 3, - ACTIONS(8388), 1, + [164054] = 3, + ACTIONS(9255), 1, sym_identifier, - ACTIONS(8392), 1, + ACTIONS(9257), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164055] = 2, - ACTIONS(9242), 1, - anon_sym_target, + [164065] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164063] = 2, - ACTIONS(9244), 1, - anon_sym_EQ_GT, + ACTIONS(5035), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [164074] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164071] = 2, - ACTIONS(9246), 1, - anon_sym_RBRACK, + ACTIONS(5976), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164083] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2144), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164079] = 2, - ACTIONS(9248), 1, - sym_identifier, + [164094] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164087] = 2, - ACTIONS(9250), 1, - sym_identifier, + [164105] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2648), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164095] = 2, - ACTIONS(9252), 1, - anon_sym_RBRACK, + [164116] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5227), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164103] = 2, - ACTIONS(9254), 1, - sym_identifier, + [164127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164111] = 2, - ACTIONS(9256), 1, - anon_sym_RBRACK, + ACTIONS(9259), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [164136] = 3, + ACTIONS(9261), 1, + sym_identifier, + ACTIONS(9263), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164119] = 2, - ACTIONS(9258), 1, - anon_sym_symbol, + [164147] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2156), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164127] = 2, - ACTIONS(9260), 1, - anon_sym_RBRACK, + [164158] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164135] = 2, - ACTIONS(4913), 1, - anon_sym_RPAREN, + ACTIONS(5962), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164167] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164143] = 2, - ACTIONS(9262), 1, - anon_sym_RBRACK, + [164178] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5354), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164151] = 2, - ACTIONS(9264), 1, + [164189] = 2, + ACTIONS(9265), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164159] = 2, - ACTIONS(9266), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164167] = 2, - ACTIONS(9268), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164175] = 2, - ACTIONS(9270), 1, - anon_sym_RBRACK, + [164197] = 2, + ACTIONS(9267), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164183] = 2, - ACTIONS(5283), 1, - anon_sym_in, + [164205] = 2, + ACTIONS(9269), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164191] = 2, - ACTIONS(9272), 1, - anon_sym_LBRACK, + [164213] = 2, + ACTIONS(9271), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164199] = 2, - ACTIONS(9274), 1, - anon_sym_class, + [164221] = 2, + ACTIONS(9273), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164207] = 2, - ACTIONS(9276), 1, - sym_identifier, + [164229] = 2, + ACTIONS(9275), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164215] = 2, - ACTIONS(9278), 1, - anon_sym_EQ_GT, + [164237] = 2, + ACTIONS(5389), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164223] = 2, - ACTIONS(9280), 1, + [164245] = 2, + ACTIONS(9277), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164231] = 2, - ACTIONS(9282), 1, + [164253] = 2, + ACTIONS(9279), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164239] = 2, - ACTIONS(9284), 1, - anon_sym_namespace, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164247] = 2, - ACTIONS(9286), 1, - sym_identifier, + [164261] = 2, + ACTIONS(9281), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164255] = 2, - ACTIONS(9288), 1, - anon_sym_RBRACK, + [164269] = 2, + ACTIONS(9283), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164263] = 2, - ACTIONS(9290), 1, - anon_sym_RBRACK, + [164277] = 2, + ACTIONS(9285), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164271] = 2, - ACTIONS(8803), 1, + [164285] = 2, + ACTIONS(9287), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164279] = 2, - ACTIONS(8547), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164287] = 2, - ACTIONS(9292), 1, - anon_sym_as, + [164293] = 2, + ACTIONS(9289), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164295] = 2, - ACTIONS(9294), 1, + [164301] = 2, + ACTIONS(9291), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164303] = 2, - ACTIONS(9296), 1, + [164309] = 2, + ACTIONS(9293), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164311] = 2, - ACTIONS(9298), 1, - anon_sym_RBRACK, + [164317] = 2, + ACTIONS(5349), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164319] = 2, - ACTIONS(5322), 1, - anon_sym_RPAREN, + [164325] = 2, + ACTIONS(9295), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164327] = 2, - ACTIONS(9300), 1, - anon_sym_RBRACK, + [164333] = 2, + ACTIONS(9297), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164335] = 2, - ACTIONS(9302), 1, - anon_sym_RBRACK, + [164341] = 2, + ACTIONS(9299), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164343] = 2, - ACTIONS(9304), 1, + [164349] = 2, + ACTIONS(9301), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164351] = 2, - ACTIONS(9306), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, + [164357] = 3, + ACTIONS(3), 1, sym_comment, - [164359] = 2, - ACTIONS(9308), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, + ACTIONS(9303), 1, + anon_sym_SLASH2, [164367] = 2, - ACTIONS(9310), 1, - anon_sym_EQ_GT, + ACTIONS(9305), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [164375] = 2, - ACTIONS(9312), 1, - anon_sym_EQ_GT, + ACTIONS(9307), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, [164383] = 2, - ACTIONS(9314), 1, + ACTIONS(9309), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164391] = 2, - ACTIONS(9316), 1, + ACTIONS(5438), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [164399] = 2, - ACTIONS(9318), 1, - anon_sym_RBRACK, + ACTIONS(9311), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [164407] = 2, - ACTIONS(9320), 1, + ACTIONS(9313), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164415] = 2, - ACTIONS(9322), 1, - anon_sym_RBRACK, + ACTIONS(9315), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [164423] = 2, - ACTIONS(9324), 1, - anon_sym_RBRACK, + ACTIONS(5547), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [164431] = 2, - ACTIONS(9326), 1, - sym_identifier, + ACTIONS(9317), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [164439] = 2, - ACTIONS(9328), 1, - anon_sym_EQ, + ACTIONS(9319), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164447] = 2, - ACTIONS(9330), 1, + [164447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9321), 1, + sym_regex_pattern, + [164457] = 2, + ACTIONS(9323), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164455] = 2, - ACTIONS(8567), 1, - sym_identifier, + [164465] = 2, + ACTIONS(9325), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164463] = 2, - ACTIONS(9332), 1, + [164473] = 2, + ACTIONS(9327), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164471] = 2, - ACTIONS(9334), 1, - anon_sym_class, + [164481] = 2, + ACTIONS(9329), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9336), 1, - sym_regex_pattern, [164489] = 2, - ACTIONS(9338), 1, - sym_number, + ACTIONS(9331), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [164497] = 2, - ACTIONS(9340), 1, - sym_identifier, + ACTIONS(9333), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [164505] = 2, - ACTIONS(9342), 1, + ACTIONS(9335), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [164513] = 2, - ACTIONS(9344), 1, - anon_sym_EQ, + ACTIONS(8755), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164521] = 2, - ACTIONS(9346), 1, - anon_sym_COLON, + ACTIONS(9337), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [164529] = 2, - ACTIONS(9348), 1, - anon_sym_EQ, + ACTIONS(9339), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, [164537] = 2, - ACTIONS(9350), 1, - anon_sym_RBRACK, + ACTIONS(9341), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, [164545] = 2, - ACTIONS(8751), 1, - anon_sym_GT, + ACTIONS(8653), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, [164553] = 2, - ACTIONS(9352), 1, + ACTIONS(9343), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164561] = 2, - ACTIONS(9354), 1, + ACTIONS(9345), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164569] = 2, - ACTIONS(9356), 1, - anon_sym_RBRACK, + ACTIONS(9347), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [164577] = 2, - ACTIONS(9358), 1, - anon_sym_DOT, + ACTIONS(9349), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [164585] = 2, - ACTIONS(5304), 1, + ACTIONS(9351), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164593] = 2, - ACTIONS(8501), 1, - anon_sym_RBRACK, + ACTIONS(8569), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [164601] = 2, - ACTIONS(9360), 1, + ACTIONS(9353), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164609] = 2, - ACTIONS(9362), 1, - anon_sym_RBRACK, + ACTIONS(9355), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, [164617] = 2, - ACTIONS(9364), 1, - anon_sym_RBRACK, + ACTIONS(9357), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [164625] = 2, - ACTIONS(9366), 1, - anon_sym_EQ_GT, + ACTIONS(9359), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164633] = 2, - ACTIONS(9368), 1, - anon_sym_RBRACK, + ACTIONS(9361), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, [164641] = 2, - ACTIONS(9370), 1, - anon_sym_EQ, + ACTIONS(9363), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164649] = 2, - ACTIONS(9372), 1, - anon_sym_EQ_GT, + ACTIONS(9365), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164657] = 2, - ACTIONS(9374), 1, - anon_sym_RBRACK, + [164657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9367), 1, + sym_regex_pattern, + [164667] = 2, + ACTIONS(9369), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164665] = 2, - ACTIONS(9376), 1, + [164675] = 2, + ACTIONS(9371), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164673] = 2, - ACTIONS(9378), 1, + [164683] = 2, + ACTIONS(9373), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164681] = 2, - ACTIONS(9380), 1, - sym_identifier, + [164691] = 2, + ACTIONS(9375), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164689] = 2, - ACTIONS(9382), 1, - sym_identifier, + [164699] = 2, + ACTIONS(9377), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164697] = 2, - ACTIONS(9384), 1, - sym_identifier, + [164707] = 2, + ACTIONS(9379), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164705] = 2, - ACTIONS(9386), 1, - anon_sym_new, + [164715] = 2, + ACTIONS(9381), 1, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164713] = 2, - ACTIONS(9388), 1, - sym_identifier, + [164723] = 2, + ACTIONS(9383), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164721] = 2, - ACTIONS(9390), 1, - anon_sym_RBRACK, + [164731] = 2, + ACTIONS(9385), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164729] = 2, - ACTIONS(9392), 1, + [164739] = 2, + ACTIONS(9387), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164737] = 2, - ACTIONS(9394), 1, - anon_sym_RBRACK, + [164747] = 2, + ACTIONS(9389), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164745] = 2, - ACTIONS(9396), 1, - anon_sym_EQ_GT, + [164755] = 2, + ACTIONS(9391), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164753] = 2, - ACTIONS(9398), 1, - anon_sym_RBRACK, + [164763] = 2, + ACTIONS(9393), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164761] = 2, - ACTIONS(9400), 1, - anon_sym_RBRACK, + [164771] = 2, + ACTIONS(8637), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164769] = 2, - ACTIONS(9402), 1, - anon_sym_RBRACK, + [164779] = 2, + ACTIONS(9395), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164777] = 2, - ACTIONS(9404), 1, - anon_sym_RBRACK, + [164787] = 2, + ACTIONS(9397), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164785] = 2, - ACTIONS(5306), 1, - anon_sym_RBRACE, + [164795] = 2, + ACTIONS(9399), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164793] = 2, - ACTIONS(9406), 1, - anon_sym_EQ_GT, + [164803] = 2, + ACTIONS(9401), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164801] = 2, - ACTIONS(9408), 1, + [164811] = 2, + ACTIONS(9403), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164809] = 2, - ACTIONS(9410), 1, + [164819] = 2, + ACTIONS(9405), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164817] = 2, - ACTIONS(9412), 1, - anon_sym_EQ_GT, + [164827] = 2, + ACTIONS(9407), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164825] = 2, - ACTIONS(9414), 1, + [164835] = 2, + ACTIONS(9409), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164833] = 2, - ACTIONS(5519), 1, - anon_sym_SEMI, + [164843] = 2, + ACTIONS(9411), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164841] = 2, - ACTIONS(9416), 1, - anon_sym_RBRACK, + [164851] = 2, + ACTIONS(9413), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164859] = 2, + ACTIONS(9415), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164849] = 2, - ACTIONS(9418), 1, + [164867] = 2, + ACTIONS(9417), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164857] = 2, - ACTIONS(9420), 1, - anon_sym_target, + [164875] = 2, + ACTIONS(9419), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164865] = 2, - ACTIONS(9422), 1, + [164883] = 2, + ACTIONS(9421), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164873] = 2, - ACTIONS(7323), 1, - anon_sym_EQ, + [164891] = 2, + ACTIONS(5519), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164881] = 2, - ACTIONS(5231), 1, - anon_sym_RBRACK, + [164899] = 2, + ACTIONS(9423), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164889] = 2, - ACTIONS(5316), 1, - anon_sym_COLON, + [164907] = 2, + ACTIONS(9425), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164897] = 2, - ACTIONS(9424), 1, + [164915] = 2, + ACTIONS(9427), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164905] = 2, - ACTIONS(9426), 1, - anon_sym_EQ_GT, + [164923] = 2, + ACTIONS(9429), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164913] = 2, - ACTIONS(9428), 1, - anon_sym_COLON, + [164931] = 2, + ACTIONS(7720), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164921] = 2, - ACTIONS(9430), 1, + [164939] = 2, + ACTIONS(9431), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164929] = 2, - ACTIONS(9432), 1, - sym_identifier, + [164947] = 2, + ACTIONS(9433), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164937] = 2, - ACTIONS(7211), 1, - anon_sym_is, + [164955] = 2, + ACTIONS(9435), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164945] = 2, - ACTIONS(8460), 1, - anon_sym_GT, + [164963] = 2, + ACTIONS(9437), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164953] = 2, - ACTIONS(9434), 1, - anon_sym_as, + [164971] = 2, + ACTIONS(5371), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164961] = 2, - ACTIONS(9436), 1, - anon_sym_EQ_GT, + [164979] = 2, + ACTIONS(9439), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164969] = 2, - ACTIONS(9438), 1, - anon_sym_symbol, + [164987] = 2, + ACTIONS(9441), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164977] = 2, - ACTIONS(5521), 1, - anon_sym_SEMI, + [164995] = 2, + ACTIONS(9443), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164985] = 2, - ACTIONS(9440), 1, + [165003] = 2, + ACTIONS(9445), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164993] = 2, - ACTIONS(9442), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165001] = 2, - ACTIONS(9444), 1, - anon_sym_EQ_GT, + [165011] = 2, + ACTIONS(9447), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165009] = 2, - ACTIONS(9446), 1, + [165019] = 2, + ACTIONS(9449), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165017] = 2, - ACTIONS(9448), 1, + [165027] = 2, + ACTIONS(9451), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165025] = 2, - ACTIONS(9450), 1, - anon_sym_from, + [165035] = 2, + ACTIONS(9453), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165033] = 2, - ACTIONS(9452), 1, + [165043] = 2, + ACTIONS(9455), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165041] = 2, - ACTIONS(9454), 1, - sym_identifier, + [165051] = 2, + ACTIONS(9457), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165049] = 2, - ACTIONS(9456), 1, - anon_sym_EQ_GT, + [165059] = 2, + ACTIONS(9459), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165057] = 2, - ACTIONS(9458), 1, + [165067] = 2, + ACTIONS(9461), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165065] = 2, - ACTIONS(9460), 1, - anon_sym_EQ_GT, + [165075] = 2, + ACTIONS(7236), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165073] = 2, - ACTIONS(9462), 1, - sym_identifier, + [165083] = 2, + ACTIONS(5795), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165081] = 2, - ACTIONS(9464), 1, - anon_sym_EQ_GT, + [165091] = 2, + ACTIONS(4444), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165089] = 2, - ACTIONS(9466), 1, - anon_sym_RBRACK, + [165099] = 2, + ACTIONS(5531), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165097] = 2, - ACTIONS(9468), 1, - anon_sym_from, + [165107] = 2, + ACTIONS(9463), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165105] = 2, - ACTIONS(6068), 1, - anon_sym_EQ_GT, + [165115] = 2, + ACTIONS(5379), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165113] = 2, - ACTIONS(9470), 1, - anon_sym_EQ, + [165123] = 2, + ACTIONS(9465), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165121] = 2, - ACTIONS(9472), 1, - anon_sym_RBRACK, + [165131] = 2, + ACTIONS(9467), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165129] = 2, - ACTIONS(9474), 1, - anon_sym_RBRACK, + [165139] = 2, + ACTIONS(9469), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165137] = 2, - ACTIONS(9476), 1, - anon_sym_RBRACK, + [165147] = 2, + ACTIONS(6681), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165145] = 2, - ACTIONS(9478), 1, - sym_number, + [165155] = 2, + ACTIONS(8513), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165153] = 2, - ACTIONS(9480), 1, - sym_identifier, + [165163] = 2, + ACTIONS(5535), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165161] = 2, - ACTIONS(9482), 1, - ts_builtin_sym_end, + [165171] = 2, + ACTIONS(9471), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165169] = 2, - ACTIONS(9484), 1, - anon_sym_RBRACK, + [165179] = 2, + ACTIONS(9473), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165177] = 2, - ACTIONS(9486), 1, - sym_identifier, + [165187] = 2, + ACTIONS(9475), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165185] = 2, - ACTIONS(9488), 1, - anon_sym_RBRACK, + [165195] = 2, + ACTIONS(9477), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165193] = 2, - ACTIONS(9490), 1, - sym_number, + [165203] = 2, + ACTIONS(9479), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165201] = 2, - ACTIONS(9492), 1, - anon_sym_RBRACK, + [165211] = 2, + ACTIONS(9481), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165209] = 2, - ACTIONS(9494), 1, - anon_sym_EQ_GT, + [165219] = 2, + ACTIONS(9483), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165217] = 2, - ACTIONS(9496), 1, + [165227] = 2, + ACTIONS(9485), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165225] = 2, - ACTIONS(9498), 1, - anon_sym_symbol, + [165235] = 2, + ACTIONS(9487), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165233] = 2, - ACTIONS(9500), 1, + [165243] = 2, + ACTIONS(9489), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165241] = 2, - ACTIONS(4034), 1, - anon_sym_is, + [165251] = 2, + ACTIONS(9491), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165249] = 2, - ACTIONS(9502), 1, - anon_sym_EQ_GT, + [165259] = 2, + ACTIONS(7349), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165257] = 2, - ACTIONS(9504), 1, - anon_sym_EQ_GT, + [165267] = 2, + ACTIONS(9493), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165265] = 2, - ACTIONS(9506), 1, - anon_sym_RBRACK, + [165275] = 2, + ACTIONS(5509), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165273] = 2, - ACTIONS(9508), 1, - anon_sym_class, + [165283] = 2, + ACTIONS(9495), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165281] = 2, - ACTIONS(9510), 1, + [165291] = 2, + ACTIONS(9497), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165289] = 2, - ACTIONS(4935), 1, - anon_sym_RPAREN, + [165299] = 2, + ACTIONS(9499), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9512), 1, - sym_regex_pattern, [165307] = 2, - ACTIONS(9514), 1, + ACTIONS(9501), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [165315] = 2, - ACTIONS(9516), 1, + ACTIONS(9503), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165323] = 2, - ACTIONS(9518), 1, - anon_sym_EQ_GT, + ACTIONS(9505), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, [165331] = 2, - ACTIONS(7390), 1, - anon_sym_is, + ACTIONS(9507), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165339] = 2, - ACTIONS(9520), 1, - anon_sym_EQ_GT, + ACTIONS(9509), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165347] = 2, - ACTIONS(9522), 1, - anon_sym_RBRACK, + ACTIONS(9511), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165355] = 2, - ACTIONS(5255), 1, - anon_sym_RBRACE, + ACTIONS(9505), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, [165363] = 2, - ACTIONS(9524), 1, - anon_sym_from, + ACTIONS(9513), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165371] = 2, - ACTIONS(8322), 1, - anon_sym_EQ_GT, + ACTIONS(9515), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165379] = 2, - ACTIONS(9526), 1, - anon_sym_EQ_GT, + ACTIONS(9517), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165387] = 2, - ACTIONS(9528), 1, - anon_sym_new, + ACTIONS(9519), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165395] = 2, - ACTIONS(9530), 1, + ACTIONS(9521), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165403] = 2, - ACTIONS(9532), 1, - anon_sym_EQ_GT, + ACTIONS(9523), 1, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, [165411] = 2, - ACTIONS(9534), 1, - sym_identifier, + ACTIONS(9525), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, [165419] = 2, - ACTIONS(9536), 1, - sym_identifier, + ACTIONS(9527), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165427] = 2, - ACTIONS(9538), 1, + ACTIONS(9529), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165435] = 2, - ACTIONS(9540), 1, - anon_sym_symbol, + ACTIONS(9531), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165443] = 2, - ACTIONS(9542), 1, - anon_sym_EQ_GT, + ACTIONS(9533), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, [165451] = 2, - ACTIONS(9544), 1, + ACTIONS(5433), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [165459] = 2, - ACTIONS(5318), 1, - anon_sym_RPAREN, + ACTIONS(9535), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165467] = 3, - ACTIONS(3), 1, + [165467] = 2, + ACTIONS(9537), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [165475] = 2, + ACTIONS(9539), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9546), 1, - anon_sym_SLASH2, - [165477] = 2, - ACTIONS(5387), 1, - anon_sym_RPAREN, + sym_comment, + [165483] = 2, + ACTIONS(9541), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165485] = 2, - ACTIONS(5324), 1, - anon_sym_SEMI, + [165491] = 2, + ACTIONS(9543), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165493] = 2, - ACTIONS(9548), 1, - anon_sym_DOT, + [165499] = 2, + ACTIONS(9545), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165501] = 2, - ACTIONS(9550), 1, + [165507] = 2, + ACTIONS(9547), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165509] = 2, - ACTIONS(9552), 1, - anon_sym_EQ_GT, + [165515] = 2, + ACTIONS(9549), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165517] = 2, - ACTIONS(5460), 1, - anon_sym_SEMI, + [165523] = 2, + ACTIONS(9551), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165525] = 2, - ACTIONS(4863), 1, - anon_sym_in, + [165531] = 2, + ACTIONS(8647), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165533] = 2, - ACTIONS(5308), 1, - anon_sym_RBRACK, + [165539] = 2, + ACTIONS(8846), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165541] = 2, - ACTIONS(9554), 1, + [165547] = 2, + ACTIONS(9553), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165549] = 2, - ACTIONS(9556), 1, + [165555] = 2, + ACTIONS(9555), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165557] = 2, - ACTIONS(5697), 1, - anon_sym_in, + [165563] = 2, + ACTIONS(9557), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165565] = 2, - ACTIONS(9558), 1, - anon_sym_EQ_GT, + [165571] = 2, + ACTIONS(9559), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165573] = 2, - ACTIONS(9560), 1, - anon_sym_EQ_GT, + [165579] = 2, + ACTIONS(4026), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165581] = 2, - ACTIONS(9562), 1, - anon_sym_EQ_GT, + [165587] = 2, + ACTIONS(9561), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165589] = 2, - ACTIONS(8466), 1, + [165595] = 2, + ACTIONS(9563), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165597] = 2, - ACTIONS(5559), 1, - anon_sym_SEMI, + [165603] = 2, + ACTIONS(9565), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165605] = 2, - ACTIONS(9564), 1, - anon_sym_EQ_GT, + [165611] = 2, + ACTIONS(7387), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165613] = 2, - ACTIONS(9566), 1, + [165619] = 2, + ACTIONS(9567), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165621] = 2, - ACTIONS(9568), 1, - anon_sym_EQ_GT, + [165627] = 2, + ACTIONS(9569), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165629] = 2, - ACTIONS(9570), 1, - anon_sym_EQ_GT, + [165635] = 2, + ACTIONS(9571), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165637] = 2, - ACTIONS(9572), 1, - sym_identifier, + [165643] = 2, + ACTIONS(9573), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165645] = 2, - ACTIONS(9574), 1, - anon_sym_function, + [165651] = 2, + ACTIONS(9575), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165653] = 2, - ACTIONS(9576), 1, + [165659] = 2, + ACTIONS(9577), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165661] = 2, - ACTIONS(9578), 1, - anon_sym_while, + [165667] = 2, + ACTIONS(5457), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165669] = 2, - ACTIONS(9002), 1, + [165675] = 2, + ACTIONS(9579), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165683] = 2, + ACTIONS(9209), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165677] = 2, - ACTIONS(9580), 1, + [165691] = 2, + ACTIONS(7836), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165685] = 2, - ACTIONS(5471), 1, - anon_sym_RPAREN, + [165699] = 2, + ACTIONS(5402), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165693] = 2, - ACTIONS(9582), 1, - sym_identifier, + [165707] = 2, + ACTIONS(5483), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165701] = 2, - ACTIONS(5153), 1, - anon_sym_in, + [165715] = 2, + ACTIONS(9581), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165709] = 2, - ACTIONS(9584), 1, - anon_sym_EQ_GT, + [165723] = 2, + ACTIONS(7732), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165717] = 2, - ACTIONS(9586), 1, + [165731] = 2, + ACTIONS(9583), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165725] = 2, - ACTIONS(9588), 1, - anon_sym_EQ, + [165739] = 2, + ACTIONS(5699), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165733] = 2, - ACTIONS(9590), 1, - anon_sym_LBRACE, + [165747] = 2, + ACTIONS(9585), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165741] = 2, - ACTIONS(9592), 1, - anon_sym_EQ_GT, + [165755] = 2, + ACTIONS(9587), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165749] = 2, - ACTIONS(9594), 1, - anon_sym_EQ, + [165763] = 2, + ACTIONS(9589), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165757] = 2, - ACTIONS(4958), 1, - anon_sym_RPAREN, + [165771] = 2, + ACTIONS(9591), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165765] = 2, - ACTIONS(6813), 1, - anon_sym_is, + [165779] = 2, + ACTIONS(9593), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165773] = 2, - ACTIONS(9596), 1, + [165787] = 2, + ACTIONS(9595), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165781] = 2, - ACTIONS(9598), 1, + [165795] = 2, + ACTIONS(9597), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165789] = 2, - ACTIONS(9600), 1, - anon_sym_EQ_GT, + [165803] = 2, + ACTIONS(9599), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165797] = 2, - ACTIONS(9602), 1, - anon_sym_RPAREN, + [165811] = 2, + ACTIONS(9601), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165805] = 2, - ACTIONS(5297), 1, - anon_sym_RBRACK, + [165819] = 2, + ACTIONS(6774), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165813] = 2, - ACTIONS(9604), 1, - anon_sym_EQ, + [165827] = 2, + ACTIONS(9603), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165835] = 2, + ACTIONS(5101), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165821] = 2, - ACTIONS(9606), 1, + [165843] = 2, + ACTIONS(9605), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165829] = 2, - ACTIONS(7614), 1, - anon_sym_RPAREN, + [165851] = 2, + ACTIONS(9607), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165837] = 2, - ACTIONS(9608), 1, - anon_sym_RBRACK, + [165859] = 2, + ACTIONS(9609), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165845] = 2, - ACTIONS(9610), 1, - anon_sym_EQ_GT, + [165867] = 2, + ACTIONS(9611), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165853] = 2, - ACTIONS(9612), 1, - anon_sym_EQ, + [165875] = 2, + ACTIONS(9613), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165861] = 3, - ACTIONS(3), 1, + [165883] = 2, + ACTIONS(9615), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [165891] = 2, + ACTIONS(9617), 1, + anon_sym_meta, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9614), 1, - sym_regex_pattern, - [165871] = 2, - ACTIONS(5395), 1, - anon_sym_RPAREN, + sym_comment, + [165899] = 2, + ACTIONS(9619), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165879] = 2, - ACTIONS(9616), 1, - sym_identifier, + [165907] = 2, + ACTIONS(9621), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165887] = 2, - ACTIONS(9618), 1, - sym_number, + [165915] = 2, + ACTIONS(9623), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165895] = 2, - ACTIONS(9620), 1, - anon_sym_RBRACK, + [165923] = 2, + ACTIONS(9625), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165903] = 2, - ACTIONS(9622), 1, - anon_sym_RPAREN, + [165931] = 2, + ACTIONS(9627), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165911] = 2, - ACTIONS(5795), 1, - anon_sym_in, + [165939] = 2, + ACTIONS(8848), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165919] = 2, - ACTIONS(9624), 1, - anon_sym_DOT, + [165947] = 2, + ACTIONS(9629), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165927] = 2, - ACTIONS(9626), 1, + [165955] = 2, + ACTIONS(9631), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165935] = 2, - ACTIONS(9628), 1, + [165963] = 2, + ACTIONS(9633), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165943] = 2, - ACTIONS(4487), 1, - anon_sym_in, + [165971] = 2, + ACTIONS(9635), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165951] = 2, - ACTIONS(5397), 1, - anon_sym_RPAREN, + [165979] = 2, + ACTIONS(9637), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165959] = 2, - ACTIONS(9630), 1, - anon_sym_RBRACK, + [165987] = 2, + ACTIONS(9639), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165967] = 2, - ACTIONS(5320), 1, + [165995] = 2, + ACTIONS(5406), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165975] = 2, - ACTIONS(9632), 1, + [166003] = 2, + ACTIONS(6110), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165983] = 2, - ACTIONS(9634), 1, - anon_sym_LPAREN, + [166011] = 2, + ACTIONS(9641), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166019] = 2, + ACTIONS(9643), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165991] = 2, - ACTIONS(9636), 1, + [166027] = 2, + ACTIONS(9645), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165999] = 2, - ACTIONS(9638), 1, + [166035] = 2, + ACTIONS(9647), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166007] = 2, - ACTIONS(9640), 1, + [166043] = 2, + ACTIONS(9649), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166015] = 2, - ACTIONS(5473), 1, + [166051] = 2, + ACTIONS(5485), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166023] = 2, - ACTIONS(9642), 1, - anon_sym_EQ, + [166059] = 2, + ACTIONS(6476), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166031] = 2, - ACTIONS(9644), 1, - anon_sym_EQ_GT, + [166067] = 2, + ACTIONS(4891), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166039] = 2, - ACTIONS(9646), 1, - sym_number, + [166075] = 2, + ACTIONS(5487), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166047] = 2, - ACTIONS(9648), 1, + [166083] = 2, + ACTIONS(9651), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166055] = 2, - ACTIONS(9650), 1, - sym_identifier, + [166091] = 2, + ACTIONS(9653), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166063] = 2, - ACTIONS(5475), 1, - anon_sym_RPAREN, + [166099] = 2, + ACTIONS(9655), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166071] = 2, - ACTIONS(9652), 1, - sym_identifier, + [166107] = 2, + ACTIONS(9657), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166079] = 2, - ACTIONS(9654), 1, - anon_sym_symbol, + [166115] = 2, + ACTIONS(9659), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166087] = 2, - ACTIONS(9656), 1, + [166123] = 2, + ACTIONS(9661), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166095] = 2, - ACTIONS(9658), 1, + [166131] = 2, + ACTIONS(9663), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166139] = 2, + ACTIONS(9665), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166103] = 2, - ACTIONS(9660), 1, - anon_sym_EQ_GT, + [166147] = 2, + ACTIONS(9667), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166111] = 2, - ACTIONS(9662), 1, - anon_sym_EQ_GT, + [166155] = 2, + ACTIONS(4906), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166119] = 2, - ACTIONS(9664), 1, + [166163] = 2, + ACTIONS(9669), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166127] = 2, - ACTIONS(9666), 1, - anon_sym_RBRACK, + [166171] = 2, + ACTIONS(9671), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166135] = 2, - ACTIONS(9668), 1, + [166179] = 2, + ACTIONS(9673), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166143] = 2, - ACTIONS(9670), 1, - anon_sym_DOT, + [166187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9675), 1, + sym_regex_pattern, + [166197] = 2, + ACTIONS(9677), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166151] = 2, - ACTIONS(6690), 1, - anon_sym_is, + [166205] = 2, + ACTIONS(9679), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166159] = 2, - ACTIONS(9672), 1, - sym_identifier, + [166213] = 2, + ACTIONS(9681), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166167] = 2, - ACTIONS(9674), 1, + [166221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9683), 1, + sym_regex_pattern, + [166231] = 2, + ACTIONS(9685), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166175] = 2, - ACTIONS(9676), 1, - anon_sym_RBRACK, + [166239] = 2, + ACTIONS(4889), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166183] = 2, - ACTIONS(9678), 1, - sym_identifier, + [166247] = 2, + ACTIONS(9687), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166191] = 2, - ACTIONS(5405), 1, - anon_sym_RPAREN, + [166255] = 2, + ACTIONS(9689), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166199] = 2, - ACTIONS(9680), 1, + [166263] = 2, + ACTIONS(9691), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166207] = 2, - ACTIONS(9682), 1, - anon_sym_EQ, + [166271] = 2, + ACTIONS(9693), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166215] = 2, - ACTIONS(9684), 1, + [166279] = 2, + ACTIONS(9695), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166223] = 2, - ACTIONS(9686), 1, + [166287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9697), 1, + anon_sym_SLASH2, + [166297] = 2, + ACTIONS(8681), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166231] = 2, - ACTIONS(9688), 1, - anon_sym_RPAREN, + [166305] = 2, + ACTIONS(9699), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166239] = 2, - ACTIONS(9690), 1, + [166313] = 2, + ACTIONS(9701), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166321] = 2, + ACTIONS(8132), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166329] = 2, + ACTIONS(9703), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166247] = 2, - ACTIONS(9692), 1, + [166337] = 2, + ACTIONS(5533), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166255] = 2, - ACTIONS(9694), 1, + [166345] = 2, + ACTIONS(9705), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166263] = 2, - ACTIONS(9696), 1, - anon_sym_RBRACK, + [166353] = 2, + ACTIONS(5523), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166271] = 2, - ACTIONS(8761), 1, - anon_sym_RBRACE, + [166361] = 2, + ACTIONS(9707), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166279] = 2, - ACTIONS(9698), 1, - anon_sym_RPAREN, + [166369] = 2, + ACTIONS(9709), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166287] = 2, - ACTIONS(9700), 1, - anon_sym_RBRACK, + [166377] = 2, + ACTIONS(8298), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166295] = 2, - ACTIONS(7801), 1, - anon_sym_EQ, + [166385] = 2, + ACTIONS(9711), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166393] = 2, + ACTIONS(9713), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166303] = 2, - ACTIONS(9702), 1, + [166401] = 2, + ACTIONS(9715), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166311] = 2, - ACTIONS(5577), 1, - anon_sym_RPAREN, + [166409] = 2, + ACTIONS(9717), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166319] = 2, - ACTIONS(9704), 1, - anon_sym_RPAREN, + [166417] = 2, + ACTIONS(9719), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166327] = 2, - ACTIONS(9706), 1, + [166425] = 2, + ACTIONS(9721), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166335] = 2, - ACTIONS(9708), 1, + [166433] = 2, + ACTIONS(5359), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166441] = 2, + ACTIONS(9723), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166343] = 2, - ACTIONS(5581), 1, + [166449] = 2, + ACTIONS(5511), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166351] = 2, - ACTIONS(9710), 1, - sym_identifier, + [166457] = 2, + ACTIONS(9725), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166359] = 2, - ACTIONS(5583), 1, - anon_sym_RPAREN, + [166465] = 2, + ACTIONS(9727), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166367] = 2, - ACTIONS(5579), 1, + [166473] = 2, + ACTIONS(5308), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166481] = 2, + ACTIONS(5513), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166375] = 2, - ACTIONS(9712), 1, - anon_sym_EQ_GT, + [166489] = 2, + ACTIONS(9729), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166383] = 2, - ACTIONS(5585), 1, + [166497] = 2, + ACTIONS(5515), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166391] = 2, - ACTIONS(8817), 1, - sym_identifier, + [166505] = 2, + ACTIONS(9731), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166399] = 3, - ACTIONS(3), 1, + [166513] = 2, + ACTIONS(9617), 1, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [166521] = 2, + ACTIONS(5517), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9714), 1, - anon_sym_SLASH2, - [166409] = 2, - ACTIONS(9716), 1, + sym_comment, + [166529] = 2, + ACTIONS(9733), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166417] = 2, - ACTIONS(9718), 1, + [166537] = 2, + ACTIONS(4957), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166425] = 2, - ACTIONS(5443), 1, - anon_sym_in, + [166545] = 2, + ACTIONS(9735), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166433] = 2, - ACTIONS(9720), 1, - anon_sym_class, + [166553] = 2, + ACTIONS(9737), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166441] = 2, - ACTIONS(9722), 1, - anon_sym_RBRACK, + [166561] = 2, + ACTIONS(9739), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166449] = 2, - ACTIONS(8601), 1, + [166569] = 2, + ACTIONS(9741), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166457] = 2, - ACTIONS(9724), 1, - anon_sym_EQ, + [166577] = 2, + ACTIONS(9743), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166465] = 3, - ACTIONS(3), 1, + [166585] = 2, + ACTIONS(9745), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [166593] = 2, + ACTIONS(9747), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9726), 1, - anon_sym_SLASH2, - [166475] = 2, - ACTIONS(9728), 1, + sym_comment, + [166601] = 2, + ACTIONS(9749), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166483] = 2, - ACTIONS(8643), 1, - anon_sym_RBRACE, + [166609] = 2, + ACTIONS(9751), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166491] = 2, - ACTIONS(9242), 1, - anon_sym_meta, + [166617] = 2, + ACTIONS(9753), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166499] = 2, - ACTIONS(4885), 1, + [166625] = 2, + ACTIONS(9755), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166633] = 2, + ACTIONS(4879), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166507] = 2, - ACTIONS(9730), 1, - sym_identifier, + [166641] = 2, + ACTIONS(9757), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166515] = 2, - ACTIONS(5587), 1, - anon_sym_RPAREN, + [166649] = 2, + ACTIONS(9759), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166523] = 2, - ACTIONS(9732), 1, + [166657] = 2, + ACTIONS(9761), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166531] = 2, - ACTIONS(9734), 1, - anon_sym_RBRACK, + [166665] = 2, + ACTIONS(9763), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166539] = 2, - ACTIONS(9736), 1, + [166673] = 2, + ACTIONS(9765), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166547] = 2, - ACTIONS(9738), 1, - anon_sym_RBRACK, + [166681] = 2, + ACTIONS(9767), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166555] = 2, - ACTIONS(9740), 1, - anon_sym_EQ_GT, + [166689] = 2, + ACTIONS(9769), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166563] = 2, - ACTIONS(9742), 1, + [166697] = 2, + ACTIONS(9771), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166571] = 2, - ACTIONS(8885), 1, - anon_sym_GT, + [166705] = 2, + ACTIONS(9773), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166579] = 2, - ACTIONS(9744), 1, + [166713] = 2, + ACTIONS(9775), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166587] = 2, - ACTIONS(9746), 1, + [166721] = 2, + ACTIONS(9777), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166595] = 2, - ACTIONS(9748), 1, + [166729] = 2, + ACTIONS(9779), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166603] = 2, - ACTIONS(9750), 1, - anon_sym_EQ, + [166737] = 2, + ACTIONS(9781), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166611] = 2, - ACTIONS(9752), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [166745] = 3, + ACTIONS(3), 1, sym_comment, - [166619] = 2, - ACTIONS(9754), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9783), 1, + anon_sym_SLASH2, + [166755] = 2, + ACTIONS(9785), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166627] = 2, - ACTIONS(5249), 1, - anon_sym_RBRACE, + [166763] = 2, + ACTIONS(9787), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166635] = 2, - ACTIONS(9756), 1, - sym_identifier, + [166771] = 2, + ACTIONS(9789), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166643] = 2, - ACTIONS(9420), 1, - anon_sym_meta, + [166779] = 2, + ACTIONS(9791), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166651] = 2, - ACTIONS(9758), 1, - anon_sym_EQ, + [166787] = 2, + ACTIONS(5361), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166659] = 2, - ACTIONS(9760), 1, + [166795] = 2, + ACTIONS(9793), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166667] = 2, - ACTIONS(9762), 1, - anon_sym_DOT, + [166803] = 2, + ACTIONS(9795), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166675] = 2, - ACTIONS(9764), 1, - sym_identifier, + [166811] = 2, + ACTIONS(9797), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166683] = 2, - ACTIONS(9766), 1, + [166819] = 2, + ACTIONS(9799), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166691] = 2, - ACTIONS(9768), 1, + [166827] = 2, + ACTIONS(9801), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166699] = 2, - ACTIONS(9770), 1, + [166835] = 2, + ACTIONS(9803), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166707] = 2, - ACTIONS(9772), 1, - anon_sym_EQ_GT, + [166843] = 2, + ACTIONS(5463), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166715] = 2, - ACTIONS(5589), 1, + [166851] = 2, + ACTIONS(5543), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166723] = 2, - ACTIONS(9774), 1, - anon_sym_COLON, + [166859] = 2, + ACTIONS(9805), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166731] = 2, - ACTIONS(9776), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [166867] = 3, + ACTIONS(3), 1, sym_comment, - [166739] = 2, - ACTIONS(5591), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9807), 1, + anon_sym_SLASH2, + [166877] = 2, + ACTIONS(5545), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166747] = 2, - ACTIONS(9778), 1, + [166885] = 2, + ACTIONS(9809), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166755] = 2, - ACTIONS(9780), 1, - anon_sym_RPAREN, + [166893] = 2, + ACTIONS(5221), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166763] = 2, - ACTIONS(9782), 1, + [166901] = 2, + ACTIONS(9811), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166771] = 2, - ACTIONS(9784), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [166779] = 2, - ACTIONS(8902), 1, - anon_sym_RBRACK, + [166909] = 2, + ACTIONS(9813), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166787] = 3, + [166917] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9786), 1, - sym_regex_pattern, - [166797] = 2, - ACTIONS(7464), 1, - anon_sym_RPAREN, + ACTIONS(9815), 1, + anon_sym_SLASH2, + [166927] = 2, + ACTIONS(9817), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166805] = 2, - ACTIONS(9788), 1, - anon_sym_RBRACK, + [166935] = 2, + ACTIONS(9819), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166813] = 2, - ACTIONS(9790), 1, - sym_identifier, + [166943] = 2, + ACTIONS(9821), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166951] = 2, + ACTIONS(9823), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166821] = 2, - ACTIONS(9792), 1, + [166959] = 2, + ACTIONS(9825), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166829] = 2, - ACTIONS(9794), 1, + [166967] = 2, + ACTIONS(9827), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166837] = 2, - ACTIONS(9796), 1, - anon_sym_EQ_GT, + [166975] = 2, + ACTIONS(9829), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166845] = 2, - ACTIONS(9798), 1, - sym_identifier, + [166983] = 2, + ACTIONS(9831), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166853] = 2, - ACTIONS(9800), 1, - anon_sym_EQ_GT, + [166991] = 2, + ACTIONS(9833), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166861] = 2, - ACTIONS(9802), 1, - anon_sym_RBRACK, + [166999] = 2, + ACTIONS(8466), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166869] = 2, - ACTIONS(9804), 1, - anon_sym_EQ_GT, + [167007] = 2, + ACTIONS(9835), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166877] = 2, - ACTIONS(9806), 1, + [167015] = 2, + ACTIONS(9837), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166885] = 2, - ACTIONS(5745), 1, - anon_sym_in, + [167023] = 2, + ACTIONS(9839), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166893] = 2, - ACTIONS(9808), 1, - sym_identifier, + [167031] = 2, + ACTIONS(8933), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166901] = 2, - ACTIONS(9810), 1, - anon_sym_EQ_GT, + [167039] = 2, + ACTIONS(9841), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166909] = 2, - ACTIONS(9812), 1, + [167047] = 2, + ACTIONS(9843), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166917] = 2, - ACTIONS(9814), 1, + [167055] = 2, + ACTIONS(9845), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166925] = 2, - ACTIONS(9816), 1, - anon_sym_as, + [167063] = 2, + ACTIONS(9847), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166933] = 2, - ACTIONS(9818), 1, + [167071] = 2, + ACTIONS(9849), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166941] = 2, - ACTIONS(9820), 1, - anon_sym_RBRACK, + [167079] = 2, + ACTIONS(9851), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166949] = 2, - ACTIONS(9822), 1, + [167087] = 2, + ACTIONS(9853), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166957] = 2, - ACTIONS(9824), 1, - sym_identifier, + [167095] = 2, + ACTIONS(5747), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166965] = 2, - ACTIONS(9826), 1, + [167103] = 2, + ACTIONS(9855), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166973] = 2, - ACTIONS(9828), 1, + [167111] = 2, + ACTIONS(9857), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166981] = 2, - ACTIONS(9830), 1, - anon_sym_new, + [167119] = 2, + ACTIONS(9859), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166989] = 2, - ACTIONS(9832), 1, - anon_sym_RBRACK, + [167127] = 2, + ACTIONS(9861), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166997] = 2, - ACTIONS(9834), 1, - anon_sym_EQ_GT, + [167135] = 2, + ACTIONS(9863), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167005] = 2, - ACTIONS(8091), 1, + [167143] = 2, + ACTIONS(8134), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167013] = 2, - ACTIONS(9836), 1, + [167151] = 2, + ACTIONS(9865), 1, anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167021] = 2, - ACTIONS(9838), 1, - anon_sym_RBRACK, + [167159] = 2, + ACTIONS(9867), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167029] = 2, - ACTIONS(9840), 1, + [167167] = 2, + ACTIONS(9869), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167037] = 2, - ACTIONS(9842), 1, + [167175] = 2, + ACTIONS(8941), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167045] = 2, - ACTIONS(9844), 1, + [167183] = 2, + ACTIONS(9871), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167053] = 2, - ACTIONS(9846), 1, - sym_identifier, + [167191] = 2, + ACTIONS(9873), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167061] = 2, - ACTIONS(5593), 1, + [167199] = 2, + ACTIONS(5585), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167069] = 2, - ACTIONS(9848), 1, - anon_sym_require, + [167207] = 2, + ACTIONS(9875), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167077] = 2, - ACTIONS(9850), 1, + [167215] = 2, + ACTIONS(9877), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167085] = 2, - ACTIONS(9852), 1, + [167223] = 2, + ACTIONS(9879), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167093] = 2, - ACTIONS(8878), 1, - anon_sym_LBRACE, + [167231] = 2, + ACTIONS(9881), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167101] = 2, - ACTIONS(9854), 1, + [167239] = 2, + ACTIONS(9883), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167109] = 2, - ACTIONS(9856), 1, - anon_sym_RBRACK, + [167247] = 2, + ACTIONS(9885), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167117] = 2, - ACTIONS(9858), 1, + [167255] = 2, + ACTIONS(9887), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167125] = 2, - ACTIONS(9860), 1, - anon_sym_EQ, + [167263] = 2, + ACTIONS(9889), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167133] = 2, - ACTIONS(9862), 1, - anon_sym_COLON, + [167271] = 2, + ACTIONS(8737), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [167279] = 2, + ACTIONS(9891), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9864), 1, - sym_regex_pattern, - [167151] = 2, - ACTIONS(9866), 1, - anon_sym_from, + sym_comment, + [167287] = 2, + ACTIONS(9893), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167159] = 2, - ACTIONS(9868), 1, - anon_sym_EQ, + [167295] = 2, + ACTIONS(5521), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167167] = 2, - ACTIONS(9870), 1, - sym_identifier, + [167303] = 2, + ACTIONS(5191), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167175] = 2, - ACTIONS(6581), 1, - anon_sym_is, + [167311] = 2, + ACTIONS(9895), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167183] = 2, - ACTIONS(9872), 1, + [167319] = 2, + ACTIONS(9897), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167191] = 2, - ACTIONS(9874), 1, - anon_sym_RBRACK, + [167327] = 2, + ACTIONS(9899), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167199] = 2, - ACTIONS(9876), 1, + [167335] = 2, + ACTIONS(9901), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167207] = 2, - ACTIONS(9878), 1, - anon_sym_DOT, + [167343] = 2, + ACTIONS(9903), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167215] = 2, - ACTIONS(9880), 1, - anon_sym_EQ, + [167351] = 2, + ACTIONS(9905), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167223] = 2, - ACTIONS(8009), 1, - sym_identifier, + [167359] = 2, + ACTIONS(9907), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167231] = 2, - ACTIONS(4954), 1, - anon_sym_is, + [167367] = 2, + ACTIONS(4834), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167239] = 2, - ACTIONS(9882), 1, + [167375] = 2, + ACTIONS(9909), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9884), 1, - anon_sym_SLASH2, - [167257] = 2, - ACTIONS(9886), 1, + [167383] = 2, + ACTIONS(8472), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167265] = 2, - ACTIONS(9888), 1, - anon_sym_EQ_GT, + [167391] = 2, + ACTIONS(9911), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167273] = 2, - ACTIONS(4918), 1, - anon_sym_RPAREN, + [167399] = 2, + ACTIONS(5231), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167281] = 2, - ACTIONS(9890), 1, - anon_sym_RBRACK, + [167407] = 2, + ACTIONS(9913), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167289] = 3, - ACTIONS(3), 1, + [167415] = 2, + ACTIONS(9915), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [167423] = 2, + ACTIONS(9917), 1, + anon_sym_DOT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9892), 1, - anon_sym_SLASH2, - [167299] = 2, - ACTIONS(5573), 1, + sym_comment, + [167431] = 2, + ACTIONS(5603), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167307] = 2, - ACTIONS(9894), 1, + [167439] = 2, + ACTIONS(9919), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167315] = 2, - ACTIONS(9896), 1, - anon_sym_namespace, + [167447] = 2, + ACTIONS(4908), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167323] = 2, - ACTIONS(9898), 1, - anon_sym_from, + [167455] = 2, + ACTIONS(9921), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167331] = 2, - ACTIONS(9900), 1, + [167463] = 2, + ACTIONS(9923), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167339] = 2, - ACTIONS(9902), 1, + [167471] = 2, + ACTIONS(9925), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167347] = 2, - ACTIONS(9904), 1, - anon_sym_EQ_GT, + [167479] = 2, + ACTIONS(9927), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167355] = 2, - ACTIONS(9906), 1, - anon_sym_readonly, + [167487] = 2, + ACTIONS(9929), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [167363] = 2, - ACTIONS(9908), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [167495] = 3, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9931), 1, + sym_regex_pattern, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1167)] = 0, [SMALL_STATE(1168)] = 93, [SMALL_STATE(1169)] = 186, - [SMALL_STATE(1170)] = 257, - [SMALL_STATE(1171)] = 350, - [SMALL_STATE(1172)] = 423, - [SMALL_STATE(1173)] = 494, - [SMALL_STATE(1174)] = 567, - [SMALL_STATE(1175)] = 638, - [SMALL_STATE(1176)] = 731, - [SMALL_STATE(1177)] = 824, - [SMALL_STATE(1178)] = 895, - [SMALL_STATE(1179)] = 966, - [SMALL_STATE(1180)] = 1037, - [SMALL_STATE(1181)] = 1108, - [SMALL_STATE(1182)] = 1197, - [SMALL_STATE(1183)] = 1292, - [SMALL_STATE(1184)] = 1381, + [SMALL_STATE(1170)] = 277, + [SMALL_STATE(1171)] = 370, + [SMALL_STATE(1172)] = 443, + [SMALL_STATE(1173)] = 536, + [SMALL_STATE(1174)] = 607, + [SMALL_STATE(1175)] = 702, + [SMALL_STATE(1176)] = 775, + [SMALL_STATE(1177)] = 868, + [SMALL_STATE(1178)] = 957, + [SMALL_STATE(1179)] = 1028, + [SMALL_STATE(1180)] = 1099, + [SMALL_STATE(1181)] = 1170, + [SMALL_STATE(1182)] = 1259, + [SMALL_STATE(1183)] = 1330, + [SMALL_STATE(1184)] = 1401, [SMALL_STATE(1185)] = 1472, - [SMALL_STATE(1186)] = 1542, - [SMALL_STATE(1187)] = 1634, - [SMALL_STATE(1188)] = 1726, - [SMALL_STATE(1189)] = 1814, + [SMALL_STATE(1186)] = 1560, + [SMALL_STATE(1187)] = 1630, + [SMALL_STATE(1188)] = 1720, + [SMALL_STATE(1189)] = 1810, [SMALL_STATE(1190)] = 1900, [SMALL_STATE(1191)] = 1990, [SMALL_STATE(1192)] = 2080, - [SMALL_STATE(1193)] = 2170, - [SMALL_STATE(1194)] = 2258, + [SMALL_STATE(1193)] = 2166, + [SMALL_STATE(1194)] = 2254, [SMALL_STATE(1195)] = 2344, - [SMALL_STATE(1196)] = 2418, - [SMALL_STATE(1197)] = 2506, - [SMALL_STATE(1198)] = 2594, - [SMALL_STATE(1199)] = 2682, - [SMALL_STATE(1200)] = 2772, - [SMALL_STATE(1201)] = 2860, - [SMALL_STATE(1202)] = 2950, - [SMALL_STATE(1203)] = 3038, - [SMALL_STATE(1204)] = 3128, - [SMALL_STATE(1205)] = 3218, - [SMALL_STATE(1206)] = 3308, - [SMALL_STATE(1207)] = 3396, - [SMALL_STATE(1208)] = 3484, + [SMALL_STATE(1196)] = 2432, + [SMALL_STATE(1197)] = 2520, + [SMALL_STATE(1198)] = 2612, + [SMALL_STATE(1199)] = 2704, + [SMALL_STATE(1200)] = 2792, + [SMALL_STATE(1201)] = 2880, + [SMALL_STATE(1202)] = 2968, + [SMALL_STATE(1203)] = 3056, + [SMALL_STATE(1204)] = 3126, + [SMALL_STATE(1205)] = 3212, + [SMALL_STATE(1206)] = 3300, + [SMALL_STATE(1207)] = 3390, + [SMALL_STATE(1208)] = 3464, [SMALL_STATE(1209)] = 3554, - [SMALL_STATE(1210)] = 3641, - [SMALL_STATE(1211)] = 3728, - [SMALL_STATE(1212)] = 3815, + [SMALL_STATE(1210)] = 3645, + [SMALL_STATE(1211)] = 3732, + [SMALL_STATE(1212)] = 3823, [SMALL_STATE(1213)] = 3904, - [SMALL_STATE(1214)] = 3995, - [SMALL_STATE(1215)] = 4076, + [SMALL_STATE(1214)] = 3991, + [SMALL_STATE(1215)] = 4078, [SMALL_STATE(1216)] = 4167, - [SMALL_STATE(1217)] = 4254, - [SMALL_STATE(1218)] = 4333, + [SMALL_STATE(1217)] = 4258, + [SMALL_STATE(1218)] = 4337, [SMALL_STATE(1219)] = 4428, - [SMALL_STATE(1220)] = 4517, - [SMALL_STATE(1221)] = 4608, + [SMALL_STATE(1220)] = 4523, + [SMALL_STATE(1221)] = 4610, [SMALL_STATE(1222)] = 4699, - [SMALL_STATE(1223)] = 4773, - [SMALL_STATE(1224)] = 4851, - [SMALL_STATE(1225)] = 4937, - [SMALL_STATE(1226)] = 5011, - [SMALL_STATE(1227)] = 5085, - [SMALL_STATE(1228)] = 5163, - [SMALL_STATE(1229)] = 5249, - [SMALL_STATE(1230)] = 5335, - [SMALL_STATE(1231)] = 5425, - [SMALL_STATE(1232)] = 5499, - [SMALL_STATE(1233)] = 5589, - [SMALL_STATE(1234)] = 5675, - [SMALL_STATE(1235)] = 5753, - [SMALL_STATE(1236)] = 5839, - [SMALL_STATE(1237)] = 5929, - [SMALL_STATE(1238)] = 6015, - [SMALL_STATE(1239)] = 6101, - [SMALL_STATE(1240)] = 6187, - [SMALL_STATE(1241)] = 6273, - [SMALL_STATE(1242)] = 6359, - [SMALL_STATE(1243)] = 6445, - [SMALL_STATE(1244)] = 6525, - [SMALL_STATE(1245)] = 6617, - [SMALL_STATE(1246)] = 6695, - [SMALL_STATE(1247)] = 6785, - [SMALL_STATE(1248)] = 6853, - [SMALL_STATE(1249)] = 6939, + [SMALL_STATE(1223)] = 4777, + [SMALL_STATE(1224)] = 4869, + [SMALL_STATE(1225)] = 4955, + [SMALL_STATE(1226)] = 5033, + [SMALL_STATE(1227)] = 5123, + [SMALL_STATE(1228)] = 5197, + [SMALL_STATE(1229)] = 5283, + [SMALL_STATE(1230)] = 5361, + [SMALL_STATE(1231)] = 5453, + [SMALL_STATE(1232)] = 5539, + [SMALL_STATE(1233)] = 5625, + [SMALL_STATE(1234)] = 5711, + [SMALL_STATE(1235)] = 5785, + [SMALL_STATE(1236)] = 5871, + [SMALL_STATE(1237)] = 5961, + [SMALL_STATE(1238)] = 6041, + [SMALL_STATE(1239)] = 6119, + [SMALL_STATE(1240)] = 6205, + [SMALL_STATE(1241)] = 6291, + [SMALL_STATE(1242)] = 6377, + [SMALL_STATE(1243)] = 6463, + [SMALL_STATE(1244)] = 6537, + [SMALL_STATE(1245)] = 6627, + [SMALL_STATE(1246)] = 6701, + [SMALL_STATE(1247)] = 6787, + [SMALL_STATE(1248)] = 6855, + [SMALL_STATE(1249)] = 6945, [SMALL_STATE(1250)] = 7031, - [SMALL_STATE(1251)] = 7109, - [SMALL_STATE(1252)] = 7187, - [SMALL_STATE(1253)] = 7273, + [SMALL_STATE(1251)] = 7105, + [SMALL_STATE(1252)] = 7191, + [SMALL_STATE(1253)] = 7269, [SMALL_STATE(1254)] = 7347, - [SMALL_STATE(1255)] = 7432, - [SMALL_STATE(1256)] = 7519, - [SMALL_STATE(1257)] = 7608, - [SMALL_STATE(1258)] = 7677, - [SMALL_STATE(1259)] = 7756, - [SMALL_STATE(1260)] = 7823, - [SMALL_STATE(1261)] = 7892, - [SMALL_STATE(1262)] = 7969, - [SMALL_STATE(1263)] = 8040, - [SMALL_STATE(1264)] = 8125, + [SMALL_STATE(1255)] = 7418, + [SMALL_STATE(1256)] = 7485, + [SMALL_STATE(1257)] = 7570, + [SMALL_STATE(1258)] = 7639, + [SMALL_STATE(1259)] = 7728, + [SMALL_STATE(1260)] = 7817, + [SMALL_STATE(1261)] = 7906, + [SMALL_STATE(1262)] = 7981, + [SMALL_STATE(1263)] = 8056, + [SMALL_STATE(1264)] = 8135, [SMALL_STATE(1265)] = 8214, - [SMALL_STATE(1266)] = 8289, - [SMALL_STATE(1267)] = 8358, - [SMALL_STATE(1268)] = 8427, - [SMALL_STATE(1269)] = 8502, - [SMALL_STATE(1270)] = 8585, - [SMALL_STATE(1271)] = 8652, - [SMALL_STATE(1272)] = 8741, - [SMALL_STATE(1273)] = 8830, - [SMALL_STATE(1274)] = 8905, - [SMALL_STATE(1275)] = 8980, - [SMALL_STATE(1276)] = 9059, - [SMALL_STATE(1277)] = 9144, - [SMALL_STATE(1278)] = 9221, - [SMALL_STATE(1279)] = 9290, - [SMALL_STATE(1280)] = 9367, - [SMALL_STATE(1281)] = 9450, + [SMALL_STATE(1266)] = 8283, + [SMALL_STATE(1267)] = 8368, + [SMALL_STATE(1268)] = 8445, + [SMALL_STATE(1269)] = 8528, + [SMALL_STATE(1270)] = 8597, + [SMALL_STATE(1271)] = 8674, + [SMALL_STATE(1272)] = 8743, + [SMALL_STATE(1273)] = 8812, + [SMALL_STATE(1274)] = 8879, + [SMALL_STATE(1275)] = 8954, + [SMALL_STATE(1276)] = 9031, + [SMALL_STATE(1277)] = 9120, + [SMALL_STATE(1278)] = 9195, + [SMALL_STATE(1279)] = 9282, + [SMALL_STATE(1280)] = 9365, + [SMALL_STATE(1281)] = 9434, [SMALL_STATE(1282)] = 9519, - [SMALL_STATE(1283)] = 9601, - [SMALL_STATE(1284)] = 9673, - [SMALL_STATE(1285)] = 9739, - [SMALL_STATE(1286)] = 9817, - [SMALL_STATE(1287)] = 9897, - [SMALL_STATE(1288)] = 9963, - [SMALL_STATE(1289)] = 10029, - [SMALL_STATE(1290)] = 10099, - [SMALL_STATE(1291)] = 10165, - [SMALL_STATE(1292)] = 10239, - [SMALL_STATE(1293)] = 10313, - [SMALL_STATE(1294)] = 10379, - [SMALL_STATE(1295)] = 10445, - [SMALL_STATE(1296)] = 10511, - [SMALL_STATE(1297)] = 10599, - [SMALL_STATE(1298)] = 10675, - [SMALL_STATE(1299)] = 10747, - [SMALL_STATE(1300)] = 10813, - [SMALL_STATE(1301)] = 10879, - [SMALL_STATE(1302)] = 10963, - [SMALL_STATE(1303)] = 11029, - [SMALL_STATE(1304)] = 11095, - [SMALL_STATE(1305)] = 11167, - [SMALL_STATE(1306)] = 11239, - [SMALL_STATE(1307)] = 11311, - [SMALL_STATE(1308)] = 11383, - [SMALL_STATE(1309)] = 11461, - [SMALL_STATE(1310)] = 11539, - [SMALL_STATE(1311)] = 11611, - [SMALL_STATE(1312)] = 11685, - [SMALL_STATE(1313)] = 11759, - [SMALL_STATE(1314)] = 11833, - [SMALL_STATE(1315)] = 11905, - [SMALL_STATE(1316)] = 11979, - [SMALL_STATE(1317)] = 12063, - [SMALL_STATE(1318)] = 12143, + [SMALL_STATE(1283)] = 9585, + [SMALL_STATE(1284)] = 9661, + [SMALL_STATE(1285)] = 9745, + [SMALL_STATE(1286)] = 9823, + [SMALL_STATE(1287)] = 9895, + [SMALL_STATE(1288)] = 9983, + [SMALL_STATE(1289)] = 10049, + [SMALL_STATE(1290)] = 10123, + [SMALL_STATE(1291)] = 10197, + [SMALL_STATE(1292)] = 10263, + [SMALL_STATE(1293)] = 10337, + [SMALL_STATE(1294)] = 10403, + [SMALL_STATE(1295)] = 10477, + [SMALL_STATE(1296)] = 10555, + [SMALL_STATE(1297)] = 10627, + [SMALL_STATE(1298)] = 10699, + [SMALL_STATE(1299)] = 10765, + [SMALL_STATE(1300)] = 10839, + [SMALL_STATE(1301)] = 10921, + [SMALL_STATE(1302)] = 10987, + [SMALL_STATE(1303)] = 11053, + [SMALL_STATE(1304)] = 11125, + [SMALL_STATE(1305)] = 11197, + [SMALL_STATE(1306)] = 11281, + [SMALL_STATE(1307)] = 11347, + [SMALL_STATE(1308)] = 11431, + [SMALL_STATE(1309)] = 11509, + [SMALL_STATE(1310)] = 11581, + [SMALL_STATE(1311)] = 11647, + [SMALL_STATE(1312)] = 11721, + [SMALL_STATE(1313)] = 11793, + [SMALL_STATE(1314)] = 11859, + [SMALL_STATE(1315)] = 11939, + [SMALL_STATE(1316)] = 12019, + [SMALL_STATE(1317)] = 12089, + [SMALL_STATE(1318)] = 12155, [SMALL_STATE(1319)] = 12227, [SMALL_STATE(1320)] = 12315, [SMALL_STATE(1321)] = 12381, - [SMALL_STATE(1322)] = 12458, - [SMALL_STATE(1323)] = 12527, + [SMALL_STATE(1322)] = 12452, + [SMALL_STATE(1323)] = 12519, [SMALL_STATE(1324)] = 12596, [SMALL_STATE(1325)] = 12673, - [SMALL_STATE(1326)] = 12746, - [SMALL_STATE(1327)] = 12813, - [SMALL_STATE(1328)] = 12896, - [SMALL_STATE(1329)] = 12969, + [SMALL_STATE(1326)] = 12744, + [SMALL_STATE(1327)] = 12815, + [SMALL_STATE(1328)] = 12890, + [SMALL_STATE(1329)] = 12961, [SMALL_STATE(1330)] = 13040, - [SMALL_STATE(1331)] = 13107, - [SMALL_STATE(1332)] = 13182, - [SMALL_STATE(1333)] = 13259, - [SMALL_STATE(1334)] = 13330, - [SMALL_STATE(1335)] = 13403, - [SMALL_STATE(1336)] = 13472, - [SMALL_STATE(1337)] = 13551, - [SMALL_STATE(1338)] = 13620, - [SMALL_STATE(1339)] = 13697, - [SMALL_STATE(1340)] = 13768, - [SMALL_STATE(1341)] = 13839, - [SMALL_STATE(1342)] = 13914, + [SMALL_STATE(1331)] = 13113, + [SMALL_STATE(1332)] = 13190, + [SMALL_STATE(1333)] = 13265, + [SMALL_STATE(1334)] = 13338, + [SMALL_STATE(1335)] = 13407, + [SMALL_STATE(1336)] = 13480, + [SMALL_STATE(1337)] = 13549, + [SMALL_STATE(1338)] = 13616, + [SMALL_STATE(1339)] = 13689, + [SMALL_STATE(1340)] = 13766, + [SMALL_STATE(1341)] = 13849, + [SMALL_STATE(1342)] = 13918, [SMALL_STATE(1343)] = 13987, - [SMALL_STATE(1344)] = 14059, - [SMALL_STATE(1345)] = 14133, - [SMALL_STATE(1346)] = 14253, - [SMALL_STATE(1347)] = 14323, - [SMALL_STATE(1348)] = 14393, - [SMALL_STATE(1349)] = 14465, - [SMALL_STATE(1350)] = 14531, - [SMALL_STATE(1351)] = 14605, - [SMALL_STATE(1352)] = 14725, - [SMALL_STATE(1353)] = 14845, - [SMALL_STATE(1354)] = 14919, - [SMALL_STATE(1355)] = 14991, - [SMALL_STATE(1356)] = 15065, - [SMALL_STATE(1357)] = 15131, - [SMALL_STATE(1358)] = 15251, - [SMALL_STATE(1359)] = 15321, - [SMALL_STATE(1360)] = 15391, - [SMALL_STATE(1361)] = 15461, - [SMALL_STATE(1362)] = 15581, - [SMALL_STATE(1363)] = 15651, - [SMALL_STATE(1364)] = 15771, + [SMALL_STATE(1344)] = 14055, + [SMALL_STATE(1345)] = 14121, + [SMALL_STATE(1346)] = 14187, + [SMALL_STATE(1347)] = 14307, + [SMALL_STATE(1348)] = 14379, + [SMALL_STATE(1349)] = 14499, + [SMALL_STATE(1350)] = 14619, + [SMALL_STATE(1351)] = 14739, + [SMALL_STATE(1352)] = 14859, + [SMALL_STATE(1353)] = 14931, + [SMALL_STATE(1354)] = 15001, + [SMALL_STATE(1355)] = 15075, + [SMALL_STATE(1356)] = 15145, + [SMALL_STATE(1357)] = 15215, + [SMALL_STATE(1358)] = 15289, + [SMALL_STATE(1359)] = 15359, + [SMALL_STATE(1360)] = 15433, + [SMALL_STATE(1361)] = 15553, + [SMALL_STATE(1362)] = 15629, + [SMALL_STATE(1363)] = 15699, + [SMALL_STATE(1364)] = 15769, [SMALL_STATE(1365)] = 15841, - [SMALL_STATE(1366)] = 15909, + [SMALL_STATE(1366)] = 15915, [SMALL_STATE(1367)] = 15985, [SMALL_STATE(1368)] = 16055, - [SMALL_STATE(1369)] = 16124, - [SMALL_STATE(1370)] = 16193, + [SMALL_STATE(1369)] = 16128, + [SMALL_STATE(1370)] = 16195, [SMALL_STATE(1371)] = 16264, - [SMALL_STATE(1372)] = 16333, - [SMALL_STATE(1373)] = 16402, - [SMALL_STATE(1374)] = 16471, - [SMALL_STATE(1375)] = 16538, - [SMALL_STATE(1376)] = 16605, - [SMALL_STATE(1377)] = 16676, - [SMALL_STATE(1378)] = 16745, - [SMALL_STATE(1379)] = 16818, + [SMALL_STATE(1372)] = 16335, + [SMALL_STATE(1373)] = 16404, + [SMALL_STATE(1374)] = 16477, + [SMALL_STATE(1375)] = 16548, + [SMALL_STATE(1376)] = 16617, + [SMALL_STATE(1377)] = 16684, + [SMALL_STATE(1378)] = 16753, + [SMALL_STATE(1379)] = 16822, [SMALL_STATE(1380)] = 16891, [SMALL_STATE(1381)] = 16960, [SMALL_STATE(1382)] = 17029, - [SMALL_STATE(1383)] = 17095, - [SMALL_STATE(1384)] = 17211, - [SMALL_STATE(1385)] = 17327, - [SMALL_STATE(1386)] = 17443, - [SMALL_STATE(1387)] = 17559, - [SMALL_STATE(1388)] = 17627, - [SMALL_STATE(1389)] = 17743, - [SMALL_STATE(1390)] = 17811, - [SMALL_STATE(1391)] = 17879, - [SMALL_STATE(1392)] = 17947, - [SMALL_STATE(1393)] = 18015, - [SMALL_STATE(1394)] = 18083, - [SMALL_STATE(1395)] = 18199, - [SMALL_STATE(1396)] = 18315, - [SMALL_STATE(1397)] = 18383, - [SMALL_STATE(1398)] = 18451, - [SMALL_STATE(1399)] = 18519, - [SMALL_STATE(1400)] = 18587, - [SMALL_STATE(1401)] = 18655, - [SMALL_STATE(1402)] = 18723, - [SMALL_STATE(1403)] = 18839, - [SMALL_STATE(1404)] = 18907, - [SMALL_STATE(1405)] = 19023, - [SMALL_STATE(1406)] = 19139, - [SMALL_STATE(1407)] = 19205, - [SMALL_STATE(1408)] = 19273, - [SMALL_STATE(1409)] = 19389, - [SMALL_STATE(1410)] = 19457, - [SMALL_STATE(1411)] = 19525, - [SMALL_STATE(1412)] = 19641, - [SMALL_STATE(1413)] = 19757, - [SMALL_STATE(1414)] = 19825, - [SMALL_STATE(1415)] = 19941, - [SMALL_STATE(1416)] = 20011, - [SMALL_STATE(1417)] = 20079, - [SMALL_STATE(1418)] = 20147, - [SMALL_STATE(1419)] = 20263, - [SMALL_STATE(1420)] = 20379, - [SMALL_STATE(1421)] = 20447, + [SMALL_STATE(1383)] = 17097, + [SMALL_STATE(1384)] = 17213, + [SMALL_STATE(1385)] = 17329, + [SMALL_STATE(1386)] = 17445, + [SMALL_STATE(1387)] = 17561, + [SMALL_STATE(1388)] = 17677, + [SMALL_STATE(1389)] = 17793, + [SMALL_STATE(1390)] = 17909, + [SMALL_STATE(1391)] = 18025, + [SMALL_STATE(1392)] = 18141, + [SMALL_STATE(1393)] = 18257, + [SMALL_STATE(1394)] = 18325, + [SMALL_STATE(1395)] = 18441, + [SMALL_STATE(1396)] = 18557, + [SMALL_STATE(1397)] = 18625, + [SMALL_STATE(1398)] = 18693, + [SMALL_STATE(1399)] = 18761, + [SMALL_STATE(1400)] = 18829, + [SMALL_STATE(1401)] = 18897, + [SMALL_STATE(1402)] = 18965, + [SMALL_STATE(1403)] = 19031, + [SMALL_STATE(1404)] = 19099, + [SMALL_STATE(1405)] = 19167, + [SMALL_STATE(1406)] = 19235, + [SMALL_STATE(1407)] = 19303, + [SMALL_STATE(1408)] = 19371, + [SMALL_STATE(1409)] = 19487, + [SMALL_STATE(1410)] = 19603, + [SMALL_STATE(1411)] = 19719, + [SMALL_STATE(1412)] = 19787, + [SMALL_STATE(1413)] = 19855, + [SMALL_STATE(1414)] = 19923, + [SMALL_STATE(1415)] = 19993, + [SMALL_STATE(1416)] = 20109, + [SMALL_STATE(1417)] = 20177, + [SMALL_STATE(1418)] = 20245, + [SMALL_STATE(1419)] = 20313, + [SMALL_STATE(1420)] = 20429, + [SMALL_STATE(1421)] = 20497, [SMALL_STATE(1422)] = 20563, [SMALL_STATE(1423)] = 20679, [SMALL_STATE(1424)] = 20747, @@ -273445,19 +273758,19 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1438)] = 21892, [SMALL_STATE(1439)] = 22004, [SMALL_STATE(1440)] = 22116, - [SMALL_STATE(1441)] = 22235, - [SMALL_STATE(1442)] = 22346, - [SMALL_STATE(1443)] = 22457, + [SMALL_STATE(1441)] = 22227, + [SMALL_STATE(1442)] = 22338, + [SMALL_STATE(1443)] = 22449, [SMALL_STATE(1444)] = 22568, - [SMALL_STATE(1445)] = 22679, - [SMALL_STATE(1446)] = 22790, - [SMALL_STATE(1447)] = 22909, + [SMALL_STATE(1445)] = 22687, + [SMALL_STATE(1446)] = 22798, + [SMALL_STATE(1447)] = 22917, [SMALL_STATE(1448)] = 23028, [SMALL_STATE(1449)] = 23139, [SMALL_STATE(1450)] = 23250, [SMALL_STATE(1451)] = 23361, - [SMALL_STATE(1452)] = 23480, - [SMALL_STATE(1453)] = 23591, + [SMALL_STATE(1452)] = 23472, + [SMALL_STATE(1453)] = 23583, [SMALL_STATE(1454)] = 23702, [SMALL_STATE(1455)] = 23821, [SMALL_STATE(1456)] = 23932, @@ -273470,1365 +273783,1365 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1463)] = 24622, [SMALL_STATE(1464)] = 24689, [SMALL_STATE(1465)] = 24800, - [SMALL_STATE(1466)] = 24865, - [SMALL_STATE(1467)] = 24932, - [SMALL_STATE(1468)] = 24989, - [SMALL_STATE(1469)] = 25056, + [SMALL_STATE(1466)] = 24867, + [SMALL_STATE(1467)] = 24934, + [SMALL_STATE(1468)] = 25043, + [SMALL_STATE(1469)] = 25100, [SMALL_STATE(1470)] = 25165, [SMALL_STATE(1471)] = 25222, - [SMALL_STATE(1472)] = 25290, - [SMALL_STATE(1473)] = 25346, - [SMALL_STATE(1474)] = 25404, - [SMALL_STATE(1475)] = 25460, - [SMALL_STATE(1476)] = 25518, - [SMALL_STATE(1477)] = 25574, - [SMALL_STATE(1478)] = 25632, - [SMALL_STATE(1479)] = 25688, - [SMALL_STATE(1480)] = 25782, - [SMALL_STATE(1481)] = 25838, - [SMALL_STATE(1482)] = 25898, - [SMALL_STATE(1483)] = 25960, - [SMALL_STATE(1484)] = 26016, - [SMALL_STATE(1485)] = 26078, - [SMALL_STATE(1486)] = 26138, + [SMALL_STATE(1472)] = 25280, + [SMALL_STATE(1473)] = 25342, + [SMALL_STATE(1474)] = 25398, + [SMALL_STATE(1475)] = 25454, + [SMALL_STATE(1476)] = 25516, + [SMALL_STATE(1477)] = 25576, + [SMALL_STATE(1478)] = 25636, + [SMALL_STATE(1479)] = 25692, + [SMALL_STATE(1480)] = 25748, + [SMALL_STATE(1481)] = 25804, + [SMALL_STATE(1482)] = 25860, + [SMALL_STATE(1483)] = 25928, + [SMALL_STATE(1484)] = 25984, + [SMALL_STATE(1485)] = 26042, + [SMALL_STATE(1486)] = 26100, [SMALL_STATE(1487)] = 26194, [SMALL_STATE(1488)] = 26249, - [SMALL_STATE(1489)] = 26312, - [SMALL_STATE(1490)] = 26373, - [SMALL_STATE(1491)] = 26432, - [SMALL_STATE(1492)] = 26487, - [SMALL_STATE(1493)] = 26542, - [SMALL_STATE(1494)] = 26603, - [SMALL_STATE(1495)] = 26664, - [SMALL_STATE(1496)] = 26727, - [SMALL_STATE(1497)] = 26790, - [SMALL_STATE(1498)] = 26851, - [SMALL_STATE(1499)] = 26912, - [SMALL_STATE(1500)] = 26967, - [SMALL_STATE(1501)] = 27026, - [SMALL_STATE(1502)] = 27087, - [SMALL_STATE(1503)] = 27148, - [SMALL_STATE(1504)] = 27207, - [SMALL_STATE(1505)] = 27266, - [SMALL_STATE(1506)] = 27323, - [SMALL_STATE(1507)] = 27382, - [SMALL_STATE(1508)] = 27437, - [SMALL_STATE(1509)] = 27492, - [SMALL_STATE(1510)] = 27547, - [SMALL_STATE(1511)] = 27602, - [SMALL_STATE(1512)] = 27661, - [SMALL_STATE(1513)] = 27718, - [SMALL_STATE(1514)] = 27773, - [SMALL_STATE(1515)] = 27830, - [SMALL_STATE(1516)] = 27885, - [SMALL_STATE(1517)] = 27940, - [SMALL_STATE(1518)] = 27997, - [SMALL_STATE(1519)] = 28054, - [SMALL_STATE(1520)] = 28109, - [SMALL_STATE(1521)] = 28164, - [SMALL_STATE(1522)] = 28219, - [SMALL_STATE(1523)] = 28276, - [SMALL_STATE(1524)] = 28331, - [SMALL_STATE(1525)] = 28386, - [SMALL_STATE(1526)] = 28441, - [SMALL_STATE(1527)] = 28502, - [SMALL_STATE(1528)] = 28563, - [SMALL_STATE(1529)] = 28620, - [SMALL_STATE(1530)] = 28677, - [SMALL_STATE(1531)] = 28732, - [SMALL_STATE(1532)] = 28787, - [SMALL_STATE(1533)] = 28842, - [SMALL_STATE(1534)] = 28901, - [SMALL_STATE(1535)] = 28956, - [SMALL_STATE(1536)] = 29011, - [SMALL_STATE(1537)] = 29066, - [SMALL_STATE(1538)] = 29121, - [SMALL_STATE(1539)] = 29176, - [SMALL_STATE(1540)] = 29231, - [SMALL_STATE(1541)] = 29286, - [SMALL_STATE(1542)] = 29341, - [SMALL_STATE(1543)] = 29396, - [SMALL_STATE(1544)] = 29453, - [SMALL_STATE(1545)] = 29508, - [SMALL_STATE(1546)] = 29563, - [SMALL_STATE(1547)] = 29620, - [SMALL_STATE(1548)] = 29675, - [SMALL_STATE(1549)] = 29736, - [SMALL_STATE(1550)] = 29791, - [SMALL_STATE(1551)] = 29846, + [SMALL_STATE(1489)] = 26310, + [SMALL_STATE(1490)] = 26365, + [SMALL_STATE(1491)] = 26420, + [SMALL_STATE(1492)] = 26481, + [SMALL_STATE(1493)] = 26536, + [SMALL_STATE(1494)] = 26595, + [SMALL_STATE(1495)] = 26650, + [SMALL_STATE(1496)] = 26705, + [SMALL_STATE(1497)] = 26760, + [SMALL_STATE(1498)] = 26815, + [SMALL_STATE(1499)] = 26878, + [SMALL_STATE(1500)] = 26933, + [SMALL_STATE(1501)] = 26996, + [SMALL_STATE(1502)] = 27059, + [SMALL_STATE(1503)] = 27118, + [SMALL_STATE(1504)] = 27177, + [SMALL_STATE(1505)] = 27232, + [SMALL_STATE(1506)] = 27293, + [SMALL_STATE(1507)] = 27354, + [SMALL_STATE(1508)] = 27409, + [SMALL_STATE(1509)] = 27470, + [SMALL_STATE(1510)] = 27531, + [SMALL_STATE(1511)] = 27590, + [SMALL_STATE(1512)] = 27645, + [SMALL_STATE(1513)] = 27702, + [SMALL_STATE(1514)] = 27757, + [SMALL_STATE(1515)] = 27814, + [SMALL_STATE(1516)] = 27869, + [SMALL_STATE(1517)] = 27924, + [SMALL_STATE(1518)] = 27979, + [SMALL_STATE(1519)] = 28034, + [SMALL_STATE(1520)] = 28093, + [SMALL_STATE(1521)] = 28148, + [SMALL_STATE(1522)] = 28203, + [SMALL_STATE(1523)] = 28258, + [SMALL_STATE(1524)] = 28313, + [SMALL_STATE(1525)] = 28368, + [SMALL_STATE(1526)] = 28423, + [SMALL_STATE(1527)] = 28480, + [SMALL_STATE(1528)] = 28535, + [SMALL_STATE(1529)] = 28592, + [SMALL_STATE(1530)] = 28647, + [SMALL_STATE(1531)] = 28702, + [SMALL_STATE(1532)] = 28757, + [SMALL_STATE(1533)] = 28814, + [SMALL_STATE(1534)] = 28869, + [SMALL_STATE(1535)] = 28930, + [SMALL_STATE(1536)] = 28987, + [SMALL_STATE(1537)] = 29042, + [SMALL_STATE(1538)] = 29097, + [SMALL_STATE(1539)] = 29158, + [SMALL_STATE(1540)] = 29213, + [SMALL_STATE(1541)] = 29270, + [SMALL_STATE(1542)] = 29325, + [SMALL_STATE(1543)] = 29384, + [SMALL_STATE(1544)] = 29439, + [SMALL_STATE(1545)] = 29494, + [SMALL_STATE(1546)] = 29549, + [SMALL_STATE(1547)] = 29610, + [SMALL_STATE(1548)] = 29671, + [SMALL_STATE(1549)] = 29728, + [SMALL_STATE(1550)] = 29785, + [SMALL_STATE(1551)] = 29840, [SMALL_STATE(1552)] = 29901, [SMALL_STATE(1553)] = 29956, [SMALL_STATE(1554)] = 30011, - [SMALL_STATE(1555)] = 30068, - [SMALL_STATE(1556)] = 30125, - [SMALL_STATE(1557)] = 30180, - [SMALL_STATE(1558)] = 30237, - [SMALL_STATE(1559)] = 30296, - [SMALL_STATE(1560)] = 30351, - [SMALL_STATE(1561)] = 30406, - [SMALL_STATE(1562)] = 30463, - [SMALL_STATE(1563)] = 30524, - [SMALL_STATE(1564)] = 30579, - [SMALL_STATE(1565)] = 30634, - [SMALL_STATE(1566)] = 30689, - [SMALL_STATE(1567)] = 30744, - [SMALL_STATE(1568)] = 30799, - [SMALL_STATE(1569)] = 30854, - [SMALL_STATE(1570)] = 30909, - [SMALL_STATE(1571)] = 30964, - [SMALL_STATE(1572)] = 31019, - [SMALL_STATE(1573)] = 31074, - [SMALL_STATE(1574)] = 31129, - [SMALL_STATE(1575)] = 31184, - [SMALL_STATE(1576)] = 31239, - [SMALL_STATE(1577)] = 31294, - [SMALL_STATE(1578)] = 31355, - [SMALL_STATE(1579)] = 31410, - [SMALL_STATE(1580)] = 31471, - [SMALL_STATE(1581)] = 31526, - [SMALL_STATE(1582)] = 31581, - [SMALL_STATE(1583)] = 31642, - [SMALL_STATE(1584)] = 31697, - [SMALL_STATE(1585)] = 31752, - [SMALL_STATE(1586)] = 31807, - [SMALL_STATE(1587)] = 31862, - [SMALL_STATE(1588)] = 31917, - [SMALL_STATE(1589)] = 31972, - [SMALL_STATE(1590)] = 32027, - [SMALL_STATE(1591)] = 32082, - [SMALL_STATE(1592)] = 32137, - [SMALL_STATE(1593)] = 32192, - [SMALL_STATE(1594)] = 32247, - [SMALL_STATE(1595)] = 32302, - [SMALL_STATE(1596)] = 32357, - [SMALL_STATE(1597)] = 32412, - [SMALL_STATE(1598)] = 32467, - [SMALL_STATE(1599)] = 32522, - [SMALL_STATE(1600)] = 32577, - [SMALL_STATE(1601)] = 32632, - [SMALL_STATE(1602)] = 32687, - [SMALL_STATE(1603)] = 32742, - [SMALL_STATE(1604)] = 32797, - [SMALL_STATE(1605)] = 32852, - [SMALL_STATE(1606)] = 32907, - [SMALL_STATE(1607)] = 32962, - [SMALL_STATE(1608)] = 33017, + [SMALL_STATE(1555)] = 30066, + [SMALL_STATE(1556)] = 30121, + [SMALL_STATE(1557)] = 30176, + [SMALL_STATE(1558)] = 30231, + [SMALL_STATE(1559)] = 30286, + [SMALL_STATE(1560)] = 30341, + [SMALL_STATE(1561)] = 30396, + [SMALL_STATE(1562)] = 30451, + [SMALL_STATE(1563)] = 30506, + [SMALL_STATE(1564)] = 30561, + [SMALL_STATE(1565)] = 30618, + [SMALL_STATE(1566)] = 30673, + [SMALL_STATE(1567)] = 30728, + [SMALL_STATE(1568)] = 30783, + [SMALL_STATE(1569)] = 30840, + [SMALL_STATE(1570)] = 30895, + [SMALL_STATE(1571)] = 30956, + [SMALL_STATE(1572)] = 31011, + [SMALL_STATE(1573)] = 31070, + [SMALL_STATE(1574)] = 31125, + [SMALL_STATE(1575)] = 31180, + [SMALL_STATE(1576)] = 31235, + [SMALL_STATE(1577)] = 31290, + [SMALL_STATE(1578)] = 31345, + [SMALL_STATE(1579)] = 31400, + [SMALL_STATE(1580)] = 31455, + [SMALL_STATE(1581)] = 31512, + [SMALL_STATE(1582)] = 31567, + [SMALL_STATE(1583)] = 31622, + [SMALL_STATE(1584)] = 31677, + [SMALL_STATE(1585)] = 31732, + [SMALL_STATE(1586)] = 31787, + [SMALL_STATE(1587)] = 31844, + [SMALL_STATE(1588)] = 31903, + [SMALL_STATE(1589)] = 31958, + [SMALL_STATE(1590)] = 32013, + [SMALL_STATE(1591)] = 32074, + [SMALL_STATE(1592)] = 32129, + [SMALL_STATE(1593)] = 32184, + [SMALL_STATE(1594)] = 32239, + [SMALL_STATE(1595)] = 32294, + [SMALL_STATE(1596)] = 32349, + [SMALL_STATE(1597)] = 32404, + [SMALL_STATE(1598)] = 32459, + [SMALL_STATE(1599)] = 32514, + [SMALL_STATE(1600)] = 32569, + [SMALL_STATE(1601)] = 32624, + [SMALL_STATE(1602)] = 32679, + [SMALL_STATE(1603)] = 32734, + [SMALL_STATE(1604)] = 32789, + [SMALL_STATE(1605)] = 32844, + [SMALL_STATE(1606)] = 32899, + [SMALL_STATE(1607)] = 32954, + [SMALL_STATE(1608)] = 33011, [SMALL_STATE(1609)] = 33072, [SMALL_STATE(1610)] = 33127, - [SMALL_STATE(1611)] = 33183, - [SMALL_STATE(1612)] = 33237, - [SMALL_STATE(1613)] = 33307, - [SMALL_STATE(1614)] = 33361, - [SMALL_STATE(1615)] = 33415, - [SMALL_STATE(1616)] = 33469, - [SMALL_STATE(1617)] = 33523, - [SMALL_STATE(1618)] = 33609, - [SMALL_STATE(1619)] = 33663, - [SMALL_STATE(1620)] = 33717, - [SMALL_STATE(1621)] = 33771, - [SMALL_STATE(1622)] = 33825, - [SMALL_STATE(1623)] = 33879, - [SMALL_STATE(1624)] = 33989, - [SMALL_STATE(1625)] = 34099, - [SMALL_STATE(1626)] = 34209, - [SMALL_STATE(1627)] = 34319, - [SMALL_STATE(1628)] = 34373, - [SMALL_STATE(1629)] = 34427, - [SMALL_STATE(1630)] = 34481, - [SMALL_STATE(1631)] = 34535, - [SMALL_STATE(1632)] = 34589, - [SMALL_STATE(1633)] = 34699, - [SMALL_STATE(1634)] = 34753, - [SMALL_STATE(1635)] = 34807, - [SMALL_STATE(1636)] = 34861, - [SMALL_STATE(1637)] = 34915, - [SMALL_STATE(1638)] = 34969, - [SMALL_STATE(1639)] = 35029, - [SMALL_STATE(1640)] = 35083, - [SMALL_STATE(1641)] = 35157, - [SMALL_STATE(1642)] = 35211, - [SMALL_STATE(1643)] = 35265, - [SMALL_STATE(1644)] = 35319, - [SMALL_STATE(1645)] = 35373, - [SMALL_STATE(1646)] = 35427, - [SMALL_STATE(1647)] = 35481, - [SMALL_STATE(1648)] = 35535, - [SMALL_STATE(1649)] = 35589, - [SMALL_STATE(1650)] = 35643, - [SMALL_STATE(1651)] = 35697, - [SMALL_STATE(1652)] = 35751, - [SMALL_STATE(1653)] = 35805, - [SMALL_STATE(1654)] = 35859, - [SMALL_STATE(1655)] = 35969, - [SMALL_STATE(1656)] = 36023, - [SMALL_STATE(1657)] = 36133, - [SMALL_STATE(1658)] = 36217, - [SMALL_STATE(1659)] = 36271, - [SMALL_STATE(1660)] = 36357, - [SMALL_STATE(1661)] = 36411, - [SMALL_STATE(1662)] = 36485, - [SMALL_STATE(1663)] = 36539, - [SMALL_STATE(1664)] = 36637, - [SMALL_STATE(1665)] = 36737, - [SMALL_STATE(1666)] = 36817, - [SMALL_STATE(1667)] = 36909, - [SMALL_STATE(1668)] = 37003, - [SMALL_STATE(1669)] = 37057, - [SMALL_STATE(1670)] = 37111, - [SMALL_STATE(1671)] = 37197, - [SMALL_STATE(1672)] = 37275, - [SMALL_STATE(1673)] = 37355, - [SMALL_STATE(1674)] = 37409, - [SMALL_STATE(1675)] = 37463, - [SMALL_STATE(1676)] = 37523, - [SMALL_STATE(1677)] = 37579, - [SMALL_STATE(1678)] = 37639, - [SMALL_STATE(1679)] = 37693, - [SMALL_STATE(1680)] = 37781, - [SMALL_STATE(1681)] = 37883, - [SMALL_STATE(1682)] = 37937, - [SMALL_STATE(1683)] = 37991, - [SMALL_STATE(1684)] = 38045, - [SMALL_STATE(1685)] = 38099, - [SMALL_STATE(1686)] = 38153, - [SMALL_STATE(1687)] = 38207, - [SMALL_STATE(1688)] = 38317, - [SMALL_STATE(1689)] = 38427, - [SMALL_STATE(1690)] = 38481, - [SMALL_STATE(1691)] = 38535, - [SMALL_STATE(1692)] = 38589, - [SMALL_STATE(1693)] = 38643, - [SMALL_STATE(1694)] = 38697, - [SMALL_STATE(1695)] = 38751, - [SMALL_STATE(1696)] = 38807, - [SMALL_STATE(1697)] = 38861, - [SMALL_STATE(1698)] = 38915, - [SMALL_STATE(1699)] = 38969, - [SMALL_STATE(1700)] = 39041, - [SMALL_STATE(1701)] = 39095, - [SMALL_STATE(1702)] = 39149, - [SMALL_STATE(1703)] = 39203, - [SMALL_STATE(1704)] = 39257, - [SMALL_STATE(1705)] = 39311, - [SMALL_STATE(1706)] = 39365, - [SMALL_STATE(1707)] = 39419, - [SMALL_STATE(1708)] = 39473, - [SMALL_STATE(1709)] = 39551, - [SMALL_STATE(1710)] = 39605, - [SMALL_STATE(1711)] = 39715, - [SMALL_STATE(1712)] = 39769, - [SMALL_STATE(1713)] = 39855, - [SMALL_STATE(1714)] = 39909, - [SMALL_STATE(1715)] = 39963, - [SMALL_STATE(1716)] = 40073, - [SMALL_STATE(1717)] = 40159, - [SMALL_STATE(1718)] = 40213, - [SMALL_STATE(1719)] = 40267, - [SMALL_STATE(1720)] = 40321, - [SMALL_STATE(1721)] = 40431, - [SMALL_STATE(1722)] = 40485, - [SMALL_STATE(1723)] = 40595, - [SMALL_STATE(1724)] = 40705, - [SMALL_STATE(1725)] = 40759, + [SMALL_STATE(1611)] = 33237, + [SMALL_STATE(1612)] = 33291, + [SMALL_STATE(1613)] = 33345, + [SMALL_STATE(1614)] = 33399, + [SMALL_STATE(1615)] = 33453, + [SMALL_STATE(1616)] = 33507, + [SMALL_STATE(1617)] = 33617, + [SMALL_STATE(1618)] = 33727, + [SMALL_STATE(1619)] = 33781, + [SMALL_STATE(1620)] = 33835, + [SMALL_STATE(1621)] = 33945, + [SMALL_STATE(1622)] = 33999, + [SMALL_STATE(1623)] = 34053, + [SMALL_STATE(1624)] = 34107, + [SMALL_STATE(1625)] = 34161, + [SMALL_STATE(1626)] = 34215, + [SMALL_STATE(1627)] = 34269, + [SMALL_STATE(1628)] = 34343, + [SMALL_STATE(1629)] = 34397, + [SMALL_STATE(1630)] = 34451, + [SMALL_STATE(1631)] = 34505, + [SMALL_STATE(1632)] = 34615, + [SMALL_STATE(1633)] = 34669, + [SMALL_STATE(1634)] = 34779, + [SMALL_STATE(1635)] = 34863, + [SMALL_STATE(1636)] = 34917, + [SMALL_STATE(1637)] = 34991, + [SMALL_STATE(1638)] = 35089, + [SMALL_STATE(1639)] = 35189, + [SMALL_STATE(1640)] = 35269, + [SMALL_STATE(1641)] = 35361, + [SMALL_STATE(1642)] = 35455, + [SMALL_STATE(1643)] = 35551, + [SMALL_STATE(1644)] = 35629, + [SMALL_STATE(1645)] = 35709, + [SMALL_STATE(1646)] = 35769, + [SMALL_STATE(1647)] = 35829, + [SMALL_STATE(1648)] = 35917, + [SMALL_STATE(1649)] = 36019, + [SMALL_STATE(1650)] = 36073, + [SMALL_STATE(1651)] = 36127, + [SMALL_STATE(1652)] = 36181, + [SMALL_STATE(1653)] = 36235, + [SMALL_STATE(1654)] = 36345, + [SMALL_STATE(1655)] = 36455, + [SMALL_STATE(1656)] = 36509, + [SMALL_STATE(1657)] = 36563, + [SMALL_STATE(1658)] = 36617, + [SMALL_STATE(1659)] = 36671, + [SMALL_STATE(1660)] = 36725, + [SMALL_STATE(1661)] = 36779, + [SMALL_STATE(1662)] = 36833, + [SMALL_STATE(1663)] = 36887, + [SMALL_STATE(1664)] = 36997, + [SMALL_STATE(1665)] = 37051, + [SMALL_STATE(1666)] = 37105, + [SMALL_STATE(1667)] = 37215, + [SMALL_STATE(1668)] = 37269, + [SMALL_STATE(1669)] = 37323, + [SMALL_STATE(1670)] = 37377, + [SMALL_STATE(1671)] = 37487, + [SMALL_STATE(1672)] = 37597, + [SMALL_STATE(1673)] = 37651, + [SMALL_STATE(1674)] = 37705, + [SMALL_STATE(1675)] = 37759, + [SMALL_STATE(1676)] = 37813, + [SMALL_STATE(1677)] = 37867, + [SMALL_STATE(1678)] = 37921, + [SMALL_STATE(1679)] = 37975, + [SMALL_STATE(1680)] = 38061, + [SMALL_STATE(1681)] = 38121, + [SMALL_STATE(1682)] = 38175, + [SMALL_STATE(1683)] = 38229, + [SMALL_STATE(1684)] = 38283, + [SMALL_STATE(1685)] = 38337, + [SMALL_STATE(1686)] = 38391, + [SMALL_STATE(1687)] = 38445, + [SMALL_STATE(1688)] = 38499, + [SMALL_STATE(1689)] = 38553, + [SMALL_STATE(1690)] = 38607, + [SMALL_STATE(1691)] = 38661, + [SMALL_STATE(1692)] = 38715, + [SMALL_STATE(1693)] = 38769, + [SMALL_STATE(1694)] = 38879, + [SMALL_STATE(1695)] = 38933, + [SMALL_STATE(1696)] = 38987, + [SMALL_STATE(1697)] = 39041, + [SMALL_STATE(1698)] = 39095, + [SMALL_STATE(1699)] = 39149, + [SMALL_STATE(1700)] = 39203, + [SMALL_STATE(1701)] = 39257, + [SMALL_STATE(1702)] = 39311, + [SMALL_STATE(1703)] = 39367, + [SMALL_STATE(1704)] = 39423, + [SMALL_STATE(1705)] = 39479, + [SMALL_STATE(1706)] = 39533, + [SMALL_STATE(1707)] = 39619, + [SMALL_STATE(1708)] = 39673, + [SMALL_STATE(1709)] = 39727, + [SMALL_STATE(1710)] = 39781, + [SMALL_STATE(1711)] = 39835, + [SMALL_STATE(1712)] = 39889, + [SMALL_STATE(1713)] = 39943, + [SMALL_STATE(1714)] = 39997, + [SMALL_STATE(1715)] = 40083, + [SMALL_STATE(1716)] = 40137, + [SMALL_STATE(1717)] = 40191, + [SMALL_STATE(1718)] = 40263, + [SMALL_STATE(1719)] = 40341, + [SMALL_STATE(1720)] = 40427, + [SMALL_STATE(1721)] = 40537, + [SMALL_STATE(1722)] = 40591, + [SMALL_STATE(1723)] = 40645, + [SMALL_STATE(1724)] = 40715, + [SMALL_STATE(1725)] = 40769, [SMALL_STATE(1726)] = 40855, - [SMALL_STATE(1727)] = 40932, - [SMALL_STATE(1728)] = 40985, - [SMALL_STATE(1729)] = 41064, - [SMALL_STATE(1730)] = 41117, - [SMALL_STATE(1731)] = 41194, - [SMALL_STATE(1732)] = 41303, - [SMALL_STATE(1733)] = 41382, - [SMALL_STATE(1734)] = 41437, - [SMALL_STATE(1735)] = 41518, - [SMALL_STATE(1736)] = 41575, - [SMALL_STATE(1737)] = 41628, - [SMALL_STATE(1738)] = 41707, - [SMALL_STATE(1739)] = 41768, - [SMALL_STATE(1740)] = 41845, - [SMALL_STATE(1741)] = 41898, - [SMALL_STATE(1742)] = 41977, - [SMALL_STATE(1743)] = 42038, - [SMALL_STATE(1744)] = 42091, - [SMALL_STATE(1745)] = 42168, - [SMALL_STATE(1746)] = 42231, - [SMALL_STATE(1747)] = 42294, - [SMALL_STATE(1748)] = 42357, - [SMALL_STATE(1749)] = 42436, - [SMALL_STATE(1750)] = 42491, - [SMALL_STATE(1751)] = 42544, - [SMALL_STATE(1752)] = 42621, - [SMALL_STATE(1753)] = 42700, - [SMALL_STATE(1754)] = 42779, - [SMALL_STATE(1755)] = 42836, + [SMALL_STATE(1727)] = 40912, + [SMALL_STATE(1728)] = 40991, + [SMALL_STATE(1729)] = 41048, + [SMALL_STATE(1730)] = 41109, + [SMALL_STATE(1731)] = 41162, + [SMALL_STATE(1732)] = 41239, + [SMALL_STATE(1733)] = 41318, + [SMALL_STATE(1734)] = 41373, + [SMALL_STATE(1735)] = 41430, + [SMALL_STATE(1736)] = 41483, + [SMALL_STATE(1737)] = 41536, + [SMALL_STATE(1738)] = 41617, + [SMALL_STATE(1739)] = 41670, + [SMALL_STATE(1740)] = 41749, + [SMALL_STATE(1741)] = 41802, + [SMALL_STATE(1742)] = 41911, + [SMALL_STATE(1743)] = 41974, + [SMALL_STATE(1744)] = 42029, + [SMALL_STATE(1745)] = 42090, + [SMALL_STATE(1746)] = 42167, + [SMALL_STATE(1747)] = 42246, + [SMALL_STATE(1748)] = 42309, + [SMALL_STATE(1749)] = 42372, + [SMALL_STATE(1750)] = 42449, + [SMALL_STATE(1751)] = 42528, + [SMALL_STATE(1752)] = 42607, + [SMALL_STATE(1753)] = 42660, + [SMALL_STATE(1754)] = 42737, + [SMALL_STATE(1755)] = 42816, [SMALL_STATE(1756)] = 42893, - [SMALL_STATE(1757)] = 42957, - [SMALL_STATE(1758)] = 43019, - [SMALL_STATE(1759)] = 43101, - [SMALL_STATE(1760)] = 43161, - [SMALL_STATE(1761)] = 43243, - [SMALL_STATE(1762)] = 43303, - [SMALL_STATE(1763)] = 43365, - [SMALL_STATE(1764)] = 43425, - [SMALL_STATE(1765)] = 43503, - [SMALL_STATE(1766)] = 43555, - [SMALL_STATE(1767)] = 43609, - [SMALL_STATE(1768)] = 43717, - [SMALL_STATE(1769)] = 43825, - [SMALL_STATE(1770)] = 43933, - [SMALL_STATE(1771)] = 44005, - [SMALL_STATE(1772)] = 44077, - [SMALL_STATE(1773)] = 44149, - [SMALL_STATE(1774)] = 44257, - [SMALL_STATE(1775)] = 44365, - [SMALL_STATE(1776)] = 44461, - [SMALL_STATE(1777)] = 44519, - [SMALL_STATE(1778)] = 44613, - [SMALL_STATE(1779)] = 44721, - [SMALL_STATE(1780)] = 44829, - [SMALL_STATE(1781)] = 44937, - [SMALL_STATE(1782)] = 45007, - [SMALL_STATE(1783)] = 45083, - [SMALL_STATE(1784)] = 45191, - [SMALL_STATE(1785)] = 45299, - [SMALL_STATE(1786)] = 45373, - [SMALL_STATE(1787)] = 45433, - [SMALL_STATE(1788)] = 45519, - [SMALL_STATE(1789)] = 45595, - [SMALL_STATE(1790)] = 45667, - [SMALL_STATE(1791)] = 45719, - [SMALL_STATE(1792)] = 45835, - [SMALL_STATE(1793)] = 45903, - [SMALL_STATE(1794)] = 46019, - [SMALL_STATE(1795)] = 46117, - [SMALL_STATE(1796)] = 46189, - [SMALL_STATE(1797)] = 46289, - [SMALL_STATE(1798)] = 46397, - [SMALL_STATE(1799)] = 46471, - [SMALL_STATE(1800)] = 46579, - [SMALL_STATE(1801)] = 46635, - [SMALL_STATE(1802)] = 46731, - [SMALL_STATE(1803)] = 46783, - [SMALL_STATE(1804)] = 46891, - [SMALL_STATE(1805)] = 46945, - [SMALL_STATE(1806)] = 47053, - [SMALL_STATE(1807)] = 47169, - [SMALL_STATE(1808)] = 47277, - [SMALL_STATE(1809)] = 47355, - [SMALL_STATE(1810)] = 47463, - [SMALL_STATE(1811)] = 47571, - [SMALL_STATE(1812)] = 47679, - [SMALL_STATE(1813)] = 47787, - [SMALL_STATE(1814)] = 47841, - [SMALL_STATE(1815)] = 47893, - [SMALL_STATE(1816)] = 47951, - [SMALL_STATE(1817)] = 48059, - [SMALL_STATE(1818)] = 48111, - [SMALL_STATE(1819)] = 48219, - [SMALL_STATE(1820)] = 48317, - [SMALL_STATE(1821)] = 48393, - [SMALL_STATE(1822)] = 48449, - [SMALL_STATE(1823)] = 48535, - [SMALL_STATE(1824)] = 48613, - [SMALL_STATE(1825)] = 48681, - [SMALL_STATE(1826)] = 48789, - [SMALL_STATE(1827)] = 48843, - [SMALL_STATE(1828)] = 48903, - [SMALL_STATE(1829)] = 48961, - [SMALL_STATE(1830)] = 49031, - [SMALL_STATE(1831)] = 49139, - [SMALL_STATE(1832)] = 49247, - [SMALL_STATE(1833)] = 49337, - [SMALL_STATE(1834)] = 49445, - [SMALL_STATE(1835)] = 49499, - [SMALL_STATE(1836)] = 49557, + [SMALL_STATE(1757)] = 43001, + [SMALL_STATE(1758)] = 43083, + [SMALL_STATE(1759)] = 43155, + [SMALL_STATE(1760)] = 43263, + [SMALL_STATE(1761)] = 43317, + [SMALL_STATE(1762)] = 43413, + [SMALL_STATE(1763)] = 43511, + [SMALL_STATE(1764)] = 43589, + [SMALL_STATE(1765)] = 43679, + [SMALL_STATE(1766)] = 43771, + [SMALL_STATE(1767)] = 43865, + [SMALL_STATE(1768)] = 43973, + [SMALL_STATE(1769)] = 44049, + [SMALL_STATE(1770)] = 44127, + [SMALL_STATE(1771)] = 44243, + [SMALL_STATE(1772)] = 44359, + [SMALL_STATE(1773)] = 44429, + [SMALL_STATE(1774)] = 44501, + [SMALL_STATE(1775)] = 44609, + [SMALL_STATE(1776)] = 44667, + [SMALL_STATE(1777)] = 44741, + [SMALL_STATE(1778)] = 44857, + [SMALL_STATE(1779)] = 44909, + [SMALL_STATE(1780)] = 44981, + [SMALL_STATE(1781)] = 45089, + [SMALL_STATE(1782)] = 45197, + [SMALL_STATE(1783)] = 45305, + [SMALL_STATE(1784)] = 45383, + [SMALL_STATE(1785)] = 45491, + [SMALL_STATE(1786)] = 45545, + [SMALL_STATE(1787)] = 45599, + [SMALL_STATE(1788)] = 45707, + [SMALL_STATE(1789)] = 45815, + [SMALL_STATE(1790)] = 45901, + [SMALL_STATE(1791)] = 46001, + [SMALL_STATE(1792)] = 46109, + [SMALL_STATE(1793)] = 46181, + [SMALL_STATE(1794)] = 46235, + [SMALL_STATE(1795)] = 46289, + [SMALL_STATE(1796)] = 46357, + [SMALL_STATE(1797)] = 46429, + [SMALL_STATE(1798)] = 46499, + [SMALL_STATE(1799)] = 46575, + [SMALL_STATE(1800)] = 46683, + [SMALL_STATE(1801)] = 46751, + [SMALL_STATE(1802)] = 46805, + [SMALL_STATE(1803)] = 46901, + [SMALL_STATE(1804)] = 46953, + [SMALL_STATE(1805)] = 47011, + [SMALL_STATE(1806)] = 47109, + [SMALL_STATE(1807)] = 47187, + [SMALL_STATE(1808)] = 47295, + [SMALL_STATE(1809)] = 47353, + [SMALL_STATE(1810)] = 47409, + [SMALL_STATE(1811)] = 47501, + [SMALL_STATE(1812)] = 47609, + [SMALL_STATE(1813)] = 47665, + [SMALL_STATE(1814)] = 47747, + [SMALL_STATE(1815)] = 47803, + [SMALL_STATE(1816)] = 47863, + [SMALL_STATE(1817)] = 47925, + [SMALL_STATE(1818)] = 48033, + [SMALL_STATE(1819)] = 48141, + [SMALL_STATE(1820)] = 48235, + [SMALL_STATE(1821)] = 48343, + [SMALL_STATE(1822)] = 48403, + [SMALL_STATE(1823)] = 48511, + [SMALL_STATE(1824)] = 48619, + [SMALL_STATE(1825)] = 48727, + [SMALL_STATE(1826)] = 48781, + [SMALL_STATE(1827)] = 48853, + [SMALL_STATE(1828)] = 48961, + [SMALL_STATE(1829)] = 49037, + [SMALL_STATE(1830)] = 49111, + [SMALL_STATE(1831)] = 49189, + [SMALL_STATE(1832)] = 49249, + [SMALL_STATE(1833)] = 49309, + [SMALL_STATE(1834)] = 49369, + [SMALL_STATE(1835)] = 49433, + [SMALL_STATE(1836)] = 49541, [SMALL_STATE(1837)] = 49649, - [SMALL_STATE(1838)] = 49703, - [SMALL_STATE(1839)] = 49803, - [SMALL_STATE(1840)] = 49875, - [SMALL_STATE(1841)] = 49929, - [SMALL_STATE(1842)] = 50037, - [SMALL_STATE(1843)] = 50109, - [SMALL_STATE(1844)] = 50165, - [SMALL_STATE(1845)] = 50223, - [SMALL_STATE(1846)] = 50301, - [SMALL_STATE(1847)] = 50409, - [SMALL_STATE(1848)] = 50503, - [SMALL_STATE(1849)] = 50581, - [SMALL_STATE(1850)] = 50671, - [SMALL_STATE(1851)] = 50763, - [SMALL_STATE(1852)] = 50879, - [SMALL_STATE(1853)] = 50987, - [SMALL_STATE(1854)] = 51063, + [SMALL_STATE(1838)] = 49707, + [SMALL_STATE(1839)] = 49815, + [SMALL_STATE(1840)] = 49923, + [SMALL_STATE(1841)] = 49985, + [SMALL_STATE(1842)] = 50101, + [SMALL_STATE(1843)] = 50153, + [SMALL_STATE(1844)] = 50229, + [SMALL_STATE(1845)] = 50301, + [SMALL_STATE(1846)] = 50409, + [SMALL_STATE(1847)] = 50517, + [SMALL_STATE(1848)] = 50617, + [SMALL_STATE(1849)] = 50669, + [SMALL_STATE(1850)] = 50721, + [SMALL_STATE(1851)] = 50779, + [SMALL_STATE(1852)] = 50887, + [SMALL_STATE(1853)] = 50943, + [SMALL_STATE(1854)] = 51029, [SMALL_STATE(1855)] = 51119, - [SMALL_STATE(1856)] = 51194, - [SMALL_STATE(1857)] = 51263, - [SMALL_STATE(1858)] = 51316, - [SMALL_STATE(1859)] = 51373, - [SMALL_STATE(1860)] = 51428, - [SMALL_STATE(1861)] = 51511, - [SMALL_STATE(1862)] = 51622, - [SMALL_STATE(1863)] = 51673, - [SMALL_STATE(1864)] = 51724, - [SMALL_STATE(1865)] = 51775, - [SMALL_STATE(1866)] = 51826, - [SMALL_STATE(1867)] = 51879, - [SMALL_STATE(1868)] = 51930, - [SMALL_STATE(1869)] = 51983, - [SMALL_STATE(1870)] = 52034, - [SMALL_STATE(1871)] = 52087, - [SMALL_STATE(1872)] = 52144, - [SMALL_STATE(1873)] = 52199, - [SMALL_STATE(1874)] = 52256, - [SMALL_STATE(1875)] = 52313, - [SMALL_STATE(1876)] = 52372, - [SMALL_STATE(1877)] = 52429, - [SMALL_STATE(1878)] = 52480, - [SMALL_STATE(1879)] = 52533, - [SMALL_STATE(1880)] = 52586, - [SMALL_STATE(1881)] = 52637, - [SMALL_STATE(1882)] = 52700, - [SMALL_STATE(1883)] = 52763, - [SMALL_STATE(1884)] = 52814, - [SMALL_STATE(1885)] = 52865, - [SMALL_STATE(1886)] = 52918, - [SMALL_STATE(1887)] = 52969, - [SMALL_STATE(1888)] = 53020, - [SMALL_STATE(1889)] = 53071, - [SMALL_STATE(1890)] = 53128, - [SMALL_STATE(1891)] = 53185, - [SMALL_STATE(1892)] = 53238, - [SMALL_STATE(1893)] = 53291, - [SMALL_STATE(1894)] = 53342, - [SMALL_STATE(1895)] = 53393, - [SMALL_STATE(1896)] = 53444, - [SMALL_STATE(1897)] = 53495, - [SMALL_STATE(1898)] = 53606, - [SMALL_STATE(1899)] = 53717, - [SMALL_STATE(1900)] = 53828, - [SMALL_STATE(1901)] = 53879, - [SMALL_STATE(1902)] = 53930, - [SMALL_STATE(1903)] = 53981, - [SMALL_STATE(1904)] = 54032, - [SMALL_STATE(1905)] = 54083, - [SMALL_STATE(1906)] = 54134, - [SMALL_STATE(1907)] = 54185, - [SMALL_STATE(1908)] = 54236, - [SMALL_STATE(1909)] = 54287, - [SMALL_STATE(1910)] = 54398, - [SMALL_STATE(1911)] = 54449, - [SMALL_STATE(1912)] = 54502, - [SMALL_STATE(1913)] = 54553, - [SMALL_STATE(1914)] = 54604, - [SMALL_STATE(1915)] = 54657, - [SMALL_STATE(1916)] = 54708, - [SMALL_STATE(1917)] = 54765, - [SMALL_STATE(1918)] = 54816, - [SMALL_STATE(1919)] = 54867, - [SMALL_STATE(1920)] = 54918, - [SMALL_STATE(1921)] = 54969, - [SMALL_STATE(1922)] = 55020, - [SMALL_STATE(1923)] = 55073, - [SMALL_STATE(1924)] = 55124, - [SMALL_STATE(1925)] = 55175, - [SMALL_STATE(1926)] = 55226, - [SMALL_STATE(1927)] = 55277, - [SMALL_STATE(1928)] = 55328, - [SMALL_STATE(1929)] = 55379, - [SMALL_STATE(1930)] = 55430, - [SMALL_STATE(1931)] = 55481, - [SMALL_STATE(1932)] = 55532, - [SMALL_STATE(1933)] = 55583, - [SMALL_STATE(1934)] = 55634, - [SMALL_STATE(1935)] = 55685, - [SMALL_STATE(1936)] = 55736, - [SMALL_STATE(1937)] = 55787, - [SMALL_STATE(1938)] = 55838, - [SMALL_STATE(1939)] = 55889, - [SMALL_STATE(1940)] = 55940, - [SMALL_STATE(1941)] = 55991, - [SMALL_STATE(1942)] = 56042, - [SMALL_STATE(1943)] = 56099, - [SMALL_STATE(1944)] = 56150, - [SMALL_STATE(1945)] = 56201, - [SMALL_STATE(1946)] = 56258, - [SMALL_STATE(1947)] = 56309, - [SMALL_STATE(1948)] = 56360, - [SMALL_STATE(1949)] = 56411, - [SMALL_STATE(1950)] = 56462, - [SMALL_STATE(1951)] = 56513, - [SMALL_STATE(1952)] = 56564, - [SMALL_STATE(1953)] = 56615, - [SMALL_STATE(1954)] = 56666, - [SMALL_STATE(1955)] = 56717, - [SMALL_STATE(1956)] = 56768, - [SMALL_STATE(1957)] = 56819, - [SMALL_STATE(1958)] = 56870, - [SMALL_STATE(1959)] = 56921, - [SMALL_STATE(1960)] = 56972, - [SMALL_STATE(1961)] = 57023, - [SMALL_STATE(1962)] = 57074, - [SMALL_STATE(1963)] = 57125, - [SMALL_STATE(1964)] = 57176, - [SMALL_STATE(1965)] = 57227, - [SMALL_STATE(1966)] = 57278, - [SMALL_STATE(1967)] = 57329, - [SMALL_STATE(1968)] = 57396, - [SMALL_STATE(1969)] = 57447, - [SMALL_STATE(1970)] = 57498, - [SMALL_STATE(1971)] = 57549, - [SMALL_STATE(1972)] = 57600, - [SMALL_STATE(1973)] = 57651, - [SMALL_STATE(1974)] = 57708, - [SMALL_STATE(1975)] = 57763, - [SMALL_STATE(1976)] = 57846, - [SMALL_STATE(1977)] = 57901, - [SMALL_STATE(1978)] = 57958, - [SMALL_STATE(1979)] = 58067, - [SMALL_STATE(1980)] = 58130, - [SMALL_STATE(1981)] = 58193, - [SMALL_STATE(1982)] = 58244, - [SMALL_STATE(1983)] = 58301, - [SMALL_STATE(1984)] = 58358, - [SMALL_STATE(1985)] = 58441, - [SMALL_STATE(1986)] = 58514, - [SMALL_STATE(1987)] = 58571, - [SMALL_STATE(1988)] = 58644, - [SMALL_STATE(1989)] = 58713, - [SMALL_STATE(1990)] = 58786, - [SMALL_STATE(1991)] = 58855, - [SMALL_STATE(1992)] = 58914, - [SMALL_STATE(1993)] = 58969, - [SMALL_STATE(1994)] = 59026, - [SMALL_STATE(1995)] = 59099, - [SMALL_STATE(1996)] = 59162, - [SMALL_STATE(1997)] = 59225, - [SMALL_STATE(1998)] = 59308, - [SMALL_STATE(1999)] = 59361, - [SMALL_STATE(2000)] = 59424, - [SMALL_STATE(2001)] = 59487, - [SMALL_STATE(2002)] = 59540, - [SMALL_STATE(2003)] = 59593, - [SMALL_STATE(2004)] = 59676, - [SMALL_STATE(2005)] = 59741, - [SMALL_STATE(2006)] = 59806, - [SMALL_STATE(2007)] = 59863, - [SMALL_STATE(2008)] = 59920, - [SMALL_STATE(2009)] = 59977, - [SMALL_STATE(2010)] = 60030, - [SMALL_STATE(2011)] = 60103, - [SMALL_STATE(2012)] = 60162, - [SMALL_STATE(2013)] = 60217, - [SMALL_STATE(2014)] = 60274, - [SMALL_STATE(2015)] = 60327, - [SMALL_STATE(2016)] = 60434, - [SMALL_STATE(2017)] = 60487, - [SMALL_STATE(2018)] = 60570, - [SMALL_STATE(2019)] = 60643, - [SMALL_STATE(2020)] = 60712, - [SMALL_STATE(2021)] = 60785, - [SMALL_STATE(2022)] = 60848, - [SMALL_STATE(2023)] = 60907, - [SMALL_STATE(2024)] = 60976, - [SMALL_STATE(2025)] = 61047, - [SMALL_STATE(2026)] = 61120, - [SMALL_STATE(2027)] = 61173, - [SMALL_STATE(2028)] = 61284, - [SMALL_STATE(2029)] = 61395, - [SMALL_STATE(2030)] = 61448, - [SMALL_STATE(2031)] = 61555, - [SMALL_STATE(2032)] = 61662, - [SMALL_STATE(2033)] = 61769, - [SMALL_STATE(2034)] = 61876, - [SMALL_STATE(2035)] = 61983, - [SMALL_STATE(2036)] = 62064, - [SMALL_STATE(2037)] = 62135, - [SMALL_STATE(2038)] = 62230, - [SMALL_STATE(2039)] = 62327, - [SMALL_STATE(2040)] = 62404, - [SMALL_STATE(2041)] = 62493, - [SMALL_STATE(2042)] = 62584, - [SMALL_STATE(2043)] = 62677, - [SMALL_STATE(2044)] = 62752, - [SMALL_STATE(2045)] = 62829, - [SMALL_STATE(2046)] = 62914, - [SMALL_STATE(2047)] = 63013, - [SMALL_STATE(2048)] = 63120, - [SMALL_STATE(2049)] = 63227, - [SMALL_STATE(2050)] = 63334, - [SMALL_STATE(2051)] = 63441, - [SMALL_STATE(2052)] = 63548, - [SMALL_STATE(2053)] = 63655, - [SMALL_STATE(2054)] = 63762, - [SMALL_STATE(2055)] = 63869, - [SMALL_STATE(2056)] = 63978, - [SMALL_STATE(2057)] = 64047, - [SMALL_STATE(2058)] = 64154, + [SMALL_STATE(1856)] = 51170, + [SMALL_STATE(1857)] = 51233, + [SMALL_STATE(1858)] = 51284, + [SMALL_STATE(1859)] = 51357, + [SMALL_STATE(1860)] = 51420, + [SMALL_STATE(1861)] = 51531, + [SMALL_STATE(1862)] = 51584, + [SMALL_STATE(1863)] = 51695, + [SMALL_STATE(1864)] = 51758, + [SMALL_STATE(1865)] = 51869, + [SMALL_STATE(1866)] = 51942, + [SMALL_STATE(1867)] = 51995, + [SMALL_STATE(1868)] = 52060, + [SMALL_STATE(1869)] = 52129, + [SMALL_STATE(1870)] = 52180, + [SMALL_STATE(1871)] = 52231, + [SMALL_STATE(1872)] = 52282, + [SMALL_STATE(1873)] = 52333, + [SMALL_STATE(1874)] = 52384, + [SMALL_STATE(1875)] = 52435, + [SMALL_STATE(1876)] = 52486, + [SMALL_STATE(1877)] = 52537, + [SMALL_STATE(1878)] = 52588, + [SMALL_STATE(1879)] = 52695, + [SMALL_STATE(1880)] = 52746, + [SMALL_STATE(1881)] = 52799, + [SMALL_STATE(1882)] = 52864, + [SMALL_STATE(1883)] = 52915, + [SMALL_STATE(1884)] = 52966, + [SMALL_STATE(1885)] = 53019, + [SMALL_STATE(1886)] = 53070, + [SMALL_STATE(1887)] = 53127, + [SMALL_STATE(1888)] = 53178, + [SMALL_STATE(1889)] = 53229, + [SMALL_STATE(1890)] = 53280, + [SMALL_STATE(1891)] = 53331, + [SMALL_STATE(1892)] = 53382, + [SMALL_STATE(1893)] = 53435, + [SMALL_STATE(1894)] = 53486, + [SMALL_STATE(1895)] = 53537, + [SMALL_STATE(1896)] = 53588, + [SMALL_STATE(1897)] = 53639, + [SMALL_STATE(1898)] = 53750, + [SMALL_STATE(1899)] = 53801, + [SMALL_STATE(1900)] = 53852, + [SMALL_STATE(1901)] = 53903, + [SMALL_STATE(1902)] = 53954, + [SMALL_STATE(1903)] = 54005, + [SMALL_STATE(1904)] = 54056, + [SMALL_STATE(1905)] = 54107, + [SMALL_STATE(1906)] = 54158, + [SMALL_STATE(1907)] = 54209, + [SMALL_STATE(1908)] = 54260, + [SMALL_STATE(1909)] = 54311, + [SMALL_STATE(1910)] = 54362, + [SMALL_STATE(1911)] = 54413, + [SMALL_STATE(1912)] = 54464, + [SMALL_STATE(1913)] = 54515, + [SMALL_STATE(1914)] = 54566, + [SMALL_STATE(1915)] = 54617, + [SMALL_STATE(1916)] = 54674, + [SMALL_STATE(1917)] = 54725, + [SMALL_STATE(1918)] = 54776, + [SMALL_STATE(1919)] = 54833, + [SMALL_STATE(1920)] = 54890, + [SMALL_STATE(1921)] = 54941, + [SMALL_STATE(1922)] = 54992, + [SMALL_STATE(1923)] = 55043, + [SMALL_STATE(1924)] = 55094, + [SMALL_STATE(1925)] = 55145, + [SMALL_STATE(1926)] = 55218, + [SMALL_STATE(1927)] = 55269, + [SMALL_STATE(1928)] = 55320, + [SMALL_STATE(1929)] = 55371, + [SMALL_STATE(1930)] = 55422, + [SMALL_STATE(1931)] = 55473, + [SMALL_STATE(1932)] = 55584, + [SMALL_STATE(1933)] = 55635, + [SMALL_STATE(1934)] = 55686, + [SMALL_STATE(1935)] = 55737, + [SMALL_STATE(1936)] = 55788, + [SMALL_STATE(1937)] = 55839, + [SMALL_STATE(1938)] = 55890, + [SMALL_STATE(1939)] = 55941, + [SMALL_STATE(1940)] = 55992, + [SMALL_STATE(1941)] = 56043, + [SMALL_STATE(1942)] = 56094, + [SMALL_STATE(1943)] = 56145, + [SMALL_STATE(1944)] = 56196, + [SMALL_STATE(1945)] = 56247, + [SMALL_STATE(1946)] = 56298, + [SMALL_STATE(1947)] = 56349, + [SMALL_STATE(1948)] = 56400, + [SMALL_STATE(1949)] = 56451, + [SMALL_STATE(1950)] = 56502, + [SMALL_STATE(1951)] = 56559, + [SMALL_STATE(1952)] = 56670, + [SMALL_STATE(1953)] = 56725, + [SMALL_STATE(1954)] = 56794, + [SMALL_STATE(1955)] = 56847, + [SMALL_STATE(1956)] = 56920, + [SMALL_STATE(1957)] = 56975, + [SMALL_STATE(1958)] = 57058, + [SMALL_STATE(1959)] = 57111, + [SMALL_STATE(1960)] = 57180, + [SMALL_STATE(1961)] = 57237, + [SMALL_STATE(1962)] = 57308, + [SMALL_STATE(1963)] = 57365, + [SMALL_STATE(1964)] = 57448, + [SMALL_STATE(1965)] = 57499, + [SMALL_STATE(1966)] = 57552, + [SMALL_STATE(1967)] = 57661, + [SMALL_STATE(1968)] = 57744, + [SMALL_STATE(1969)] = 57797, + [SMALL_STATE(1970)] = 57880, + [SMALL_STATE(1971)] = 57933, + [SMALL_STATE(1972)] = 57996, + [SMALL_STATE(1973)] = 58047, + [SMALL_STATE(1974)] = 58098, + [SMALL_STATE(1975)] = 58161, + [SMALL_STATE(1976)] = 58220, + [SMALL_STATE(1977)] = 58271, + [SMALL_STATE(1978)] = 58324, + [SMALL_STATE(1979)] = 58377, + [SMALL_STATE(1980)] = 58434, + [SMALL_STATE(1981)] = 58543, + [SMALL_STATE(1982)] = 58598, + [SMALL_STATE(1983)] = 58655, + [SMALL_STATE(1984)] = 58712, + [SMALL_STATE(1985)] = 58765, + [SMALL_STATE(1986)] = 58816, + [SMALL_STATE(1987)] = 58927, + [SMALL_STATE(1988)] = 58984, + [SMALL_STATE(1989)] = 59037, + [SMALL_STATE(1990)] = 59100, + [SMALL_STATE(1991)] = 59163, + [SMALL_STATE(1992)] = 59246, + [SMALL_STATE(1993)] = 59301, + [SMALL_STATE(1994)] = 59408, + [SMALL_STATE(1995)] = 59515, + [SMALL_STATE(1996)] = 59622, + [SMALL_STATE(1997)] = 59729, + [SMALL_STATE(1998)] = 59836, + [SMALL_STATE(1999)] = 59917, + [SMALL_STATE(2000)] = 59988, + [SMALL_STATE(2001)] = 60083, + [SMALL_STATE(2002)] = 60180, + [SMALL_STATE(2003)] = 60257, + [SMALL_STATE(2004)] = 60346, + [SMALL_STATE(2005)] = 60437, + [SMALL_STATE(2006)] = 60530, + [SMALL_STATE(2007)] = 60605, + [SMALL_STATE(2008)] = 60682, + [SMALL_STATE(2009)] = 60739, + [SMALL_STATE(2010)] = 60824, + [SMALL_STATE(2011)] = 60923, + [SMALL_STATE(2012)] = 61030, + [SMALL_STATE(2013)] = 61137, + [SMALL_STATE(2014)] = 61244, + [SMALL_STATE(2015)] = 61351, + [SMALL_STATE(2016)] = 61458, + [SMALL_STATE(2017)] = 61565, + [SMALL_STATE(2018)] = 61672, + [SMALL_STATE(2019)] = 61723, + [SMALL_STATE(2020)] = 61830, + [SMALL_STATE(2021)] = 61903, + [SMALL_STATE(2022)] = 61954, + [SMALL_STATE(2023)] = 62007, + [SMALL_STATE(2024)] = 62076, + [SMALL_STATE(2025)] = 62127, + [SMALL_STATE(2026)] = 62178, + [SMALL_STATE(2027)] = 62229, + [SMALL_STATE(2028)] = 62286, + [SMALL_STATE(2029)] = 62343, + [SMALL_STATE(2030)] = 62416, + [SMALL_STATE(2031)] = 62475, + [SMALL_STATE(2032)] = 62528, + [SMALL_STATE(2033)] = 62601, + [SMALL_STATE(2034)] = 62670, + [SMALL_STATE(2035)] = 62729, + [SMALL_STATE(2036)] = 62782, + [SMALL_STATE(2037)] = 62837, + [SMALL_STATE(2038)] = 62894, + [SMALL_STATE(2039)] = 62957, + [SMALL_STATE(2040)] = 63014, + [SMALL_STATE(2041)] = 63069, + [SMALL_STATE(2042)] = 63126, + [SMALL_STATE(2043)] = 63189, + [SMALL_STATE(2044)] = 63240, + [SMALL_STATE(2045)] = 63293, + [SMALL_STATE(2046)] = 63346, + [SMALL_STATE(2047)] = 63397, + [SMALL_STATE(2048)] = 63454, + [SMALL_STATE(2049)] = 63505, + [SMALL_STATE(2050)] = 63588, + [SMALL_STATE(2051)] = 63645, + [SMALL_STATE(2052)] = 63704, + [SMALL_STATE(2053)] = 63773, + [SMALL_STATE(2054)] = 63848, + [SMALL_STATE(2055)] = 63955, + [SMALL_STATE(2056)] = 64022, + [SMALL_STATE(2057)] = 64079, + [SMALL_STATE(2058)] = 64132, [SMALL_STATE(2059)] = 64205, - [SMALL_STATE(2060)] = 64315, - [SMALL_STATE(2061)] = 64369, - [SMALL_STATE(2062)] = 64423, - [SMALL_STATE(2063)] = 64529, - [SMALL_STATE(2064)] = 64593, - [SMALL_STATE(2065)] = 64645, - [SMALL_STATE(2066)] = 64697, - [SMALL_STATE(2067)] = 64751, - [SMALL_STATE(2068)] = 64805, - [SMALL_STATE(2069)] = 64857, - [SMALL_STATE(2070)] = 64911, - [SMALL_STATE(2071)] = 64965, - [SMALL_STATE(2072)] = 65015, - [SMALL_STATE(2073)] = 65089, - [SMALL_STATE(2074)] = 65155, - [SMALL_STATE(2075)] = 65231, - [SMALL_STATE(2076)] = 65337, - [SMALL_STATE(2077)] = 65447, - [SMALL_STATE(2078)] = 65511, - [SMALL_STATE(2079)] = 65577, - [SMALL_STATE(2080)] = 65629, - [SMALL_STATE(2081)] = 65679, - [SMALL_STATE(2082)] = 65737, - [SMALL_STATE(2083)] = 65791, - [SMALL_STATE(2084)] = 65841, - [SMALL_STATE(2085)] = 65905, - [SMALL_STATE(2086)] = 65955, - [SMALL_STATE(2087)] = 66005, - [SMALL_STATE(2088)] = 66113, - [SMALL_STATE(2089)] = 66163, - [SMALL_STATE(2090)] = 66217, - [SMALL_STATE(2091)] = 66267, - [SMALL_STATE(2092)] = 66331, - [SMALL_STATE(2093)] = 66395, - [SMALL_STATE(2094)] = 66461, - [SMALL_STATE(2095)] = 66511, - [SMALL_STATE(2096)] = 66617, - [SMALL_STATE(2097)] = 66667, - [SMALL_STATE(2098)] = 66717, - [SMALL_STATE(2099)] = 66767, - [SMALL_STATE(2100)] = 66817, - [SMALL_STATE(2101)] = 66867, - [SMALL_STATE(2102)] = 66941, - [SMALL_STATE(2103)] = 66999, - [SMALL_STATE(2104)] = 67075, - [SMALL_STATE(2105)] = 67125, - [SMALL_STATE(2106)] = 67175, - [SMALL_STATE(2107)] = 67231, - [SMALL_STATE(2108)] = 67341, - [SMALL_STATE(2109)] = 67391, - [SMALL_STATE(2110)] = 67441, - [SMALL_STATE(2111)] = 67495, - [SMALL_STATE(2112)] = 67545, - [SMALL_STATE(2113)] = 67609, - [SMALL_STATE(2114)] = 67665, - [SMALL_STATE(2115)] = 67719, - [SMALL_STATE(2116)] = 67773, - [SMALL_STATE(2117)] = 67823, - [SMALL_STATE(2118)] = 67873, - [SMALL_STATE(2119)] = 67923, - [SMALL_STATE(2120)] = 67997, - [SMALL_STATE(2121)] = 68051, - [SMALL_STATE(2122)] = 68127, - [SMALL_STATE(2123)] = 68189, - [SMALL_STATE(2124)] = 68251, - [SMALL_STATE(2125)] = 68301, - [SMALL_STATE(2126)] = 68351, - [SMALL_STATE(2127)] = 68401, - [SMALL_STATE(2128)] = 68451, - [SMALL_STATE(2129)] = 68503, - [SMALL_STATE(2130)] = 68561, - [SMALL_STATE(2131)] = 68619, - [SMALL_STATE(2132)] = 68669, - [SMALL_STATE(2133)] = 68731, - [SMALL_STATE(2134)] = 68793, - [SMALL_STATE(2135)] = 68851, - [SMALL_STATE(2136)] = 68911, - [SMALL_STATE(2137)] = 68971, - [SMALL_STATE(2138)] = 69033, - [SMALL_STATE(2139)] = 69095, - [SMALL_STATE(2140)] = 69157, - [SMALL_STATE(2141)] = 69219, - [SMALL_STATE(2142)] = 69281, - [SMALL_STATE(2143)] = 69343, - [SMALL_STATE(2144)] = 69393, - [SMALL_STATE(2145)] = 69503, - [SMALL_STATE(2146)] = 69613, - [SMALL_STATE(2147)] = 69723, - [SMALL_STATE(2148)] = 69773, - [SMALL_STATE(2149)] = 69883, - [SMALL_STATE(2150)] = 69933, - [SMALL_STATE(2151)] = 70039, - [SMALL_STATE(2152)] = 70145, - [SMALL_STATE(2153)] = 70207, - [SMALL_STATE(2154)] = 70317, - [SMALL_STATE(2155)] = 70423, - [SMALL_STATE(2156)] = 70473, - [SMALL_STATE(2157)] = 70523, - [SMALL_STATE(2158)] = 70573, - [SMALL_STATE(2159)] = 70679, - [SMALL_STATE(2160)] = 70785, - [SMALL_STATE(2161)] = 70865, - [SMALL_STATE(2162)] = 70975, - [SMALL_STATE(2163)] = 71045, - [SMALL_STATE(2164)] = 71155, - [SMALL_STATE(2165)] = 71249, - [SMALL_STATE(2166)] = 71345, - [SMALL_STATE(2167)] = 71421, - [SMALL_STATE(2168)] = 71509, - [SMALL_STATE(2169)] = 71599, - [SMALL_STATE(2170)] = 71691, - [SMALL_STATE(2171)] = 71765, - [SMALL_STATE(2172)] = 71841, - [SMALL_STATE(2173)] = 71891, - [SMALL_STATE(2174)] = 71945, - [SMALL_STATE(2175)] = 72029, - [SMALL_STATE(2176)] = 72127, - [SMALL_STATE(2177)] = 72237, - [SMALL_STATE(2178)] = 72343, - [SMALL_STATE(2179)] = 72449, - [SMALL_STATE(2180)] = 72499, - [SMALL_STATE(2181)] = 72605, - [SMALL_STATE(2182)] = 72711, - [SMALL_STATE(2183)] = 72817, - [SMALL_STATE(2184)] = 72923, - [SMALL_STATE(2185)] = 73029, - [SMALL_STATE(2186)] = 73079, - [SMALL_STATE(2187)] = 73189, - [SMALL_STATE(2188)] = 73295, - [SMALL_STATE(2189)] = 73363, - [SMALL_STATE(2190)] = 73413, - [SMALL_STATE(2191)] = 73463, - [SMALL_STATE(2192)] = 73513, - [SMALL_STATE(2193)] = 73563, - [SMALL_STATE(2194)] = 73613, - [SMALL_STATE(2195)] = 73723, - [SMALL_STATE(2196)] = 73833, - [SMALL_STATE(2197)] = 73943, - [SMALL_STATE(2198)] = 74053, - [SMALL_STATE(2199)] = 74163, - [SMALL_STATE(2200)] = 74213, - [SMALL_STATE(2201)] = 74287, - [SMALL_STATE(2202)] = 74397, - [SMALL_STATE(2203)] = 74461, - [SMALL_STATE(2204)] = 74515, - [SMALL_STATE(2205)] = 74625, - [SMALL_STATE(2206)] = 74679, - [SMALL_STATE(2207)] = 74733, - [SMALL_STATE(2208)] = 74809, - [SMALL_STATE(2209)] = 74863, - [SMALL_STATE(2210)] = 74973, - [SMALL_STATE(2211)] = 75037, - [SMALL_STATE(2212)] = 75103, - [SMALL_STATE(2213)] = 75213, - [SMALL_STATE(2214)] = 75323, - [SMALL_STATE(2215)] = 75389, - [SMALL_STATE(2216)] = 75457, - [SMALL_STATE(2217)] = 75563, - [SMALL_STATE(2218)] = 75637, - [SMALL_STATE(2219)] = 75691, - [SMALL_STATE(2220)] = 75757, - [SMALL_STATE(2221)] = 75823, - [SMALL_STATE(2222)] = 75889, - [SMALL_STATE(2223)] = 75953, - [SMALL_STATE(2224)] = 76019, - [SMALL_STATE(2225)] = 76073, - [SMALL_STATE(2226)] = 76123, - [SMALL_STATE(2227)] = 76173, - [SMALL_STATE(2228)] = 76233, - [SMALL_STATE(2229)] = 76297, - [SMALL_STATE(2230)] = 76347, - [SMALL_STATE(2231)] = 76457, - [SMALL_STATE(2232)] = 76521, - [SMALL_STATE(2233)] = 76631, - [SMALL_STATE(2234)] = 76741, - [SMALL_STATE(2235)] = 76805, - [SMALL_STATE(2236)] = 76915, - [SMALL_STATE(2237)] = 76979, - [SMALL_STATE(2238)] = 77029, - [SMALL_STATE(2239)] = 77079, - [SMALL_STATE(2240)] = 77129, - [SMALL_STATE(2241)] = 77179, - [SMALL_STATE(2242)] = 77243, - [SMALL_STATE(2243)] = 77307, - [SMALL_STATE(2244)] = 77373, - [SMALL_STATE(2245)] = 77479, - [SMALL_STATE(2246)] = 77585, - [SMALL_STATE(2247)] = 77691, - [SMALL_STATE(2248)] = 77797, - [SMALL_STATE(2249)] = 77903, - [SMALL_STATE(2250)] = 77983, - [SMALL_STATE(2251)] = 78053, - [SMALL_STATE(2252)] = 78147, - [SMALL_STATE(2253)] = 78243, - [SMALL_STATE(2254)] = 78319, - [SMALL_STATE(2255)] = 78407, - [SMALL_STATE(2256)] = 78497, - [SMALL_STATE(2257)] = 78589, - [SMALL_STATE(2258)] = 78663, - [SMALL_STATE(2259)] = 78739, - [SMALL_STATE(2260)] = 78823, + [SMALL_STATE(2060)] = 64255, + [SMALL_STATE(2061)] = 64309, + [SMALL_STATE(2062)] = 64359, + [SMALL_STATE(2063)] = 64423, + [SMALL_STATE(2064)] = 64481, + [SMALL_STATE(2065)] = 64531, + [SMALL_STATE(2066)] = 64597, + [SMALL_STATE(2067)] = 64707, + [SMALL_STATE(2068)] = 64781, + [SMALL_STATE(2069)] = 64891, + [SMALL_STATE(2070)] = 64941, + [SMALL_STATE(2071)] = 65017, + [SMALL_STATE(2072)] = 65067, + [SMALL_STATE(2073)] = 65117, + [SMALL_STATE(2074)] = 65227, + [SMALL_STATE(2075)] = 65279, + [SMALL_STATE(2076)] = 65353, + [SMALL_STATE(2077)] = 65459, + [SMALL_STATE(2078)] = 65513, + [SMALL_STATE(2079)] = 65619, + [SMALL_STATE(2080)] = 65683, + [SMALL_STATE(2081)] = 65733, + [SMALL_STATE(2082)] = 65843, + [SMALL_STATE(2083)] = 65901, + [SMALL_STATE(2084)] = 65951, + [SMALL_STATE(2085)] = 66001, + [SMALL_STATE(2086)] = 66107, + [SMALL_STATE(2087)] = 66193, + [SMALL_STATE(2088)] = 66257, + [SMALL_STATE(2089)] = 66307, + [SMALL_STATE(2090)] = 66357, + [SMALL_STATE(2091)] = 66411, + [SMALL_STATE(2092)] = 66477, + [SMALL_STATE(2093)] = 66531, + [SMALL_STATE(2094)] = 66605, + [SMALL_STATE(2095)] = 66673, + [SMALL_STATE(2096)] = 66725, + [SMALL_STATE(2097)] = 66777, + [SMALL_STATE(2098)] = 66851, + [SMALL_STATE(2099)] = 66911, + [SMALL_STATE(2100)] = 66965, + [SMALL_STATE(2101)] = 67019, + [SMALL_STATE(2102)] = 67125, + [SMALL_STATE(2103)] = 67175, + [SMALL_STATE(2104)] = 67229, + [SMALL_STATE(2105)] = 67283, + [SMALL_STATE(2106)] = 67337, + [SMALL_STATE(2107)] = 67387, + [SMALL_STATE(2108)] = 67437, + [SMALL_STATE(2109)] = 67513, + [SMALL_STATE(2110)] = 67579, + [SMALL_STATE(2111)] = 67643, + [SMALL_STATE(2112)] = 67709, + [SMALL_STATE(2113)] = 67759, + [SMALL_STATE(2114)] = 67813, + [SMALL_STATE(2115)] = 67867, + [SMALL_STATE(2116)] = 67947, + [SMALL_STATE(2117)] = 67997, + [SMALL_STATE(2118)] = 68063, + [SMALL_STATE(2119)] = 68113, + [SMALL_STATE(2120)] = 68171, + [SMALL_STATE(2121)] = 68225, + [SMALL_STATE(2122)] = 68301, + [SMALL_STATE(2123)] = 68351, + [SMALL_STATE(2124)] = 68405, + [SMALL_STATE(2125)] = 68463, + [SMALL_STATE(2126)] = 68573, + [SMALL_STATE(2127)] = 68623, + [SMALL_STATE(2128)] = 68677, + [SMALL_STATE(2129)] = 68787, + [SMALL_STATE(2130)] = 68897, + [SMALL_STATE(2131)] = 68947, + [SMALL_STATE(2132)] = 68997, + [SMALL_STATE(2133)] = 69049, + [SMALL_STATE(2134)] = 69101, + [SMALL_STATE(2135)] = 69151, + [SMALL_STATE(2136)] = 69217, + [SMALL_STATE(2137)] = 69267, + [SMALL_STATE(2138)] = 69321, + [SMALL_STATE(2139)] = 69371, + [SMALL_STATE(2140)] = 69481, + [SMALL_STATE(2141)] = 69535, + [SMALL_STATE(2142)] = 69645, + [SMALL_STATE(2143)] = 69707, + [SMALL_STATE(2144)] = 69777, + [SMALL_STATE(2145)] = 69831, + [SMALL_STATE(2146)] = 69881, + [SMALL_STATE(2147)] = 69987, + [SMALL_STATE(2148)] = 70093, + [SMALL_STATE(2149)] = 70187, + [SMALL_STATE(2150)] = 70283, + [SMALL_STATE(2151)] = 70393, + [SMALL_STATE(2152)] = 70469, + [SMALL_STATE(2153)] = 70519, + [SMALL_STATE(2154)] = 70607, + [SMALL_STATE(2155)] = 70713, + [SMALL_STATE(2156)] = 70803, + [SMALL_STATE(2157)] = 70855, + [SMALL_STATE(2158)] = 70965, + [SMALL_STATE(2159)] = 71057, + [SMALL_STATE(2160)] = 71109, + [SMALL_STATE(2161)] = 71215, + [SMALL_STATE(2162)] = 71279, + [SMALL_STATE(2163)] = 71329, + [SMALL_STATE(2164)] = 71435, + [SMALL_STATE(2165)] = 71489, + [SMALL_STATE(2166)] = 71551, + [SMALL_STATE(2167)] = 71603, + [SMALL_STATE(2168)] = 71653, + [SMALL_STATE(2169)] = 71703, + [SMALL_STATE(2170)] = 71813, + [SMALL_STATE(2171)] = 71879, + [SMALL_STATE(2172)] = 71989, + [SMALL_STATE(2173)] = 72063, + [SMALL_STATE(2174)] = 72139, + [SMALL_STATE(2175)] = 72205, + [SMALL_STATE(2176)] = 72289, + [SMALL_STATE(2177)] = 72399, + [SMALL_STATE(2178)] = 72449, + [SMALL_STATE(2179)] = 72523, + [SMALL_STATE(2180)] = 72589, + [SMALL_STATE(2181)] = 72699, + [SMALL_STATE(2182)] = 72797, + [SMALL_STATE(2183)] = 72903, + [SMALL_STATE(2184)] = 73009, + [SMALL_STATE(2185)] = 73083, + [SMALL_STATE(2186)] = 73189, + [SMALL_STATE(2187)] = 73265, + [SMALL_STATE(2188)] = 73315, + [SMALL_STATE(2189)] = 73421, + [SMALL_STATE(2190)] = 73527, + [SMALL_STATE(2191)] = 73633, + [SMALL_STATE(2192)] = 73713, + [SMALL_STATE(2193)] = 73823, + [SMALL_STATE(2194)] = 73929, + [SMALL_STATE(2195)] = 73979, + [SMALL_STATE(2196)] = 74049, + [SMALL_STATE(2197)] = 74159, + [SMALL_STATE(2198)] = 74253, + [SMALL_STATE(2199)] = 74349, + [SMALL_STATE(2200)] = 74455, + [SMALL_STATE(2201)] = 74561, + [SMALL_STATE(2202)] = 74611, + [SMALL_STATE(2203)] = 74663, + [SMALL_STATE(2204)] = 74739, + [SMALL_STATE(2205)] = 74849, + [SMALL_STATE(2206)] = 74937, + [SMALL_STATE(2207)] = 75027, + [SMALL_STATE(2208)] = 75091, + [SMALL_STATE(2209)] = 75197, + [SMALL_STATE(2210)] = 75303, + [SMALL_STATE(2211)] = 75367, + [SMALL_STATE(2212)] = 75443, + [SMALL_STATE(2213)] = 75505, + [SMALL_STATE(2214)] = 75559, + [SMALL_STATE(2215)] = 75609, + [SMALL_STATE(2216)] = 75663, + [SMALL_STATE(2217)] = 75713, + [SMALL_STATE(2218)] = 75763, + [SMALL_STATE(2219)] = 75813, + [SMALL_STATE(2220)] = 75919, + [SMALL_STATE(2221)] = 75993, + [SMALL_STATE(2222)] = 76069, + [SMALL_STATE(2223)] = 76133, + [SMALL_STATE(2224)] = 76185, + [SMALL_STATE(2225)] = 76243, + [SMALL_STATE(2226)] = 76297, + [SMALL_STATE(2227)] = 76361, + [SMALL_STATE(2228)] = 76435, + [SMALL_STATE(2229)] = 76485, + [SMALL_STATE(2230)] = 76595, + [SMALL_STATE(2231)] = 76701, + [SMALL_STATE(2232)] = 76759, + [SMALL_STATE(2233)] = 76825, + [SMALL_STATE(2234)] = 76891, + [SMALL_STATE(2235)] = 77001, + [SMALL_STATE(2236)] = 77051, + [SMALL_STATE(2237)] = 77119, + [SMALL_STATE(2238)] = 77181, + [SMALL_STATE(2239)] = 77245, + [SMALL_STATE(2240)] = 77295, + [SMALL_STATE(2241)] = 77353, + [SMALL_STATE(2242)] = 77463, + [SMALL_STATE(2243)] = 77513, + [SMALL_STATE(2244)] = 77575, + [SMALL_STATE(2245)] = 77625, + [SMALL_STATE(2246)] = 77683, + [SMALL_STATE(2247)] = 77733, + [SMALL_STATE(2248)] = 77817, + [SMALL_STATE(2249)] = 77915, + [SMALL_STATE(2250)] = 78025, + [SMALL_STATE(2251)] = 78131, + [SMALL_STATE(2252)] = 78237, + [SMALL_STATE(2253)] = 78301, + [SMALL_STATE(2254)] = 78411, + [SMALL_STATE(2255)] = 78461, + [SMALL_STATE(2256)] = 78567, + [SMALL_STATE(2257)] = 78629, + [SMALL_STATE(2258)] = 78691, + [SMALL_STATE(2259)] = 78751, + [SMALL_STATE(2260)] = 78815, [SMALL_STATE(2261)] = 78921, [SMALL_STATE(2262)] = 79027, [SMALL_STATE(2263)] = 79133, [SMALL_STATE(2264)] = 79239, [SMALL_STATE(2265)] = 79345, - [SMALL_STATE(2266)] = 79451, - [SMALL_STATE(2267)] = 79557, - [SMALL_STATE(2268)] = 79663, - [SMALL_STATE(2269)] = 79769, - [SMALL_STATE(2270)] = 79843, - [SMALL_STATE(2271)] = 79907, - [SMALL_STATE(2272)] = 79957, - [SMALL_STATE(2273)] = 80007, - [SMALL_STATE(2274)] = 80057, - [SMALL_STATE(2275)] = 80107, - [SMALL_STATE(2276)] = 80157, - [SMALL_STATE(2277)] = 80207, - [SMALL_STATE(2278)] = 80257, - [SMALL_STATE(2279)] = 80367, - [SMALL_STATE(2280)] = 80435, - [SMALL_STATE(2281)] = 80509, - [SMALL_STATE(2282)] = 80615, - [SMALL_STATE(2283)] = 80681, - [SMALL_STATE(2284)] = 80791, - [SMALL_STATE(2285)] = 80843, - [SMALL_STATE(2286)] = 80897, - [SMALL_STATE(2287)] = 80973, - [SMALL_STATE(2288)] = 81083, - [SMALL_STATE(2289)] = 81133, - [SMALL_STATE(2290)] = 81243, - [SMALL_STATE(2291)] = 81297, - [SMALL_STATE(2292)] = 81361, - [SMALL_STATE(2293)] = 81415, - [SMALL_STATE(2294)] = 81481, - [SMALL_STATE(2295)] = 81547, - [SMALL_STATE(2296)] = 81613, - [SMALL_STATE(2297)] = 81679, - [SMALL_STATE(2298)] = 81743, - [SMALL_STATE(2299)] = 81809, - [SMALL_STATE(2300)] = 81919, - [SMALL_STATE(2301)] = 82029, - [SMALL_STATE(2302)] = 82083, - [SMALL_STATE(2303)] = 82193, - [SMALL_STATE(2304)] = 82247, - [SMALL_STATE(2305)] = 82313, - [SMALL_STATE(2306)] = 82363, - [SMALL_STATE(2307)] = 82449, - [SMALL_STATE(2308)] = 82523, - [SMALL_STATE(2309)] = 82573, - [SMALL_STATE(2310)] = 82649, - [SMALL_STATE(2311)] = 82701, - [SMALL_STATE(2312)] = 82807, - [SMALL_STATE(2313)] = 82861, - [SMALL_STATE(2314)] = 82919, - [SMALL_STATE(2315)] = 82973, - [SMALL_STATE(2316)] = 83023, - [SMALL_STATE(2317)] = 83087, - [SMALL_STATE(2318)] = 83137, - [SMALL_STATE(2319)] = 83195, - [SMALL_STATE(2320)] = 83247, - [SMALL_STATE(2321)] = 83299, - [SMALL_STATE(2322)] = 83359, - [SMALL_STATE(2323)] = 83413, - [SMALL_STATE(2324)] = 83523, - [SMALL_STATE(2325)] = 83573, - [SMALL_STATE(2326)] = 83631, - [SMALL_STATE(2327)] = 83685, - [SMALL_STATE(2328)] = 83739, - [SMALL_STATE(2329)] = 83797, - [SMALL_STATE(2330)] = 83855, - [SMALL_STATE(2331)] = 83905, - [SMALL_STATE(2332)] = 83971, - [SMALL_STATE(2333)] = 84077, - [SMALL_STATE(2334)] = 84127, - [SMALL_STATE(2335)] = 84177, - [SMALL_STATE(2336)] = 84227, - [SMALL_STATE(2337)] = 84337, - [SMALL_STATE(2338)] = 84447, - [SMALL_STATE(2339)] = 84557, - [SMALL_STATE(2340)] = 84667, - [SMALL_STATE(2341)] = 84777, - [SMALL_STATE(2342)] = 84887, - [SMALL_STATE(2343)] = 84997, - [SMALL_STATE(2344)] = 85107, - [SMALL_STATE(2345)] = 85217, - [SMALL_STATE(2346)] = 85327, - [SMALL_STATE(2347)] = 85379, - [SMALL_STATE(2348)] = 85489, - [SMALL_STATE(2349)] = 85599, - [SMALL_STATE(2350)] = 85709, - [SMALL_STATE(2351)] = 85761, - [SMALL_STATE(2352)] = 85813, - [SMALL_STATE(2353)] = 85867, - [SMALL_STATE(2354)] = 85931, + [SMALL_STATE(2266)] = 79409, + [SMALL_STATE(2267)] = 79473, + [SMALL_STATE(2268)] = 79583, + [SMALL_STATE(2269)] = 79693, + [SMALL_STATE(2270)] = 79803, + [SMALL_STATE(2271)] = 79913, + [SMALL_STATE(2272)] = 80023, + [SMALL_STATE(2273)] = 80087, + [SMALL_STATE(2274)] = 80137, + [SMALL_STATE(2275)] = 80201, + [SMALL_STATE(2276)] = 80255, + [SMALL_STATE(2277)] = 80321, + [SMALL_STATE(2278)] = 80431, + [SMALL_STATE(2279)] = 80541, + [SMALL_STATE(2280)] = 80607, + [SMALL_STATE(2281)] = 80713, + [SMALL_STATE(2282)] = 80823, + [SMALL_STATE(2283)] = 80873, + [SMALL_STATE(2284)] = 80983, + [SMALL_STATE(2285)] = 81091, + [SMALL_STATE(2286)] = 81197, + [SMALL_STATE(2287)] = 81307, + [SMALL_STATE(2288)] = 81417, + [SMALL_STATE(2289)] = 81483, + [SMALL_STATE(2290)] = 81593, + [SMALL_STATE(2291)] = 81699, + [SMALL_STATE(2292)] = 81809, + [SMALL_STATE(2293)] = 81859, + [SMALL_STATE(2294)] = 81969, + [SMALL_STATE(2295)] = 82079, + [SMALL_STATE(2296)] = 82143, + [SMALL_STATE(2297)] = 82197, + [SMALL_STATE(2298)] = 82249, + [SMALL_STATE(2299)] = 82359, + [SMALL_STATE(2300)] = 82469, + [SMALL_STATE(2301)] = 82579, + [SMALL_STATE(2302)] = 82629, + [SMALL_STATE(2303)] = 82679, + [SMALL_STATE(2304)] = 82729, + [SMALL_STATE(2305)] = 82785, + [SMALL_STATE(2306)] = 82849, + [SMALL_STATE(2307)] = 82903, + [SMALL_STATE(2308)] = 82969, + [SMALL_STATE(2309)] = 83079, + [SMALL_STATE(2310)] = 83129, + [SMALL_STATE(2311)] = 83239, + [SMALL_STATE(2312)] = 83289, + [SMALL_STATE(2313)] = 83339, + [SMALL_STATE(2314)] = 83393, + [SMALL_STATE(2315)] = 83443, + [SMALL_STATE(2316)] = 83501, + [SMALL_STATE(2317)] = 83551, + [SMALL_STATE(2318)] = 83661, + [SMALL_STATE(2319)] = 83723, + [SMALL_STATE(2320)] = 83773, + [SMALL_STATE(2321)] = 83831, + [SMALL_STATE(2322)] = 83885, + [SMALL_STATE(2323)] = 83939, + [SMALL_STATE(2324)] = 84001, + [SMALL_STATE(2325)] = 84057, + [SMALL_STATE(2326)] = 84117, + [SMALL_STATE(2327)] = 84181, + [SMALL_STATE(2328)] = 84235, + [SMALL_STATE(2329)] = 84301, + [SMALL_STATE(2330)] = 84355, + [SMALL_STATE(2331)] = 84421, + [SMALL_STATE(2332)] = 84481, + [SMALL_STATE(2333)] = 84531, + [SMALL_STATE(2334)] = 84605, + [SMALL_STATE(2335)] = 84715, + [SMALL_STATE(2336)] = 84781, + [SMALL_STATE(2337)] = 84833, + [SMALL_STATE(2338)] = 84909, + [SMALL_STATE(2339)] = 84963, + [SMALL_STATE(2340)] = 85013, + [SMALL_STATE(2341)] = 85081, + [SMALL_STATE(2342)] = 85131, + [SMALL_STATE(2343)] = 85241, + [SMALL_STATE(2344)] = 85303, + [SMALL_STATE(2345)] = 85365, + [SMALL_STATE(2346)] = 85471, + [SMALL_STATE(2347)] = 85535, + [SMALL_STATE(2348)] = 85585, + [SMALL_STATE(2349)] = 85695, + [SMALL_STATE(2350)] = 85745, + [SMALL_STATE(2351)] = 85795, + [SMALL_STATE(2352)] = 85845, + [SMALL_STATE(2353)] = 85895, + [SMALL_STATE(2354)] = 85945, [SMALL_STATE(2355)] = 86037, - [SMALL_STATE(2356)] = 86088, - [SMALL_STATE(2357)] = 86139, - [SMALL_STATE(2358)] = 86208, - [SMALL_STATE(2359)] = 86277, - [SMALL_STATE(2360)] = 86334, - [SMALL_STATE(2361)] = 86393, - [SMALL_STATE(2362)] = 86452, - [SMALL_STATE(2363)] = 86511, - [SMALL_STATE(2364)] = 86570, - [SMALL_STATE(2365)] = 86621, - [SMALL_STATE(2366)] = 86680, - [SMALL_STATE(2367)] = 86731, - [SMALL_STATE(2368)] = 86786, - [SMALL_STATE(2369)] = 86841, - [SMALL_STATE(2370)] = 86896, - [SMALL_STATE(2371)] = 86965, - [SMALL_STATE(2372)] = 87024, - [SMALL_STATE(2373)] = 87079, - [SMALL_STATE(2374)] = 87136, - [SMALL_STATE(2375)] = 87193, - [SMALL_STATE(2376)] = 87252, - [SMALL_STATE(2377)] = 87305, - [SMALL_STATE(2378)] = 87364, - [SMALL_STATE(2379)] = 87433, - [SMALL_STATE(2380)] = 87488, - [SMALL_STATE(2381)] = 87543, - [SMALL_STATE(2382)] = 87598, - [SMALL_STATE(2383)] = 87687, - [SMALL_STATE(2384)] = 87744, - [SMALL_STATE(2385)] = 87801, - [SMALL_STATE(2386)] = 87876, - [SMALL_STATE(2387)] = 87981, - [SMALL_STATE(2388)] = 88034, - [SMALL_STATE(2389)] = 88093, - [SMALL_STATE(2390)] = 88152, - [SMALL_STATE(2391)] = 88211, - [SMALL_STATE(2392)] = 88270, - [SMALL_STATE(2393)] = 88377, - [SMALL_STATE(2394)] = 88484, - [SMALL_STATE(2395)] = 88589, - [SMALL_STATE(2396)] = 88694, - [SMALL_STATE(2397)] = 88753, - [SMALL_STATE(2398)] = 88812, - [SMALL_STATE(2399)] = 88871, - [SMALL_STATE(2400)] = 88930, - [SMALL_STATE(2401)] = 89011, - [SMALL_STATE(2402)] = 89088, - [SMALL_STATE(2403)] = 89193, - [SMALL_STATE(2404)] = 89262, - [SMALL_STATE(2405)] = 89321, - [SMALL_STATE(2406)] = 89380, - [SMALL_STATE(2407)] = 89439, - [SMALL_STATE(2408)] = 89498, - [SMALL_STATE(2409)] = 89557, - [SMALL_STATE(2410)] = 89616, - [SMALL_STATE(2411)] = 89667, - [SMALL_STATE(2412)] = 89726, + [SMALL_STATE(2356)] = 86094, + [SMALL_STATE(2357)] = 86199, + [SMALL_STATE(2358)] = 86274, + [SMALL_STATE(2359)] = 86333, + [SMALL_STATE(2360)] = 86384, + [SMALL_STATE(2361)] = 86453, + [SMALL_STATE(2362)] = 86506, + [SMALL_STATE(2363)] = 86587, + [SMALL_STATE(2364)] = 86646, + [SMALL_STATE(2365)] = 86705, + [SMALL_STATE(2366)] = 86764, + [SMALL_STATE(2367)] = 86823, + [SMALL_STATE(2368)] = 86892, + [SMALL_STATE(2369)] = 86951, + [SMALL_STATE(2370)] = 87010, + [SMALL_STATE(2371)] = 87069, + [SMALL_STATE(2372)] = 87128, + [SMALL_STATE(2373)] = 87187, + [SMALL_STATE(2374)] = 87246, + [SMALL_STATE(2375)] = 87305, + [SMALL_STATE(2376)] = 87364, + [SMALL_STATE(2377)] = 87423, + [SMALL_STATE(2378)] = 87478, + [SMALL_STATE(2379)] = 87537, + [SMALL_STATE(2380)] = 87596, + [SMALL_STATE(2381)] = 87655, + [SMALL_STATE(2382)] = 87706, + [SMALL_STATE(2383)] = 87813, + [SMALL_STATE(2384)] = 87882, + [SMALL_STATE(2385)] = 87933, + [SMALL_STATE(2386)] = 88038, + [SMALL_STATE(2387)] = 88143, + [SMALL_STATE(2388)] = 88220, + [SMALL_STATE(2389)] = 88279, + [SMALL_STATE(2390)] = 88348, + [SMALL_STATE(2391)] = 88437, + [SMALL_STATE(2392)] = 88494, + [SMALL_STATE(2393)] = 88553, + [SMALL_STATE(2394)] = 88604, + [SMALL_STATE(2395)] = 88655, + [SMALL_STATE(2396)] = 88710, + [SMALL_STATE(2397)] = 88765, + [SMALL_STATE(2398)] = 88820, + [SMALL_STATE(2399)] = 88889, + [SMALL_STATE(2400)] = 88944, + [SMALL_STATE(2401)] = 89001, + [SMALL_STATE(2402)] = 89058, + [SMALL_STATE(2403)] = 89111, + [SMALL_STATE(2404)] = 89180, + [SMALL_STATE(2405)] = 89235, + [SMALL_STATE(2406)] = 89290, + [SMALL_STATE(2407)] = 89345, + [SMALL_STATE(2408)] = 89402, + [SMALL_STATE(2409)] = 89459, + [SMALL_STATE(2410)] = 89564, + [SMALL_STATE(2411)] = 89671, + [SMALL_STATE(2412)] = 89722, [SMALL_STATE(2413)] = 89781, - [SMALL_STATE(2414)] = 89832, - [SMALL_STATE(2415)] = 89937, - [SMALL_STATE(2416)] = 90042, - [SMALL_STATE(2417)] = 90147, - [SMALL_STATE(2418)] = 90252, - [SMALL_STATE(2419)] = 90357, - [SMALL_STATE(2420)] = 90436, - [SMALL_STATE(2421)] = 90505, - [SMALL_STATE(2422)] = 90598, - [SMALL_STATE(2423)] = 90693, - [SMALL_STATE(2424)] = 90768, - [SMALL_STATE(2425)] = 90855, - [SMALL_STATE(2426)] = 90944, - [SMALL_STATE(2427)] = 91035, - [SMALL_STATE(2428)] = 91108, - [SMALL_STATE(2429)] = 91183, - [SMALL_STATE(2430)] = 91266, - [SMALL_STATE(2431)] = 91363, - [SMALL_STATE(2432)] = 91468, - [SMALL_STATE(2433)] = 91573, - [SMALL_STATE(2434)] = 91678, - [SMALL_STATE(2435)] = 91783, - [SMALL_STATE(2436)] = 91888, - [SMALL_STATE(2437)] = 91993, - [SMALL_STATE(2438)] = 92098, - [SMALL_STATE(2439)] = 92203, - [SMALL_STATE(2440)] = 92270, - [SMALL_STATE(2441)] = 92343, - [SMALL_STATE(2442)] = 92448, - [SMALL_STATE(2443)] = 92513, - [SMALL_STATE(2444)] = 92618, - [SMALL_STATE(2445)] = 92687, - [SMALL_STATE(2446)] = 92738, - [SMALL_STATE(2447)] = 92843, - [SMALL_STATE(2448)] = 92948, - [SMALL_STATE(2449)] = 93053, - [SMALL_STATE(2450)] = 93158, - [SMALL_STATE(2451)] = 93263, - [SMALL_STATE(2452)] = 93342, - [SMALL_STATE(2453)] = 93411, - [SMALL_STATE(2454)] = 93504, - [SMALL_STATE(2455)] = 93599, - [SMALL_STATE(2456)] = 93674, - [SMALL_STATE(2457)] = 93761, - [SMALL_STATE(2458)] = 93850, - [SMALL_STATE(2459)] = 93941, - [SMALL_STATE(2460)] = 94014, - [SMALL_STATE(2461)] = 94089, - [SMALL_STATE(2462)] = 94172, - [SMALL_STATE(2463)] = 94269, - [SMALL_STATE(2464)] = 94374, - [SMALL_STATE(2465)] = 94479, - [SMALL_STATE(2466)] = 94584, - [SMALL_STATE(2467)] = 94689, - [SMALL_STATE(2468)] = 94794, - [SMALL_STATE(2469)] = 94899, - [SMALL_STATE(2470)] = 95004, - [SMALL_STATE(2471)] = 95109, - [SMALL_STATE(2472)] = 95176, - [SMALL_STATE(2473)] = 95249, - [SMALL_STATE(2474)] = 95354, - [SMALL_STATE(2475)] = 95419, + [SMALL_STATE(2414)] = 89840, + [SMALL_STATE(2415)] = 89899, + [SMALL_STATE(2416)] = 89958, + [SMALL_STATE(2417)] = 90063, + [SMALL_STATE(2418)] = 90168, + [SMALL_STATE(2419)] = 90273, + [SMALL_STATE(2420)] = 90324, + [SMALL_STATE(2421)] = 90429, + [SMALL_STATE(2422)] = 90534, + [SMALL_STATE(2423)] = 90639, + [SMALL_STATE(2424)] = 90718, + [SMALL_STATE(2425)] = 90787, + [SMALL_STATE(2426)] = 90880, + [SMALL_STATE(2427)] = 90975, + [SMALL_STATE(2428)] = 91050, + [SMALL_STATE(2429)] = 91137, + [SMALL_STATE(2430)] = 91226, + [SMALL_STATE(2431)] = 91317, + [SMALL_STATE(2432)] = 91390, + [SMALL_STATE(2433)] = 91465, + [SMALL_STATE(2434)] = 91548, + [SMALL_STATE(2435)] = 91645, + [SMALL_STATE(2436)] = 91750, + [SMALL_STATE(2437)] = 91855, + [SMALL_STATE(2438)] = 91960, + [SMALL_STATE(2439)] = 92065, + [SMALL_STATE(2440)] = 92170, + [SMALL_STATE(2441)] = 92275, + [SMALL_STATE(2442)] = 92380, + [SMALL_STATE(2443)] = 92485, + [SMALL_STATE(2444)] = 92552, + [SMALL_STATE(2445)] = 92625, + [SMALL_STATE(2446)] = 92730, + [SMALL_STATE(2447)] = 92795, + [SMALL_STATE(2448)] = 92900, + [SMALL_STATE(2449)] = 93005, + [SMALL_STATE(2450)] = 93110, + [SMALL_STATE(2451)] = 93215, + [SMALL_STATE(2452)] = 93320, + [SMALL_STATE(2453)] = 93399, + [SMALL_STATE(2454)] = 93468, + [SMALL_STATE(2455)] = 93561, + [SMALL_STATE(2456)] = 93656, + [SMALL_STATE(2457)] = 93731, + [SMALL_STATE(2458)] = 93818, + [SMALL_STATE(2459)] = 93907, + [SMALL_STATE(2460)] = 93998, + [SMALL_STATE(2461)] = 94071, + [SMALL_STATE(2462)] = 94146, + [SMALL_STATE(2463)] = 94229, + [SMALL_STATE(2464)] = 94326, + [SMALL_STATE(2465)] = 94431, + [SMALL_STATE(2466)] = 94536, + [SMALL_STATE(2467)] = 94641, + [SMALL_STATE(2468)] = 94746, + [SMALL_STATE(2469)] = 94851, + [SMALL_STATE(2470)] = 94956, + [SMALL_STATE(2471)] = 95061, + [SMALL_STATE(2472)] = 95166, + [SMALL_STATE(2473)] = 95233, + [SMALL_STATE(2474)] = 95306, + [SMALL_STATE(2475)] = 95411, [SMALL_STATE(2476)] = 95476, [SMALL_STATE(2477)] = 95533, [SMALL_STATE(2478)] = 95638, [SMALL_STATE(2479)] = 95742, - [SMALL_STATE(2480)] = 95792, - [SMALL_STATE(2481)] = 95842, - [SMALL_STATE(2482)] = 95946, - [SMALL_STATE(2483)] = 96050, - [SMALL_STATE(2484)] = 96100, - [SMALL_STATE(2485)] = 96150, - [SMALL_STATE(2486)] = 96222, - [SMALL_STATE(2487)] = 96326, - [SMALL_STATE(2488)] = 96430, - [SMALL_STATE(2489)] = 96478, - [SMALL_STATE(2490)] = 96528, - [SMALL_STATE(2491)] = 96632, - [SMALL_STATE(2492)] = 96736, - [SMALL_STATE(2493)] = 96840, - [SMALL_STATE(2494)] = 96918, - [SMALL_STATE(2495)] = 96986, - [SMALL_STATE(2496)] = 97078, - [SMALL_STATE(2497)] = 97172, - [SMALL_STATE(2498)] = 97246, - [SMALL_STATE(2499)] = 97332, - [SMALL_STATE(2500)] = 97420, - [SMALL_STATE(2501)] = 97510, - [SMALL_STATE(2502)] = 97582, - [SMALL_STATE(2503)] = 97656, - [SMALL_STATE(2504)] = 97738, - [SMALL_STATE(2505)] = 97834, - [SMALL_STATE(2506)] = 97938, - [SMALL_STATE(2507)] = 98042, - [SMALL_STATE(2508)] = 98148, - [SMALL_STATE(2509)] = 98252, - [SMALL_STATE(2510)] = 98356, - [SMALL_STATE(2511)] = 98460, - [SMALL_STATE(2512)] = 98514, - [SMALL_STATE(2513)] = 98618, - [SMALL_STATE(2514)] = 98682, - [SMALL_STATE(2515)] = 98742, - [SMALL_STATE(2516)] = 98806, - [SMALL_STATE(2517)] = 98866, - [SMALL_STATE(2518)] = 98970, - [SMALL_STATE(2519)] = 99074, - [SMALL_STATE(2520)] = 99124, - [SMALL_STATE(2521)] = 99228, - [SMALL_STATE(2522)] = 99276, - [SMALL_STATE(2523)] = 99326, - [SMALL_STATE(2524)] = 99380, - [SMALL_STATE(2525)] = 99436, - [SMALL_STATE(2526)] = 99490, - [SMALL_STATE(2527)] = 99594, - [SMALL_STATE(2528)] = 99698, - [SMALL_STATE(2529)] = 99752, - [SMALL_STATE(2530)] = 99806, - [SMALL_STATE(2531)] = 99860, - [SMALL_STATE(2532)] = 99928, - [SMALL_STATE(2533)] = 100032, - [SMALL_STATE(2534)] = 100102, - [SMALL_STATE(2535)] = 100152, - [SMALL_STATE(2536)] = 100202, - [SMALL_STATE(2537)] = 100252, - [SMALL_STATE(2538)] = 100306, - [SMALL_STATE(2539)] = 100372, - [SMALL_STATE(2540)] = 100426, - [SMALL_STATE(2541)] = 100490, - [SMALL_STATE(2542)] = 100550, - [SMALL_STATE(2543)] = 100614, - [SMALL_STATE(2544)] = 100674, - [SMALL_STATE(2545)] = 100742, - [SMALL_STATE(2546)] = 100796, - [SMALL_STATE(2547)] = 100900, - [SMALL_STATE(2548)] = 101004, - [SMALL_STATE(2549)] = 101070, - [SMALL_STATE(2550)] = 101142, - [SMALL_STATE(2551)] = 101246, - [SMALL_STATE(2552)] = 101310, - [SMALL_STATE(2553)] = 101414, - [SMALL_STATE(2554)] = 101478, - [SMALL_STATE(2555)] = 101582, - [SMALL_STATE(2556)] = 101630, - [SMALL_STATE(2557)] = 101680, - [SMALL_STATE(2558)] = 101784, - [SMALL_STATE(2559)] = 101834, - [SMALL_STATE(2560)] = 101894, - [SMALL_STATE(2561)] = 101948, + [SMALL_STATE(2480)] = 95836, + [SMALL_STATE(2481)] = 95910, + [SMALL_STATE(2482)] = 95996, + [SMALL_STATE(2483)] = 96084, + [SMALL_STATE(2484)] = 96174, + [SMALL_STATE(2485)] = 96246, + [SMALL_STATE(2486)] = 96320, + [SMALL_STATE(2487)] = 96402, + [SMALL_STATE(2488)] = 96498, + [SMALL_STATE(2489)] = 96602, + [SMALL_STATE(2490)] = 96706, + [SMALL_STATE(2491)] = 96810, + [SMALL_STATE(2492)] = 96914, + [SMALL_STATE(2493)] = 97018, + [SMALL_STATE(2494)] = 97122, + [SMALL_STATE(2495)] = 97226, + [SMALL_STATE(2496)] = 97330, + [SMALL_STATE(2497)] = 97396, + [SMALL_STATE(2498)] = 97500, + [SMALL_STATE(2499)] = 97564, + [SMALL_STATE(2500)] = 97624, + [SMALL_STATE(2501)] = 97688, + [SMALL_STATE(2502)] = 97748, + [SMALL_STATE(2503)] = 97852, + [SMALL_STATE(2504)] = 97902, + [SMALL_STATE(2505)] = 97952, + [SMALL_STATE(2506)] = 98018, + [SMALL_STATE(2507)] = 98090, + [SMALL_STATE(2508)] = 98194, + [SMALL_STATE(2509)] = 98258, + [SMALL_STATE(2510)] = 98362, + [SMALL_STATE(2511)] = 98466, + [SMALL_STATE(2512)] = 98516, + [SMALL_STATE(2513)] = 98566, + [SMALL_STATE(2514)] = 98616, + [SMALL_STATE(2515)] = 98722, + [SMALL_STATE(2516)] = 98786, + [SMALL_STATE(2517)] = 98850, + [SMALL_STATE(2518)] = 98910, + [SMALL_STATE(2519)] = 98970, + [SMALL_STATE(2520)] = 99034, + [SMALL_STATE(2521)] = 99126, + [SMALL_STATE(2522)] = 99194, + [SMALL_STATE(2523)] = 99248, + [SMALL_STATE(2524)] = 99302, + [SMALL_STATE(2525)] = 99374, + [SMALL_STATE(2526)] = 99428, + [SMALL_STATE(2527)] = 99482, + [SMALL_STATE(2528)] = 99536, + [SMALL_STATE(2529)] = 99590, + [SMALL_STATE(2530)] = 99638, + [SMALL_STATE(2531)] = 99742, + [SMALL_STATE(2532)] = 99846, + [SMALL_STATE(2533)] = 99896, + [SMALL_STATE(2534)] = 100000, + [SMALL_STATE(2535)] = 100104, + [SMALL_STATE(2536)] = 100158, + [SMALL_STATE(2537)] = 100206, + [SMALL_STATE(2538)] = 100256, + [SMALL_STATE(2539)] = 100304, + [SMALL_STATE(2540)] = 100354, + [SMALL_STATE(2541)] = 100410, + [SMALL_STATE(2542)] = 100464, + [SMALL_STATE(2543)] = 100518, + [SMALL_STATE(2544)] = 100572, + [SMALL_STATE(2545)] = 100626, + [SMALL_STATE(2546)] = 100730, + [SMALL_STATE(2547)] = 100798, + [SMALL_STATE(2548)] = 100902, + [SMALL_STATE(2549)] = 101006, + [SMALL_STATE(2550)] = 101056, + [SMALL_STATE(2551)] = 101106, + [SMALL_STATE(2552)] = 101156, + [SMALL_STATE(2553)] = 101260, + [SMALL_STATE(2554)] = 101364, + [SMALL_STATE(2555)] = 101468, + [SMALL_STATE(2556)] = 101572, + [SMALL_STATE(2557)] = 101642, + [SMALL_STATE(2558)] = 101720, + [SMALL_STATE(2559)] = 101824, + [SMALL_STATE(2560)] = 101874, + [SMALL_STATE(2561)] = 101942, [SMALL_STATE(2562)] = 102002, [SMALL_STATE(2563)] = 102059, - [SMALL_STATE(2564)] = 102118, - [SMALL_STATE(2565)] = 102175, - [SMALL_STATE(2566)] = 102224, - [SMALL_STATE(2567)] = 102281, - [SMALL_STATE(2568)] = 102382, - [SMALL_STATE(2569)] = 102441, - [SMALL_STATE(2570)] = 102500, - [SMALL_STATE(2571)] = 102559, - [SMALL_STATE(2572)] = 102618, - [SMALL_STATE(2573)] = 102675, - [SMALL_STATE(2574)] = 102736, - [SMALL_STATE(2575)] = 102837, - [SMALL_STATE(2576)] = 102894, - [SMALL_STATE(2577)] = 102951, - [SMALL_STATE(2578)] = 103008, - [SMALL_STATE(2579)] = 103057, - [SMALL_STATE(2580)] = 103114, - [SMALL_STATE(2581)] = 103171, - [SMALL_STATE(2582)] = 103228, - [SMALL_STATE(2583)] = 103285, - [SMALL_STATE(2584)] = 103348, - [SMALL_STATE(2585)] = 103405, - [SMALL_STATE(2586)] = 103470, - [SMALL_STATE(2587)] = 103527, - [SMALL_STATE(2588)] = 103580, - [SMALL_STATE(2589)] = 103639, - [SMALL_STATE(2590)] = 103698, - [SMALL_STATE(2591)] = 103755, - [SMALL_STATE(2592)] = 103814, - [SMALL_STATE(2593)] = 103873, - [SMALL_STATE(2594)] = 103930, - [SMALL_STATE(2595)] = 103987, - [SMALL_STATE(2596)] = 104050, - [SMALL_STATE(2597)] = 104109, - [SMALL_STATE(2598)] = 104168, - [SMALL_STATE(2599)] = 104217, + [SMALL_STATE(2564)] = 102116, + [SMALL_STATE(2565)] = 102173, + [SMALL_STATE(2566)] = 102232, + [SMALL_STATE(2567)] = 102291, + [SMALL_STATE(2568)] = 102350, + [SMALL_STATE(2569)] = 102415, + [SMALL_STATE(2570)] = 102472, + [SMALL_STATE(2571)] = 102529, + [SMALL_STATE(2572)] = 102586, + [SMALL_STATE(2573)] = 102643, + [SMALL_STATE(2574)] = 102702, + [SMALL_STATE(2575)] = 102761, + [SMALL_STATE(2576)] = 102822, + [SMALL_STATE(2577)] = 102879, + [SMALL_STATE(2578)] = 102936, + [SMALL_STATE(2579)] = 102993, + [SMALL_STATE(2580)] = 103052, + [SMALL_STATE(2581)] = 103153, + [SMALL_STATE(2582)] = 103212, + [SMALL_STATE(2583)] = 103261, + [SMALL_STATE(2584)] = 103318, + [SMALL_STATE(2585)] = 103375, + [SMALL_STATE(2586)] = 103434, + [SMALL_STATE(2587)] = 103493, + [SMALL_STATE(2588)] = 103552, + [SMALL_STATE(2589)] = 103609, + [SMALL_STATE(2590)] = 103668, + [SMALL_STATE(2591)] = 103725, + [SMALL_STATE(2592)] = 103784, + [SMALL_STATE(2593)] = 103841, + [SMALL_STATE(2594)] = 103904, + [SMALL_STATE(2595)] = 103967, + [SMALL_STATE(2596)] = 104024, + [SMALL_STATE(2597)] = 104077, + [SMALL_STATE(2598)] = 104126, + [SMALL_STATE(2599)] = 104175, [SMALL_STATE(2600)] = 104276, - [SMALL_STATE(2601)] = 104324, - [SMALL_STATE(2602)] = 104370, - [SMALL_STATE(2603)] = 104416, - [SMALL_STATE(2604)] = 104464, - [SMALL_STATE(2605)] = 104510, - [SMALL_STATE(2606)] = 104556, - [SMALL_STATE(2607)] = 104612, - [SMALL_STATE(2608)] = 104658, - [SMALL_STATE(2609)] = 104704, - [SMALL_STATE(2610)] = 104752, - [SMALL_STATE(2611)] = 104798, - [SMALL_STATE(2612)] = 104844, - [SMALL_STATE(2613)] = 104890, - [SMALL_STATE(2614)] = 104936, - [SMALL_STATE(2615)] = 104982, - [SMALL_STATE(2616)] = 105028, - [SMALL_STATE(2617)] = 105074, - [SMALL_STATE(2618)] = 105124, - [SMALL_STATE(2619)] = 105170, - [SMALL_STATE(2620)] = 105216, - [SMALL_STATE(2621)] = 105262, - [SMALL_STATE(2622)] = 105308, - [SMALL_STATE(2623)] = 105356, - [SMALL_STATE(2624)] = 105404, - [SMALL_STATE(2625)] = 105450, - [SMALL_STATE(2626)] = 105508, - [SMALL_STATE(2627)] = 105556, - [SMALL_STATE(2628)] = 105604, - [SMALL_STATE(2629)] = 105650, - [SMALL_STATE(2630)] = 105696, - [SMALL_STATE(2631)] = 105742, - [SMALL_STATE(2632)] = 105788, - [SMALL_STATE(2633)] = 105836, - [SMALL_STATE(2634)] = 105884, - [SMALL_STATE(2635)] = 105930, - [SMALL_STATE(2636)] = 105976, - [SMALL_STATE(2637)] = 106024, - [SMALL_STATE(2638)] = 106070, - [SMALL_STATE(2639)] = 106116, - [SMALL_STATE(2640)] = 106162, - [SMALL_STATE(2641)] = 106208, - [SMALL_STATE(2642)] = 106254, - [SMALL_STATE(2643)] = 106304, - [SMALL_STATE(2644)] = 106350, - [SMALL_STATE(2645)] = 106396, - [SMALL_STATE(2646)] = 106442, - [SMALL_STATE(2647)] = 106488, - [SMALL_STATE(2648)] = 106534, - [SMALL_STATE(2649)] = 106580, - [SMALL_STATE(2650)] = 106626, - [SMALL_STATE(2651)] = 106672, - [SMALL_STATE(2652)] = 106718, - [SMALL_STATE(2653)] = 106764, - [SMALL_STATE(2654)] = 106810, - [SMALL_STATE(2655)] = 106856, - [SMALL_STATE(2656)] = 106904, - [SMALL_STATE(2657)] = 106950, - [SMALL_STATE(2658)] = 106996, - [SMALL_STATE(2659)] = 107044, - [SMALL_STATE(2660)] = 107092, - [SMALL_STATE(2661)] = 107138, + [SMALL_STATE(2601)] = 104322, + [SMALL_STATE(2602)] = 104368, + [SMALL_STATE(2603)] = 104414, + [SMALL_STATE(2604)] = 104462, + [SMALL_STATE(2605)] = 104508, + [SMALL_STATE(2606)] = 104554, + [SMALL_STATE(2607)] = 104600, + [SMALL_STATE(2608)] = 104646, + [SMALL_STATE(2609)] = 104694, + [SMALL_STATE(2610)] = 104740, + [SMALL_STATE(2611)] = 104786, + [SMALL_STATE(2612)] = 104832, + [SMALL_STATE(2613)] = 104878, + [SMALL_STATE(2614)] = 104924, + [SMALL_STATE(2615)] = 104974, + [SMALL_STATE(2616)] = 105020, + [SMALL_STATE(2617)] = 105066, + [SMALL_STATE(2618)] = 105112, + [SMALL_STATE(2619)] = 105158, + [SMALL_STATE(2620)] = 105204, + [SMALL_STATE(2621)] = 105250, + [SMALL_STATE(2622)] = 105296, + [SMALL_STATE(2623)] = 105342, + [SMALL_STATE(2624)] = 105388, + [SMALL_STATE(2625)] = 105434, + [SMALL_STATE(2626)] = 105480, + [SMALL_STATE(2627)] = 105526, + [SMALL_STATE(2628)] = 105574, + [SMALL_STATE(2629)] = 105620, + [SMALL_STATE(2630)] = 105668, + [SMALL_STATE(2631)] = 105714, + [SMALL_STATE(2632)] = 105760, + [SMALL_STATE(2633)] = 105806, + [SMALL_STATE(2634)] = 105854, + [SMALL_STATE(2635)] = 105900, + [SMALL_STATE(2636)] = 105948, + [SMALL_STATE(2637)] = 105998, + [SMALL_STATE(2638)] = 106044, + [SMALL_STATE(2639)] = 106090, + [SMALL_STATE(2640)] = 106138, + [SMALL_STATE(2641)] = 106184, + [SMALL_STATE(2642)] = 106230, + [SMALL_STATE(2643)] = 106276, + [SMALL_STATE(2644)] = 106324, + [SMALL_STATE(2645)] = 106370, + [SMALL_STATE(2646)] = 106416, + [SMALL_STATE(2647)] = 106464, + [SMALL_STATE(2648)] = 106510, + [SMALL_STATE(2649)] = 106556, + [SMALL_STATE(2650)] = 106604, + [SMALL_STATE(2651)] = 106650, + [SMALL_STATE(2652)] = 106696, + [SMALL_STATE(2653)] = 106744, + [SMALL_STATE(2654)] = 106790, + [SMALL_STATE(2655)] = 106848, + [SMALL_STATE(2656)] = 106896, + [SMALL_STATE(2657)] = 106946, + [SMALL_STATE(2658)] = 106992, + [SMALL_STATE(2659)] = 107040, + [SMALL_STATE(2660)] = 107086, + [SMALL_STATE(2661)] = 107132, [SMALL_STATE(2662)] = 107188, [SMALL_STATE(2663)] = 107234, [SMALL_STATE(2664)] = 107280, - [SMALL_STATE(2665)] = 107333, - [SMALL_STATE(2666)] = 107378, - [SMALL_STATE(2667)] = 107445, - [SMALL_STATE(2668)] = 107496, - [SMALL_STATE(2669)] = 107541, - [SMALL_STATE(2670)] = 107592, - [SMALL_STATE(2671)] = 107641, - [SMALL_STATE(2672)] = 107694, - [SMALL_STATE(2673)] = 107739, - [SMALL_STATE(2674)] = 107784, - [SMALL_STATE(2675)] = 107829, - [SMALL_STATE(2676)] = 107874, + [SMALL_STATE(2665)] = 107325, + [SMALL_STATE(2666)] = 107370, + [SMALL_STATE(2667)] = 107437, + [SMALL_STATE(2668)] = 107486, + [SMALL_STATE(2669)] = 107531, + [SMALL_STATE(2670)] = 107582, + [SMALL_STATE(2671)] = 107627, + [SMALL_STATE(2672)] = 107680, + [SMALL_STATE(2673)] = 107725, + [SMALL_STATE(2674)] = 107770, + [SMALL_STATE(2675)] = 107815, + [SMALL_STATE(2676)] = 107866, [SMALL_STATE(2677)] = 107919, [SMALL_STATE(2678)] = 107977, - [SMALL_STATE(2679)] = 108033, - [SMALL_STATE(2680)] = 108091, + [SMALL_STATE(2679)] = 108021, + [SMALL_STATE(2680)] = 108081, [SMALL_STATE(2681)] = 108139, - [SMALL_STATE(2682)] = 108187, - [SMALL_STATE(2683)] = 108245, - [SMALL_STATE(2684)] = 108305, - [SMALL_STATE(2685)] = 108365, - [SMALL_STATE(2686)] = 108437, - [SMALL_STATE(2687)] = 108509, - [SMALL_STATE(2688)] = 108569, - [SMALL_STATE(2689)] = 108627, + [SMALL_STATE(2682)] = 108199, + [SMALL_STATE(2683)] = 108271, + [SMALL_STATE(2684)] = 108329, + [SMALL_STATE(2685)] = 108387, + [SMALL_STATE(2686)] = 108459, + [SMALL_STATE(2687)] = 108507, + [SMALL_STATE(2688)] = 108555, + [SMALL_STATE(2689)] = 108615, [SMALL_STATE(2690)] = 108671, - [SMALL_STATE(2691)] = 108734, - [SMALL_STATE(2692)] = 108787, - [SMALL_STATE(2693)] = 108840, - [SMALL_STATE(2694)] = 108893, - [SMALL_STATE(2695)] = 108946, - [SMALL_STATE(2696)] = 108999, - [SMALL_STATE(2697)] = 109052, - [SMALL_STATE(2698)] = 109105, - [SMALL_STATE(2699)] = 109168, - [SMALL_STATE(2700)] = 109221, - [SMALL_STATE(2701)] = 109274, - [SMALL_STATE(2702)] = 109327, - [SMALL_STATE(2703)] = 109380, - [SMALL_STATE(2704)] = 109433, - [SMALL_STATE(2705)] = 109486, - [SMALL_STATE(2706)] = 109539, - [SMALL_STATE(2707)] = 109592, - [SMALL_STATE(2708)] = 109645, - [SMALL_STATE(2709)] = 109698, - [SMALL_STATE(2710)] = 109751, - [SMALL_STATE(2711)] = 109804, - [SMALL_STATE(2712)] = 109857, - [SMALL_STATE(2713)] = 109910, - [SMALL_STATE(2714)] = 109963, - [SMALL_STATE(2715)] = 110016, - [SMALL_STATE(2716)] = 110069, - [SMALL_STATE(2717)] = 110122, + [SMALL_STATE(2691)] = 108724, + [SMALL_STATE(2692)] = 108777, + [SMALL_STATE(2693)] = 108830, + [SMALL_STATE(2694)] = 108883, + [SMALL_STATE(2695)] = 108936, + [SMALL_STATE(2696)] = 108989, + [SMALL_STATE(2697)] = 109042, + [SMALL_STATE(2698)] = 109095, + [SMALL_STATE(2699)] = 109148, + [SMALL_STATE(2700)] = 109201, + [SMALL_STATE(2701)] = 109254, + [SMALL_STATE(2702)] = 109307, + [SMALL_STATE(2703)] = 109356, + [SMALL_STATE(2704)] = 109409, + [SMALL_STATE(2705)] = 109462, + [SMALL_STATE(2706)] = 109525, + [SMALL_STATE(2707)] = 109578, + [SMALL_STATE(2708)] = 109641, + [SMALL_STATE(2709)] = 109694, + [SMALL_STATE(2710)] = 109747, + [SMALL_STATE(2711)] = 109800, + [SMALL_STATE(2712)] = 109853, + [SMALL_STATE(2713)] = 109906, + [SMALL_STATE(2714)] = 109959, + [SMALL_STATE(2715)] = 110012, + [SMALL_STATE(2716)] = 110065, + [SMALL_STATE(2717)] = 110118, [SMALL_STATE(2718)] = 110171, [SMALL_STATE(2719)] = 110224, [SMALL_STATE(2720)] = 110277, - [SMALL_STATE(2721)] = 110331, - [SMALL_STATE(2722)] = 110385, - [SMALL_STATE(2723)] = 110439, - [SMALL_STATE(2724)] = 110499, - [SMALL_STATE(2725)] = 110579, - [SMALL_STATE(2726)] = 110659, - [SMALL_STATE(2727)] = 110723, - [SMALL_STATE(2728)] = 110803, - [SMALL_STATE(2729)] = 110867, - [SMALL_STATE(2730)] = 110947, - [SMALL_STATE(2731)] = 111001, - [SMALL_STATE(2732)] = 111055, - [SMALL_STATE(2733)] = 111119, - [SMALL_STATE(2734)] = 111199, - [SMALL_STATE(2735)] = 111253, - [SMALL_STATE(2736)] = 111333, - [SMALL_STATE(2737)] = 111387, - [SMALL_STATE(2738)] = 111441, - [SMALL_STATE(2739)] = 111495, - [SMALL_STATE(2740)] = 111549, - [SMALL_STATE(2741)] = 111629, + [SMALL_STATE(2721)] = 110341, + [SMALL_STATE(2722)] = 110421, + [SMALL_STATE(2723)] = 110475, + [SMALL_STATE(2724)] = 110529, + [SMALL_STATE(2725)] = 110583, + [SMALL_STATE(2726)] = 110663, + [SMALL_STATE(2727)] = 110743, + [SMALL_STATE(2728)] = 110797, + [SMALL_STATE(2729)] = 110851, + [SMALL_STATE(2730)] = 110915, + [SMALL_STATE(2731)] = 110969, + [SMALL_STATE(2732)] = 111049, + [SMALL_STATE(2733)] = 111109, + [SMALL_STATE(2734)] = 111189, + [SMALL_STATE(2735)] = 111269, + [SMALL_STATE(2736)] = 111323, + [SMALL_STATE(2737)] = 111403, + [SMALL_STATE(2738)] = 111463, + [SMALL_STATE(2739)] = 111517, + [SMALL_STATE(2740)] = 111581, + [SMALL_STATE(2741)] = 111635, [SMALL_STATE(2742)] = 111689, - [SMALL_STATE(2743)] = 111746, - [SMALL_STATE(2744)] = 111803, - [SMALL_STATE(2745)] = 111860, - [SMALL_STATE(2746)] = 111913, - [SMALL_STATE(2747)] = 111970, - [SMALL_STATE(2748)] = 112011, - [SMALL_STATE(2749)] = 112068, - [SMALL_STATE(2750)] = 112109, - [SMALL_STATE(2751)] = 112166, - [SMALL_STATE(2752)] = 112207, - [SMALL_STATE(2753)] = 112248, - [SMALL_STATE(2754)] = 112289, - [SMALL_STATE(2755)] = 112346, - [SMALL_STATE(2756)] = 112403, - [SMALL_STATE(2757)] = 112460, - [SMALL_STATE(2758)] = 112517, - [SMALL_STATE(2759)] = 112570, - [SMALL_STATE(2760)] = 112613, - [SMALL_STATE(2761)] = 112670, - [SMALL_STATE(2762)] = 112721, + [SMALL_STATE(2743)] = 111742, + [SMALL_STATE(2744)] = 111783, + [SMALL_STATE(2745)] = 111840, + [SMALL_STATE(2746)] = 111897, + [SMALL_STATE(2747)] = 111940, + [SMALL_STATE(2748)] = 111997, + [SMALL_STATE(2749)] = 112054, + [SMALL_STATE(2750)] = 112111, + [SMALL_STATE(2751)] = 112164, + [SMALL_STATE(2752)] = 112221, + [SMALL_STATE(2753)] = 112278, + [SMALL_STATE(2754)] = 112335, + [SMALL_STATE(2755)] = 112392, + [SMALL_STATE(2756)] = 112449, + [SMALL_STATE(2757)] = 112490, + [SMALL_STATE(2758)] = 112541, + [SMALL_STATE(2759)] = 112598, + [SMALL_STATE(2760)] = 112639, + [SMALL_STATE(2761)] = 112680, + [SMALL_STATE(2762)] = 112737, [SMALL_STATE(2763)] = 112778, [SMALL_STATE(2764)] = 112835, [SMALL_STATE(2765)] = 112892, [SMALL_STATE(2766)] = 112949, [SMALL_STATE(2767)] = 113006, [SMALL_STATE(2768)] = 113054, - [SMALL_STATE(2769)] = 113102, - [SMALL_STATE(2770)] = 113150, - [SMALL_STATE(2771)] = 113198, - [SMALL_STATE(2772)] = 113246, - [SMALL_STATE(2773)] = 113294, - [SMALL_STATE(2774)] = 113342, - [SMALL_STATE(2775)] = 113390, - [SMALL_STATE(2776)] = 113438, - [SMALL_STATE(2777)] = 113486, - [SMALL_STATE(2778)] = 113534, - [SMALL_STATE(2779)] = 113582, - [SMALL_STATE(2780)] = 113630, - [SMALL_STATE(2781)] = 113678, - [SMALL_STATE(2782)] = 113728, - [SMALL_STATE(2783)] = 113778, - [SMALL_STATE(2784)] = 113826, - [SMALL_STATE(2785)] = 113874, - [SMALL_STATE(2786)] = 113922, - [SMALL_STATE(2787)] = 113970, - [SMALL_STATE(2788)] = 114018, - [SMALL_STATE(2789)] = 114068, - [SMALL_STATE(2790)] = 114116, - [SMALL_STATE(2791)] = 114164, + [SMALL_STATE(2769)] = 113104, + [SMALL_STATE(2770)] = 113152, + [SMALL_STATE(2771)] = 113200, + [SMALL_STATE(2772)] = 113248, + [SMALL_STATE(2773)] = 113296, + [SMALL_STATE(2774)] = 113346, + [SMALL_STATE(2775)] = 113394, + [SMALL_STATE(2776)] = 113442, + [SMALL_STATE(2777)] = 113490, + [SMALL_STATE(2778)] = 113538, + [SMALL_STATE(2779)] = 113586, + [SMALL_STATE(2780)] = 113636, + [SMALL_STATE(2781)] = 113684, + [SMALL_STATE(2782)] = 113732, + [SMALL_STATE(2783)] = 113780, + [SMALL_STATE(2784)] = 113828, + [SMALL_STATE(2785)] = 113876, + [SMALL_STATE(2786)] = 113926, + [SMALL_STATE(2787)] = 113974, + [SMALL_STATE(2788)] = 114022, + [SMALL_STATE(2789)] = 114070, + [SMALL_STATE(2790)] = 114118, + [SMALL_STATE(2791)] = 114166, [SMALL_STATE(2792)] = 114214, [SMALL_STATE(2793)] = 114262, [SMALL_STATE(2794)] = 114312, - [SMALL_STATE(2795)] = 114360, - [SMALL_STATE(2796)] = 114410, - [SMALL_STATE(2797)] = 114458, - [SMALL_STATE(2798)] = 114506, + [SMALL_STATE(2795)] = 114362, + [SMALL_STATE(2796)] = 114412, + [SMALL_STATE(2797)] = 114460, + [SMALL_STATE(2798)] = 114508, [SMALL_STATE(2799)] = 114556, - [SMALL_STATE(2800)] = 114606, - [SMALL_STATE(2801)] = 114656, - [SMALL_STATE(2802)] = 114704, - [SMALL_STATE(2803)] = 114752, - [SMALL_STATE(2804)] = 114800, + [SMALL_STATE(2800)] = 114604, + [SMALL_STATE(2801)] = 114652, + [SMALL_STATE(2802)] = 114700, + [SMALL_STATE(2803)] = 114750, + [SMALL_STATE(2804)] = 114798, [SMALL_STATE(2805)] = 114848, - [SMALL_STATE(2806)] = 114898, - [SMALL_STATE(2807)] = 114946, - [SMALL_STATE(2808)] = 114994, - [SMALL_STATE(2809)] = 115042, + [SMALL_STATE(2806)] = 114896, + [SMALL_STATE(2807)] = 114944, + [SMALL_STATE(2808)] = 114992, + [SMALL_STATE(2809)] = 115040, [SMALL_STATE(2810)] = 115090, [SMALL_STATE(2811)] = 115138, [SMALL_STATE(2812)] = 115186, [SMALL_STATE(2813)] = 115234, - [SMALL_STATE(2814)] = 115282, + [SMALL_STATE(2814)] = 115284, [SMALL_STATE(2815)] = 115332, - [SMALL_STATE(2816)] = 115380, - [SMALL_STATE(2817)] = 115428, - [SMALL_STATE(2818)] = 115478, - [SMALL_STATE(2819)] = 115526, + [SMALL_STATE(2816)] = 115382, + [SMALL_STATE(2817)] = 115430, + [SMALL_STATE(2818)] = 115480, + [SMALL_STATE(2819)] = 115528, [SMALL_STATE(2820)] = 115576, [SMALL_STATE(2821)] = 115624, [SMALL_STATE(2822)] = 115672, [SMALL_STATE(2823)] = 115720, - [SMALL_STATE(2824)] = 115770, + [SMALL_STATE(2824)] = 115768, [SMALL_STATE(2825)] = 115818, [SMALL_STATE(2826)] = 115866, [SMALL_STATE(2827)] = 115914, @@ -274872,3124 +275185,3127 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2865)] = 117044, [SMALL_STATE(2866)] = 117072, [SMALL_STATE(2867)] = 117099, - [SMALL_STATE(2868)] = 117156, - [SMALL_STATE(2869)] = 117213, - [SMALL_STATE(2870)] = 117246, + [SMALL_STATE(2868)] = 117126, + [SMALL_STATE(2869)] = 117183, + [SMALL_STATE(2870)] = 117216, [SMALL_STATE(2871)] = 117273, [SMALL_STATE(2872)] = 117299, - [SMALL_STATE(2873)] = 117325, - [SMALL_STATE(2874)] = 117375, - [SMALL_STATE(2875)] = 117401, - [SMALL_STATE(2876)] = 117427, - [SMALL_STATE(2877)] = 117453, - [SMALL_STATE(2878)] = 117487, - [SMALL_STATE(2879)] = 117513, - [SMALL_STATE(2880)] = 117543, - [SMALL_STATE(2881)] = 117569, - [SMALL_STATE(2882)] = 117597, - [SMALL_STATE(2883)] = 117623, - [SMALL_STATE(2884)] = 117661, - [SMALL_STATE(2885)] = 117699, - [SMALL_STATE(2886)] = 117729, - [SMALL_STATE(2887)] = 117755, - [SMALL_STATE(2888)] = 117793, - [SMALL_STATE(2889)] = 117821, + [SMALL_STATE(2873)] = 117329, + [SMALL_STATE(2874)] = 117355, + [SMALL_STATE(2875)] = 117381, + [SMALL_STATE(2876)] = 117407, + [SMALL_STATE(2877)] = 117433, + [SMALL_STATE(2878)] = 117459, + [SMALL_STATE(2879)] = 117493, + [SMALL_STATE(2880)] = 117519, + [SMALL_STATE(2881)] = 117547, + [SMALL_STATE(2882)] = 117585, + [SMALL_STATE(2883)] = 117615, + [SMALL_STATE(2884)] = 117643, + [SMALL_STATE(2885)] = 117669, + [SMALL_STATE(2886)] = 117719, + [SMALL_STATE(2887)] = 117749, + [SMALL_STATE(2888)] = 117787, + [SMALL_STATE(2889)] = 117825, [SMALL_STATE(2890)] = 117851, - [SMALL_STATE(2891)] = 117876, - [SMALL_STATE(2892)] = 117901, - [SMALL_STATE(2893)] = 117926, - [SMALL_STATE(2894)] = 117951, - [SMALL_STATE(2895)] = 117976, - [SMALL_STATE(2896)] = 118003, + [SMALL_STATE(2891)] = 117882, + [SMALL_STATE(2892)] = 117909, + [SMALL_STATE(2893)] = 117934, + [SMALL_STATE(2894)] = 117959, + [SMALL_STATE(2895)] = 117984, + [SMALL_STATE(2896)] = 118009, [SMALL_STATE(2897)] = 118034, [SMALL_STATE(2898)] = 118059, [SMALL_STATE(2899)] = 118084, [SMALL_STATE(2900)] = 118108, [SMALL_STATE(2901)] = 118132, [SMALL_STATE(2902)] = 118156, - [SMALL_STATE(2903)] = 118178, - [SMALL_STATE(2904)] = 118202, - [SMALL_STATE(2905)] = 118226, - [SMALL_STATE(2906)] = 118250, - [SMALL_STATE(2907)] = 118274, - [SMALL_STATE(2908)] = 118298, - [SMALL_STATE(2909)] = 118322, - [SMALL_STATE(2910)] = 118346, - [SMALL_STATE(2911)] = 118368, - [SMALL_STATE(2912)] = 118400, - [SMALL_STATE(2913)] = 118434, - [SMALL_STATE(2914)] = 118468, - [SMALL_STATE(2915)] = 118502, - [SMALL_STATE(2916)] = 118526, - [SMALL_STATE(2917)] = 118550, - [SMALL_STATE(2918)] = 118578, - [SMALL_STATE(2919)] = 118602, - [SMALL_STATE(2920)] = 118628, - [SMALL_STATE(2921)] = 118652, - [SMALL_STATE(2922)] = 118676, - [SMALL_STATE(2923)] = 118700, - [SMALL_STATE(2924)] = 118722, - [SMALL_STATE(2925)] = 118746, - [SMALL_STATE(2926)] = 118770, - [SMALL_STATE(2927)] = 118794, - [SMALL_STATE(2928)] = 118818, - [SMALL_STATE(2929)] = 118842, - [SMALL_STATE(2930)] = 118866, - [SMALL_STATE(2931)] = 118890, - [SMALL_STATE(2932)] = 118914, - [SMALL_STATE(2933)] = 118940, - [SMALL_STATE(2934)] = 118964, - [SMALL_STATE(2935)] = 118988, - [SMALL_STATE(2936)] = 119012, - [SMALL_STATE(2937)] = 119036, - [SMALL_STATE(2938)] = 119068, - [SMALL_STATE(2939)] = 119102, - [SMALL_STATE(2940)] = 119136, - [SMALL_STATE(2941)] = 119170, - [SMALL_STATE(2942)] = 119194, - [SMALL_STATE(2943)] = 119218, - [SMALL_STATE(2944)] = 119240, - [SMALL_STATE(2945)] = 119264, - [SMALL_STATE(2946)] = 119288, - [SMALL_STATE(2947)] = 119322, - [SMALL_STATE(2948)] = 119356, - [SMALL_STATE(2949)] = 119390, - [SMALL_STATE(2950)] = 119422, - [SMALL_STATE(2951)] = 119456, - [SMALL_STATE(2952)] = 119480, - [SMALL_STATE(2953)] = 119514, - [SMALL_STATE(2954)] = 119538, - [SMALL_STATE(2955)] = 119560, - [SMALL_STATE(2956)] = 119584, + [SMALL_STATE(2903)] = 118180, + [SMALL_STATE(2904)] = 118204, + [SMALL_STATE(2905)] = 118228, + [SMALL_STATE(2906)] = 118262, + [SMALL_STATE(2907)] = 118296, + [SMALL_STATE(2908)] = 118330, + [SMALL_STATE(2909)] = 118354, + [SMALL_STATE(2910)] = 118378, + [SMALL_STATE(2911)] = 118402, + [SMALL_STATE(2912)] = 118426, + [SMALL_STATE(2913)] = 118452, + [SMALL_STATE(2914)] = 118476, + [SMALL_STATE(2915)] = 118498, + [SMALL_STATE(2916)] = 118522, + [SMALL_STATE(2917)] = 118554, + [SMALL_STATE(2918)] = 118588, + [SMALL_STATE(2919)] = 118622, + [SMALL_STATE(2920)] = 118656, + [SMALL_STATE(2921)] = 118680, + [SMALL_STATE(2922)] = 118704, + [SMALL_STATE(2923)] = 118728, + [SMALL_STATE(2924)] = 118752, + [SMALL_STATE(2925)] = 118776, + [SMALL_STATE(2926)] = 118808, + [SMALL_STATE(2927)] = 118842, + [SMALL_STATE(2928)] = 118876, + [SMALL_STATE(2929)] = 118910, + [SMALL_STATE(2930)] = 118934, + [SMALL_STATE(2931)] = 118958, + [SMALL_STATE(2932)] = 118982, + [SMALL_STATE(2933)] = 119006, + [SMALL_STATE(2934)] = 119030, + [SMALL_STATE(2935)] = 119054, + [SMALL_STATE(2936)] = 119078, + [SMALL_STATE(2937)] = 119100, + [SMALL_STATE(2938)] = 119124, + [SMALL_STATE(2939)] = 119148, + [SMALL_STATE(2940)] = 119172, + [SMALL_STATE(2941)] = 119196, + [SMALL_STATE(2942)] = 119220, + [SMALL_STATE(2943)] = 119244, + [SMALL_STATE(2944)] = 119268, + [SMALL_STATE(2945)] = 119300, + [SMALL_STATE(2946)] = 119334, + [SMALL_STATE(2947)] = 119368, + [SMALL_STATE(2948)] = 119402, + [SMALL_STATE(2949)] = 119424, + [SMALL_STATE(2950)] = 119448, + [SMALL_STATE(2951)] = 119472, + [SMALL_STATE(2952)] = 119496, + [SMALL_STATE(2953)] = 119520, + [SMALL_STATE(2954)] = 119544, + [SMALL_STATE(2955)] = 119568, + [SMALL_STATE(2956)] = 119592, [SMALL_STATE(2957)] = 119616, - [SMALL_STATE(2958)] = 119650, - [SMALL_STATE(2959)] = 119684, - [SMALL_STATE(2960)] = 119718, - [SMALL_STATE(2961)] = 119742, - [SMALL_STATE(2962)] = 119766, - [SMALL_STATE(2963)] = 119790, - [SMALL_STATE(2964)] = 119814, - [SMALL_STATE(2965)] = 119836, - [SMALL_STATE(2966)] = 119860, - [SMALL_STATE(2967)] = 119884, - [SMALL_STATE(2968)] = 119908, - [SMALL_STATE(2969)] = 119932, - [SMALL_STATE(2970)] = 119954, - [SMALL_STATE(2971)] = 119978, - [SMALL_STATE(2972)] = 120002, - [SMALL_STATE(2973)] = 120026, - [SMALL_STATE(2974)] = 120058, - [SMALL_STATE(2975)] = 120082, - [SMALL_STATE(2976)] = 120106, - [SMALL_STATE(2977)] = 120140, - [SMALL_STATE(2978)] = 120164, - [SMALL_STATE(2979)] = 120196, + [SMALL_STATE(2958)] = 119640, + [SMALL_STATE(2959)] = 119664, + [SMALL_STATE(2960)] = 119688, + [SMALL_STATE(2961)] = 119712, + [SMALL_STATE(2962)] = 119736, + [SMALL_STATE(2963)] = 119760, + [SMALL_STATE(2964)] = 119784, + [SMALL_STATE(2965)] = 119808, + [SMALL_STATE(2966)] = 119832, + [SMALL_STATE(2967)] = 119856, + [SMALL_STATE(2968)] = 119880, + [SMALL_STATE(2969)] = 119904, + [SMALL_STATE(2970)] = 119936, + [SMALL_STATE(2971)] = 119970, + [SMALL_STATE(2972)] = 120004, + [SMALL_STATE(2973)] = 120038, + [SMALL_STATE(2974)] = 120060, + [SMALL_STATE(2975)] = 120084, + [SMALL_STATE(2976)] = 120108, + [SMALL_STATE(2977)] = 120132, + [SMALL_STATE(2978)] = 120154, + [SMALL_STATE(2979)] = 120186, [SMALL_STATE(2980)] = 120220, [SMALL_STATE(2981)] = 120254, - [SMALL_STATE(2982)] = 120278, - [SMALL_STATE(2983)] = 120302, - [SMALL_STATE(2984)] = 120336, - [SMALL_STATE(2985)] = 120360, - [SMALL_STATE(2986)] = 120384, - [SMALL_STATE(2987)] = 120408, - [SMALL_STATE(2988)] = 120432, - [SMALL_STATE(2989)] = 120456, - [SMALL_STATE(2990)] = 120480, - [SMALL_STATE(2991)] = 120502, - [SMALL_STATE(2992)] = 120526, - [SMALL_STATE(2993)] = 120550, - [SMALL_STATE(2994)] = 120574, - [SMALL_STATE(2995)] = 120598, - [SMALL_STATE(2996)] = 120622, - [SMALL_STATE(2997)] = 120644, - [SMALL_STATE(2998)] = 120668, - [SMALL_STATE(2999)] = 120692, + [SMALL_STATE(2982)] = 120288, + [SMALL_STATE(2983)] = 120310, + [SMALL_STATE(2984)] = 120342, + [SMALL_STATE(2985)] = 120364, + [SMALL_STATE(2986)] = 120388, + [SMALL_STATE(2987)] = 120410, + [SMALL_STATE(2988)] = 120434, + [SMALL_STATE(2989)] = 120458, + [SMALL_STATE(2990)] = 120482, + [SMALL_STATE(2991)] = 120506, + [SMALL_STATE(2992)] = 120528, + [SMALL_STATE(2993)] = 120552, + [SMALL_STATE(2994)] = 120576, + [SMALL_STATE(2995)] = 120600, + [SMALL_STATE(2996)] = 120628, + [SMALL_STATE(2997)] = 120652, + [SMALL_STATE(2998)] = 120678, + [SMALL_STATE(2999)] = 120702, [SMALL_STATE(3000)] = 120726, - [SMALL_STATE(3001)] = 120769, - [SMALL_STATE(3002)] = 120798, - [SMALL_STATE(3003)] = 120823, - [SMALL_STATE(3004)] = 120866, - [SMALL_STATE(3005)] = 120909, - [SMALL_STATE(3006)] = 120952, - [SMALL_STATE(3007)] = 120995, - [SMALL_STATE(3008)] = 121034, - [SMALL_STATE(3009)] = 121077, - [SMALL_STATE(3010)] = 121120, - [SMALL_STATE(3011)] = 121163, - [SMALL_STATE(3012)] = 121206, - [SMALL_STATE(3013)] = 121249, - [SMALL_STATE(3014)] = 121294, - [SMALL_STATE(3015)] = 121337, - [SMALL_STATE(3016)] = 121380, - [SMALL_STATE(3017)] = 121419, - [SMALL_STATE(3018)] = 121462, - [SMALL_STATE(3019)] = 121487, - [SMALL_STATE(3020)] = 121516, - [SMALL_STATE(3021)] = 121559, - [SMALL_STATE(3022)] = 121602, - [SMALL_STATE(3023)] = 121645, - [SMALL_STATE(3024)] = 121688, - [SMALL_STATE(3025)] = 121727, - [SMALL_STATE(3026)] = 121762, - [SMALL_STATE(3027)] = 121805, - [SMALL_STATE(3028)] = 121848, - [SMALL_STATE(3029)] = 121877, - [SMALL_STATE(3030)] = 121906, - [SMALL_STATE(3031)] = 121935, - [SMALL_STATE(3032)] = 121978, - [SMALL_STATE(3033)] = 122021, - [SMALL_STATE(3034)] = 122060, - [SMALL_STATE(3035)] = 122103, - [SMALL_STATE(3036)] = 122132, - [SMALL_STATE(3037)] = 122157, - [SMALL_STATE(3038)] = 122186, - [SMALL_STATE(3039)] = 122215, - [SMALL_STATE(3040)] = 122254, - [SMALL_STATE(3041)] = 122297, + [SMALL_STATE(3001)] = 120755, + [SMALL_STATE(3002)] = 120780, + [SMALL_STATE(3003)] = 120809, + [SMALL_STATE(3004)] = 120838, + [SMALL_STATE(3005)] = 120881, + [SMALL_STATE(3006)] = 120920, + [SMALL_STATE(3007)] = 120963, + [SMALL_STATE(3008)] = 121006, + [SMALL_STATE(3009)] = 121031, + [SMALL_STATE(3010)] = 121074, + [SMALL_STATE(3011)] = 121103, + [SMALL_STATE(3012)] = 121146, + [SMALL_STATE(3013)] = 121185, + [SMALL_STATE(3014)] = 121228, + [SMALL_STATE(3015)] = 121271, + [SMALL_STATE(3016)] = 121314, + [SMALL_STATE(3017)] = 121343, + [SMALL_STATE(3018)] = 121386, + [SMALL_STATE(3019)] = 121429, + [SMALL_STATE(3020)] = 121458, + [SMALL_STATE(3021)] = 121487, + [SMALL_STATE(3022)] = 121530, + [SMALL_STATE(3023)] = 121573, + [SMALL_STATE(3024)] = 121616, + [SMALL_STATE(3025)] = 121659, + [SMALL_STATE(3026)] = 121702, + [SMALL_STATE(3027)] = 121745, + [SMALL_STATE(3028)] = 121774, + [SMALL_STATE(3029)] = 121813, + [SMALL_STATE(3030)] = 121858, + [SMALL_STATE(3031)] = 121893, + [SMALL_STATE(3032)] = 121932, + [SMALL_STATE(3033)] = 121961, + [SMALL_STATE(3034)] = 122004, + [SMALL_STATE(3035)] = 122029, + [SMALL_STATE(3036)] = 122072, + [SMALL_STATE(3037)] = 122115, + [SMALL_STATE(3038)] = 122154, + [SMALL_STATE(3039)] = 122197, + [SMALL_STATE(3040)] = 122240, + [SMALL_STATE(3041)] = 122283, [SMALL_STATE(3042)] = 122326, - [SMALL_STATE(3043)] = 122346, - [SMALL_STATE(3044)] = 122368, - [SMALL_STATE(3045)] = 122404, - [SMALL_STATE(3046)] = 122424, - [SMALL_STATE(3047)] = 122446, - [SMALL_STATE(3048)] = 122468, - [SMALL_STATE(3049)] = 122504, - [SMALL_STATE(3050)] = 122524, - [SMALL_STATE(3051)] = 122544, - [SMALL_STATE(3052)] = 122564, - [SMALL_STATE(3053)] = 122606, - [SMALL_STATE(3054)] = 122628, - [SMALL_STATE(3055)] = 122664, - [SMALL_STATE(3056)] = 122700, - [SMALL_STATE(3057)] = 122720, - [SMALL_STATE(3058)] = 122740, - [SMALL_STATE(3059)] = 122768, - [SMALL_STATE(3060)] = 122788, - [SMALL_STATE(3061)] = 122812, - [SMALL_STATE(3062)] = 122836, - [SMALL_STATE(3063)] = 122858, - [SMALL_STATE(3064)] = 122886, - [SMALL_STATE(3065)] = 122910, - [SMALL_STATE(3066)] = 122932, - [SMALL_STATE(3067)] = 122960, - [SMALL_STATE(3068)] = 122988, - [SMALL_STATE(3069)] = 123016, - [SMALL_STATE(3070)] = 123052, - [SMALL_STATE(3071)] = 123078, - [SMALL_STATE(3072)] = 123100, - [SMALL_STATE(3073)] = 123120, - [SMALL_STATE(3074)] = 123144, - [SMALL_STATE(3075)] = 123186, - [SMALL_STATE(3076)] = 123222, - [SMALL_STATE(3077)] = 123242, - [SMALL_STATE(3078)] = 123262, - [SMALL_STATE(3079)] = 123288, - [SMALL_STATE(3080)] = 123310, - [SMALL_STATE(3081)] = 123346, - [SMALL_STATE(3082)] = 123382, - [SMALL_STATE(3083)] = 123410, - [SMALL_STATE(3084)] = 123432, - [SMALL_STATE(3085)] = 123460, - [SMALL_STATE(3086)] = 123480, - [SMALL_STATE(3087)] = 123500, - [SMALL_STATE(3088)] = 123520, - [SMALL_STATE(3089)] = 123540, - [SMALL_STATE(3090)] = 123560, - [SMALL_STATE(3091)] = 123580, - [SMALL_STATE(3092)] = 123600, - [SMALL_STATE(3093)] = 123620, - [SMALL_STATE(3094)] = 123640, - [SMALL_STATE(3095)] = 123660, - [SMALL_STATE(3096)] = 123680, - [SMALL_STATE(3097)] = 123700, - [SMALL_STATE(3098)] = 123720, - [SMALL_STATE(3099)] = 123740, - [SMALL_STATE(3100)] = 123766, - [SMALL_STATE(3101)] = 123788, - [SMALL_STATE(3102)] = 123808, - [SMALL_STATE(3103)] = 123830, - [SMALL_STATE(3104)] = 123850, - [SMALL_STATE(3105)] = 123870, - [SMALL_STATE(3106)] = 123890, - [SMALL_STATE(3107)] = 123910, - [SMALL_STATE(3108)] = 123930, - [SMALL_STATE(3109)] = 123950, - [SMALL_STATE(3110)] = 123970, - [SMALL_STATE(3111)] = 124006, - [SMALL_STATE(3112)] = 124042, - [SMALL_STATE(3113)] = 124070, - [SMALL_STATE(3114)] = 124090, - [SMALL_STATE(3115)] = 124112, - [SMALL_STATE(3116)] = 124136, - [SMALL_STATE(3117)] = 124157, - [SMALL_STATE(3118)] = 124196, - [SMALL_STATE(3119)] = 124229, - [SMALL_STATE(3120)] = 124250, - [SMALL_STATE(3121)] = 124281, - [SMALL_STATE(3122)] = 124314, - [SMALL_STATE(3123)] = 124337, - [SMALL_STATE(3124)] = 124370, - [SMALL_STATE(3125)] = 124403, - [SMALL_STATE(3126)] = 124442, - [SMALL_STATE(3127)] = 124479, - [SMALL_STATE(3128)] = 124504, - [SMALL_STATE(3129)] = 124529, - [SMALL_STATE(3130)] = 124558, - [SMALL_STATE(3131)] = 124595, - [SMALL_STATE(3132)] = 124632, - [SMALL_STATE(3133)] = 124669, - [SMALL_STATE(3134)] = 124706, - [SMALL_STATE(3135)] = 124743, - [SMALL_STATE(3136)] = 124780, - [SMALL_STATE(3137)] = 124817, - [SMALL_STATE(3138)] = 124854, - [SMALL_STATE(3139)] = 124891, - [SMALL_STATE(3140)] = 124930, - [SMALL_STATE(3141)] = 124967, - [SMALL_STATE(3142)] = 124996, - [SMALL_STATE(3143)] = 125033, - [SMALL_STATE(3144)] = 125070, - [SMALL_STATE(3145)] = 125103, - [SMALL_STATE(3146)] = 125140, - [SMALL_STATE(3147)] = 125169, - [SMALL_STATE(3148)] = 125206, - [SMALL_STATE(3149)] = 125239, - [SMALL_STATE(3150)] = 125260, - [SMALL_STATE(3151)] = 125297, - [SMALL_STATE(3152)] = 125334, - [SMALL_STATE(3153)] = 125367, - [SMALL_STATE(3154)] = 125390, - [SMALL_STATE(3155)] = 125423, - [SMALL_STATE(3156)] = 125454, - [SMALL_STATE(3157)] = 125487, - [SMALL_STATE(3158)] = 125526, - [SMALL_STATE(3159)] = 125547, - [SMALL_STATE(3160)] = 125570, - [SMALL_STATE(3161)] = 125607, - [SMALL_STATE(3162)] = 125630, - [SMALL_STATE(3163)] = 125663, - [SMALL_STATE(3164)] = 125686, - [SMALL_STATE(3165)] = 125717, - [SMALL_STATE(3166)] = 125748, - [SMALL_STATE(3167)] = 125779, - [SMALL_STATE(3168)] = 125816, - [SMALL_STATE(3169)] = 125853, - [SMALL_STATE(3170)] = 125882, - [SMALL_STATE(3171)] = 125921, - [SMALL_STATE(3172)] = 125958, - [SMALL_STATE(3173)] = 125979, - [SMALL_STATE(3174)] = 126008, - [SMALL_STATE(3175)] = 126029, - [SMALL_STATE(3176)] = 126066, - [SMALL_STATE(3177)] = 126087, - [SMALL_STATE(3178)] = 126124, - [SMALL_STATE(3179)] = 126148, - [SMALL_STATE(3180)] = 126172, - [SMALL_STATE(3181)] = 126192, - [SMALL_STATE(3182)] = 126212, - [SMALL_STATE(3183)] = 126242, - [SMALL_STATE(3184)] = 126262, - [SMALL_STATE(3185)] = 126282, - [SMALL_STATE(3186)] = 126312, - [SMALL_STATE(3187)] = 126330, - [SMALL_STATE(3188)] = 126348, - [SMALL_STATE(3189)] = 126368, - [SMALL_STATE(3190)] = 126388, - [SMALL_STATE(3191)] = 126406, - [SMALL_STATE(3192)] = 126428, - [SMALL_STATE(3193)] = 126450, - [SMALL_STATE(3194)] = 126474, - [SMALL_STATE(3195)] = 126498, - [SMALL_STATE(3196)] = 126518, - [SMALL_STATE(3197)] = 126544, - [SMALL_STATE(3198)] = 126564, - [SMALL_STATE(3199)] = 126584, - [SMALL_STATE(3200)] = 126614, - [SMALL_STATE(3201)] = 126634, - [SMALL_STATE(3202)] = 126654, - [SMALL_STATE(3203)] = 126674, - [SMALL_STATE(3204)] = 126694, - [SMALL_STATE(3205)] = 126718, - [SMALL_STATE(3206)] = 126736, - [SMALL_STATE(3207)] = 126756, - [SMALL_STATE(3208)] = 126776, - [SMALL_STATE(3209)] = 126798, - [SMALL_STATE(3210)] = 126818, - [SMALL_STATE(3211)] = 126838, - [SMALL_STATE(3212)] = 126858, - [SMALL_STATE(3213)] = 126880, - [SMALL_STATE(3214)] = 126900, - [SMALL_STATE(3215)] = 126920, - [SMALL_STATE(3216)] = 126940, - [SMALL_STATE(3217)] = 126970, - [SMALL_STATE(3218)] = 126996, - [SMALL_STATE(3219)] = 127016, - [SMALL_STATE(3220)] = 127036, - [SMALL_STATE(3221)] = 127054, - [SMALL_STATE(3222)] = 127072, - [SMALL_STATE(3223)] = 127090, - [SMALL_STATE(3224)] = 127108, - [SMALL_STATE(3225)] = 127126, - [SMALL_STATE(3226)] = 127144, - [SMALL_STATE(3227)] = 127164, - [SMALL_STATE(3228)] = 127184, - [SMALL_STATE(3229)] = 127208, - [SMALL_STATE(3230)] = 127226, - [SMALL_STATE(3231)] = 127244, - [SMALL_STATE(3232)] = 127264, - [SMALL_STATE(3233)] = 127284, - [SMALL_STATE(3234)] = 127304, - [SMALL_STATE(3235)] = 127322, - [SMALL_STATE(3236)] = 127342, - [SMALL_STATE(3237)] = 127366, - [SMALL_STATE(3238)] = 127384, - [SMALL_STATE(3239)] = 127414, - [SMALL_STATE(3240)] = 127434, - [SMALL_STATE(3241)] = 127454, - [SMALL_STATE(3242)] = 127474, - [SMALL_STATE(3243)] = 127496, - [SMALL_STATE(3244)] = 127516, - [SMALL_STATE(3245)] = 127536, - [SMALL_STATE(3246)] = 127556, - [SMALL_STATE(3247)] = 127580, - [SMALL_STATE(3248)] = 127610, - [SMALL_STATE(3249)] = 127634, - [SMALL_STATE(3250)] = 127656, - [SMALL_STATE(3251)] = 127676, - [SMALL_STATE(3252)] = 127706, - [SMALL_STATE(3253)] = 127736, - [SMALL_STATE(3254)] = 127756, - [SMALL_STATE(3255)] = 127792, - [SMALL_STATE(3256)] = 127814, - [SMALL_STATE(3257)] = 127834, - [SMALL_STATE(3258)] = 127856, - [SMALL_STATE(3259)] = 127891, - [SMALL_STATE(3260)] = 127926, - [SMALL_STATE(3261)] = 127957, - [SMALL_STATE(3262)] = 127974, - [SMALL_STATE(3263)] = 128009, - [SMALL_STATE(3264)] = 128032, - [SMALL_STATE(3265)] = 128065, - [SMALL_STATE(3266)] = 128098, - [SMALL_STATE(3267)] = 128119, - [SMALL_STATE(3268)] = 128140, - [SMALL_STATE(3269)] = 128169, - [SMALL_STATE(3270)] = 128202, - [SMALL_STATE(3271)] = 128237, - [SMALL_STATE(3272)] = 128258, + [SMALL_STATE(3043)] = 122350, + [SMALL_STATE(3044)] = 122372, + [SMALL_STATE(3045)] = 122394, + [SMALL_STATE(3046)] = 122436, + [SMALL_STATE(3047)] = 122458, + [SMALL_STATE(3048)] = 122480, + [SMALL_STATE(3049)] = 122500, + [SMALL_STATE(3050)] = 122520, + [SMALL_STATE(3051)] = 122540, + [SMALL_STATE(3052)] = 122560, + [SMALL_STATE(3053)] = 122580, + [SMALL_STATE(3054)] = 122604, + [SMALL_STATE(3055)] = 122632, + [SMALL_STATE(3056)] = 122668, + [SMALL_STATE(3057)] = 122688, + [SMALL_STATE(3058)] = 122722, + [SMALL_STATE(3059)] = 122742, + [SMALL_STATE(3060)] = 122778, + [SMALL_STATE(3061)] = 122806, + [SMALL_STATE(3062)] = 122834, + [SMALL_STATE(3063)] = 122868, + [SMALL_STATE(3064)] = 122910, + [SMALL_STATE(3065)] = 122930, + [SMALL_STATE(3066)] = 122964, + [SMALL_STATE(3067)] = 122984, + [SMALL_STATE(3068)] = 123004, + [SMALL_STATE(3069)] = 123024, + [SMALL_STATE(3070)] = 123044, + [SMALL_STATE(3071)] = 123064, + [SMALL_STATE(3072)] = 123090, + [SMALL_STATE(3073)] = 123110, + [SMALL_STATE(3074)] = 123130, + [SMALL_STATE(3075)] = 123158, + [SMALL_STATE(3076)] = 123192, + [SMALL_STATE(3077)] = 123212, + [SMALL_STATE(3078)] = 123232, + [SMALL_STATE(3079)] = 123266, + [SMALL_STATE(3080)] = 123292, + [SMALL_STATE(3081)] = 123328, + [SMALL_STATE(3082)] = 123348, + [SMALL_STATE(3083)] = 123374, + [SMALL_STATE(3084)] = 123394, + [SMALL_STATE(3085)] = 123428, + [SMALL_STATE(3086)] = 123462, + [SMALL_STATE(3087)] = 123482, + [SMALL_STATE(3088)] = 123502, + [SMALL_STATE(3089)] = 123522, + [SMALL_STATE(3090)] = 123558, + [SMALL_STATE(3091)] = 123578, + [SMALL_STATE(3092)] = 123612, + [SMALL_STATE(3093)] = 123634, + [SMALL_STATE(3094)] = 123654, + [SMALL_STATE(3095)] = 123690, + [SMALL_STATE(3096)] = 123710, + [SMALL_STATE(3097)] = 123730, + [SMALL_STATE(3098)] = 123750, + [SMALL_STATE(3099)] = 123770, + [SMALL_STATE(3100)] = 123806, + [SMALL_STATE(3101)] = 123828, + [SMALL_STATE(3102)] = 123850, + [SMALL_STATE(3103)] = 123870, + [SMALL_STATE(3104)] = 123898, + [SMALL_STATE(3105)] = 123920, + [SMALL_STATE(3106)] = 123940, + [SMALL_STATE(3107)] = 123962, + [SMALL_STATE(3108)] = 123990, + [SMALL_STATE(3109)] = 124014, + [SMALL_STATE(3110)] = 124036, + [SMALL_STATE(3111)] = 124056, + [SMALL_STATE(3112)] = 124076, + [SMALL_STATE(3113)] = 124104, + [SMALL_STATE(3114)] = 124140, + [SMALL_STATE(3115)] = 124164, + [SMALL_STATE(3116)] = 124192, + [SMALL_STATE(3117)] = 124214, + [SMALL_STATE(3118)] = 124236, + [SMALL_STATE(3119)] = 124256, + [SMALL_STATE(3120)] = 124292, + [SMALL_STATE(3121)] = 124328, + [SMALL_STATE(3122)] = 124352, + [SMALL_STATE(3123)] = 124372, + [SMALL_STATE(3124)] = 124408, + [SMALL_STATE(3125)] = 124431, + [SMALL_STATE(3126)] = 124464, + [SMALL_STATE(3127)] = 124497, + [SMALL_STATE(3128)] = 124534, + [SMALL_STATE(3129)] = 124565, + [SMALL_STATE(3130)] = 124586, + [SMALL_STATE(3131)] = 124615, + [SMALL_STATE(3132)] = 124636, + [SMALL_STATE(3133)] = 124657, + [SMALL_STATE(3134)] = 124686, + [SMALL_STATE(3135)] = 124723, + [SMALL_STATE(3136)] = 124746, + [SMALL_STATE(3137)] = 124769, + [SMALL_STATE(3138)] = 124806, + [SMALL_STATE(3139)] = 124839, + [SMALL_STATE(3140)] = 124878, + [SMALL_STATE(3141)] = 124917, + [SMALL_STATE(3142)] = 124954, + [SMALL_STATE(3143)] = 124985, + [SMALL_STATE(3144)] = 125022, + [SMALL_STATE(3145)] = 125045, + [SMALL_STATE(3146)] = 125082, + [SMALL_STATE(3147)] = 125115, + [SMALL_STATE(3148)] = 125152, + [SMALL_STATE(3149)] = 125181, + [SMALL_STATE(3150)] = 125202, + [SMALL_STATE(3151)] = 125239, + [SMALL_STATE(3152)] = 125270, + [SMALL_STATE(3153)] = 125303, + [SMALL_STATE(3154)] = 125340, + [SMALL_STATE(3155)] = 125373, + [SMALL_STATE(3156)] = 125412, + [SMALL_STATE(3157)] = 125449, + [SMALL_STATE(3158)] = 125474, + [SMALL_STATE(3159)] = 125507, + [SMALL_STATE(3160)] = 125544, + [SMALL_STATE(3161)] = 125575, + [SMALL_STATE(3162)] = 125612, + [SMALL_STATE(3163)] = 125651, + [SMALL_STATE(3164)] = 125682, + [SMALL_STATE(3165)] = 125719, + [SMALL_STATE(3166)] = 125756, + [SMALL_STATE(3167)] = 125777, + [SMALL_STATE(3168)] = 125806, + [SMALL_STATE(3169)] = 125843, + [SMALL_STATE(3170)] = 125872, + [SMALL_STATE(3171)] = 125909, + [SMALL_STATE(3172)] = 125932, + [SMALL_STATE(3173)] = 125965, + [SMALL_STATE(3174)] = 125996, + [SMALL_STATE(3175)] = 126033, + [SMALL_STATE(3176)] = 126072, + [SMALL_STATE(3177)] = 126097, + [SMALL_STATE(3178)] = 126134, + [SMALL_STATE(3179)] = 126167, + [SMALL_STATE(3180)] = 126204, + [SMALL_STATE(3181)] = 126225, + [SMALL_STATE(3182)] = 126262, + [SMALL_STATE(3183)] = 126283, + [SMALL_STATE(3184)] = 126320, + [SMALL_STATE(3185)] = 126357, + [SMALL_STATE(3186)] = 126390, + [SMALL_STATE(3187)] = 126427, + [SMALL_STATE(3188)] = 126447, + [SMALL_STATE(3189)] = 126465, + [SMALL_STATE(3190)] = 126483, + [SMALL_STATE(3191)] = 126501, + [SMALL_STATE(3192)] = 126521, + [SMALL_STATE(3193)] = 126541, + [SMALL_STATE(3194)] = 126559, + [SMALL_STATE(3195)] = 126579, + [SMALL_STATE(3196)] = 126597, + [SMALL_STATE(3197)] = 126617, + [SMALL_STATE(3198)] = 126639, + [SMALL_STATE(3199)] = 126657, + [SMALL_STATE(3200)] = 126677, + [SMALL_STATE(3201)] = 126695, + [SMALL_STATE(3202)] = 126713, + [SMALL_STATE(3203)] = 126731, + [SMALL_STATE(3204)] = 126749, + [SMALL_STATE(3205)] = 126769, + [SMALL_STATE(3206)] = 126789, + [SMALL_STATE(3207)] = 126809, + [SMALL_STATE(3208)] = 126829, + [SMALL_STATE(3209)] = 126851, + [SMALL_STATE(3210)] = 126871, + [SMALL_STATE(3211)] = 126891, + [SMALL_STATE(3212)] = 126913, + [SMALL_STATE(3213)] = 126933, + [SMALL_STATE(3214)] = 126957, + [SMALL_STATE(3215)] = 126981, + [SMALL_STATE(3216)] = 127003, + [SMALL_STATE(3217)] = 127025, + [SMALL_STATE(3218)] = 127043, + [SMALL_STATE(3219)] = 127063, + [SMALL_STATE(3220)] = 127083, + [SMALL_STATE(3221)] = 127103, + [SMALL_STATE(3222)] = 127123, + [SMALL_STATE(3223)] = 127143, + [SMALL_STATE(3224)] = 127165, + [SMALL_STATE(3225)] = 127185, + [SMALL_STATE(3226)] = 127205, + [SMALL_STATE(3227)] = 127225, + [SMALL_STATE(3228)] = 127247, + [SMALL_STATE(3229)] = 127267, + [SMALL_STATE(3230)] = 127291, + [SMALL_STATE(3231)] = 127311, + [SMALL_STATE(3232)] = 127333, + [SMALL_STATE(3233)] = 127353, + [SMALL_STATE(3234)] = 127373, + [SMALL_STATE(3235)] = 127393, + [SMALL_STATE(3236)] = 127413, + [SMALL_STATE(3237)] = 127433, + [SMALL_STATE(3238)] = 127457, + [SMALL_STATE(3239)] = 127477, + [SMALL_STATE(3240)] = 127497, + [SMALL_STATE(3241)] = 127521, + [SMALL_STATE(3242)] = 127541, + [SMALL_STATE(3243)] = 127565, + [SMALL_STATE(3244)] = 127583, + [SMALL_STATE(3245)] = 127603, + [SMALL_STATE(3246)] = 127623, + [SMALL_STATE(3247)] = 127643, + [SMALL_STATE(3248)] = 127663, + [SMALL_STATE(3249)] = 127699, + [SMALL_STATE(3250)] = 127719, + [SMALL_STATE(3251)] = 127743, + [SMALL_STATE(3252)] = 127769, + [SMALL_STATE(3253)] = 127795, + [SMALL_STATE(3254)] = 127813, + [SMALL_STATE(3255)] = 127833, + [SMALL_STATE(3256)] = 127851, + [SMALL_STATE(3257)] = 127875, + [SMALL_STATE(3258)] = 127899, + [SMALL_STATE(3259)] = 127919, + [SMALL_STATE(3260)] = 127954, + [SMALL_STATE(3261)] = 127973, + [SMALL_STATE(3262)] = 127990, + [SMALL_STATE(3263)] = 128007, + [SMALL_STATE(3264)] = 128036, + [SMALL_STATE(3265)] = 128061, + [SMALL_STATE(3266)] = 128094, + [SMALL_STATE(3267)] = 128129, + [SMALL_STATE(3268)] = 128152, + [SMALL_STATE(3269)] = 128185, + [SMALL_STATE(3270)] = 128206, + [SMALL_STATE(3271)] = 128239, + [SMALL_STATE(3272)] = 128256, [SMALL_STATE(3273)] = 128291, - [SMALL_STATE(3274)] = 128318, - [SMALL_STATE(3275)] = 128353, - [SMALL_STATE(3276)] = 128372, - [SMALL_STATE(3277)] = 128397, - [SMALL_STATE(3278)] = 128432, - [SMALL_STATE(3279)] = 128463, - [SMALL_STATE(3280)] = 128486, - [SMALL_STATE(3281)] = 128505, - [SMALL_STATE(3282)] = 128540, - [SMALL_STATE(3283)] = 128573, - [SMALL_STATE(3284)] = 128608, - [SMALL_STATE(3285)] = 128625, - [SMALL_STATE(3286)] = 128642, - [SMALL_STATE(3287)] = 128659, - [SMALL_STATE(3288)] = 128678, - [SMALL_STATE(3289)] = 128713, - [SMALL_STATE(3290)] = 128748, - [SMALL_STATE(3291)] = 128779, - [SMALL_STATE(3292)] = 128814, - [SMALL_STATE(3293)] = 128833, - [SMALL_STATE(3294)] = 128866, - [SMALL_STATE(3295)] = 128882, - [SMALL_STATE(3296)] = 128910, - [SMALL_STATE(3297)] = 128926, - [SMALL_STATE(3298)] = 128954, - [SMALL_STATE(3299)] = 128982, - [SMALL_STATE(3300)] = 129012, - [SMALL_STATE(3301)] = 129038, - [SMALL_STATE(3302)] = 129066, - [SMALL_STATE(3303)] = 129094, - [SMALL_STATE(3304)] = 129122, - [SMALL_STATE(3305)] = 129152, - [SMALL_STATE(3306)] = 129180, - [SMALL_STATE(3307)] = 129196, - [SMALL_STATE(3308)] = 129226, - [SMALL_STATE(3309)] = 129256, - [SMALL_STATE(3310)] = 129286, - [SMALL_STATE(3311)] = 129316, - [SMALL_STATE(3312)] = 129346, - [SMALL_STATE(3313)] = 129374, - [SMALL_STATE(3314)] = 129404, - [SMALL_STATE(3315)] = 129434, - [SMALL_STATE(3316)] = 129460, - [SMALL_STATE(3317)] = 129490, - [SMALL_STATE(3318)] = 129522, - [SMALL_STATE(3319)] = 129552, - [SMALL_STATE(3320)] = 129580, - [SMALL_STATE(3321)] = 129608, - [SMALL_STATE(3322)] = 129624, - [SMALL_STATE(3323)] = 129656, - [SMALL_STATE(3324)] = 129672, - [SMALL_STATE(3325)] = 129704, - [SMALL_STATE(3326)] = 129722, - [SMALL_STATE(3327)] = 129738, - [SMALL_STATE(3328)] = 129768, - [SMALL_STATE(3329)] = 129800, - [SMALL_STATE(3330)] = 129816, - [SMALL_STATE(3331)] = 129832, - [SMALL_STATE(3332)] = 129862, - [SMALL_STATE(3333)] = 129894, - [SMALL_STATE(3334)] = 129922, - [SMALL_STATE(3335)] = 129942, - [SMALL_STATE(3336)] = 129970, - [SMALL_STATE(3337)] = 129998, - [SMALL_STATE(3338)] = 130028, - [SMALL_STATE(3339)] = 130044, - [SMALL_STATE(3340)] = 130074, - [SMALL_STATE(3341)] = 130104, - [SMALL_STATE(3342)] = 130134, - [SMALL_STATE(3343)] = 130162, - [SMALL_STATE(3344)] = 130178, - [SMALL_STATE(3345)] = 130210, - [SMALL_STATE(3346)] = 130240, - [SMALL_STATE(3347)] = 130256, - [SMALL_STATE(3348)] = 130272, - [SMALL_STATE(3349)] = 130302, - [SMALL_STATE(3350)] = 130332, - [SMALL_STATE(3351)] = 130362, - [SMALL_STATE(3352)] = 130378, - [SMALL_STATE(3353)] = 130394, - [SMALL_STATE(3354)] = 130410, - [SMALL_STATE(3355)] = 130426, - [SMALL_STATE(3356)] = 130444, - [SMALL_STATE(3357)] = 130460, - [SMALL_STATE(3358)] = 130476, - [SMALL_STATE(3359)] = 130492, - [SMALL_STATE(3360)] = 130514, - [SMALL_STATE(3361)] = 130534, - [SMALL_STATE(3362)] = 130560, - [SMALL_STATE(3363)] = 130578, - [SMALL_STATE(3364)] = 130608, - [SMALL_STATE(3365)] = 130638, - [SMALL_STATE(3366)] = 130668, - [SMALL_STATE(3367)] = 130696, - [SMALL_STATE(3368)] = 130724, - [SMALL_STATE(3369)] = 130750, - [SMALL_STATE(3370)] = 130780, - [SMALL_STATE(3371)] = 130810, - [SMALL_STATE(3372)] = 130828, - [SMALL_STATE(3373)] = 130856, - [SMALL_STATE(3374)] = 130886, - [SMALL_STATE(3375)] = 130912, - [SMALL_STATE(3376)] = 130940, - [SMALL_STATE(3377)] = 130962, - [SMALL_STATE(3378)] = 130988, - [SMALL_STATE(3379)] = 131016, - [SMALL_STATE(3380)] = 131044, - [SMALL_STATE(3381)] = 131070, - [SMALL_STATE(3382)] = 131086, - [SMALL_STATE(3383)] = 131108, - [SMALL_STATE(3384)] = 131136, - [SMALL_STATE(3385)] = 131166, - [SMALL_STATE(3386)] = 131192, - [SMALL_STATE(3387)] = 131220, - [SMALL_STATE(3388)] = 131246, - [SMALL_STATE(3389)] = 131272, - [SMALL_STATE(3390)] = 131294, - [SMALL_STATE(3391)] = 131326, - [SMALL_STATE(3392)] = 131358, - [SMALL_STATE(3393)] = 131374, - [SMALL_STATE(3394)] = 131390, - [SMALL_STATE(3395)] = 131416, - [SMALL_STATE(3396)] = 131446, - [SMALL_STATE(3397)] = 131466, - [SMALL_STATE(3398)] = 131496, - [SMALL_STATE(3399)] = 131512, - [SMALL_STATE(3400)] = 131540, - [SMALL_STATE(3401)] = 131572, - [SMALL_STATE(3402)] = 131600, - [SMALL_STATE(3403)] = 131628, - [SMALL_STATE(3404)] = 131644, - [SMALL_STATE(3405)] = 131662, - [SMALL_STATE(3406)] = 131678, - [SMALL_STATE(3407)] = 131706, - [SMALL_STATE(3408)] = 131722, - [SMALL_STATE(3409)] = 131750, - [SMALL_STATE(3410)] = 131782, - [SMALL_STATE(3411)] = 131812, - [SMALL_STATE(3412)] = 131828, - [SMALL_STATE(3413)] = 131858, - [SMALL_STATE(3414)] = 131890, - [SMALL_STATE(3415)] = 131906, - [SMALL_STATE(3416)] = 131928, - [SMALL_STATE(3417)] = 131944, - [SMALL_STATE(3418)] = 131972, - [SMALL_STATE(3419)] = 131988, - [SMALL_STATE(3420)] = 132016, - [SMALL_STATE(3421)] = 132032, - [SMALL_STATE(3422)] = 132060, - [SMALL_STATE(3423)] = 132084, - [SMALL_STATE(3424)] = 132112, - [SMALL_STATE(3425)] = 132128, - [SMALL_STATE(3426)] = 132150, - [SMALL_STATE(3427)] = 132166, - [SMALL_STATE(3428)] = 132182, - [SMALL_STATE(3429)] = 132212, - [SMALL_STATE(3430)] = 132228, - [SMALL_STATE(3431)] = 132256, - [SMALL_STATE(3432)] = 132284, - [SMALL_STATE(3433)] = 132312, - [SMALL_STATE(3434)] = 132338, - [SMALL_STATE(3435)] = 132368, - [SMALL_STATE(3436)] = 132396, - [SMALL_STATE(3437)] = 132424, - [SMALL_STATE(3438)] = 132450, - [SMALL_STATE(3439)] = 132480, - [SMALL_STATE(3440)] = 132508, - [SMALL_STATE(3441)] = 132530, - [SMALL_STATE(3442)] = 132546, - [SMALL_STATE(3443)] = 132562, - [SMALL_STATE(3444)] = 132578, - [SMALL_STATE(3445)] = 132606, - [SMALL_STATE(3446)] = 132634, - [SMALL_STATE(3447)] = 132656, - [SMALL_STATE(3448)] = 132688, - [SMALL_STATE(3449)] = 132704, - [SMALL_STATE(3450)] = 132720, - [SMALL_STATE(3451)] = 132736, - [SMALL_STATE(3452)] = 132764, - [SMALL_STATE(3453)] = 132792, - [SMALL_STATE(3454)] = 132824, - [SMALL_STATE(3455)] = 132852, - [SMALL_STATE(3456)] = 132880, - [SMALL_STATE(3457)] = 132896, - [SMALL_STATE(3458)] = 132928, - [SMALL_STATE(3459)] = 132958, - [SMALL_STATE(3460)] = 132988, - [SMALL_STATE(3461)] = 133016, - [SMALL_STATE(3462)] = 133048, - [SMALL_STATE(3463)] = 133080, - [SMALL_STATE(3464)] = 133096, - [SMALL_STATE(3465)] = 133128, - [SMALL_STATE(3466)] = 133160, - [SMALL_STATE(3467)] = 133186, - [SMALL_STATE(3468)] = 133214, - [SMALL_STATE(3469)] = 133242, - [SMALL_STATE(3470)] = 133270, - [SMALL_STATE(3471)] = 133286, - [SMALL_STATE(3472)] = 133302, - [SMALL_STATE(3473)] = 133318, - [SMALL_STATE(3474)] = 133346, - [SMALL_STATE(3475)] = 133378, - [SMALL_STATE(3476)] = 133401, - [SMALL_STATE(3477)] = 133420, - [SMALL_STATE(3478)] = 133449, - [SMALL_STATE(3479)] = 133474, - [SMALL_STATE(3480)] = 133499, - [SMALL_STATE(3481)] = 133524, - [SMALL_STATE(3482)] = 133539, - [SMALL_STATE(3483)] = 133560, - [SMALL_STATE(3484)] = 133575, - [SMALL_STATE(3485)] = 133604, - [SMALL_STATE(3486)] = 133629, - [SMALL_STATE(3487)] = 133652, - [SMALL_STATE(3488)] = 133681, - [SMALL_STATE(3489)] = 133704, - [SMALL_STATE(3490)] = 133727, - [SMALL_STATE(3491)] = 133742, - [SMALL_STATE(3492)] = 133771, - [SMALL_STATE(3493)] = 133786, - [SMALL_STATE(3494)] = 133801, - [SMALL_STATE(3495)] = 133826, - [SMALL_STATE(3496)] = 133851, - [SMALL_STATE(3497)] = 133874, - [SMALL_STATE(3498)] = 133897, - [SMALL_STATE(3499)] = 133926, - [SMALL_STATE(3500)] = 133951, + [SMALL_STATE(3274)] = 128322, + [SMALL_STATE(3275)] = 128343, + [SMALL_STATE(3276)] = 128360, + [SMALL_STATE(3277)] = 128395, + [SMALL_STATE(3278)] = 128430, + [SMALL_STATE(3279)] = 128465, + [SMALL_STATE(3280)] = 128500, + [SMALL_STATE(3281)] = 128531, + [SMALL_STATE(3282)] = 128566, + [SMALL_STATE(3283)] = 128597, + [SMALL_STATE(3284)] = 128630, + [SMALL_STATE(3285)] = 128665, + [SMALL_STATE(3286)] = 128686, + [SMALL_STATE(3287)] = 128719, + [SMALL_STATE(3288)] = 128738, + [SMALL_STATE(3289)] = 128773, + [SMALL_STATE(3290)] = 128792, + [SMALL_STATE(3291)] = 128827, + [SMALL_STATE(3292)] = 128850, + [SMALL_STATE(3293)] = 128869, + [SMALL_STATE(3294)] = 128902, + [SMALL_STATE(3295)] = 128930, + [SMALL_STATE(3296)] = 128946, + [SMALL_STATE(3297)] = 128976, + [SMALL_STATE(3298)] = 128992, + [SMALL_STATE(3299)] = 129008, + [SMALL_STATE(3300)] = 129024, + [SMALL_STATE(3301)] = 129054, + [SMALL_STATE(3302)] = 129084, + [SMALL_STATE(3303)] = 129114, + [SMALL_STATE(3304)] = 129144, + [SMALL_STATE(3305)] = 129174, + [SMALL_STATE(3306)] = 129204, + [SMALL_STATE(3307)] = 129232, + [SMALL_STATE(3308)] = 129262, + [SMALL_STATE(3309)] = 129292, + [SMALL_STATE(3310)] = 129320, + [SMALL_STATE(3311)] = 129336, + [SMALL_STATE(3312)] = 129358, + [SMALL_STATE(3313)] = 129386, + [SMALL_STATE(3314)] = 129414, + [SMALL_STATE(3315)] = 129430, + [SMALL_STATE(3316)] = 129448, + [SMALL_STATE(3317)] = 129464, + [SMALL_STATE(3318)] = 129480, + [SMALL_STATE(3319)] = 129496, + [SMALL_STATE(3320)] = 129522, + [SMALL_STATE(3321)] = 129544, + [SMALL_STATE(3322)] = 129560, + [SMALL_STATE(3323)] = 129576, + [SMALL_STATE(3324)] = 129598, + [SMALL_STATE(3325)] = 129614, + [SMALL_STATE(3326)] = 129630, + [SMALL_STATE(3327)] = 129660, + [SMALL_STATE(3328)] = 129676, + [SMALL_STATE(3329)] = 129692, + [SMALL_STATE(3330)] = 129708, + [SMALL_STATE(3331)] = 129724, + [SMALL_STATE(3332)] = 129750, + [SMALL_STATE(3333)] = 129766, + [SMALL_STATE(3334)] = 129782, + [SMALL_STATE(3335)] = 129798, + [SMALL_STATE(3336)] = 129814, + [SMALL_STATE(3337)] = 129830, + [SMALL_STATE(3338)] = 129846, + [SMALL_STATE(3339)] = 129864, + [SMALL_STATE(3340)] = 129880, + [SMALL_STATE(3341)] = 129896, + [SMALL_STATE(3342)] = 129912, + [SMALL_STATE(3343)] = 129928, + [SMALL_STATE(3344)] = 129946, + [SMALL_STATE(3345)] = 129962, + [SMALL_STATE(3346)] = 129978, + [SMALL_STATE(3347)] = 130000, + [SMALL_STATE(3348)] = 130020, + [SMALL_STATE(3349)] = 130036, + [SMALL_STATE(3350)] = 130054, + [SMALL_STATE(3351)] = 130080, + [SMALL_STATE(3352)] = 130108, + [SMALL_STATE(3353)] = 130130, + [SMALL_STATE(3354)] = 130162, + [SMALL_STATE(3355)] = 130180, + [SMALL_STATE(3356)] = 130208, + [SMALL_STATE(3357)] = 130224, + [SMALL_STATE(3358)] = 130250, + [SMALL_STATE(3359)] = 130266, + [SMALL_STATE(3360)] = 130282, + [SMALL_STATE(3361)] = 130312, + [SMALL_STATE(3362)] = 130340, + [SMALL_STATE(3363)] = 130372, + [SMALL_STATE(3364)] = 130400, + [SMALL_STATE(3365)] = 130428, + [SMALL_STATE(3366)] = 130456, + [SMALL_STATE(3367)] = 130484, + [SMALL_STATE(3368)] = 130500, + [SMALL_STATE(3369)] = 130528, + [SMALL_STATE(3370)] = 130560, + [SMALL_STATE(3371)] = 130588, + [SMALL_STATE(3372)] = 130616, + [SMALL_STATE(3373)] = 130646, + [SMALL_STATE(3374)] = 130674, + [SMALL_STATE(3375)] = 130702, + [SMALL_STATE(3376)] = 130728, + [SMALL_STATE(3377)] = 130750, + [SMALL_STATE(3378)] = 130778, + [SMALL_STATE(3379)] = 130806, + [SMALL_STATE(3380)] = 130834, + [SMALL_STATE(3381)] = 130850, + [SMALL_STATE(3382)] = 130878, + [SMALL_STATE(3383)] = 130906, + [SMALL_STATE(3384)] = 130934, + [SMALL_STATE(3385)] = 130950, + [SMALL_STATE(3386)] = 130978, + [SMALL_STATE(3387)] = 131006, + [SMALL_STATE(3388)] = 131036, + [SMALL_STATE(3389)] = 131068, + [SMALL_STATE(3390)] = 131088, + [SMALL_STATE(3391)] = 131120, + [SMALL_STATE(3392)] = 131146, + [SMALL_STATE(3393)] = 131162, + [SMALL_STATE(3394)] = 131192, + [SMALL_STATE(3395)] = 131224, + [SMALL_STATE(3396)] = 131254, + [SMALL_STATE(3397)] = 131270, + [SMALL_STATE(3398)] = 131300, + [SMALL_STATE(3399)] = 131330, + [SMALL_STATE(3400)] = 131360, + [SMALL_STATE(3401)] = 131390, + [SMALL_STATE(3402)] = 131418, + [SMALL_STATE(3403)] = 131444, + [SMALL_STATE(3404)] = 131472, + [SMALL_STATE(3405)] = 131494, + [SMALL_STATE(3406)] = 131522, + [SMALL_STATE(3407)] = 131544, + [SMALL_STATE(3408)] = 131574, + [SMALL_STATE(3409)] = 131600, + [SMALL_STATE(3410)] = 131626, + [SMALL_STATE(3411)] = 131656, + [SMALL_STATE(3412)] = 131686, + [SMALL_STATE(3413)] = 131716, + [SMALL_STATE(3414)] = 131748, + [SMALL_STATE(3415)] = 131780, + [SMALL_STATE(3416)] = 131804, + [SMALL_STATE(3417)] = 131834, + [SMALL_STATE(3418)] = 131866, + [SMALL_STATE(3419)] = 131898, + [SMALL_STATE(3420)] = 131930, + [SMALL_STATE(3421)] = 131960, + [SMALL_STATE(3422)] = 131988, + [SMALL_STATE(3423)] = 132014, + [SMALL_STATE(3424)] = 132044, + [SMALL_STATE(3425)] = 132060, + [SMALL_STATE(3426)] = 132076, + [SMALL_STATE(3427)] = 132108, + [SMALL_STATE(3428)] = 132140, + [SMALL_STATE(3429)] = 132170, + [SMALL_STATE(3430)] = 132198, + [SMALL_STATE(3431)] = 132218, + [SMALL_STATE(3432)] = 132248, + [SMALL_STATE(3433)] = 132264, + [SMALL_STATE(3434)] = 132280, + [SMALL_STATE(3435)] = 132306, + [SMALL_STATE(3436)] = 132334, + [SMALL_STATE(3437)] = 132362, + [SMALL_STATE(3438)] = 132390, + [SMALL_STATE(3439)] = 132418, + [SMALL_STATE(3440)] = 132446, + [SMALL_STATE(3441)] = 132476, + [SMALL_STATE(3442)] = 132504, + [SMALL_STATE(3443)] = 132534, + [SMALL_STATE(3444)] = 132564, + [SMALL_STATE(3445)] = 132592, + [SMALL_STATE(3446)] = 132620, + [SMALL_STATE(3447)] = 132652, + [SMALL_STATE(3448)] = 132680, + [SMALL_STATE(3449)] = 132710, + [SMALL_STATE(3450)] = 132740, + [SMALL_STATE(3451)] = 132768, + [SMALL_STATE(3452)] = 132798, + [SMALL_STATE(3453)] = 132828, + [SMALL_STATE(3454)] = 132860, + [SMALL_STATE(3455)] = 132876, + [SMALL_STATE(3456)] = 132902, + [SMALL_STATE(3457)] = 132930, + [SMALL_STATE(3458)] = 132962, + [SMALL_STATE(3459)] = 132990, + [SMALL_STATE(3460)] = 133018, + [SMALL_STATE(3461)] = 133046, + [SMALL_STATE(3462)] = 133074, + [SMALL_STATE(3463)] = 133100, + [SMALL_STATE(3464)] = 133116, + [SMALL_STATE(3465)] = 133148, + [SMALL_STATE(3466)] = 133176, + [SMALL_STATE(3467)] = 133204, + [SMALL_STATE(3468)] = 133236, + [SMALL_STATE(3469)] = 133268, + [SMALL_STATE(3470)] = 133294, + [SMALL_STATE(3471)] = 133310, + [SMALL_STATE(3472)] = 133326, + [SMALL_STATE(3473)] = 133356, + [SMALL_STATE(3474)] = 133386, + [SMALL_STATE(3475)] = 133414, + [SMALL_STATE(3476)] = 133439, + [SMALL_STATE(3477)] = 133462, + [SMALL_STATE(3478)] = 133477, + [SMALL_STATE(3479)] = 133492, + [SMALL_STATE(3480)] = 133509, + [SMALL_STATE(3481)] = 133534, + [SMALL_STATE(3482)] = 133553, + [SMALL_STATE(3483)] = 133582, + [SMALL_STATE(3484)] = 133599, + [SMALL_STATE(3485)] = 133624, + [SMALL_STATE(3486)] = 133649, + [SMALL_STATE(3487)] = 133674, + [SMALL_STATE(3488)] = 133697, + [SMALL_STATE(3489)] = 133722, + [SMALL_STATE(3490)] = 133745, + [SMALL_STATE(3491)] = 133768, + [SMALL_STATE(3492)] = 133783, + [SMALL_STATE(3493)] = 133798, + [SMALL_STATE(3494)] = 133821, + [SMALL_STATE(3495)] = 133842, + [SMALL_STATE(3496)] = 133871, + [SMALL_STATE(3497)] = 133892, + [SMALL_STATE(3498)] = 133913, + [SMALL_STATE(3499)] = 133942, + [SMALL_STATE(3500)] = 133959, [SMALL_STATE(3501)] = 133980, - [SMALL_STATE(3502)] = 134009, - [SMALL_STATE(3503)] = 134030, - [SMALL_STATE(3504)] = 134047, - [SMALL_STATE(3505)] = 134068, - [SMALL_STATE(3506)] = 134085, - [SMALL_STATE(3507)] = 134110, - [SMALL_STATE(3508)] = 134135, - [SMALL_STATE(3509)] = 134160, - [SMALL_STATE(3510)] = 134185, - [SMALL_STATE(3511)] = 134210, - [SMALL_STATE(3512)] = 134239, - [SMALL_STATE(3513)] = 134256, - [SMALL_STATE(3514)] = 134273, - [SMALL_STATE(3515)] = 134290, - [SMALL_STATE(3516)] = 134313, - [SMALL_STATE(3517)] = 134334, - [SMALL_STATE(3518)] = 134355, - [SMALL_STATE(3519)] = 134376, - [SMALL_STATE(3520)] = 134399, - [SMALL_STATE(3521)] = 134422, - [SMALL_STATE(3522)] = 134444, - [SMALL_STATE(3523)] = 134458, - [SMALL_STATE(3524)] = 134482, - [SMALL_STATE(3525)] = 134500, - [SMALL_STATE(3526)] = 134522, - [SMALL_STATE(3527)] = 134544, - [SMALL_STATE(3528)] = 134570, - [SMALL_STATE(3529)] = 134596, - [SMALL_STATE(3530)] = 134614, - [SMALL_STATE(3531)] = 134636, - [SMALL_STATE(3532)] = 134658, - [SMALL_STATE(3533)] = 134680, - [SMALL_STATE(3534)] = 134694, - [SMALL_STATE(3535)] = 134716, - [SMALL_STATE(3536)] = 134738, - [SMALL_STATE(3537)] = 134764, - [SMALL_STATE(3538)] = 134786, - [SMALL_STATE(3539)] = 134808, - [SMALL_STATE(3540)] = 134830, - [SMALL_STATE(3541)] = 134852, - [SMALL_STATE(3542)] = 134878, - [SMALL_STATE(3543)] = 134900, - [SMALL_STATE(3544)] = 134922, - [SMALL_STATE(3545)] = 134936, - [SMALL_STATE(3546)] = 134958, - [SMALL_STATE(3547)] = 134980, - [SMALL_STATE(3548)] = 135002, - [SMALL_STATE(3549)] = 135024, - [SMALL_STATE(3550)] = 135038, - [SMALL_STATE(3551)] = 135060, - [SMALL_STATE(3552)] = 135082, - [SMALL_STATE(3553)] = 135102, - [SMALL_STATE(3554)] = 135124, - [SMALL_STATE(3555)] = 135146, - [SMALL_STATE(3556)] = 135172, - [SMALL_STATE(3557)] = 135194, - [SMALL_STATE(3558)] = 135216, - [SMALL_STATE(3559)] = 135234, - [SMALL_STATE(3560)] = 135254, - [SMALL_STATE(3561)] = 135276, - [SMALL_STATE(3562)] = 135298, - [SMALL_STATE(3563)] = 135324, - [SMALL_STATE(3564)] = 135346, - [SMALL_STATE(3565)] = 135364, - [SMALL_STATE(3566)] = 135386, - [SMALL_STATE(3567)] = 135408, - [SMALL_STATE(3568)] = 135430, - [SMALL_STATE(3569)] = 135456, - [SMALL_STATE(3570)] = 135478, - [SMALL_STATE(3571)] = 135498, - [SMALL_STATE(3572)] = 135524, - [SMALL_STATE(3573)] = 135546, - [SMALL_STATE(3574)] = 135560, - [SMALL_STATE(3575)] = 135574, - [SMALL_STATE(3576)] = 135592, - [SMALL_STATE(3577)] = 135606, - [SMALL_STATE(3578)] = 135632, - [SMALL_STATE(3579)] = 135654, - [SMALL_STATE(3580)] = 135672, - [SMALL_STATE(3581)] = 135694, - [SMALL_STATE(3582)] = 135716, - [SMALL_STATE(3583)] = 135742, - [SMALL_STATE(3584)] = 135760, - [SMALL_STATE(3585)] = 135782, - [SMALL_STATE(3586)] = 135804, - [SMALL_STATE(3587)] = 135818, - [SMALL_STATE(3588)] = 135844, - [SMALL_STATE(3589)] = 135870, - [SMALL_STATE(3590)] = 135892, - [SMALL_STATE(3591)] = 135914, - [SMALL_STATE(3592)] = 135936, - [SMALL_STATE(3593)] = 135958, - [SMALL_STATE(3594)] = 135984, - [SMALL_STATE(3595)] = 135998, - [SMALL_STATE(3596)] = 136024, - [SMALL_STATE(3597)] = 136040, - [SMALL_STATE(3598)] = 136062, - [SMALL_STATE(3599)] = 136076, - [SMALL_STATE(3600)] = 136098, + [SMALL_STATE(3502)] = 134003, + [SMALL_STATE(3503)] = 134026, + [SMALL_STATE(3504)] = 134051, + [SMALL_STATE(3505)] = 134074, + [SMALL_STATE(3506)] = 134095, + [SMALL_STATE(3507)] = 134120, + [SMALL_STATE(3508)] = 134149, + [SMALL_STATE(3509)] = 134178, + [SMALL_STATE(3510)] = 134203, + [SMALL_STATE(3511)] = 134228, + [SMALL_STATE(3512)] = 134251, + [SMALL_STATE(3513)] = 134280, + [SMALL_STATE(3514)] = 134305, + [SMALL_STATE(3515)] = 134334, + [SMALL_STATE(3516)] = 134363, + [SMALL_STATE(3517)] = 134378, + [SMALL_STATE(3518)] = 134403, + [SMALL_STATE(3519)] = 134420, + [SMALL_STATE(3520)] = 134437, + [SMALL_STATE(3521)] = 134458, + [SMALL_STATE(3522)] = 134480, + [SMALL_STATE(3523)] = 134502, + [SMALL_STATE(3524)] = 134524, + [SMALL_STATE(3525)] = 134546, + [SMALL_STATE(3526)] = 134564, + [SMALL_STATE(3527)] = 134586, + [SMALL_STATE(3528)] = 134600, + [SMALL_STATE(3529)] = 134622, + [SMALL_STATE(3530)] = 134644, + [SMALL_STATE(3531)] = 134666, + [SMALL_STATE(3532)] = 134688, + [SMALL_STATE(3533)] = 134714, + [SMALL_STATE(3534)] = 134736, + [SMALL_STATE(3535)] = 134750, + [SMALL_STATE(3536)] = 134764, + [SMALL_STATE(3537)] = 134790, + [SMALL_STATE(3538)] = 134810, + [SMALL_STATE(3539)] = 134826, + [SMALL_STATE(3540)] = 134846, + [SMALL_STATE(3541)] = 134868, + [SMALL_STATE(3542)] = 134888, + [SMALL_STATE(3543)] = 134906, + [SMALL_STATE(3544)] = 134928, + [SMALL_STATE(3545)] = 134950, + [SMALL_STATE(3546)] = 134972, + [SMALL_STATE(3547)] = 134994, + [SMALL_STATE(3548)] = 135016, + [SMALL_STATE(3549)] = 135034, + [SMALL_STATE(3550)] = 135056, + [SMALL_STATE(3551)] = 135082, + [SMALL_STATE(3552)] = 135102, + [SMALL_STATE(3553)] = 135128, + [SMALL_STATE(3554)] = 135146, + [SMALL_STATE(3555)] = 135166, + [SMALL_STATE(3556)] = 135188, + [SMALL_STATE(3557)] = 135206, + [SMALL_STATE(3558)] = 135224, + [SMALL_STATE(3559)] = 135246, + [SMALL_STATE(3560)] = 135266, + [SMALL_STATE(3561)] = 135286, + [SMALL_STATE(3562)] = 135304, + [SMALL_STATE(3563)] = 135322, + [SMALL_STATE(3564)] = 135344, + [SMALL_STATE(3565)] = 135358, + [SMALL_STATE(3566)] = 135376, + [SMALL_STATE(3567)] = 135402, + [SMALL_STATE(3568)] = 135424, + [SMALL_STATE(3569)] = 135442, + [SMALL_STATE(3570)] = 135460, + [SMALL_STATE(3571)] = 135474, + [SMALL_STATE(3572)] = 135496, + [SMALL_STATE(3573)] = 135516, + [SMALL_STATE(3574)] = 135538, + [SMALL_STATE(3575)] = 135564, + [SMALL_STATE(3576)] = 135586, + [SMALL_STATE(3577)] = 135604, + [SMALL_STATE(3578)] = 135622, + [SMALL_STATE(3579)] = 135644, + [SMALL_STATE(3580)] = 135666, + [SMALL_STATE(3581)] = 135688, + [SMALL_STATE(3582)] = 135710, + [SMALL_STATE(3583)] = 135728, + [SMALL_STATE(3584)] = 135742, + [SMALL_STATE(3585)] = 135768, + [SMALL_STATE(3586)] = 135794, + [SMALL_STATE(3587)] = 135808, + [SMALL_STATE(3588)] = 135834, + [SMALL_STATE(3589)] = 135852, + [SMALL_STATE(3590)] = 135878, + [SMALL_STATE(3591)] = 135904, + [SMALL_STATE(3592)] = 135926, + [SMALL_STATE(3593)] = 135952, + [SMALL_STATE(3594)] = 135974, + [SMALL_STATE(3595)] = 135992, + [SMALL_STATE(3596)] = 136018, + [SMALL_STATE(3597)] = 136044, + [SMALL_STATE(3598)] = 136066, + [SMALL_STATE(3599)] = 136084, + [SMALL_STATE(3600)] = 136106, [SMALL_STATE(3601)] = 136120, [SMALL_STATE(3602)] = 136142, - [SMALL_STATE(3603)] = 136164, - [SMALL_STATE(3604)] = 136190, - [SMALL_STATE(3605)] = 136212, - [SMALL_STATE(3606)] = 136234, - [SMALL_STATE(3607)] = 136256, - [SMALL_STATE(3608)] = 136282, - [SMALL_STATE(3609)] = 136304, - [SMALL_STATE(3610)] = 136326, - [SMALL_STATE(3611)] = 136348, - [SMALL_STATE(3612)] = 136370, - [SMALL_STATE(3613)] = 136396, - [SMALL_STATE(3614)] = 136418, - [SMALL_STATE(3615)] = 136444, - [SMALL_STATE(3616)] = 136466, - [SMALL_STATE(3617)] = 136480, - [SMALL_STATE(3618)] = 136506, - [SMALL_STATE(3619)] = 136528, - [SMALL_STATE(3620)] = 136550, - [SMALL_STATE(3621)] = 136572, - [SMALL_STATE(3622)] = 136594, - [SMALL_STATE(3623)] = 136616, - [SMALL_STATE(3624)] = 136638, - [SMALL_STATE(3625)] = 136660, - [SMALL_STATE(3626)] = 136682, - [SMALL_STATE(3627)] = 136696, + [SMALL_STATE(3603)] = 136168, + [SMALL_STATE(3604)] = 136184, + [SMALL_STATE(3605)] = 136206, + [SMALL_STATE(3606)] = 136232, + [SMALL_STATE(3607)] = 136254, + [SMALL_STATE(3608)] = 136276, + [SMALL_STATE(3609)] = 136298, + [SMALL_STATE(3610)] = 136320, + [SMALL_STATE(3611)] = 136346, + [SMALL_STATE(3612)] = 136372, + [SMALL_STATE(3613)] = 136394, + [SMALL_STATE(3614)] = 136416, + [SMALL_STATE(3615)] = 136438, + [SMALL_STATE(3616)] = 136460, + [SMALL_STATE(3617)] = 136474, + [SMALL_STATE(3618)] = 136496, + [SMALL_STATE(3619)] = 136522, + [SMALL_STATE(3620)] = 136544, + [SMALL_STATE(3621)] = 136570, + [SMALL_STATE(3622)] = 136592, + [SMALL_STATE(3623)] = 136614, + [SMALL_STATE(3624)] = 136632, + [SMALL_STATE(3625)] = 136654, + [SMALL_STATE(3626)] = 136670, + [SMALL_STATE(3627)] = 136692, [SMALL_STATE(3628)] = 136718, - [SMALL_STATE(3629)] = 136744, - [SMALL_STATE(3630)] = 136766, - [SMALL_STATE(3631)] = 136784, - [SMALL_STATE(3632)] = 136800, - [SMALL_STATE(3633)] = 136816, - [SMALL_STATE(3634)] = 136842, - [SMALL_STATE(3635)] = 136868, - [SMALL_STATE(3636)] = 136894, - [SMALL_STATE(3637)] = 136920, - [SMALL_STATE(3638)] = 136938, - [SMALL_STATE(3639)] = 136964, - [SMALL_STATE(3640)] = 136980, - [SMALL_STATE(3641)] = 137002, - [SMALL_STATE(3642)] = 137024, - [SMALL_STATE(3643)] = 137050, - [SMALL_STATE(3644)] = 137076, - [SMALL_STATE(3645)] = 137102, - [SMALL_STATE(3646)] = 137128, - [SMALL_STATE(3647)] = 137150, - [SMALL_STATE(3648)] = 137176, - [SMALL_STATE(3649)] = 137202, - [SMALL_STATE(3650)] = 137228, - [SMALL_STATE(3651)] = 137250, - [SMALL_STATE(3652)] = 137276, - [SMALL_STATE(3653)] = 137292, - [SMALL_STATE(3654)] = 137310, - [SMALL_STATE(3655)] = 137326, - [SMALL_STATE(3656)] = 137352, - [SMALL_STATE(3657)] = 137378, - [SMALL_STATE(3658)] = 137396, - [SMALL_STATE(3659)] = 137414, - [SMALL_STATE(3660)] = 137428, - [SMALL_STATE(3661)] = 137446, - [SMALL_STATE(3662)] = 137472, - [SMALL_STATE(3663)] = 137490, - [SMALL_STATE(3664)] = 137516, - [SMALL_STATE(3665)] = 137538, - [SMALL_STATE(3666)] = 137560, - [SMALL_STATE(3667)] = 137582, - [SMALL_STATE(3668)] = 137604, - [SMALL_STATE(3669)] = 137626, - [SMALL_STATE(3670)] = 137648, - [SMALL_STATE(3671)] = 137666, - [SMALL_STATE(3672)] = 137688, - [SMALL_STATE(3673)] = 137710, - [SMALL_STATE(3674)] = 137732, - [SMALL_STATE(3675)] = 137754, - [SMALL_STATE(3676)] = 137776, - [SMALL_STATE(3677)] = 137798, - [SMALL_STATE(3678)] = 137820, - [SMALL_STATE(3679)] = 137842, - [SMALL_STATE(3680)] = 137868, - [SMALL_STATE(3681)] = 137894, - [SMALL_STATE(3682)] = 137916, - [SMALL_STATE(3683)] = 137934, - [SMALL_STATE(3684)] = 137952, - [SMALL_STATE(3685)] = 137978, - [SMALL_STATE(3686)] = 138000, - [SMALL_STATE(3687)] = 138026, - [SMALL_STATE(3688)] = 138044, - [SMALL_STATE(3689)] = 138062, - [SMALL_STATE(3690)] = 138084, - [SMALL_STATE(3691)] = 138106, - [SMALL_STATE(3692)] = 138128, - [SMALL_STATE(3693)] = 138154, - [SMALL_STATE(3694)] = 138180, - [SMALL_STATE(3695)] = 138202, - [SMALL_STATE(3696)] = 138224, - [SMALL_STATE(3697)] = 138246, - [SMALL_STATE(3698)] = 138272, - [SMALL_STATE(3699)] = 138294, - [SMALL_STATE(3700)] = 138312, - [SMALL_STATE(3701)] = 138334, - [SMALL_STATE(3702)] = 138356, - [SMALL_STATE(3703)] = 138378, - [SMALL_STATE(3704)] = 138404, - [SMALL_STATE(3705)] = 138430, - [SMALL_STATE(3706)] = 138456, - [SMALL_STATE(3707)] = 138482, - [SMALL_STATE(3708)] = 138504, - [SMALL_STATE(3709)] = 138526, - [SMALL_STATE(3710)] = 138548, - [SMALL_STATE(3711)] = 138574, - [SMALL_STATE(3712)] = 138596, - [SMALL_STATE(3713)] = 138618, - [SMALL_STATE(3714)] = 138636, - [SMALL_STATE(3715)] = 138658, - [SMALL_STATE(3716)] = 138680, - [SMALL_STATE(3717)] = 138702, - [SMALL_STATE(3718)] = 138724, - [SMALL_STATE(3719)] = 138746, - [SMALL_STATE(3720)] = 138770, - [SMALL_STATE(3721)] = 138792, - [SMALL_STATE(3722)] = 138814, - [SMALL_STATE(3723)] = 138836, - [SMALL_STATE(3724)] = 138852, - [SMALL_STATE(3725)] = 138874, - [SMALL_STATE(3726)] = 138890, - [SMALL_STATE(3727)] = 138916, - [SMALL_STATE(3728)] = 138934, - [SMALL_STATE(3729)] = 138952, - [SMALL_STATE(3730)] = 138978, - [SMALL_STATE(3731)] = 138996, - [SMALL_STATE(3732)] = 139014, - [SMALL_STATE(3733)] = 139032, - [SMALL_STATE(3734)] = 139058, - [SMALL_STATE(3735)] = 139072, - [SMALL_STATE(3736)] = 139094, - [SMALL_STATE(3737)] = 139116, - [SMALL_STATE(3738)] = 139142, - [SMALL_STATE(3739)] = 139160, - [SMALL_STATE(3740)] = 139174, - [SMALL_STATE(3741)] = 139196, - [SMALL_STATE(3742)] = 139222, - [SMALL_STATE(3743)] = 139248, - [SMALL_STATE(3744)] = 139274, - [SMALL_STATE(3745)] = 139296, - [SMALL_STATE(3746)] = 139322, - [SMALL_STATE(3747)] = 139344, - [SMALL_STATE(3748)] = 139366, - [SMALL_STATE(3749)] = 139388, - [SMALL_STATE(3750)] = 139408, - [SMALL_STATE(3751)] = 139430, - [SMALL_STATE(3752)] = 139444, - [SMALL_STATE(3753)] = 139464, - [SMALL_STATE(3754)] = 139484, - [SMALL_STATE(3755)] = 139500, - [SMALL_STATE(3756)] = 139526, - [SMALL_STATE(3757)] = 139548, - [SMALL_STATE(3758)] = 139568, - [SMALL_STATE(3759)] = 139588, - [SMALL_STATE(3760)] = 139606, - [SMALL_STATE(3761)] = 139628, - [SMALL_STATE(3762)] = 139650, - [SMALL_STATE(3763)] = 139672, - [SMALL_STATE(3764)] = 139690, - [SMALL_STATE(3765)] = 139708, - [SMALL_STATE(3766)] = 139730, - [SMALL_STATE(3767)] = 139750, - [SMALL_STATE(3768)] = 139767, - [SMALL_STATE(3769)] = 139786, - [SMALL_STATE(3770)] = 139803, - [SMALL_STATE(3771)] = 139820, - [SMALL_STATE(3772)] = 139837, - [SMALL_STATE(3773)] = 139856, - [SMALL_STATE(3774)] = 139873, - [SMALL_STATE(3775)] = 139896, - [SMALL_STATE(3776)] = 139919, - [SMALL_STATE(3777)] = 139942, - [SMALL_STATE(3778)] = 139955, - [SMALL_STATE(3779)] = 139978, - [SMALL_STATE(3780)] = 140001, - [SMALL_STATE(3781)] = 140018, - [SMALL_STATE(3782)] = 140031, - [SMALL_STATE(3783)] = 140050, - [SMALL_STATE(3784)] = 140067, - [SMALL_STATE(3785)] = 140080, - [SMALL_STATE(3786)] = 140103, - [SMALL_STATE(3787)] = 140120, - [SMALL_STATE(3788)] = 140135, - [SMALL_STATE(3789)] = 140152, - [SMALL_STATE(3790)] = 140169, - [SMALL_STATE(3791)] = 140192, - [SMALL_STATE(3792)] = 140215, - [SMALL_STATE(3793)] = 140238, - [SMALL_STATE(3794)] = 140253, - [SMALL_STATE(3795)] = 140272, - [SMALL_STATE(3796)] = 140295, - [SMALL_STATE(3797)] = 140312, - [SMALL_STATE(3798)] = 140327, - [SMALL_STATE(3799)] = 140346, - [SMALL_STATE(3800)] = 140365, - [SMALL_STATE(3801)] = 140384, - [SMALL_STATE(3802)] = 140403, - [SMALL_STATE(3803)] = 140426, - [SMALL_STATE(3804)] = 140449, - [SMALL_STATE(3805)] = 140472, - [SMALL_STATE(3806)] = 140495, - [SMALL_STATE(3807)] = 140516, - [SMALL_STATE(3808)] = 140537, - [SMALL_STATE(3809)] = 140550, - [SMALL_STATE(3810)] = 140573, - [SMALL_STATE(3811)] = 140590, - [SMALL_STATE(3812)] = 140607, - [SMALL_STATE(3813)] = 140626, - [SMALL_STATE(3814)] = 140649, - [SMALL_STATE(3815)] = 140672, + [SMALL_STATE(3629)] = 136740, + [SMALL_STATE(3630)] = 136762, + [SMALL_STATE(3631)] = 136788, + [SMALL_STATE(3632)] = 136814, + [SMALL_STATE(3633)] = 136836, + [SMALL_STATE(3634)] = 136862, + [SMALL_STATE(3635)] = 136884, + [SMALL_STATE(3636)] = 136906, + [SMALL_STATE(3637)] = 136922, + [SMALL_STATE(3638)] = 136944, + [SMALL_STATE(3639)] = 136966, + [SMALL_STATE(3640)] = 136988, + [SMALL_STATE(3641)] = 137014, + [SMALL_STATE(3642)] = 137040, + [SMALL_STATE(3643)] = 137062, + [SMALL_STATE(3644)] = 137084, + [SMALL_STATE(3645)] = 137098, + [SMALL_STATE(3646)] = 137120, + [SMALL_STATE(3647)] = 137142, + [SMALL_STATE(3648)] = 137168, + [SMALL_STATE(3649)] = 137190, + [SMALL_STATE(3650)] = 137212, + [SMALL_STATE(3651)] = 137234, + [SMALL_STATE(3652)] = 137250, + [SMALL_STATE(3653)] = 137270, + [SMALL_STATE(3654)] = 137292, + [SMALL_STATE(3655)] = 137318, + [SMALL_STATE(3656)] = 137340, + [SMALL_STATE(3657)] = 137366, + [SMALL_STATE(3658)] = 137392, + [SMALL_STATE(3659)] = 137418, + [SMALL_STATE(3660)] = 137444, + [SMALL_STATE(3661)] = 137470, + [SMALL_STATE(3662)] = 137492, + [SMALL_STATE(3663)] = 137514, + [SMALL_STATE(3664)] = 137540, + [SMALL_STATE(3665)] = 137554, + [SMALL_STATE(3666)] = 137576, + [SMALL_STATE(3667)] = 137598, + [SMALL_STATE(3668)] = 137620, + [SMALL_STATE(3669)] = 137646, + [SMALL_STATE(3670)] = 137668, + [SMALL_STATE(3671)] = 137690, + [SMALL_STATE(3672)] = 137712, + [SMALL_STATE(3673)] = 137734, + [SMALL_STATE(3674)] = 137748, + [SMALL_STATE(3675)] = 137770, + [SMALL_STATE(3676)] = 137792, + [SMALL_STATE(3677)] = 137814, + [SMALL_STATE(3678)] = 137836, + [SMALL_STATE(3679)] = 137858, + [SMALL_STATE(3680)] = 137876, + [SMALL_STATE(3681)] = 137900, + [SMALL_STATE(3682)] = 137926, + [SMALL_STATE(3683)] = 137948, + [SMALL_STATE(3684)] = 137970, + [SMALL_STATE(3685)] = 137992, + [SMALL_STATE(3686)] = 138014, + [SMALL_STATE(3687)] = 138036, + [SMALL_STATE(3688)] = 138058, + [SMALL_STATE(3689)] = 138080, + [SMALL_STATE(3690)] = 138102, + [SMALL_STATE(3691)] = 138128, + [SMALL_STATE(3692)] = 138150, + [SMALL_STATE(3693)] = 138172, + [SMALL_STATE(3694)] = 138194, + [SMALL_STATE(3695)] = 138220, + [SMALL_STATE(3696)] = 138242, + [SMALL_STATE(3697)] = 138264, + [SMALL_STATE(3698)] = 138286, + [SMALL_STATE(3699)] = 138308, + [SMALL_STATE(3700)] = 138330, + [SMALL_STATE(3701)] = 138352, + [SMALL_STATE(3702)] = 138374, + [SMALL_STATE(3703)] = 138396, + [SMALL_STATE(3704)] = 138410, + [SMALL_STATE(3705)] = 138432, + [SMALL_STATE(3706)] = 138454, + [SMALL_STATE(3707)] = 138476, + [SMALL_STATE(3708)] = 138494, + [SMALL_STATE(3709)] = 138510, + [SMALL_STATE(3710)] = 138528, + [SMALL_STATE(3711)] = 138552, + [SMALL_STATE(3712)] = 138570, + [SMALL_STATE(3713)] = 138588, + [SMALL_STATE(3714)] = 138602, + [SMALL_STATE(3715)] = 138624, + [SMALL_STATE(3716)] = 138642, + [SMALL_STATE(3717)] = 138664, + [SMALL_STATE(3718)] = 138680, + [SMALL_STATE(3719)] = 138706, + [SMALL_STATE(3720)] = 138724, + [SMALL_STATE(3721)] = 138750, + [SMALL_STATE(3722)] = 138776, + [SMALL_STATE(3723)] = 138794, + [SMALL_STATE(3724)] = 138816, + [SMALL_STATE(3725)] = 138842, + [SMALL_STATE(3726)] = 138864, + [SMALL_STATE(3727)] = 138886, + [SMALL_STATE(3728)] = 138908, + [SMALL_STATE(3729)] = 138930, + [SMALL_STATE(3730)] = 138956, + [SMALL_STATE(3731)] = 138978, + [SMALL_STATE(3732)] = 139000, + [SMALL_STATE(3733)] = 139026, + [SMALL_STATE(3734)] = 139048, + [SMALL_STATE(3735)] = 139070, + [SMALL_STATE(3736)] = 139096, + [SMALL_STATE(3737)] = 139118, + [SMALL_STATE(3738)] = 139140, + [SMALL_STATE(3739)] = 139166, + [SMALL_STATE(3740)] = 139192, + [SMALL_STATE(3741)] = 139218, + [SMALL_STATE(3742)] = 139244, + [SMALL_STATE(3743)] = 139258, + [SMALL_STATE(3744)] = 139284, + [SMALL_STATE(3745)] = 139306, + [SMALL_STATE(3746)] = 139328, + [SMALL_STATE(3747)] = 139354, + [SMALL_STATE(3748)] = 139376, + [SMALL_STATE(3749)] = 139398, + [SMALL_STATE(3750)] = 139420, + [SMALL_STATE(3751)] = 139438, + [SMALL_STATE(3752)] = 139464, + [SMALL_STATE(3753)] = 139478, + [SMALL_STATE(3754)] = 139496, + [SMALL_STATE(3755)] = 139514, + [SMALL_STATE(3756)] = 139536, + [SMALL_STATE(3757)] = 139562, + [SMALL_STATE(3758)] = 139588, + [SMALL_STATE(3759)] = 139604, + [SMALL_STATE(3760)] = 139622, + [SMALL_STATE(3761)] = 139648, + [SMALL_STATE(3762)] = 139670, + [SMALL_STATE(3763)] = 139696, + [SMALL_STATE(3764)] = 139722, + [SMALL_STATE(3765)] = 139748, + [SMALL_STATE(3766)] = 139770, + [SMALL_STATE(3767)] = 139786, + [SMALL_STATE(3768)] = 139809, + [SMALL_STATE(3769)] = 139828, + [SMALL_STATE(3770)] = 139851, + [SMALL_STATE(3771)] = 139868, + [SMALL_STATE(3772)] = 139891, + [SMALL_STATE(3773)] = 139910, + [SMALL_STATE(3774)] = 139925, + [SMALL_STATE(3775)] = 139942, + [SMALL_STATE(3776)] = 139965, + [SMALL_STATE(3777)] = 139988, + [SMALL_STATE(3778)] = 140007, + [SMALL_STATE(3779)] = 140024, + [SMALL_STATE(3780)] = 140043, + [SMALL_STATE(3781)] = 140060, + [SMALL_STATE(3782)] = 140077, + [SMALL_STATE(3783)] = 140094, + [SMALL_STATE(3784)] = 140115, + [SMALL_STATE(3785)] = 140138, + [SMALL_STATE(3786)] = 140155, + [SMALL_STATE(3787)] = 140172, + [SMALL_STATE(3788)] = 140195, + [SMALL_STATE(3789)] = 140214, + [SMALL_STATE(3790)] = 140231, + [SMALL_STATE(3791)] = 140246, + [SMALL_STATE(3792)] = 140269, + [SMALL_STATE(3793)] = 140286, + [SMALL_STATE(3794)] = 140303, + [SMALL_STATE(3795)] = 140320, + [SMALL_STATE(3796)] = 140335, + [SMALL_STATE(3797)] = 140350, + [SMALL_STATE(3798)] = 140363, + [SMALL_STATE(3799)] = 140386, + [SMALL_STATE(3800)] = 140403, + [SMALL_STATE(3801)] = 140420, + [SMALL_STATE(3802)] = 140437, + [SMALL_STATE(3803)] = 140454, + [SMALL_STATE(3804)] = 140477, + [SMALL_STATE(3805)] = 140494, + [SMALL_STATE(3806)] = 140509, + [SMALL_STATE(3807)] = 140532, + [SMALL_STATE(3808)] = 140549, + [SMALL_STATE(3809)] = 140566, + [SMALL_STATE(3810)] = 140583, + [SMALL_STATE(3811)] = 140602, + [SMALL_STATE(3812)] = 140619, + [SMALL_STATE(3813)] = 140636, + [SMALL_STATE(3814)] = 140659, + [SMALL_STATE(3815)] = 140674, [SMALL_STATE(3816)] = 140689, - [SMALL_STATE(3817)] = 140712, - [SMALL_STATE(3818)] = 140725, - [SMALL_STATE(3819)] = 140738, - [SMALL_STATE(3820)] = 140757, - [SMALL_STATE(3821)] = 140774, - [SMALL_STATE(3822)] = 140789, - [SMALL_STATE(3823)] = 140808, + [SMALL_STATE(3817)] = 140704, + [SMALL_STATE(3818)] = 140719, + [SMALL_STATE(3819)] = 140732, + [SMALL_STATE(3820)] = 140745, + [SMALL_STATE(3821)] = 140758, + [SMALL_STATE(3822)] = 140781, + [SMALL_STATE(3823)] = 140798, [SMALL_STATE(3824)] = 140821, - [SMALL_STATE(3825)] = 140834, - [SMALL_STATE(3826)] = 140857, - [SMALL_STATE(3827)] = 140880, + [SMALL_STATE(3825)] = 140844, + [SMALL_STATE(3826)] = 140867, + [SMALL_STATE(3827)] = 140888, [SMALL_STATE(3828)] = 140903, - [SMALL_STATE(3829)] = 140920, - [SMALL_STATE(3830)] = 140939, - [SMALL_STATE(3831)] = 140956, - [SMALL_STATE(3832)] = 140973, - [SMALL_STATE(3833)] = 140986, - [SMALL_STATE(3834)] = 141009, - [SMALL_STATE(3835)] = 141032, - [SMALL_STATE(3836)] = 141049, - [SMALL_STATE(3837)] = 141062, - [SMALL_STATE(3838)] = 141085, - [SMALL_STATE(3839)] = 141108, - [SMALL_STATE(3840)] = 141125, - [SMALL_STATE(3841)] = 141144, - [SMALL_STATE(3842)] = 141167, - [SMALL_STATE(3843)] = 141190, - [SMALL_STATE(3844)] = 141207, - [SMALL_STATE(3845)] = 141224, - [SMALL_STATE(3846)] = 141239, + [SMALL_STATE(3829)] = 140926, + [SMALL_STATE(3830)] = 140949, + [SMALL_STATE(3831)] = 140972, + [SMALL_STATE(3832)] = 140995, + [SMALL_STATE(3833)] = 141012, + [SMALL_STATE(3834)] = 141025, + [SMALL_STATE(3835)] = 141048, + [SMALL_STATE(3836)] = 141065, + [SMALL_STATE(3837)] = 141088, + [SMALL_STATE(3838)] = 141103, + [SMALL_STATE(3839)] = 141126, + [SMALL_STATE(3840)] = 141149, + [SMALL_STATE(3841)] = 141164, + [SMALL_STATE(3842)] = 141183, + [SMALL_STATE(3843)] = 141198, + [SMALL_STATE(3844)] = 141213, + [SMALL_STATE(3845)] = 141228, + [SMALL_STATE(3846)] = 141243, [SMALL_STATE(3847)] = 141258, - [SMALL_STATE(3848)] = 141275, - [SMALL_STATE(3849)] = 141292, + [SMALL_STATE(3848)] = 141273, + [SMALL_STATE(3849)] = 141288, [SMALL_STATE(3850)] = 141305, [SMALL_STATE(3851)] = 141328, - [SMALL_STATE(3852)] = 141351, - [SMALL_STATE(3853)] = 141374, - [SMALL_STATE(3854)] = 141397, - [SMALL_STATE(3855)] = 141416, - [SMALL_STATE(3856)] = 141433, - [SMALL_STATE(3857)] = 141450, - [SMALL_STATE(3858)] = 141473, - [SMALL_STATE(3859)] = 141496, - [SMALL_STATE(3860)] = 141519, - [SMALL_STATE(3861)] = 141536, - [SMALL_STATE(3862)] = 141559, - [SMALL_STATE(3863)] = 141582, - [SMALL_STATE(3864)] = 141605, - [SMALL_STATE(3865)] = 141628, - [SMALL_STATE(3866)] = 141651, - [SMALL_STATE(3867)] = 141674, - [SMALL_STATE(3868)] = 141697, - [SMALL_STATE(3869)] = 141720, - [SMALL_STATE(3870)] = 141743, - [SMALL_STATE(3871)] = 141766, - [SMALL_STATE(3872)] = 141783, - [SMALL_STATE(3873)] = 141806, - [SMALL_STATE(3874)] = 141821, - [SMALL_STATE(3875)] = 141840, - [SMALL_STATE(3876)] = 141855, - [SMALL_STATE(3877)] = 141872, - [SMALL_STATE(3878)] = 141895, - [SMALL_STATE(3879)] = 141912, - [SMALL_STATE(3880)] = 141935, - [SMALL_STATE(3881)] = 141948, - [SMALL_STATE(3882)] = 141965, - [SMALL_STATE(3883)] = 141982, - [SMALL_STATE(3884)] = 142005, - [SMALL_STATE(3885)] = 142028, - [SMALL_STATE(3886)] = 142045, - [SMALL_STATE(3887)] = 142062, - [SMALL_STATE(3888)] = 142085, - [SMALL_STATE(3889)] = 142108, - [SMALL_STATE(3890)] = 142125, - [SMALL_STATE(3891)] = 142148, - [SMALL_STATE(3892)] = 142167, - [SMALL_STATE(3893)] = 142190, - [SMALL_STATE(3894)] = 142213, - [SMALL_STATE(3895)] = 142226, - [SMALL_STATE(3896)] = 142245, - [SMALL_STATE(3897)] = 142262, - [SMALL_STATE(3898)] = 142279, - [SMALL_STATE(3899)] = 142298, - [SMALL_STATE(3900)] = 142315, - [SMALL_STATE(3901)] = 142332, - [SMALL_STATE(3902)] = 142345, - [SMALL_STATE(3903)] = 142368, - [SMALL_STATE(3904)] = 142385, - [SMALL_STATE(3905)] = 142402, - [SMALL_STATE(3906)] = 142425, - [SMALL_STATE(3907)] = 142442, - [SMALL_STATE(3908)] = 142465, - [SMALL_STATE(3909)] = 142488, - [SMALL_STATE(3910)] = 142507, - [SMALL_STATE(3911)] = 142530, - [SMALL_STATE(3912)] = 142553, - [SMALL_STATE(3913)] = 142570, - [SMALL_STATE(3914)] = 142587, - [SMALL_STATE(3915)] = 142610, - [SMALL_STATE(3916)] = 142627, - [SMALL_STATE(3917)] = 142650, - [SMALL_STATE(3918)] = 142671, - [SMALL_STATE(3919)] = 142688, - [SMALL_STATE(3920)] = 142711, - [SMALL_STATE(3921)] = 142728, - [SMALL_STATE(3922)] = 142745, - [SMALL_STATE(3923)] = 142760, - [SMALL_STATE(3924)] = 142777, - [SMALL_STATE(3925)] = 142800, - [SMALL_STATE(3926)] = 142817, - [SMALL_STATE(3927)] = 142840, - [SMALL_STATE(3928)] = 142856, - [SMALL_STATE(3929)] = 142870, - [SMALL_STATE(3930)] = 142886, - [SMALL_STATE(3931)] = 142902, - [SMALL_STATE(3932)] = 142922, - [SMALL_STATE(3933)] = 142934, - [SMALL_STATE(3934)] = 142946, - [SMALL_STATE(3935)] = 142962, - [SMALL_STATE(3936)] = 142978, - [SMALL_STATE(3937)] = 142992, - [SMALL_STATE(3938)] = 143008, - [SMALL_STATE(3939)] = 143024, - [SMALL_STATE(3940)] = 143040, - [SMALL_STATE(3941)] = 143056, - [SMALL_STATE(3942)] = 143072, - [SMALL_STATE(3943)] = 143086, - [SMALL_STATE(3944)] = 143098, - [SMALL_STATE(3945)] = 143110, - [SMALL_STATE(3946)] = 143122, - [SMALL_STATE(3947)] = 143134, - [SMALL_STATE(3948)] = 143150, - [SMALL_STATE(3949)] = 143166, - [SMALL_STATE(3950)] = 143182, - [SMALL_STATE(3951)] = 143198, - [SMALL_STATE(3952)] = 143212, - [SMALL_STATE(3953)] = 143228, - [SMALL_STATE(3954)] = 143242, - [SMALL_STATE(3955)] = 143254, - [SMALL_STATE(3956)] = 143266, - [SMALL_STATE(3957)] = 143278, - [SMALL_STATE(3958)] = 143290, - [SMALL_STATE(3959)] = 143302, - [SMALL_STATE(3960)] = 143314, - [SMALL_STATE(3961)] = 143326, - [SMALL_STATE(3962)] = 143342, - [SMALL_STATE(3963)] = 143354, - [SMALL_STATE(3964)] = 143366, - [SMALL_STATE(3965)] = 143378, - [SMALL_STATE(3966)] = 143390, - [SMALL_STATE(3967)] = 143402, - [SMALL_STATE(3968)] = 143414, - [SMALL_STATE(3969)] = 143426, - [SMALL_STATE(3970)] = 143438, - [SMALL_STATE(3971)] = 143450, - [SMALL_STATE(3972)] = 143462, - [SMALL_STATE(3973)] = 143480, - [SMALL_STATE(3974)] = 143496, - [SMALL_STATE(3975)] = 143512, - [SMALL_STATE(3976)] = 143528, - [SMALL_STATE(3977)] = 143544, - [SMALL_STATE(3978)] = 143556, - [SMALL_STATE(3979)] = 143568, - [SMALL_STATE(3980)] = 143588, - [SMALL_STATE(3981)] = 143600, - [SMALL_STATE(3982)] = 143612, - [SMALL_STATE(3983)] = 143624, - [SMALL_STATE(3984)] = 143640, - [SMALL_STATE(3985)] = 143656, - [SMALL_STATE(3986)] = 143672, - [SMALL_STATE(3987)] = 143688, - [SMALL_STATE(3988)] = 143704, - [SMALL_STATE(3989)] = 143720, - [SMALL_STATE(3990)] = 143736, - [SMALL_STATE(3991)] = 143752, - [SMALL_STATE(3992)] = 143768, - [SMALL_STATE(3993)] = 143784, - [SMALL_STATE(3994)] = 143804, - [SMALL_STATE(3995)] = 143820, - [SMALL_STATE(3996)] = 143836, - [SMALL_STATE(3997)] = 143856, - [SMALL_STATE(3998)] = 143872, - [SMALL_STATE(3999)] = 143886, - [SMALL_STATE(4000)] = 143904, - [SMALL_STATE(4001)] = 143916, - [SMALL_STATE(4002)] = 143928, - [SMALL_STATE(4003)] = 143948, - [SMALL_STATE(4004)] = 143960, - [SMALL_STATE(4005)] = 143976, - [SMALL_STATE(4006)] = 143994, - [SMALL_STATE(4007)] = 144014, - [SMALL_STATE(4008)] = 144034, - [SMALL_STATE(4009)] = 144054, - [SMALL_STATE(4010)] = 144074, - [SMALL_STATE(4011)] = 144090, - [SMALL_STATE(4012)] = 144106, - [SMALL_STATE(4013)] = 144118, - [SMALL_STATE(4014)] = 144130, - [SMALL_STATE(4015)] = 144142, - [SMALL_STATE(4016)] = 144154, - [SMALL_STATE(4017)] = 144170, - [SMALL_STATE(4018)] = 144188, - [SMALL_STATE(4019)] = 144204, - [SMALL_STATE(4020)] = 144220, - [SMALL_STATE(4021)] = 144240, - [SMALL_STATE(4022)] = 144260, - [SMALL_STATE(4023)] = 144274, - [SMALL_STATE(4024)] = 144292, - [SMALL_STATE(4025)] = 144308, - [SMALL_STATE(4026)] = 144324, - [SMALL_STATE(4027)] = 144342, - [SMALL_STATE(4028)] = 144356, - [SMALL_STATE(4029)] = 144368, - [SMALL_STATE(4030)] = 144384, - [SMALL_STATE(4031)] = 144404, - [SMALL_STATE(4032)] = 144416, - [SMALL_STATE(4033)] = 144428, - [SMALL_STATE(4034)] = 144440, - [SMALL_STATE(4035)] = 144452, - [SMALL_STATE(4036)] = 144464, - [SMALL_STATE(4037)] = 144476, - [SMALL_STATE(4038)] = 144496, - [SMALL_STATE(4039)] = 144508, - [SMALL_STATE(4040)] = 144524, - [SMALL_STATE(4041)] = 144540, - [SMALL_STATE(4042)] = 144556, - [SMALL_STATE(4043)] = 144572, - [SMALL_STATE(4044)] = 144592, - [SMALL_STATE(4045)] = 144606, - [SMALL_STATE(4046)] = 144624, - [SMALL_STATE(4047)] = 144636, - [SMALL_STATE(4048)] = 144652, - [SMALL_STATE(4049)] = 144672, - [SMALL_STATE(4050)] = 144690, - [SMALL_STATE(4051)] = 144702, - [SMALL_STATE(4052)] = 144722, - [SMALL_STATE(4053)] = 144734, - [SMALL_STATE(4054)] = 144746, - [SMALL_STATE(4055)] = 144758, - [SMALL_STATE(4056)] = 144774, - [SMALL_STATE(4057)] = 144790, - [SMALL_STATE(4058)] = 144802, - [SMALL_STATE(4059)] = 144814, - [SMALL_STATE(4060)] = 144828, - [SMALL_STATE(4061)] = 144842, - [SMALL_STATE(4062)] = 144854, - [SMALL_STATE(4063)] = 144874, - [SMALL_STATE(4064)] = 144888, - [SMALL_STATE(4065)] = 144908, - [SMALL_STATE(4066)] = 144928, - [SMALL_STATE(4067)] = 144944, - [SMALL_STATE(4068)] = 144962, - [SMALL_STATE(4069)] = 144978, - [SMALL_STATE(4070)] = 144992, - [SMALL_STATE(4071)] = 145012, - [SMALL_STATE(4072)] = 145028, - [SMALL_STATE(4073)] = 145044, - [SMALL_STATE(4074)] = 145062, - [SMALL_STATE(4075)] = 145082, - [SMALL_STATE(4076)] = 145102, - [SMALL_STATE(4077)] = 145122, - [SMALL_STATE(4078)] = 145142, - [SMALL_STATE(4079)] = 145162, - [SMALL_STATE(4080)] = 145174, - [SMALL_STATE(4081)] = 145186, - [SMALL_STATE(4082)] = 145198, - [SMALL_STATE(4083)] = 145214, - [SMALL_STATE(4084)] = 145226, - [SMALL_STATE(4085)] = 145246, - [SMALL_STATE(4086)] = 145258, - [SMALL_STATE(4087)] = 145270, - [SMALL_STATE(4088)] = 145282, - [SMALL_STATE(4089)] = 145302, - [SMALL_STATE(4090)] = 145314, - [SMALL_STATE(4091)] = 145326, - [SMALL_STATE(4092)] = 145338, - [SMALL_STATE(4093)] = 145350, - [SMALL_STATE(4094)] = 145366, - [SMALL_STATE(4095)] = 145378, - [SMALL_STATE(4096)] = 145390, - [SMALL_STATE(4097)] = 145402, - [SMALL_STATE(4098)] = 145414, - [SMALL_STATE(4099)] = 145426, - [SMALL_STATE(4100)] = 145438, - [SMALL_STATE(4101)] = 145450, - [SMALL_STATE(4102)] = 145466, - [SMALL_STATE(4103)] = 145486, - [SMALL_STATE(4104)] = 145502, - [SMALL_STATE(4105)] = 145518, - [SMALL_STATE(4106)] = 145538, - [SMALL_STATE(4107)] = 145558, - [SMALL_STATE(4108)] = 145574, - [SMALL_STATE(4109)] = 145592, - [SMALL_STATE(4110)] = 145612, - [SMALL_STATE(4111)] = 145628, - [SMALL_STATE(4112)] = 145644, - [SMALL_STATE(4113)] = 145660, - [SMALL_STATE(4114)] = 145680, - [SMALL_STATE(4115)] = 145696, - [SMALL_STATE(4116)] = 145714, - [SMALL_STATE(4117)] = 145734, - [SMALL_STATE(4118)] = 145750, - [SMALL_STATE(4119)] = 145762, - [SMALL_STATE(4120)] = 145774, - [SMALL_STATE(4121)] = 145786, - [SMALL_STATE(4122)] = 145798, - [SMALL_STATE(4123)] = 145810, - [SMALL_STATE(4124)] = 145822, - [SMALL_STATE(4125)] = 145834, - [SMALL_STATE(4126)] = 145850, - [SMALL_STATE(4127)] = 145866, - [SMALL_STATE(4128)] = 145882, - [SMALL_STATE(4129)] = 145894, - [SMALL_STATE(4130)] = 145906, - [SMALL_STATE(4131)] = 145918, - [SMALL_STATE(4132)] = 145934, - [SMALL_STATE(4133)] = 145954, - [SMALL_STATE(4134)] = 145974, - [SMALL_STATE(4135)] = 145990, - [SMALL_STATE(4136)] = 146002, - [SMALL_STATE(4137)] = 146020, - [SMALL_STATE(4138)] = 146036, - [SMALL_STATE(4139)] = 146052, - [SMALL_STATE(4140)] = 146068, - [SMALL_STATE(4141)] = 146084, - [SMALL_STATE(4142)] = 146100, - [SMALL_STATE(4143)] = 146118, - [SMALL_STATE(4144)] = 146134, - [SMALL_STATE(4145)] = 146146, - [SMALL_STATE(4146)] = 146158, - [SMALL_STATE(4147)] = 146170, - [SMALL_STATE(4148)] = 146182, - [SMALL_STATE(4149)] = 146194, - [SMALL_STATE(4150)] = 146206, - [SMALL_STATE(4151)] = 146222, - [SMALL_STATE(4152)] = 146234, - [SMALL_STATE(4153)] = 146246, - [SMALL_STATE(4154)] = 146258, - [SMALL_STATE(4155)] = 146278, - [SMALL_STATE(4156)] = 146294, - [SMALL_STATE(4157)] = 146310, - [SMALL_STATE(4158)] = 146328, - [SMALL_STATE(4159)] = 146344, - [SMALL_STATE(4160)] = 146356, - [SMALL_STATE(4161)] = 146372, - [SMALL_STATE(4162)] = 146388, - [SMALL_STATE(4163)] = 146406, - [SMALL_STATE(4164)] = 146422, - [SMALL_STATE(4165)] = 146438, - [SMALL_STATE(4166)] = 146454, - [SMALL_STATE(4167)] = 146470, - [SMALL_STATE(4168)] = 146490, - [SMALL_STATE(4169)] = 146502, - [SMALL_STATE(4170)] = 146518, - [SMALL_STATE(4171)] = 146536, - [SMALL_STATE(4172)] = 146552, - [SMALL_STATE(4173)] = 146568, - [SMALL_STATE(4174)] = 146584, - [SMALL_STATE(4175)] = 146598, - [SMALL_STATE(4176)] = 146612, - [SMALL_STATE(4177)] = 146628, - [SMALL_STATE(4178)] = 146644, - [SMALL_STATE(4179)] = 146660, - [SMALL_STATE(4180)] = 146676, - [SMALL_STATE(4181)] = 146692, - [SMALL_STATE(4182)] = 146712, - [SMALL_STATE(4183)] = 146728, - [SMALL_STATE(4184)] = 146744, - [SMALL_STATE(4185)] = 146760, - [SMALL_STATE(4186)] = 146780, - [SMALL_STATE(4187)] = 146796, - [SMALL_STATE(4188)] = 146810, - [SMALL_STATE(4189)] = 146826, - [SMALL_STATE(4190)] = 146842, - [SMALL_STATE(4191)] = 146856, - [SMALL_STATE(4192)] = 146872, - [SMALL_STATE(4193)] = 146888, - [SMALL_STATE(4194)] = 146908, - [SMALL_STATE(4195)] = 146928, - [SMALL_STATE(4196)] = 146942, - [SMALL_STATE(4197)] = 146956, - [SMALL_STATE(4198)] = 146972, - [SMALL_STATE(4199)] = 146992, - [SMALL_STATE(4200)] = 147008, - [SMALL_STATE(4201)] = 147028, - [SMALL_STATE(4202)] = 147048, - [SMALL_STATE(4203)] = 147060, - [SMALL_STATE(4204)] = 147072, - [SMALL_STATE(4205)] = 147092, - [SMALL_STATE(4206)] = 147108, - [SMALL_STATE(4207)] = 147124, - [SMALL_STATE(4208)] = 147140, - [SMALL_STATE(4209)] = 147156, - [SMALL_STATE(4210)] = 147174, - [SMALL_STATE(4211)] = 147190, - [SMALL_STATE(4212)] = 147210, - [SMALL_STATE(4213)] = 147230, - [SMALL_STATE(4214)] = 147246, - [SMALL_STATE(4215)] = 147266, - [SMALL_STATE(4216)] = 147286, - [SMALL_STATE(4217)] = 147302, - [SMALL_STATE(4218)] = 147318, - [SMALL_STATE(4219)] = 147334, - [SMALL_STATE(4220)] = 147350, - [SMALL_STATE(4221)] = 147366, - [SMALL_STATE(4222)] = 147382, - [SMALL_STATE(4223)] = 147402, - [SMALL_STATE(4224)] = 147420, - [SMALL_STATE(4225)] = 147436, - [SMALL_STATE(4226)] = 147452, - [SMALL_STATE(4227)] = 147468, - [SMALL_STATE(4228)] = 147484, - [SMALL_STATE(4229)] = 147504, - [SMALL_STATE(4230)] = 147518, - [SMALL_STATE(4231)] = 147532, - [SMALL_STATE(4232)] = 147546, - [SMALL_STATE(4233)] = 147560, - [SMALL_STATE(4234)] = 147574, - [SMALL_STATE(4235)] = 147588, - [SMALL_STATE(4236)] = 147604, - [SMALL_STATE(4237)] = 147620, - [SMALL_STATE(4238)] = 147640, - [SMALL_STATE(4239)] = 147656, - [SMALL_STATE(4240)] = 147672, - [SMALL_STATE(4241)] = 147686, - [SMALL_STATE(4242)] = 147700, - [SMALL_STATE(4243)] = 147716, - [SMALL_STATE(4244)] = 147732, - [SMALL_STATE(4245)] = 147752, - [SMALL_STATE(4246)] = 147768, - [SMALL_STATE(4247)] = 147788, - [SMALL_STATE(4248)] = 147808, - [SMALL_STATE(4249)] = 147824, - [SMALL_STATE(4250)] = 147842, - [SMALL_STATE(4251)] = 147858, - [SMALL_STATE(4252)] = 147878, - [SMALL_STATE(4253)] = 147890, - [SMALL_STATE(4254)] = 147904, - [SMALL_STATE(4255)] = 147918, - [SMALL_STATE(4256)] = 147932, - [SMALL_STATE(4257)] = 147946, - [SMALL_STATE(4258)] = 147958, - [SMALL_STATE(4259)] = 147978, - [SMALL_STATE(4260)] = 147990, - [SMALL_STATE(4261)] = 148010, - [SMALL_STATE(4262)] = 148022, - [SMALL_STATE(4263)] = 148034, - [SMALL_STATE(4264)] = 148050, - [SMALL_STATE(4265)] = 148066, - [SMALL_STATE(4266)] = 148078, - [SMALL_STATE(4267)] = 148090, - [SMALL_STATE(4268)] = 148106, - [SMALL_STATE(4269)] = 148120, - [SMALL_STATE(4270)] = 148134, - [SMALL_STATE(4271)] = 148146, - [SMALL_STATE(4272)] = 148158, - [SMALL_STATE(4273)] = 148178, - [SMALL_STATE(4274)] = 148190, - [SMALL_STATE(4275)] = 148202, - [SMALL_STATE(4276)] = 148218, - [SMALL_STATE(4277)] = 148238, - [SMALL_STATE(4278)] = 148254, - [SMALL_STATE(4279)] = 148270, - [SMALL_STATE(4280)] = 148286, - [SMALL_STATE(4281)] = 148302, - [SMALL_STATE(4282)] = 148322, - [SMALL_STATE(4283)] = 148338, - [SMALL_STATE(4284)] = 148354, - [SMALL_STATE(4285)] = 148374, - [SMALL_STATE(4286)] = 148390, - [SMALL_STATE(4287)] = 148406, - [SMALL_STATE(4288)] = 148426, - [SMALL_STATE(4289)] = 148442, - [SMALL_STATE(4290)] = 148454, - [SMALL_STATE(4291)] = 148474, - [SMALL_STATE(4292)] = 148494, - [SMALL_STATE(4293)] = 148514, - [SMALL_STATE(4294)] = 148530, - [SMALL_STATE(4295)] = 148550, - [SMALL_STATE(4296)] = 148566, - [SMALL_STATE(4297)] = 148582, - [SMALL_STATE(4298)] = 148598, - [SMALL_STATE(4299)] = 148614, - [SMALL_STATE(4300)] = 148626, - [SMALL_STATE(4301)] = 148638, - [SMALL_STATE(4302)] = 148656, - [SMALL_STATE(4303)] = 148668, - [SMALL_STATE(4304)] = 148686, - [SMALL_STATE(4305)] = 148700, - [SMALL_STATE(4306)] = 148714, - [SMALL_STATE(4307)] = 148730, - [SMALL_STATE(4308)] = 148746, - [SMALL_STATE(4309)] = 148758, - [SMALL_STATE(4310)] = 148774, - [SMALL_STATE(4311)] = 148794, - [SMALL_STATE(4312)] = 148806, - [SMALL_STATE(4313)] = 148822, - [SMALL_STATE(4314)] = 148838, - [SMALL_STATE(4315)] = 148854, - [SMALL_STATE(4316)] = 148868, - [SMALL_STATE(4317)] = 148882, - [SMALL_STATE(4318)] = 148898, - [SMALL_STATE(4319)] = 148918, - [SMALL_STATE(4320)] = 148934, - [SMALL_STATE(4321)] = 148948, - [SMALL_STATE(4322)] = 148962, - [SMALL_STATE(4323)] = 148978, - [SMALL_STATE(4324)] = 148994, - [SMALL_STATE(4325)] = 149010, - [SMALL_STATE(4326)] = 149026, - [SMALL_STATE(4327)] = 149042, - [SMALL_STATE(4328)] = 149058, - [SMALL_STATE(4329)] = 149074, - [SMALL_STATE(4330)] = 149090, - [SMALL_STATE(4331)] = 149110, - [SMALL_STATE(4332)] = 149126, - [SMALL_STATE(4333)] = 149142, - [SMALL_STATE(4334)] = 149162, - [SMALL_STATE(4335)] = 149178, - [SMALL_STATE(4336)] = 149194, - [SMALL_STATE(4337)] = 149210, - [SMALL_STATE(4338)] = 149224, - [SMALL_STATE(4339)] = 149238, - [SMALL_STATE(4340)] = 149252, - [SMALL_STATE(4341)] = 149268, - [SMALL_STATE(4342)] = 149282, - [SMALL_STATE(4343)] = 149296, - [SMALL_STATE(4344)] = 149310, - [SMALL_STATE(4345)] = 149328, - [SMALL_STATE(4346)] = 149344, - [SMALL_STATE(4347)] = 149358, - [SMALL_STATE(4348)] = 149372, - [SMALL_STATE(4349)] = 149384, - [SMALL_STATE(4350)] = 149404, - [SMALL_STATE(4351)] = 149416, - [SMALL_STATE(4352)] = 149432, - [SMALL_STATE(4353)] = 149448, - [SMALL_STATE(4354)] = 149464, - [SMALL_STATE(4355)] = 149480, - [SMALL_STATE(4356)] = 149492, - [SMALL_STATE(4357)] = 149504, - [SMALL_STATE(4358)] = 149516, - [SMALL_STATE(4359)] = 149532, - [SMALL_STATE(4360)] = 149548, - [SMALL_STATE(4361)] = 149564, - [SMALL_STATE(4362)] = 149578, - [SMALL_STATE(4363)] = 149592, - [SMALL_STATE(4364)] = 149608, - [SMALL_STATE(4365)] = 149620, - [SMALL_STATE(4366)] = 149640, - [SMALL_STATE(4367)] = 149652, - [SMALL_STATE(4368)] = 149672, - [SMALL_STATE(4369)] = 149684, - [SMALL_STATE(4370)] = 149704, - [SMALL_STATE(4371)] = 149716, - [SMALL_STATE(4372)] = 149728, - [SMALL_STATE(4373)] = 149744, - [SMALL_STATE(4374)] = 149760, - [SMALL_STATE(4375)] = 149778, - [SMALL_STATE(4376)] = 149790, - [SMALL_STATE(4377)] = 149802, - [SMALL_STATE(4378)] = 149814, - [SMALL_STATE(4379)] = 149826, - [SMALL_STATE(4380)] = 149846, - [SMALL_STATE(4381)] = 149862, - [SMALL_STATE(4382)] = 149882, - [SMALL_STATE(4383)] = 149894, - [SMALL_STATE(4384)] = 149910, - [SMALL_STATE(4385)] = 149926, - [SMALL_STATE(4386)] = 149946, - [SMALL_STATE(4387)] = 149966, - [SMALL_STATE(4388)] = 149982, - [SMALL_STATE(4389)] = 150002, - [SMALL_STATE(4390)] = 150014, - [SMALL_STATE(4391)] = 150030, - [SMALL_STATE(4392)] = 150042, - [SMALL_STATE(4393)] = 150054, - [SMALL_STATE(4394)] = 150066, - [SMALL_STATE(4395)] = 150082, - [SMALL_STATE(4396)] = 150100, - [SMALL_STATE(4397)] = 150116, - [SMALL_STATE(4398)] = 150132, - [SMALL_STATE(4399)] = 150144, - [SMALL_STATE(4400)] = 150156, - [SMALL_STATE(4401)] = 150172, - [SMALL_STATE(4402)] = 150186, - [SMALL_STATE(4403)] = 150204, - [SMALL_STATE(4404)] = 150222, - [SMALL_STATE(4405)] = 150238, - [SMALL_STATE(4406)] = 150254, - [SMALL_STATE(4407)] = 150270, - [SMALL_STATE(4408)] = 150286, - [SMALL_STATE(4409)] = 150302, - [SMALL_STATE(4410)] = 150322, - [SMALL_STATE(4411)] = 150342, - [SMALL_STATE(4412)] = 150362, - [SMALL_STATE(4413)] = 150382, - [SMALL_STATE(4414)] = 150402, - [SMALL_STATE(4415)] = 150418, - [SMALL_STATE(4416)] = 150430, - [SMALL_STATE(4417)] = 150442, - [SMALL_STATE(4418)] = 150456, - [SMALL_STATE(4419)] = 150472, - [SMALL_STATE(4420)] = 150486, - [SMALL_STATE(4421)] = 150502, - [SMALL_STATE(4422)] = 150516, - [SMALL_STATE(4423)] = 150532, - [SMALL_STATE(4424)] = 150548, - [SMALL_STATE(4425)] = 150566, - [SMALL_STATE(4426)] = 150582, - [SMALL_STATE(4427)] = 150598, - [SMALL_STATE(4428)] = 150612, - [SMALL_STATE(4429)] = 150624, - [SMALL_STATE(4430)] = 150640, - [SMALL_STATE(4431)] = 150656, - [SMALL_STATE(4432)] = 150668, - [SMALL_STATE(4433)] = 150684, - [SMALL_STATE(4434)] = 150700, - [SMALL_STATE(4435)] = 150712, - [SMALL_STATE(4436)] = 150724, - [SMALL_STATE(4437)] = 150740, - [SMALL_STATE(4438)] = 150754, - [SMALL_STATE(4439)] = 150770, - [SMALL_STATE(4440)] = 150786, - [SMALL_STATE(4441)] = 150800, - [SMALL_STATE(4442)] = 150814, - [SMALL_STATE(4443)] = 150830, - [SMALL_STATE(4444)] = 150846, - [SMALL_STATE(4445)] = 150866, - [SMALL_STATE(4446)] = 150882, - [SMALL_STATE(4447)] = 150898, - [SMALL_STATE(4448)] = 150914, - [SMALL_STATE(4449)] = 150928, - [SMALL_STATE(4450)] = 150940, - [SMALL_STATE(4451)] = 150952, - [SMALL_STATE(4452)] = 150968, - [SMALL_STATE(4453)] = 150984, - [SMALL_STATE(4454)] = 150996, - [SMALL_STATE(4455)] = 151008, - [SMALL_STATE(4456)] = 151020, - [SMALL_STATE(4457)] = 151032, - [SMALL_STATE(4458)] = 151052, - [SMALL_STATE(4459)] = 151068, - [SMALL_STATE(4460)] = 151084, - [SMALL_STATE(4461)] = 151104, - [SMALL_STATE(4462)] = 151123, - [SMALL_STATE(4463)] = 151140, - [SMALL_STATE(4464)] = 151157, - [SMALL_STATE(4465)] = 151172, - [SMALL_STATE(4466)] = 151189, - [SMALL_STATE(4467)] = 151206, - [SMALL_STATE(4468)] = 151223, - [SMALL_STATE(4469)] = 151240, - [SMALL_STATE(4470)] = 151257, - [SMALL_STATE(4471)] = 151272, - [SMALL_STATE(4472)] = 151289, - [SMALL_STATE(4473)] = 151304, - [SMALL_STATE(4474)] = 151319, - [SMALL_STATE(4475)] = 151334, - [SMALL_STATE(4476)] = 151351, - [SMALL_STATE(4477)] = 151366, - [SMALL_STATE(4478)] = 151381, - [SMALL_STATE(4479)] = 151396, - [SMALL_STATE(4480)] = 151413, - [SMALL_STATE(4481)] = 151430, - [SMALL_STATE(4482)] = 151447, - [SMALL_STATE(4483)] = 151464, - [SMALL_STATE(4484)] = 151481, - [SMALL_STATE(4485)] = 151496, - [SMALL_STATE(4486)] = 151513, - [SMALL_STATE(4487)] = 151530, - [SMALL_STATE(4488)] = 151545, - [SMALL_STATE(4489)] = 151562, - [SMALL_STATE(4490)] = 151577, - [SMALL_STATE(4491)] = 151594, - [SMALL_STATE(4492)] = 151611, - [SMALL_STATE(4493)] = 151628, - [SMALL_STATE(4494)] = 151641, - [SMALL_STATE(4495)] = 151654, - [SMALL_STATE(4496)] = 151671, - [SMALL_STATE(4497)] = 151686, - [SMALL_STATE(4498)] = 151703, - [SMALL_STATE(4499)] = 151720, - [SMALL_STATE(4500)] = 151737, - [SMALL_STATE(4501)] = 151754, - [SMALL_STATE(4502)] = 151771, - [SMALL_STATE(4503)] = 151788, - [SMALL_STATE(4504)] = 151805, - [SMALL_STATE(4505)] = 151822, - [SMALL_STATE(4506)] = 151839, - [SMALL_STATE(4507)] = 151854, - [SMALL_STATE(4508)] = 151871, - [SMALL_STATE(4509)] = 151888, - [SMALL_STATE(4510)] = 151905, - [SMALL_STATE(4511)] = 151916, - [SMALL_STATE(4512)] = 151933, - [SMALL_STATE(4513)] = 151950, - [SMALL_STATE(4514)] = 151967, - [SMALL_STATE(4515)] = 151984, - [SMALL_STATE(4516)] = 152001, - [SMALL_STATE(4517)] = 152016, - [SMALL_STATE(4518)] = 152031, - [SMALL_STATE(4519)] = 152048, - [SMALL_STATE(4520)] = 152065, - [SMALL_STATE(4521)] = 152082, - [SMALL_STATE(4522)] = 152095, - [SMALL_STATE(4523)] = 152114, - [SMALL_STATE(4524)] = 152133, - [SMALL_STATE(4525)] = 152150, - [SMALL_STATE(4526)] = 152167, - [SMALL_STATE(4527)] = 152178, - [SMALL_STATE(4528)] = 152195, - [SMALL_STATE(4529)] = 152212, - [SMALL_STATE(4530)] = 152229, - [SMALL_STATE(4531)] = 152246, - [SMALL_STATE(4532)] = 152261, - [SMALL_STATE(4533)] = 152278, - [SMALL_STATE(4534)] = 152293, - [SMALL_STATE(4535)] = 152306, - [SMALL_STATE(4536)] = 152323, - [SMALL_STATE(4537)] = 152340, - [SMALL_STATE(4538)] = 152357, - [SMALL_STATE(4539)] = 152374, - [SMALL_STATE(4540)] = 152391, - [SMALL_STATE(4541)] = 152406, - [SMALL_STATE(4542)] = 152423, - [SMALL_STATE(4543)] = 152440, - [SMALL_STATE(4544)] = 152457, - [SMALL_STATE(4545)] = 152474, - [SMALL_STATE(4546)] = 152491, - [SMALL_STATE(4547)] = 152508, - [SMALL_STATE(4548)] = 152527, - [SMALL_STATE(4549)] = 152544, - [SMALL_STATE(4550)] = 152561, - [SMALL_STATE(4551)] = 152578, - [SMALL_STATE(4552)] = 152597, - [SMALL_STATE(4553)] = 152614, - [SMALL_STATE(4554)] = 152631, - [SMALL_STATE(4555)] = 152646, - [SMALL_STATE(4556)] = 152657, - [SMALL_STATE(4557)] = 152674, - [SMALL_STATE(4558)] = 152691, - [SMALL_STATE(4559)] = 152708, - [SMALL_STATE(4560)] = 152723, - [SMALL_STATE(4561)] = 152740, - [SMALL_STATE(4562)] = 152751, - [SMALL_STATE(4563)] = 152768, - [SMALL_STATE(4564)] = 152785, - [SMALL_STATE(4565)] = 152802, - [SMALL_STATE(4566)] = 152819, - [SMALL_STATE(4567)] = 152834, - [SMALL_STATE(4568)] = 152851, - [SMALL_STATE(4569)] = 152868, - [SMALL_STATE(4570)] = 152881, - [SMALL_STATE(4571)] = 152896, - [SMALL_STATE(4572)] = 152913, - [SMALL_STATE(4573)] = 152930, - [SMALL_STATE(4574)] = 152947, - [SMALL_STATE(4575)] = 152964, - [SMALL_STATE(4576)] = 152979, - [SMALL_STATE(4577)] = 152996, - [SMALL_STATE(4578)] = 153013, - [SMALL_STATE(4579)] = 153030, - [SMALL_STATE(4580)] = 153045, - [SMALL_STATE(4581)] = 153062, - [SMALL_STATE(4582)] = 153079, - [SMALL_STATE(4583)] = 153094, - [SMALL_STATE(4584)] = 153111, - [SMALL_STATE(4585)] = 153126, - [SMALL_STATE(4586)] = 153145, - [SMALL_STATE(4587)] = 153158, - [SMALL_STATE(4588)] = 153173, - [SMALL_STATE(4589)] = 153190, - [SMALL_STATE(4590)] = 153207, - [SMALL_STATE(4591)] = 153224, - [SMALL_STATE(4592)] = 153241, - [SMALL_STATE(4593)] = 153258, - [SMALL_STATE(4594)] = 153275, - [SMALL_STATE(4595)] = 153292, - [SMALL_STATE(4596)] = 153309, - [SMALL_STATE(4597)] = 153326, - [SMALL_STATE(4598)] = 153343, - [SMALL_STATE(4599)] = 153360, - [SMALL_STATE(4600)] = 153377, - [SMALL_STATE(4601)] = 153392, - [SMALL_STATE(4602)] = 153409, - [SMALL_STATE(4603)] = 153426, - [SMALL_STATE(4604)] = 153443, - [SMALL_STATE(4605)] = 153460, - [SMALL_STATE(4606)] = 153470, - [SMALL_STATE(4607)] = 153484, - [SMALL_STATE(4608)] = 153498, - [SMALL_STATE(4609)] = 153512, - [SMALL_STATE(4610)] = 153526, - [SMALL_STATE(4611)] = 153540, - [SMALL_STATE(4612)] = 153550, - [SMALL_STATE(4613)] = 153564, - [SMALL_STATE(4614)] = 153574, - [SMALL_STATE(4615)] = 153584, - [SMALL_STATE(4616)] = 153598, - [SMALL_STATE(4617)] = 153608, - [SMALL_STATE(4618)] = 153622, - [SMALL_STATE(4619)] = 153636, - [SMALL_STATE(4620)] = 153650, - [SMALL_STATE(4621)] = 153664, - [SMALL_STATE(4622)] = 153674, - [SMALL_STATE(4623)] = 153688, - [SMALL_STATE(4624)] = 153700, - [SMALL_STATE(4625)] = 153714, - [SMALL_STATE(4626)] = 153724, - [SMALL_STATE(4627)] = 153734, - [SMALL_STATE(4628)] = 153744, - [SMALL_STATE(4629)] = 153754, - [SMALL_STATE(4630)] = 153766, - [SMALL_STATE(4631)] = 153776, - [SMALL_STATE(4632)] = 153786, - [SMALL_STATE(4633)] = 153796, - [SMALL_STATE(4634)] = 153810, - [SMALL_STATE(4635)] = 153820, - [SMALL_STATE(4636)] = 153830, - [SMALL_STATE(4637)] = 153840, - [SMALL_STATE(4638)] = 153850, - [SMALL_STATE(4639)] = 153860, - [SMALL_STATE(4640)] = 153870, - [SMALL_STATE(4641)] = 153884, - [SMALL_STATE(4642)] = 153898, - [SMALL_STATE(4643)] = 153912, - [SMALL_STATE(4644)] = 153922, - [SMALL_STATE(4645)] = 153932, - [SMALL_STATE(4646)] = 153942, - [SMALL_STATE(4647)] = 153956, - [SMALL_STATE(4648)] = 153966, - [SMALL_STATE(4649)] = 153980, - [SMALL_STATE(4650)] = 153994, - [SMALL_STATE(4651)] = 154008, - [SMALL_STATE(4652)] = 154018, - [SMALL_STATE(4653)] = 154032, - [SMALL_STATE(4654)] = 154042, - [SMALL_STATE(4655)] = 154056, - [SMALL_STATE(4656)] = 154070, - [SMALL_STATE(4657)] = 154080, - [SMALL_STATE(4658)] = 154094, - [SMALL_STATE(4659)] = 154108, - [SMALL_STATE(4660)] = 154122, - [SMALL_STATE(4661)] = 154132, - [SMALL_STATE(4662)] = 154142, - [SMALL_STATE(4663)] = 154152, - [SMALL_STATE(4664)] = 154166, - [SMALL_STATE(4665)] = 154176, - [SMALL_STATE(4666)] = 154190, - [SMALL_STATE(4667)] = 154204, - [SMALL_STATE(4668)] = 154218, - [SMALL_STATE(4669)] = 154228, - [SMALL_STATE(4670)] = 154238, - [SMALL_STATE(4671)] = 154248, - [SMALL_STATE(4672)] = 154258, - [SMALL_STATE(4673)] = 154270, - [SMALL_STATE(4674)] = 154284, - [SMALL_STATE(4675)] = 154298, - [SMALL_STATE(4676)] = 154312, - [SMALL_STATE(4677)] = 154326, - [SMALL_STATE(4678)] = 154336, - [SMALL_STATE(4679)] = 154350, - [SMALL_STATE(4680)] = 154360, - [SMALL_STATE(4681)] = 154370, - [SMALL_STATE(4682)] = 154380, - [SMALL_STATE(4683)] = 154394, - [SMALL_STATE(4684)] = 154408, - [SMALL_STATE(4685)] = 154422, - [SMALL_STATE(4686)] = 154432, - [SMALL_STATE(4687)] = 154446, - [SMALL_STATE(4688)] = 154460, - [SMALL_STATE(4689)] = 154470, - [SMALL_STATE(4690)] = 154480, - [SMALL_STATE(4691)] = 154494, - [SMALL_STATE(4692)] = 154508, - [SMALL_STATE(4693)] = 154522, - [SMALL_STATE(4694)] = 154536, - [SMALL_STATE(4695)] = 154546, - [SMALL_STATE(4696)] = 154560, - [SMALL_STATE(4697)] = 154570, - [SMALL_STATE(4698)] = 154580, - [SMALL_STATE(4699)] = 154590, - [SMALL_STATE(4700)] = 154600, - [SMALL_STATE(4701)] = 154610, - [SMALL_STATE(4702)] = 154620, - [SMALL_STATE(4703)] = 154630, - [SMALL_STATE(4704)] = 154640, - [SMALL_STATE(4705)] = 154650, - [SMALL_STATE(4706)] = 154660, - [SMALL_STATE(4707)] = 154670, - [SMALL_STATE(4708)] = 154684, - [SMALL_STATE(4709)] = 154698, - [SMALL_STATE(4710)] = 154708, - [SMALL_STATE(4711)] = 154718, - [SMALL_STATE(4712)] = 154732, - [SMALL_STATE(4713)] = 154742, - [SMALL_STATE(4714)] = 154756, - [SMALL_STATE(4715)] = 154768, - [SMALL_STATE(4716)] = 154782, - [SMALL_STATE(4717)] = 154792, - [SMALL_STATE(4718)] = 154802, - [SMALL_STATE(4719)] = 154816, - [SMALL_STATE(4720)] = 154826, - [SMALL_STATE(4721)] = 154836, - [SMALL_STATE(4722)] = 154850, - [SMALL_STATE(4723)] = 154860, - [SMALL_STATE(4724)] = 154874, - [SMALL_STATE(4725)] = 154888, - [SMALL_STATE(4726)] = 154898, - [SMALL_STATE(4727)] = 154912, - [SMALL_STATE(4728)] = 154924, - [SMALL_STATE(4729)] = 154934, - [SMALL_STATE(4730)] = 154948, - [SMALL_STATE(4731)] = 154958, - [SMALL_STATE(4732)] = 154972, - [SMALL_STATE(4733)] = 154982, - [SMALL_STATE(4734)] = 154992, - [SMALL_STATE(4735)] = 155002, - [SMALL_STATE(4736)] = 155012, - [SMALL_STATE(4737)] = 155022, - [SMALL_STATE(4738)] = 155032, - [SMALL_STATE(4739)] = 155044, - [SMALL_STATE(4740)] = 155054, - [SMALL_STATE(4741)] = 155064, - [SMALL_STATE(4742)] = 155074, - [SMALL_STATE(4743)] = 155084, - [SMALL_STATE(4744)] = 155098, - [SMALL_STATE(4745)] = 155108, - [SMALL_STATE(4746)] = 155118, - [SMALL_STATE(4747)] = 155128, - [SMALL_STATE(4748)] = 155138, - [SMALL_STATE(4749)] = 155148, - [SMALL_STATE(4750)] = 155162, - [SMALL_STATE(4751)] = 155176, - [SMALL_STATE(4752)] = 155186, - [SMALL_STATE(4753)] = 155196, - [SMALL_STATE(4754)] = 155210, - [SMALL_STATE(4755)] = 155220, - [SMALL_STATE(4756)] = 155230, - [SMALL_STATE(4757)] = 155240, - [SMALL_STATE(4758)] = 155250, - [SMALL_STATE(4759)] = 155260, - [SMALL_STATE(4760)] = 155270, - [SMALL_STATE(4761)] = 155284, - [SMALL_STATE(4762)] = 155294, - [SMALL_STATE(4763)] = 155304, - [SMALL_STATE(4764)] = 155314, - [SMALL_STATE(4765)] = 155328, - [SMALL_STATE(4766)] = 155338, - [SMALL_STATE(4767)] = 155348, - [SMALL_STATE(4768)] = 155358, - [SMALL_STATE(4769)] = 155370, - [SMALL_STATE(4770)] = 155380, - [SMALL_STATE(4771)] = 155390, - [SMALL_STATE(4772)] = 155400, - [SMALL_STATE(4773)] = 155410, - [SMALL_STATE(4774)] = 155420, - [SMALL_STATE(4775)] = 155432, - [SMALL_STATE(4776)] = 155444, - [SMALL_STATE(4777)] = 155454, - [SMALL_STATE(4778)] = 155464, - [SMALL_STATE(4779)] = 155474, - [SMALL_STATE(4780)] = 155484, - [SMALL_STATE(4781)] = 155494, - [SMALL_STATE(4782)] = 155504, - [SMALL_STATE(4783)] = 155514, - [SMALL_STATE(4784)] = 155528, - [SMALL_STATE(4785)] = 155542, - [SMALL_STATE(4786)] = 155552, - [SMALL_STATE(4787)] = 155566, - [SMALL_STATE(4788)] = 155580, - [SMALL_STATE(4789)] = 155594, - [SMALL_STATE(4790)] = 155608, - [SMALL_STATE(4791)] = 155618, - [SMALL_STATE(4792)] = 155632, - [SMALL_STATE(4793)] = 155642, - [SMALL_STATE(4794)] = 155656, - [SMALL_STATE(4795)] = 155666, - [SMALL_STATE(4796)] = 155676, - [SMALL_STATE(4797)] = 155686, - [SMALL_STATE(4798)] = 155696, - [SMALL_STATE(4799)] = 155706, - [SMALL_STATE(4800)] = 155716, - [SMALL_STATE(4801)] = 155728, - [SMALL_STATE(4802)] = 155742, - [SMALL_STATE(4803)] = 155752, - [SMALL_STATE(4804)] = 155762, - [SMALL_STATE(4805)] = 155772, - [SMALL_STATE(4806)] = 155786, - [SMALL_STATE(4807)] = 155796, - [SMALL_STATE(4808)] = 155810, - [SMALL_STATE(4809)] = 155820, - [SMALL_STATE(4810)] = 155834, - [SMALL_STATE(4811)] = 155844, - [SMALL_STATE(4812)] = 155854, - [SMALL_STATE(4813)] = 155864, - [SMALL_STATE(4814)] = 155874, - [SMALL_STATE(4815)] = 155884, - [SMALL_STATE(4816)] = 155898, - [SMALL_STATE(4817)] = 155908, - [SMALL_STATE(4818)] = 155922, - [SMALL_STATE(4819)] = 155932, - [SMALL_STATE(4820)] = 155946, - [SMALL_STATE(4821)] = 155956, - [SMALL_STATE(4822)] = 155970, - [SMALL_STATE(4823)] = 155980, - [SMALL_STATE(4824)] = 155994, - [SMALL_STATE(4825)] = 156004, - [SMALL_STATE(4826)] = 156014, - [SMALL_STATE(4827)] = 156028, - [SMALL_STATE(4828)] = 156038, - [SMALL_STATE(4829)] = 156052, - [SMALL_STATE(4830)] = 156062, - [SMALL_STATE(4831)] = 156076, - [SMALL_STATE(4832)] = 156086, - [SMALL_STATE(4833)] = 156096, - [SMALL_STATE(4834)] = 156106, - [SMALL_STATE(4835)] = 156120, - [SMALL_STATE(4836)] = 156132, - [SMALL_STATE(4837)] = 156142, - [SMALL_STATE(4838)] = 156152, - [SMALL_STATE(4839)] = 156162, - [SMALL_STATE(4840)] = 156172, - [SMALL_STATE(4841)] = 156182, - [SMALL_STATE(4842)] = 156196, - [SMALL_STATE(4843)] = 156206, - [SMALL_STATE(4844)] = 156216, - [SMALL_STATE(4845)] = 156226, - [SMALL_STATE(4846)] = 156236, - [SMALL_STATE(4847)] = 156246, - [SMALL_STATE(4848)] = 156260, - [SMALL_STATE(4849)] = 156274, - [SMALL_STATE(4850)] = 156288, - [SMALL_STATE(4851)] = 156298, - [SMALL_STATE(4852)] = 156308, - [SMALL_STATE(4853)] = 156318, - [SMALL_STATE(4854)] = 156328, - [SMALL_STATE(4855)] = 156338, - [SMALL_STATE(4856)] = 156352, - [SMALL_STATE(4857)] = 156362, - [SMALL_STATE(4858)] = 156372, - [SMALL_STATE(4859)] = 156382, - [SMALL_STATE(4860)] = 156392, - [SMALL_STATE(4861)] = 156402, - [SMALL_STATE(4862)] = 156416, - [SMALL_STATE(4863)] = 156426, - [SMALL_STATE(4864)] = 156436, - [SMALL_STATE(4865)] = 156446, - [SMALL_STATE(4866)] = 156456, - [SMALL_STATE(4867)] = 156466, - [SMALL_STATE(4868)] = 156476, - [SMALL_STATE(4869)] = 156490, - [SMALL_STATE(4870)] = 156500, - [SMALL_STATE(4871)] = 156514, - [SMALL_STATE(4872)] = 156524, - [SMALL_STATE(4873)] = 156534, - [SMALL_STATE(4874)] = 156548, - [SMALL_STATE(4875)] = 156558, - [SMALL_STATE(4876)] = 156568, - [SMALL_STATE(4877)] = 156582, - [SMALL_STATE(4878)] = 156592, - [SMALL_STATE(4879)] = 156602, - [SMALL_STATE(4880)] = 156612, - [SMALL_STATE(4881)] = 156622, - [SMALL_STATE(4882)] = 156636, - [SMALL_STATE(4883)] = 156646, - [SMALL_STATE(4884)] = 156656, - [SMALL_STATE(4885)] = 156666, - [SMALL_STATE(4886)] = 156680, - [SMALL_STATE(4887)] = 156690, - [SMALL_STATE(4888)] = 156704, - [SMALL_STATE(4889)] = 156714, - [SMALL_STATE(4890)] = 156728, - [SMALL_STATE(4891)] = 156738, - [SMALL_STATE(4892)] = 156748, - [SMALL_STATE(4893)] = 156758, - [SMALL_STATE(4894)] = 156768, - [SMALL_STATE(4895)] = 156778, - [SMALL_STATE(4896)] = 156788, - [SMALL_STATE(4897)] = 156798, - [SMALL_STATE(4898)] = 156808, - [SMALL_STATE(4899)] = 156818, - [SMALL_STATE(4900)] = 156828, - [SMALL_STATE(4901)] = 156838, - [SMALL_STATE(4902)] = 156852, - [SMALL_STATE(4903)] = 156862, - [SMALL_STATE(4904)] = 156872, - [SMALL_STATE(4905)] = 156882, - [SMALL_STATE(4906)] = 156892, - [SMALL_STATE(4907)] = 156902, - [SMALL_STATE(4908)] = 156912, - [SMALL_STATE(4909)] = 156922, - [SMALL_STATE(4910)] = 156932, - [SMALL_STATE(4911)] = 156942, - [SMALL_STATE(4912)] = 156952, - [SMALL_STATE(4913)] = 156966, - [SMALL_STATE(4914)] = 156976, - [SMALL_STATE(4915)] = 156986, - [SMALL_STATE(4916)] = 156996, - [SMALL_STATE(4917)] = 157006, - [SMALL_STATE(4918)] = 157016, - [SMALL_STATE(4919)] = 157026, - [SMALL_STATE(4920)] = 157040, - [SMALL_STATE(4921)] = 157050, - [SMALL_STATE(4922)] = 157064, - [SMALL_STATE(4923)] = 157074, - [SMALL_STATE(4924)] = 157088, - [SMALL_STATE(4925)] = 157102, - [SMALL_STATE(4926)] = 157114, - [SMALL_STATE(4927)] = 157124, - [SMALL_STATE(4928)] = 157134, - [SMALL_STATE(4929)] = 157144, - [SMALL_STATE(4930)] = 157154, - [SMALL_STATE(4931)] = 157164, - [SMALL_STATE(4932)] = 157174, - [SMALL_STATE(4933)] = 157184, - [SMALL_STATE(4934)] = 157194, - [SMALL_STATE(4935)] = 157204, - [SMALL_STATE(4936)] = 157216, - [SMALL_STATE(4937)] = 157226, - [SMALL_STATE(4938)] = 157236, - [SMALL_STATE(4939)] = 157246, - [SMALL_STATE(4940)] = 157256, - [SMALL_STATE(4941)] = 157266, - [SMALL_STATE(4942)] = 157276, - [SMALL_STATE(4943)] = 157286, - [SMALL_STATE(4944)] = 157300, - [SMALL_STATE(4945)] = 157314, - [SMALL_STATE(4946)] = 157324, - [SMALL_STATE(4947)] = 157334, - [SMALL_STATE(4948)] = 157344, - [SMALL_STATE(4949)] = 157354, - [SMALL_STATE(4950)] = 157364, - [SMALL_STATE(4951)] = 157374, - [SMALL_STATE(4952)] = 157384, - [SMALL_STATE(4953)] = 157394, - [SMALL_STATE(4954)] = 157404, - [SMALL_STATE(4955)] = 157414, - [SMALL_STATE(4956)] = 157424, - [SMALL_STATE(4957)] = 157434, - [SMALL_STATE(4958)] = 157444, - [SMALL_STATE(4959)] = 157458, - [SMALL_STATE(4960)] = 157468, - [SMALL_STATE(4961)] = 157478, - [SMALL_STATE(4962)] = 157488, - [SMALL_STATE(4963)] = 157498, - [SMALL_STATE(4964)] = 157508, - [SMALL_STATE(4965)] = 157518, - [SMALL_STATE(4966)] = 157528, - [SMALL_STATE(4967)] = 157538, - [SMALL_STATE(4968)] = 157548, - [SMALL_STATE(4969)] = 157558, - [SMALL_STATE(4970)] = 157568, - [SMALL_STATE(4971)] = 157578, - [SMALL_STATE(4972)] = 157588, - [SMALL_STATE(4973)] = 157598, - [SMALL_STATE(4974)] = 157608, - [SMALL_STATE(4975)] = 157618, - [SMALL_STATE(4976)] = 157628, - [SMALL_STATE(4977)] = 157638, - [SMALL_STATE(4978)] = 157648, - [SMALL_STATE(4979)] = 157658, - [SMALL_STATE(4980)] = 157668, - [SMALL_STATE(4981)] = 157678, - [SMALL_STATE(4982)] = 157688, - [SMALL_STATE(4983)] = 157698, - [SMALL_STATE(4984)] = 157708, - [SMALL_STATE(4985)] = 157718, - [SMALL_STATE(4986)] = 157728, - [SMALL_STATE(4987)] = 157738, - [SMALL_STATE(4988)] = 157748, - [SMALL_STATE(4989)] = 157758, - [SMALL_STATE(4990)] = 157768, - [SMALL_STATE(4991)] = 157778, - [SMALL_STATE(4992)] = 157788, - [SMALL_STATE(4993)] = 157798, - [SMALL_STATE(4994)] = 157808, - [SMALL_STATE(4995)] = 157818, - [SMALL_STATE(4996)] = 157828, - [SMALL_STATE(4997)] = 157838, - [SMALL_STATE(4998)] = 157848, - [SMALL_STATE(4999)] = 157858, - [SMALL_STATE(5000)] = 157872, - [SMALL_STATE(5001)] = 157882, - [SMALL_STATE(5002)] = 157892, - [SMALL_STATE(5003)] = 157902, - [SMALL_STATE(5004)] = 157912, - [SMALL_STATE(5005)] = 157922, - [SMALL_STATE(5006)] = 157932, - [SMALL_STATE(5007)] = 157942, - [SMALL_STATE(5008)] = 157952, - [SMALL_STATE(5009)] = 157962, - [SMALL_STATE(5010)] = 157972, - [SMALL_STATE(5011)] = 157982, - [SMALL_STATE(5012)] = 157992, - [SMALL_STATE(5013)] = 158002, - [SMALL_STATE(5014)] = 158012, - [SMALL_STATE(5015)] = 158022, - [SMALL_STATE(5016)] = 158032, - [SMALL_STATE(5017)] = 158042, - [SMALL_STATE(5018)] = 158052, - [SMALL_STATE(5019)] = 158062, - [SMALL_STATE(5020)] = 158072, - [SMALL_STATE(5021)] = 158082, - [SMALL_STATE(5022)] = 158092, - [SMALL_STATE(5023)] = 158104, - [SMALL_STATE(5024)] = 158118, - [SMALL_STATE(5025)] = 158130, - [SMALL_STATE(5026)] = 158140, - [SMALL_STATE(5027)] = 158150, - [SMALL_STATE(5028)] = 158162, - [SMALL_STATE(5029)] = 158172, - [SMALL_STATE(5030)] = 158186, - [SMALL_STATE(5031)] = 158196, - [SMALL_STATE(5032)] = 158206, - [SMALL_STATE(5033)] = 158216, - [SMALL_STATE(5034)] = 158226, - [SMALL_STATE(5035)] = 158236, - [SMALL_STATE(5036)] = 158246, - [SMALL_STATE(5037)] = 158256, - [SMALL_STATE(5038)] = 158266, - [SMALL_STATE(5039)] = 158276, - [SMALL_STATE(5040)] = 158286, - [SMALL_STATE(5041)] = 158296, - [SMALL_STATE(5042)] = 158306, - [SMALL_STATE(5043)] = 158316, - [SMALL_STATE(5044)] = 158326, - [SMALL_STATE(5045)] = 158336, - [SMALL_STATE(5046)] = 158346, - [SMALL_STATE(5047)] = 158356, - [SMALL_STATE(5048)] = 158368, - [SMALL_STATE(5049)] = 158378, - [SMALL_STATE(5050)] = 158388, - [SMALL_STATE(5051)] = 158398, - [SMALL_STATE(5052)] = 158408, - [SMALL_STATE(5053)] = 158418, - [SMALL_STATE(5054)] = 158428, - [SMALL_STATE(5055)] = 158438, - [SMALL_STATE(5056)] = 158450, - [SMALL_STATE(5057)] = 158460, - [SMALL_STATE(5058)] = 158470, - [SMALL_STATE(5059)] = 158480, - [SMALL_STATE(5060)] = 158490, - [SMALL_STATE(5061)] = 158504, - [SMALL_STATE(5062)] = 158518, - [SMALL_STATE(5063)] = 158528, - [SMALL_STATE(5064)] = 158538, - [SMALL_STATE(5065)] = 158548, - [SMALL_STATE(5066)] = 158558, - [SMALL_STATE(5067)] = 158572, - [SMALL_STATE(5068)] = 158582, - [SMALL_STATE(5069)] = 158592, - [SMALL_STATE(5070)] = 158604, - [SMALL_STATE(5071)] = 158614, - [SMALL_STATE(5072)] = 158626, - [SMALL_STATE(5073)] = 158640, - [SMALL_STATE(5074)] = 158650, - [SMALL_STATE(5075)] = 158660, - [SMALL_STATE(5076)] = 158670, - [SMALL_STATE(5077)] = 158680, - [SMALL_STATE(5078)] = 158694, - [SMALL_STATE(5079)] = 158704, - [SMALL_STATE(5080)] = 158714, - [SMALL_STATE(5081)] = 158724, - [SMALL_STATE(5082)] = 158734, - [SMALL_STATE(5083)] = 158744, - [SMALL_STATE(5084)] = 158756, - [SMALL_STATE(5085)] = 158766, - [SMALL_STATE(5086)] = 158776, - [SMALL_STATE(5087)] = 158786, - [SMALL_STATE(5088)] = 158796, - [SMALL_STATE(5089)] = 158810, - [SMALL_STATE(5090)] = 158824, - [SMALL_STATE(5091)] = 158834, - [SMALL_STATE(5092)] = 158844, - [SMALL_STATE(5093)] = 158854, - [SMALL_STATE(5094)] = 158868, - [SMALL_STATE(5095)] = 158882, - [SMALL_STATE(5096)] = 158896, - [SMALL_STATE(5097)] = 158906, - [SMALL_STATE(5098)] = 158916, - [SMALL_STATE(5099)] = 158926, - [SMALL_STATE(5100)] = 158940, - [SMALL_STATE(5101)] = 158954, - [SMALL_STATE(5102)] = 158968, - [SMALL_STATE(5103)] = 158978, - [SMALL_STATE(5104)] = 158990, - [SMALL_STATE(5105)] = 159004, - [SMALL_STATE(5106)] = 159014, - [SMALL_STATE(5107)] = 159028, - [SMALL_STATE(5108)] = 159038, - [SMALL_STATE(5109)] = 159048, - [SMALL_STATE(5110)] = 159062, - [SMALL_STATE(5111)] = 159072, - [SMALL_STATE(5112)] = 159086, - [SMALL_STATE(5113)] = 159100, - [SMALL_STATE(5114)] = 159110, - [SMALL_STATE(5115)] = 159120, - [SMALL_STATE(5116)] = 159134, - [SMALL_STATE(5117)] = 159148, - [SMALL_STATE(5118)] = 159158, - [SMALL_STATE(5119)] = 159168, - [SMALL_STATE(5120)] = 159182, - [SMALL_STATE(5121)] = 159192, - [SMALL_STATE(5122)] = 159202, - [SMALL_STATE(5123)] = 159212, - [SMALL_STATE(5124)] = 159222, - [SMALL_STATE(5125)] = 159234, - [SMALL_STATE(5126)] = 159244, - [SMALL_STATE(5127)] = 159254, - [SMALL_STATE(5128)] = 159264, - [SMALL_STATE(5129)] = 159274, - [SMALL_STATE(5130)] = 159288, - [SMALL_STATE(5131)] = 159298, - [SMALL_STATE(5132)] = 159312, - [SMALL_STATE(5133)] = 159326, - [SMALL_STATE(5134)] = 159340, - [SMALL_STATE(5135)] = 159354, - [SMALL_STATE(5136)] = 159364, - [SMALL_STATE(5137)] = 159378, - [SMALL_STATE(5138)] = 159392, - [SMALL_STATE(5139)] = 159402, - [SMALL_STATE(5140)] = 159412, - [SMALL_STATE(5141)] = 159424, - [SMALL_STATE(5142)] = 159438, - [SMALL_STATE(5143)] = 159448, - [SMALL_STATE(5144)] = 159460, - [SMALL_STATE(5145)] = 159470, - [SMALL_STATE(5146)] = 159480, - [SMALL_STATE(5147)] = 159490, - [SMALL_STATE(5148)] = 159500, - [SMALL_STATE(5149)] = 159510, - [SMALL_STATE(5150)] = 159522, - [SMALL_STATE(5151)] = 159532, - [SMALL_STATE(5152)] = 159542, - [SMALL_STATE(5153)] = 159552, - [SMALL_STATE(5154)] = 159566, - [SMALL_STATE(5155)] = 159576, - [SMALL_STATE(5156)] = 159586, - [SMALL_STATE(5157)] = 159596, - [SMALL_STATE(5158)] = 159606, - [SMALL_STATE(5159)] = 159616, - [SMALL_STATE(5160)] = 159626, - [SMALL_STATE(5161)] = 159636, - [SMALL_STATE(5162)] = 159650, - [SMALL_STATE(5163)] = 159664, - [SMALL_STATE(5164)] = 159674, - [SMALL_STATE(5165)] = 159684, - [SMALL_STATE(5166)] = 159694, - [SMALL_STATE(5167)] = 159708, - [SMALL_STATE(5168)] = 159722, - [SMALL_STATE(5169)] = 159736, - [SMALL_STATE(5170)] = 159746, - [SMALL_STATE(5171)] = 159756, - [SMALL_STATE(5172)] = 159766, - [SMALL_STATE(5173)] = 159776, - [SMALL_STATE(5174)] = 159786, - [SMALL_STATE(5175)] = 159800, - [SMALL_STATE(5176)] = 159814, - [SMALL_STATE(5177)] = 159824, - [SMALL_STATE(5178)] = 159838, - [SMALL_STATE(5179)] = 159852, - [SMALL_STATE(5180)] = 159866, - [SMALL_STATE(5181)] = 159880, - [SMALL_STATE(5182)] = 159890, - [SMALL_STATE(5183)] = 159900, - [SMALL_STATE(5184)] = 159912, - [SMALL_STATE(5185)] = 159922, - [SMALL_STATE(5186)] = 159932, - [SMALL_STATE(5187)] = 159942, - [SMALL_STATE(5188)] = 159952, - [SMALL_STATE(5189)] = 159966, - [SMALL_STATE(5190)] = 159976, - [SMALL_STATE(5191)] = 159986, - [SMALL_STATE(5192)] = 160000, - [SMALL_STATE(5193)] = 160014, - [SMALL_STATE(5194)] = 160024, - [SMALL_STATE(5195)] = 160038, - [SMALL_STATE(5196)] = 160048, - [SMALL_STATE(5197)] = 160058, - [SMALL_STATE(5198)] = 160072, - [SMALL_STATE(5199)] = 160082, - [SMALL_STATE(5200)] = 160092, - [SMALL_STATE(5201)] = 160102, - [SMALL_STATE(5202)] = 160116, - [SMALL_STATE(5203)] = 160126, - [SMALL_STATE(5204)] = 160136, - [SMALL_STATE(5205)] = 160146, - [SMALL_STATE(5206)] = 160156, - [SMALL_STATE(5207)] = 160166, - [SMALL_STATE(5208)] = 160180, - [SMALL_STATE(5209)] = 160190, - [SMALL_STATE(5210)] = 160204, - [SMALL_STATE(5211)] = 160214, - [SMALL_STATE(5212)] = 160228, - [SMALL_STATE(5213)] = 160238, - [SMALL_STATE(5214)] = 160248, - [SMALL_STATE(5215)] = 160258, - [SMALL_STATE(5216)] = 160268, - [SMALL_STATE(5217)] = 160278, - [SMALL_STATE(5218)] = 160292, - [SMALL_STATE(5219)] = 160302, - [SMALL_STATE(5220)] = 160312, - [SMALL_STATE(5221)] = 160322, - [SMALL_STATE(5222)] = 160333, - [SMALL_STATE(5223)] = 160344, - [SMALL_STATE(5224)] = 160355, - [SMALL_STATE(5225)] = 160366, - [SMALL_STATE(5226)] = 160375, - [SMALL_STATE(5227)] = 160384, - [SMALL_STATE(5228)] = 160393, - [SMALL_STATE(5229)] = 160404, - [SMALL_STATE(5230)] = 160413, - [SMALL_STATE(5231)] = 160424, - [SMALL_STATE(5232)] = 160435, - [SMALL_STATE(5233)] = 160444, - [SMALL_STATE(5234)] = 160455, - [SMALL_STATE(5235)] = 160464, - [SMALL_STATE(5236)] = 160475, - [SMALL_STATE(5237)] = 160484, - [SMALL_STATE(5238)] = 160495, - [SMALL_STATE(5239)] = 160506, - [SMALL_STATE(5240)] = 160517, - [SMALL_STATE(5241)] = 160528, - [SMALL_STATE(5242)] = 160537, - [SMALL_STATE(5243)] = 160548, - [SMALL_STATE(5244)] = 160559, - [SMALL_STATE(5245)] = 160570, - [SMALL_STATE(5246)] = 160579, - [SMALL_STATE(5247)] = 160588, - [SMALL_STATE(5248)] = 160599, - [SMALL_STATE(5249)] = 160610, - [SMALL_STATE(5250)] = 160621, - [SMALL_STATE(5251)] = 160632, - [SMALL_STATE(5252)] = 160643, - [SMALL_STATE(5253)] = 160654, - [SMALL_STATE(5254)] = 160665, - [SMALL_STATE(5255)] = 160676, - [SMALL_STATE(5256)] = 160687, - [SMALL_STATE(5257)] = 160698, - [SMALL_STATE(5258)] = 160709, - [SMALL_STATE(5259)] = 160720, - [SMALL_STATE(5260)] = 160731, - [SMALL_STATE(5261)] = 160742, - [SMALL_STATE(5262)] = 160751, - [SMALL_STATE(5263)] = 160762, - [SMALL_STATE(5264)] = 160773, - [SMALL_STATE(5265)] = 160784, - [SMALL_STATE(5266)] = 160795, - [SMALL_STATE(5267)] = 160806, - [SMALL_STATE(5268)] = 160817, - [SMALL_STATE(5269)] = 160828, - [SMALL_STATE(5270)] = 160839, - [SMALL_STATE(5271)] = 160850, - [SMALL_STATE(5272)] = 160859, - [SMALL_STATE(5273)] = 160868, - [SMALL_STATE(5274)] = 160879, - [SMALL_STATE(5275)] = 160888, - [SMALL_STATE(5276)] = 160899, - [SMALL_STATE(5277)] = 160910, - [SMALL_STATE(5278)] = 160921, - [SMALL_STATE(5279)] = 160932, - [SMALL_STATE(5280)] = 160943, - [SMALL_STATE(5281)] = 160954, - [SMALL_STATE(5282)] = 160965, - [SMALL_STATE(5283)] = 160976, - [SMALL_STATE(5284)] = 160987, - [SMALL_STATE(5285)] = 160998, - [SMALL_STATE(5286)] = 161009, - [SMALL_STATE(5287)] = 161020, - [SMALL_STATE(5288)] = 161031, - [SMALL_STATE(5289)] = 161042, - [SMALL_STATE(5290)] = 161053, - [SMALL_STATE(5291)] = 161064, - [SMALL_STATE(5292)] = 161073, - [SMALL_STATE(5293)] = 161082, - [SMALL_STATE(5294)] = 161091, - [SMALL_STATE(5295)] = 161102, - [SMALL_STATE(5296)] = 161111, - [SMALL_STATE(5297)] = 161120, - [SMALL_STATE(5298)] = 161131, - [SMALL_STATE(5299)] = 161142, - [SMALL_STATE(5300)] = 161153, - [SMALL_STATE(5301)] = 161164, - [SMALL_STATE(5302)] = 161173, - [SMALL_STATE(5303)] = 161182, - [SMALL_STATE(5304)] = 161193, - [SMALL_STATE(5305)] = 161204, - [SMALL_STATE(5306)] = 161215, - [SMALL_STATE(5307)] = 161226, - [SMALL_STATE(5308)] = 161237, - [SMALL_STATE(5309)] = 161248, - [SMALL_STATE(5310)] = 161259, - [SMALL_STATE(5311)] = 161270, - [SMALL_STATE(5312)] = 161281, - [SMALL_STATE(5313)] = 161292, - [SMALL_STATE(5314)] = 161303, - [SMALL_STATE(5315)] = 161314, - [SMALL_STATE(5316)] = 161325, - [SMALL_STATE(5317)] = 161336, - [SMALL_STATE(5318)] = 161347, - [SMALL_STATE(5319)] = 161356, - [SMALL_STATE(5320)] = 161365, - [SMALL_STATE(5321)] = 161376, - [SMALL_STATE(5322)] = 161387, - [SMALL_STATE(5323)] = 161398, - [SMALL_STATE(5324)] = 161409, - [SMALL_STATE(5325)] = 161420, - [SMALL_STATE(5326)] = 161431, - [SMALL_STATE(5327)] = 161442, - [SMALL_STATE(5328)] = 161453, - [SMALL_STATE(5329)] = 161464, - [SMALL_STATE(5330)] = 161475, - [SMALL_STATE(5331)] = 161486, - [SMALL_STATE(5332)] = 161495, - [SMALL_STATE(5333)] = 161506, - [SMALL_STATE(5334)] = 161517, - [SMALL_STATE(5335)] = 161528, - [SMALL_STATE(5336)] = 161539, - [SMALL_STATE(5337)] = 161550, - [SMALL_STATE(5338)] = 161561, - [SMALL_STATE(5339)] = 161572, - [SMALL_STATE(5340)] = 161583, - [SMALL_STATE(5341)] = 161594, - [SMALL_STATE(5342)] = 161603, - [SMALL_STATE(5343)] = 161614, - [SMALL_STATE(5344)] = 161625, - [SMALL_STATE(5345)] = 161636, - [SMALL_STATE(5346)] = 161647, - [SMALL_STATE(5347)] = 161658, - [SMALL_STATE(5348)] = 161669, - [SMALL_STATE(5349)] = 161680, - [SMALL_STATE(5350)] = 161691, - [SMALL_STATE(5351)] = 161700, - [SMALL_STATE(5352)] = 161709, - [SMALL_STATE(5353)] = 161718, - [SMALL_STATE(5354)] = 161729, - [SMALL_STATE(5355)] = 161740, - [SMALL_STATE(5356)] = 161751, - [SMALL_STATE(5357)] = 161762, - [SMALL_STATE(5358)] = 161773, - [SMALL_STATE(5359)] = 161782, - [SMALL_STATE(5360)] = 161793, - [SMALL_STATE(5361)] = 161802, - [SMALL_STATE(5362)] = 161813, - [SMALL_STATE(5363)] = 161824, - [SMALL_STATE(5364)] = 161835, - [SMALL_STATE(5365)] = 161846, - [SMALL_STATE(5366)] = 161855, - [SMALL_STATE(5367)] = 161866, - [SMALL_STATE(5368)] = 161877, - [SMALL_STATE(5369)] = 161886, - [SMALL_STATE(5370)] = 161897, - [SMALL_STATE(5371)] = 161908, - [SMALL_STATE(5372)] = 161919, - [SMALL_STATE(5373)] = 161930, - [SMALL_STATE(5374)] = 161941, - [SMALL_STATE(5375)] = 161950, - [SMALL_STATE(5376)] = 161961, - [SMALL_STATE(5377)] = 161972, - [SMALL_STATE(5378)] = 161983, - [SMALL_STATE(5379)] = 161992, - [SMALL_STATE(5380)] = 162003, - [SMALL_STATE(5381)] = 162014, - [SMALL_STATE(5382)] = 162025, - [SMALL_STATE(5383)] = 162036, - [SMALL_STATE(5384)] = 162047, - [SMALL_STATE(5385)] = 162056, - [SMALL_STATE(5386)] = 162067, - [SMALL_STATE(5387)] = 162076, - [SMALL_STATE(5388)] = 162087, - [SMALL_STATE(5389)] = 162098, - [SMALL_STATE(5390)] = 162107, - [SMALL_STATE(5391)] = 162118, - [SMALL_STATE(5392)] = 162127, - [SMALL_STATE(5393)] = 162138, - [SMALL_STATE(5394)] = 162149, - [SMALL_STATE(5395)] = 162160, - [SMALL_STATE(5396)] = 162171, - [SMALL_STATE(5397)] = 162182, - [SMALL_STATE(5398)] = 162193, - [SMALL_STATE(5399)] = 162202, - [SMALL_STATE(5400)] = 162213, - [SMALL_STATE(5401)] = 162224, - [SMALL_STATE(5402)] = 162235, - [SMALL_STATE(5403)] = 162246, - [SMALL_STATE(5404)] = 162257, - [SMALL_STATE(5405)] = 162268, - [SMALL_STATE(5406)] = 162279, - [SMALL_STATE(5407)] = 162288, - [SMALL_STATE(5408)] = 162297, - [SMALL_STATE(5409)] = 162308, - [SMALL_STATE(5410)] = 162319, - [SMALL_STATE(5411)] = 162330, - [SMALL_STATE(5412)] = 162339, - [SMALL_STATE(5413)] = 162350, - [SMALL_STATE(5414)] = 162359, - [SMALL_STATE(5415)] = 162368, - [SMALL_STATE(5416)] = 162379, - [SMALL_STATE(5417)] = 162388, - [SMALL_STATE(5418)] = 162399, - [SMALL_STATE(5419)] = 162410, - [SMALL_STATE(5420)] = 162421, - [SMALL_STATE(5421)] = 162432, - [SMALL_STATE(5422)] = 162443, - [SMALL_STATE(5423)] = 162454, - [SMALL_STATE(5424)] = 162465, - [SMALL_STATE(5425)] = 162476, - [SMALL_STATE(5426)] = 162487, - [SMALL_STATE(5427)] = 162498, - [SMALL_STATE(5428)] = 162509, - [SMALL_STATE(5429)] = 162518, - [SMALL_STATE(5430)] = 162529, - [SMALL_STATE(5431)] = 162540, - [SMALL_STATE(5432)] = 162551, - [SMALL_STATE(5433)] = 162562, - [SMALL_STATE(5434)] = 162573, - [SMALL_STATE(5435)] = 162584, - [SMALL_STATE(5436)] = 162595, - [SMALL_STATE(5437)] = 162606, - [SMALL_STATE(5438)] = 162617, - [SMALL_STATE(5439)] = 162628, - [SMALL_STATE(5440)] = 162639, - [SMALL_STATE(5441)] = 162650, - [SMALL_STATE(5442)] = 162659, - [SMALL_STATE(5443)] = 162670, - [SMALL_STATE(5444)] = 162681, - [SMALL_STATE(5445)] = 162692, - [SMALL_STATE(5446)] = 162703, - [SMALL_STATE(5447)] = 162714, - [SMALL_STATE(5448)] = 162725, - [SMALL_STATE(5449)] = 162736, - [SMALL_STATE(5450)] = 162747, - [SMALL_STATE(5451)] = 162758, - [SMALL_STATE(5452)] = 162769, - [SMALL_STATE(5453)] = 162780, - [SMALL_STATE(5454)] = 162791, - [SMALL_STATE(5455)] = 162802, - [SMALL_STATE(5456)] = 162813, - [SMALL_STATE(5457)] = 162822, - [SMALL_STATE(5458)] = 162831, - [SMALL_STATE(5459)] = 162840, - [SMALL_STATE(5460)] = 162849, - [SMALL_STATE(5461)] = 162858, - [SMALL_STATE(5462)] = 162869, - [SMALL_STATE(5463)] = 162880, - [SMALL_STATE(5464)] = 162891, - [SMALL_STATE(5465)] = 162902, - [SMALL_STATE(5466)] = 162913, - [SMALL_STATE(5467)] = 162924, - [SMALL_STATE(5468)] = 162935, - [SMALL_STATE(5469)] = 162946, - [SMALL_STATE(5470)] = 162955, - [SMALL_STATE(5471)] = 162966, - [SMALL_STATE(5472)] = 162977, - [SMALL_STATE(5473)] = 162988, - [SMALL_STATE(5474)] = 162999, - [SMALL_STATE(5475)] = 163010, - [SMALL_STATE(5476)] = 163019, - [SMALL_STATE(5477)] = 163030, - [SMALL_STATE(5478)] = 163041, - [SMALL_STATE(5479)] = 163052, - [SMALL_STATE(5480)] = 163063, - [SMALL_STATE(5481)] = 163074, - [SMALL_STATE(5482)] = 163085, - [SMALL_STATE(5483)] = 163096, - [SMALL_STATE(5484)] = 163107, - [SMALL_STATE(5485)] = 163116, - [SMALL_STATE(5486)] = 163125, - [SMALL_STATE(5487)] = 163134, - [SMALL_STATE(5488)] = 163145, - [SMALL_STATE(5489)] = 163156, - [SMALL_STATE(5490)] = 163165, - [SMALL_STATE(5491)] = 163176, - [SMALL_STATE(5492)] = 163185, - [SMALL_STATE(5493)] = 163194, - [SMALL_STATE(5494)] = 163205, - [SMALL_STATE(5495)] = 163216, - [SMALL_STATE(5496)] = 163227, - [SMALL_STATE(5497)] = 163236, - [SMALL_STATE(5498)] = 163245, - [SMALL_STATE(5499)] = 163256, - [SMALL_STATE(5500)] = 163265, - [SMALL_STATE(5501)] = 163276, - [SMALL_STATE(5502)] = 163287, - [SMALL_STATE(5503)] = 163298, - [SMALL_STATE(5504)] = 163309, - [SMALL_STATE(5505)] = 163320, - [SMALL_STATE(5506)] = 163329, - [SMALL_STATE(5507)] = 163340, - [SMALL_STATE(5508)] = 163351, - [SMALL_STATE(5509)] = 163360, - [SMALL_STATE(5510)] = 163371, - [SMALL_STATE(5511)] = 163382, - [SMALL_STATE(5512)] = 163393, - [SMALL_STATE(5513)] = 163404, - [SMALL_STATE(5514)] = 163415, - [SMALL_STATE(5515)] = 163424, - [SMALL_STATE(5516)] = 163435, - [SMALL_STATE(5517)] = 163446, - [SMALL_STATE(5518)] = 163457, - [SMALL_STATE(5519)] = 163468, - [SMALL_STATE(5520)] = 163479, - [SMALL_STATE(5521)] = 163488, - [SMALL_STATE(5522)] = 163499, - [SMALL_STATE(5523)] = 163510, - [SMALL_STATE(5524)] = 163521, - [SMALL_STATE(5525)] = 163532, - [SMALL_STATE(5526)] = 163543, - [SMALL_STATE(5527)] = 163554, - [SMALL_STATE(5528)] = 163565, - [SMALL_STATE(5529)] = 163576, - [SMALL_STATE(5530)] = 163587, - [SMALL_STATE(5531)] = 163598, - [SMALL_STATE(5532)] = 163609, - [SMALL_STATE(5533)] = 163620, - [SMALL_STATE(5534)] = 163629, - [SMALL_STATE(5535)] = 163640, - [SMALL_STATE(5536)] = 163649, - [SMALL_STATE(5537)] = 163660, - [SMALL_STATE(5538)] = 163669, - [SMALL_STATE(5539)] = 163680, - [SMALL_STATE(5540)] = 163691, - [SMALL_STATE(5541)] = 163702, - [SMALL_STATE(5542)] = 163711, - [SMALL_STATE(5543)] = 163722, - [SMALL_STATE(5544)] = 163733, - [SMALL_STATE(5545)] = 163744, - [SMALL_STATE(5546)] = 163755, - [SMALL_STATE(5547)] = 163766, - [SMALL_STATE(5548)] = 163775, - [SMALL_STATE(5549)] = 163786, - [SMALL_STATE(5550)] = 163797, - [SMALL_STATE(5551)] = 163808, - [SMALL_STATE(5552)] = 163819, - [SMALL_STATE(5553)] = 163830, - [SMALL_STATE(5554)] = 163839, - [SMALL_STATE(5555)] = 163850, - [SMALL_STATE(5556)] = 163861, - [SMALL_STATE(5557)] = 163872, - [SMALL_STATE(5558)] = 163883, - [SMALL_STATE(5559)] = 163894, - [SMALL_STATE(5560)] = 163905, - [SMALL_STATE(5561)] = 163916, - [SMALL_STATE(5562)] = 163927, - [SMALL_STATE(5563)] = 163936, - [SMALL_STATE(5564)] = 163947, - [SMALL_STATE(5565)] = 163958, - [SMALL_STATE(5566)] = 163967, - [SMALL_STATE(5567)] = 163978, - [SMALL_STATE(5568)] = 163989, - [SMALL_STATE(5569)] = 164000, - [SMALL_STATE(5570)] = 164011, - [SMALL_STATE(5571)] = 164022, - [SMALL_STATE(5572)] = 164033, - [SMALL_STATE(5573)] = 164044, - [SMALL_STATE(5574)] = 164055, - [SMALL_STATE(5575)] = 164063, - [SMALL_STATE(5576)] = 164071, - [SMALL_STATE(5577)] = 164079, - [SMALL_STATE(5578)] = 164087, - [SMALL_STATE(5579)] = 164095, - [SMALL_STATE(5580)] = 164103, - [SMALL_STATE(5581)] = 164111, - [SMALL_STATE(5582)] = 164119, - [SMALL_STATE(5583)] = 164127, - [SMALL_STATE(5584)] = 164135, - [SMALL_STATE(5585)] = 164143, - [SMALL_STATE(5586)] = 164151, - [SMALL_STATE(5587)] = 164159, - [SMALL_STATE(5588)] = 164167, - [SMALL_STATE(5589)] = 164175, - [SMALL_STATE(5590)] = 164183, - [SMALL_STATE(5591)] = 164191, - [SMALL_STATE(5592)] = 164199, - [SMALL_STATE(5593)] = 164207, - [SMALL_STATE(5594)] = 164215, - [SMALL_STATE(5595)] = 164223, - [SMALL_STATE(5596)] = 164231, - [SMALL_STATE(5597)] = 164239, - [SMALL_STATE(5598)] = 164247, - [SMALL_STATE(5599)] = 164255, - [SMALL_STATE(5600)] = 164263, - [SMALL_STATE(5601)] = 164271, - [SMALL_STATE(5602)] = 164279, - [SMALL_STATE(5603)] = 164287, - [SMALL_STATE(5604)] = 164295, - [SMALL_STATE(5605)] = 164303, - [SMALL_STATE(5606)] = 164311, - [SMALL_STATE(5607)] = 164319, - [SMALL_STATE(5608)] = 164327, - [SMALL_STATE(5609)] = 164335, - [SMALL_STATE(5610)] = 164343, - [SMALL_STATE(5611)] = 164351, - [SMALL_STATE(5612)] = 164359, - [SMALL_STATE(5613)] = 164367, - [SMALL_STATE(5614)] = 164375, - [SMALL_STATE(5615)] = 164383, - [SMALL_STATE(5616)] = 164391, - [SMALL_STATE(5617)] = 164399, - [SMALL_STATE(5618)] = 164407, - [SMALL_STATE(5619)] = 164415, - [SMALL_STATE(5620)] = 164423, - [SMALL_STATE(5621)] = 164431, - [SMALL_STATE(5622)] = 164439, - [SMALL_STATE(5623)] = 164447, - [SMALL_STATE(5624)] = 164455, - [SMALL_STATE(5625)] = 164463, - [SMALL_STATE(5626)] = 164471, - [SMALL_STATE(5627)] = 164479, - [SMALL_STATE(5628)] = 164489, - [SMALL_STATE(5629)] = 164497, - [SMALL_STATE(5630)] = 164505, - [SMALL_STATE(5631)] = 164513, - [SMALL_STATE(5632)] = 164521, - [SMALL_STATE(5633)] = 164529, - [SMALL_STATE(5634)] = 164537, - [SMALL_STATE(5635)] = 164545, - [SMALL_STATE(5636)] = 164553, - [SMALL_STATE(5637)] = 164561, - [SMALL_STATE(5638)] = 164569, - [SMALL_STATE(5639)] = 164577, - [SMALL_STATE(5640)] = 164585, - [SMALL_STATE(5641)] = 164593, - [SMALL_STATE(5642)] = 164601, - [SMALL_STATE(5643)] = 164609, - [SMALL_STATE(5644)] = 164617, - [SMALL_STATE(5645)] = 164625, - [SMALL_STATE(5646)] = 164633, - [SMALL_STATE(5647)] = 164641, - [SMALL_STATE(5648)] = 164649, - [SMALL_STATE(5649)] = 164657, - [SMALL_STATE(5650)] = 164665, - [SMALL_STATE(5651)] = 164673, - [SMALL_STATE(5652)] = 164681, - [SMALL_STATE(5653)] = 164689, - [SMALL_STATE(5654)] = 164697, - [SMALL_STATE(5655)] = 164705, - [SMALL_STATE(5656)] = 164713, - [SMALL_STATE(5657)] = 164721, - [SMALL_STATE(5658)] = 164729, - [SMALL_STATE(5659)] = 164737, - [SMALL_STATE(5660)] = 164745, - [SMALL_STATE(5661)] = 164753, - [SMALL_STATE(5662)] = 164761, - [SMALL_STATE(5663)] = 164769, - [SMALL_STATE(5664)] = 164777, - [SMALL_STATE(5665)] = 164785, - [SMALL_STATE(5666)] = 164793, - [SMALL_STATE(5667)] = 164801, - [SMALL_STATE(5668)] = 164809, - [SMALL_STATE(5669)] = 164817, - [SMALL_STATE(5670)] = 164825, - [SMALL_STATE(5671)] = 164833, - [SMALL_STATE(5672)] = 164841, - [SMALL_STATE(5673)] = 164849, - [SMALL_STATE(5674)] = 164857, - [SMALL_STATE(5675)] = 164865, - [SMALL_STATE(5676)] = 164873, - [SMALL_STATE(5677)] = 164881, - [SMALL_STATE(5678)] = 164889, - [SMALL_STATE(5679)] = 164897, - [SMALL_STATE(5680)] = 164905, - [SMALL_STATE(5681)] = 164913, - [SMALL_STATE(5682)] = 164921, - [SMALL_STATE(5683)] = 164929, - [SMALL_STATE(5684)] = 164937, - [SMALL_STATE(5685)] = 164945, - [SMALL_STATE(5686)] = 164953, - [SMALL_STATE(5687)] = 164961, - [SMALL_STATE(5688)] = 164969, - [SMALL_STATE(5689)] = 164977, - [SMALL_STATE(5690)] = 164985, - [SMALL_STATE(5691)] = 164993, - [SMALL_STATE(5692)] = 165001, - [SMALL_STATE(5693)] = 165009, - [SMALL_STATE(5694)] = 165017, - [SMALL_STATE(5695)] = 165025, - [SMALL_STATE(5696)] = 165033, - [SMALL_STATE(5697)] = 165041, - [SMALL_STATE(5698)] = 165049, - [SMALL_STATE(5699)] = 165057, - [SMALL_STATE(5700)] = 165065, - [SMALL_STATE(5701)] = 165073, - [SMALL_STATE(5702)] = 165081, - [SMALL_STATE(5703)] = 165089, - [SMALL_STATE(5704)] = 165097, - [SMALL_STATE(5705)] = 165105, - [SMALL_STATE(5706)] = 165113, - [SMALL_STATE(5707)] = 165121, - [SMALL_STATE(5708)] = 165129, - [SMALL_STATE(5709)] = 165137, - [SMALL_STATE(5710)] = 165145, - [SMALL_STATE(5711)] = 165153, - [SMALL_STATE(5712)] = 165161, - [SMALL_STATE(5713)] = 165169, - [SMALL_STATE(5714)] = 165177, - [SMALL_STATE(5715)] = 165185, - [SMALL_STATE(5716)] = 165193, - [SMALL_STATE(5717)] = 165201, - [SMALL_STATE(5718)] = 165209, - [SMALL_STATE(5719)] = 165217, - [SMALL_STATE(5720)] = 165225, - [SMALL_STATE(5721)] = 165233, - [SMALL_STATE(5722)] = 165241, - [SMALL_STATE(5723)] = 165249, - [SMALL_STATE(5724)] = 165257, - [SMALL_STATE(5725)] = 165265, - [SMALL_STATE(5726)] = 165273, - [SMALL_STATE(5727)] = 165281, - [SMALL_STATE(5728)] = 165289, - [SMALL_STATE(5729)] = 165297, - [SMALL_STATE(5730)] = 165307, - [SMALL_STATE(5731)] = 165315, - [SMALL_STATE(5732)] = 165323, - [SMALL_STATE(5733)] = 165331, - [SMALL_STATE(5734)] = 165339, - [SMALL_STATE(5735)] = 165347, - [SMALL_STATE(5736)] = 165355, - [SMALL_STATE(5737)] = 165363, - [SMALL_STATE(5738)] = 165371, - [SMALL_STATE(5739)] = 165379, - [SMALL_STATE(5740)] = 165387, - [SMALL_STATE(5741)] = 165395, - [SMALL_STATE(5742)] = 165403, - [SMALL_STATE(5743)] = 165411, - [SMALL_STATE(5744)] = 165419, - [SMALL_STATE(5745)] = 165427, - [SMALL_STATE(5746)] = 165435, - [SMALL_STATE(5747)] = 165443, - [SMALL_STATE(5748)] = 165451, - [SMALL_STATE(5749)] = 165459, - [SMALL_STATE(5750)] = 165467, - [SMALL_STATE(5751)] = 165477, - [SMALL_STATE(5752)] = 165485, - [SMALL_STATE(5753)] = 165493, - [SMALL_STATE(5754)] = 165501, - [SMALL_STATE(5755)] = 165509, - [SMALL_STATE(5756)] = 165517, - [SMALL_STATE(5757)] = 165525, - [SMALL_STATE(5758)] = 165533, - [SMALL_STATE(5759)] = 165541, - [SMALL_STATE(5760)] = 165549, - [SMALL_STATE(5761)] = 165557, - [SMALL_STATE(5762)] = 165565, - [SMALL_STATE(5763)] = 165573, - [SMALL_STATE(5764)] = 165581, - [SMALL_STATE(5765)] = 165589, - [SMALL_STATE(5766)] = 165597, - [SMALL_STATE(5767)] = 165605, - [SMALL_STATE(5768)] = 165613, - [SMALL_STATE(5769)] = 165621, - [SMALL_STATE(5770)] = 165629, - [SMALL_STATE(5771)] = 165637, - [SMALL_STATE(5772)] = 165645, - [SMALL_STATE(5773)] = 165653, - [SMALL_STATE(5774)] = 165661, - [SMALL_STATE(5775)] = 165669, - [SMALL_STATE(5776)] = 165677, - [SMALL_STATE(5777)] = 165685, - [SMALL_STATE(5778)] = 165693, - [SMALL_STATE(5779)] = 165701, - [SMALL_STATE(5780)] = 165709, - [SMALL_STATE(5781)] = 165717, - [SMALL_STATE(5782)] = 165725, - [SMALL_STATE(5783)] = 165733, - [SMALL_STATE(5784)] = 165741, - [SMALL_STATE(5785)] = 165749, - [SMALL_STATE(5786)] = 165757, - [SMALL_STATE(5787)] = 165765, - [SMALL_STATE(5788)] = 165773, - [SMALL_STATE(5789)] = 165781, - [SMALL_STATE(5790)] = 165789, - [SMALL_STATE(5791)] = 165797, - [SMALL_STATE(5792)] = 165805, - [SMALL_STATE(5793)] = 165813, - [SMALL_STATE(5794)] = 165821, - [SMALL_STATE(5795)] = 165829, - [SMALL_STATE(5796)] = 165837, - [SMALL_STATE(5797)] = 165845, - [SMALL_STATE(5798)] = 165853, - [SMALL_STATE(5799)] = 165861, - [SMALL_STATE(5800)] = 165871, - [SMALL_STATE(5801)] = 165879, - [SMALL_STATE(5802)] = 165887, - [SMALL_STATE(5803)] = 165895, - [SMALL_STATE(5804)] = 165903, - [SMALL_STATE(5805)] = 165911, - [SMALL_STATE(5806)] = 165919, - [SMALL_STATE(5807)] = 165927, - [SMALL_STATE(5808)] = 165935, - [SMALL_STATE(5809)] = 165943, - [SMALL_STATE(5810)] = 165951, - [SMALL_STATE(5811)] = 165959, - [SMALL_STATE(5812)] = 165967, - [SMALL_STATE(5813)] = 165975, - [SMALL_STATE(5814)] = 165983, - [SMALL_STATE(5815)] = 165991, - [SMALL_STATE(5816)] = 165999, - [SMALL_STATE(5817)] = 166007, - [SMALL_STATE(5818)] = 166015, - [SMALL_STATE(5819)] = 166023, - [SMALL_STATE(5820)] = 166031, - [SMALL_STATE(5821)] = 166039, - [SMALL_STATE(5822)] = 166047, - [SMALL_STATE(5823)] = 166055, - [SMALL_STATE(5824)] = 166063, - [SMALL_STATE(5825)] = 166071, - [SMALL_STATE(5826)] = 166079, - [SMALL_STATE(5827)] = 166087, - [SMALL_STATE(5828)] = 166095, - [SMALL_STATE(5829)] = 166103, - [SMALL_STATE(5830)] = 166111, - [SMALL_STATE(5831)] = 166119, - [SMALL_STATE(5832)] = 166127, - [SMALL_STATE(5833)] = 166135, - [SMALL_STATE(5834)] = 166143, - [SMALL_STATE(5835)] = 166151, - [SMALL_STATE(5836)] = 166159, - [SMALL_STATE(5837)] = 166167, - [SMALL_STATE(5838)] = 166175, - [SMALL_STATE(5839)] = 166183, - [SMALL_STATE(5840)] = 166191, - [SMALL_STATE(5841)] = 166199, - [SMALL_STATE(5842)] = 166207, - [SMALL_STATE(5843)] = 166215, - [SMALL_STATE(5844)] = 166223, - [SMALL_STATE(5845)] = 166231, - [SMALL_STATE(5846)] = 166239, - [SMALL_STATE(5847)] = 166247, - [SMALL_STATE(5848)] = 166255, - [SMALL_STATE(5849)] = 166263, - [SMALL_STATE(5850)] = 166271, - [SMALL_STATE(5851)] = 166279, - [SMALL_STATE(5852)] = 166287, - [SMALL_STATE(5853)] = 166295, - [SMALL_STATE(5854)] = 166303, - [SMALL_STATE(5855)] = 166311, - [SMALL_STATE(5856)] = 166319, - [SMALL_STATE(5857)] = 166327, - [SMALL_STATE(5858)] = 166335, - [SMALL_STATE(5859)] = 166343, - [SMALL_STATE(5860)] = 166351, - [SMALL_STATE(5861)] = 166359, - [SMALL_STATE(5862)] = 166367, - [SMALL_STATE(5863)] = 166375, - [SMALL_STATE(5864)] = 166383, - [SMALL_STATE(5865)] = 166391, - [SMALL_STATE(5866)] = 166399, - [SMALL_STATE(5867)] = 166409, - [SMALL_STATE(5868)] = 166417, - [SMALL_STATE(5869)] = 166425, - [SMALL_STATE(5870)] = 166433, - [SMALL_STATE(5871)] = 166441, - [SMALL_STATE(5872)] = 166449, - [SMALL_STATE(5873)] = 166457, - [SMALL_STATE(5874)] = 166465, - [SMALL_STATE(5875)] = 166475, - [SMALL_STATE(5876)] = 166483, - [SMALL_STATE(5877)] = 166491, - [SMALL_STATE(5878)] = 166499, - [SMALL_STATE(5879)] = 166507, - [SMALL_STATE(5880)] = 166515, - [SMALL_STATE(5881)] = 166523, - [SMALL_STATE(5882)] = 166531, - [SMALL_STATE(5883)] = 166539, - [SMALL_STATE(5884)] = 166547, - [SMALL_STATE(5885)] = 166555, - [SMALL_STATE(5886)] = 166563, - [SMALL_STATE(5887)] = 166571, - [SMALL_STATE(5888)] = 166579, - [SMALL_STATE(5889)] = 166587, - [SMALL_STATE(5890)] = 166595, - [SMALL_STATE(5891)] = 166603, - [SMALL_STATE(5892)] = 166611, - [SMALL_STATE(5893)] = 166619, - [SMALL_STATE(5894)] = 166627, - [SMALL_STATE(5895)] = 166635, - [SMALL_STATE(5896)] = 166643, - [SMALL_STATE(5897)] = 166651, - [SMALL_STATE(5898)] = 166659, - [SMALL_STATE(5899)] = 166667, - [SMALL_STATE(5900)] = 166675, - [SMALL_STATE(5901)] = 166683, - [SMALL_STATE(5902)] = 166691, - [SMALL_STATE(5903)] = 166699, - [SMALL_STATE(5904)] = 166707, - [SMALL_STATE(5905)] = 166715, - [SMALL_STATE(5906)] = 166723, - [SMALL_STATE(5907)] = 166731, - [SMALL_STATE(5908)] = 166739, - [SMALL_STATE(5909)] = 166747, - [SMALL_STATE(5910)] = 166755, - [SMALL_STATE(5911)] = 166763, - [SMALL_STATE(5912)] = 166771, - [SMALL_STATE(5913)] = 166779, - [SMALL_STATE(5914)] = 166787, - [SMALL_STATE(5915)] = 166797, - [SMALL_STATE(5916)] = 166805, - [SMALL_STATE(5917)] = 166813, - [SMALL_STATE(5918)] = 166821, - [SMALL_STATE(5919)] = 166829, - [SMALL_STATE(5920)] = 166837, - [SMALL_STATE(5921)] = 166845, - [SMALL_STATE(5922)] = 166853, - [SMALL_STATE(5923)] = 166861, - [SMALL_STATE(5924)] = 166869, - [SMALL_STATE(5925)] = 166877, - [SMALL_STATE(5926)] = 166885, - [SMALL_STATE(5927)] = 166893, - [SMALL_STATE(5928)] = 166901, - [SMALL_STATE(5929)] = 166909, - [SMALL_STATE(5930)] = 166917, - [SMALL_STATE(5931)] = 166925, - [SMALL_STATE(5932)] = 166933, - [SMALL_STATE(5933)] = 166941, - [SMALL_STATE(5934)] = 166949, - [SMALL_STATE(5935)] = 166957, - [SMALL_STATE(5936)] = 166965, - [SMALL_STATE(5937)] = 166973, - [SMALL_STATE(5938)] = 166981, - [SMALL_STATE(5939)] = 166989, - [SMALL_STATE(5940)] = 166997, - [SMALL_STATE(5941)] = 167005, - [SMALL_STATE(5942)] = 167013, - [SMALL_STATE(5943)] = 167021, - [SMALL_STATE(5944)] = 167029, - [SMALL_STATE(5945)] = 167037, - [SMALL_STATE(5946)] = 167045, - [SMALL_STATE(5947)] = 167053, - [SMALL_STATE(5948)] = 167061, - [SMALL_STATE(5949)] = 167069, - [SMALL_STATE(5950)] = 167077, - [SMALL_STATE(5951)] = 167085, - [SMALL_STATE(5952)] = 167093, - [SMALL_STATE(5953)] = 167101, - [SMALL_STATE(5954)] = 167109, - [SMALL_STATE(5955)] = 167117, - [SMALL_STATE(5956)] = 167125, - [SMALL_STATE(5957)] = 167133, - [SMALL_STATE(5958)] = 167141, - [SMALL_STATE(5959)] = 167151, - [SMALL_STATE(5960)] = 167159, - [SMALL_STATE(5961)] = 167167, - [SMALL_STATE(5962)] = 167175, - [SMALL_STATE(5963)] = 167183, - [SMALL_STATE(5964)] = 167191, - [SMALL_STATE(5965)] = 167199, - [SMALL_STATE(5966)] = 167207, - [SMALL_STATE(5967)] = 167215, - [SMALL_STATE(5968)] = 167223, - [SMALL_STATE(5969)] = 167231, - [SMALL_STATE(5970)] = 167239, - [SMALL_STATE(5971)] = 167247, - [SMALL_STATE(5972)] = 167257, - [SMALL_STATE(5973)] = 167265, - [SMALL_STATE(5974)] = 167273, - [SMALL_STATE(5975)] = 167281, - [SMALL_STATE(5976)] = 167289, - [SMALL_STATE(5977)] = 167299, - [SMALL_STATE(5978)] = 167307, - [SMALL_STATE(5979)] = 167315, - [SMALL_STATE(5980)] = 167323, - [SMALL_STATE(5981)] = 167331, - [SMALL_STATE(5982)] = 167339, - [SMALL_STATE(5983)] = 167347, - [SMALL_STATE(5984)] = 167355, - [SMALL_STATE(5985)] = 167363, + [SMALL_STATE(3852)] = 141345, + [SMALL_STATE(3853)] = 141368, + [SMALL_STATE(3854)] = 141391, + [SMALL_STATE(3855)] = 141408, + [SMALL_STATE(3856)] = 141423, + [SMALL_STATE(3857)] = 141438, + [SMALL_STATE(3858)] = 141461, + [SMALL_STATE(3859)] = 141484, + [SMALL_STATE(3860)] = 141501, + [SMALL_STATE(3861)] = 141524, + [SMALL_STATE(3862)] = 141547, + [SMALL_STATE(3863)] = 141570, + [SMALL_STATE(3864)] = 141587, + [SMALL_STATE(3865)] = 141610, + [SMALL_STATE(3866)] = 141625, + [SMALL_STATE(3867)] = 141638, + [SMALL_STATE(3868)] = 141651, + [SMALL_STATE(3869)] = 141666, + [SMALL_STATE(3870)] = 141681, + [SMALL_STATE(3871)] = 141696, + [SMALL_STATE(3872)] = 141709, + [SMALL_STATE(3873)] = 141722, + [SMALL_STATE(3874)] = 141735, + [SMALL_STATE(3875)] = 141758, + [SMALL_STATE(3876)] = 141773, + [SMALL_STATE(3877)] = 141786, + [SMALL_STATE(3878)] = 141809, + [SMALL_STATE(3879)] = 141832, + [SMALL_STATE(3880)] = 141853, + [SMALL_STATE(3881)] = 141868, + [SMALL_STATE(3882)] = 141883, + [SMALL_STATE(3883)] = 141906, + [SMALL_STATE(3884)] = 141925, + [SMALL_STATE(3885)] = 141942, + [SMALL_STATE(3886)] = 141965, + [SMALL_STATE(3887)] = 141988, + [SMALL_STATE(3888)] = 142003, + [SMALL_STATE(3889)] = 142020, + [SMALL_STATE(3890)] = 142043, + [SMALL_STATE(3891)] = 142058, + [SMALL_STATE(3892)] = 142071, + [SMALL_STATE(3893)] = 142094, + [SMALL_STATE(3894)] = 142113, + [SMALL_STATE(3895)] = 142132, + [SMALL_STATE(3896)] = 142151, + [SMALL_STATE(3897)] = 142174, + [SMALL_STATE(3898)] = 142197, + [SMALL_STATE(3899)] = 142220, + [SMALL_STATE(3900)] = 142239, + [SMALL_STATE(3901)] = 142262, + [SMALL_STATE(3902)] = 142285, + [SMALL_STATE(3903)] = 142308, + [SMALL_STATE(3904)] = 142331, + [SMALL_STATE(3905)] = 142348, + [SMALL_STATE(3906)] = 142365, + [SMALL_STATE(3907)] = 142388, + [SMALL_STATE(3908)] = 142411, + [SMALL_STATE(3909)] = 142428, + [SMALL_STATE(3910)] = 142451, + [SMALL_STATE(3911)] = 142468, + [SMALL_STATE(3912)] = 142485, + [SMALL_STATE(3913)] = 142500, + [SMALL_STATE(3914)] = 142523, + [SMALL_STATE(3915)] = 142546, + [SMALL_STATE(3916)] = 142569, + [SMALL_STATE(3917)] = 142592, + [SMALL_STATE(3918)] = 142615, + [SMALL_STATE(3919)] = 142632, + [SMALL_STATE(3920)] = 142647, + [SMALL_STATE(3921)] = 142670, + [SMALL_STATE(3922)] = 142687, + [SMALL_STATE(3923)] = 142704, + [SMALL_STATE(3924)] = 142721, + [SMALL_STATE(3925)] = 142744, + [SMALL_STATE(3926)] = 142761, + [SMALL_STATE(3927)] = 142780, + [SMALL_STATE(3928)] = 142797, + [SMALL_STATE(3929)] = 142816, + [SMALL_STATE(3930)] = 142831, + [SMALL_STATE(3931)] = 142848, + [SMALL_STATE(3932)] = 142863, + [SMALL_STATE(3933)] = 142882, + [SMALL_STATE(3934)] = 142901, + [SMALL_STATE(3935)] = 142920, + [SMALL_STATE(3936)] = 142943, + [SMALL_STATE(3937)] = 142966, + [SMALL_STATE(3938)] = 142983, + [SMALL_STATE(3939)] = 143006, + [SMALL_STATE(3940)] = 143023, + [SMALL_STATE(3941)] = 143042, + [SMALL_STATE(3942)] = 143061, + [SMALL_STATE(3943)] = 143084, + [SMALL_STATE(3944)] = 143101, + [SMALL_STATE(3945)] = 143124, + [SMALL_STATE(3946)] = 143147, + [SMALL_STATE(3947)] = 143166, + [SMALL_STATE(3948)] = 143189, + [SMALL_STATE(3949)] = 143204, + [SMALL_STATE(3950)] = 143219, + [SMALL_STATE(3951)] = 143236, + [SMALL_STATE(3952)] = 143253, + [SMALL_STATE(3953)] = 143276, + [SMALL_STATE(3954)] = 143291, + [SMALL_STATE(3955)] = 143308, + [SMALL_STATE(3956)] = 143323, + [SMALL_STATE(3957)] = 143336, + [SMALL_STATE(3958)] = 143359, + [SMALL_STATE(3959)] = 143382, + [SMALL_STATE(3960)] = 143405, + [SMALL_STATE(3961)] = 143428, + [SMALL_STATE(3962)] = 143451, + [SMALL_STATE(3963)] = 143464, + [SMALL_STATE(3964)] = 143480, + [SMALL_STATE(3965)] = 143500, + [SMALL_STATE(3966)] = 143516, + [SMALL_STATE(3967)] = 143528, + [SMALL_STATE(3968)] = 143540, + [SMALL_STATE(3969)] = 143552, + [SMALL_STATE(3970)] = 143564, + [SMALL_STATE(3971)] = 143576, + [SMALL_STATE(3972)] = 143588, + [SMALL_STATE(3973)] = 143604, + [SMALL_STATE(3974)] = 143622, + [SMALL_STATE(3975)] = 143634, + [SMALL_STATE(3976)] = 143646, + [SMALL_STATE(3977)] = 143658, + [SMALL_STATE(3978)] = 143670, + [SMALL_STATE(3979)] = 143686, + [SMALL_STATE(3980)] = 143702, + [SMALL_STATE(3981)] = 143718, + [SMALL_STATE(3982)] = 143734, + [SMALL_STATE(3983)] = 143754, + [SMALL_STATE(3984)] = 143768, + [SMALL_STATE(3985)] = 143786, + [SMALL_STATE(3986)] = 143806, + [SMALL_STATE(3987)] = 143824, + [SMALL_STATE(3988)] = 143842, + [SMALL_STATE(3989)] = 143860, + [SMALL_STATE(3990)] = 143876, + [SMALL_STATE(3991)] = 143892, + [SMALL_STATE(3992)] = 143908, + [SMALL_STATE(3993)] = 143924, + [SMALL_STATE(3994)] = 143944, + [SMALL_STATE(3995)] = 143964, + [SMALL_STATE(3996)] = 143976, + [SMALL_STATE(3997)] = 143988, + [SMALL_STATE(3998)] = 144008, + [SMALL_STATE(3999)] = 144020, + [SMALL_STATE(4000)] = 144040, + [SMALL_STATE(4001)] = 144052, + [SMALL_STATE(4002)] = 144068, + [SMALL_STATE(4003)] = 144088, + [SMALL_STATE(4004)] = 144104, + [SMALL_STATE(4005)] = 144116, + [SMALL_STATE(4006)] = 144128, + [SMALL_STATE(4007)] = 144140, + [SMALL_STATE(4008)] = 144160, + [SMALL_STATE(4009)] = 144180, + [SMALL_STATE(4010)] = 144198, + [SMALL_STATE(4011)] = 144218, + [SMALL_STATE(4012)] = 144230, + [SMALL_STATE(4013)] = 144250, + [SMALL_STATE(4014)] = 144270, + [SMALL_STATE(4015)] = 144282, + [SMALL_STATE(4016)] = 144298, + [SMALL_STATE(4017)] = 144314, + [SMALL_STATE(4018)] = 144332, + [SMALL_STATE(4019)] = 144344, + [SMALL_STATE(4020)] = 144360, + [SMALL_STATE(4021)] = 144376, + [SMALL_STATE(4022)] = 144396, + [SMALL_STATE(4023)] = 144412, + [SMALL_STATE(4024)] = 144432, + [SMALL_STATE(4025)] = 144452, + [SMALL_STATE(4026)] = 144472, + [SMALL_STATE(4027)] = 144488, + [SMALL_STATE(4028)] = 144504, + [SMALL_STATE(4029)] = 144520, + [SMALL_STATE(4030)] = 144536, + [SMALL_STATE(4031)] = 144552, + [SMALL_STATE(4032)] = 144568, + [SMALL_STATE(4033)] = 144586, + [SMALL_STATE(4034)] = 144602, + [SMALL_STATE(4035)] = 144622, + [SMALL_STATE(4036)] = 144634, + [SMALL_STATE(4037)] = 144654, + [SMALL_STATE(4038)] = 144674, + [SMALL_STATE(4039)] = 144694, + [SMALL_STATE(4040)] = 144706, + [SMALL_STATE(4041)] = 144718, + [SMALL_STATE(4042)] = 144730, + [SMALL_STATE(4043)] = 144750, + [SMALL_STATE(4044)] = 144762, + [SMALL_STATE(4045)] = 144782, + [SMALL_STATE(4046)] = 144802, + [SMALL_STATE(4047)] = 144814, + [SMALL_STATE(4048)] = 144826, + [SMALL_STATE(4049)] = 144846, + [SMALL_STATE(4050)] = 144866, + [SMALL_STATE(4051)] = 144884, + [SMALL_STATE(4052)] = 144900, + [SMALL_STATE(4053)] = 144916, + [SMALL_STATE(4054)] = 144928, + [SMALL_STATE(4055)] = 144944, + [SMALL_STATE(4056)] = 144960, + [SMALL_STATE(4057)] = 144976, + [SMALL_STATE(4058)] = 144996, + [SMALL_STATE(4059)] = 145008, + [SMALL_STATE(4060)] = 145028, + [SMALL_STATE(4061)] = 145040, + [SMALL_STATE(4062)] = 145060, + [SMALL_STATE(4063)] = 145080, + [SMALL_STATE(4064)] = 145092, + [SMALL_STATE(4065)] = 145108, + [SMALL_STATE(4066)] = 145128, + [SMALL_STATE(4067)] = 145144, + [SMALL_STATE(4068)] = 145160, + [SMALL_STATE(4069)] = 145176, + [SMALL_STATE(4070)] = 145188, + [SMALL_STATE(4071)] = 145208, + [SMALL_STATE(4072)] = 145224, + [SMALL_STATE(4073)] = 145240, + [SMALL_STATE(4074)] = 145252, + [SMALL_STATE(4075)] = 145268, + [SMALL_STATE(4076)] = 145284, + [SMALL_STATE(4077)] = 145304, + [SMALL_STATE(4078)] = 145322, + [SMALL_STATE(4079)] = 145340, + [SMALL_STATE(4080)] = 145356, + [SMALL_STATE(4081)] = 145372, + [SMALL_STATE(4082)] = 145392, + [SMALL_STATE(4083)] = 145408, + [SMALL_STATE(4084)] = 145420, + [SMALL_STATE(4085)] = 145434, + [SMALL_STATE(4086)] = 145454, + [SMALL_STATE(4087)] = 145468, + [SMALL_STATE(4088)] = 145480, + [SMALL_STATE(4089)] = 145492, + [SMALL_STATE(4090)] = 145504, + [SMALL_STATE(4091)] = 145516, + [SMALL_STATE(4092)] = 145536, + [SMALL_STATE(4093)] = 145552, + [SMALL_STATE(4094)] = 145568, + [SMALL_STATE(4095)] = 145584, + [SMALL_STATE(4096)] = 145600, + [SMALL_STATE(4097)] = 145612, + [SMALL_STATE(4098)] = 145628, + [SMALL_STATE(4099)] = 145646, + [SMALL_STATE(4100)] = 145662, + [SMALL_STATE(4101)] = 145678, + [SMALL_STATE(4102)] = 145694, + [SMALL_STATE(4103)] = 145710, + [SMALL_STATE(4104)] = 145726, + [SMALL_STATE(4105)] = 145746, + [SMALL_STATE(4106)] = 145758, + [SMALL_STATE(4107)] = 145774, + [SMALL_STATE(4108)] = 145786, + [SMALL_STATE(4109)] = 145802, + [SMALL_STATE(4110)] = 145818, + [SMALL_STATE(4111)] = 145830, + [SMALL_STATE(4112)] = 145842, + [SMALL_STATE(4113)] = 145854, + [SMALL_STATE(4114)] = 145870, + [SMALL_STATE(4115)] = 145886, + [SMALL_STATE(4116)] = 145906, + [SMALL_STATE(4117)] = 145922, + [SMALL_STATE(4118)] = 145938, + [SMALL_STATE(4119)] = 145954, + [SMALL_STATE(4120)] = 145970, + [SMALL_STATE(4121)] = 145986, + [SMALL_STATE(4122)] = 146002, + [SMALL_STATE(4123)] = 146018, + [SMALL_STATE(4124)] = 146034, + [SMALL_STATE(4125)] = 146050, + [SMALL_STATE(4126)] = 146062, + [SMALL_STATE(4127)] = 146074, + [SMALL_STATE(4128)] = 146086, + [SMALL_STATE(4129)] = 146098, + [SMALL_STATE(4130)] = 146116, + [SMALL_STATE(4131)] = 146132, + [SMALL_STATE(4132)] = 146148, + [SMALL_STATE(4133)] = 146164, + [SMALL_STATE(4134)] = 146180, + [SMALL_STATE(4135)] = 146196, + [SMALL_STATE(4136)] = 146216, + [SMALL_STATE(4137)] = 146236, + [SMALL_STATE(4138)] = 146252, + [SMALL_STATE(4139)] = 146268, + [SMALL_STATE(4140)] = 146284, + [SMALL_STATE(4141)] = 146300, + [SMALL_STATE(4142)] = 146316, + [SMALL_STATE(4143)] = 146332, + [SMALL_STATE(4144)] = 146348, + [SMALL_STATE(4145)] = 146364, + [SMALL_STATE(4146)] = 146384, + [SMALL_STATE(4147)] = 146400, + [SMALL_STATE(4148)] = 146418, + [SMALL_STATE(4149)] = 146438, + [SMALL_STATE(4150)] = 146454, + [SMALL_STATE(4151)] = 146474, + [SMALL_STATE(4152)] = 146488, + [SMALL_STATE(4153)] = 146504, + [SMALL_STATE(4154)] = 146520, + [SMALL_STATE(4155)] = 146532, + [SMALL_STATE(4156)] = 146548, + [SMALL_STATE(4157)] = 146568, + [SMALL_STATE(4158)] = 146588, + [SMALL_STATE(4159)] = 146608, + [SMALL_STATE(4160)] = 146624, + [SMALL_STATE(4161)] = 146640, + [SMALL_STATE(4162)] = 146652, + [SMALL_STATE(4163)] = 146668, + [SMALL_STATE(4164)] = 146686, + [SMALL_STATE(4165)] = 146702, + [SMALL_STATE(4166)] = 146714, + [SMALL_STATE(4167)] = 146730, + [SMALL_STATE(4168)] = 146746, + [SMALL_STATE(4169)] = 146762, + [SMALL_STATE(4170)] = 146774, + [SMALL_STATE(4171)] = 146786, + [SMALL_STATE(4172)] = 146802, + [SMALL_STATE(4173)] = 146814, + [SMALL_STATE(4174)] = 146830, + [SMALL_STATE(4175)] = 146846, + [SMALL_STATE(4176)] = 146862, + [SMALL_STATE(4177)] = 146874, + [SMALL_STATE(4178)] = 146886, + [SMALL_STATE(4179)] = 146900, + [SMALL_STATE(4180)] = 146912, + [SMALL_STATE(4181)] = 146928, + [SMALL_STATE(4182)] = 146940, + [SMALL_STATE(4183)] = 146952, + [SMALL_STATE(4184)] = 146968, + [SMALL_STATE(4185)] = 146984, + [SMALL_STATE(4186)] = 147000, + [SMALL_STATE(4187)] = 147012, + [SMALL_STATE(4188)] = 147024, + [SMALL_STATE(4189)] = 147040, + [SMALL_STATE(4190)] = 147056, + [SMALL_STATE(4191)] = 147076, + [SMALL_STATE(4192)] = 147088, + [SMALL_STATE(4193)] = 147100, + [SMALL_STATE(4194)] = 147120, + [SMALL_STATE(4195)] = 147132, + [SMALL_STATE(4196)] = 147144, + [SMALL_STATE(4197)] = 147160, + [SMALL_STATE(4198)] = 147176, + [SMALL_STATE(4199)] = 147192, + [SMALL_STATE(4200)] = 147206, + [SMALL_STATE(4201)] = 147222, + [SMALL_STATE(4202)] = 147234, + [SMALL_STATE(4203)] = 147250, + [SMALL_STATE(4204)] = 147270, + [SMALL_STATE(4205)] = 147290, + [SMALL_STATE(4206)] = 147306, + [SMALL_STATE(4207)] = 147324, + [SMALL_STATE(4208)] = 147340, + [SMALL_STATE(4209)] = 147356, + [SMALL_STATE(4210)] = 147372, + [SMALL_STATE(4211)] = 147388, + [SMALL_STATE(4212)] = 147404, + [SMALL_STATE(4213)] = 147418, + [SMALL_STATE(4214)] = 147432, + [SMALL_STATE(4215)] = 147444, + [SMALL_STATE(4216)] = 147456, + [SMALL_STATE(4217)] = 147468, + [SMALL_STATE(4218)] = 147480, + [SMALL_STATE(4219)] = 147492, + [SMALL_STATE(4220)] = 147508, + [SMALL_STATE(4221)] = 147528, + [SMALL_STATE(4222)] = 147544, + [SMALL_STATE(4223)] = 147560, + [SMALL_STATE(4224)] = 147578, + [SMALL_STATE(4225)] = 147590, + [SMALL_STATE(4226)] = 147610, + [SMALL_STATE(4227)] = 147630, + [SMALL_STATE(4228)] = 147646, + [SMALL_STATE(4229)] = 147662, + [SMALL_STATE(4230)] = 147682, + [SMALL_STATE(4231)] = 147702, + [SMALL_STATE(4232)] = 147722, + [SMALL_STATE(4233)] = 147734, + [SMALL_STATE(4234)] = 147750, + [SMALL_STATE(4235)] = 147762, + [SMALL_STATE(4236)] = 147780, + [SMALL_STATE(4237)] = 147796, + [SMALL_STATE(4238)] = 147810, + [SMALL_STATE(4239)] = 147830, + [SMALL_STATE(4240)] = 147842, + [SMALL_STATE(4241)] = 147862, + [SMALL_STATE(4242)] = 147882, + [SMALL_STATE(4243)] = 147894, + [SMALL_STATE(4244)] = 147906, + [SMALL_STATE(4245)] = 147926, + [SMALL_STATE(4246)] = 147938, + [SMALL_STATE(4247)] = 147954, + [SMALL_STATE(4248)] = 147966, + [SMALL_STATE(4249)] = 147982, + [SMALL_STATE(4250)] = 148002, + [SMALL_STATE(4251)] = 148016, + [SMALL_STATE(4252)] = 148030, + [SMALL_STATE(4253)] = 148042, + [SMALL_STATE(4254)] = 148054, + [SMALL_STATE(4255)] = 148066, + [SMALL_STATE(4256)] = 148080, + [SMALL_STATE(4257)] = 148100, + [SMALL_STATE(4258)] = 148112, + [SMALL_STATE(4259)] = 148128, + [SMALL_STATE(4260)] = 148146, + [SMALL_STATE(4261)] = 148158, + [SMALL_STATE(4262)] = 148174, + [SMALL_STATE(4263)] = 148186, + [SMALL_STATE(4264)] = 148202, + [SMALL_STATE(4265)] = 148222, + [SMALL_STATE(4266)] = 148234, + [SMALL_STATE(4267)] = 148250, + [SMALL_STATE(4268)] = 148270, + [SMALL_STATE(4269)] = 148282, + [SMALL_STATE(4270)] = 148296, + [SMALL_STATE(4271)] = 148316, + [SMALL_STATE(4272)] = 148332, + [SMALL_STATE(4273)] = 148348, + [SMALL_STATE(4274)] = 148362, + [SMALL_STATE(4275)] = 148378, + [SMALL_STATE(4276)] = 148394, + [SMALL_STATE(4277)] = 148410, + [SMALL_STATE(4278)] = 148422, + [SMALL_STATE(4279)] = 148434, + [SMALL_STATE(4280)] = 148450, + [SMALL_STATE(4281)] = 148462, + [SMALL_STATE(4282)] = 148482, + [SMALL_STATE(4283)] = 148494, + [SMALL_STATE(4284)] = 148514, + [SMALL_STATE(4285)] = 148532, + [SMALL_STATE(4286)] = 148548, + [SMALL_STATE(4287)] = 148560, + [SMALL_STATE(4288)] = 148576, + [SMALL_STATE(4289)] = 148588, + [SMALL_STATE(4290)] = 148604, + [SMALL_STATE(4291)] = 148622, + [SMALL_STATE(4292)] = 148638, + [SMALL_STATE(4293)] = 148654, + [SMALL_STATE(4294)] = 148670, + [SMALL_STATE(4295)] = 148688, + [SMALL_STATE(4296)] = 148700, + [SMALL_STATE(4297)] = 148716, + [SMALL_STATE(4298)] = 148732, + [SMALL_STATE(4299)] = 148752, + [SMALL_STATE(4300)] = 148764, + [SMALL_STATE(4301)] = 148776, + [SMALL_STATE(4302)] = 148792, + [SMALL_STATE(4303)] = 148808, + [SMALL_STATE(4304)] = 148826, + [SMALL_STATE(4305)] = 148842, + [SMALL_STATE(4306)] = 148858, + [SMALL_STATE(4307)] = 148874, + [SMALL_STATE(4308)] = 148894, + [SMALL_STATE(4309)] = 148914, + [SMALL_STATE(4310)] = 148930, + [SMALL_STATE(4311)] = 148946, + [SMALL_STATE(4312)] = 148962, + [SMALL_STATE(4313)] = 148978, + [SMALL_STATE(4314)] = 148998, + [SMALL_STATE(4315)] = 149018, + [SMALL_STATE(4316)] = 149036, + [SMALL_STATE(4317)] = 149052, + [SMALL_STATE(4318)] = 149068, + [SMALL_STATE(4319)] = 149084, + [SMALL_STATE(4320)] = 149100, + [SMALL_STATE(4321)] = 149120, + [SMALL_STATE(4322)] = 149132, + [SMALL_STATE(4323)] = 149152, + [SMALL_STATE(4324)] = 149168, + [SMALL_STATE(4325)] = 149184, + [SMALL_STATE(4326)] = 149198, + [SMALL_STATE(4327)] = 149216, + [SMALL_STATE(4328)] = 149228, + [SMALL_STATE(4329)] = 149244, + [SMALL_STATE(4330)] = 149260, + [SMALL_STATE(4331)] = 149276, + [SMALL_STATE(4332)] = 149296, + [SMALL_STATE(4333)] = 149308, + [SMALL_STATE(4334)] = 149324, + [SMALL_STATE(4335)] = 149336, + [SMALL_STATE(4336)] = 149348, + [SMALL_STATE(4337)] = 149368, + [SMALL_STATE(4338)] = 149384, + [SMALL_STATE(4339)] = 149400, + [SMALL_STATE(4340)] = 149412, + [SMALL_STATE(4341)] = 149428, + [SMALL_STATE(4342)] = 149444, + [SMALL_STATE(4343)] = 149464, + [SMALL_STATE(4344)] = 149480, + [SMALL_STATE(4345)] = 149496, + [SMALL_STATE(4346)] = 149512, + [SMALL_STATE(4347)] = 149524, + [SMALL_STATE(4348)] = 149540, + [SMALL_STATE(4349)] = 149552, + [SMALL_STATE(4350)] = 149568, + [SMALL_STATE(4351)] = 149584, + [SMALL_STATE(4352)] = 149596, + [SMALL_STATE(4353)] = 149612, + [SMALL_STATE(4354)] = 149628, + [SMALL_STATE(4355)] = 149644, + [SMALL_STATE(4356)] = 149660, + [SMALL_STATE(4357)] = 149676, + [SMALL_STATE(4358)] = 149690, + [SMALL_STATE(4359)] = 149704, + [SMALL_STATE(4360)] = 149720, + [SMALL_STATE(4361)] = 149736, + [SMALL_STATE(4362)] = 149752, + [SMALL_STATE(4363)] = 149768, + [SMALL_STATE(4364)] = 149780, + [SMALL_STATE(4365)] = 149800, + [SMALL_STATE(4366)] = 149812, + [SMALL_STATE(4367)] = 149828, + [SMALL_STATE(4368)] = 149840, + [SMALL_STATE(4369)] = 149852, + [SMALL_STATE(4370)] = 149864, + [SMALL_STATE(4371)] = 149880, + [SMALL_STATE(4372)] = 149896, + [SMALL_STATE(4373)] = 149912, + [SMALL_STATE(4374)] = 149924, + [SMALL_STATE(4375)] = 149936, + [SMALL_STATE(4376)] = 149954, + [SMALL_STATE(4377)] = 149972, + [SMALL_STATE(4378)] = 149986, + [SMALL_STATE(4379)] = 150000, + [SMALL_STATE(4380)] = 150016, + [SMALL_STATE(4381)] = 150030, + [SMALL_STATE(4382)] = 150046, + [SMALL_STATE(4383)] = 150066, + [SMALL_STATE(4384)] = 150082, + [SMALL_STATE(4385)] = 150098, + [SMALL_STATE(4386)] = 150110, + [SMALL_STATE(4387)] = 150130, + [SMALL_STATE(4388)] = 150142, + [SMALL_STATE(4389)] = 150156, + [SMALL_STATE(4390)] = 150176, + [SMALL_STATE(4391)] = 150192, + [SMALL_STATE(4392)] = 150212, + [SMALL_STATE(4393)] = 150226, + [SMALL_STATE(4394)] = 150240, + [SMALL_STATE(4395)] = 150254, + [SMALL_STATE(4396)] = 150270, + [SMALL_STATE(4397)] = 150286, + [SMALL_STATE(4398)] = 150302, + [SMALL_STATE(4399)] = 150318, + [SMALL_STATE(4400)] = 150334, + [SMALL_STATE(4401)] = 150348, + [SMALL_STATE(4402)] = 150362, + [SMALL_STATE(4403)] = 150378, + [SMALL_STATE(4404)] = 150394, + [SMALL_STATE(4405)] = 150406, + [SMALL_STATE(4406)] = 150422, + [SMALL_STATE(4407)] = 150438, + [SMALL_STATE(4408)] = 150454, + [SMALL_STATE(4409)] = 150466, + [SMALL_STATE(4410)] = 150482, + [SMALL_STATE(4411)] = 150502, + [SMALL_STATE(4412)] = 150518, + [SMALL_STATE(4413)] = 150534, + [SMALL_STATE(4414)] = 150550, + [SMALL_STATE(4415)] = 150566, + [SMALL_STATE(4416)] = 150582, + [SMALL_STATE(4417)] = 150594, + [SMALL_STATE(4418)] = 150606, + [SMALL_STATE(4419)] = 150618, + [SMALL_STATE(4420)] = 150630, + [SMALL_STATE(4421)] = 150646, + [SMALL_STATE(4422)] = 150658, + [SMALL_STATE(4423)] = 150670, + [SMALL_STATE(4424)] = 150686, + [SMALL_STATE(4425)] = 150698, + [SMALL_STATE(4426)] = 150714, + [SMALL_STATE(4427)] = 150730, + [SMALL_STATE(4428)] = 150742, + [SMALL_STATE(4429)] = 150758, + [SMALL_STATE(4430)] = 150772, + [SMALL_STATE(4431)] = 150784, + [SMALL_STATE(4432)] = 150800, + [SMALL_STATE(4433)] = 150816, + [SMALL_STATE(4434)] = 150828, + [SMALL_STATE(4435)] = 150848, + [SMALL_STATE(4436)] = 150868, + [SMALL_STATE(4437)] = 150888, + [SMALL_STATE(4438)] = 150904, + [SMALL_STATE(4439)] = 150920, + [SMALL_STATE(4440)] = 150934, + [SMALL_STATE(4441)] = 150950, + [SMALL_STATE(4442)] = 150964, + [SMALL_STATE(4443)] = 150976, + [SMALL_STATE(4444)] = 150992, + [SMALL_STATE(4445)] = 151008, + [SMALL_STATE(4446)] = 151024, + [SMALL_STATE(4447)] = 151036, + [SMALL_STATE(4448)] = 151056, + [SMALL_STATE(4449)] = 151072, + [SMALL_STATE(4450)] = 151084, + [SMALL_STATE(4451)] = 151096, + [SMALL_STATE(4452)] = 151108, + [SMALL_STATE(4453)] = 151120, + [SMALL_STATE(4454)] = 151132, + [SMALL_STATE(4455)] = 151148, + [SMALL_STATE(4456)] = 151160, + [SMALL_STATE(4457)] = 151172, + [SMALL_STATE(4458)] = 151184, + [SMALL_STATE(4459)] = 151202, + [SMALL_STATE(4460)] = 151214, + [SMALL_STATE(4461)] = 151226, + [SMALL_STATE(4462)] = 151238, + [SMALL_STATE(4463)] = 151250, + [SMALL_STATE(4464)] = 151266, + [SMALL_STATE(4465)] = 151278, + [SMALL_STATE(4466)] = 151298, + [SMALL_STATE(4467)] = 151310, + [SMALL_STATE(4468)] = 151322, + [SMALL_STATE(4469)] = 151339, + [SMALL_STATE(4470)] = 151350, + [SMALL_STATE(4471)] = 151367, + [SMALL_STATE(4472)] = 151384, + [SMALL_STATE(4473)] = 151401, + [SMALL_STATE(4474)] = 151416, + [SMALL_STATE(4475)] = 151433, + [SMALL_STATE(4476)] = 151448, + [SMALL_STATE(4477)] = 151465, + [SMALL_STATE(4478)] = 151482, + [SMALL_STATE(4479)] = 151499, + [SMALL_STATE(4480)] = 151514, + [SMALL_STATE(4481)] = 151531, + [SMALL_STATE(4482)] = 151548, + [SMALL_STATE(4483)] = 151565, + [SMALL_STATE(4484)] = 151582, + [SMALL_STATE(4485)] = 151595, + [SMALL_STATE(4486)] = 151610, + [SMALL_STATE(4487)] = 151625, + [SMALL_STATE(4488)] = 151640, + [SMALL_STATE(4489)] = 151657, + [SMALL_STATE(4490)] = 151674, + [SMALL_STATE(4491)] = 151691, + [SMALL_STATE(4492)] = 151708, + [SMALL_STATE(4493)] = 151725, + [SMALL_STATE(4494)] = 151742, + [SMALL_STATE(4495)] = 151755, + [SMALL_STATE(4496)] = 151772, + [SMALL_STATE(4497)] = 151787, + [SMALL_STATE(4498)] = 151804, + [SMALL_STATE(4499)] = 151819, + [SMALL_STATE(4500)] = 151836, + [SMALL_STATE(4501)] = 151853, + [SMALL_STATE(4502)] = 151870, + [SMALL_STATE(4503)] = 151887, + [SMALL_STATE(4504)] = 151904, + [SMALL_STATE(4505)] = 151921, + [SMALL_STATE(4506)] = 151938, + [SMALL_STATE(4507)] = 151955, + [SMALL_STATE(4508)] = 151972, + [SMALL_STATE(4509)] = 151989, + [SMALL_STATE(4510)] = 152006, + [SMALL_STATE(4511)] = 152023, + [SMALL_STATE(4512)] = 152040, + [SMALL_STATE(4513)] = 152057, + [SMALL_STATE(4514)] = 152074, + [SMALL_STATE(4515)] = 152091, + [SMALL_STATE(4516)] = 152108, + [SMALL_STATE(4517)] = 152125, + [SMALL_STATE(4518)] = 152140, + [SMALL_STATE(4519)] = 152155, + [SMALL_STATE(4520)] = 152172, + [SMALL_STATE(4521)] = 152189, + [SMALL_STATE(4522)] = 152204, + [SMALL_STATE(4523)] = 152219, + [SMALL_STATE(4524)] = 152234, + [SMALL_STATE(4525)] = 152251, + [SMALL_STATE(4526)] = 152266, + [SMALL_STATE(4527)] = 152283, + [SMALL_STATE(4528)] = 152300, + [SMALL_STATE(4529)] = 152317, + [SMALL_STATE(4530)] = 152334, + [SMALL_STATE(4531)] = 152351, + [SMALL_STATE(4532)] = 152368, + [SMALL_STATE(4533)] = 152385, + [SMALL_STATE(4534)] = 152400, + [SMALL_STATE(4535)] = 152415, + [SMALL_STATE(4536)] = 152430, + [SMALL_STATE(4537)] = 152447, + [SMALL_STATE(4538)] = 152464, + [SMALL_STATE(4539)] = 152481, + [SMALL_STATE(4540)] = 152494, + [SMALL_STATE(4541)] = 152511, + [SMALL_STATE(4542)] = 152528, + [SMALL_STATE(4543)] = 152545, + [SMALL_STATE(4544)] = 152562, + [SMALL_STATE(4545)] = 152575, + [SMALL_STATE(4546)] = 152592, + [SMALL_STATE(4547)] = 152607, + [SMALL_STATE(4548)] = 152624, + [SMALL_STATE(4549)] = 152641, + [SMALL_STATE(4550)] = 152658, + [SMALL_STATE(4551)] = 152669, + [SMALL_STATE(4552)] = 152686, + [SMALL_STATE(4553)] = 152703, + [SMALL_STATE(4554)] = 152718, + [SMALL_STATE(4555)] = 152733, + [SMALL_STATE(4556)] = 152750, + [SMALL_STATE(4557)] = 152765, + [SMALL_STATE(4558)] = 152780, + [SMALL_STATE(4559)] = 152795, + [SMALL_STATE(4560)] = 152812, + [SMALL_STATE(4561)] = 152829, + [SMALL_STATE(4562)] = 152846, + [SMALL_STATE(4563)] = 152863, + [SMALL_STATE(4564)] = 152876, + [SMALL_STATE(4565)] = 152893, + [SMALL_STATE(4566)] = 152904, + [SMALL_STATE(4567)] = 152919, + [SMALL_STATE(4568)] = 152934, + [SMALL_STATE(4569)] = 152951, + [SMALL_STATE(4570)] = 152968, + [SMALL_STATE(4571)] = 152985, + [SMALL_STATE(4572)] = 153000, + [SMALL_STATE(4573)] = 153017, + [SMALL_STATE(4574)] = 153034, + [SMALL_STATE(4575)] = 153051, + [SMALL_STATE(4576)] = 153068, + [SMALL_STATE(4577)] = 153085, + [SMALL_STATE(4578)] = 153102, + [SMALL_STATE(4579)] = 153119, + [SMALL_STATE(4580)] = 153136, + [SMALL_STATE(4581)] = 153153, + [SMALL_STATE(4582)] = 153170, + [SMALL_STATE(4583)] = 153187, + [SMALL_STATE(4584)] = 153204, + [SMALL_STATE(4585)] = 153221, + [SMALL_STATE(4586)] = 153238, + [SMALL_STATE(4587)] = 153255, + [SMALL_STATE(4588)] = 153272, + [SMALL_STATE(4589)] = 153289, + [SMALL_STATE(4590)] = 153306, + [SMALL_STATE(4591)] = 153317, + [SMALL_STATE(4592)] = 153332, + [SMALL_STATE(4593)] = 153349, + [SMALL_STATE(4594)] = 153366, + [SMALL_STATE(4595)] = 153383, + [SMALL_STATE(4596)] = 153400, + [SMALL_STATE(4597)] = 153417, + [SMALL_STATE(4598)] = 153430, + [SMALL_STATE(4599)] = 153447, + [SMALL_STATE(4600)] = 153464, + [SMALL_STATE(4601)] = 153481, + [SMALL_STATE(4602)] = 153496, + [SMALL_STATE(4603)] = 153511, + [SMALL_STATE(4604)] = 153526, + [SMALL_STATE(4605)] = 153543, + [SMALL_STATE(4606)] = 153560, + [SMALL_STATE(4607)] = 153577, + [SMALL_STATE(4608)] = 153594, + [SMALL_STATE(4609)] = 153608, + [SMALL_STATE(4610)] = 153622, + [SMALL_STATE(4611)] = 153636, + [SMALL_STATE(4612)] = 153650, + [SMALL_STATE(4613)] = 153664, + [SMALL_STATE(4614)] = 153674, + [SMALL_STATE(4615)] = 153688, + [SMALL_STATE(4616)] = 153698, + [SMALL_STATE(4617)] = 153708, + [SMALL_STATE(4618)] = 153718, + [SMALL_STATE(4619)] = 153728, + [SMALL_STATE(4620)] = 153738, + [SMALL_STATE(4621)] = 153748, + [SMALL_STATE(4622)] = 153758, + [SMALL_STATE(4623)] = 153768, + [SMALL_STATE(4624)] = 153778, + [SMALL_STATE(4625)] = 153788, + [SMALL_STATE(4626)] = 153802, + [SMALL_STATE(4627)] = 153812, + [SMALL_STATE(4628)] = 153822, + [SMALL_STATE(4629)] = 153832, + [SMALL_STATE(4630)] = 153842, + [SMALL_STATE(4631)] = 153854, + [SMALL_STATE(4632)] = 153864, + [SMALL_STATE(4633)] = 153874, + [SMALL_STATE(4634)] = 153884, + [SMALL_STATE(4635)] = 153898, + [SMALL_STATE(4636)] = 153910, + [SMALL_STATE(4637)] = 153922, + [SMALL_STATE(4638)] = 153932, + [SMALL_STATE(4639)] = 153946, + [SMALL_STATE(4640)] = 153960, + [SMALL_STATE(4641)] = 153970, + [SMALL_STATE(4642)] = 153980, + [SMALL_STATE(4643)] = 153990, + [SMALL_STATE(4644)] = 154000, + [SMALL_STATE(4645)] = 154010, + [SMALL_STATE(4646)] = 154020, + [SMALL_STATE(4647)] = 154034, + [SMALL_STATE(4648)] = 154048, + [SMALL_STATE(4649)] = 154058, + [SMALL_STATE(4650)] = 154068, + [SMALL_STATE(4651)] = 154082, + [SMALL_STATE(4652)] = 154092, + [SMALL_STATE(4653)] = 154106, + [SMALL_STATE(4654)] = 154116, + [SMALL_STATE(4655)] = 154130, + [SMALL_STATE(4656)] = 154144, + [SMALL_STATE(4657)] = 154158, + [SMALL_STATE(4658)] = 154168, + [SMALL_STATE(4659)] = 154182, + [SMALL_STATE(4660)] = 154196, + [SMALL_STATE(4661)] = 154206, + [SMALL_STATE(4662)] = 154216, + [SMALL_STATE(4663)] = 154230, + [SMALL_STATE(4664)] = 154244, + [SMALL_STATE(4665)] = 154254, + [SMALL_STATE(4666)] = 154264, + [SMALL_STATE(4667)] = 154274, + [SMALL_STATE(4668)] = 154284, + [SMALL_STATE(4669)] = 154294, + [SMALL_STATE(4670)] = 154304, + [SMALL_STATE(4671)] = 154318, + [SMALL_STATE(4672)] = 154332, + [SMALL_STATE(4673)] = 154342, + [SMALL_STATE(4674)] = 154352, + [SMALL_STATE(4675)] = 154362, + [SMALL_STATE(4676)] = 154372, + [SMALL_STATE(4677)] = 154382, + [SMALL_STATE(4678)] = 154396, + [SMALL_STATE(4679)] = 154410, + [SMALL_STATE(4680)] = 154424, + [SMALL_STATE(4681)] = 154438, + [SMALL_STATE(4682)] = 154448, + [SMALL_STATE(4683)] = 154458, + [SMALL_STATE(4684)] = 154468, + [SMALL_STATE(4685)] = 154478, + [SMALL_STATE(4686)] = 154488, + [SMALL_STATE(4687)] = 154498, + [SMALL_STATE(4688)] = 154508, + [SMALL_STATE(4689)] = 154522, + [SMALL_STATE(4690)] = 154536, + [SMALL_STATE(4691)] = 154550, + [SMALL_STATE(4692)] = 154562, + [SMALL_STATE(4693)] = 154576, + [SMALL_STATE(4694)] = 154586, + [SMALL_STATE(4695)] = 154600, + [SMALL_STATE(4696)] = 154610, + [SMALL_STATE(4697)] = 154624, + [SMALL_STATE(4698)] = 154638, + [SMALL_STATE(4699)] = 154652, + [SMALL_STATE(4700)] = 154666, + [SMALL_STATE(4701)] = 154676, + [SMALL_STATE(4702)] = 154690, + [SMALL_STATE(4703)] = 154700, + [SMALL_STATE(4704)] = 154710, + [SMALL_STATE(4705)] = 154720, + [SMALL_STATE(4706)] = 154730, + [SMALL_STATE(4707)] = 154740, + [SMALL_STATE(4708)] = 154750, + [SMALL_STATE(4709)] = 154760, + [SMALL_STATE(4710)] = 154770, + [SMALL_STATE(4711)] = 154780, + [SMALL_STATE(4712)] = 154790, + [SMALL_STATE(4713)] = 154800, + [SMALL_STATE(4714)] = 154810, + [SMALL_STATE(4715)] = 154824, + [SMALL_STATE(4716)] = 154838, + [SMALL_STATE(4717)] = 154848, + [SMALL_STATE(4718)] = 154858, + [SMALL_STATE(4719)] = 154868, + [SMALL_STATE(4720)] = 154882, + [SMALL_STATE(4721)] = 154892, + [SMALL_STATE(4722)] = 154906, + [SMALL_STATE(4723)] = 154916, + [SMALL_STATE(4724)] = 154926, + [SMALL_STATE(4725)] = 154936, + [SMALL_STATE(4726)] = 154946, + [SMALL_STATE(4727)] = 154956, + [SMALL_STATE(4728)] = 154966, + [SMALL_STATE(4729)] = 154976, + [SMALL_STATE(4730)] = 154986, + [SMALL_STATE(4731)] = 154996, + [SMALL_STATE(4732)] = 155006, + [SMALL_STATE(4733)] = 155020, + [SMALL_STATE(4734)] = 155034, + [SMALL_STATE(4735)] = 155044, + [SMALL_STATE(4736)] = 155054, + [SMALL_STATE(4737)] = 155064, + [SMALL_STATE(4738)] = 155078, + [SMALL_STATE(4739)] = 155088, + [SMALL_STATE(4740)] = 155102, + [SMALL_STATE(4741)] = 155112, + [SMALL_STATE(4742)] = 155122, + [SMALL_STATE(4743)] = 155132, + [SMALL_STATE(4744)] = 155142, + [SMALL_STATE(4745)] = 155152, + [SMALL_STATE(4746)] = 155162, + [SMALL_STATE(4747)] = 155172, + [SMALL_STATE(4748)] = 155182, + [SMALL_STATE(4749)] = 155192, + [SMALL_STATE(4750)] = 155206, + [SMALL_STATE(4751)] = 155216, + [SMALL_STATE(4752)] = 155226, + [SMALL_STATE(4753)] = 155236, + [SMALL_STATE(4754)] = 155246, + [SMALL_STATE(4755)] = 155256, + [SMALL_STATE(4756)] = 155266, + [SMALL_STATE(4757)] = 155278, + [SMALL_STATE(4758)] = 155292, + [SMALL_STATE(4759)] = 155306, + [SMALL_STATE(4760)] = 155320, + [SMALL_STATE(4761)] = 155330, + [SMALL_STATE(4762)] = 155340, + [SMALL_STATE(4763)] = 155350, + [SMALL_STATE(4764)] = 155360, + [SMALL_STATE(4765)] = 155370, + [SMALL_STATE(4766)] = 155380, + [SMALL_STATE(4767)] = 155394, + [SMALL_STATE(4768)] = 155404, + [SMALL_STATE(4769)] = 155418, + [SMALL_STATE(4770)] = 155428, + [SMALL_STATE(4771)] = 155442, + [SMALL_STATE(4772)] = 155456, + [SMALL_STATE(4773)] = 155466, + [SMALL_STATE(4774)] = 155480, + [SMALL_STATE(4775)] = 155490, + [SMALL_STATE(4776)] = 155500, + [SMALL_STATE(4777)] = 155514, + [SMALL_STATE(4778)] = 155528, + [SMALL_STATE(4779)] = 155542, + [SMALL_STATE(4780)] = 155554, + [SMALL_STATE(4781)] = 155568, + [SMALL_STATE(4782)] = 155578, + [SMALL_STATE(4783)] = 155592, + [SMALL_STATE(4784)] = 155606, + [SMALL_STATE(4785)] = 155618, + [SMALL_STATE(4786)] = 155628, + [SMALL_STATE(4787)] = 155638, + [SMALL_STATE(4788)] = 155648, + [SMALL_STATE(4789)] = 155660, + [SMALL_STATE(4790)] = 155670, + [SMALL_STATE(4791)] = 155680, + [SMALL_STATE(4792)] = 155692, + [SMALL_STATE(4793)] = 155702, + [SMALL_STATE(4794)] = 155712, + [SMALL_STATE(4795)] = 155724, + [SMALL_STATE(4796)] = 155738, + [SMALL_STATE(4797)] = 155748, + [SMALL_STATE(4798)] = 155762, + [SMALL_STATE(4799)] = 155774, + [SMALL_STATE(4800)] = 155784, + [SMALL_STATE(4801)] = 155794, + [SMALL_STATE(4802)] = 155804, + [SMALL_STATE(4803)] = 155818, + [SMALL_STATE(4804)] = 155828, + [SMALL_STATE(4805)] = 155842, + [SMALL_STATE(4806)] = 155852, + [SMALL_STATE(4807)] = 155866, + [SMALL_STATE(4808)] = 155876, + [SMALL_STATE(4809)] = 155886, + [SMALL_STATE(4810)] = 155896, + [SMALL_STATE(4811)] = 155906, + [SMALL_STATE(4812)] = 155916, + [SMALL_STATE(4813)] = 155930, + [SMALL_STATE(4814)] = 155940, + [SMALL_STATE(4815)] = 155950, + [SMALL_STATE(4816)] = 155964, + [SMALL_STATE(4817)] = 155978, + [SMALL_STATE(4818)] = 155992, + [SMALL_STATE(4819)] = 156004, + [SMALL_STATE(4820)] = 156014, + [SMALL_STATE(4821)] = 156024, + [SMALL_STATE(4822)] = 156038, + [SMALL_STATE(4823)] = 156048, + [SMALL_STATE(4824)] = 156060, + [SMALL_STATE(4825)] = 156074, + [SMALL_STATE(4826)] = 156084, + [SMALL_STATE(4827)] = 156094, + [SMALL_STATE(4828)] = 156104, + [SMALL_STATE(4829)] = 156114, + [SMALL_STATE(4830)] = 156124, + [SMALL_STATE(4831)] = 156134, + [SMALL_STATE(4832)] = 156144, + [SMALL_STATE(4833)] = 156154, + [SMALL_STATE(4834)] = 156166, + [SMALL_STATE(4835)] = 156180, + [SMALL_STATE(4836)] = 156194, + [SMALL_STATE(4837)] = 156208, + [SMALL_STATE(4838)] = 156222, + [SMALL_STATE(4839)] = 156236, + [SMALL_STATE(4840)] = 156246, + [SMALL_STATE(4841)] = 156260, + [SMALL_STATE(4842)] = 156272, + [SMALL_STATE(4843)] = 156282, + [SMALL_STATE(4844)] = 156292, + [SMALL_STATE(4845)] = 156302, + [SMALL_STATE(4846)] = 156312, + [SMALL_STATE(4847)] = 156322, + [SMALL_STATE(4848)] = 156332, + [SMALL_STATE(4849)] = 156342, + [SMALL_STATE(4850)] = 156352, + [SMALL_STATE(4851)] = 156362, + [SMALL_STATE(4852)] = 156376, + [SMALL_STATE(4853)] = 156386, + [SMALL_STATE(4854)] = 156400, + [SMALL_STATE(4855)] = 156414, + [SMALL_STATE(4856)] = 156428, + [SMALL_STATE(4857)] = 156438, + [SMALL_STATE(4858)] = 156452, + [SMALL_STATE(4859)] = 156466, + [SMALL_STATE(4860)] = 156476, + [SMALL_STATE(4861)] = 156486, + [SMALL_STATE(4862)] = 156496, + [SMALL_STATE(4863)] = 156506, + [SMALL_STATE(4864)] = 156516, + [SMALL_STATE(4865)] = 156526, + [SMALL_STATE(4866)] = 156536, + [SMALL_STATE(4867)] = 156550, + [SMALL_STATE(4868)] = 156560, + [SMALL_STATE(4869)] = 156570, + [SMALL_STATE(4870)] = 156580, + [SMALL_STATE(4871)] = 156590, + [SMALL_STATE(4872)] = 156600, + [SMALL_STATE(4873)] = 156610, + [SMALL_STATE(4874)] = 156620, + [SMALL_STATE(4875)] = 156634, + [SMALL_STATE(4876)] = 156648, + [SMALL_STATE(4877)] = 156658, + [SMALL_STATE(4878)] = 156668, + [SMALL_STATE(4879)] = 156678, + [SMALL_STATE(4880)] = 156688, + [SMALL_STATE(4881)] = 156698, + [SMALL_STATE(4882)] = 156708, + [SMALL_STATE(4883)] = 156718, + [SMALL_STATE(4884)] = 156728, + [SMALL_STATE(4885)] = 156738, + [SMALL_STATE(4886)] = 156748, + [SMALL_STATE(4887)] = 156762, + [SMALL_STATE(4888)] = 156772, + [SMALL_STATE(4889)] = 156786, + [SMALL_STATE(4890)] = 156796, + [SMALL_STATE(4891)] = 156810, + [SMALL_STATE(4892)] = 156820, + [SMALL_STATE(4893)] = 156830, + [SMALL_STATE(4894)] = 156840, + [SMALL_STATE(4895)] = 156850, + [SMALL_STATE(4896)] = 156860, + [SMALL_STATE(4897)] = 156870, + [SMALL_STATE(4898)] = 156880, + [SMALL_STATE(4899)] = 156890, + [SMALL_STATE(4900)] = 156900, + [SMALL_STATE(4901)] = 156910, + [SMALL_STATE(4902)] = 156920, + [SMALL_STATE(4903)] = 156934, + [SMALL_STATE(4904)] = 156944, + [SMALL_STATE(4905)] = 156958, + [SMALL_STATE(4906)] = 156972, + [SMALL_STATE(4907)] = 156986, + [SMALL_STATE(4908)] = 156996, + [SMALL_STATE(4909)] = 157006, + [SMALL_STATE(4910)] = 157016, + [SMALL_STATE(4911)] = 157026, + [SMALL_STATE(4912)] = 157036, + [SMALL_STATE(4913)] = 157046, + [SMALL_STATE(4914)] = 157056, + [SMALL_STATE(4915)] = 157066, + [SMALL_STATE(4916)] = 157080, + [SMALL_STATE(4917)] = 157094, + [SMALL_STATE(4918)] = 157104, + [SMALL_STATE(4919)] = 157118, + [SMALL_STATE(4920)] = 157132, + [SMALL_STATE(4921)] = 157142, + [SMALL_STATE(4922)] = 157152, + [SMALL_STATE(4923)] = 157162, + [SMALL_STATE(4924)] = 157172, + [SMALL_STATE(4925)] = 157182, + [SMALL_STATE(4926)] = 157192, + [SMALL_STATE(4927)] = 157202, + [SMALL_STATE(4928)] = 157212, + [SMALL_STATE(4929)] = 157222, + [SMALL_STATE(4930)] = 157232, + [SMALL_STATE(4931)] = 157242, + [SMALL_STATE(4932)] = 157252, + [SMALL_STATE(4933)] = 157262, + [SMALL_STATE(4934)] = 157276, + [SMALL_STATE(4935)] = 157290, + [SMALL_STATE(4936)] = 157300, + [SMALL_STATE(4937)] = 157314, + [SMALL_STATE(4938)] = 157324, + [SMALL_STATE(4939)] = 157334, + [SMALL_STATE(4940)] = 157344, + [SMALL_STATE(4941)] = 157354, + [SMALL_STATE(4942)] = 157368, + [SMALL_STATE(4943)] = 157382, + [SMALL_STATE(4944)] = 157394, + [SMALL_STATE(4945)] = 157404, + [SMALL_STATE(4946)] = 157418, + [SMALL_STATE(4947)] = 157428, + [SMALL_STATE(4948)] = 157442, + [SMALL_STATE(4949)] = 157452, + [SMALL_STATE(4950)] = 157462, + [SMALL_STATE(4951)] = 157472, + [SMALL_STATE(4952)] = 157482, + [SMALL_STATE(4953)] = 157496, + [SMALL_STATE(4954)] = 157506, + [SMALL_STATE(4955)] = 157516, + [SMALL_STATE(4956)] = 157526, + [SMALL_STATE(4957)] = 157540, + [SMALL_STATE(4958)] = 157550, + [SMALL_STATE(4959)] = 157560, + [SMALL_STATE(4960)] = 157570, + [SMALL_STATE(4961)] = 157580, + [SMALL_STATE(4962)] = 157590, + [SMALL_STATE(4963)] = 157600, + [SMALL_STATE(4964)] = 157614, + [SMALL_STATE(4965)] = 157628, + [SMALL_STATE(4966)] = 157642, + [SMALL_STATE(4967)] = 157656, + [SMALL_STATE(4968)] = 157670, + [SMALL_STATE(4969)] = 157680, + [SMALL_STATE(4970)] = 157690, + [SMALL_STATE(4971)] = 157700, + [SMALL_STATE(4972)] = 157714, + [SMALL_STATE(4973)] = 157726, + [SMALL_STATE(4974)] = 157738, + [SMALL_STATE(4975)] = 157748, + [SMALL_STATE(4976)] = 157762, + [SMALL_STATE(4977)] = 157772, + [SMALL_STATE(4978)] = 157786, + [SMALL_STATE(4979)] = 157800, + [SMALL_STATE(4980)] = 157810, + [SMALL_STATE(4981)] = 157820, + [SMALL_STATE(4982)] = 157834, + [SMALL_STATE(4983)] = 157844, + [SMALL_STATE(4984)] = 157854, + [SMALL_STATE(4985)] = 157864, + [SMALL_STATE(4986)] = 157874, + [SMALL_STATE(4987)] = 157888, + [SMALL_STATE(4988)] = 157898, + [SMALL_STATE(4989)] = 157912, + [SMALL_STATE(4990)] = 157926, + [SMALL_STATE(4991)] = 157940, + [SMALL_STATE(4992)] = 157950, + [SMALL_STATE(4993)] = 157960, + [SMALL_STATE(4994)] = 157970, + [SMALL_STATE(4995)] = 157980, + [SMALL_STATE(4996)] = 157990, + [SMALL_STATE(4997)] = 158000, + [SMALL_STATE(4998)] = 158010, + [SMALL_STATE(4999)] = 158022, + [SMALL_STATE(5000)] = 158032, + [SMALL_STATE(5001)] = 158042, + [SMALL_STATE(5002)] = 158056, + [SMALL_STATE(5003)] = 158068, + [SMALL_STATE(5004)] = 158078, + [SMALL_STATE(5005)] = 158088, + [SMALL_STATE(5006)] = 158102, + [SMALL_STATE(5007)] = 158112, + [SMALL_STATE(5008)] = 158122, + [SMALL_STATE(5009)] = 158132, + [SMALL_STATE(5010)] = 158144, + [SMALL_STATE(5011)] = 158154, + [SMALL_STATE(5012)] = 158164, + [SMALL_STATE(5013)] = 158174, + [SMALL_STATE(5014)] = 158188, + [SMALL_STATE(5015)] = 158198, + [SMALL_STATE(5016)] = 158212, + [SMALL_STATE(5017)] = 158222, + [SMALL_STATE(5018)] = 158232, + [SMALL_STATE(5019)] = 158242, + [SMALL_STATE(5020)] = 158252, + [SMALL_STATE(5021)] = 158262, + [SMALL_STATE(5022)] = 158272, + [SMALL_STATE(5023)] = 158286, + [SMALL_STATE(5024)] = 158296, + [SMALL_STATE(5025)] = 158306, + [SMALL_STATE(5026)] = 158316, + [SMALL_STATE(5027)] = 158326, + [SMALL_STATE(5028)] = 158340, + [SMALL_STATE(5029)] = 158350, + [SMALL_STATE(5030)] = 158360, + [SMALL_STATE(5031)] = 158370, + [SMALL_STATE(5032)] = 158380, + [SMALL_STATE(5033)] = 158390, + [SMALL_STATE(5034)] = 158400, + [SMALL_STATE(5035)] = 158410, + [SMALL_STATE(5036)] = 158420, + [SMALL_STATE(5037)] = 158430, + [SMALL_STATE(5038)] = 158440, + [SMALL_STATE(5039)] = 158450, + [SMALL_STATE(5040)] = 158460, + [SMALL_STATE(5041)] = 158470, + [SMALL_STATE(5042)] = 158480, + [SMALL_STATE(5043)] = 158490, + [SMALL_STATE(5044)] = 158504, + [SMALL_STATE(5045)] = 158514, + [SMALL_STATE(5046)] = 158524, + [SMALL_STATE(5047)] = 158534, + [SMALL_STATE(5048)] = 158544, + [SMALL_STATE(5049)] = 158554, + [SMALL_STATE(5050)] = 158564, + [SMALL_STATE(5051)] = 158574, + [SMALL_STATE(5052)] = 158584, + [SMALL_STATE(5053)] = 158594, + [SMALL_STATE(5054)] = 158604, + [SMALL_STATE(5055)] = 158614, + [SMALL_STATE(5056)] = 158624, + [SMALL_STATE(5057)] = 158634, + [SMALL_STATE(5058)] = 158644, + [SMALL_STATE(5059)] = 158654, + [SMALL_STATE(5060)] = 158664, + [SMALL_STATE(5061)] = 158674, + [SMALL_STATE(5062)] = 158684, + [SMALL_STATE(5063)] = 158696, + [SMALL_STATE(5064)] = 158706, + [SMALL_STATE(5065)] = 158716, + [SMALL_STATE(5066)] = 158726, + [SMALL_STATE(5067)] = 158736, + [SMALL_STATE(5068)] = 158746, + [SMALL_STATE(5069)] = 158756, + [SMALL_STATE(5070)] = 158766, + [SMALL_STATE(5071)] = 158778, + [SMALL_STATE(5072)] = 158792, + [SMALL_STATE(5073)] = 158802, + [SMALL_STATE(5074)] = 158816, + [SMALL_STATE(5075)] = 158826, + [SMALL_STATE(5076)] = 158836, + [SMALL_STATE(5077)] = 158846, + [SMALL_STATE(5078)] = 158856, + [SMALL_STATE(5079)] = 158866, + [SMALL_STATE(5080)] = 158876, + [SMALL_STATE(5081)] = 158886, + [SMALL_STATE(5082)] = 158896, + [SMALL_STATE(5083)] = 158906, + [SMALL_STATE(5084)] = 158916, + [SMALL_STATE(5085)] = 158926, + [SMALL_STATE(5086)] = 158936, + [SMALL_STATE(5087)] = 158946, + [SMALL_STATE(5088)] = 158956, + [SMALL_STATE(5089)] = 158970, + [SMALL_STATE(5090)] = 158980, + [SMALL_STATE(5091)] = 158990, + [SMALL_STATE(5092)] = 159000, + [SMALL_STATE(5093)] = 159014, + [SMALL_STATE(5094)] = 159024, + [SMALL_STATE(5095)] = 159034, + [SMALL_STATE(5096)] = 159044, + [SMALL_STATE(5097)] = 159054, + [SMALL_STATE(5098)] = 159064, + [SMALL_STATE(5099)] = 159078, + [SMALL_STATE(5100)] = 159088, + [SMALL_STATE(5101)] = 159098, + [SMALL_STATE(5102)] = 159108, + [SMALL_STATE(5103)] = 159122, + [SMALL_STATE(5104)] = 159132, + [SMALL_STATE(5105)] = 159146, + [SMALL_STATE(5106)] = 159156, + [SMALL_STATE(5107)] = 159168, + [SMALL_STATE(5108)] = 159178, + [SMALL_STATE(5109)] = 159192, + [SMALL_STATE(5110)] = 159204, + [SMALL_STATE(5111)] = 159214, + [SMALL_STATE(5112)] = 159224, + [SMALL_STATE(5113)] = 159234, + [SMALL_STATE(5114)] = 159244, + [SMALL_STATE(5115)] = 159254, + [SMALL_STATE(5116)] = 159264, + [SMALL_STATE(5117)] = 159274, + [SMALL_STATE(5118)] = 159284, + [SMALL_STATE(5119)] = 159294, + [SMALL_STATE(5120)] = 159304, + [SMALL_STATE(5121)] = 159314, + [SMALL_STATE(5122)] = 159324, + [SMALL_STATE(5123)] = 159334, + [SMALL_STATE(5124)] = 159344, + [SMALL_STATE(5125)] = 159354, + [SMALL_STATE(5126)] = 159364, + [SMALL_STATE(5127)] = 159374, + [SMALL_STATE(5128)] = 159384, + [SMALL_STATE(5129)] = 159394, + [SMALL_STATE(5130)] = 159404, + [SMALL_STATE(5131)] = 159414, + [SMALL_STATE(5132)] = 159424, + [SMALL_STATE(5133)] = 159438, + [SMALL_STATE(5134)] = 159448, + [SMALL_STATE(5135)] = 159458, + [SMALL_STATE(5136)] = 159468, + [SMALL_STATE(5137)] = 159478, + [SMALL_STATE(5138)] = 159488, + [SMALL_STATE(5139)] = 159498, + [SMALL_STATE(5140)] = 159508, + [SMALL_STATE(5141)] = 159518, + [SMALL_STATE(5142)] = 159528, + [SMALL_STATE(5143)] = 159542, + [SMALL_STATE(5144)] = 159552, + [SMALL_STATE(5145)] = 159562, + [SMALL_STATE(5146)] = 159572, + [SMALL_STATE(5147)] = 159582, + [SMALL_STATE(5148)] = 159592, + [SMALL_STATE(5149)] = 159602, + [SMALL_STATE(5150)] = 159616, + [SMALL_STATE(5151)] = 159630, + [SMALL_STATE(5152)] = 159640, + [SMALL_STATE(5153)] = 159650, + [SMALL_STATE(5154)] = 159660, + [SMALL_STATE(5155)] = 159674, + [SMALL_STATE(5156)] = 159688, + [SMALL_STATE(5157)] = 159702, + [SMALL_STATE(5158)] = 159712, + [SMALL_STATE(5159)] = 159726, + [SMALL_STATE(5160)] = 159736, + [SMALL_STATE(5161)] = 159750, + [SMALL_STATE(5162)] = 159760, + [SMALL_STATE(5163)] = 159774, + [SMALL_STATE(5164)] = 159786, + [SMALL_STATE(5165)] = 159800, + [SMALL_STATE(5166)] = 159810, + [SMALL_STATE(5167)] = 159820, + [SMALL_STATE(5168)] = 159830, + [SMALL_STATE(5169)] = 159844, + [SMALL_STATE(5170)] = 159854, + [SMALL_STATE(5171)] = 159868, + [SMALL_STATE(5172)] = 159878, + [SMALL_STATE(5173)] = 159892, + [SMALL_STATE(5174)] = 159902, + [SMALL_STATE(5175)] = 159916, + [SMALL_STATE(5176)] = 159926, + [SMALL_STATE(5177)] = 159936, + [SMALL_STATE(5178)] = 159946, + [SMALL_STATE(5179)] = 159956, + [SMALL_STATE(5180)] = 159966, + [SMALL_STATE(5181)] = 159976, + [SMALL_STATE(5182)] = 159986, + [SMALL_STATE(5183)] = 160000, + [SMALL_STATE(5184)] = 160012, + [SMALL_STATE(5185)] = 160026, + [SMALL_STATE(5186)] = 160036, + [SMALL_STATE(5187)] = 160046, + [SMALL_STATE(5188)] = 160056, + [SMALL_STATE(5189)] = 160066, + [SMALL_STATE(5190)] = 160076, + [SMALL_STATE(5191)] = 160086, + [SMALL_STATE(5192)] = 160096, + [SMALL_STATE(5193)] = 160106, + [SMALL_STATE(5194)] = 160116, + [SMALL_STATE(5195)] = 160126, + [SMALL_STATE(5196)] = 160140, + [SMALL_STATE(5197)] = 160154, + [SMALL_STATE(5198)] = 160164, + [SMALL_STATE(5199)] = 160174, + [SMALL_STATE(5200)] = 160184, + [SMALL_STATE(5201)] = 160198, + [SMALL_STATE(5202)] = 160208, + [SMALL_STATE(5203)] = 160222, + [SMALL_STATE(5204)] = 160232, + [SMALL_STATE(5205)] = 160242, + [SMALL_STATE(5206)] = 160252, + [SMALL_STATE(5207)] = 160262, + [SMALL_STATE(5208)] = 160272, + [SMALL_STATE(5209)] = 160282, + [SMALL_STATE(5210)] = 160292, + [SMALL_STATE(5211)] = 160302, + [SMALL_STATE(5212)] = 160316, + [SMALL_STATE(5213)] = 160326, + [SMALL_STATE(5214)] = 160340, + [SMALL_STATE(5215)] = 160354, + [SMALL_STATE(5216)] = 160368, + [SMALL_STATE(5217)] = 160378, + [SMALL_STATE(5218)] = 160388, + [SMALL_STATE(5219)] = 160398, + [SMALL_STATE(5220)] = 160412, + [SMALL_STATE(5221)] = 160422, + [SMALL_STATE(5222)] = 160436, + [SMALL_STATE(5223)] = 160446, + [SMALL_STATE(5224)] = 160456, + [SMALL_STATE(5225)] = 160467, + [SMALL_STATE(5226)] = 160478, + [SMALL_STATE(5227)] = 160489, + [SMALL_STATE(5228)] = 160498, + [SMALL_STATE(5229)] = 160509, + [SMALL_STATE(5230)] = 160518, + [SMALL_STATE(5231)] = 160527, + [SMALL_STATE(5232)] = 160538, + [SMALL_STATE(5233)] = 160549, + [SMALL_STATE(5234)] = 160560, + [SMALL_STATE(5235)] = 160571, + [SMALL_STATE(5236)] = 160582, + [SMALL_STATE(5237)] = 160593, + [SMALL_STATE(5238)] = 160604, + [SMALL_STATE(5239)] = 160613, + [SMALL_STATE(5240)] = 160624, + [SMALL_STATE(5241)] = 160635, + [SMALL_STATE(5242)] = 160646, + [SMALL_STATE(5243)] = 160655, + [SMALL_STATE(5244)] = 160664, + [SMALL_STATE(5245)] = 160675, + [SMALL_STATE(5246)] = 160686, + [SMALL_STATE(5247)] = 160695, + [SMALL_STATE(5248)] = 160706, + [SMALL_STATE(5249)] = 160717, + [SMALL_STATE(5250)] = 160728, + [SMALL_STATE(5251)] = 160739, + [SMALL_STATE(5252)] = 160750, + [SMALL_STATE(5253)] = 160761, + [SMALL_STATE(5254)] = 160772, + [SMALL_STATE(5255)] = 160781, + [SMALL_STATE(5256)] = 160792, + [SMALL_STATE(5257)] = 160801, + [SMALL_STATE(5258)] = 160810, + [SMALL_STATE(5259)] = 160819, + [SMALL_STATE(5260)] = 160830, + [SMALL_STATE(5261)] = 160841, + [SMALL_STATE(5262)] = 160852, + [SMALL_STATE(5263)] = 160863, + [SMALL_STATE(5264)] = 160874, + [SMALL_STATE(5265)] = 160885, + [SMALL_STATE(5266)] = 160894, + [SMALL_STATE(5267)] = 160905, + [SMALL_STATE(5268)] = 160916, + [SMALL_STATE(5269)] = 160927, + [SMALL_STATE(5270)] = 160938, + [SMALL_STATE(5271)] = 160949, + [SMALL_STATE(5272)] = 160960, + [SMALL_STATE(5273)] = 160969, + [SMALL_STATE(5274)] = 160980, + [SMALL_STATE(5275)] = 160991, + [SMALL_STATE(5276)] = 161002, + [SMALL_STATE(5277)] = 161011, + [SMALL_STATE(5278)] = 161022, + [SMALL_STATE(5279)] = 161033, + [SMALL_STATE(5280)] = 161044, + [SMALL_STATE(5281)] = 161055, + [SMALL_STATE(5282)] = 161064, + [SMALL_STATE(5283)] = 161075, + [SMALL_STATE(5284)] = 161084, + [SMALL_STATE(5285)] = 161095, + [SMALL_STATE(5286)] = 161104, + [SMALL_STATE(5287)] = 161115, + [SMALL_STATE(5288)] = 161126, + [SMALL_STATE(5289)] = 161137, + [SMALL_STATE(5290)] = 161148, + [SMALL_STATE(5291)] = 161157, + [SMALL_STATE(5292)] = 161168, + [SMALL_STATE(5293)] = 161179, + [SMALL_STATE(5294)] = 161190, + [SMALL_STATE(5295)] = 161199, + [SMALL_STATE(5296)] = 161210, + [SMALL_STATE(5297)] = 161219, + [SMALL_STATE(5298)] = 161228, + [SMALL_STATE(5299)] = 161239, + [SMALL_STATE(5300)] = 161250, + [SMALL_STATE(5301)] = 161261, + [SMALL_STATE(5302)] = 161272, + [SMALL_STATE(5303)] = 161283, + [SMALL_STATE(5304)] = 161294, + [SMALL_STATE(5305)] = 161305, + [SMALL_STATE(5306)] = 161314, + [SMALL_STATE(5307)] = 161323, + [SMALL_STATE(5308)] = 161334, + [SMALL_STATE(5309)] = 161345, + [SMALL_STATE(5310)] = 161354, + [SMALL_STATE(5311)] = 161365, + [SMALL_STATE(5312)] = 161376, + [SMALL_STATE(5313)] = 161387, + [SMALL_STATE(5314)] = 161398, + [SMALL_STATE(5315)] = 161409, + [SMALL_STATE(5316)] = 161420, + [SMALL_STATE(5317)] = 161431, + [SMALL_STATE(5318)] = 161442, + [SMALL_STATE(5319)] = 161453, + [SMALL_STATE(5320)] = 161464, + [SMALL_STATE(5321)] = 161475, + [SMALL_STATE(5322)] = 161486, + [SMALL_STATE(5323)] = 161497, + [SMALL_STATE(5324)] = 161508, + [SMALL_STATE(5325)] = 161519, + [SMALL_STATE(5326)] = 161530, + [SMALL_STATE(5327)] = 161541, + [SMALL_STATE(5328)] = 161552, + [SMALL_STATE(5329)] = 161563, + [SMALL_STATE(5330)] = 161574, + [SMALL_STATE(5331)] = 161585, + [SMALL_STATE(5332)] = 161596, + [SMALL_STATE(5333)] = 161607, + [SMALL_STATE(5334)] = 161618, + [SMALL_STATE(5335)] = 161629, + [SMALL_STATE(5336)] = 161640, + [SMALL_STATE(5337)] = 161651, + [SMALL_STATE(5338)] = 161662, + [SMALL_STATE(5339)] = 161673, + [SMALL_STATE(5340)] = 161684, + [SMALL_STATE(5341)] = 161693, + [SMALL_STATE(5342)] = 161702, + [SMALL_STATE(5343)] = 161713, + [SMALL_STATE(5344)] = 161722, + [SMALL_STATE(5345)] = 161733, + [SMALL_STATE(5346)] = 161744, + [SMALL_STATE(5347)] = 161753, + [SMALL_STATE(5348)] = 161762, + [SMALL_STATE(5349)] = 161773, + [SMALL_STATE(5350)] = 161784, + [SMALL_STATE(5351)] = 161795, + [SMALL_STATE(5352)] = 161806, + [SMALL_STATE(5353)] = 161815, + [SMALL_STATE(5354)] = 161826, + [SMALL_STATE(5355)] = 161835, + [SMALL_STATE(5356)] = 161846, + [SMALL_STATE(5357)] = 161857, + [SMALL_STATE(5358)] = 161868, + [SMALL_STATE(5359)] = 161879, + [SMALL_STATE(5360)] = 161890, + [SMALL_STATE(5361)] = 161901, + [SMALL_STATE(5362)] = 161912, + [SMALL_STATE(5363)] = 161921, + [SMALL_STATE(5364)] = 161932, + [SMALL_STATE(5365)] = 161941, + [SMALL_STATE(5366)] = 161952, + [SMALL_STATE(5367)] = 161963, + [SMALL_STATE(5368)] = 161974, + [SMALL_STATE(5369)] = 161985, + [SMALL_STATE(5370)] = 161996, + [SMALL_STATE(5371)] = 162007, + [SMALL_STATE(5372)] = 162018, + [SMALL_STATE(5373)] = 162027, + [SMALL_STATE(5374)] = 162036, + [SMALL_STATE(5375)] = 162045, + [SMALL_STATE(5376)] = 162056, + [SMALL_STATE(5377)] = 162067, + [SMALL_STATE(5378)] = 162078, + [SMALL_STATE(5379)] = 162089, + [SMALL_STATE(5380)] = 162100, + [SMALL_STATE(5381)] = 162109, + [SMALL_STATE(5382)] = 162120, + [SMALL_STATE(5383)] = 162131, + [SMALL_STATE(5384)] = 162142, + [SMALL_STATE(5385)] = 162153, + [SMALL_STATE(5386)] = 162164, + [SMALL_STATE(5387)] = 162175, + [SMALL_STATE(5388)] = 162184, + [SMALL_STATE(5389)] = 162195, + [SMALL_STATE(5390)] = 162204, + [SMALL_STATE(5391)] = 162215, + [SMALL_STATE(5392)] = 162226, + [SMALL_STATE(5393)] = 162237, + [SMALL_STATE(5394)] = 162246, + [SMALL_STATE(5395)] = 162257, + [SMALL_STATE(5396)] = 162266, + [SMALL_STATE(5397)] = 162277, + [SMALL_STATE(5398)] = 162288, + [SMALL_STATE(5399)] = 162299, + [SMALL_STATE(5400)] = 162310, + [SMALL_STATE(5401)] = 162321, + [SMALL_STATE(5402)] = 162332, + [SMALL_STATE(5403)] = 162343, + [SMALL_STATE(5404)] = 162354, + [SMALL_STATE(5405)] = 162363, + [SMALL_STATE(5406)] = 162374, + [SMALL_STATE(5407)] = 162385, + [SMALL_STATE(5408)] = 162396, + [SMALL_STATE(5409)] = 162407, + [SMALL_STATE(5410)] = 162418, + [SMALL_STATE(5411)] = 162429, + [SMALL_STATE(5412)] = 162440, + [SMALL_STATE(5413)] = 162451, + [SMALL_STATE(5414)] = 162462, + [SMALL_STATE(5415)] = 162473, + [SMALL_STATE(5416)] = 162484, + [SMALL_STATE(5417)] = 162495, + [SMALL_STATE(5418)] = 162504, + [SMALL_STATE(5419)] = 162515, + [SMALL_STATE(5420)] = 162524, + [SMALL_STATE(5421)] = 162535, + [SMALL_STATE(5422)] = 162546, + [SMALL_STATE(5423)] = 162555, + [SMALL_STATE(5424)] = 162566, + [SMALL_STATE(5425)] = 162577, + [SMALL_STATE(5426)] = 162588, + [SMALL_STATE(5427)] = 162599, + [SMALL_STATE(5428)] = 162608, + [SMALL_STATE(5429)] = 162617, + [SMALL_STATE(5430)] = 162628, + [SMALL_STATE(5431)] = 162639, + [SMALL_STATE(5432)] = 162650, + [SMALL_STATE(5433)] = 162661, + [SMALL_STATE(5434)] = 162672, + [SMALL_STATE(5435)] = 162683, + [SMALL_STATE(5436)] = 162694, + [SMALL_STATE(5437)] = 162705, + [SMALL_STATE(5438)] = 162714, + [SMALL_STATE(5439)] = 162725, + [SMALL_STATE(5440)] = 162734, + [SMALL_STATE(5441)] = 162745, + [SMALL_STATE(5442)] = 162756, + [SMALL_STATE(5443)] = 162767, + [SMALL_STATE(5444)] = 162778, + [SMALL_STATE(5445)] = 162789, + [SMALL_STATE(5446)] = 162798, + [SMALL_STATE(5447)] = 162807, + [SMALL_STATE(5448)] = 162818, + [SMALL_STATE(5449)] = 162829, + [SMALL_STATE(5450)] = 162838, + [SMALL_STATE(5451)] = 162849, + [SMALL_STATE(5452)] = 162860, + [SMALL_STATE(5453)] = 162871, + [SMALL_STATE(5454)] = 162882, + [SMALL_STATE(5455)] = 162893, + [SMALL_STATE(5456)] = 162902, + [SMALL_STATE(5457)] = 162913, + [SMALL_STATE(5458)] = 162924, + [SMALL_STATE(5459)] = 162935, + [SMALL_STATE(5460)] = 162944, + [SMALL_STATE(5461)] = 162955, + [SMALL_STATE(5462)] = 162966, + [SMALL_STATE(5463)] = 162977, + [SMALL_STATE(5464)] = 162988, + [SMALL_STATE(5465)] = 162999, + [SMALL_STATE(5466)] = 163010, + [SMALL_STATE(5467)] = 163021, + [SMALL_STATE(5468)] = 163032, + [SMALL_STATE(5469)] = 163043, + [SMALL_STATE(5470)] = 163054, + [SMALL_STATE(5471)] = 163065, + [SMALL_STATE(5472)] = 163076, + [SMALL_STATE(5473)] = 163087, + [SMALL_STATE(5474)] = 163098, + [SMALL_STATE(5475)] = 163109, + [SMALL_STATE(5476)] = 163120, + [SMALL_STATE(5477)] = 163131, + [SMALL_STATE(5478)] = 163142, + [SMALL_STATE(5479)] = 163153, + [SMALL_STATE(5480)] = 163162, + [SMALL_STATE(5481)] = 163171, + [SMALL_STATE(5482)] = 163180, + [SMALL_STATE(5483)] = 163191, + [SMALL_STATE(5484)] = 163202, + [SMALL_STATE(5485)] = 163213, + [SMALL_STATE(5486)] = 163224, + [SMALL_STATE(5487)] = 163235, + [SMALL_STATE(5488)] = 163246, + [SMALL_STATE(5489)] = 163257, + [SMALL_STATE(5490)] = 163268, + [SMALL_STATE(5491)] = 163279, + [SMALL_STATE(5492)] = 163288, + [SMALL_STATE(5493)] = 163299, + [SMALL_STATE(5494)] = 163308, + [SMALL_STATE(5495)] = 163319, + [SMALL_STATE(5496)] = 163328, + [SMALL_STATE(5497)] = 163337, + [SMALL_STATE(5498)] = 163348, + [SMALL_STATE(5499)] = 163357, + [SMALL_STATE(5500)] = 163368, + [SMALL_STATE(5501)] = 163379, + [SMALL_STATE(5502)] = 163390, + [SMALL_STATE(5503)] = 163399, + [SMALL_STATE(5504)] = 163408, + [SMALL_STATE(5505)] = 163419, + [SMALL_STATE(5506)] = 163430, + [SMALL_STATE(5507)] = 163441, + [SMALL_STATE(5508)] = 163452, + [SMALL_STATE(5509)] = 163463, + [SMALL_STATE(5510)] = 163474, + [SMALL_STATE(5511)] = 163485, + [SMALL_STATE(5512)] = 163496, + [SMALL_STATE(5513)] = 163507, + [SMALL_STATE(5514)] = 163518, + [SMALL_STATE(5515)] = 163529, + [SMALL_STATE(5516)] = 163540, + [SMALL_STATE(5517)] = 163551, + [SMALL_STATE(5518)] = 163562, + [SMALL_STATE(5519)] = 163573, + [SMALL_STATE(5520)] = 163584, + [SMALL_STATE(5521)] = 163595, + [SMALL_STATE(5522)] = 163606, + [SMALL_STATE(5523)] = 163615, + [SMALL_STATE(5524)] = 163626, + [SMALL_STATE(5525)] = 163637, + [SMALL_STATE(5526)] = 163648, + [SMALL_STATE(5527)] = 163659, + [SMALL_STATE(5528)] = 163670, + [SMALL_STATE(5529)] = 163681, + [SMALL_STATE(5530)] = 163692, + [SMALL_STATE(5531)] = 163701, + [SMALL_STATE(5532)] = 163712, + [SMALL_STATE(5533)] = 163721, + [SMALL_STATE(5534)] = 163732, + [SMALL_STATE(5535)] = 163743, + [SMALL_STATE(5536)] = 163754, + [SMALL_STATE(5537)] = 163763, + [SMALL_STATE(5538)] = 163774, + [SMALL_STATE(5539)] = 163785, + [SMALL_STATE(5540)] = 163794, + [SMALL_STATE(5541)] = 163805, + [SMALL_STATE(5542)] = 163816, + [SMALL_STATE(5543)] = 163827, + [SMALL_STATE(5544)] = 163838, + [SMALL_STATE(5545)] = 163849, + [SMALL_STATE(5546)] = 163860, + [SMALL_STATE(5547)] = 163869, + [SMALL_STATE(5548)] = 163880, + [SMALL_STATE(5549)] = 163891, + [SMALL_STATE(5550)] = 163902, + [SMALL_STATE(5551)] = 163913, + [SMALL_STATE(5552)] = 163924, + [SMALL_STATE(5553)] = 163935, + [SMALL_STATE(5554)] = 163946, + [SMALL_STATE(5555)] = 163957, + [SMALL_STATE(5556)] = 163968, + [SMALL_STATE(5557)] = 163979, + [SMALL_STATE(5558)] = 163990, + [SMALL_STATE(5559)] = 163999, + [SMALL_STATE(5560)] = 164010, + [SMALL_STATE(5561)] = 164021, + [SMALL_STATE(5562)] = 164032, + [SMALL_STATE(5563)] = 164043, + [SMALL_STATE(5564)] = 164054, + [SMALL_STATE(5565)] = 164065, + [SMALL_STATE(5566)] = 164074, + [SMALL_STATE(5567)] = 164083, + [SMALL_STATE(5568)] = 164094, + [SMALL_STATE(5569)] = 164105, + [SMALL_STATE(5570)] = 164116, + [SMALL_STATE(5571)] = 164127, + [SMALL_STATE(5572)] = 164136, + [SMALL_STATE(5573)] = 164147, + [SMALL_STATE(5574)] = 164158, + [SMALL_STATE(5575)] = 164167, + [SMALL_STATE(5576)] = 164178, + [SMALL_STATE(5577)] = 164189, + [SMALL_STATE(5578)] = 164197, + [SMALL_STATE(5579)] = 164205, + [SMALL_STATE(5580)] = 164213, + [SMALL_STATE(5581)] = 164221, + [SMALL_STATE(5582)] = 164229, + [SMALL_STATE(5583)] = 164237, + [SMALL_STATE(5584)] = 164245, + [SMALL_STATE(5585)] = 164253, + [SMALL_STATE(5586)] = 164261, + [SMALL_STATE(5587)] = 164269, + [SMALL_STATE(5588)] = 164277, + [SMALL_STATE(5589)] = 164285, + [SMALL_STATE(5590)] = 164293, + [SMALL_STATE(5591)] = 164301, + [SMALL_STATE(5592)] = 164309, + [SMALL_STATE(5593)] = 164317, + [SMALL_STATE(5594)] = 164325, + [SMALL_STATE(5595)] = 164333, + [SMALL_STATE(5596)] = 164341, + [SMALL_STATE(5597)] = 164349, + [SMALL_STATE(5598)] = 164357, + [SMALL_STATE(5599)] = 164367, + [SMALL_STATE(5600)] = 164375, + [SMALL_STATE(5601)] = 164383, + [SMALL_STATE(5602)] = 164391, + [SMALL_STATE(5603)] = 164399, + [SMALL_STATE(5604)] = 164407, + [SMALL_STATE(5605)] = 164415, + [SMALL_STATE(5606)] = 164423, + [SMALL_STATE(5607)] = 164431, + [SMALL_STATE(5608)] = 164439, + [SMALL_STATE(5609)] = 164447, + [SMALL_STATE(5610)] = 164457, + [SMALL_STATE(5611)] = 164465, + [SMALL_STATE(5612)] = 164473, + [SMALL_STATE(5613)] = 164481, + [SMALL_STATE(5614)] = 164489, + [SMALL_STATE(5615)] = 164497, + [SMALL_STATE(5616)] = 164505, + [SMALL_STATE(5617)] = 164513, + [SMALL_STATE(5618)] = 164521, + [SMALL_STATE(5619)] = 164529, + [SMALL_STATE(5620)] = 164537, + [SMALL_STATE(5621)] = 164545, + [SMALL_STATE(5622)] = 164553, + [SMALL_STATE(5623)] = 164561, + [SMALL_STATE(5624)] = 164569, + [SMALL_STATE(5625)] = 164577, + [SMALL_STATE(5626)] = 164585, + [SMALL_STATE(5627)] = 164593, + [SMALL_STATE(5628)] = 164601, + [SMALL_STATE(5629)] = 164609, + [SMALL_STATE(5630)] = 164617, + [SMALL_STATE(5631)] = 164625, + [SMALL_STATE(5632)] = 164633, + [SMALL_STATE(5633)] = 164641, + [SMALL_STATE(5634)] = 164649, + [SMALL_STATE(5635)] = 164657, + [SMALL_STATE(5636)] = 164667, + [SMALL_STATE(5637)] = 164675, + [SMALL_STATE(5638)] = 164683, + [SMALL_STATE(5639)] = 164691, + [SMALL_STATE(5640)] = 164699, + [SMALL_STATE(5641)] = 164707, + [SMALL_STATE(5642)] = 164715, + [SMALL_STATE(5643)] = 164723, + [SMALL_STATE(5644)] = 164731, + [SMALL_STATE(5645)] = 164739, + [SMALL_STATE(5646)] = 164747, + [SMALL_STATE(5647)] = 164755, + [SMALL_STATE(5648)] = 164763, + [SMALL_STATE(5649)] = 164771, + [SMALL_STATE(5650)] = 164779, + [SMALL_STATE(5651)] = 164787, + [SMALL_STATE(5652)] = 164795, + [SMALL_STATE(5653)] = 164803, + [SMALL_STATE(5654)] = 164811, + [SMALL_STATE(5655)] = 164819, + [SMALL_STATE(5656)] = 164827, + [SMALL_STATE(5657)] = 164835, + [SMALL_STATE(5658)] = 164843, + [SMALL_STATE(5659)] = 164851, + [SMALL_STATE(5660)] = 164859, + [SMALL_STATE(5661)] = 164867, + [SMALL_STATE(5662)] = 164875, + [SMALL_STATE(5663)] = 164883, + [SMALL_STATE(5664)] = 164891, + [SMALL_STATE(5665)] = 164899, + [SMALL_STATE(5666)] = 164907, + [SMALL_STATE(5667)] = 164915, + [SMALL_STATE(5668)] = 164923, + [SMALL_STATE(5669)] = 164931, + [SMALL_STATE(5670)] = 164939, + [SMALL_STATE(5671)] = 164947, + [SMALL_STATE(5672)] = 164955, + [SMALL_STATE(5673)] = 164963, + [SMALL_STATE(5674)] = 164971, + [SMALL_STATE(5675)] = 164979, + [SMALL_STATE(5676)] = 164987, + [SMALL_STATE(5677)] = 164995, + [SMALL_STATE(5678)] = 165003, + [SMALL_STATE(5679)] = 165011, + [SMALL_STATE(5680)] = 165019, + [SMALL_STATE(5681)] = 165027, + [SMALL_STATE(5682)] = 165035, + [SMALL_STATE(5683)] = 165043, + [SMALL_STATE(5684)] = 165051, + [SMALL_STATE(5685)] = 165059, + [SMALL_STATE(5686)] = 165067, + [SMALL_STATE(5687)] = 165075, + [SMALL_STATE(5688)] = 165083, + [SMALL_STATE(5689)] = 165091, + [SMALL_STATE(5690)] = 165099, + [SMALL_STATE(5691)] = 165107, + [SMALL_STATE(5692)] = 165115, + [SMALL_STATE(5693)] = 165123, + [SMALL_STATE(5694)] = 165131, + [SMALL_STATE(5695)] = 165139, + [SMALL_STATE(5696)] = 165147, + [SMALL_STATE(5697)] = 165155, + [SMALL_STATE(5698)] = 165163, + [SMALL_STATE(5699)] = 165171, + [SMALL_STATE(5700)] = 165179, + [SMALL_STATE(5701)] = 165187, + [SMALL_STATE(5702)] = 165195, + [SMALL_STATE(5703)] = 165203, + [SMALL_STATE(5704)] = 165211, + [SMALL_STATE(5705)] = 165219, + [SMALL_STATE(5706)] = 165227, + [SMALL_STATE(5707)] = 165235, + [SMALL_STATE(5708)] = 165243, + [SMALL_STATE(5709)] = 165251, + [SMALL_STATE(5710)] = 165259, + [SMALL_STATE(5711)] = 165267, + [SMALL_STATE(5712)] = 165275, + [SMALL_STATE(5713)] = 165283, + [SMALL_STATE(5714)] = 165291, + [SMALL_STATE(5715)] = 165299, + [SMALL_STATE(5716)] = 165307, + [SMALL_STATE(5717)] = 165315, + [SMALL_STATE(5718)] = 165323, + [SMALL_STATE(5719)] = 165331, + [SMALL_STATE(5720)] = 165339, + [SMALL_STATE(5721)] = 165347, + [SMALL_STATE(5722)] = 165355, + [SMALL_STATE(5723)] = 165363, + [SMALL_STATE(5724)] = 165371, + [SMALL_STATE(5725)] = 165379, + [SMALL_STATE(5726)] = 165387, + [SMALL_STATE(5727)] = 165395, + [SMALL_STATE(5728)] = 165403, + [SMALL_STATE(5729)] = 165411, + [SMALL_STATE(5730)] = 165419, + [SMALL_STATE(5731)] = 165427, + [SMALL_STATE(5732)] = 165435, + [SMALL_STATE(5733)] = 165443, + [SMALL_STATE(5734)] = 165451, + [SMALL_STATE(5735)] = 165459, + [SMALL_STATE(5736)] = 165467, + [SMALL_STATE(5737)] = 165475, + [SMALL_STATE(5738)] = 165483, + [SMALL_STATE(5739)] = 165491, + [SMALL_STATE(5740)] = 165499, + [SMALL_STATE(5741)] = 165507, + [SMALL_STATE(5742)] = 165515, + [SMALL_STATE(5743)] = 165523, + [SMALL_STATE(5744)] = 165531, + [SMALL_STATE(5745)] = 165539, + [SMALL_STATE(5746)] = 165547, + [SMALL_STATE(5747)] = 165555, + [SMALL_STATE(5748)] = 165563, + [SMALL_STATE(5749)] = 165571, + [SMALL_STATE(5750)] = 165579, + [SMALL_STATE(5751)] = 165587, + [SMALL_STATE(5752)] = 165595, + [SMALL_STATE(5753)] = 165603, + [SMALL_STATE(5754)] = 165611, + [SMALL_STATE(5755)] = 165619, + [SMALL_STATE(5756)] = 165627, + [SMALL_STATE(5757)] = 165635, + [SMALL_STATE(5758)] = 165643, + [SMALL_STATE(5759)] = 165651, + [SMALL_STATE(5760)] = 165659, + [SMALL_STATE(5761)] = 165667, + [SMALL_STATE(5762)] = 165675, + [SMALL_STATE(5763)] = 165683, + [SMALL_STATE(5764)] = 165691, + [SMALL_STATE(5765)] = 165699, + [SMALL_STATE(5766)] = 165707, + [SMALL_STATE(5767)] = 165715, + [SMALL_STATE(5768)] = 165723, + [SMALL_STATE(5769)] = 165731, + [SMALL_STATE(5770)] = 165739, + [SMALL_STATE(5771)] = 165747, + [SMALL_STATE(5772)] = 165755, + [SMALL_STATE(5773)] = 165763, + [SMALL_STATE(5774)] = 165771, + [SMALL_STATE(5775)] = 165779, + [SMALL_STATE(5776)] = 165787, + [SMALL_STATE(5777)] = 165795, + [SMALL_STATE(5778)] = 165803, + [SMALL_STATE(5779)] = 165811, + [SMALL_STATE(5780)] = 165819, + [SMALL_STATE(5781)] = 165827, + [SMALL_STATE(5782)] = 165835, + [SMALL_STATE(5783)] = 165843, + [SMALL_STATE(5784)] = 165851, + [SMALL_STATE(5785)] = 165859, + [SMALL_STATE(5786)] = 165867, + [SMALL_STATE(5787)] = 165875, + [SMALL_STATE(5788)] = 165883, + [SMALL_STATE(5789)] = 165891, + [SMALL_STATE(5790)] = 165899, + [SMALL_STATE(5791)] = 165907, + [SMALL_STATE(5792)] = 165915, + [SMALL_STATE(5793)] = 165923, + [SMALL_STATE(5794)] = 165931, + [SMALL_STATE(5795)] = 165939, + [SMALL_STATE(5796)] = 165947, + [SMALL_STATE(5797)] = 165955, + [SMALL_STATE(5798)] = 165963, + [SMALL_STATE(5799)] = 165971, + [SMALL_STATE(5800)] = 165979, + [SMALL_STATE(5801)] = 165987, + [SMALL_STATE(5802)] = 165995, + [SMALL_STATE(5803)] = 166003, + [SMALL_STATE(5804)] = 166011, + [SMALL_STATE(5805)] = 166019, + [SMALL_STATE(5806)] = 166027, + [SMALL_STATE(5807)] = 166035, + [SMALL_STATE(5808)] = 166043, + [SMALL_STATE(5809)] = 166051, + [SMALL_STATE(5810)] = 166059, + [SMALL_STATE(5811)] = 166067, + [SMALL_STATE(5812)] = 166075, + [SMALL_STATE(5813)] = 166083, + [SMALL_STATE(5814)] = 166091, + [SMALL_STATE(5815)] = 166099, + [SMALL_STATE(5816)] = 166107, + [SMALL_STATE(5817)] = 166115, + [SMALL_STATE(5818)] = 166123, + [SMALL_STATE(5819)] = 166131, + [SMALL_STATE(5820)] = 166139, + [SMALL_STATE(5821)] = 166147, + [SMALL_STATE(5822)] = 166155, + [SMALL_STATE(5823)] = 166163, + [SMALL_STATE(5824)] = 166171, + [SMALL_STATE(5825)] = 166179, + [SMALL_STATE(5826)] = 166187, + [SMALL_STATE(5827)] = 166197, + [SMALL_STATE(5828)] = 166205, + [SMALL_STATE(5829)] = 166213, + [SMALL_STATE(5830)] = 166221, + [SMALL_STATE(5831)] = 166231, + [SMALL_STATE(5832)] = 166239, + [SMALL_STATE(5833)] = 166247, + [SMALL_STATE(5834)] = 166255, + [SMALL_STATE(5835)] = 166263, + [SMALL_STATE(5836)] = 166271, + [SMALL_STATE(5837)] = 166279, + [SMALL_STATE(5838)] = 166287, + [SMALL_STATE(5839)] = 166297, + [SMALL_STATE(5840)] = 166305, + [SMALL_STATE(5841)] = 166313, + [SMALL_STATE(5842)] = 166321, + [SMALL_STATE(5843)] = 166329, + [SMALL_STATE(5844)] = 166337, + [SMALL_STATE(5845)] = 166345, + [SMALL_STATE(5846)] = 166353, + [SMALL_STATE(5847)] = 166361, + [SMALL_STATE(5848)] = 166369, + [SMALL_STATE(5849)] = 166377, + [SMALL_STATE(5850)] = 166385, + [SMALL_STATE(5851)] = 166393, + [SMALL_STATE(5852)] = 166401, + [SMALL_STATE(5853)] = 166409, + [SMALL_STATE(5854)] = 166417, + [SMALL_STATE(5855)] = 166425, + [SMALL_STATE(5856)] = 166433, + [SMALL_STATE(5857)] = 166441, + [SMALL_STATE(5858)] = 166449, + [SMALL_STATE(5859)] = 166457, + [SMALL_STATE(5860)] = 166465, + [SMALL_STATE(5861)] = 166473, + [SMALL_STATE(5862)] = 166481, + [SMALL_STATE(5863)] = 166489, + [SMALL_STATE(5864)] = 166497, + [SMALL_STATE(5865)] = 166505, + [SMALL_STATE(5866)] = 166513, + [SMALL_STATE(5867)] = 166521, + [SMALL_STATE(5868)] = 166529, + [SMALL_STATE(5869)] = 166537, + [SMALL_STATE(5870)] = 166545, + [SMALL_STATE(5871)] = 166553, + [SMALL_STATE(5872)] = 166561, + [SMALL_STATE(5873)] = 166569, + [SMALL_STATE(5874)] = 166577, + [SMALL_STATE(5875)] = 166585, + [SMALL_STATE(5876)] = 166593, + [SMALL_STATE(5877)] = 166601, + [SMALL_STATE(5878)] = 166609, + [SMALL_STATE(5879)] = 166617, + [SMALL_STATE(5880)] = 166625, + [SMALL_STATE(5881)] = 166633, + [SMALL_STATE(5882)] = 166641, + [SMALL_STATE(5883)] = 166649, + [SMALL_STATE(5884)] = 166657, + [SMALL_STATE(5885)] = 166665, + [SMALL_STATE(5886)] = 166673, + [SMALL_STATE(5887)] = 166681, + [SMALL_STATE(5888)] = 166689, + [SMALL_STATE(5889)] = 166697, + [SMALL_STATE(5890)] = 166705, + [SMALL_STATE(5891)] = 166713, + [SMALL_STATE(5892)] = 166721, + [SMALL_STATE(5893)] = 166729, + [SMALL_STATE(5894)] = 166737, + [SMALL_STATE(5895)] = 166745, + [SMALL_STATE(5896)] = 166755, + [SMALL_STATE(5897)] = 166763, + [SMALL_STATE(5898)] = 166771, + [SMALL_STATE(5899)] = 166779, + [SMALL_STATE(5900)] = 166787, + [SMALL_STATE(5901)] = 166795, + [SMALL_STATE(5902)] = 166803, + [SMALL_STATE(5903)] = 166811, + [SMALL_STATE(5904)] = 166819, + [SMALL_STATE(5905)] = 166827, + [SMALL_STATE(5906)] = 166835, + [SMALL_STATE(5907)] = 166843, + [SMALL_STATE(5908)] = 166851, + [SMALL_STATE(5909)] = 166859, + [SMALL_STATE(5910)] = 166867, + [SMALL_STATE(5911)] = 166877, + [SMALL_STATE(5912)] = 166885, + [SMALL_STATE(5913)] = 166893, + [SMALL_STATE(5914)] = 166901, + [SMALL_STATE(5915)] = 166909, + [SMALL_STATE(5916)] = 166917, + [SMALL_STATE(5917)] = 166927, + [SMALL_STATE(5918)] = 166935, + [SMALL_STATE(5919)] = 166943, + [SMALL_STATE(5920)] = 166951, + [SMALL_STATE(5921)] = 166959, + [SMALL_STATE(5922)] = 166967, + [SMALL_STATE(5923)] = 166975, + [SMALL_STATE(5924)] = 166983, + [SMALL_STATE(5925)] = 166991, + [SMALL_STATE(5926)] = 166999, + [SMALL_STATE(5927)] = 167007, + [SMALL_STATE(5928)] = 167015, + [SMALL_STATE(5929)] = 167023, + [SMALL_STATE(5930)] = 167031, + [SMALL_STATE(5931)] = 167039, + [SMALL_STATE(5932)] = 167047, + [SMALL_STATE(5933)] = 167055, + [SMALL_STATE(5934)] = 167063, + [SMALL_STATE(5935)] = 167071, + [SMALL_STATE(5936)] = 167079, + [SMALL_STATE(5937)] = 167087, + [SMALL_STATE(5938)] = 167095, + [SMALL_STATE(5939)] = 167103, + [SMALL_STATE(5940)] = 167111, + [SMALL_STATE(5941)] = 167119, + [SMALL_STATE(5942)] = 167127, + [SMALL_STATE(5943)] = 167135, + [SMALL_STATE(5944)] = 167143, + [SMALL_STATE(5945)] = 167151, + [SMALL_STATE(5946)] = 167159, + [SMALL_STATE(5947)] = 167167, + [SMALL_STATE(5948)] = 167175, + [SMALL_STATE(5949)] = 167183, + [SMALL_STATE(5950)] = 167191, + [SMALL_STATE(5951)] = 167199, + [SMALL_STATE(5952)] = 167207, + [SMALL_STATE(5953)] = 167215, + [SMALL_STATE(5954)] = 167223, + [SMALL_STATE(5955)] = 167231, + [SMALL_STATE(5956)] = 167239, + [SMALL_STATE(5957)] = 167247, + [SMALL_STATE(5958)] = 167255, + [SMALL_STATE(5959)] = 167263, + [SMALL_STATE(5960)] = 167271, + [SMALL_STATE(5961)] = 167279, + [SMALL_STATE(5962)] = 167287, + [SMALL_STATE(5963)] = 167295, + [SMALL_STATE(5964)] = 167303, + [SMALL_STATE(5965)] = 167311, + [SMALL_STATE(5966)] = 167319, + [SMALL_STATE(5967)] = 167327, + [SMALL_STATE(5968)] = 167335, + [SMALL_STATE(5969)] = 167343, + [SMALL_STATE(5970)] = 167351, + [SMALL_STATE(5971)] = 167359, + [SMALL_STATE(5972)] = 167367, + [SMALL_STATE(5973)] = 167375, + [SMALL_STATE(5974)] = 167383, + [SMALL_STATE(5975)] = 167391, + [SMALL_STATE(5976)] = 167399, + [SMALL_STATE(5977)] = 167407, + [SMALL_STATE(5978)] = 167415, + [SMALL_STATE(5979)] = 167423, + [SMALL_STATE(5980)] = 167431, + [SMALL_STATE(5981)] = 167439, + [SMALL_STATE(5982)] = 167447, + [SMALL_STATE(5983)] = 167455, + [SMALL_STATE(5984)] = 167463, + [SMALL_STATE(5985)] = 167471, + [SMALL_STATE(5986)] = 167479, + [SMALL_STATE(5987)] = 167487, + [SMALL_STATE(5988)] = 167495, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -277998,219 +278314,219 @@ 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(1311), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(620), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(451), [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(438), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5958), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(407), - [188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(409), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(473), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5826), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(450), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(449), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1299), [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(669), [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1279), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(506), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2873), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5377), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(506), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5509), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5512), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5188), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(435), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5420), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5270), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5055), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5103), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5486), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(307), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1275), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5420), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3650), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5367), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5278), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5200), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5461), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5301), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4691), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4798), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5272), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(341), [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4529), - [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4562), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3277), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3743), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(428), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5729), - [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(440), - [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3794), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5757), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4303), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(682), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5870), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5823), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4492), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4587), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3276), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5830), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3768), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5972), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5699), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5660), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5798), [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 239), [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 239), [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 87), @@ -278219,4593 +278535,4603 @@ static const TSParseActionEntry ts_parse_actions[] = { [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 53), [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 53), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(39), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(60), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(204), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(222), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3500), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3895), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(402), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(205), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(216), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3507), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3883), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(402), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(517), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(539), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 146), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 146), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 69), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 105), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 105), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 228), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 228), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 234), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 234), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 234), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 234), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 104), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 104), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 125), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 125), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 125), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 125), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 82), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 165), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 165), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 180), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 180), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 180), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 180), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 180), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 180), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1916] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2995), - [1920] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3233), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 180), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 180), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 180), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 180), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 180), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 180), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 146), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 146), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 69), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 104), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 104), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 82), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 228), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 228), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 234), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 234), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 234), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 234), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 105), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 105), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 165), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 165), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 125), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 125), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 125), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 125), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1916] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3225), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [1922] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2902), [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2771), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2767), [2279] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(211), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(466), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [2288] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5178), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(522), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [2288] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5015), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(211), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5178), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5015), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), - [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 99), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 99), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 244), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 244), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 279), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 279), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 124), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 124), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 141), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 141), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 80), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 80), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 145), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 145), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 149), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 149), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 149), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 149), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 86), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 86), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 80), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 80), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 99), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 99), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 105), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 105), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 90), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 90), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 179), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 179), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 125), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 125), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 188), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 188), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 59), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 59), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 78), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 78), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 192), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 192), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 146), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 146), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 91), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 91), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 92), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 92), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 149), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 149), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 80), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 80), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 203), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 203), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 165), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 165), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 180), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 180), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 59), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 59), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 231), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 231), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 233), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 233), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 241), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 241), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 243), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 243), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 270), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 270), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 231), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 231), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 233), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 233), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 234), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 234), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 276), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 276), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 277), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 277), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 278), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 278), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 86), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 86), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 308), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 308), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 100), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 100), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 67), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 67), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 68), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 68), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 274), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 274), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 240), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 240), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 275), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 275), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 201), - [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 99), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 99), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 279), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 279), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 244), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 244), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 179), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 179), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 125), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 125), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 188), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 188), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 59), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 59), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 192), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 192), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 146), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 146), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 149), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 149), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 67), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 67), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 68), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 68), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 203), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 203), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 165), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 165), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 180), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 180), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 59), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 59), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 231), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 231), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 233), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 233), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 241), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 241), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 243), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 243), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 78), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 78), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 270), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 270), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 231), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 231), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 233), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 233), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 234), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 234), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 276), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 276), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 277), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 277), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 278), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 278), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 80), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 80), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 308), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 308), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 86), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 86), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 80), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 80), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 90), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 90), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 91), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 91), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 92), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 92), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 100), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 100), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 124), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 124), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 141), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 141), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 145), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 145), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 149), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 149), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 149), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 149), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 86), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 86), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 80), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 80), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 99), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 99), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 105), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 105), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 274), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 274), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 275), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 275), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 201), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 240), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 240), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 143), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 143), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 190), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 190), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), - [3492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), - [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5629), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1079), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(437), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 143), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 143), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 190), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 190), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5914), + [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1006), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(501), [3526] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 48), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5412), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5927), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1094), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(411), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(263), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), - [3574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 48), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), - [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4303), - [3588] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), REDUCE(sym_rest_pattern, 2, 0, 0), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5529), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5961), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1030), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4009), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(453), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(263), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3596] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), REDUCE(sym_rest_pattern, 2, 0, 0), [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3288), - [3611] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28), - [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3278), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3615] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28), [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(403), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(519), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(403), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(541), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1479), - [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2381), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1998), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1676), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3221), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2825), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1448), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(378), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4588), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4591), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2092), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5984), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3003), - [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3972), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1734), - [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1856), - [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2377), - [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1737), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1857), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2356), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2741), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2773), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1854), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1755), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1486), + [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1728), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1988), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1703), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3253), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2772), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1450), + [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(358), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4577), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4578), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2207), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5923), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3004), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4163), + [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1737), + [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1953), + [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2388), + [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1739), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1954), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2359), + [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2732), + [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2808), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1812), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2406), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 110), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 110), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [4002] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 50), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 50), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 116), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 116), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 326), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 326), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), - [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), - [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 88), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 88), - [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 191), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 191), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 52), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 52), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113), - [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 114), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 114), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 115), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 115), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 117), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 117), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), - [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), REDUCE(sym_nested_type_identifier, 3, 0, 172), - [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), REDUCE(sym_nested_type_identifier, 3, 0, 172), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 173), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 173), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), - [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), - [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), - [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 226), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 226), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 115), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 115), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 227), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 227), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), - [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 268), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 268), - [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 269), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 269), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), - [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 305), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 305), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [4420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(168), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 127), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 126), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 126), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 129), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 129), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 144), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 144), - [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 55), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 55), - [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 56), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 56), - [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), - [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 64), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 65), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 65), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 66), - [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 73), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 73), - [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(168), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), - [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), - [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 75), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 75), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 76), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 76), - [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 178), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 178), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 66), - [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), - [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 79), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 79), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [4674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(168), - [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), - [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), - [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 121), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 121), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(168), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), - [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), - [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 122), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 122), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 189), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5323), - [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [4804] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [4838] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(170), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(172), - [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(172), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(172), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(172), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [3998] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 110), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 110), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 50), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 50), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 116), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 116), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), + [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 88), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 88), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 191), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 191), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 268), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 268), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 269), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 269), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 52), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 52), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 114), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 114), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 115), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 115), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 227), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 227), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 117), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 117), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), + [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 173), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 173), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 305), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 305), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 326), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 326), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 226), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 226), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 115), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 115), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 55), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 55), + [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 56), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 56), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 64), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 65), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 65), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 66), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), + [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 73), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 73), + [4538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(167), + [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [4550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 75), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 75), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 76), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 76), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 66), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 79), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 79), + [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 122), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 122), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 121), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 121), + [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 126), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 126), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 127), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 129), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 129), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [4651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 144), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 144), + [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), + [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), + [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), + [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 178), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 178), + [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), + [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 189), + [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), + [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), + [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), + [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(167), + [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(167), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(167), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5408), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(165), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(164), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(164), + [4919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(164), + [4922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(165), + [4925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(165), + [4928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(165), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(170), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [4948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(170), - [4951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(170), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), - [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(163), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), - [4985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), - [4988] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 49), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 22), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 64), - [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), REDUCE(sym_assignment_expression, 3, 0, 64), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), - [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(163), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 87), - [5014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(449), - [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), - [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 49), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), - [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(163), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(163), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 46), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 98), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 98), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 64), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [5244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5293] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(169), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 154), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 154), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), - [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [5362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(169), - [5365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(169), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(169), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(162), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), - [5465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), - [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 204), - [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 204), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 94), - [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 94), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), - [5613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [5634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 84), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(167), - [5710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(167), - [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(167), - [5716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(167), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(171), - [5758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(171), - [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(171), - [5764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(171), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), - [5811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), - [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [5821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), - [5824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), - [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), - [5829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(164), - [5832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(557), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), - [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), - [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), - [5876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), - [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [5899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(164), - [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(164), - [5905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(164), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), - [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 107), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 180), - [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 180), - [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 199), - [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 199), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [5968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 237), - [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 237), - [5972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 306), - [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 306), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 307), - [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 307), - [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 125), - [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 125), - [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 327), - [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 327), - [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2675), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 328), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 328), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 343), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 343), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 228), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 228), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 85), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 85), - [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 152), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 152), - [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 273), - [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 273), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), - [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), SHIFT_REPEAT(2672), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 53), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 53), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), - [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(3972), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [4939] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [4953] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(164), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), + [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), + [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 64), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), + [4984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), REDUCE(sym_assignment_expression, 3, 0, 64), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 49), + [4996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 22), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 87), + [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(480), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [5069] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 49), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(172), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(172), + [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(172), + [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(172), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), + [5262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), + [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 94), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 94), + [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 98), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 98), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [5275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [5300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 154), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 154), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(162), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 64), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(166), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 46), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(166), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(166), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [5440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(166), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5459] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 204), + [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 204), + [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 84), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(168), + [5712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(168), + [5715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(168), + [5718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(168), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(171), + [5760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(171), + [5763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(171), + [5766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(171), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(169), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [5826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), + [5829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), + [5832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), + [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), + [5838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(169), + [5841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(169), + [5844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(169), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), + [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), + [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), + [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), + [5863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), + [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), + [5869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(573), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 107), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), + [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), + [5906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), + [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), + [5912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), + [5915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 199), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 199), + [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 125), + [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 125), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 152), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 152), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 237), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 237), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 228), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 228), + [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 180), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 180), + [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 273), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 273), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 306), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 306), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 307), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 307), + [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 327), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 327), + [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 328), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 328), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 343), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 343), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2665), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [6023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 85), + [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 85), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), + [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), + [6033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), SHIFT_REPEAT(2674), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), + [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 53), + [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 53), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4163), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(4419), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 103), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 59), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 299), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 213), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 254), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 59), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 157), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 254), - [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 157), - [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 215), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 157), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 254), - [6671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 162), - [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 260), - [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 59), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 213), - [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 59), - [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 103), - [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5412), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), - [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [6789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [6794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3837), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5246), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [6892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 325), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [7024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [7128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3552), - [7131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(291), - [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), - [7136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3552), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 285), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 345), - [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 58), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), - [7269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 264), - [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 124), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 161), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [7295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(437), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), - [7308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(411), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 284), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 139), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 139), - [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 309), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 310), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 205), - [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 179), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 167), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), - [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 246), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 331), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 336), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 101), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5906), - [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3772), - [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 77), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), - [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [7707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), - [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 262), - [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 298), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), - [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), - [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(945), - [7730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [7734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1020), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(942), - [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(919), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1084), - [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(938), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 248), - [7831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(974), - [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 252), - [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 300), - [7838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 312), - [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 313), - [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), - [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 321), - [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 324), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 280), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 282), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), - [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 283), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 88), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), - [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(977), - [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4223), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), - [7954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), - [7960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), - [7964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), - [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 288), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 291), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 329), - [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 330), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), - [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 339), - [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1053), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 342), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 206), - [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 207), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), - [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 315), - [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 109), - [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 348), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 88), - [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(941), - [8042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1031), - [8045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(943), - [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1035), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [8055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), - [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), - [8067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), - [8069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), - [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), - [8077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), - [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), - [8083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), - [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), - [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 253), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), - [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), SHIFT_REPEAT(352), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [8118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), - [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 281), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), - [8226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), SHIFT_REPEAT(4597), - [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), - [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 59), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), - [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [8265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), - [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [8270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), - [8273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4551), - [8276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [8278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4551), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), - [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 238), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [8295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(979), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4567), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [8328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4572), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [8341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(448), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 186), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 186), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 108), - [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 261), - [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 297), - [8423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2188), - [8426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 320), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 322), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 59), - [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 323), - [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [8476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4868), - [8479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [8491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [8495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [8533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), - [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 124), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [8581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 88), - [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [8589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 284), - [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [8698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 285), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), - [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 337), - [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 338), - [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 340), - [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 341), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), - [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 179), - [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 205), - [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), - [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 344), - [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), - [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 346), - [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 347), - [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), - [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 349), - [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 84), - [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [8805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 350), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [8831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 309), - [8838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), - [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), SHIFT_REPEAT(2761), - [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [8882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [8889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(519), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [8904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [8912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), - [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 246), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 150), - [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 95), - [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 97), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [8940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 59), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 197), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 200), - [8998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 197), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), - [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), - [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [9094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [9116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 155), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [9142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 153), - [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 150), - [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 88), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 130), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [9200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 181), - [9202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 135), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [9232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [9482] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(3887), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 59), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 103), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 299), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 59), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 254), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 213), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 157), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 213), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 157), + [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 162), + [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 254), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 260), + [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 59), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 59), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), + [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 157), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 254), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 215), + [6713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5529), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [6718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [6721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [6726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [6729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3784), + [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 103), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [6738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5254), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 325), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [7015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3559), + [7018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(292), + [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), + [7023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3559), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [7038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 246), + [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 124), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), + [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 205), + [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 284), + [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 58), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 285), + [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 179), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(526), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 264), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 101), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 161), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [7307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(501), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [7328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(453), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [7339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 139), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 139), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 345), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 309), + [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 310), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 331), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), + [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 167), + [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 336), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [7479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [7513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 77), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [7580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), + [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), + [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_lone_ampersand, 1, 0, 0), + [7634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_lone_ampersand, 1, 0, 0), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), + [7652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), + [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), + [7664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5915), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), + [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [7695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [7698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), + [7701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [7703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), + [7706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4571), + [7709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(3901), + [7712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [7714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(3901), + [7717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4591), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [7746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [7758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), + [7782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), + [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), + [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 324), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 291), + [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 288), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 321), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 339), + [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [7832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), + [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 329), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 330), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [7850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(918), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 315), + [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 348), + [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), + [7863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(995), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), + [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4077), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 253), + [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [7924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 109), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 312), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 313), + [7934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(917), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), + [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 342), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), + [7977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(974), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 262), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 280), + [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 282), + [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 283), + [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [8046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(920), + [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 298), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [8069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(928), + [8072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1026), + [8075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(921), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 206), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [8086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1080), + [8089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(933), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [8098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1085), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 207), + [8107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1029), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 88), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 88), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 248), + [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 252), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 300), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [8150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 186), + [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 186), + [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 238), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [8180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), + [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [8185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [8188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [8191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), + [8196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), SHIFT_REPEAT(332), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), + [8231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), SHIFT_REPEAT(4538), + [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 108), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 59), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [8334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string_lone_ampersand, 1, 0, 0), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string_lone_ampersand, 1, 0, 0), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [8371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [8373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4580), + [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [8378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4581), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 281), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [8405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 340), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 337), + [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [8443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 338), + [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), + [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [8456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 341), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 320), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 309), + [8490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), + [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [8495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2340), + [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 322), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [8506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 323), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [8588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [8595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), SHIFT_REPEAT(2757), + [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 344), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 346), + [8628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), + [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 347), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 349), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), + [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 246), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), + [8697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 350), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 261), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), + [8773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 59), + [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 84), + [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 284), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 285), + [8805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), + [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 297), + [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 124), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [8821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [8833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [8839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4778), + [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), + [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 179), + [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 205), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 88), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [8884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), + [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [8926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(541), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [8977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 181), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 200), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [9023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 197), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 155), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [9033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 88), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 130), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 153), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 95), + [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 97), + [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 150), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 135), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [9157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 150), + [9159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 59), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [9195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [9209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [9211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [9229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 197), + [9231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [9235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [9341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [9361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [9603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [9677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [9821] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), }; enum ts_external_scanner_symbol_identifiers { @@ -282911,7 +283237,7 @@ void tree_sitter_tsx_external_scanner_deserialize(void *, const char *, unsigned TS_PUBLIC const TSLanguage *tree_sitter_tsx(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -282919,6 +283245,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_tsx(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], @@ -282929,11 +283256,14 @@ TS_PUBLIC const TSLanguage *tree_sitter_tsx(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, @@ -282947,6 +283277,13 @@ TS_PUBLIC const TSLanguage *tree_sitter_tsx(void) { tree_sitter_tsx_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "tsx", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 2, + }, }; return &language; } diff --git a/internal/cbm/vendored/grammars/tsx/tree_sitter/array.h b/internal/cbm/vendored/grammars/tsx/tree_sitter/array.h index 15a3b233b..a17a574f0 100644 --- a/internal/cbm/vendored/grammars/tsx/tree_sitter/array.h +++ b/internal/cbm/vendored/grammars/tsx/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/internal/cbm/vendored/grammars/tsx/tree_sitter/parser.h b/internal/cbm/vendored/grammars/tsx/tree_sitter/parser.h index 799f599bd..858107deb 100644 --- a/internal/cbm/vendored/grammars/tsx/tree_sitter/parser.h +++ b/internal/cbm/vendored/grammars/tsx/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); } diff --git a/scripts/audit-license-provenance.py b/scripts/audit-license-provenance.py index d22d4d15b..4d586eac5 100755 --- a/scripts/audit-license-provenance.py +++ b/scripts/audit-license-provenance.py @@ -36,7 +36,11 @@ "cfml": "cfmleditor/tree-sitter-cfml", "cfscript": "cfmleditor/tree-sitter-cfml", "dotenv": "pnx/tree-sitter-dotenv", + # javascript / tsx: our JSX lone-ampersand forks (#1736) of the pins we vendored + # before; same routing rule as arkts -- upstream's MIT verbatim, byte-verified. + "javascript": "tree-sitter/tree-sitter-javascript", "qml": "yuja/tree-sitter-qmljs", + "tsx": "tree-sitter/tree-sitter-typescript", } SPECIAL_NOTICE = { "assembly": "RETAINED-MIT (upstream RubixDev/tree-sitter-assembly deleted from GitHub)", diff --git a/scripts/vendored-checksums.txt b/scripts/vendored-checksums.txt index 176f96d1e..ef9e3d951 100644 --- a/scripts/vendored-checksums.txt +++ b/scripts/vendored-checksums.txt @@ -5,7 +5,7 @@ c5cfb43042b6b72045f4ba997834d0a7786d2793d91680868b5815b39f14fc78 internal/cbm/v b29c1c9fb7cc82f58c84b376df1297d6e2737a1d655fd356db0859e3c29c2fea internal/cbm/vendored/common/tree_sitter/alloc.h 31e60a1bff6f715afacce03b5b70efe42b58371b4f9595dd4af52a577ff9608c internal/cbm/vendored/common/tree_sitter/array.h 180b893c8734778fd32f372dfbc27bd6ad1cd2221f26150b31256ff6716320d2 internal/cbm/vendored/common/tree_sitter/parser.h -a66a04ed735fdb3d4a90ee4353b8f0490dc0360da5965b0d13ec5d6766f146fa internal/cbm/vendored/grammars/MANIFEST.md +5452334c6aec9994d926269334418af856c23dd505808557e8a4665807c620a4 internal/cbm/vendored/grammars/MANIFEST.md ad8425038de519f8c4e3e9339feebf99dfad8a6002dcf79227d91402780a32cc internal/cbm/vendored/grammars/ada/LICENSE 02805ec13939b749c891567be36bf024b09034e04c80683a1ae667272458d549 internal/cbm/vendored/grammars/ada/parser.c 115a75d000bef9c70c4de7dfbb7f2a80b90cbb14ba265056dc7abb1ef3b9b6db internal/cbm/vendored/grammars/ada/tree_sitter/alloc.h @@ -371,7 +371,7 @@ b29c1c9fb7cc82f58c84b376df1297d6e2737a1d655fd356db0859e3c29c2fea internal/cbm/v 02d139d44303b0b0b85a899839dbc1346c478e7318d1f2971fad2b38fd57cb73 internal/cbm/vendored/grammars/java/tree_sitter/array.h 2db740ea1be6b71014d2be1385491f01bf2d15b607e61c5b30b4128535efe68a internal/cbm/vendored/grammars/java/tree_sitter/parser.h 2e0110e07abef7c2548b26ec9d6969775617ca539a0dc8dbeeb14d6452c711d1 internal/cbm/vendored/grammars/javascript/LICENSE -5bfb18365de4d5ff04a3a0d2ff8e5379d1a5c2a94f3b7b4622eea6886975215a internal/cbm/vendored/grammars/javascript/parser.c +c61b6b3d52ce1d13f5ab3f8b35c61bffa447b96a35e91885e2228d5be28f2f69 internal/cbm/vendored/grammars/javascript/parser.c 1a5ab5c7a9a75d78d1bd36856e01efb186b2f4f6a261947bbb733aa4878b09b2 internal/cbm/vendored/grammars/javascript/scanner.c 115a75d000bef9c70c4de7dfbb7f2a80b90cbb14ba265056dc7abb1ef3b9b6db internal/cbm/vendored/grammars/javascript/tree_sitter/alloc.h 02d139d44303b0b0b85a899839dbc1346c478e7318d1f2971fad2b38fd57cb73 internal/cbm/vendored/grammars/javascript/tree_sitter/array.h @@ -843,11 +843,11 @@ b727eee929bee836e8102cecf749a795b199f291b58c885bcd81cae727ac5a46 internal/cbm/v 2db740ea1be6b71014d2be1385491f01bf2d15b607e61c5b30b4128535efe68a internal/cbm/vendored/grammars/toml/tree_sitter/parser.h 49bf33cf78ef5897e4e161ce1517df7de1ae5042a65b6bcfd44401e0fc606559 internal/cbm/vendored/grammars/tsx/LICENSE da66ef2bd14a3f7ea743e25ba068c6c9aae2c3509db200ff80c4a0e6116e564c internal/cbm/vendored/grammars/tsx/_common_scanner.h -1902cb53fa7ff5179df89b2eea863165e84c8cc866226419dc26921d8c055885 internal/cbm/vendored/grammars/tsx/parser.c +d7d95b604965a6ad5cf10eb2c852a5dc7273f9d04dd7db14541c2593ab3691c0 internal/cbm/vendored/grammars/tsx/parser.c 7a2fe1ae9928ef0ac74dae3a9d02c85b6be31f08d65f0e9697d215b62c991ec2 internal/cbm/vendored/grammars/tsx/scanner.c b29c1c9fb7cc82f58c84b376df1297d6e2737a1d655fd356db0859e3c29c2fea internal/cbm/vendored/grammars/tsx/tree_sitter/alloc.h -4ff743903dc46f5db6aa54f31c6b4d160a8a9779e5b2ab1ee59ae7ebcd850ea1 internal/cbm/vendored/grammars/tsx/tree_sitter/array.h -a1f6ef161fbaf48a0e10fca90ef5290a062462b307b3898aa562993853b9f80a internal/cbm/vendored/grammars/tsx/tree_sitter/parser.h +5bdf6ed1a78e3409fd443e085ca967a64c188a5d082aaf7f819bccd53a471c94 internal/cbm/vendored/grammars/tsx/tree_sitter/array.h +180b893c8734778fd32f372dfbc27bd6ad1cd2221f26150b31256ff6716320d2 internal/cbm/vendored/grammars/tsx/tree_sitter/parser.h 49bf33cf78ef5897e4e161ce1517df7de1ae5042a65b6bcfd44401e0fc606559 internal/cbm/vendored/grammars/typescript/LICENSE da66ef2bd14a3f7ea743e25ba068c6c9aae2c3509db200ff80c4a0e6116e564c internal/cbm/vendored/grammars/typescript/_common_scanner.h 74fe453edd70f4eae9af0a1050cbd7943d8971d59165b6aaebbaa0a0b716d1aa internal/cbm/vendored/grammars/typescript/parser.c diff --git a/tests/test_parse_coverage.c b/tests/test_parse_coverage.c index fd0e64e47..e5286c686 100644 --- a/tests/test_parse_coverage.c +++ b/tests/test_parse_coverage.c @@ -983,6 +983,83 @@ TEST(coverage_gap_of_only_comments_is_not_a_miss) { PASS(); } +/* ── #1736: a lone '&' in JSX is text, not a parse failure ──────────────── + * Upstream tree-sitter-javascript (and the tsx dialect built on it) accepted + * '&' inside a JSX string only before a space/digit or as a complete + * character reference, and never inside JSX text, so `href="...?a=1&b=2"` + * (the reporter's Google Fonts URL) or `

Tom &Jerry

` produced an ERROR + * node and a parse_partial flag. Both grammars are now self-maintained forks + * (tools/tree-sitter-javascript, tools/tree-sitter-tsx). Each case wraps the + * JSX in a component and puts a second function AFTER it, so a pass also + * proves the definitions around the JSX are extracted. */ +static const char *const JSX_AMP_BODIES[] = { + /* the #1736 shape: '&' + letter in a double-quoted attribute */ + "", + "", /* single-quoted attribute */ + "

x

", /* '&' right before the quote */ + "

Tom &Jerry

", /* '&' + letter in JSX text */ + "

Tom & Jerry

", /* '&' + space in JSX text */ + "

x &1 y

", /* '&' + digit in JSX text */ + /* controls: references keep parsing; '& ' / '&1' in attributes */ + "

A&B & C

", +}; + +static const struct { + CBMLanguage lang; + const char *path; +} JSX_AMP_LANGS[] = { + {CBM_LANG_JAVASCRIPT, "app/page.js"}, + {CBM_LANG_JAVASCRIPT, "app/page.jsx"}, + {CBM_LANG_TSX, "app/layout.tsx"}, +}; + +enum { JSX_AMP_SRC_CAP = 512 }; + +TEST(jsx_lone_ampersand_is_not_parse_partial_issue1736) { + size_t nb = sizeof(JSX_AMP_BODIES) / sizeof(JSX_AMP_BODIES[0]); + size_t nl = sizeof(JSX_AMP_LANGS) / sizeof(JSX_AMP_LANGS[0]); + int failures = 0; + for (size_t l = 0; l < nl; l++) { + for (size_t b = 0; b < nb; b++) { + char src[JSX_AMP_SRC_CAP]; + snprintf(src, sizeof(src), + "export default function Page() {\n return (\n %s\n );\n}\n" + "export function After() {\n return 1;\n}\n", + JSX_AMP_BODIES[b]); + CBMFileResult *r = do_extract(src, JSX_AMP_LANGS[l].lang, JSX_AMP_LANGS[l].path); + ASSERT_NOT_NULL(r); + bool bad = r->parse_incomplete || !has_def(r, "Page") || !has_def(r, "After"); + if (bad) { + fprintf(stderr, " %s flagged=%d ranges=%s body=%s\n", JSX_AMP_LANGS[l].path, + (int)r->parse_incomplete, r->error_ranges ? r->error_ranges : "(none)", + JSX_AMP_BODIES[b]); + failures++; + } + cbm_free_result(r); + } + } + ASSERT_EQ(failures, 0); + PASS(); +} + +/* GUARD against an inert test: the same wrapper with genuinely broken JSX is + * still flagged in every one of the three languages, so the green above is the + * grammar accepting '&', not the signal being switched off. */ +TEST(jsx_broken_markup_still_parse_partial_issue1736) { + size_t nl = sizeof(JSX_AMP_LANGS) / sizeof(JSX_AMP_LANGS[0]); + for (size_t l = 0; l < nl; l++) { + const char *src = "export default function Page() {\n return (\n" + "

x

\n );\n}\n" + "export function After() {\n return 1;\n}\n"; + CBMFileResult *r = do_extract(src, JSX_AMP_LANGS[l].lang, JSX_AMP_LANGS[l].path); + ASSERT_NOT_NULL(r); + bool flagged = r->parse_incomplete; + cbm_free_result(r); + ASSERT_TRUE(flagged); + } + PASS(); +} + SUITE(parse_coverage) { RUN_TEST(c_ifdef_split_brace_sets_parse_incomplete); RUN_TEST(c_ifdef_split_brace_neighbors_still_extracted); @@ -1023,4 +1100,6 @@ SUITE(parse_coverage) { RUN_TEST(coverage_range_never_ends_past_the_last_line_issue963); RUN_TEST(coverage_range_never_covers_an_extracted_definition); RUN_TEST(coverage_gap_of_only_comments_is_not_a_miss); + RUN_TEST(jsx_lone_ampersand_is_not_parse_partial_issue1736); + RUN_TEST(jsx_broken_markup_still_parse_partial_issue1736); } diff --git a/tools/tree-sitter-javascript/grammar.js b/tools/tree-sitter-javascript/grammar.js new file mode 100644 index 000000000..2caca063d --- /dev/null +++ b/tools/tree-sitter-javascript/grammar.js @@ -0,0 +1,1369 @@ +/* + * cbm self-maintained fork of tree-sitter-javascript (JSX lone-ampersand fix, #1736) + * + * Copyright (c) 2014 Max Brunsfeld (tree-sitter-javascript, MIT) + * Copyright (c) 2026 DeusData (the "cbm fork (#1736)" hunks below) + * + * The VENDORED parser ships upstream's MIT LICENSE byte-identical; our copyright + * for the patch lives here, with the source, and in THIRD_PARTY.md. + * + * Fork provenance (pinned; the commit this repo vendored before the fork): + * tree-sitter/tree-sitter-javascript @ 58404d8cf191d69f2674a8fd507bd5776f46cb11 + * grammar.js -> this file = upstream + this header + patches/jsx-lone-ampersand.patch + * src/scanner.c -> src/scanner.c (byte-identical) + * + * The patch (and nothing else) differs from upstream: upstream leaves a lone '&' + * that does not begin a complete html_character_reference unmatched inside JSX + * strings and JSX text (`href="?a=1&b=2"`, `

Tom &Jerry

`, `a & b`), which + * yields an ERROR node. Node types are unchanged: the lone '&' is aliased to the + * existing string_fragment / jsx_text nodes. The same patch is applied to the + * javascript base of the tsx fork (tools/tree-sitter-tsx/javascript-grammar.js). + * On an upstream bump: re-fetch the pinned sources, re-apply the patch, regenerate. + * + * Regenerate (ABI 15 -- the vendored runtime ceiling; NEVER use a CLI >= 0.26, + * which emits ABI 16): + * cd tools/tree-sitter-javascript + * npx tree-sitter-cli@0.25.10 generate + * npx tree-sitter-cli@0.25.10 test + * cp src/parser.c ../../internal/cbm/vendored/grammars/javascript/parser.c + */ + +/** + * @file JavaScript grammar for tree-sitter + * @author Max Brunsfeld + * @author Amaan Qureshi + * @license MIT + */ + +/// +// @ts-check + +module.exports = grammar({ + name: 'javascript', + + externals: $ => [ + $._automatic_semicolon, + $._template_chars, + $._ternary_qmark, + $.html_comment, + '||', + // We use escape sequence and regex pattern to tell the scanner if we're currently inside a string or template string, in which case + // it should NOT parse html comments. + $.escape_sequence, + $.regex_pattern, + $.jsx_text, + ], + + extras: $ => [ + $.comment, + $.html_comment, + /[\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, + $.expression, + $.primary_expression, + $.pattern, + ], + + inline: $ => [ + $._call_signature, + $._formal_parameter, + $._expressions, + $._semicolon, + $._identifier, + $._reserved_identifier, + $._jsx_attribute, + $._jsx_element_name, + $._jsx_child, + $._jsx_element, + $._jsx_attribute_name, + $._jsx_attribute_value, + $._jsx_identifier, + $._lhs_expression, + ], + + precedences: $ => [ + [ + 'member', + 'template_call', + 'call', + $.update_expression, + 'unary_void', + 'binary_exp', + 'binary_times', + 'binary_plus', + 'binary_shift', + 'binary_compare', + 'binary_relation', + 'binary_equality', + 'bitwise_and', + 'bitwise_xor', + 'bitwise_or', + 'logical_and', + 'logical_or', + 'ternary', + $.sequence_expression, + $.arrow_function, + ], + ['assign', $.primary_expression], + ['member', 'template_call', 'new', 'call', $.expression], + ['declaration', 'literal'], + [$.primary_expression, $.statement_block, 'object'], + [$.meta_property, $.import], + [$.import_statement, $.import], + [$.export_statement, $.primary_expression], + [$.lexical_declaration, $.primary_expression], + ], + + conflicts: $ => [ + [$.primary_expression, $._property_name], + [$.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], + [$.primary_expression, $._for_header], + [$.variable_declarator, $._for_header], + [$.array, $.array_pattern], + [$.object, $.object_pattern], + [$.assignment_expression, $.pattern], + [$.assignment_expression, $.object_assignment_pattern], + [$.labeled_statement, $._property_name], + [$.computed_property_name, $.array], + [$.binary_expression, $._initializer], + [$.class_static_block, $._property_name], + ], + + word: $ => $.identifier, + + rules: { + program: $ => seq( + optional($.hash_bang_line), + repeat($.statement), + ), + + hash_bang_line: _ => /#!.*/, + + // + // Export declarations + // + + export_statement: $ => choice( + seq( + 'export', + choice( + seq('*', $._from_clause), + seq($.namespace_export, $._from_clause), + seq($.export_clause, $._from_clause), + $.export_clause, + ), + $._semicolon, + ), + seq( + repeat(field('decorator', $.decorator)), + 'export', + choice( + field('declaration', $.declaration), + seq( + 'default', + choice( + field('declaration', $.declaration), + seq( + field('value', $.expression), + $._semicolon, + ), + ), + ), + ), + ), + ), + + namespace_export: $ => seq( + '*', 'as', $._module_export_name, + ), + + export_clause: $ => seq( + '{', + commaSep($.export_specifier), + optional(','), + '}', + ), + + export_specifier: $ => seq( + field('name', $._module_export_name), + optional(seq( + 'as', + field('alias', $._module_export_name), + )), + ), + + _module_export_name: $ => choice( + $.identifier, + $.string, + 'default', + ), + + declaration: $ => choice( + $.function_declaration, + $.generator_function_declaration, + $.class_declaration, + $.lexical_declaration, + $.variable_declaration, + $.using_declaration, + ), + + // + // Import declarations + // + + import: _ => token('import'), + + import_statement: $ => seq( + 'import', + choice( + seq($.import_clause, $._from_clause), + field('source', $.string), + ), + optional($.import_attribute), + $._semicolon, + ), + + import_clause: $ => choice( + $.namespace_import, + $.named_imports, + seq( + $.identifier, + optional(seq( + ',', + choice( + $.namespace_import, + $.named_imports, + ), + )), + ), + ), + + _from_clause: $ => seq( + 'from', field('source', $.string), + ), + + namespace_import: $ => seq( + '*', 'as', $.identifier, + ), + + named_imports: $ => seq( + '{', + commaSep($.import_specifier), + optional(','), + '}', + ), + + import_specifier: $ => choice( + field('name', $.identifier), + seq( + field('name', $._module_export_name), + 'as', + field('alias', $.identifier), + ), + ), + + import_attribute: $ => seq('with', $.object), + + // + // Statements + // + + statement: $ => choice( + $.export_statement, + $.import_statement, + $.debugger_statement, + $.expression_statement, + $.declaration, + $.statement_block, + + $.if_statement, + $.switch_statement, + $.for_statement, + $.for_in_statement, + $.while_statement, + $.do_statement, + $.try_statement, + $.with_statement, + + $.break_statement, + $.continue_statement, + $.return_statement, + $.throw_statement, + $.empty_statement, + $.labeled_statement, + ), + + expression_statement: $ => seq( + $._expressions, + $._semicolon, + ), + + variable_declaration: $ => seq( + 'var', + commaSep1($.variable_declarator), + $._semicolon, + ), + + lexical_declaration: $ => seq( + field('kind', choice('let', 'const')), + commaSep1($.variable_declarator), + $._semicolon, + ), + + using_declaration: $ => seq( + field('kind', choice( + 'using', + seq('await', 'using'), + )), + commaSep1($.variable_declarator), + $._semicolon, + ), + + variable_declarator: $ => seq( + field('name', choice( + $.identifier, + alias('of', $.identifier), + $._destructuring_pattern, + )), + optional($._initializer), + ), + + statement_block: $ => prec.right(seq( + '{', + repeat($.statement), + '}', + optional($._automatic_semicolon), + )), + + else_clause: $ => seq('else', $.statement), + + if_statement: $ => prec.right(seq( + 'if', + field('condition', $.parenthesized_expression), + field('consequence', $.statement), + optional(field('alternative', $.else_clause)), + )), + + switch_statement: $ => seq( + 'switch', + field('value', $.parenthesized_expression), + field('body', $.switch_body), + ), + + for_statement: $ => seq( + 'for', + '(', + choice( + field('initializer', choice($.lexical_declaration, $.variable_declaration)), + seq(field('initializer', $._expressions), ';'), + field('initializer', $.empty_statement), + ), + field('condition', choice( + seq($._expressions, ';'), + $.empty_statement, + )), + field('increment', optional($._expressions)), + ')', + field('body', $.statement), + ), + + for_in_statement: $ => seq( + 'for', + optional('await'), + $._for_header, + field('body', $.statement), + ), + + _for_header: $ => seq( + '(', + choice( + field('left', choice( + $._lhs_expression, + $.parenthesized_expression, + )), + seq( + field('kind', 'var'), + field('left', choice( + $.identifier, + alias('of', $.identifier), + $._destructuring_pattern, + )), + optional($._initializer), + ), + seq( + field('kind', choice('let', 'const')), + field('left', choice( + $.identifier, + alias('of', $.identifier), + $._destructuring_pattern, + )), + optional($._automatic_semicolon), + ), + seq( + field('kind', choice( + 'using', + seq('await', 'using'), + )), + field('left', choice( + $.identifier, + alias('of', $.identifier), + $._destructuring_pattern, + )), + optional($._automatic_semicolon), + ), + ), + field('operator', choice('in', 'of')), + field('right', $._expressions), + ')', + ), + + while_statement: $ => seq( + 'while', + field('condition', $.parenthesized_expression), + field('body', $.statement), + ), + + do_statement: $ => prec.right(seq( + 'do', + field('body', $.statement), + 'while', + field('condition', $.parenthesized_expression), + optional($._semicolon), + )), + + try_statement: $ => seq( + 'try', + field('body', $.statement_block), + optional(field('handler', $.catch_clause)), + optional(field('finalizer', $.finally_clause)), + ), + + with_statement: $ => seq( + 'with', + field('object', $.parenthesized_expression), + field('body', $.statement), + ), + + break_statement: $ => seq( + 'break', + field('label', optional(alias($.identifier, $.statement_identifier))), + $._semicolon, + ), + + continue_statement: $ => seq( + 'continue', + field('label', optional(alias($.identifier, $.statement_identifier))), + $._semicolon, + ), + + debugger_statement: $ => seq( + 'debugger', + $._semicolon, + ), + + return_statement: $ => seq( + 'return', + optional($._expressions), + $._semicolon, + ), + + throw_statement: $ => seq( + 'throw', + $._expressions, + $._semicolon, + ), + + empty_statement: _ => ';', + + labeled_statement: $ => prec.dynamic(-1, seq( + field('label', alias(choice($.identifier, $._reserved_identifier), $.statement_identifier)), + ':', + field('body', $.statement), + )), + + // + // Statement components + // + + switch_body: $ => seq( + '{', + repeat(choice($.switch_case, $.switch_default)), + '}', + ), + + switch_case: $ => seq( + 'case', + field('value', $._expressions), + ':', + field('body', repeat($.statement)), + ), + + switch_default: $ => seq( + 'default', + ':', + field('body', repeat($.statement)), + ), + + catch_clause: $ => seq( + 'catch', + optional(seq('(', field('parameter', choice($.identifier, $._destructuring_pattern)), ')')), + field('body', $.statement_block), + ), + + finally_clause: $ => seq( + 'finally', + field('body', $.statement_block), + ), + + parenthesized_expression: $ => seq( + '(', + $._expressions, + ')', + ), + + // + // Expressions + // + _expressions: $ => choice( + $.expression, + $.sequence_expression, + ), + + expression: $ => choice( + $.primary_expression, + $._jsx_element, + $.assignment_expression, + $.augmented_assignment_expression, + $.await_expression, + $.unary_expression, + $.binary_expression, + $.ternary_expression, + $.update_expression, + $.new_expression, + $.yield_expression, + ), + + primary_expression: $ => choice( + $.subscript_expression, + $.member_expression, + $.parenthesized_expression, + $._identifier, + alias($._reserved_identifier, $.identifier), + $.this, + $.super, + $.number, + $.string, + $.template_string, + $.regex, + $.true, + $.false, + $.null, + $.object, + $.array, + $.function_expression, + $.arrow_function, + $.generator_function, + $.class, + $.meta_property, + $.call_expression, + ), + + yield_expression: $ => prec.right(seq( + 'yield', + choice( + seq('*', $.expression), + optional($.expression), + ))), + + object: $ => prec('object', seq( + '{', + commaSep(optional(choice( + $.pair, + $.spread_element, + $.method_definition, + alias( + choice($.identifier, $._reserved_identifier), + $.shorthand_property_identifier, + ), + ))), + '}', + )), + + object_pattern: $ => prec('object', seq( + '{', + commaSep(optional(choice( + $.pair_pattern, + $.rest_pattern, + $.object_assignment_pattern, + alias( + choice($.identifier, $._reserved_identifier), + $.shorthand_property_identifier_pattern, + ), + ))), + '}', + )), + + assignment_pattern: $ => seq( + field('left', $.pattern), + '=', + field('right', $.expression), + ), + + object_assignment_pattern: $ => seq( + field('left', choice( + alias(choice($._reserved_identifier, $.identifier), $.shorthand_property_identifier_pattern), + $._destructuring_pattern, + )), + '=', + field('right', $.expression), + ), + + array: $ => seq( + '[', + commaSep(optional(choice( + $.expression, + $.spread_element, + ))), + ']', + ), + + array_pattern: $ => seq( + '[', + commaSep(optional(choice( + $.pattern, + $.assignment_pattern, + ))), + ']', + ), + + _jsx_element: $ => choice($.jsx_element, $.jsx_self_closing_element), + + jsx_element: $ => seq( + field('open_tag', $.jsx_opening_element), + repeat($._jsx_child), + field('close_tag', $.jsx_closing_element), + ), + + // An entity can be named, numeric (decimal), or numeric (hexadecimal). The + // longest entity name is 29 characters long, and the HTML spec says that + // no more will ever be added. + html_character_reference: _ => /&(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30});/, + + jsx_expression: $ => seq( + '{', + optional(choice( + $.expression, + $.sequence_expression, + $.spread_element, + )), + '}', + ), + + _jsx_child: $ => choice( + $.jsx_text, + $.html_character_reference, + // cbm fork (#1736): a lone '&' that does not start a complete + // html_character_reference is plain text, as in HTML/React. + alias($._jsx_lone_ampersand, $.jsx_text), + $._jsx_element, + $.jsx_expression, + ), + + jsx_opening_element: $ => prec.dynamic(-1, seq( + '<', + optional(seq( + field('name', $._jsx_element_name), + repeat(field('attribute', $._jsx_attribute)), + )), + '>', + )), + + jsx_identifier: _ => /[a-zA-Z_$][a-zA-Z\d_$]*-[a-zA-Z\d_$\-]*/, + + _jsx_identifier: $ => choice( + alias($.jsx_identifier, $.identifier), + $.identifier, + ), + + nested_identifier: $ => prec('member', seq( + field('object', choice($.identifier, alias($.nested_identifier, $.member_expression))), + '.', + field('property', alias($.identifier, $.property_identifier)), + )), + + jsx_namespace_name: $ => seq($._jsx_identifier, ':', $._jsx_identifier), + + _jsx_element_name: $ => choice( + $._jsx_identifier, + alias($.nested_identifier, $.member_expression), + $.jsx_namespace_name, + ), + + jsx_closing_element: $ => seq( + '', + ), + + jsx_self_closing_element: $ => seq( + '<', + field('name', $._jsx_element_name), + repeat(field('attribute', $._jsx_attribute)), + '/>', + ), + + _jsx_attribute: $ => choice($.jsx_attribute, $.jsx_expression), + + _jsx_attribute_name: $ => choice(alias($._jsx_identifier, $.property_identifier), $.jsx_namespace_name), + + jsx_attribute: $ => seq( + $._jsx_attribute_name, + optional(seq( + '=', + $._jsx_attribute_value, + )), + ), + + _jsx_string: $ => choice( + seq( + '"', + repeat(choice( + alias($.unescaped_double_jsx_string_fragment, $.string_fragment), + $.html_character_reference, + alias($._jsx_string_lone_ampersand, $.string_fragment), // cbm fork (#1736) + )), + '"', + ), + seq( + '\'', + repeat(choice( + alias($.unescaped_single_jsx_string_fragment, $.string_fragment), + $.html_character_reference, + alias($._jsx_string_lone_ampersand, $.string_fragment), // cbm fork (#1736) + )), + '\'', + ), + ), + + // Workaround to https://github.com/tree-sitter/tree-sitter/issues/1156 + // We give names to the token() constructs containing a regexp + // so as to obtain a node in the CST. + // + // cbm fork (#1736): '&' directly before the closing quote is excluded so the + // fragment cannot run past the end of the string (upstream: &[^#A-Za-z]). + unescaped_double_jsx_string_fragment: _ => token.immediate(prec(1, /([^"&]|&[^#A-Za-z"])+/)), + + // same here + unescaped_single_jsx_string_fragment: _ => token.immediate(prec(1, /([^'&]|&[^#A-Za-z'])+/)), + + // cbm fork (#1736): a lone '&' that does not begin a complete + // html_character_reference (`?a=1&b=2`, `Tom &Jerry`). Precedence -1 keeps + // html_character_reference (precedence 0) winning for `&` / `&`; the + // lexer falls back to this one-character token only when no reference + // matches. Upstream leaves `&` + letter/`#` unmatched, producing an ERROR. + _jsx_lone_ampersand: _ => token(prec(-1, '&')), + _jsx_string_lone_ampersand: _ => token.immediate(prec(-1, '&')), + + _jsx_attribute_value: $ => choice( + alias($._jsx_string, $.string), + $.jsx_expression, + $._jsx_element, + ), + + class: $ => prec('literal', seq( + repeat(field('decorator', $.decorator)), + 'class', + field('name', optional($.identifier)), + optional($.class_heritage), + field('body', $.class_body), + )), + + class_declaration: $ => prec('declaration', seq( + repeat(field('decorator', $.decorator)), + 'class', + field('name', $.identifier), + optional($.class_heritage), + field('body', $.class_body), + optional($._automatic_semicolon), + )), + + class_heritage: $ => seq('extends', $.expression), + + function_expression: $ => prec('literal', seq( + optional('async'), + 'function', + field('name', optional($.identifier)), + $._call_signature, + field('body', $.statement_block), + )), + + function_declaration: $ => prec.right('declaration', seq( + optional('async'), + 'function', + field('name', $.identifier), + $._call_signature, + field('body', $.statement_block), + optional($._automatic_semicolon), + )), + + generator_function: $ => prec('literal', seq( + optional('async'), + 'function', + '*', + field('name', optional($.identifier)), + $._call_signature, + field('body', $.statement_block), + )), + + generator_function_declaration: $ => prec.right('declaration', seq( + optional('async'), + 'function', + '*', + field('name', $.identifier), + $._call_signature, + field('body', $.statement_block), + optional($._automatic_semicolon), + )), + + arrow_function: $ => seq( + optional('async'), + choice( + field('parameter', choice( + alias($._reserved_identifier, $.identifier), + $.identifier, + )), + $._call_signature, + ), + '=>', + field('body', choice( + $.expression, + $.statement_block, + )), + ), + + // Override + _call_signature: $ => field('parameters', $.formal_parameters), + _formal_parameter: $ => choice($.pattern, $.assignment_pattern), + + optional_chain: _ => '?.', + + call_expression: $ => choice( + prec('call', seq( + field('function', choice($.expression, $.import)), + field('arguments', $.arguments), + )), + prec('template_call', seq( + field('function', choice($.primary_expression, $.new_expression)), + field('arguments', $.template_string), + )), + prec('member', seq( + field('function', $.primary_expression), + field('optional_chain', $.optional_chain), + field('arguments', $.arguments), + )), + ), + + new_expression: $ => prec.right('new', seq( + 'new', + field('constructor', choice($.primary_expression, $.new_expression)), + field('arguments', optional(prec.dynamic(1, $.arguments))), + )), + + await_expression: $ => prec('unary_void', seq( + 'await', + $.expression, + )), + + member_expression: $ => prec('member', seq( + field('object', choice($.expression, $.primary_expression, $.import)), + choice('.', field('optional_chain', $.optional_chain)), + field('property', choice( + $.private_property_identifier, + reserved('properties', alias($.identifier, $.property_identifier)), + )), + )), + + subscript_expression: $ => prec.right('member', seq( + field('object', choice($.expression, $.primary_expression)), + optional(field('optional_chain', $.optional_chain)), + '[', field('index', $._expressions), ']', + )), + + _lhs_expression: $ => choice( + $.member_expression, + $.subscript_expression, + $._identifier, + alias($._reserved_identifier, $.identifier), + $._destructuring_pattern, + ), + + assignment_expression: $ => prec.right('assign', seq( + field('left', choice($.parenthesized_expression, $._lhs_expression)), + '=', + field('right', $.expression), + )), + + _augmented_assignment_lhs: $ => choice( + $.member_expression, + $.subscript_expression, + alias($._reserved_identifier, $.identifier), + $.identifier, + $.parenthesized_expression, + ), + + augmented_assignment_expression: $ => prec.right('assign', seq( + field('left', $._augmented_assignment_lhs), + field('operator', choice('+=', '-=', '*=', '/=', '%=', '^=', '&=', '|=', '>>=', '>>>=', + '<<=', '**=', '&&=', '||=', '??=')), + field('right', $.expression), + )), + + _initializer: $ => seq( + '=', + field('value', $.expression), + ), + + _destructuring_pattern: $ => choice( + $.object_pattern, + $.array_pattern, + ), + + spread_element: $ => seq('...', $.expression), + + ternary_expression: $ => prec.right('ternary', seq( + field('condition', $.expression), + alias($._ternary_qmark, '?'), + field('consequence', $.expression), + ':', + field('alternative', $.expression), + )), + + binary_expression: $ => choice( + ...[ + ['&&', 'logical_and'], + ['||', 'logical_or'], + ['>>', 'binary_shift'], + ['>>>', 'binary_shift'], + ['<<', 'binary_shift'], + ['&', 'bitwise_and'], + ['^', 'bitwise_xor'], + ['|', 'bitwise_or'], + ['+', 'binary_plus'], + ['-', 'binary_plus'], + ['*', 'binary_times'], + ['/', 'binary_times'], + ['%', 'binary_times'], + ['**', 'binary_exp', 'right'], + ['<', 'binary_relation'], + ['<=', 'binary_relation'], + ['==', 'binary_equality'], + ['===', 'binary_equality'], + ['!=', 'binary_equality'], + ['!==', 'binary_equality'], + ['>=', 'binary_relation'], + ['>', 'binary_relation'], + ['??', 'ternary'], + ['instanceof', 'binary_relation'], + ['in', 'binary_relation'], + ].map(([operator, precedence, associativity]) => + (associativity === 'right' ? prec.right : prec.left)(precedence, seq( + field('left', operator === 'in' ? choice($.expression, $.private_property_identifier) : $.expression), + field('operator', operator), + field('right', $.expression), + )), + ), + ), + + unary_expression: $ => prec.left('unary_void', seq( + field('operator', choice('!', '~', '-', '+', 'typeof', 'void', 'delete')), + field('argument', $.expression), + )), + + update_expression: $ => prec.left(choice( + seq( + field('argument', $.expression), + field('operator', choice('++', '--')), + ), + seq( + field('operator', choice('++', '--')), + field('argument', $.expression), + ), + )), + + sequence_expression: $ => prec.right(commaSep1($.expression)), + + // + // Primitives + // + + string: $ => choice( + seq( + '"', + repeat(choice( + alias($.unescaped_double_string_fragment, $.string_fragment), + $.escape_sequence, + )), + '"', + ), + seq( + '\'', + repeat(choice( + alias($.unescaped_single_string_fragment, $.string_fragment), + $.escape_sequence, + )), + '\'', + ), + ), + + // Workaround to https://github.com/tree-sitter/tree-sitter/issues/1156 + // We give names to the token() constructs containing a regexp + // so as to obtain a node in the CST. + // + unescaped_double_string_fragment: _ => token.immediate(prec(1, /[^"\\\r\n]+/)), + + // same here + unescaped_single_string_fragment: _ => token.immediate(prec(1, /[^'\\\r\n]+/)), + + escape_sequence: _ => token.immediate(seq( + '\\', + choice( + /[^xu0-7]/, + /[0-7]{1,3}/, + /x[0-9a-fA-F]{2}/, + /u[0-9a-fA-F]{4}/, + /u\{[0-9a-fA-F]+\}/, + /[\r?][\n\u2028\u2029]/, + ), + )), + + // http://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 + comment: _ => token(choice( + seq('//', /[^\r\n\u2028\u2029]*/), + seq( + '/*', + /[^*]*\*+([^/*][^*]*\*+)*/, + '/', + ), + )), + + template_string: $ => seq( + '`', + repeat(choice( + alias($._template_chars, $.string_fragment), + $.escape_sequence, + $.template_substitution, + )), + '`', + ), + + template_substitution: $ => seq( + '${', + $._expressions, + '}', + ), + + regex: $ => seq( + '/', + field('pattern', $.regex_pattern), + token.immediate(prec(1, '/')), + optional(field('flags', $.regex_flags)), + ), + + regex_pattern: _ => token.immediate(prec(-1, + repeat1(choice( + seq( + '[', + repeat(choice( + seq('\\', /./), // escaped character + /[^\]\n\\]/, // any character besides ']' or '\n' + )), + ']', + ), // square-bracket-delimited character class + seq('\\', /./), // escaped character + /[^/\\\[\n]/, // any character besides '[', '\', '/', '\n' + )), + )), + + regex_flags: _ => token.immediate(/[a-z]+/), + + number: _ => { + const hexLiteral = seq( + choice('0x', '0X'), + /[\da-fA-F](_?[\da-fA-F])*/, + ); + + const decimalDigits = /\d(_?\d)*/; + const signedInteger = seq(optional(choice('-', '+')), decimalDigits); + const exponentPart = seq(choice('e', 'E'), signedInteger); + + const binaryLiteral = seq(choice('0b', '0B'), /[0-1](_?[0-1])*/); + + const octalLiteral = seq(choice('0o', '0O'), /[0-7](_?[0-7])*/); + + const bigintLiteral = seq(choice(hexLiteral, binaryLiteral, octalLiteral, decimalDigits), 'n'); + + const decimalIntegerLiteral = choice( + '0', + seq(optional('0'), /[1-9]/, optional(seq(optional('_'), decimalDigits))), + ); + + const decimalLiteral = choice( + seq(decimalIntegerLiteral, '.', optional(decimalDigits), optional(exponentPart)), + seq('.', decimalDigits, optional(exponentPart)), + seq(decimalIntegerLiteral, exponentPart), + decimalDigits, + ); + + return token(choice( + hexLiteral, + decimalLiteral, + binaryLiteral, + octalLiteral, + bigintLiteral, + )); + }, + + // 'undefined' is syntactically a regular identifier in JavaScript. + // However, its main use is as the read-only global variable whose + // value is [undefined], for which there's no literal representation + // unlike 'null'. We gave it its own rule so it's easy to + // highlight in text editors and other applications. + _identifier: $ => choice( + $.undefined, + $.identifier, + ), + + identifier: _ => { + const alpha = /[^\x00-\x1F\s\p{Zs}0-9:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + + const alphanumeric = /[^\x00-\x1F\s\p{Zs}:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + return token(seq(alpha, repeat(alphanumeric))); + }, + + private_property_identifier: _ => { + const alpha = /[^\x00-\x1F\s\p{Zs}0-9:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + + const alphanumeric = /[^\x00-\x1F\s\p{Zs}:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + return token(seq('#', alpha, repeat(alphanumeric))); + }, + + meta_property: _ => choice(seq('new', '.', 'target'), seq('import', '.', 'meta')), + + this: _ => 'this', + super: _ => 'super', + true: _ => 'true', + false: _ => 'false', + null: _ => 'null', + undefined: _ => 'undefined', + + // + // Expression components + // + + arguments: $ => seq( + '(', + commaSep(optional(choice($.expression, $.spread_element))), + ')', + ), + + decorator: $ => seq( + '@', + choice( + $.identifier, + alias($.decorator_member_expression, $.member_expression), + alias($.decorator_call_expression, $.call_expression), + ), + ), + + decorator_member_expression: $ => prec('member', seq( + field('object', choice( + $.identifier, + alias($.decorator_member_expression, $.member_expression), + )), + '.', + field('property', alias($.identifier, $.property_identifier)), + )), + + decorator_call_expression: $ => prec('call', seq( + field('function', choice( + $.identifier, + alias($.decorator_member_expression, $.member_expression), + )), + field('arguments', $.arguments), + )), + + class_body: $ => seq( + '{', + repeat(choice( + seq(field('member', $.method_definition), optional(';')), + seq(field('member', $.field_definition), $._semicolon), + field('member', $.class_static_block), + ';', + )), + '}', + ), + + field_definition: $ => seq( + repeat(field('decorator', $.decorator)), + optional('static'), + field('property', $._property_name), + optional($._initializer), + ), + + formal_parameters: $ => seq( + '(', + optional(seq( + commaSep1($._formal_parameter), + optional(','), + )), + ')', + ), + + class_static_block: $ => seq( + 'static', + optional($._automatic_semicolon), + field('body', $.statement_block), + ), + + // This negative dynamic precedence ensures that during error recovery, + // unfinished constructs are generally treated as literal expressions, + // not patterns. + pattern: $ => prec.dynamic(-1, choice( + $._lhs_expression, + $.rest_pattern, + )), + + rest_pattern: $ => prec.right(seq( + '...', + $._lhs_expression, + )), + + method_definition: $ => seq( + repeat(field('decorator', $.decorator)), + optional(choice( + 'static', + alias(token(seq('static', /\s+/, 'get', /\s*\n/)), 'static get'), + )), + optional('async'), + optional(choice('get', 'set', '*')), + field('name', $._property_name), + field('parameters', $.formal_parameters), + field('body', $.statement_block), + ), + + pair: $ => seq( + field('key', $._property_name), + ':', + field('value', $.expression), + ), + + pair_pattern: $ => seq( + field('key', $._property_name), + ':', + field('value', choice($.pattern, $.assignment_pattern)), + ), + + _property_name: $ => reserved('properties', choice( + alias( + choice($.identifier, $._reserved_identifier), + $.property_identifier, + ), + $.private_property_identifier, + $.string, + $.number, + $.computed_property_name, + )), + + computed_property_name: $ => seq( + '[', + $.expression, + ']', + ), + + _reserved_identifier: _ => choice( + 'get', + 'set', + 'async', + 'await', + 'static', + 'export', + 'let', + ), + + _semicolon: $ => choice($._automatic_semicolon, ';'), + }, +}); + +/** + * Creates a rule to match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @returns {SeqRule} + */ +function commaSep1(rule) { + return seq(rule, repeat(seq(',', rule))); +} + +/** + * Creates a rule to optionally match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @returns {ChoiceRule} + */ +function commaSep(rule) { + return optional(commaSep1(rule)); +} diff --git a/tools/tree-sitter-javascript/package.json b/tools/tree-sitter-javascript/package.json new file mode 100644 index 000000000..8a8a22102 --- /dev/null +++ b/tools/tree-sitter-javascript/package.json @@ -0,0 +1,9 @@ +{ + "name": "tree-sitter-javascript-cbm", + "version": "0.25.0-cbm.1", + "description": "cbm fork of tree-sitter-javascript @ 58404d8 (JSX lone-ampersand fix, #1736)", + "license": "MIT", + "devDependencies": { + "tree-sitter-cli": "0.25.10" + } +} diff --git a/tools/tree-sitter-javascript/patches/jsx-lone-ampersand.patch b/tools/tree-sitter-javascript/patches/jsx-lone-ampersand.patch new file mode 100644 index 000000000..9c92fd5e8 --- /dev/null +++ b/tools/tree-sitter-javascript/patches/jsx-lone-ampersand.patch @@ -0,0 +1,52 @@ +--- a/grammar.js ++++ b/grammar.js +@@ -684,6 +684,9 @@ + _jsx_child: $ => choice( + $.jsx_text, + $.html_character_reference, ++ // cbm fork (#1736): a lone '&' that does not start a complete ++ // html_character_reference is plain text, as in HTML/React. ++ alias($._jsx_lone_ampersand, $.jsx_text), + $._jsx_element, + $.jsx_expression, + ), +@@ -749,6 +752,7 @@ + repeat(choice( + alias($.unescaped_double_jsx_string_fragment, $.string_fragment), + $.html_character_reference, ++ alias($._jsx_string_lone_ampersand, $.string_fragment), // cbm fork (#1736) + )), + '"', + ), +@@ -757,6 +761,7 @@ + repeat(choice( + alias($.unescaped_single_jsx_string_fragment, $.string_fragment), + $.html_character_reference, ++ alias($._jsx_string_lone_ampersand, $.string_fragment), // cbm fork (#1736) + )), + '\'', + ), +@@ -766,11 +771,21 @@ + // We give names to the token() constructs containing a regexp + // so as to obtain a node in the CST. + // +- unescaped_double_jsx_string_fragment: _ => token.immediate(prec(1, /([^"&]|&[^#A-Za-z])+/)), ++ // cbm fork (#1736): '&' directly before the closing quote is excluded so the ++ // fragment cannot run past the end of the string (upstream: &[^#A-Za-z]). ++ unescaped_double_jsx_string_fragment: _ => token.immediate(prec(1, /([^"&]|&[^#A-Za-z"])+/)), + + // same here +- unescaped_single_jsx_string_fragment: _ => token.immediate(prec(1, /([^'&]|&[^#A-Za-z])+/)), ++ unescaped_single_jsx_string_fragment: _ => token.immediate(prec(1, /([^'&]|&[^#A-Za-z'])+/)), + ++ // cbm fork (#1736): a lone '&' that does not begin a complete ++ // html_character_reference (`?a=1&b=2`, `Tom &Jerry`). Precedence -1 keeps ++ // html_character_reference (precedence 0) winning for `&` / `&`; the ++ // lexer falls back to this one-character token only when no reference ++ // matches. Upstream leaves `&` + letter/`#` unmatched, producing an ERROR. ++ _jsx_lone_ampersand: _ => token(prec(-1, '&')), ++ _jsx_string_lone_ampersand: _ => token.immediate(prec(-1, '&')), ++ + _jsx_attribute_value: $ => choice( + alias($._jsx_string, $.string), + $.jsx_expression, diff --git a/tools/tree-sitter-javascript/src/grammar.json b/tools/tree-sitter-javascript/src/grammar.json new file mode 100644 index 000000000..a2be765ce --- /dev/null +++ b/tools/tree-sitter-javascript/src/grammar.json @@ -0,0 +1,7310 @@ +{ + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", + "name": "javascript", + "word": "identifier", + "rules": { + "program": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hash_bang_line" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "hash_bang_line": { + "type": "PATTERN", + "value": "#!.*" + }, + "export_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "export" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "SYMBOL", + "name": "_from_clause" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_export" + }, + { + "type": "SYMBOL", + "name": "_from_clause" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "export_clause" + }, + { + "type": "SYMBOL", + "name": "_from_clause" + } + ] + }, + { + "type": "SYMBOL", + "name": "export_clause" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "STRING", + "value": "export" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "declaration", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "default" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "declaration", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "namespace_export": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "SYMBOL", + "name": "_module_export_name" + } + ] + }, + "export_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "export_specifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "export_specifier" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "export_specifier": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_module_export_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "_module_export_name" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_module_export_name": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "STRING", + "value": "default" + } + ] + }, + "declaration": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_declaration" + }, + { + "type": "SYMBOL", + "name": "generator_function_declaration" + }, + { + "type": "SYMBOL", + "name": "class_declaration" + }, + { + "type": "SYMBOL", + "name": "lexical_declaration" + }, + { + "type": "SYMBOL", + "name": "variable_declaration" + }, + { + "type": "SYMBOL", + "name": "using_declaration" + } + ] + }, + "import": { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "import" + } + }, + "import_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "import" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "import_clause" + }, + { + "type": "SYMBOL", + "name": "_from_clause" + } + ] + }, + { + "type": "FIELD", + "name": "source", + "content": { + "type": "SYMBOL", + "name": "string" + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "import_attribute" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "import_clause": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_import" + }, + { + "type": "SYMBOL", + "name": "named_imports" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_import" + }, + { + "type": "SYMBOL", + "name": "named_imports" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + "_from_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "from" + }, + { + "type": "FIELD", + "name": "source", + "content": { + "type": "SYMBOL", + "name": "string" + } + } + ] + }, + "namespace_import": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "named_imports": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "import_specifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "import_specifier" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "import_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_module_export_name" + } + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + } + ] + }, + "import_attribute": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "with" + }, + { + "type": "SYMBOL", + "name": "object" + } + ] + }, + "statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "export_statement" + }, + { + "type": "SYMBOL", + "name": "import_statement" + }, + { + "type": "SYMBOL", + "name": "debugger_statement" + }, + { + "type": "SYMBOL", + "name": "expression_statement" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "statement_block" + }, + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "switch_statement" + }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "for_in_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "do_statement" + }, + { + "type": "SYMBOL", + "name": "try_statement" + }, + { + "type": "SYMBOL", + "name": "with_statement" + }, + { + "type": "SYMBOL", + "name": "break_statement" + }, + { + "type": "SYMBOL", + "name": "continue_statement" + }, + { + "type": "SYMBOL", + "name": "return_statement" + }, + { + "type": "SYMBOL", + "name": "throw_statement" + }, + { + "type": "SYMBOL", + "name": "empty_statement" + }, + { + "type": "SYMBOL", + "name": "labeled_statement" + } + ] + }, + "expression_statement": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "variable_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "var" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_declarator" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "variable_declarator" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "lexical_declaration": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "kind", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "STRING", + "value": "const" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_declarator" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "variable_declarator" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "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": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "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": "_initializer" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "statement_block": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "SYMBOL", + "name": "statement" + } + ] + }, + "if_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "switch_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "switch" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "switch_body" + } + } + ] + }, + "for_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lexical_declaration" + }, + { + "type": "SYMBOL", + "name": "variable_declaration" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "SYMBOL", + "name": "empty_statement" + } + } + ] + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SYMBOL", + "name": "empty_statement" + } + ] + } + }, + { + "type": "FIELD", + "name": "increment", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "for_in_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "await" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_for_header" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "_for_header": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_lhs_expression" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "kind", + "content": { + "type": "STRING", + "value": "var" + } + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "of" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_initializer" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "kind", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "STRING", + "value": "const" + } + ] + } + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "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" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "of" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "while_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "do_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "try_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "try" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "handler", + "content": { + "type": "SYMBOL", + "name": "catch_clause" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "finalizer", + "content": { + "type": "SYMBOL", + "name": "finally_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "with_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "with" + }, + { + "type": "FIELD", + "name": "object", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "break_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "break" + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "statement_identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "continue_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "continue" + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "statement_identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "debugger_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "debugger" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "return_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "throw_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "throw" + }, + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "empty_statement": { + "type": "STRING", + "value": ";" + }, + "labeled_statement": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "statement_identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + } + }, + "switch_body": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "switch_case" + }, + { + "type": "SYMBOL", + "name": "switch_default" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "switch_case": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "case" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + } + ] + }, + "switch_default": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + } + ] + }, + "catch_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "catch" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "parameter", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + }, + "finally_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "finally" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + }, + "parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_expressions": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "sequence_expression" + } + ] + }, + "expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "_jsx_element" + }, + { + "type": "SYMBOL", + "name": "assignment_expression" + }, + { + "type": "SYMBOL", + "name": "augmented_assignment_expression" + }, + { + "type": "SYMBOL", + "name": "await_expression" + }, + { + "type": "SYMBOL", + "name": "unary_expression" + }, + { + "type": "SYMBOL", + "name": "binary_expression" + }, + { + "type": "SYMBOL", + "name": "ternary_expression" + }, + { + "type": "SYMBOL", + "name": "update_expression" + }, + { + "type": "SYMBOL", + "name": "new_expression" + }, + { + "type": "SYMBOL", + "name": "yield_expression" + } + ] + }, + "primary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "member_expression" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "this" + }, + { + "type": "SYMBOL", + "name": "super" + }, + { + "type": "SYMBOL", + "name": "number" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "template_string" + }, + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "null" + }, + { + "type": "SYMBOL", + "name": "object" + }, + { + "type": "SYMBOL", + "name": "array" + }, + { + "type": "SYMBOL", + "name": "function_expression" + }, + { + "type": "SYMBOL", + "name": "arrow_function" + }, + { + "type": "SYMBOL", + "name": "generator_function" + }, + { + "type": "SYMBOL", + "name": "class" + }, + { + "type": "SYMBOL", + "name": "meta_property" + }, + { + "type": "SYMBOL", + "name": "call_expression" + } + ] + }, + "yield_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "yield" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + }, + "object": { + "type": "PREC", + "value": "object", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "SYMBOL", + "name": "spread_element" + }, + { + "type": "SYMBOL", + "name": "method_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "shorthand_property_identifier" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "SYMBOL", + "name": "spread_element" + }, + { + "type": "SYMBOL", + "name": "method_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "shorthand_property_identifier" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + "object_pattern": { + "type": "PREC", + "value": "object", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair_pattern" + }, + { + "type": "SYMBOL", + "name": "rest_pattern" + }, + { + "type": "SYMBOL", + "name": "object_assignment_pattern" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "shorthand_property_identifier_pattern" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair_pattern" + }, + { + "type": "SYMBOL", + "name": "rest_pattern" + }, + { + "type": "SYMBOL", + "name": "object_assignment_pattern" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "shorthand_property_identifier_pattern" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + "assignment_pattern": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "pattern" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "object_assignment_pattern": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "named": true, + "value": "shorthand_property_identifier_pattern" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "array": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "spread_element" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "spread_element" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "array_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "SYMBOL", + "name": "assignment_pattern" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "SYMBOL", + "name": "assignment_pattern" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_jsx_element": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "jsx_element" + }, + { + "type": "SYMBOL", + "name": "jsx_self_closing_element" + } + ] + }, + "jsx_element": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "open_tag", + "content": { + "type": "SYMBOL", + "name": "jsx_opening_element" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_jsx_child" + } + }, + { + "type": "FIELD", + "name": "close_tag", + "content": { + "type": "SYMBOL", + "name": "jsx_closing_element" + } + } + ] + }, + "html_character_reference": { + "type": "PATTERN", + "value": "&(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30});" + }, + "jsx_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "sequence_expression" + }, + { + "type": "SYMBOL", + "name": "spread_element" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_jsx_child": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "jsx_text" + }, + { + "type": "SYMBOL", + "name": "html_character_reference" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_lone_ampersand" + }, + "named": true, + "value": "jsx_text" + }, + { + "type": "SYMBOL", + "name": "_jsx_element" + }, + { + "type": "SYMBOL", + "name": "jsx_expression" + } + ] + }, + "jsx_opening_element": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_jsx_element_name" + } + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "_jsx_attribute" + } + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + } + }, + "jsx_identifier": { + "type": "PATTERN", + "value": "[a-zA-Z_$][a-zA-Z\\d_$]*-[a-zA-Z\\d_$\\-]*" + }, + "_jsx_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "jsx_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "nested_identifier": { + "type": "PREC", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "property", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + } + } + ] + } + }, + "jsx_namespace_name": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_jsx_identifier" + } + ] + }, + "_jsx_element_name": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "SYMBOL", + "name": "jsx_namespace_name" + } + ] + }, + "jsx_closing_element": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "" + } + ] + }, + "jsx_self_closing_element": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_jsx_element_name" + } + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "_jsx_attribute" + } + } + }, + { + "type": "STRING", + "value": "/>" + } + ] + }, + "_jsx_attribute": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "jsx_attribute" + }, + { + "type": "SYMBOL", + "name": "jsx_expression" + } + ] + }, + "_jsx_attribute_name": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_identifier" + }, + "named": true, + "value": "property_identifier" + }, + { + "type": "SYMBOL", + "name": "jsx_namespace_name" + } + ] + }, + "jsx_attribute": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_attribute_name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_jsx_attribute_value" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_jsx_string": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_double_jsx_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "html_character_reference" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_string_lone_ampersand" + }, + "named": true, + "value": "string_fragment" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_single_jsx_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "html_character_reference" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_string_lone_ampersand" + }, + "named": true, + "value": "string_fragment" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + } + ] + }, + "unescaped_double_jsx_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "([^\"&]|&[^#A-Za-z\"])+" + } + } + }, + "unescaped_single_jsx_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "([^'&]|&[^#A-Za-z'])+" + } + } + }, + "_jsx_lone_ampersand": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "STRING", + "value": "&" + } + } + }, + "_jsx_string_lone_ampersand": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "STRING", + "value": "&" + } + } + }, + "_jsx_attribute_value": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_string" + }, + "named": true, + "value": "string" + }, + { + "type": "SYMBOL", + "name": "jsx_expression" + }, + { + "type": "SYMBOL", + "name": "_jsx_element" + } + ] + }, + "class": { + "type": "PREC", + "value": "literal", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_heritage" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "class_body" + } + } + ] + } + }, + "class_declaration": { + "type": "PREC", + "value": "declaration", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_heritage" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "class_body" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "class_heritage": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "extends" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "function_expression": { + "type": "PREC", + "value": "literal", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + } + }, + "function_declaration": { + "type": "PREC_RIGHT", + "value": "declaration", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "generator_function": { + "type": "PREC", + "value": "literal", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + } + }, + "generator_function_declaration": { + "type": "PREC_RIGHT", + "value": "declaration", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "arrow_function": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "parameter", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + } + ] + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "statement_block" + } + ] + } + } + ] + }, + "_call_signature": { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "formal_parameters" + } + }, + "_formal_parameter": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "SYMBOL", + "name": "assignment_pattern" + } + ] + }, + "optional_chain": { + "type": "STRING", + "value": "?." + }, + "call_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": "call", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "import" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + }, + { + "type": "PREC", + "value": "template_call", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "new_expression" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "template_string" + } + } + ] + } + }, + { + "type": "PREC", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "optional_chain", + "content": { + "type": "SYMBOL", + "name": "optional_chain" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + } + ] + }, + "new_expression": { + "type": "PREC_RIGHT", + "value": "new", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "FIELD", + "name": "constructor", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "new_expression" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "arguments" + } + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "await_expression": { + "type": "PREC", + "value": "unary_void", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "await" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + "member_expression": { + "type": "PREC", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "import" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "optional_chain", + "content": { + "type": "SYMBOL", + "name": "optional_chain" + } + } + ] + }, + { + "type": "FIELD", + "name": "property", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "private_property_identifier" + }, + { + "type": "RESERVED", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + }, + "context_name": "properties" + } + ] + } + } + ] + } + }, + "subscript_expression": { + "type": "PREC_RIGHT", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "optional_chain", + "content": { + "type": "SYMBOL", + "name": "optional_chain" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "index", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "_lhs_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "member_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + }, + "assignment_expression": { + "type": "PREC_RIGHT", + "value": "assign", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "_lhs_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "_augmented_assignment_lhs": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "member_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + ] + }, + "augmented_assignment_expression": { + "type": "PREC_RIGHT", + "value": "assign", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_augmented_assignment_lhs" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": ">>>=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": "**=" + }, + { + "type": "STRING", + "value": "&&=" + }, + { + "type": "STRING", + "value": "||=" + }, + { + "type": "STRING", + "value": "??=" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "_initializer": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "_destructuring_pattern": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "object_pattern" + }, + { + "type": "SYMBOL", + "name": "array_pattern" + } + ] + }, + "spread_element": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "ternary_expression": { + "type": "PREC_RIGHT", + "value": "ternary", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_ternary_qmark" + }, + "named": false, + "value": "?" + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": "logical_and", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "logical_or", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_shift", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_shift", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_shift", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "bitwise_and", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "bitwise_xor", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "bitwise_or", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_plus", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_plus", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_times", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_times", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_times", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": "binary_exp", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "**" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_equality", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_equality", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "===" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_equality", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_equality", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "ternary", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "??" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "instanceof" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "private_property_identifier" + } + ] + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "in" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, + "unary_expression": { + "type": "PREC_LEFT", + "value": "unary_void", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "typeof" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "delete" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "update_expression": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + ] + } + }, + "sequence_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + } + }, + "string": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_double_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_single_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + } + ] + }, + "unescaped_double_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\"\\\\\\r\\n]+" + } + } + }, + "unescaped_single_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^'\\\\\\r\\n]+" + } + } + }, + "escape_sequence": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^xu0-7]" + }, + { + "type": "PATTERN", + "value": "[0-7]{1,3}" + }, + { + "type": "PATTERN", + "value": "x[0-9a-fA-F]{2}" + }, + { + "type": "PATTERN", + "value": "u[0-9a-fA-F]{4}" + }, + { + "type": "PATTERN", + "value": "u\\{[0-9a-fA-F]+\\}" + }, + { + "type": "PATTERN", + "value": "[\\r?][\\n\\u2028\\u2029]" + } + ] + } + ] + } + }, + "comment": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": "[^\\r\\n\\u2028\\u2029]*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" + } + ] + } + ] + } + }, + "template_string": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "`" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_template_chars" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "template_substitution" + } + ] + } + }, + { + "type": "STRING", + "value": "`" + } + ] + }, + "template_substitution": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "${" + }, + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "regex": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/" + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "regex_pattern" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "/" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "flags", + "content": { + "type": "SYMBOL", + "name": "regex_flags" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "regex_pattern": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "PATTERN", + "value": "." + } + ] + }, + { + "type": "PATTERN", + "value": "[^\\]\\n\\\\]" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "PATTERN", + "value": "." + } + ] + }, + { + "type": "PATTERN", + "value": "[^/\\\\\\[\\n]" + } + ] + } + } + } + }, + "regex_flags": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[a-z]+" + } + }, + "number": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "STRING", + "value": "0X" + } + ] + }, + { + "type": "PATTERN", + "value": "[\\da-fA-F](_?[\\da-fA-F])*" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "[1-9]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "e" + }, + { + "type": "STRING", + "value": "E" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "e" + }, + { + "type": "STRING", + "value": "E" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "[1-9]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "e" + }, + { + "type": "STRING", + "value": "E" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + } + ] + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "STRING", + "value": "0B" + } + ] + }, + { + "type": "PATTERN", + "value": "[0-1](_?[0-1])*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0o" + }, + { + "type": "STRING", + "value": "0O" + } + ] + }, + { + "type": "PATTERN", + "value": "[0-7](_?[0-7])*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "STRING", + "value": "0X" + } + ] + }, + { + "type": "PATTERN", + "value": "[\\da-fA-F](_?[\\da-fA-F])*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "STRING", + "value": "0B" + } + ] + }, + { + "type": "PATTERN", + "value": "[0-1](_?[0-1])*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0o" + }, + { + "type": "STRING", + "value": "0O" + } + ] + }, + { + "type": "PATTERN", + "value": "[0-7](_?[0-7])*" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + }, + { + "type": "STRING", + "value": "n" + } + ] + } + ] + } + }, + "_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "undefined" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "identifier": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[^\\x00-\\x1F\\s\\p{Zs}0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\x00-\\x1F\\s\\p{Zs}:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + } + } + ] + } + }, + "private_property_identifier": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "PATTERN", + "value": "[^\\x00-\\x1F\\s\\p{Zs}0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\x00-\\x1F\\s\\p{Zs}:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + } + } + ] + } + }, + "meta_property": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "target" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "import" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "meta" + } + ] + } + ] + }, + "this": { + "type": "STRING", + "value": "this" + }, + "super": { + "type": "STRING", + "value": "super" + }, + "true": { + "type": "STRING", + "value": "true" + }, + "false": { + "type": "STRING", + "value": "false" + }, + "null": { + "type": "STRING", + "value": "null" + }, + "undefined": { + "type": "STRING", + "value": "undefined" + }, + "arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "spread_element" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "spread_element" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "decorator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_member_expression" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + } + ] + }, + "decorator_member_expression": { + "type": "PREC", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_member_expression" + }, + "named": true, + "value": "member_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "property", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + } + } + ] + } + }, + "decorator_call_expression": { + "type": "PREC", + "value": "call", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_member_expression" + }, + "named": true, + "value": "member_expression" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + }, + "class_body": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "member", + "content": { + "type": "SYMBOL", + "name": "method_definition" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "member", + "content": { + "type": "SYMBOL", + "name": "field_definition" + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + { + "type": "FIELD", + "name": "member", + "content": { + "type": "SYMBOL", + "name": "class_static_block" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "field_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "property", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_initializer" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "formal_parameters": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_formal_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_formal_parameter" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "class_static_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + }, + "pattern": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_lhs_expression" + }, + { + "type": "SYMBOL", + "name": "rest_pattern" + } + ] + } + }, + "rest_pattern": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "SYMBOL", + "name": "_lhs_expression" + } + ] + } + }, + "method_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "PATTERN", + "value": "\\s+" + }, + { + "type": "STRING", + "value": "get" + }, + { + "type": "PATTERN", + "value": "\\s*\\n" + } + ] + } + }, + "named": false, + "value": "static get" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "get" + }, + { + "type": "STRING", + "value": "set" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "formal_parameters" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + }, + "pair": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "key", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "pair_pattern": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "key", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "SYMBOL", + "name": "assignment_pattern" + } + ] + } + } + ] + }, + "_property_name": { + "type": "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" + }, + { + "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", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_reserved_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "get" + }, + { + "type": "STRING", + "value": "set" + }, + { + "type": "STRING", + "value": "async" + }, + { + "type": "STRING", + "value": "await" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "export" + }, + { + "type": "STRING", + "value": "let" + } + ] + }, + "_semicolon": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "STRING", + "value": ";" + } + ] + } + }, + "extras": [ + { + "type": "SYMBOL", + "name": "comment" + }, + { + "type": "SYMBOL", + "name": "html_comment" + }, + { + "type": "PATTERN", + "value": "[\\s\\p{Zs}\\uFEFF\\u2028\\u2029\\u2060\\u200B]" + } + ], + "conflicts": [ + [ + "primary_expression", + "_property_name" + ], + [ + "primary_expression", + "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" + ], + [ + "primary_expression", + "_for_header" + ], + [ + "variable_declarator", + "_for_header" + ], + [ + "array", + "array_pattern" + ], + [ + "object", + "object_pattern" + ], + [ + "assignment_expression", + "pattern" + ], + [ + "assignment_expression", + "object_assignment_pattern" + ], + [ + "labeled_statement", + "_property_name" + ], + [ + "computed_property_name", + "array" + ], + [ + "binary_expression", + "_initializer" + ], + [ + "class_static_block", + "_property_name" + ] + ], + "precedences": [ + [ + { + "type": "STRING", + "value": "member" + }, + { + "type": "STRING", + "value": "template_call" + }, + { + "type": "STRING", + "value": "call" + }, + { + "type": "SYMBOL", + "name": "update_expression" + }, + { + "type": "STRING", + "value": "unary_void" + }, + { + "type": "STRING", + "value": "binary_exp" + }, + { + "type": "STRING", + "value": "binary_times" + }, + { + "type": "STRING", + "value": "binary_plus" + }, + { + "type": "STRING", + "value": "binary_shift" + }, + { + "type": "STRING", + "value": "binary_compare" + }, + { + "type": "STRING", + "value": "binary_relation" + }, + { + "type": "STRING", + "value": "binary_equality" + }, + { + "type": "STRING", + "value": "bitwise_and" + }, + { + "type": "STRING", + "value": "bitwise_xor" + }, + { + "type": "STRING", + "value": "bitwise_or" + }, + { + "type": "STRING", + "value": "logical_and" + }, + { + "type": "STRING", + "value": "logical_or" + }, + { + "type": "STRING", + "value": "ternary" + }, + { + "type": "SYMBOL", + "name": "sequence_expression" + }, + { + "type": "SYMBOL", + "name": "arrow_function" + } + ], + [ + { + "type": "STRING", + "value": "assign" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "STRING", + "value": "member" + }, + { + "type": "STRING", + "value": "template_call" + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "call" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ], + [ + { + "type": "STRING", + "value": "declaration" + }, + { + "type": "STRING", + "value": "literal" + } + ], + [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "statement_block" + }, + { + "type": "STRING", + "value": "object" + } + ], + [ + { + "type": "SYMBOL", + "name": "meta_property" + }, + { + "type": "SYMBOL", + "name": "import" + } + ], + [ + { + "type": "SYMBOL", + "name": "import_statement" + }, + { + "type": "SYMBOL", + "name": "import" + } + ], + [ + { + "type": "SYMBOL", + "name": "export_statement" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "lexical_declaration" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ] + ], + "externals": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "SYMBOL", + "name": "_template_chars" + }, + { + "type": "SYMBOL", + "name": "_ternary_qmark" + }, + { + "type": "SYMBOL", + "name": "html_comment" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "regex_pattern" + }, + { + "type": "SYMBOL", + "name": "jsx_text" + } + ], + "inline": [ + "_call_signature", + "_formal_parameter", + "_expressions", + "_semicolon", + "_identifier", + "_reserved_identifier", + "_jsx_attribute", + "_jsx_element_name", + "_jsx_child", + "_jsx_element", + "_jsx_attribute_name", + "_jsx_attribute_value", + "_jsx_identifier", + "_lhs_expression" + ], + "supertypes": [ + "statement", + "declaration", + "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/tools/tree-sitter-javascript/src/node-types.json b/tools/tree-sitter-javascript/src/node-types.json new file mode 100644 index 000000000..a19206287 --- /dev/null +++ b/tools/tree-sitter-javascript/src/node-types.json @@ -0,0 +1,3624 @@ +[ + { + "type": "declaration", + "named": true, + "subtypes": [ + { + "type": "class_declaration", + "named": true + }, + { + "type": "function_declaration", + "named": true + }, + { + "type": "generator_function_declaration", + "named": true + }, + { + "type": "lexical_declaration", + "named": true + }, + { + "type": "using_declaration", + "named": true + }, + { + "type": "variable_declaration", + "named": true + } + ] + }, + { + "type": "expression", + "named": true, + "subtypes": [ + { + "type": "assignment_expression", + "named": true + }, + { + "type": "augmented_assignment_expression", + "named": true + }, + { + "type": "await_expression", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "jsx_element", + "named": true + }, + { + "type": "jsx_self_closing_element", + "named": true + }, + { + "type": "new_expression", + "named": true + }, + { + "type": "primary_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "update_expression", + "named": true + }, + { + "type": "yield_expression", + "named": true + } + ] + }, + { + "type": "pattern", + "named": true, + "subtypes": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "object_pattern", + "named": true + }, + { + "type": "rest_pattern", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + }, + { + "type": "primary_expression", + "named": true, + "subtypes": [ + { + "type": "array", + "named": true + }, + { + "type": "arrow_function", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "class", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "function_expression", + "named": true + }, + { + "type": "generator_function", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "meta_property", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "regex", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "super", + "named": true + }, + { + "type": "template_string", + "named": true + }, + { + "type": "this", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + }, + { + "type": "statement", + "named": true, + "subtypes": [ + { + "type": "break_statement", + "named": true + }, + { + "type": "continue_statement", + "named": true + }, + { + "type": "debugger_statement", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_statement", + "named": true + }, + { + "type": "empty_statement", + "named": true + }, + { + "type": "export_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_in_statement", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "import_statement", + "named": true + }, + { + "type": "labeled_statement", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "statement_block", + "named": true + }, + { + "type": "switch_statement", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "while_statement", + "named": true + }, + { + "type": "with_statement", + "named": true + } + ] + }, + { + "type": "arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "spread_element", + "named": true + } + ] + } + }, + { + "type": "array", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "spread_element", + "named": true + } + ] + } + }, + { + "type": "array_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "assignment_pattern", + "named": true + }, + { + "type": "pattern", + "named": true + } + ] + } + }, + { + "type": "arrow_function", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "statement_block", + "named": true + } + ] + }, + "parameter": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + } + } + }, + { + "type": "assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "object_pattern", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "assignment_pattern", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "pattern", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "augmented_assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "%=", + "named": false + }, + { + "type": "&&=", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "**=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": ">>>=", + "named": false + }, + { + "type": "??=", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||=", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "await_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "binary_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!=", + "named": false + }, + { + "type": "!==", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": "===", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>>", + "named": false + }, + { + "type": "??", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "instanceof", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "break_statement", + "named": true, + "fields": { + "label": { + "multiple": false, + "required": false, + "types": [ + { + "type": "statement_identifier", + "named": true + } + ] + } + } + }, + { + "type": "call_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + }, + { + "type": "template_string", + "named": true + } + ] + }, + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "import", + "named": true + } + ] + }, + "optional_chain": { + "multiple": false, + "required": false, + "types": [ + { + "type": "optional_chain", + "named": true + } + ] + } + } + }, + { + "type": "catch_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "parameter": { + "multiple": false, + "required": false, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "object_pattern", + "named": true + } + ] + } + } + }, + { + "type": "class", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "class_body", + "named": true + } + ] + }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "class_heritage", + "named": true + } + ] + } + }, + { + "type": "class_body", + "named": true, + "fields": { + "member": { + "multiple": true, + "required": false, + "types": [ + { + "type": "class_static_block", + "named": true + }, + { + "type": "field_definition", + "named": true + }, + { + "type": "method_definition", + "named": true + } + ] + } + } + }, + { + "type": "class_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "class_body", + "named": true + } + ] + }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "class_heritage", + "named": true + } + ] + } + }, + { + "type": "class_heritage", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "class_static_block", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + } + } + }, + { + "type": "computed_property_name", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "continue_statement", + "named": true, + "fields": { + "label": { + "multiple": false, + "required": false, + "types": [ + { + "type": "statement_identifier", + "named": true + } + ] + } + } + }, + { + "type": "debugger_statement", + "named": true, + "fields": {} + }, + { + "type": "decorator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + } + }, + { + "type": "do_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "else_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + }, + { + "type": "empty_statement", + "named": true, + "fields": {} + }, + { + "type": "export_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "export_specifier", + "named": true + } + ] + } + }, + { + "type": "export_specifier", + "named": true, + "fields": { + "alias": { + "multiple": false, + "required": false, + "types": [ + { + "type": "default", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "default", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + } + }, + { + "type": "export_statement", + "named": true, + "fields": { + "declaration": { + "multiple": false, + "required": false, + "types": [ + { + "type": "declaration", + "named": true + } + ] + }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "source": { + "multiple": false, + "required": false, + "types": [ + { + "type": "string", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "export_clause", + "named": true + }, + { + "type": "namespace_export", + "named": true + } + ] + } + }, + { + "type": "expression_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "field_definition", + "named": true, + "fields": { + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "property": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "finally_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + } + } + }, + { + "type": "for_in_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "kind": { + "multiple": true, + "required": false, + "types": [ + { + "type": "await", + "named": false + }, + { + "type": "const", + "named": false + }, + { + "type": "let", + "named": false + }, + { + "type": "using", + "named": false + }, + { + "type": "var", + "named": false + } + ] + }, + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "object_pattern", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "in", + "named": false + }, + { + "type": "of", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "for_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "condition": { + "multiple": true, + "required": true, + "types": [ + { + "type": ";", + "named": false + }, + { + "type": "empty_statement", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + }, + "increment": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + }, + "initializer": { + "multiple": false, + "required": true, + "types": [ + { + "type": "empty_statement", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "lexical_declaration", + "named": true + }, + { + "type": "sequence_expression", + "named": true + }, + { + "type": "variable_declaration", + "named": true + } + ] + } + } + }, + { + "type": "formal_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "assignment_pattern", + "named": true + }, + { + "type": "pattern", + "named": true + } + ] + } + }, + { + "type": "function_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + } + } + }, + { + "type": "function_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + } + } + }, + { + "type": "generator_function", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + } + } + }, + { + "type": "generator_function_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + } + } + }, + { + "type": "if_statement", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "else_clause", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + } + }, + { + "type": "import", + "named": true, + "fields": {} + }, + { + "type": "import_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "object", + "named": true + } + ] + } + }, + { + "type": "import_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "named_imports", + "named": true + }, + { + "type": "namespace_import", + "named": true + } + ] + } + }, + { + "type": "import_specifier", + "named": true, + "fields": { + "alias": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "default", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + } + }, + { + "type": "import_statement", + "named": true, + "fields": { + "source": { + "multiple": false, + "required": true, + "types": [ + { + "type": "string", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "import_attribute", + "named": true + }, + { + "type": "import_clause", + "named": true + } + ] + } + }, + { + "type": "jsx_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "jsx_element", + "named": true + }, + { + "type": "jsx_expression", + "named": true + }, + { + "type": "jsx_namespace_name", + "named": true + }, + { + "type": "jsx_self_closing_element", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + }, + { + "type": "jsx_closing_element", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "jsx_namespace_name", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + } + } + }, + { + "type": "jsx_element", + "named": true, + "fields": { + "close_tag": { + "multiple": false, + "required": true, + "types": [ + { + "type": "jsx_closing_element", + "named": true + } + ] + }, + "open_tag": { + "multiple": false, + "required": true, + "types": [ + { + "type": "jsx_opening_element", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "html_character_reference", + "named": true + }, + { + "type": "jsx_element", + "named": true + }, + { + "type": "jsx_expression", + "named": true + }, + { + "type": "jsx_self_closing_element", + "named": true + }, + { + "type": "jsx_text", + "named": true + } + ] + } + }, + { + "type": "jsx_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + }, + { + "type": "spread_element", + "named": true + } + ] + } + }, + { + "type": "jsx_namespace_name", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "jsx_opening_element", + "named": true, + "fields": { + "attribute": { + "multiple": true, + "required": false, + "types": [ + { + "type": "jsx_attribute", + "named": true + }, + { + "type": "jsx_expression", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "jsx_namespace_name", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + } + } + }, + { + "type": "jsx_self_closing_element", + "named": true, + "fields": { + "attribute": { + "multiple": true, + "required": false, + "types": [ + { + "type": "jsx_attribute", + "named": true + }, + { + "type": "jsx_expression", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "jsx_namespace_name", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + } + } + }, + { + "type": "jsx_text", + "named": true, + "fields": {} + }, + { + "type": "labeled_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "label": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_identifier", + "named": true + } + ] + } + } + }, + { + "type": "lexical_declaration", + "named": true, + "fields": { + "kind": { + "multiple": false, + "required": true, + "types": [ + { + "type": "const", + "named": false + }, + { + "type": "let", + "named": false + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "variable_declarator", + "named": true + } + ] + } + }, + { + "type": "member_expression", + "named": true, + "fields": { + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "import", + "named": true + } + ] + }, + "optional_chain": { + "multiple": false, + "required": false, + "types": [ + { + "type": "optional_chain", + "named": true + } + ] + }, + "property": { + "multiple": false, + "required": true, + "types": [ + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + } + ] + } + } + }, + { + "type": "meta_property", + "named": true, + "fields": {} + }, + { + "type": "method_definition", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + } + } + }, + { + "type": "named_imports", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "import_specifier", + "named": true + } + ] + } + }, + { + "type": "namespace_export", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + }, + { + "type": "namespace_import", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "new_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "arguments", + "named": true + } + ] + }, + "constructor": { + "multiple": false, + "required": true, + "types": [ + { + "type": "new_expression", + "named": true + }, + { + "type": "primary_expression", + "named": true + } + ] + } + } + }, + { + "type": "object", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "method_definition", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "shorthand_property_identifier", + "named": true + }, + { + "type": "spread_element", + "named": true + } + ] + } + }, + { + "type": "object_assignment_pattern", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "object_pattern", + "named": true + }, + { + "type": "shorthand_property_identifier_pattern", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "object_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "object_assignment_pattern", + "named": true + }, + { + "type": "pair_pattern", + "named": true + }, + { + "type": "rest_pattern", + "named": true + }, + { + "type": "shorthand_property_identifier_pattern", + "named": true + } + ] + } + }, + { + "type": "pair", + "named": true, + "fields": { + "key": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "pair_pattern", + "named": true, + "fields": { + "key": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "assignment_pattern", + "named": true + }, + { + "type": "pattern", + "named": true + } + ] + } + } + }, + { + "type": "parenthesized_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "program", + "named": true, + "root": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "hash_bang_line", + "named": true + }, + { + "type": "statement", + "named": true + } + ] + } + }, + { + "type": "regex", + "named": true, + "fields": { + "flags": { + "multiple": false, + "required": false, + "types": [ + { + "type": "regex_flags", + "named": true + } + ] + }, + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "regex_pattern", + "named": true + } + ] + } + } + }, + { + "type": "rest_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "object_pattern", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + } + }, + { + "type": "return_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "sequence_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "spread_element", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "statement_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + }, + { + "type": "string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "html_character_reference", + "named": true + }, + { + "type": "string_fragment", + "named": true + } + ] + } + }, + { + "type": "string_fragment", + "named": true, + "fields": {} + }, + { + "type": "subscript_expression", + "named": true, + "fields": { + "index": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + }, + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "optional_chain": { + "multiple": false, + "required": false, + "types": [ + { + "type": "optional_chain", + "named": true + } + ] + } + } + }, + { + "type": "switch_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "switch_case", + "named": true + }, + { + "type": "switch_default", + "named": true + } + ] + } + }, + { + "type": "switch_case", + "named": true, + "fields": { + "body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + } + }, + { + "type": "switch_default", + "named": true, + "fields": { + "body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + } + }, + { + "type": "switch_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "switch_body", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "template_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "string_fragment", + "named": true + }, + { + "type": "template_substitution", + "named": true + } + ] + } + }, + { + "type": "template_substitution", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "ternary_expression", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "throw_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "try_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "finalizer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "finally_clause", + "named": true + } + ] + }, + "handler": { + "multiple": false, + "required": false, + "types": [ + { + "type": "catch_clause", + "named": true + } + ] + } + } + }, + { + "type": "unary_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "delete", + "named": false + }, + { + "type": "typeof", + "named": false + }, + { + "type": "void", + "named": false + }, + { + "type": "~", + "named": false + } + ] + } + } + }, + { + "type": "update_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "++", + "named": false + }, + { + "type": "--", + "named": false + } + ] + } + } + }, + { + "type": "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, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "variable_declarator", + "named": true + } + ] + } + }, + { + "type": "variable_declarator", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "object_pattern", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "while_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "with_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "yield_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "!==", + "named": false + }, + { + "type": "\"", + "named": false + }, + { + "type": "${", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "&&=", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "**=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "++", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "--", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "...", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": "/>", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": ">>>", + "named": false + }, + { + "type": ">>>=", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "??", + "named": false + }, + { + "type": "??=", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "`", + "named": false + }, + { + "type": "as", + "named": false + }, + { + "type": "async", + "named": false + }, + { + "type": "await", + "named": false + }, + { + "type": "break", + "named": false + }, + { + "type": "case", + "named": false + }, + { + "type": "catch", + "named": false + }, + { + "type": "class", + "named": false + }, + { + "type": "comment", + "named": true, + "extra": true + }, + { + "type": "const", + "named": false + }, + { + "type": "continue", + "named": false + }, + { + "type": "debugger", + "named": false + }, + { + "type": "default", + "named": false + }, + { + "type": "delete", + "named": false + }, + { + "type": "do", + "named": false + }, + { + "type": "else", + "named": false + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "export", + "named": false + }, + { + "type": "extends", + "named": false + }, + { + "type": "false", + "named": true + }, + { + "type": "finally", + "named": false + }, + { + "type": "for", + "named": false + }, + { + "type": "from", + "named": false + }, + { + "type": "function", + "named": false + }, + { + "type": "get", + "named": false + }, + { + "type": "hash_bang_line", + "named": true + }, + { + "type": "html_character_reference", + "named": true + }, + { + "type": "html_comment", + "named": true, + "extra": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "import", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "instanceof", + "named": false + }, + { + "type": "let", + "named": false + }, + { + "type": "meta", + "named": false + }, + { + "type": "new", + "named": false + }, + { + "type": "null", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "of", + "named": false + }, + { + "type": "optional_chain", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "regex_flags", + "named": true + }, + { + "type": "regex_pattern", + "named": true + }, + { + "type": "return", + "named": false + }, + { + "type": "set", + "named": false + }, + { + "type": "shorthand_property_identifier", + "named": true + }, + { + "type": "shorthand_property_identifier_pattern", + "named": true + }, + { + "type": "statement_identifier", + "named": true + }, + { + "type": "static", + "named": false + }, + { + "type": "static get", + "named": false + }, + { + "type": "super", + "named": true + }, + { + "type": "switch", + "named": false + }, + { + "type": "target", + "named": false + }, + { + "type": "this", + "named": true + }, + { + "type": "throw", + "named": false + }, + { + "type": "true", + "named": true + }, + { + "type": "try", + "named": false + }, + { + "type": "typeof", + "named": false + }, + { + "type": "undefined", + "named": true + }, + { + "type": "using", + "named": false + }, + { + "type": "var", + "named": false + }, + { + "type": "void", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "with", + "named": false + }, + { + "type": "yield", + "named": false + }, + { + "type": "{", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||", + "named": false + }, + { + "type": "||=", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "~", + "named": false + } +] \ No newline at end of file diff --git a/tools/tree-sitter-javascript/src/parser.c b/tools/tree-sitter-javascript/src/parser.c new file mode 100644 index 000000000..e65556d04 --- /dev/null +++ b/tools/tree-sitter-javascript/src/parser.c @@ -0,0 +1,94440 @@ +/* Automatically @generated by tree-sitter v0.25.10 */ + +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 1873 +#define LARGE_STATE_COUNT 387 +#define SYMBOL_COUNT 265 +#define ALIAS_COUNT 4 +#define TOKEN_COUNT 136 +#define EXTERNAL_TOKEN_COUNT 8 +#define FIELD_COUNT 36 +#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define MAX_RESERVED_WORD_SET_SIZE 35 +#define PRODUCTION_ID_COUNT 121 +#define SUPERTYPE_COUNT 5 + +enum ts_symbol_identifiers { + sym_identifier = 1, + sym_hash_bang_line = 2, + anon_sym_export = 3, + anon_sym_STAR = 4, + anon_sym_default = 5, + anon_sym_as = 6, + anon_sym_LBRACE = 7, + anon_sym_COMMA = 8, + anon_sym_RBRACE = 9, + anon_sym_import = 10, + anon_sym_from = 11, + anon_sym_with = 12, + anon_sym_var = 13, + anon_sym_let = 14, + anon_sym_const = 15, + 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_AMP = 54, + anon_sym_AMP2 = 55, + anon_sym_class = 56, + anon_sym_extends = 57, + anon_sym_async = 58, + anon_sym_function = 59, + anon_sym_EQ_GT = 60, + sym_optional_chain = 61, + anon_sym_new = 62, + anon_sym_PLUS_EQ = 63, + anon_sym_DASH_EQ = 64, + anon_sym_STAR_EQ = 65, + anon_sym_SLASH_EQ = 66, + anon_sym_PERCENT_EQ = 67, + anon_sym_CARET_EQ = 68, + anon_sym_AMP_EQ = 69, + anon_sym_PIPE_EQ = 70, + anon_sym_GT_GT_EQ = 71, + anon_sym_GT_GT_GT_EQ = 72, + anon_sym_LT_LT_EQ = 73, + anon_sym_STAR_STAR_EQ = 74, + anon_sym_AMP_AMP_EQ = 75, + anon_sym_PIPE_PIPE_EQ = 76, + anon_sym_QMARK_QMARK_EQ = 77, + anon_sym_DOT_DOT_DOT = 78, + anon_sym_AMP_AMP = 79, + anon_sym_PIPE_PIPE = 80, + anon_sym_GT_GT = 81, + anon_sym_GT_GT_GT = 82, + anon_sym_LT_LT = 83, + anon_sym_AMP3 = 84, + anon_sym_CARET = 85, + anon_sym_PIPE = 86, + anon_sym_PLUS = 87, + anon_sym_DASH = 88, + anon_sym_SLASH = 89, + anon_sym_PERCENT = 90, + anon_sym_STAR_STAR = 91, + anon_sym_LT_EQ = 92, + anon_sym_EQ_EQ = 93, + anon_sym_EQ_EQ_EQ = 94, + anon_sym_BANG_EQ = 95, + anon_sym_BANG_EQ_EQ = 96, + anon_sym_GT_EQ = 97, + anon_sym_QMARK_QMARK = 98, + anon_sym_instanceof = 99, + anon_sym_BANG = 100, + anon_sym_TILDE = 101, + anon_sym_typeof = 102, + anon_sym_void = 103, + anon_sym_delete = 104, + anon_sym_PLUS_PLUS = 105, + anon_sym_DASH_DASH = 106, + sym_unescaped_double_string_fragment = 107, + sym_unescaped_single_string_fragment = 108, + sym_escape_sequence = 109, + sym_comment = 110, + anon_sym_BQUOTE = 111, + anon_sym_DOLLAR_LBRACE = 112, + anon_sym_SLASH2 = 113, + sym_regex_pattern = 114, + sym_regex_flags = 115, + sym_number = 116, + sym_private_property_identifier = 117, + anon_sym_target = 118, + anon_sym_meta = 119, + sym_this = 120, + sym_super = 121, + sym_true = 122, + sym_false = 123, + sym_null = 124, + sym_undefined = 125, + anon_sym_AT = 126, + anon_sym_static = 127, + aux_sym_method_definition_token1 = 128, + anon_sym_get = 129, + anon_sym_set = 130, + sym__automatic_semicolon = 131, + sym__template_chars = 132, + sym__ternary_qmark = 133, + sym_html_comment = 134, + sym_jsx_text = 135, + sym_program = 136, + sym_export_statement = 137, + sym_namespace_export = 138, + sym_export_clause = 139, + sym_export_specifier = 140, + sym__module_export_name = 141, + sym_declaration = 142, + sym_import = 143, + sym_import_statement = 144, + sym_import_clause = 145, + sym__from_clause = 146, + sym_namespace_import = 147, + sym_named_imports = 148, + sym_import_specifier = 149, + sym_import_attribute = 150, + sym_statement = 151, + sym_expression_statement = 152, + sym_variable_declaration = 153, + sym_lexical_declaration = 154, + sym_using_declaration = 155, + sym_variable_declarator = 156, + sym_statement_block = 157, + sym_else_clause = 158, + sym_if_statement = 159, + sym_switch_statement = 160, + sym_for_statement = 161, + sym_for_in_statement = 162, + sym__for_header = 163, + sym_while_statement = 164, + sym_do_statement = 165, + sym_try_statement = 166, + sym_with_statement = 167, + sym_break_statement = 168, + sym_continue_statement = 169, + sym_debugger_statement = 170, + sym_return_statement = 171, + sym_throw_statement = 172, + sym_empty_statement = 173, + sym_labeled_statement = 174, + sym_switch_body = 175, + sym_switch_case = 176, + sym_switch_default = 177, + sym_catch_clause = 178, + sym_finally_clause = 179, + sym_parenthesized_expression = 180, + sym_expression = 181, + sym_primary_expression = 182, + sym_yield_expression = 183, + sym_object = 184, + sym_object_pattern = 185, + sym_assignment_pattern = 186, + sym_object_assignment_pattern = 187, + sym_array = 188, + sym_array_pattern = 189, + sym_jsx_element = 190, + sym_jsx_expression = 191, + sym_jsx_opening_element = 192, + sym_nested_identifier = 193, + sym_jsx_namespace_name = 194, + sym_jsx_closing_element = 195, + sym_jsx_self_closing_element = 196, + sym_jsx_attribute = 197, + sym__jsx_string = 198, + sym__jsx_lone_ampersand = 199, + sym__jsx_string_lone_ampersand = 200, + sym_class = 201, + sym_class_declaration = 202, + sym_class_heritage = 203, + sym_function_expression = 204, + sym_function_declaration = 205, + sym_generator_function = 206, + sym_generator_function_declaration = 207, + sym_arrow_function = 208, + sym_call_expression = 209, + sym_new_expression = 210, + sym_await_expression = 211, + sym_member_expression = 212, + sym_subscript_expression = 213, + sym_assignment_expression = 214, + sym__augmented_assignment_lhs = 215, + sym_augmented_assignment_expression = 216, + sym__initializer = 217, + sym__destructuring_pattern = 218, + sym_spread_element = 219, + sym_ternary_expression = 220, + sym_binary_expression = 221, + sym_unary_expression = 222, + sym_update_expression = 223, + sym_sequence_expression = 224, + sym_string = 225, + sym_template_string = 226, + sym_template_substitution = 227, + sym_regex = 228, + sym_meta_property = 229, + sym_arguments = 230, + sym_decorator = 231, + sym_decorator_member_expression = 232, + sym_decorator_call_expression = 233, + sym_class_body = 234, + sym_field_definition = 235, + sym_formal_parameters = 236, + sym_class_static_block = 237, + sym_pattern = 238, + sym_rest_pattern = 239, + sym_method_definition = 240, + sym_pair = 241, + sym_pair_pattern = 242, + sym__property_name = 243, + sym_computed_property_name = 244, + aux_sym_program_repeat1 = 245, + aux_sym_export_statement_repeat1 = 246, + aux_sym_export_clause_repeat1 = 247, + aux_sym_named_imports_repeat1 = 248, + aux_sym_variable_declaration_repeat1 = 249, + aux_sym_switch_body_repeat1 = 250, + aux_sym_object_repeat1 = 251, + aux_sym_object_pattern_repeat1 = 252, + aux_sym_array_repeat1 = 253, + aux_sym_array_pattern_repeat1 = 254, + aux_sym_jsx_element_repeat1 = 255, + aux_sym_jsx_opening_element_repeat1 = 256, + aux_sym__jsx_string_repeat1 = 257, + aux_sym__jsx_string_repeat2 = 258, + aux_sym_sequence_expression_repeat1 = 259, + aux_sym_string_repeat1 = 260, + aux_sym_string_repeat2 = 261, + aux_sym_template_string_repeat1 = 262, + aux_sym_class_body_repeat1 = 263, + aux_sym_formal_parameters_repeat1 = 264, + alias_sym_property_identifier = 265, + alias_sym_shorthand_property_identifier = 266, + alias_sym_shorthand_property_identifier_pattern = 267, + alias_sym_statement_identifier = 268, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [sym_hash_bang_line] = "hash_bang_line", + [anon_sym_export] = "export", + [anon_sym_STAR] = "*", + [anon_sym_default] = "default", + [anon_sym_as] = "as", + [anon_sym_LBRACE] = "{", + [anon_sym_COMMA] = ",", + [anon_sym_RBRACE] = "}", + [anon_sym_import] = "import", + [anon_sym_from] = "from", + [anon_sym_with] = "with", + [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", + [anon_sym_for] = "for", + [anon_sym_LPAREN] = "(", + [anon_sym_SEMI] = ";", + [anon_sym_RPAREN] = ")", + [anon_sym_in] = "in", + [anon_sym_while] = "while", + [anon_sym_do] = "do", + [anon_sym_try] = "try", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", + [anon_sym_debugger] = "debugger", + [anon_sym_return] = "return", + [anon_sym_throw] = "throw", + [anon_sym_COLON] = ":", + [anon_sym_case] = "case", + [anon_sym_catch] = "catch", + [anon_sym_finally] = "finally", + [anon_sym_yield] = "yield", + [anon_sym_EQ] = "=", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [sym_html_character_reference] = "html_character_reference", + [anon_sym_LT] = "<", + [anon_sym_GT] = ">", + [sym_jsx_identifier] = "identifier", + [anon_sym_DOT] = ".", + [anon_sym_LT_SLASH] = "", + [anon_sym_DQUOTE] = "\"", + [anon_sym_SQUOTE] = "'", + [sym_unescaped_double_jsx_string_fragment] = "string_fragment", + [sym_unescaped_single_jsx_string_fragment] = "string_fragment", + [anon_sym_AMP] = "&", + [anon_sym_AMP2] = "&", + [anon_sym_class] = "class", + [anon_sym_extends] = "extends", + [anon_sym_async] = "async", + [anon_sym_function] = "function", + [anon_sym_EQ_GT] = "=>", + [sym_optional_chain] = "optional_chain", + [anon_sym_new] = "new", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_GT_GT_GT_EQ] = ">>>=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_STAR_STAR_EQ] = "**=", + [anon_sym_AMP_AMP_EQ] = "&&=", + [anon_sym_PIPE_PIPE_EQ] = "||=", + [anon_sym_QMARK_QMARK_EQ] = "\?\?=", + [anon_sym_DOT_DOT_DOT] = "...", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_PIPE_PIPE] = "||", + [anon_sym_GT_GT] = ">>", + [anon_sym_GT_GT_GT] = ">>>", + [anon_sym_LT_LT] = "<<", + [anon_sym_AMP3] = "&", + [anon_sym_CARET] = "^", + [anon_sym_PIPE] = "|", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [anon_sym_STAR_STAR] = "**", + [anon_sym_LT_EQ] = "<=", + [anon_sym_EQ_EQ] = "==", + [anon_sym_EQ_EQ_EQ] = "===", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_BANG_EQ_EQ] = "!==", + [anon_sym_GT_EQ] = ">=", + [anon_sym_QMARK_QMARK] = "\?\?", + [anon_sym_instanceof] = "instanceof", + [anon_sym_BANG] = "!", + [anon_sym_TILDE] = "~", + [anon_sym_typeof] = "typeof", + [anon_sym_void] = "void", + [anon_sym_delete] = "delete", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_DASH_DASH] = "--", + [sym_unescaped_double_string_fragment] = "string_fragment", + [sym_unescaped_single_string_fragment] = "string_fragment", + [sym_escape_sequence] = "escape_sequence", + [sym_comment] = "comment", + [anon_sym_BQUOTE] = "`", + [anon_sym_DOLLAR_LBRACE] = "${", + [anon_sym_SLASH2] = "/", + [sym_regex_pattern] = "regex_pattern", + [sym_regex_flags] = "regex_flags", + [sym_number] = "number", + [sym_private_property_identifier] = "private_property_identifier", + [anon_sym_target] = "target", + [anon_sym_meta] = "meta", + [sym_this] = "this", + [sym_super] = "super", + [sym_true] = "true", + [sym_false] = "false", + [sym_null] = "null", + [sym_undefined] = "undefined", + [anon_sym_AT] = "@", + [anon_sym_static] = "static", + [aux_sym_method_definition_token1] = "static get", + [anon_sym_get] = "get", + [anon_sym_set] = "set", + [sym__automatic_semicolon] = "_automatic_semicolon", + [sym__template_chars] = "string_fragment", + [sym__ternary_qmark] = "\?", + [sym_html_comment] = "html_comment", + [sym_jsx_text] = "jsx_text", + [sym_program] = "program", + [sym_export_statement] = "export_statement", + [sym_namespace_export] = "namespace_export", + [sym_export_clause] = "export_clause", + [sym_export_specifier] = "export_specifier", + [sym__module_export_name] = "_module_export_name", + [sym_declaration] = "declaration", + [sym_import] = "import", + [sym_import_statement] = "import_statement", + [sym_import_clause] = "import_clause", + [sym__from_clause] = "_from_clause", + [sym_namespace_import] = "namespace_import", + [sym_named_imports] = "named_imports", + [sym_import_specifier] = "import_specifier", + [sym_import_attribute] = "import_attribute", + [sym_statement] = "statement", + [sym_expression_statement] = "expression_statement", + [sym_variable_declaration] = "variable_declaration", + [sym_lexical_declaration] = "lexical_declaration", + [sym_using_declaration] = "using_declaration", + [sym_variable_declarator] = "variable_declarator", + [sym_statement_block] = "statement_block", + [sym_else_clause] = "else_clause", + [sym_if_statement] = "if_statement", + [sym_switch_statement] = "switch_statement", + [sym_for_statement] = "for_statement", + [sym_for_in_statement] = "for_in_statement", + [sym__for_header] = "_for_header", + [sym_while_statement] = "while_statement", + [sym_do_statement] = "do_statement", + [sym_try_statement] = "try_statement", + [sym_with_statement] = "with_statement", + [sym_break_statement] = "break_statement", + [sym_continue_statement] = "continue_statement", + [sym_debugger_statement] = "debugger_statement", + [sym_return_statement] = "return_statement", + [sym_throw_statement] = "throw_statement", + [sym_empty_statement] = "empty_statement", + [sym_labeled_statement] = "labeled_statement", + [sym_switch_body] = "switch_body", + [sym_switch_case] = "switch_case", + [sym_switch_default] = "switch_default", + [sym_catch_clause] = "catch_clause", + [sym_finally_clause] = "finally_clause", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym_expression] = "expression", + [sym_primary_expression] = "primary_expression", + [sym_yield_expression] = "yield_expression", + [sym_object] = "object", + [sym_object_pattern] = "object_pattern", + [sym_assignment_pattern] = "assignment_pattern", + [sym_object_assignment_pattern] = "object_assignment_pattern", + [sym_array] = "array", + [sym_array_pattern] = "array_pattern", + [sym_jsx_element] = "jsx_element", + [sym_jsx_expression] = "jsx_expression", + [sym_jsx_opening_element] = "jsx_opening_element", + [sym_nested_identifier] = "member_expression", + [sym_jsx_namespace_name] = "jsx_namespace_name", + [sym_jsx_closing_element] = "jsx_closing_element", + [sym_jsx_self_closing_element] = "jsx_self_closing_element", + [sym_jsx_attribute] = "jsx_attribute", + [sym__jsx_string] = "string", + [sym__jsx_lone_ampersand] = "jsx_text", + [sym__jsx_string_lone_ampersand] = "string_fragment", + [sym_class] = "class", + [sym_class_declaration] = "class_declaration", + [sym_class_heritage] = "class_heritage", + [sym_function_expression] = "function_expression", + [sym_function_declaration] = "function_declaration", + [sym_generator_function] = "generator_function", + [sym_generator_function_declaration] = "generator_function_declaration", + [sym_arrow_function] = "arrow_function", + [sym_call_expression] = "call_expression", + [sym_new_expression] = "new_expression", + [sym_await_expression] = "await_expression", + [sym_member_expression] = "member_expression", + [sym_subscript_expression] = "subscript_expression", + [sym_assignment_expression] = "assignment_expression", + [sym__augmented_assignment_lhs] = "_augmented_assignment_lhs", + [sym_augmented_assignment_expression] = "augmented_assignment_expression", + [sym__initializer] = "_initializer", + [sym__destructuring_pattern] = "_destructuring_pattern", + [sym_spread_element] = "spread_element", + [sym_ternary_expression] = "ternary_expression", + [sym_binary_expression] = "binary_expression", + [sym_unary_expression] = "unary_expression", + [sym_update_expression] = "update_expression", + [sym_sequence_expression] = "sequence_expression", + [sym_string] = "string", + [sym_template_string] = "template_string", + [sym_template_substitution] = "template_substitution", + [sym_regex] = "regex", + [sym_meta_property] = "meta_property", + [sym_arguments] = "arguments", + [sym_decorator] = "decorator", + [sym_decorator_member_expression] = "member_expression", + [sym_decorator_call_expression] = "call_expression", + [sym_class_body] = "class_body", + [sym_field_definition] = "field_definition", + [sym_formal_parameters] = "formal_parameters", + [sym_class_static_block] = "class_static_block", + [sym_pattern] = "pattern", + [sym_rest_pattern] = "rest_pattern", + [sym_method_definition] = "method_definition", + [sym_pair] = "pair", + [sym_pair_pattern] = "pair_pattern", + [sym__property_name] = "_property_name", + [sym_computed_property_name] = "computed_property_name", + [aux_sym_program_repeat1] = "program_repeat1", + [aux_sym_export_statement_repeat1] = "export_statement_repeat1", + [aux_sym_export_clause_repeat1] = "export_clause_repeat1", + [aux_sym_named_imports_repeat1] = "named_imports_repeat1", + [aux_sym_variable_declaration_repeat1] = "variable_declaration_repeat1", + [aux_sym_switch_body_repeat1] = "switch_body_repeat1", + [aux_sym_object_repeat1] = "object_repeat1", + [aux_sym_object_pattern_repeat1] = "object_pattern_repeat1", + [aux_sym_array_repeat1] = "array_repeat1", + [aux_sym_array_pattern_repeat1] = "array_pattern_repeat1", + [aux_sym_jsx_element_repeat1] = "jsx_element_repeat1", + [aux_sym_jsx_opening_element_repeat1] = "jsx_opening_element_repeat1", + [aux_sym__jsx_string_repeat1] = "_jsx_string_repeat1", + [aux_sym__jsx_string_repeat2] = "_jsx_string_repeat2", + [aux_sym_sequence_expression_repeat1] = "sequence_expression_repeat1", + [aux_sym_string_repeat1] = "string_repeat1", + [aux_sym_string_repeat2] = "string_repeat2", + [aux_sym_template_string_repeat1] = "template_string_repeat1", + [aux_sym_class_body_repeat1] = "class_body_repeat1", + [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1", + [alias_sym_property_identifier] = "property_identifier", + [alias_sym_shorthand_property_identifier] = "shorthand_property_identifier", + [alias_sym_shorthand_property_identifier_pattern] = "shorthand_property_identifier_pattern", + [alias_sym_statement_identifier] = "statement_identifier", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [sym_hash_bang_line] = sym_hash_bang_line, + [anon_sym_export] = anon_sym_export, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_default] = anon_sym_default, + [anon_sym_as] = anon_sym_as, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_import] = anon_sym_import, + [anon_sym_from] = anon_sym_from, + [anon_sym_with] = anon_sym_with, + [anon_sym_var] = anon_sym_var, + [anon_sym_let] = anon_sym_let, + [anon_sym_const] = anon_sym_const, + [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, + [anon_sym_for] = anon_sym_for, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_in] = anon_sym_in, + [anon_sym_while] = anon_sym_while, + [anon_sym_do] = anon_sym_do, + [anon_sym_try] = anon_sym_try, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, + [anon_sym_debugger] = anon_sym_debugger, + [anon_sym_return] = anon_sym_return, + [anon_sym_throw] = anon_sym_throw, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_case] = anon_sym_case, + [anon_sym_catch] = anon_sym_catch, + [anon_sym_finally] = anon_sym_finally, + [anon_sym_yield] = anon_sym_yield, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [sym_html_character_reference] = sym_html_character_reference, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_GT] = anon_sym_GT, + [sym_jsx_identifier] = sym_identifier, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_LT_SLASH] = anon_sym_LT_SLASH, + [anon_sym_SLASH_GT] = anon_sym_SLASH_GT, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [sym_unescaped_double_jsx_string_fragment] = sym__template_chars, + [sym_unescaped_single_jsx_string_fragment] = sym__template_chars, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_AMP2] = anon_sym_AMP, + [anon_sym_class] = anon_sym_class, + [anon_sym_extends] = anon_sym_extends, + [anon_sym_async] = anon_sym_async, + [anon_sym_function] = anon_sym_function, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [sym_optional_chain] = sym_optional_chain, + [anon_sym_new] = anon_sym_new, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_GT_GT_GT_EQ] = anon_sym_GT_GT_GT_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, + [anon_sym_AMP_AMP_EQ] = anon_sym_AMP_AMP_EQ, + [anon_sym_PIPE_PIPE_EQ] = anon_sym_PIPE_PIPE_EQ, + [anon_sym_QMARK_QMARK_EQ] = anon_sym_QMARK_QMARK_EQ, + [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_AMP3] = anon_sym_AMP, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, + [anon_sym_instanceof] = anon_sym_instanceof, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_typeof] = anon_sym_typeof, + [anon_sym_void] = anon_sym_void, + [anon_sym_delete] = anon_sym_delete, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [sym_unescaped_double_string_fragment] = sym__template_chars, + [sym_unescaped_single_string_fragment] = sym__template_chars, + [sym_escape_sequence] = sym_escape_sequence, + [sym_comment] = sym_comment, + [anon_sym_BQUOTE] = anon_sym_BQUOTE, + [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, + [anon_sym_SLASH2] = anon_sym_SLASH, + [sym_regex_pattern] = sym_regex_pattern, + [sym_regex_flags] = sym_regex_flags, + [sym_number] = sym_number, + [sym_private_property_identifier] = sym_private_property_identifier, + [anon_sym_target] = anon_sym_target, + [anon_sym_meta] = anon_sym_meta, + [sym_this] = sym_this, + [sym_super] = sym_super, + [sym_true] = sym_true, + [sym_false] = sym_false, + [sym_null] = sym_null, + [sym_undefined] = sym_undefined, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_static] = anon_sym_static, + [aux_sym_method_definition_token1] = aux_sym_method_definition_token1, + [anon_sym_get] = anon_sym_get, + [anon_sym_set] = anon_sym_set, + [sym__automatic_semicolon] = sym__automatic_semicolon, + [sym__template_chars] = sym__template_chars, + [sym__ternary_qmark] = sym__ternary_qmark, + [sym_html_comment] = sym_html_comment, + [sym_jsx_text] = sym_jsx_text, + [sym_program] = sym_program, + [sym_export_statement] = sym_export_statement, + [sym_namespace_export] = sym_namespace_export, + [sym_export_clause] = sym_export_clause, + [sym_export_specifier] = sym_export_specifier, + [sym__module_export_name] = sym__module_export_name, + [sym_declaration] = sym_declaration, + [sym_import] = sym_import, + [sym_import_statement] = sym_import_statement, + [sym_import_clause] = sym_import_clause, + [sym__from_clause] = sym__from_clause, + [sym_namespace_import] = sym_namespace_import, + [sym_named_imports] = sym_named_imports, + [sym_import_specifier] = sym_import_specifier, + [sym_import_attribute] = sym_import_attribute, + [sym_statement] = sym_statement, + [sym_expression_statement] = sym_expression_statement, + [sym_variable_declaration] = sym_variable_declaration, + [sym_lexical_declaration] = sym_lexical_declaration, + [sym_using_declaration] = sym_using_declaration, + [sym_variable_declarator] = sym_variable_declarator, + [sym_statement_block] = sym_statement_block, + [sym_else_clause] = sym_else_clause, + [sym_if_statement] = sym_if_statement, + [sym_switch_statement] = sym_switch_statement, + [sym_for_statement] = sym_for_statement, + [sym_for_in_statement] = sym_for_in_statement, + [sym__for_header] = sym__for_header, + [sym_while_statement] = sym_while_statement, + [sym_do_statement] = sym_do_statement, + [sym_try_statement] = sym_try_statement, + [sym_with_statement] = sym_with_statement, + [sym_break_statement] = sym_break_statement, + [sym_continue_statement] = sym_continue_statement, + [sym_debugger_statement] = sym_debugger_statement, + [sym_return_statement] = sym_return_statement, + [sym_throw_statement] = sym_throw_statement, + [sym_empty_statement] = sym_empty_statement, + [sym_labeled_statement] = sym_labeled_statement, + [sym_switch_body] = sym_switch_body, + [sym_switch_case] = sym_switch_case, + [sym_switch_default] = sym_switch_default, + [sym_catch_clause] = sym_catch_clause, + [sym_finally_clause] = sym_finally_clause, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_expression] = sym_expression, + [sym_primary_expression] = sym_primary_expression, + [sym_yield_expression] = sym_yield_expression, + [sym_object] = sym_object, + [sym_object_pattern] = sym_object_pattern, + [sym_assignment_pattern] = sym_assignment_pattern, + [sym_object_assignment_pattern] = sym_object_assignment_pattern, + [sym_array] = sym_array, + [sym_array_pattern] = sym_array_pattern, + [sym_jsx_element] = sym_jsx_element, + [sym_jsx_expression] = sym_jsx_expression, + [sym_jsx_opening_element] = sym_jsx_opening_element, + [sym_nested_identifier] = sym_member_expression, + [sym_jsx_namespace_name] = sym_jsx_namespace_name, + [sym_jsx_closing_element] = sym_jsx_closing_element, + [sym_jsx_self_closing_element] = sym_jsx_self_closing_element, + [sym_jsx_attribute] = sym_jsx_attribute, + [sym__jsx_string] = sym_string, + [sym__jsx_lone_ampersand] = sym_jsx_text, + [sym__jsx_string_lone_ampersand] = sym__template_chars, + [sym_class] = sym_class, + [sym_class_declaration] = sym_class_declaration, + [sym_class_heritage] = sym_class_heritage, + [sym_function_expression] = sym_function_expression, + [sym_function_declaration] = sym_function_declaration, + [sym_generator_function] = sym_generator_function, + [sym_generator_function_declaration] = sym_generator_function_declaration, + [sym_arrow_function] = sym_arrow_function, + [sym_call_expression] = sym_call_expression, + [sym_new_expression] = sym_new_expression, + [sym_await_expression] = sym_await_expression, + [sym_member_expression] = sym_member_expression, + [sym_subscript_expression] = sym_subscript_expression, + [sym_assignment_expression] = sym_assignment_expression, + [sym__augmented_assignment_lhs] = sym__augmented_assignment_lhs, + [sym_augmented_assignment_expression] = sym_augmented_assignment_expression, + [sym__initializer] = sym__initializer, + [sym__destructuring_pattern] = sym__destructuring_pattern, + [sym_spread_element] = sym_spread_element, + [sym_ternary_expression] = sym_ternary_expression, + [sym_binary_expression] = sym_binary_expression, + [sym_unary_expression] = sym_unary_expression, + [sym_update_expression] = sym_update_expression, + [sym_sequence_expression] = sym_sequence_expression, + [sym_string] = sym_string, + [sym_template_string] = sym_template_string, + [sym_template_substitution] = sym_template_substitution, + [sym_regex] = sym_regex, + [sym_meta_property] = sym_meta_property, + [sym_arguments] = sym_arguments, + [sym_decorator] = sym_decorator, + [sym_decorator_member_expression] = sym_member_expression, + [sym_decorator_call_expression] = sym_call_expression, + [sym_class_body] = sym_class_body, + [sym_field_definition] = sym_field_definition, + [sym_formal_parameters] = sym_formal_parameters, + [sym_class_static_block] = sym_class_static_block, + [sym_pattern] = sym_pattern, + [sym_rest_pattern] = sym_rest_pattern, + [sym_method_definition] = sym_method_definition, + [sym_pair] = sym_pair, + [sym_pair_pattern] = sym_pair_pattern, + [sym__property_name] = sym__property_name, + [sym_computed_property_name] = sym_computed_property_name, + [aux_sym_program_repeat1] = aux_sym_program_repeat1, + [aux_sym_export_statement_repeat1] = aux_sym_export_statement_repeat1, + [aux_sym_export_clause_repeat1] = aux_sym_export_clause_repeat1, + [aux_sym_named_imports_repeat1] = aux_sym_named_imports_repeat1, + [aux_sym_variable_declaration_repeat1] = aux_sym_variable_declaration_repeat1, + [aux_sym_switch_body_repeat1] = aux_sym_switch_body_repeat1, + [aux_sym_object_repeat1] = aux_sym_object_repeat1, + [aux_sym_object_pattern_repeat1] = aux_sym_object_pattern_repeat1, + [aux_sym_array_repeat1] = aux_sym_array_repeat1, + [aux_sym_array_pattern_repeat1] = aux_sym_array_pattern_repeat1, + [aux_sym_jsx_element_repeat1] = aux_sym_jsx_element_repeat1, + [aux_sym_jsx_opening_element_repeat1] = aux_sym_jsx_opening_element_repeat1, + [aux_sym__jsx_string_repeat1] = aux_sym__jsx_string_repeat1, + [aux_sym__jsx_string_repeat2] = aux_sym__jsx_string_repeat2, + [aux_sym_sequence_expression_repeat1] = aux_sym_sequence_expression_repeat1, + [aux_sym_string_repeat1] = aux_sym_string_repeat1, + [aux_sym_string_repeat2] = aux_sym_string_repeat2, + [aux_sym_template_string_repeat1] = aux_sym_template_string_repeat1, + [aux_sym_class_body_repeat1] = aux_sym_class_body_repeat1, + [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1, + [alias_sym_property_identifier] = alias_sym_property_identifier, + [alias_sym_shorthand_property_identifier] = alias_sym_shorthand_property_identifier, + [alias_sym_shorthand_property_identifier_pattern] = alias_sym_shorthand_property_identifier_pattern, + [alias_sym_statement_identifier] = alias_sym_statement_identifier, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [sym_hash_bang_line] = { + .visible = true, + .named = true, + }, + [anon_sym_export] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_default] = { + .visible = true, + .named = false, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_import] = { + .visible = true, + .named = false, + }, + [anon_sym_from] = { + .visible = true, + .named = false, + }, + [anon_sym_with] = { + .visible = true, + .named = false, + }, + [anon_sym_var] = { + .visible = true, + .named = false, + }, + [anon_sym_let] = { + .visible = true, + .named = false, + }, + [anon_sym_const] = { + .visible = true, + .named = false, + }, + [anon_sym_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, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_switch] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_do] = { + .visible = true, + .named = false, + }, + [anon_sym_try] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { + .visible = true, + .named = false, + }, + [anon_sym_debugger] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_throw] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_case] = { + .visible = true, + .named = false, + }, + [anon_sym_catch] = { + .visible = true, + .named = false, + }, + [anon_sym_finally] = { + .visible = true, + .named = false, + }, + [anon_sym_yield] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [sym_html_character_reference] = { + .visible = true, + .named = true, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [sym_jsx_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [sym_unescaped_double_jsx_string_fragment] = { + .visible = true, + .named = true, + }, + [sym_unescaped_single_jsx_string_fragment] = { + .visible = true, + .named = true, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP2] = { + .visible = true, + .named = false, + }, + [anon_sym_class] = { + .visible = true, + .named = false, + }, + [anon_sym_extends] = { + .visible = true, + .named = false, + }, + [anon_sym_async] = { + .visible = true, + .named = false, + }, + [anon_sym_function] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = false, + }, + [sym_optional_chain] = { + .visible = true, + .named = true, + }, + [anon_sym_new] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_QMARK_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP3] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_instanceof] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_typeof] = { + .visible = true, + .named = false, + }, + [anon_sym_void] = { + .visible = true, + .named = false, + }, + [anon_sym_delete] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH] = { + .visible = true, + .named = false, + }, + [sym_unescaped_double_string_fragment] = { + .visible = true, + .named = true, + }, + [sym_unescaped_single_string_fragment] = { + .visible = true, + .named = true, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [anon_sym_BQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH2] = { + .visible = true, + .named = false, + }, + [sym_regex_pattern] = { + .visible = true, + .named = true, + }, + [sym_regex_flags] = { + .visible = true, + .named = true, + }, + [sym_number] = { + .visible = true, + .named = true, + }, + [sym_private_property_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_target] = { + .visible = true, + .named = false, + }, + [anon_sym_meta] = { + .visible = true, + .named = false, + }, + [sym_this] = { + .visible = true, + .named = true, + }, + [sym_super] = { + .visible = true, + .named = true, + }, + [sym_true] = { + .visible = true, + .named = true, + }, + [sym_false] = { + .visible = true, + .named = true, + }, + [sym_null] = { + .visible = true, + .named = true, + }, + [sym_undefined] = { + .visible = true, + .named = true, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_static] = { + .visible = true, + .named = false, + }, + [aux_sym_method_definition_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_get] = { + .visible = true, + .named = false, + }, + [anon_sym_set] = { + .visible = true, + .named = false, + }, + [sym__automatic_semicolon] = { + .visible = false, + .named = true, + }, + [sym__template_chars] = { + .visible = true, + .named = true, + }, + [sym__ternary_qmark] = { + .visible = true, + .named = false, + }, + [sym_html_comment] = { + .visible = true, + .named = true, + }, + [sym_jsx_text] = { + .visible = true, + .named = true, + }, + [sym_program] = { + .visible = true, + .named = true, + }, + [sym_export_statement] = { + .visible = true, + .named = true, + }, + [sym_namespace_export] = { + .visible = true, + .named = true, + }, + [sym_export_clause] = { + .visible = true, + .named = true, + }, + [sym_export_specifier] = { + .visible = true, + .named = true, + }, + [sym__module_export_name] = { + .visible = false, + .named = true, + }, + [sym_declaration] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_import] = { + .visible = true, + .named = true, + }, + [sym_import_statement] = { + .visible = true, + .named = true, + }, + [sym_import_clause] = { + .visible = true, + .named = true, + }, + [sym__from_clause] = { + .visible = false, + .named = true, + }, + [sym_namespace_import] = { + .visible = true, + .named = true, + }, + [sym_named_imports] = { + .visible = true, + .named = true, + }, + [sym_import_specifier] = { + .visible = true, + .named = true, + }, + [sym_import_attribute] = { + .visible = true, + .named = true, + }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_expression_statement] = { + .visible = true, + .named = true, + }, + [sym_variable_declaration] = { + .visible = true, + .named = true, + }, + [sym_lexical_declaration] = { + .visible = true, + .named = true, + }, + [sym_using_declaration] = { + .visible = true, + .named = true, + }, + [sym_variable_declarator] = { + .visible = true, + .named = true, + }, + [sym_statement_block] = { + .visible = true, + .named = true, + }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_switch_statement] = { + .visible = true, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym_for_in_statement] = { + .visible = true, + .named = true, + }, + [sym__for_header] = { + .visible = false, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_do_statement] = { + .visible = true, + .named = true, + }, + [sym_try_statement] = { + .visible = true, + .named = true, + }, + [sym_with_statement] = { + .visible = true, + .named = true, + }, + [sym_break_statement] = { + .visible = true, + .named = true, + }, + [sym_continue_statement] = { + .visible = true, + .named = true, + }, + [sym_debugger_statement] = { + .visible = true, + .named = true, + }, + [sym_return_statement] = { + .visible = true, + .named = true, + }, + [sym_throw_statement] = { + .visible = true, + .named = true, + }, + [sym_empty_statement] = { + .visible = true, + .named = true, + }, + [sym_labeled_statement] = { + .visible = true, + .named = true, + }, + [sym_switch_body] = { + .visible = true, + .named = true, + }, + [sym_switch_case] = { + .visible = true, + .named = true, + }, + [sym_switch_default] = { + .visible = true, + .named = true, + }, + [sym_catch_clause] = { + .visible = true, + .named = true, + }, + [sym_finally_clause] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_primary_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_yield_expression] = { + .visible = true, + .named = true, + }, + [sym_object] = { + .visible = true, + .named = true, + }, + [sym_object_pattern] = { + .visible = true, + .named = true, + }, + [sym_assignment_pattern] = { + .visible = true, + .named = true, + }, + [sym_object_assignment_pattern] = { + .visible = true, + .named = true, + }, + [sym_array] = { + .visible = true, + .named = true, + }, + [sym_array_pattern] = { + .visible = true, + .named = true, + }, + [sym_jsx_element] = { + .visible = true, + .named = true, + }, + [sym_jsx_expression] = { + .visible = true, + .named = true, + }, + [sym_jsx_opening_element] = { + .visible = true, + .named = true, + }, + [sym_nested_identifier] = { + .visible = true, + .named = true, + }, + [sym_jsx_namespace_name] = { + .visible = true, + .named = true, + }, + [sym_jsx_closing_element] = { + .visible = true, + .named = true, + }, + [sym_jsx_self_closing_element] = { + .visible = true, + .named = true, + }, + [sym_jsx_attribute] = { + .visible = true, + .named = true, + }, + [sym__jsx_string] = { + .visible = true, + .named = true, + }, + [sym__jsx_lone_ampersand] = { + .visible = true, + .named = true, + }, + [sym__jsx_string_lone_ampersand] = { + .visible = true, + .named = true, + }, + [sym_class] = { + .visible = true, + .named = true, + }, + [sym_class_declaration] = { + .visible = true, + .named = true, + }, + [sym_class_heritage] = { + .visible = true, + .named = true, + }, + [sym_function_expression] = { + .visible = true, + .named = true, + }, + [sym_function_declaration] = { + .visible = true, + .named = true, + }, + [sym_generator_function] = { + .visible = true, + .named = true, + }, + [sym_generator_function_declaration] = { + .visible = true, + .named = true, + }, + [sym_arrow_function] = { + .visible = true, + .named = true, + }, + [sym_call_expression] = { + .visible = true, + .named = true, + }, + [sym_new_expression] = { + .visible = true, + .named = true, + }, + [sym_await_expression] = { + .visible = true, + .named = true, + }, + [sym_member_expression] = { + .visible = true, + .named = true, + }, + [sym_subscript_expression] = { + .visible = true, + .named = true, + }, + [sym_assignment_expression] = { + .visible = true, + .named = true, + }, + [sym__augmented_assignment_lhs] = { + .visible = false, + .named = true, + }, + [sym_augmented_assignment_expression] = { + .visible = true, + .named = true, + }, + [sym__initializer] = { + .visible = false, + .named = true, + }, + [sym__destructuring_pattern] = { + .visible = false, + .named = true, + }, + [sym_spread_element] = { + .visible = true, + .named = true, + }, + [sym_ternary_expression] = { + .visible = true, + .named = true, + }, + [sym_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_unary_expression] = { + .visible = true, + .named = true, + }, + [sym_update_expression] = { + .visible = true, + .named = true, + }, + [sym_sequence_expression] = { + .visible = true, + .named = true, + }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym_template_string] = { + .visible = true, + .named = true, + }, + [sym_template_substitution] = { + .visible = true, + .named = true, + }, + [sym_regex] = { + .visible = true, + .named = true, + }, + [sym_meta_property] = { + .visible = true, + .named = true, + }, + [sym_arguments] = { + .visible = true, + .named = true, + }, + [sym_decorator] = { + .visible = true, + .named = true, + }, + [sym_decorator_member_expression] = { + .visible = true, + .named = true, + }, + [sym_decorator_call_expression] = { + .visible = true, + .named = true, + }, + [sym_class_body] = { + .visible = true, + .named = true, + }, + [sym_field_definition] = { + .visible = true, + .named = true, + }, + [sym_formal_parameters] = { + .visible = true, + .named = true, + }, + [sym_class_static_block] = { + .visible = true, + .named = true, + }, + [sym_pattern] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_rest_pattern] = { + .visible = true, + .named = true, + }, + [sym_method_definition] = { + .visible = true, + .named = true, + }, + [sym_pair] = { + .visible = true, + .named = true, + }, + [sym_pair_pattern] = { + .visible = true, + .named = true, + }, + [sym__property_name] = { + .visible = false, + .named = true, + }, + [sym_computed_property_name] = { + .visible = true, + .named = true, + }, + [aux_sym_program_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_export_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_export_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_named_imports_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_variable_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_switch_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_object_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_object_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_array_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_array_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_jsx_element_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_jsx_opening_element_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__jsx_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__jsx_string_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_sequence_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_template_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_class_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_formal_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_property_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_shorthand_property_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_shorthand_property_identifier_pattern] = { + .visible = true, + .named = true, + }, + [alias_sym_statement_identifier] = { + .visible = true, + .named = true, + }, +}; + +enum ts_field_identifiers { + field_alias = 1, + field_alternative = 2, + field_argument = 3, + field_arguments = 4, + field_attribute = 5, + field_body = 6, + field_close_tag = 7, + field_condition = 8, + field_consequence = 9, + field_constructor = 10, + field_declaration = 11, + field_decorator = 12, + field_finalizer = 13, + field_flags = 14, + field_function = 15, + field_handler = 16, + field_increment = 17, + field_index = 18, + field_initializer = 19, + field_key = 20, + field_kind = 21, + field_label = 22, + field_left = 23, + field_member = 24, + field_name = 25, + field_object = 26, + field_open_tag = 27, + field_operator = 28, + field_optional_chain = 29, + field_parameter = 30, + field_parameters = 31, + field_pattern = 32, + field_property = 33, + field_right = 34, + field_source = 35, + field_value = 36, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alias] = "alias", + [field_alternative] = "alternative", + [field_argument] = "argument", + [field_arguments] = "arguments", + [field_attribute] = "attribute", + [field_body] = "body", + [field_close_tag] = "close_tag", + [field_condition] = "condition", + [field_consequence] = "consequence", + [field_constructor] = "constructor", + [field_declaration] = "declaration", + [field_decorator] = "decorator", + [field_finalizer] = "finalizer", + [field_flags] = "flags", + [field_function] = "function", + [field_handler] = "handler", + [field_increment] = "increment", + [field_index] = "index", + [field_initializer] = "initializer", + [field_key] = "key", + [field_kind] = "kind", + [field_label] = "label", + [field_left] = "left", + [field_member] = "member", + [field_name] = "name", + [field_object] = "object", + [field_open_tag] = "open_tag", + [field_operator] = "operator", + [field_optional_chain] = "optional_chain", + [field_parameter] = "parameter", + [field_parameters] = "parameters", + [field_pattern] = "pattern", + [field_property] = "property", + [field_right] = "right", + [field_source] = "source", + [field_value] = "value", +}; + +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 = 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 = 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[] = { + [0] = + {field_decorator, 0}, + [1] = + {field_declaration, 1}, + [2] = + {field_name, 0}, + [3] = + {field_body, 1}, + [4] = + {field_constructor, 1}, + [5] = + {field_argument, 1}, + {field_operator, 0}, + [7] = + {field_arguments, 1}, + {field_function, 0}, + [9] = + {field_argument, 0}, + {field_operator, 1}, + [11] = + {field_close_tag, 1}, + {field_open_tag, 0}, + [13] = + {field_decorator, 0, .inherited = true}, + {field_decorator, 1, .inherited = true}, + [15] = + {field_declaration, 2}, + [16] = + {field_body, 2}, + {field_label, 0}, + [18] = + {field_left, 0}, + {field_right, 2}, + [20] = + {field_body, 2}, + {field_parameter, 0}, + [22] = + {field_source, 1}, + [23] = + {field_body, 2}, + {field_object, 1}, + [25] = + {field_name, 0}, + {field_value, 1, .inherited = true}, + [27] = + {field_kind, 0}, + [28] = + {field_condition, 1}, + {field_consequence, 2}, + [30] = + {field_body, 2}, + {field_value, 1}, + [32] = + {field_body, 2}, + {field_kind, 1, .inherited = true}, + {field_left, 1, .inherited = true}, + {field_operator, 1, .inherited = true}, + {field_right, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [38] = + {field_body, 2}, + {field_condition, 1}, + [40] = + {field_body, 1}, + {field_handler, 2}, + [42] = + {field_body, 1}, + {field_finalizer, 2}, + [44] = + {field_label, 1}, + [45] = + {field_name, 1}, + [46] = + {field_attribute, 0}, + [47] = + {field_member, 0}, + [48] = + {field_property, 0}, + [49] = + {field_body, 2}, + {field_name, 1}, + [51] = + {field_body, 2}, + [52] = + {field_body, 2}, + {field_parameters, 1}, + [54] = + {field_arguments, 2}, + {field_constructor, 1}, + [56] = + {field_pattern, 1}, + [57] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [60] = + {field_object, 0}, + {field_property, 2}, + [62] = + {field_object, 0}, + {field_optional_chain, 1}, + {field_property, 2}, + [65] = + {field_arguments, 2}, + {field_function, 0}, + {field_optional_chain, 1}, + [68] = + {field_close_tag, 2}, + {field_open_tag, 0}, + [70] = + {field_body, 2}, + {field_parameters, 0}, + [72] = + {field_declaration, 2}, + {field_decorator, 0, .inherited = true}, + [74] = + {field_body, 2}, + {field_decorator, 0, .inherited = true}, + [76] = + {field_source, 2, .inherited = true}, + [77] = + {field_value, 2}, + [78] = + {field_key, 0}, + {field_value, 2}, + [80] = + {field_body, 2}, + {field_name, 0}, + {field_parameters, 1}, + [83] = + {field_value, 1}, + [84] = + {field_kind, 0}, + {field_kind, 1}, + [86] = + {field_alternative, 3}, + {field_condition, 1}, + {field_consequence, 2}, + [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}, + [95] = + {field_body, 1}, + {field_condition, 3}, + [97] = + {field_body, 1}, + {field_finalizer, 3}, + {field_handler, 2}, + [100] = + {field_attribute, 2, .inherited = true}, + {field_name, 1}, + [102] = + {field_attribute, 0, .inherited = true}, + {field_attribute, 1, .inherited = true}, + [104] = + {field_property, 1}, + [105] = + {field_property, 0}, + {field_value, 1, .inherited = true}, + [107] = + {field_decorator, 0, .inherited = true}, + {field_property, 1}, + [109] = + {field_member, 1, .inherited = true}, + [110] = + {field_member, 0, .inherited = true}, + {field_member, 1, .inherited = true}, + [112] = + {field_body, 3}, + {field_name, 1}, + [114] = + {field_body, 3}, + {field_parameter, 1}, + [116] = + {field_body, 3}, + {field_parameters, 2}, + [118] = + {field_body, 3}, + {field_parameters, 1}, + [120] = + {field_body, 3}, + {field_name, 1}, + {field_parameters, 2}, + [123] = + {field_flags, 3}, + {field_pattern, 1}, + [125] = + {field_index, 2}, + {field_object, 0}, + [127] = + {field_declaration, 3}, + {field_decorator, 0, .inherited = true}, + [129] = + {field_body, 3}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + [132] = + {field_body, 3}, + {field_decorator, 0, .inherited = true}, + [134] = + {field_alias, 2}, + {field_name, 0}, + [136] = + {field_body, 3}, + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_parameters, 2}, + [140] = + {field_property, 1}, + {field_value, 2, .inherited = true}, + [142] = + {field_decorator, 0, .inherited = true}, + {field_property, 2}, + [144] = + {field_decorator, 0, .inherited = true}, + {field_property, 1}, + {field_value, 2, .inherited = true}, + [147] = + {field_body, 4}, + {field_parameters, 3}, + [149] = + {field_body, 4}, + {field_name, 2}, + {field_parameters, 3}, + [152] = + {field_alternative, 4}, + {field_condition, 0}, + {field_consequence, 2}, + [155] = + {field_index, 3}, + {field_object, 0}, + {field_optional_chain, 1}, + [158] = + {field_decorator, 0, .inherited = true}, + {field_value, 3}, + [160] = + {field_body, 4}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + [163] = + {field_body, 4}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_parameters, 3}, + [167] = + {field_left, 1}, + {field_operator, 2}, + {field_right, 3}, + [170] = + {field_body, 5}, + {field_condition, 3}, + {field_initializer, 2}, + [173] = + {field_decorator, 0, .inherited = true}, + {field_property, 2}, + {field_value, 3, .inherited = true}, + [176] = + {field_body, 5}, + {field_name, 3}, + {field_parameters, 4}, + [179] = + {field_body, 5}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_parameters, 4}, + [183] = + {field_body, 3}, + {field_value, 1}, + [185] = + {field_kind, 1}, + {field_left, 2}, + {field_operator, 3}, + {field_right, 4}, + [189] = + {field_body, 6}, + {field_condition, 3}, + {field_increment, 4}, + {field_initializer, 2}, + [193] = + {field_body, 6}, + {field_condition, 3}, + {field_condition, 4}, + {field_initializer, 2}, + [197] = + {field_body, 6}, + {field_condition, 4}, + {field_initializer, 2}, + [200] = + {field_body, 4}, + {field_parameter, 2}, + [202] = + {field_body, 6}, + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + {field_parameters, 5}, + [206] = + {field_kind, 1}, + {field_left, 2}, + {field_operator, 4}, + {field_right, 5}, + {field_value, 3, .inherited = true}, + [211] = + {field_kind, 1}, + {field_left, 2}, + {field_operator, 4}, + {field_right, 5}, + [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}, + [225] = + {field_body, 7}, + {field_condition, 4}, + {field_increment, 5}, + {field_initializer, 2}, + [229] = + {field_body, 7}, + {field_condition, 4}, + {field_condition, 5}, + {field_initializer, 2}, + [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}, + {field_increment, 6}, + {field_initializer, 2}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = sym_identifier, + }, + [4] = { + [0] = alias_sym_property_identifier, + }, + [5] = { + [0] = sym_identifier, + }, + [15] = { + [0] = alias_sym_statement_identifier, + }, + [16] = { + [0] = sym_identifier, + }, + [17] = { + [0] = sym_identifier, + }, + [18] = { + [1] = alias_sym_shorthand_property_identifier, + }, + [19] = { + [1] = alias_sym_shorthand_property_identifier_pattern, + }, + [20] = { + [1] = sym_identifier, + }, + [23] = { + [0] = sym_identifier, + }, + [32] = { + [1] = alias_sym_statement_identifier, + }, + [45] = { + [2] = alias_sym_property_identifier, + }, + [47] = { + [2] = alias_sym_property_identifier, + }, + [56] = { + [0] = alias_sym_shorthand_property_identifier_pattern, + }, + [73] = { + [1] = sym_identifier, + }, + [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[] = { + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 2, + [4] = 2, + [5] = 2, + [6] = 2, + [7] = 7, + [8] = 7, + [9] = 9, + [10] = 7, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 15, + [16] = 15, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 18, + [23] = 19, + [24] = 18, + [25] = 19, + [26] = 18, + [27] = 19, + [28] = 19, + [29] = 29, + [30] = 18, + [31] = 29, + [32] = 32, + [33] = 15, + [34] = 34, + [35] = 15, + [36] = 36, + [37] = 15, + [38] = 36, + [39] = 15, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 32, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 56, + [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] = 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] = 88, + [89] = 89, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 102, + [104] = 101, + [105] = 105, + [106] = 105, + [107] = 107, + [108] = 105, + [109] = 105, + [110] = 105, + [111] = 105, + [112] = 112, + [113] = 113, + [114] = 112, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 115, + [119] = 119, + [120] = 119, + [121] = 121, + [122] = 122, + [123] = 122, + [124] = 124, + [125] = 122, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 129, + [132] = 132, + [133] = 133, + [134] = 133, + [135] = 135, + [136] = 136, + [137] = 133, + [138] = 138, + [139] = 138, + [140] = 140, + [141] = 141, + [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] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [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] = 159, + [177] = 152, + [178] = 178, + [179] = 154, + [180] = 168, + [181] = 181, + [182] = 167, + [183] = 183, + [184] = 175, + [185] = 152, + [186] = 154, + [187] = 161, + [188] = 154, + [189] = 181, + [190] = 190, + [191] = 191, + [192] = 157, + [193] = 193, + [194] = 159, + [195] = 178, + [196] = 168, + [197] = 167, + [198] = 175, + [199] = 152, + [200] = 154, + [201] = 201, + [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] = 221, + [222] = 222, + [223] = 223, + [224] = 220, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 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] = 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] = 360, + [363] = 361, + [364] = 361, + [365] = 360, + [366] = 366, + [367] = 366, + [368] = 368, + [369] = 88, + [370] = 368, + [371] = 371, + [372] = 366, + [373] = 366, + [374] = 91, + [375] = 366, + [376] = 371, + [377] = 366, + [378] = 378, + [379] = 378, + [380] = 368, + [381] = 381, + [382] = 382, + [383] = 383, + [384] = 89, + [385] = 87, + [386] = 382, + [387] = 378, + [388] = 388, + [389] = 389, + [390] = 388, + [391] = 87, + [392] = 392, + [393] = 366, + [394] = 91, + [395] = 395, + [396] = 396, + [397] = 396, + [398] = 398, + [399] = 90, + [400] = 89, + [401] = 401, + [402] = 86, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 366, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 366, + [411] = 411, + [412] = 366, + [413] = 413, + [414] = 366, + [415] = 415, + [416] = 88, + [417] = 383, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 464, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [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, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 404, + [525] = 525, + [526] = 497, + [527] = 501, + [528] = 498, + [529] = 501, + [530] = 502, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 500, + [535] = 535, + [536] = 533, + [537] = 502, + [538] = 404, + [539] = 539, + [540] = 540, + [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] = 540, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 557, + [559] = 539, + [560] = 498, + [561] = 532, + [562] = 556, + [563] = 533, + [564] = 564, + [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] = 92, + [583] = 583, + [584] = 91, + [585] = 585, + [586] = 88, + [587] = 587, + [588] = 588, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 90, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, + [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] = 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] = 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] = 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] = 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] = 814, + [815] = 815, + [816] = 816, + [817] = 603, + [818] = 818, + [819] = 761, + [820] = 632, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 690, + [849] = 849, + [850] = 850, + [851] = 765, + [852] = 603, + [853] = 632, + [854] = 648, + [855] = 826, + [856] = 856, + [857] = 857, + [858] = 841, + [859] = 847, + [860] = 849, + [861] = 850, + [862] = 862, + [863] = 863, + [864] = 828, + [865] = 857, + [866] = 847, + [867] = 828, + [868] = 857, + [869] = 828, + [870] = 828, + [871] = 871, + [872] = 862, + [873] = 873, + [874] = 830, + [875] = 831, + [876] = 840, + [877] = 857, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 873, + [882] = 882, + [883] = 842, + [884] = 863, + [885] = 882, + [886] = 828, + [887] = 672, + [888] = 590, + [889] = 889, + [890] = 598, + [891] = 891, + [892] = 656, + [893] = 658, + [894] = 653, + [895] = 660, + [896] = 661, + [897] = 662, + [898] = 669, + [899] = 671, + [900] = 672, + [901] = 673, + [902] = 674, + [903] = 675, + [904] = 676, + [905] = 677, + [906] = 678, + [907] = 679, + [908] = 680, + [909] = 667, + [910] = 654, + [911] = 664, + [912] = 666, + [913] = 668, + [914] = 655, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 590, + [919] = 663, + [920] = 656, + [921] = 658, + [922] = 653, + [923] = 660, + [924] = 661, + [925] = 662, + [926] = 663, + [927] = 671, + [928] = 672, + [929] = 673, + [930] = 674, + [931] = 675, + [932] = 676, + [933] = 677, + [934] = 678, + [935] = 679, + [936] = 680, + [937] = 667, + [938] = 654, + [939] = 664, + [940] = 666, + [941] = 668, + [942] = 655, + [943] = 656, + [944] = 658, + [945] = 653, + [946] = 660, + [947] = 661, + [948] = 662, + [949] = 669, + [950] = 671, + [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] = 669, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 968, + [972] = 968, + [973] = 826, + [974] = 968, + [975] = 968, + [976] = 968, + [977] = 977, + [978] = 970, + [979] = 979, + [980] = 979, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 984, + [988] = 982, + [989] = 986, + [990] = 982, + [991] = 984, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 994, + [996] = 993, + [997] = 994, + [998] = 994, + [999] = 993, + [1000] = 993, + [1001] = 993, + [1002] = 994, + [1003] = 993, + [1004] = 994, + [1005] = 1005, + [1006] = 1005, + [1007] = 1005, + [1008] = 1005, + [1009] = 1005, + [1010] = 1010, + [1011] = 1005, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, + [1016] = 1016, + [1017] = 1017, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, + [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] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 88, + [1042] = 1042, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 91, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, + [1063] = 1059, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 89, + [1072] = 87, + [1073] = 1024, + [1074] = 1074, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1024, + [1081] = 1081, + [1082] = 1082, + [1083] = 1017, + [1084] = 1076, + [1085] = 1026, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1086, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1032, + [1097] = 1097, + [1098] = 1098, + [1099] = 1036, + [1100] = 1028, + [1101] = 601, + [1102] = 1094, + [1103] = 1103, + [1104] = 634, + [1105] = 638, + [1106] = 1106, + [1107] = 1031, + [1108] = 1033, + [1109] = 1089, + [1110] = 1032, + [1111] = 1106, + [1112] = 1095, + [1113] = 1097, + [1114] = 1098, + [1115] = 1115, + [1116] = 1103, + [1117] = 1092, + [1118] = 1093, + [1119] = 1115, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1122, + [1130] = 1123, + [1131] = 1128, + [1132] = 1120, + [1133] = 1125, + [1134] = 1126, + [1135] = 1127, + [1136] = 1124, + [1137] = 1121, + [1138] = 1138, + [1139] = 1138, + [1140] = 1138, + [1141] = 1138, + [1142] = 1138, + [1143] = 1138, + [1144] = 1144, + [1145] = 1145, + [1146] = 1145, + [1147] = 1144, + [1148] = 1145, + [1149] = 1144, + [1150] = 1145, + [1151] = 1144, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1154, + [1156] = 1154, + [1157] = 1154, + [1158] = 1158, + [1159] = 1159, + [1160] = 1158, + [1161] = 1159, + [1162] = 1159, + [1163] = 1158, + [1164] = 1158, + [1165] = 1159, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1170, + [1172] = 1172, + [1173] = 1173, + [1174] = 1167, + [1175] = 1168, + [1176] = 1173, + [1177] = 1172, + [1178] = 1173, + [1179] = 1167, + [1180] = 1168, + [1181] = 1172, + [1182] = 1173, + [1183] = 1167, + [1184] = 1168, + [1185] = 1172, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1170, + [1190] = 1170, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1202, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1202, + [1211] = 1202, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1218, + [1219] = 1202, + [1220] = 1202, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, + [1225] = 592, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 640, + [1231] = 1231, + [1232] = 1208, + [1233] = 1233, + [1234] = 1234, + [1235] = 1235, + [1236] = 1222, + [1237] = 1237, + [1238] = 614, + [1239] = 608, + [1240] = 1234, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 1221, + [1253] = 1253, + [1254] = 1254, + [1255] = 1255, + [1256] = 1214, + [1257] = 1257, + [1258] = 1258, + [1259] = 610, + [1260] = 1260, + [1261] = 611, + [1262] = 1262, + [1263] = 1263, + [1264] = 1223, + [1265] = 621, + [1266] = 622, + [1267] = 1267, + [1268] = 623, + [1269] = 624, + [1270] = 1270, + [1271] = 1250, + [1272] = 1272, + [1273] = 1273, + [1274] = 1274, + [1275] = 1275, + [1276] = 593, + [1277] = 1277, + [1278] = 1278, + [1279] = 1279, + [1280] = 1280, + [1281] = 1281, + [1282] = 1282, + [1283] = 1283, + [1284] = 1284, + [1285] = 1285, + [1286] = 1286, + [1287] = 1275, + [1288] = 1277, + [1289] = 1289, + [1290] = 1289, + [1291] = 1291, + [1292] = 1277, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, + [1296] = 1285, + [1297] = 1243, + [1298] = 1285, + [1299] = 608, + [1300] = 1300, + [1301] = 614, + [1302] = 1302, + [1303] = 593, + [1304] = 1304, + [1305] = 610, + [1306] = 611, + [1307] = 621, + [1308] = 622, + [1309] = 623, + [1310] = 624, + [1311] = 592, + [1312] = 1295, + [1313] = 1277, + [1314] = 1278, + [1315] = 1302, + [1316] = 1304, + [1317] = 1317, + [1318] = 1317, + [1319] = 1280, + [1320] = 1320, + [1321] = 1321, + [1322] = 1284, + [1323] = 1323, + [1324] = 1324, + [1325] = 1285, + [1326] = 640, + [1327] = 1327, + [1328] = 1328, + [1329] = 1329, + [1330] = 1330, + [1331] = 1331, + [1332] = 1327, + [1333] = 1333, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, + [1337] = 1328, + [1338] = 1338, + [1339] = 1339, + [1340] = 1272, + [1341] = 1341, + [1342] = 1342, + [1343] = 1331, + [1344] = 1344, + [1345] = 1224, + [1346] = 1335, + [1347] = 1347, + [1348] = 1348, + [1349] = 1349, + [1350] = 1330, + [1351] = 1351, + [1352] = 1334, + [1353] = 1353, + [1354] = 1354, + [1355] = 1355, + [1356] = 1327, + [1357] = 1338, + [1358] = 1358, + [1359] = 1329, + [1360] = 1360, + [1361] = 1361, + [1362] = 1339, + [1363] = 1241, + [1364] = 1364, + [1365] = 1365, + [1366] = 1366, + [1367] = 1367, + [1368] = 1368, + [1369] = 1339, + [1370] = 1334, + [1371] = 1344, + [1372] = 1372, + [1373] = 1373, + [1374] = 1366, + [1375] = 1375, + [1376] = 1376, + [1377] = 1365, + [1378] = 1378, + [1379] = 1327, + [1380] = 1320, + [1381] = 1381, + [1382] = 1382, + [1383] = 1383, + [1384] = 1384, + [1385] = 1385, + [1386] = 1386, + [1387] = 1342, + [1388] = 1388, + [1389] = 1331, + [1390] = 1390, + [1391] = 1334, + [1392] = 1390, + [1393] = 1339, + [1394] = 1333, + [1395] = 1213, + [1396] = 1386, + [1397] = 1273, + [1398] = 1373, + [1399] = 1331, + [1400] = 1400, + [1401] = 1401, + [1402] = 1402, + [1403] = 1403, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, + [1407] = 1407, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 1411, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 1420, + [1421] = 1409, + [1422] = 1422, + [1423] = 1423, + [1424] = 1424, + [1425] = 1419, + [1426] = 1420, + [1427] = 1427, + [1428] = 1428, + [1429] = 1415, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1416, + [1434] = 1434, + [1435] = 1427, + [1436] = 1436, + [1437] = 1427, + [1438] = 1438, + [1439] = 1439, + [1440] = 1440, + [1441] = 1441, + [1442] = 1428, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1438, + [1449] = 1449, + [1450] = 1450, + [1451] = 1424, + [1452] = 1415, + [1453] = 1413, + [1454] = 1454, + [1455] = 1416, + [1456] = 1434, + [1457] = 1457, + [1458] = 1458, + [1459] = 1458, + [1460] = 1444, + [1461] = 1461, + [1462] = 1462, + [1463] = 1410, + [1464] = 1412, + [1465] = 1402, + [1466] = 1418, + [1467] = 1467, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 1422, + [1472] = 1436, + [1473] = 1409, + [1474] = 1411, + [1475] = 1467, + [1476] = 1422, + [1477] = 1477, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1449, + [1482] = 1450, + [1483] = 1419, + [1484] = 1420, + [1485] = 1427, + [1486] = 1486, + [1487] = 1487, + [1488] = 1428, + [1489] = 1489, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 1404, + [1494] = 1406, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1495, + [1501] = 1501, + [1502] = 411, + [1503] = 1503, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, + [1511] = 616, + [1512] = 1512, + [1513] = 1513, + [1514] = 617, + [1515] = 1510, + [1516] = 1516, + [1517] = 1512, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, + [1545] = 1545, + [1546] = 1353, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1551, + [1552] = 1552, + [1553] = 1508, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1522, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 1564, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1535, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1525, + [1579] = 1579, + [1580] = 1564, + [1581] = 1572, + [1582] = 1582, + [1583] = 1582, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1555, + [1592] = 1558, + [1593] = 1559, + [1594] = 1561, + [1595] = 1563, + [1596] = 1565, + [1597] = 1566, + [1598] = 1567, + [1599] = 1569, + [1600] = 1573, + [1601] = 1574, + [1602] = 1575, + [1603] = 1603, + [1604] = 1604, + [1605] = 1605, + [1606] = 1579, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1584, + [1614] = 1585, + [1615] = 1615, + [1616] = 1518, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 639, + [1622] = 1603, + [1623] = 1623, + [1624] = 1624, + [1625] = 1521, + [1626] = 1626, + [1627] = 1627, + [1628] = 1524, + [1629] = 1629, + [1630] = 1630, + [1631] = 1631, + [1632] = 1632, + [1633] = 1633, + [1634] = 1619, + [1635] = 1635, + [1636] = 1636, + [1637] = 1637, + [1638] = 1638, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, + [1642] = 1533, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1633, + [1651] = 1644, + [1652] = 1503, + [1653] = 1653, + [1654] = 1654, + [1655] = 1655, + [1656] = 1656, + [1657] = 1657, + [1658] = 1528, + [1659] = 1539, + [1660] = 1660, + [1661] = 1661, + [1662] = 1662, + [1663] = 1663, + [1664] = 1664, + [1665] = 1665, + [1666] = 1510, + [1667] = 1667, + [1668] = 1510, + [1669] = 1512, + [1670] = 1670, + [1671] = 1570, + [1672] = 1672, + [1673] = 1664, + [1674] = 1618, + [1675] = 1551, + [1676] = 1615, + [1677] = 1577, + [1678] = 1678, + [1679] = 1505, + [1680] = 1513, + [1681] = 1520, + [1682] = 1682, + [1683] = 1536, + [1684] = 1549, + [1685] = 1556, + [1686] = 1512, + [1687] = 1562, + [1688] = 1568, + [1689] = 1576, + [1690] = 1586, + [1691] = 1691, + [1692] = 1692, + [1693] = 1587, + [1694] = 1623, + [1695] = 1624, + [1696] = 1696, + [1697] = 1626, + [1698] = 1698, + [1699] = 1699, + [1700] = 1700, + [1701] = 1663, + [1702] = 1696, + [1703] = 1698, + [1704] = 1699, + [1705] = 1700, + [1706] = 1706, + [1707] = 1706, + [1708] = 1708, + [1709] = 1550, + [1710] = 1710, + [1711] = 1607, + [1712] = 1712, + [1713] = 1713, + [1714] = 1714, + [1715] = 1715, + [1716] = 1716, + [1717] = 1627, + [1718] = 1608, + [1719] = 1609, + [1720] = 1708, + [1721] = 1721, + [1722] = 1710, + [1723] = 1712, + [1724] = 1656, + [1725] = 1725, + [1726] = 1653, + [1727] = 1655, + [1728] = 1678, + [1729] = 1682, + [1730] = 1721, + [1731] = 1731, + [1732] = 1732, + [1733] = 1637, + [1734] = 1588, + [1735] = 1735, + [1736] = 1557, + [1737] = 1737, + [1738] = 1713, + [1739] = 1610, + [1740] = 1611, + [1741] = 1741, + [1742] = 1612, + [1743] = 1743, + [1744] = 1714, + [1745] = 1715, + [1746] = 1638, + [1747] = 1716, + [1748] = 1748, + [1749] = 1749, + [1750] = 1657, + [1751] = 1751, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1756, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1762, + [1763] = 1763, + [1764] = 1764, + [1765] = 1765, + [1766] = 1752, + [1767] = 1759, + [1768] = 1768, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1772, + [1773] = 1773, + [1774] = 1764, + [1775] = 1775, + [1776] = 1752, + [1777] = 1777, + [1778] = 1778, + [1779] = 1773, + [1780] = 1780, + [1781] = 1780, + [1782] = 1769, + [1783] = 1764, + [1784] = 1752, + [1785] = 1773, + [1786] = 1786, + [1787] = 1787, + [1788] = 1759, + [1789] = 1789, + [1790] = 1756, + [1791] = 1791, + [1792] = 1792, + [1793] = 1793, + [1794] = 1794, + [1795] = 1795, + [1796] = 1796, + [1797] = 1792, + [1798] = 1798, + [1799] = 1799, + [1800] = 1800, + [1801] = 1780, + [1802] = 1802, + [1803] = 1378, + [1804] = 1804, + [1805] = 1762, + [1806] = 1769, + [1807] = 1807, + [1808] = 1808, + [1809] = 1809, + [1810] = 1810, + [1811] = 1786, + [1812] = 1812, + [1813] = 1764, + [1814] = 1796, + [1815] = 1815, + [1816] = 1773, + [1817] = 1817, + [1818] = 1818, + [1819] = 1792, + [1820] = 1772, + [1821] = 1765, + [1822] = 1822, + [1823] = 1780, + [1824] = 1824, + [1825] = 1762, + [1826] = 1769, + [1827] = 1827, + [1828] = 1764, + [1829] = 1752, + [1830] = 1773, + [1831] = 1831, + [1832] = 1832, + [1833] = 1769, + [1834] = 1834, + [1835] = 1835, + [1836] = 1759, + [1837] = 1773, + [1838] = 1834, + [1839] = 1798, + [1840] = 1796, + [1841] = 1762, + [1842] = 1764, + [1843] = 1780, + [1844] = 1844, + [1845] = 1845, + [1846] = 1846, + [1847] = 1847, + [1848] = 1848, + [1849] = 1822, + [1850] = 1796, + [1851] = 1851, + [1852] = 1852, + [1853] = 1846, + [1854] = 1769, + [1855] = 1845, + [1856] = 1792, + [1857] = 1857, + [1858] = 1858, + [1859] = 1859, + [1860] = 1762, + [1861] = 1756, + [1862] = 1862, + [1863] = 1863, + [1864] = 1835, + [1865] = 1865, + [1866] = 1780, + [1867] = 1762, + [1868] = 1754, + [1869] = 1869, + [1870] = 1810, + [1871] = 1818, + [1872] = 1752, +}; + +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 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 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 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}, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(125); + ADVANCE_MAP( + '!', 229, + '"', 158, + '#', 4, + '$', 276, + '%', 217, + '&', 203, + '\'', 159, + '(', 133, + ')', 135, + '*', 128, + '+', 211, + ',', 131, + '-', 213, + '.', 154, + '/', 256, + '0', 261, + ':', 136, + ';', 134, + '<', 146, + '=', 139, + '>', 150, + '?', 27, + '@', 280, + '[', 141, + '\\', 79, + ']', 142, + '^', 207, + '`', 254, + 's', 274, + '{', 130, + '|', 208, + '}', 132, + '~', 230, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(122); + if (lookahead > '@') ADVANCE(278); + END_STATE(); + case 1: + if (lookahead == '\n') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1); + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(32); + if (lookahead == '/') ADVANCE(20); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(121); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(257); + if (lookahead != 0) ADVANCE(258); + END_STATE(); + case 3: + ADVANCE_MAP( + '!', 229, + '"', 158, + '#', 74, + '%', 217, + '&', 204, + '\'', 159, + '(', 133, + ')', 135, + '*', 128, + '+', 211, + ',', 131, + '-', 213, + '.', 155, + '/', 215, + '0', 261, + ':', 136, + ';', 134, + '<', 147, + '=', 139, + '>', 150, + '?', 27, + '@', 280, + '[', 141, + '\\', 81, + ']', 142, + '^', 207, + '`', 254, + '{', 130, + '|', 208, + '}', 132, + '~', 230, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); + if (lookahead > '#') ADVANCE(278); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(126); + if (lookahead == '\\') ADVANCE(80); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(279); + END_STATE(); + case 5: + ADVANCE_MAP( + '!', 228, + '"', 158, + '#', 74, + '\'', 159, + '(', 133, + '*', 127, + '+', 210, + ',', 131, + '-', 212, + '.', 26, + '/', 214, + '0', 261, + ';', 134, + '<', 144, + '@', 280, + '[', 141, + '\\', 81, + '`', 254, + 's', 274, + '{', 130, + '}', 132, + '~', 230, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(278); + END_STATE(); + case 6: + ADVANCE_MAP( + '!', 228, + '"', 158, + '#', 74, + '\'', 159, + '(', 133, + '+', 210, + '-', 212, + '.', 155, + '/', 214, + '0', 261, + ':', 136, + '<', 144, + '>', 149, + '@', 280, + '[', 141, + '\\', 81, + '`', 254, + '{', 130, + '~', 230, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(278); + END_STATE(); + case 7: + ADVANCE_MAP( + '!', 72, + '%', 216, + '&', 205, + '(', 133, + ')', 135, + '*', 129, + '+', 210, + ',', 131, + '-', 212, + '.', 153, + '/', 214, + ':', 136, + ';', 134, + '<', 148, + '=', 73, + '>', 151, + '?', 28, + '[', 141, + '\\', 81, + ']', 142, + '^', 206, + '`', 254, + '{', 130, + '|', 209, + '}', 132, + ); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(259); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '`' || '~' < lookahead)) ADVANCE(278); + END_STATE(); + case 8: + ADVANCE_MAP( + '!', 72, + '%', 216, + '&', 205, + '(', 133, + ')', 135, + '*', 129, + '+', 210, + ',', 131, + '-', 212, + '.', 153, + '/', 214, + ':', 136, + ';', 134, + '<', 148, + '=', 73, + '>', 151, + '?', 28, + '[', 141, + '\\', 81, + ']', 142, + '^', 206, + '`', 254, + '{', 130, + '|', 209, + '}', 132, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(278); + END_STATE(); + case 9: + ADVANCE_MAP( + '"', 158, + '#', 74, + '&', 172, + '\'', 159, + '(', 133, + '*', 127, + '.', 155, + '/', 20, + '0', 261, + '<', 145, + '@', 280, + '[', 141, + '\\', 81, + 's', 274, + '{', 130, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(278); + END_STATE(); + case 10: + if (lookahead == '"') ADVANCE(158); + if (lookahead == '&') ADVANCE(173); + if (lookahead == '/') ADVANCE(160); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(162); + if (lookahead != 0) ADVANCE(161); + END_STATE(); + case 11: + if (lookahead == '"') ADVANCE(158); + if (lookahead == '/') ADVANCE(20); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); + END_STATE(); + case 12: + if (lookahead == '"') ADVANCE(158); + if (lookahead == '/') ADVANCE(233); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == '\n' || + lookahead == '\r') SKIP(11); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(236); + if (lookahead != 0) ADVANCE(238); + END_STATE(); + case 13: + if (lookahead == '#') ADVANCE(93); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#') ADVANCE(161); + END_STATE(); + case 14: + if (lookahead == '#') ADVANCE(93); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(167); + END_STATE(); + case 15: + if (lookahead == '$') ADVANCE(83); + if (lookahead == '/') ADVANCE(20); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == '`') ADVANCE(254); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); + END_STATE(); + case 16: + if (lookahead == '$') ADVANCE(83); + if (lookahead == '/') ADVANCE(20); + if (lookahead == '`') ADVANCE(254); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); + END_STATE(); + case 17: + if (lookahead == '&') ADVANCE(174); + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '/') ADVANCE(166); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(168); + if (lookahead != 0) ADVANCE(167); + END_STATE(); + case 18: + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '/') ADVANCE(20); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(18); + END_STATE(); + case 19: + if (lookahead == '\'') ADVANCE(159); + if (lookahead == '/') ADVANCE(239); + if (lookahead == '\\') ADVANCE(82); + if (lookahead == '\n' || + lookahead == '\r') SKIP(18); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(242); + if (lookahead != 0) ADVANCE(244); + END_STATE(); + case 20: + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(253); + END_STATE(); + case 21: + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '>') ADVANCE(157); + END_STATE(); + case 22: + if (lookahead == '*') ADVANCE(22); + if (lookahead == '/') ADVANCE(250); + if (lookahead != 0) ADVANCE(23); + END_STATE(); + case 23: + if (lookahead == '*') ADVANCE(22); + if (lookahead != 0) ADVANCE(23); + END_STATE(); + case 24: + if (lookahead == '*') ADVANCE(163); + if (lookahead == '"' || + lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(23); + if (lookahead != 0) ADVANCE(164); + END_STATE(); + case 25: + if (lookahead == '*') ADVANCE(169); + if (lookahead == '#' || + lookahead == '\'' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(23); + if (lookahead != 0) ADVANCE(170); + END_STATE(); + case 26: + if (lookahead == '.') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); + END_STATE(); + case 27: + if (lookahead == '.') ADVANCE(176); + if (lookahead == '?') ADVANCE(227); + END_STATE(); + case 28: + if (lookahead == '.') ADVANCE(176); + if (lookahead == '?') ADVANCE(226); + END_STATE(); + case 29: + if (lookahead == '.') ADVANCE(192); + END_STATE(); + case 30: + if (lookahead == '.') ADVANCE(153); + if (lookahead == '/') ADVANCE(21); + if (lookahead == ':') ADVANCE(136); + if (lookahead == '=') ADVANCE(137); + if (lookahead == '>') ADVANCE(149); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == '{') ADVANCE(130); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(30); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); + if (lookahead > '~') ADVANCE(278); + END_STATE(); + case 31: + if (lookahead == '/') ADVANCE(256); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(32); + END_STATE(); + case 32: + if (lookahead == '/') ADVANCE(20); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(32); + END_STATE(); + case 33: + if (lookahead == ';') ADVANCE(143); + END_STATE(); + case 34: + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + END_STATE(); + case 35: + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34); + END_STATE(); + case 36: + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); + END_STATE(); + case 37: + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); + END_STATE(); + case 38: + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(33); + END_STATE(); + case 39: + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); + END_STATE(); + case 40: + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); + END_STATE(); + case 41: + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + END_STATE(); + case 42: + if (lookahead == ';') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + END_STATE(); + case 43: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); + END_STATE(); + case 44: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + END_STATE(); + case 45: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + END_STATE(); + case 46: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); + END_STATE(); + case 47: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); + END_STATE(); + case 48: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + END_STATE(); + case 49: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + END_STATE(); + case 50: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); + END_STATE(); + case 51: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); + END_STATE(); + case 52: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(51); + END_STATE(); + case 53: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(52); + END_STATE(); + case 54: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); + END_STATE(); + case 55: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); + END_STATE(); + case 56: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); + END_STATE(); + case 57: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); + END_STATE(); + case 58: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); + END_STATE(); + case 59: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + END_STATE(); + case 60: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); + END_STATE(); + case 61: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); + END_STATE(); + case 62: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); + END_STATE(); + case 63: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + END_STATE(); + case 64: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); + END_STATE(); + case 65: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); + END_STATE(); + case 66: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65); + END_STATE(); + case 67: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); + END_STATE(); + case 68: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67); + END_STATE(); + case 69: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); + END_STATE(); + case 70: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69); + END_STATE(); + case 71: + if (lookahead == ';') ADVANCE(143); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); + END_STATE(); + case 72: + if (lookahead == '=') ADVANCE(223); + END_STATE(); + case 73: + if (lookahead == '=') ADVANCE(221); + END_STATE(); + case 74: + if (lookahead == '\\') ADVANCE(80); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(279); + END_STATE(); + case 75: + if (lookahead == '\\') ADVANCE(120); + if (lookahead == ']') ADVANCE(258); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(75); + END_STATE(); + case 76: + if (lookahead == 'e') ADVANCE(78); + END_STATE(); + case 77: + if (lookahead == 'g') ADVANCE(76); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(77); + END_STATE(); + case 78: + if (lookahead == 't') ADVANCE(1); + END_STATE(); + case 79: + if (lookahead == 'u') ADVANCE(84); + if (lookahead == 'x') ADVANCE(110); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(249); + if (lookahead != 0) ADVANCE(245); + END_STATE(); + case 80: + if (lookahead == 'u') ADVANCE(85); + END_STATE(); + case 81: + if (lookahead == 'u') ADVANCE(86); + END_STATE(); + case 82: + if (lookahead == 'u') ADVANCE(87); + if (lookahead == 'x') ADVANCE(110); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(249); + if (lookahead != 0) ADVANCE(245); + END_STATE(); + case 83: + if (lookahead == '{') ADVANCE(255); + END_STATE(); + case 84: + if (lookahead == '{') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + END_STATE(); + case 85: + if (lookahead == '{') ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + END_STATE(); + case 86: + if (lookahead == '{') ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + END_STATE(); + case 87: + if (lookahead == '{') ADVANCE(111); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); + END_STATE(); + case 88: + if (lookahead == '}') ADVANCE(278); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); + END_STATE(); + case 89: + if (lookahead == '}') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); + END_STATE(); + case 90: + if (lookahead == '}') ADVANCE(245); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + END_STATE(); + case 91: + if (lookahead == '}') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + END_STATE(); + case 92: + if (lookahead == '+' || + lookahead == '-') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); + END_STATE(); + case 93: + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + END_STATE(); + case 94: + if (lookahead == '0' || + lookahead == '1') ADVANCE(264); + END_STATE(); + case 95: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(265); + END_STATE(); + case 96: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); + END_STATE(); + case 97: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); + END_STATE(); + case 98: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); + END_STATE(); + case 99: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); + END_STATE(); + case 100: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(278); + END_STATE(); + case 101: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(279); + END_STATE(); + case 102: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); + END_STATE(); + case 103: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(266); + END_STATE(); + case 104: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + END_STATE(); + case 105: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(246); + END_STATE(); + case 106: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + END_STATE(); + case 107: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); + END_STATE(); + case 108: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); + END_STATE(); + case 109: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); + END_STATE(); + case 110: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); + END_STATE(); + case 111: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + END_STATE(); + case 112: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); + END_STATE(); + case 113: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); + END_STATE(); + case 114: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(100); + END_STATE(); + case 115: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); + END_STATE(); + case 116: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + END_STATE(); + case 117: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); + END_STATE(); + case 118: + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(161); + END_STATE(); + case 119: + if (lookahead != 0 && + lookahead != '#' && + lookahead != '\'' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(167); + END_STATE(); + case 120: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(75); + END_STATE(); + case 121: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(258); + END_STATE(); + case 122: + if (eof) ADVANCE(125); + ADVANCE_MAP( + '!', 229, + '"', 158, + '#', 4, + '$', 276, + '%', 217, + '&', 203, + '\'', 159, + '(', 133, + ')', 135, + '*', 128, + '+', 211, + ',', 131, + '-', 213, + '.', 154, + '/', 215, + '0', 261, + ':', 136, + ';', 134, + '<', 146, + '=', 139, + '>', 150, + '?', 27, + '@', 280, + '[', 141, + '\\', 81, + ']', 142, + '^', 207, + '`', 254, + 's', 274, + '{', 130, + '|', 208, + '}', 132, + '~', 230, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(122); + if (lookahead > '@') ADVANCE(278); + END_STATE(); + case 123: + if (eof) ADVANCE(125); + ADVANCE_MAP( + '!', 229, + '"', 158, + '#', 74, + '%', 216, + '&', 205, + '\'', 159, + '(', 133, + ')', 135, + '*', 129, + '+', 210, + ',', 131, + '-', 212, + '.', 155, + '/', 214, + '0', 261, + ':', 136, + ';', 134, + '<', 148, + '=', 138, + '>', 151, + '?', 28, + '@', 280, + '[', 141, + '\\', 81, + ']', 142, + '^', 206, + '`', 254, + '{', 130, + '|', 209, + '}', 132, + '~', 230, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(123); + if (lookahead > '#') ADVANCE(278); + END_STATE(); + case 124: + if (eof) ADVANCE(125); + ADVANCE_MAP( + '!', 228, + '"', 158, + '#', 4, + '\'', 159, + '(', 133, + ')', 135, + '*', 127, + '+', 210, + ',', 131, + '-', 212, + '.', 26, + '/', 214, + '0', 261, + ':', 136, + ';', 134, + '<', 144, + '=', 140, + '>', 149, + '@', 280, + '[', 141, + '\\', 81, + ']', 142, + '`', 254, + '{', 130, + '}', 132, + '~', 230, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(124); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(278); + END_STATE(); + case 125: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 126: + ACCEPT_TOKEN(sym_hash_bang_line); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(126); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(219); + if (lookahead == '=') ADVANCE(179); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(218); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(221); + END_STATE(); + case 139: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(221); + if (lookahead == '>') ADVANCE(175); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(175); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym_html_character_reference); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(156); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(156); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(220); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(220); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(220); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(197); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(198); + END_STATE(); + case 152: + ACCEPT_TOKEN(sym_jsx_identifier); + if (lookahead == '$' || + lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_LT_SLASH); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_SLASH_GT); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 160: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(118); + if (lookahead == '*') ADVANCE(164); + if (lookahead == '/') ADVANCE(165); + if (lookahead != 0 && + lookahead != '"') ADVANCE(161); + END_STATE(); + case 161: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(118); + if (lookahead != 0 && + lookahead != '"') ADVANCE(161); + END_STATE(); + case 162: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(13); + if (lookahead == '/') ADVANCE(160); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(162); + if (lookahead != 0 && + lookahead != '"') ADVANCE(161); + END_STATE(); + case 163: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(24); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '/') ADVANCE(161); + if (lookahead != 0 && + lookahead != '"') ADVANCE(164); + END_STATE(); + case 164: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(24); + if (lookahead == '*') ADVANCE(163); + if (lookahead != 0 && + lookahead != '"') ADVANCE(164); + END_STATE(); + case 165: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(251); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(161); + if (lookahead != 0 && + lookahead != '"') ADVANCE(165); + END_STATE(); + case 166: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(119); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '/') ADVANCE(171); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(167); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(119); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(167); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(14); + if (lookahead == '/') ADVANCE(166); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(168); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(167); + END_STATE(); + case 169: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(25); + if (lookahead == '*') ADVANCE(169); + if (lookahead == '/') ADVANCE(167); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(170); + END_STATE(); + case 170: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(25); + if (lookahead == '*') ADVANCE(169); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(170); + END_STATE(); + case 171: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(252); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(167); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(171); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '#') ADVANCE(93); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_AMP2); + if (lookahead == '#') ADVANCE(93); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#') ADVANCE(161); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_AMP2); + if (lookahead == '#') ADVANCE(93); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(167); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 176: + ACCEPT_TOKEN(sym_optional_chain); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(189); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 196: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(190); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(185); + if (lookahead == '>') ADVANCE(200); + END_STATE(); + case 198: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(199); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(186); + END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(187); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_AMP3); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_AMP3); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '=') ADVANCE(183); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_AMP3); + if (lookahead == '&') ADVANCE(193); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(182); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(184); + if (lookahead == '|') ADVANCE(196); + END_STATE(); + case 209: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(195); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(231); + END_STATE(); + case 211: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(231); + if (lookahead == '=') ADVANCE(177); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(232); + END_STATE(); + case 213: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(232); + if (lookahead == '=') ADVANCE(178); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(253); + END_STATE(); + case 215: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(23); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '=') ADVANCE(180); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(181); + END_STATE(); + case 218: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(188); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(222); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(224); + END_STATE(); + case 224: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(191); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(223); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 232: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 233: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(235); + if (lookahead == '/') ADVANCE(237); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(238); + END_STATE(); + case 234: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(234); + if (lookahead == '/') ADVANCE(238); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(235); + END_STATE(); + case 235: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(234); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(235); + END_STATE(); + case 236: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '/') ADVANCE(233); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(236); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '"' && + lookahead != '\\') ADVANCE(238); + END_STATE(); + case 237: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(238); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(237); + END_STATE(); + case 238: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(238); + END_STATE(); + case 239: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(241); + if (lookahead == '/') ADVANCE(243); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(244); + END_STATE(); + case 240: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(240); + if (lookahead == '/') ADVANCE(244); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(241); + END_STATE(); + case 241: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(240); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(241); + END_STATE(); + case 242: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '/') ADVANCE(239); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(242); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\'' && + lookahead != '\\') ADVANCE(244); + END_STATE(); + case 243: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(244); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(243); + END_STATE(); + case 244: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(244); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 246: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(81); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 247: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\n' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(245); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(245); + END_STATE(); + case 249: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(248); + END_STATE(); + case 250: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 251: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(161); + if (lookahead == '"' || + lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); + if (lookahead != 0) ADVANCE(165); + END_STATE(); + case 252: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(167); + if (lookahead == '#' || + lookahead == '\'' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(253); + if (lookahead != 0) ADVANCE(171); + END_STATE(); + case 253: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != 0x2028 && + lookahead != 0x2029) ADVANCE(253); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_SLASH2); + END_STATE(); + case 257: + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '\n') SKIP(32); + if (lookahead == '/') ADVANCE(20); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(121); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(257); + if (lookahead != 0) ADVANCE(258); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '[') ADVANCE(75); + if (lookahead == '\\') ADVANCE(121); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '/') ADVANCE(258); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == '\\') ADVANCE(81); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(259); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 260: + ACCEPT_TOKEN(sym_number); + END_STATE(); + case 261: + ACCEPT_TOKEN(sym_number); + ADVANCE_MAP( + '.', 269, + '0', 263, + '_', 98, + 'n', 260, + 'B', 94, + 'b', 94, + 'E', 92, + 'e', 92, + 'O', 95, + 'o', 95, + 'X', 103, + 'x', 103, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(269); + if (lookahead == '_') ADVANCE(96); + if (lookahead == 'n') ADVANCE(260); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); + END_STATE(); + case 263: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(98); + if (lookahead == 'n') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(263); + END_STATE(); + case 264: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(94); + if (lookahead == 'n') ADVANCE(260); + if (lookahead == '0' || + lookahead == '1') ADVANCE(264); + END_STATE(); + case 265: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(95); + if (lookahead == 'n') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(265); + END_STATE(); + case 266: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(103); + if (lookahead == 'n') ADVANCE(260); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(266); + END_STATE(); + case 267: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(97); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); + END_STATE(); + case 268: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); + END_STATE(); + case 269: + ACCEPT_TOKEN(sym_number); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(267); + END_STATE(); + case 270: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(152); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == '$' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(270); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 271: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == 'a') ADVANCE(275); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 272: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == 'c') ADVANCE(277); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == 'i') ADVANCE(272); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 274: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == 't') ADVANCE(271); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 275: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == 't') ADVANCE(273); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 276: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(81); + if (lookahead == '{') ADVANCE(255); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 277: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(81); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(77); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 278: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(81); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(278); + END_STATE(); + case 279: + ACCEPT_TOKEN(sym_private_property_identifier); + if (lookahead == '\\') ADVANCE(80); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(279); + END_STATE(); + case 280: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 281: + ACCEPT_TOKEN(aux_sym_method_definition_token1); + if (lookahead == '\n') ADVANCE(281); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ADVANCE_MAP( + 'a', 1, + 'b', 2, + 'c', 3, + 'd', 4, + 'e', 5, + 'f', 6, + 'g', 7, + 'i', 8, + 'l', 9, + 'm', 10, + 'n', 11, + 'o', 12, + 'r', 13, + 's', 14, + 't', 15, + 'u', 16, + 'v', 17, + 'w', 18, + 'y', 19, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(0); + END_STATE(); + case 1: + if (lookahead == 's') ADVANCE(20); + if (lookahead == 'w') ADVANCE(21); + END_STATE(); + case 2: + if (lookahead == 'r') ADVANCE(22); + END_STATE(); + case 3: + if (lookahead == 'a') ADVANCE(23); + if (lookahead == 'l') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); + END_STATE(); + case 4: + if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'o') ADVANCE(27); + END_STATE(); + case 5: + if (lookahead == 'l') ADVANCE(28); + if (lookahead == 'x') ADVANCE(29); + END_STATE(); + case 6: + if (lookahead == 'a') ADVANCE(30); + if (lookahead == 'i') ADVANCE(31); + if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'r') ADVANCE(33); + if (lookahead == 'u') ADVANCE(34); + END_STATE(); + case 7: + if (lookahead == 'e') ADVANCE(35); + END_STATE(); + case 8: + if (lookahead == 'f') ADVANCE(36); + if (lookahead == 'm') ADVANCE(37); + if (lookahead == 'n') ADVANCE(38); + END_STATE(); + case 9: + if (lookahead == 'e') ADVANCE(39); + END_STATE(); + case 10: + if (lookahead == 'e') ADVANCE(40); + END_STATE(); + case 11: + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'u') ADVANCE(42); + END_STATE(); + case 12: + if (lookahead == 'f') ADVANCE(43); + END_STATE(); + case 13: + if (lookahead == 'e') ADVANCE(44); + END_STATE(); + case 14: + if (lookahead == 'e') ADVANCE(45); + if (lookahead == 't') ADVANCE(46); + if (lookahead == 'u') ADVANCE(47); + if (lookahead == 'w') ADVANCE(48); + END_STATE(); + case 15: + if (lookahead == 'a') ADVANCE(49); + if (lookahead == 'h') ADVANCE(50); + if (lookahead == 'r') ADVANCE(51); + if (lookahead == 'y') ADVANCE(52); + END_STATE(); + case 16: + if (lookahead == 'n') ADVANCE(53); + if (lookahead == 's') ADVANCE(54); + END_STATE(); + case 17: + if (lookahead == 'a') ADVANCE(55); + if (lookahead == 'o') ADVANCE(56); + END_STATE(); + case 18: + if (lookahead == 'h') ADVANCE(57); + if (lookahead == 'i') ADVANCE(58); + END_STATE(); + case 19: + if (lookahead == 'i') ADVANCE(59); + END_STATE(); + case 20: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(60); + END_STATE(); + case 21: + if (lookahead == 'a') ADVANCE(61); + END_STATE(); + case 22: + if (lookahead == 'e') ADVANCE(62); + END_STATE(); + case 23: + if (lookahead == 's') ADVANCE(63); + if (lookahead == 't') ADVANCE(64); + END_STATE(); + case 24: + if (lookahead == 'a') ADVANCE(65); + END_STATE(); + case 25: + if (lookahead == 'n') ADVANCE(66); + END_STATE(); + case 26: + 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(70); + END_STATE(); + case 29: + if (lookahead == 'p') ADVANCE(71); + if (lookahead == 't') ADVANCE(72); + END_STATE(); + case 30: + if (lookahead == 'l') ADVANCE(73); + END_STATE(); + case 31: + if (lookahead == 'n') ADVANCE(74); + END_STATE(); + case 32: + if (lookahead == 'r') ADVANCE(75); + END_STATE(); + case 33: + if (lookahead == 'o') ADVANCE(76); + END_STATE(); + case 34: + if (lookahead == 'n') ADVANCE(77); + END_STATE(); + case 35: + if (lookahead == 't') ADVANCE(78); + END_STATE(); + case 36: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 37: + if (lookahead == 'p') ADVANCE(79); + END_STATE(); + case 38: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 's') ADVANCE(80); + END_STATE(); + case 39: + if (lookahead == 't') ADVANCE(81); + END_STATE(); + case 40: + if (lookahead == 't') ADVANCE(82); + END_STATE(); + case 41: + if (lookahead == 'w') ADVANCE(83); + END_STATE(); + case 42: + if (lookahead == 'l') ADVANCE(84); + END_STATE(); + case 43: + ACCEPT_TOKEN(anon_sym_of); + END_STATE(); + case 44: + if (lookahead == 't') ADVANCE(85); + END_STATE(); + case 45: + if (lookahead == 't') ADVANCE(86); + END_STATE(); + case 46: + if (lookahead == 'a') ADVANCE(87); + END_STATE(); + case 47: + if (lookahead == 'p') ADVANCE(88); + END_STATE(); + case 48: + if (lookahead == 'i') ADVANCE(89); + END_STATE(); + case 49: + if (lookahead == 'r') ADVANCE(90); + END_STATE(); + case 50: + if (lookahead == 'i') ADVANCE(91); + if (lookahead == 'r') ADVANCE(92); + END_STATE(); + case 51: + if (lookahead == 'u') ADVANCE(93); + if (lookahead == 'y') ADVANCE(94); + END_STATE(); + case 52: + if (lookahead == 'p') ADVANCE(95); + END_STATE(); + case 53: + if (lookahead == 'd') ADVANCE(96); + END_STATE(); + case 54: + if (lookahead == 'i') ADVANCE(97); + END_STATE(); + case 55: + if (lookahead == 'r') ADVANCE(98); + END_STATE(); + case 56: + if (lookahead == 'i') ADVANCE(99); + END_STATE(); + case 57: + if (lookahead == 'i') ADVANCE(100); + END_STATE(); + case 58: + if (lookahead == 't') ADVANCE(101); + END_STATE(); + case 59: + if (lookahead == 'e') ADVANCE(102); + END_STATE(); + case 60: + if (lookahead == 'n') ADVANCE(103); + END_STATE(); + case 61: + if (lookahead == 'i') ADVANCE(104); + END_STATE(); + case 62: + if (lookahead == 'a') ADVANCE(105); + END_STATE(); + case 63: + if (lookahead == 'e') ADVANCE(106); + END_STATE(); + case 64: + if (lookahead == 'c') ADVANCE(107); + END_STATE(); + case 65: + if (lookahead == 's') ADVANCE(108); + END_STATE(); + case 66: + if (lookahead == 's') ADVANCE(109); + if (lookahead == 't') ADVANCE(110); + END_STATE(); + case 67: + if (lookahead == 'u') ADVANCE(111); + END_STATE(); + case 68: + if (lookahead == 'a') ADVANCE(112); + END_STATE(); + case 69: + if (lookahead == 'e') ADVANCE(113); + END_STATE(); + case 70: + if (lookahead == 'e') ADVANCE(114); + END_STATE(); + case 71: + if (lookahead == 'o') ADVANCE(115); + END_STATE(); + case 72: + if (lookahead == 'e') ADVANCE(116); + END_STATE(); + case 73: + if (lookahead == 's') ADVANCE(117); + END_STATE(); + case 74: + if (lookahead == 'a') ADVANCE(118); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 76: + if (lookahead == 'm') ADVANCE(119); + END_STATE(); + case 77: + if (lookahead == 'c') ADVANCE(120); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_get); + END_STATE(); + case 79: + if (lookahead == 'o') ADVANCE(121); + END_STATE(); + case 80: + if (lookahead == 't') ADVANCE(122); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 82: + if (lookahead == 'a') ADVANCE(123); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_new); + END_STATE(); + case 84: + if (lookahead == 'l') ADVANCE(124); + END_STATE(); + case 85: + if (lookahead == 'u') ADVANCE(125); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_set); + END_STATE(); + case 87: + if (lookahead == 't') ADVANCE(126); + END_STATE(); + case 88: + if (lookahead == 'e') ADVANCE(127); + END_STATE(); + case 89: + if (lookahead == 't') ADVANCE(128); + END_STATE(); + case 90: + if (lookahead == 'g') ADVANCE(129); + END_STATE(); + case 91: + if (lookahead == 's') ADVANCE(130); + END_STATE(); + case 92: + if (lookahead == 'o') ADVANCE(131); + END_STATE(); + case 93: + if (lookahead == 'e') ADVANCE(132); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 95: + if (lookahead == 'e') ADVANCE(133); + END_STATE(); + case 96: + if (lookahead == 'e') ADVANCE(134); + END_STATE(); + case 97: + if (lookahead == 'n') ADVANCE(135); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_var); + END_STATE(); + case 99: + if (lookahead == 'd') ADVANCE(136); + END_STATE(); + case 100: + if (lookahead == 'l') ADVANCE(137); + END_STATE(); + case 101: + if (lookahead == 'h') ADVANCE(138); + END_STATE(); + case 102: + if (lookahead == 'l') ADVANCE(139); + END_STATE(); + case 103: + if (lookahead == 'c') ADVANCE(140); + END_STATE(); + case 104: + if (lookahead == 't') ADVANCE(141); + END_STATE(); + case 105: + if (lookahead == 'k') ADVANCE(142); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 107: + if (lookahead == 'h') ADVANCE(143); + END_STATE(); + case 108: + if (lookahead == 's') ADVANCE(144); + END_STATE(); + case 109: + if (lookahead == 't') ADVANCE(145); + END_STATE(); + case 110: + if (lookahead == 'i') ADVANCE(146); + END_STATE(); + case 111: + if (lookahead == 'g') ADVANCE(147); + END_STATE(); + case 112: + if (lookahead == 'u') ADVANCE(148); + END_STATE(); + case 113: + if (lookahead == 't') ADVANCE(149); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 115: + if (lookahead == 'r') ADVANCE(150); + END_STATE(); + case 116: + if (lookahead == 'n') ADVANCE(151); + END_STATE(); + case 117: + if (lookahead == 'e') ADVANCE(152); + END_STATE(); + case 118: + if (lookahead == 'l') ADVANCE(153); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_from); + END_STATE(); + case 120: + if (lookahead == 't') ADVANCE(154); + END_STATE(); + case 121: + if (lookahead == 'r') ADVANCE(155); + END_STATE(); + case 122: + if (lookahead == 'a') ADVANCE(156); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_meta); + END_STATE(); + case 124: + ACCEPT_TOKEN(sym_null); + END_STATE(); + case 125: + if (lookahead == 'r') ADVANCE(157); + END_STATE(); + case 126: + if (lookahead == 'i') ADVANCE(158); + END_STATE(); + case 127: + if (lookahead == 'r') ADVANCE(159); + END_STATE(); + case 128: + if (lookahead == 'c') ADVANCE(160); + END_STATE(); + case 129: + if (lookahead == 'e') ADVANCE(161); + END_STATE(); + case 130: + ACCEPT_TOKEN(sym_this); + END_STATE(); + case 131: + if (lookahead == 'w') ADVANCE(162); + END_STATE(); + case 132: + ACCEPT_TOKEN(sym_true); + END_STATE(); + case 133: + if (lookahead == 'o') ADVANCE(163); + END_STATE(); + case 134: + if (lookahead == 'f') ADVANCE(164); + END_STATE(); + case 135: + if (lookahead == 'g') ADVANCE(165); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_void); + END_STATE(); + case 137: + if (lookahead == 'e') ADVANCE(166); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_with); + END_STATE(); + case 139: + if (lookahead == 'd') ADVANCE(167); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_async); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_await); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_catch); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 146: + if (lookahead == 'n') ADVANCE(168); + END_STATE(); + case 147: + if (lookahead == 'g') ADVANCE(169); + END_STATE(); + case 148: + if (lookahead == 'l') ADVANCE(170); + END_STATE(); + case 149: + if (lookahead == 'e') ADVANCE(171); + END_STATE(); + case 150: + if (lookahead == 't') ADVANCE(172); + END_STATE(); + case 151: + if (lookahead == 'd') ADVANCE(173); + END_STATE(); + case 152: + ACCEPT_TOKEN(sym_false); + END_STATE(); + case 153: + if (lookahead == 'l') ADVANCE(174); + END_STATE(); + case 154: + if (lookahead == 'i') ADVANCE(175); + END_STATE(); + case 155: + if (lookahead == 't') ADVANCE(176); + END_STATE(); + case 156: + if (lookahead == 'n') ADVANCE(177); + END_STATE(); + case 157: + if (lookahead == 'n') ADVANCE(178); + END_STATE(); + case 158: + if (lookahead == 'c') ADVANCE(179); + END_STATE(); + case 159: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 160: + if (lookahead == 'h') ADVANCE(180); + END_STATE(); + case 161: + if (lookahead == 't') ADVANCE(181); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_throw); + END_STATE(); + case 163: + if (lookahead == 'f') ADVANCE(182); + END_STATE(); + case 164: + if (lookahead == 'i') ADVANCE(183); + END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym_using); + END_STATE(); + case 166: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 167: + ACCEPT_TOKEN(anon_sym_yield); + END_STATE(); + case 168: + if (lookahead == 'u') ADVANCE(184); + END_STATE(); + case 169: + if (lookahead == 'e') ADVANCE(185); + END_STATE(); + case 170: + if (lookahead == 't') ADVANCE(186); + END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_delete); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_export); + END_STATE(); + case 173: + if (lookahead == 's') ADVANCE(187); + END_STATE(); + case 174: + if (lookahead == 'y') ADVANCE(188); + END_STATE(); + case 175: + if (lookahead == 'o') ADVANCE(189); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 177: + if (lookahead == 'c') ADVANCE(190); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_target); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_typeof); + END_STATE(); + case 183: + if (lookahead == 'n') ADVANCE(191); + END_STATE(); + case 184: + if (lookahead == 'e') ADVANCE(192); + END_STATE(); + case 185: + if (lookahead == 'r') ADVANCE(193); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_extends); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_finally); + END_STATE(); + case 189: + if (lookahead == 'n') ADVANCE(194); + END_STATE(); + case 190: + if (lookahead == 'e') ADVANCE(195); + END_STATE(); + case 191: + if (lookahead == 'e') ADVANCE(196); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_debugger); + END_STATE(); + case 194: + 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: + return false; + } +} + +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 124, .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 = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [12] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [13] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [14] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [18] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [19] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [20] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [21] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [22] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [23] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [24] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [25] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [26] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [27] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [28] = {.lex_state = 124, .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 = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [41] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [42] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [43] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [44] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [45] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [46] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [47] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [48] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [49] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [50] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [53] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [54] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [55] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [56] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [57] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [58] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [59] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [60] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [61] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [62] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [63] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [64] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [65] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [66] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [67] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [68] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [69] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [70] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [71] = {.lex_state = 124, .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 = 123, .external_lex_state = 4, .reserved_word_set_id = 2}, + [81] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 2}, + [82] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 2}, + [83] = {.lex_state = 123, .external_lex_state = 4, .reserved_word_set_id = 2}, + [84] = {.lex_state = 123, .external_lex_state = 4, .reserved_word_set_id = 2}, + [85] = {.lex_state = 123, .external_lex_state = 4, .reserved_word_set_id = 2}, + [86] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [87] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [88] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [89] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [90] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [91] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [92] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [93] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [94] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [95] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [96] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [97] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [98] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [99] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [100] = {.lex_state = 123, .external_lex_state = 3, .reserved_word_set_id = 5}, + [101] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [102] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [103] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [104] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [105] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [106] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [107] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [108] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [109] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [110] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [111] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [112] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [113] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 1}, + [114] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 6}, + [115] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [116] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [117] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [118] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [119] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [120] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [121] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [122] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [123] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [124] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [125] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [126] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [127] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [128] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [129] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [130] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [131] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [132] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [136] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 1}, + [137] = {.lex_state = 3, .external_lex_state = 3}, + [138] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [139] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [140] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [141] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [142] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 7}, + [143] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [144] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [145] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [146] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [147] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [148] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [149] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [150] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [151] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [152] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [153] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [154] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [155] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [156] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [159] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [160] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [161] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [162] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [163] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [164] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [168] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [169] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [170] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [171] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [172] = {.lex_state = 3, .external_lex_state = 3}, + [173] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [174] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [175] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [176] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [177] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [178] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [179] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [180] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [181] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [182] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [183] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [184] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [185] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [186] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [187] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [188] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [189] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [190] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [191] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [194] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [195] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [196] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [197] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [198] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [199] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [200] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [201] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [202] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [203] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [204] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [205] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [206] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [207] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [208] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [209] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [212] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [215] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [218] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [219] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [220] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [221] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [222] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [223] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [224] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [225] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [226] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [227] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [228] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [229] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [230] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [231] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [232] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [233] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [234] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [235] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [236] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [237] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [238] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [239] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [240] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [241] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [242] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [243] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [244] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [245] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [246] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [247] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [248] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [249] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [250] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [251] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [252] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [253] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [254] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [255] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [256] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [257] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [258] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [259] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [260] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [261] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [262] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [263] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [264] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [265] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [266] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [267] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [268] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [269] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [270] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [271] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [272] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [273] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [274] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [275] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [276] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [277] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [278] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [279] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [280] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [281] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [282] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [283] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [284] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [285] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [286] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [287] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [288] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [289] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [290] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [291] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [292] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [293] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [294] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [295] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [296] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [297] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [298] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [299] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [300] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [301] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [302] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [303] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [304] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [305] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [306] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [307] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [308] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [309] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [310] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [311] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [312] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [313] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [314] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [315] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [316] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [317] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [318] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [319] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [320] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [321] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [322] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [323] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [324] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [325] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [326] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [327] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [328] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [329] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [330] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [331] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [332] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [333] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [334] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [335] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [336] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [337] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [338] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [339] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [340] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [341] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [342] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [343] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [344] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [345] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [346] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [347] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [348] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [349] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [350] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [351] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [352] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [353] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [354] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [355] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 7}, + [356] = {.lex_state = 124, .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 = 124, .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 = 124, .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 = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 10}, + [385] = {.lex_state = 124, .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 = 124, .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 = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [392] = {.lex_state = 124, .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 = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [395] = {.lex_state = 124, .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 = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [399] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [400] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [401] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 11}, + [402] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [403] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [404] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [405] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 11}, + [408] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [409] = {.lex_state = 124, .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 = 124, .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 = 124, .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 = 124, .external_lex_state = 5, .reserved_word_set_id = 12}, + [416] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [419] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [420] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [421] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [422] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [423] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [424] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [425] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [426] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [427] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [428] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [429] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [430] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [431] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [432] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [433] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [434] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [435] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [436] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [437] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [438] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [439] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [440] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [441] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [442] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [443] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [444] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [445] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [446] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [447] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [448] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [449] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [450] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [451] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [452] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [453] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [454] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [455] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [456] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [457] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [458] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [459] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [460] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [461] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [462] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [463] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [464] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [465] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [466] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [467] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [468] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [469] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [470] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [471] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [472] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [473] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [474] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [475] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [476] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [477] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [478] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [479] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [480] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [481] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [482] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [483] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [484] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [485] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [486] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 12}, + [487] = {.lex_state = 124, .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 = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [507] = {.lex_state = 3, .external_lex_state = 4}, + [508] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [509] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [510] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [511] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [512] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [513] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [514] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [515] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [516] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [517] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [518] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [519] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [520] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [521] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [522] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [523] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [524] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 4}, + [525] = {.lex_state = 124, .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 = 123, .external_lex_state = 4}, + [582] = {.lex_state = 123, .external_lex_state = 3}, + [583] = {.lex_state = 123, .external_lex_state = 4}, + [584] = {.lex_state = 123, .external_lex_state = 3}, + [585] = {.lex_state = 123, .external_lex_state = 4}, + [586] = {.lex_state = 123, .external_lex_state = 3}, + [587] = {.lex_state = 123, .external_lex_state = 4}, + [588] = {.lex_state = 123, .external_lex_state = 4}, + [589] = {.lex_state = 123, .external_lex_state = 4}, + [590] = {.lex_state = 123, .external_lex_state = 4}, + [591] = {.lex_state = 123, .external_lex_state = 4}, + [592] = {.lex_state = 123, .external_lex_state = 4}, + [593] = {.lex_state = 123, .external_lex_state = 4}, + [594] = {.lex_state = 123, .external_lex_state = 4}, + [595] = {.lex_state = 123, .external_lex_state = 4}, + [596] = {.lex_state = 123, .external_lex_state = 4}, + [597] = {.lex_state = 123, .external_lex_state = 4}, + [598] = {.lex_state = 7, .external_lex_state = 4}, + [599] = {.lex_state = 123, .external_lex_state = 4}, + [600] = {.lex_state = 123, .external_lex_state = 4}, + [601] = {.lex_state = 123, .external_lex_state = 4}, + [602] = {.lex_state = 123, .external_lex_state = 4}, + [603] = {.lex_state = 123, .external_lex_state = 4}, + [604] = {.lex_state = 123, .external_lex_state = 4}, + [605] = {.lex_state = 123, .external_lex_state = 4}, + [606] = {.lex_state = 123, .external_lex_state = 4}, + [607] = {.lex_state = 123, .external_lex_state = 4}, + [608] = {.lex_state = 123, .external_lex_state = 4}, + [609] = {.lex_state = 123, .external_lex_state = 4}, + [610] = {.lex_state = 123, .external_lex_state = 4}, + [611] = {.lex_state = 123, .external_lex_state = 4}, + [612] = {.lex_state = 123, .external_lex_state = 4}, + [613] = {.lex_state = 123, .external_lex_state = 4}, + [614] = {.lex_state = 123, .external_lex_state = 4}, + [615] = {.lex_state = 123, .external_lex_state = 4}, + [616] = {.lex_state = 123, .external_lex_state = 4}, + [617] = {.lex_state = 123, .external_lex_state = 4}, + [618] = {.lex_state = 123, .external_lex_state = 4}, + [619] = {.lex_state = 123, .external_lex_state = 4}, + [620] = {.lex_state = 123, .external_lex_state = 4}, + [621] = {.lex_state = 123, .external_lex_state = 4}, + [622] = {.lex_state = 123, .external_lex_state = 4}, + [623] = {.lex_state = 123, .external_lex_state = 4}, + [624] = {.lex_state = 123, .external_lex_state = 4}, + [625] = {.lex_state = 123, .external_lex_state = 4}, + [626] = {.lex_state = 123, .external_lex_state = 4}, + [627] = {.lex_state = 123, .external_lex_state = 4}, + [628] = {.lex_state = 123, .external_lex_state = 4}, + [629] = {.lex_state = 123, .external_lex_state = 4}, + [630] = {.lex_state = 123, .external_lex_state = 4}, + [631] = {.lex_state = 123, .external_lex_state = 4}, + [632] = {.lex_state = 123, .external_lex_state = 4}, + [633] = {.lex_state = 123, .external_lex_state = 4}, + [634] = {.lex_state = 123, .external_lex_state = 4}, + [635] = {.lex_state = 123, .external_lex_state = 4}, + [636] = {.lex_state = 123, .external_lex_state = 4}, + [637] = {.lex_state = 123, .external_lex_state = 4}, + [638] = {.lex_state = 123, .external_lex_state = 4}, + [639] = {.lex_state = 123, .external_lex_state = 4}, + [640] = {.lex_state = 123, .external_lex_state = 4}, + [641] = {.lex_state = 123, .external_lex_state = 4}, + [642] = {.lex_state = 123, .external_lex_state = 4}, + [643] = {.lex_state = 123, .external_lex_state = 4}, + [644] = {.lex_state = 123, .external_lex_state = 4}, + [645] = {.lex_state = 123, .external_lex_state = 4}, + [646] = {.lex_state = 123, .external_lex_state = 4}, + [647] = {.lex_state = 123, .external_lex_state = 4}, + [648] = {.lex_state = 123, .external_lex_state = 4}, + [649] = {.lex_state = 123, .external_lex_state = 4}, + [650] = {.lex_state = 123, .external_lex_state = 4}, + [651] = {.lex_state = 123, .external_lex_state = 4}, + [652] = {.lex_state = 123, .external_lex_state = 4}, + [653] = {.lex_state = 123, .external_lex_state = 4}, + [654] = {.lex_state = 123, .external_lex_state = 4}, + [655] = {.lex_state = 123, .external_lex_state = 4}, + [656] = {.lex_state = 123, .external_lex_state = 4}, + [657] = {.lex_state = 123, .external_lex_state = 3}, + [658] = {.lex_state = 123, .external_lex_state = 4}, + [659] = {.lex_state = 123, .external_lex_state = 4}, + [660] = {.lex_state = 123, .external_lex_state = 4}, + [661] = {.lex_state = 123, .external_lex_state = 4}, + [662] = {.lex_state = 123, .external_lex_state = 4}, + [663] = {.lex_state = 123, .external_lex_state = 4}, + [664] = {.lex_state = 123, .external_lex_state = 4}, + [665] = {.lex_state = 123, .external_lex_state = 4}, + [666] = {.lex_state = 123, .external_lex_state = 4}, + [667] = {.lex_state = 123, .external_lex_state = 4}, + [668] = {.lex_state = 123, .external_lex_state = 4}, + [669] = {.lex_state = 123, .external_lex_state = 4}, + [670] = {.lex_state = 123, .external_lex_state = 4}, + [671] = {.lex_state = 123, .external_lex_state = 4}, + [672] = {.lex_state = 123, .external_lex_state = 4}, + [673] = {.lex_state = 123, .external_lex_state = 4}, + [674] = {.lex_state = 123, .external_lex_state = 4}, + [675] = {.lex_state = 123, .external_lex_state = 4}, + [676] = {.lex_state = 123, .external_lex_state = 4}, + [677] = {.lex_state = 123, .external_lex_state = 4}, + [678] = {.lex_state = 123, .external_lex_state = 4}, + [679] = {.lex_state = 123, .external_lex_state = 4}, + [680] = {.lex_state = 123, .external_lex_state = 4}, + [681] = {.lex_state = 123, .external_lex_state = 3}, + [682] = {.lex_state = 123, .external_lex_state = 3}, + [683] = {.lex_state = 123, .external_lex_state = 3}, + [684] = {.lex_state = 123, .external_lex_state = 3}, + [685] = {.lex_state = 123, .external_lex_state = 3}, + [686] = {.lex_state = 123, .external_lex_state = 3}, + [687] = {.lex_state = 123, .external_lex_state = 3}, + [688] = {.lex_state = 123, .external_lex_state = 3}, + [689] = {.lex_state = 123, .external_lex_state = 3}, + [690] = {.lex_state = 123, .external_lex_state = 4}, + [691] = {.lex_state = 123, .external_lex_state = 3}, + [692] = {.lex_state = 123, .external_lex_state = 3}, + [693] = {.lex_state = 123, .external_lex_state = 3}, + [694] = {.lex_state = 123, .external_lex_state = 3}, + [695] = {.lex_state = 123, .external_lex_state = 3}, + [696] = {.lex_state = 123, .external_lex_state = 3}, + [697] = {.lex_state = 123, .external_lex_state = 3}, + [698] = {.lex_state = 123, .external_lex_state = 3}, + [699] = {.lex_state = 123, .external_lex_state = 3}, + [700] = {.lex_state = 123, .external_lex_state = 3}, + [701] = {.lex_state = 7, .external_lex_state = 3}, + [702] = {.lex_state = 123, .external_lex_state = 3}, + [703] = {.lex_state = 123, .external_lex_state = 3}, + [704] = {.lex_state = 123, .external_lex_state = 3}, + [705] = {.lex_state = 123, .external_lex_state = 3}, + [706] = {.lex_state = 123, .external_lex_state = 3}, + [707] = {.lex_state = 123, .external_lex_state = 3}, + [708] = {.lex_state = 123, .external_lex_state = 3}, + [709] = {.lex_state = 123, .external_lex_state = 3}, + [710] = {.lex_state = 123, .external_lex_state = 3}, + [711] = {.lex_state = 123, .external_lex_state = 3}, + [712] = {.lex_state = 123, .external_lex_state = 3}, + [713] = {.lex_state = 123, .external_lex_state = 3}, + [714] = {.lex_state = 123, .external_lex_state = 3}, + [715] = {.lex_state = 123, .external_lex_state = 3}, + [716] = {.lex_state = 123, .external_lex_state = 3}, + [717] = {.lex_state = 123, .external_lex_state = 3}, + [718] = {.lex_state = 123, .external_lex_state = 3}, + [719] = {.lex_state = 123, .external_lex_state = 3}, + [720] = {.lex_state = 123, .external_lex_state = 3}, + [721] = {.lex_state = 123, .external_lex_state = 3}, + [722] = {.lex_state = 123, .external_lex_state = 3}, + [723] = {.lex_state = 123, .external_lex_state = 3}, + [724] = {.lex_state = 123, .external_lex_state = 3}, + [725] = {.lex_state = 123, .external_lex_state = 3}, + [726] = {.lex_state = 123, .external_lex_state = 3}, + [727] = {.lex_state = 123, .external_lex_state = 3}, + [728] = {.lex_state = 123, .external_lex_state = 3}, + [729] = {.lex_state = 123, .external_lex_state = 3}, + [730] = {.lex_state = 123, .external_lex_state = 4}, + [731] = {.lex_state = 123, .external_lex_state = 4}, + [732] = {.lex_state = 123, .external_lex_state = 3}, + [733] = {.lex_state = 123, .external_lex_state = 4}, + [734] = {.lex_state = 123, .external_lex_state = 3}, + [735] = {.lex_state = 123, .external_lex_state = 3}, + [736] = {.lex_state = 123, .external_lex_state = 3}, + [737] = {.lex_state = 123, .external_lex_state = 3}, + [738] = {.lex_state = 123, .external_lex_state = 3}, + [739] = {.lex_state = 123, .external_lex_state = 3}, + [740] = {.lex_state = 123, .external_lex_state = 3}, + [741] = {.lex_state = 123, .external_lex_state = 3}, + [742] = {.lex_state = 123, .external_lex_state = 3}, + [743] = {.lex_state = 123, .external_lex_state = 3}, + [744] = {.lex_state = 123, .external_lex_state = 3}, + [745] = {.lex_state = 123, .external_lex_state = 3}, + [746] = {.lex_state = 123, .external_lex_state = 3}, + [747] = {.lex_state = 123, .external_lex_state = 3}, + [748] = {.lex_state = 123, .external_lex_state = 3}, + [749] = {.lex_state = 123, .external_lex_state = 3}, + [750] = {.lex_state = 123, .external_lex_state = 3}, + [751] = {.lex_state = 123, .external_lex_state = 3}, + [752] = {.lex_state = 123, .external_lex_state = 3}, + [753] = {.lex_state = 123, .external_lex_state = 3}, + [754] = {.lex_state = 123, .external_lex_state = 3}, + [755] = {.lex_state = 123, .external_lex_state = 3}, + [756] = {.lex_state = 123, .external_lex_state = 3}, + [757] = {.lex_state = 123, .external_lex_state = 3}, + [758] = {.lex_state = 123, .external_lex_state = 3}, + [759] = {.lex_state = 123, .external_lex_state = 3}, + [760] = {.lex_state = 123, .external_lex_state = 3}, + [761] = {.lex_state = 123, .external_lex_state = 4}, + [762] = {.lex_state = 123, .external_lex_state = 3}, + [763] = {.lex_state = 123, .external_lex_state = 3}, + [764] = {.lex_state = 123, .external_lex_state = 3}, + [765] = {.lex_state = 123, .external_lex_state = 4}, + [766] = {.lex_state = 123, .external_lex_state = 3}, + [767] = {.lex_state = 123, .external_lex_state = 3}, + [768] = {.lex_state = 123, .external_lex_state = 3}, + [769] = {.lex_state = 123, .external_lex_state = 3}, + [770] = {.lex_state = 123, .external_lex_state = 3}, + [771] = {.lex_state = 123, .external_lex_state = 3}, + [772] = {.lex_state = 123, .external_lex_state = 3}, + [773] = {.lex_state = 123, .external_lex_state = 3}, + [774] = {.lex_state = 123, .external_lex_state = 3}, + [775] = {.lex_state = 123, .external_lex_state = 3}, + [776] = {.lex_state = 123, .external_lex_state = 3}, + [777] = {.lex_state = 123, .external_lex_state = 3}, + [778] = {.lex_state = 123, .external_lex_state = 3}, + [779] = {.lex_state = 123, .external_lex_state = 3}, + [780] = {.lex_state = 123, .external_lex_state = 3}, + [781] = {.lex_state = 123, .external_lex_state = 3}, + [782] = {.lex_state = 123, .external_lex_state = 3}, + [783] = {.lex_state = 123, .external_lex_state = 3}, + [784] = {.lex_state = 123, .external_lex_state = 3}, + [785] = {.lex_state = 123, .external_lex_state = 3}, + [786] = {.lex_state = 123, .external_lex_state = 3}, + [787] = {.lex_state = 123, .external_lex_state = 3}, + [788] = {.lex_state = 123, .external_lex_state = 3}, + [789] = {.lex_state = 123, .external_lex_state = 3}, + [790] = {.lex_state = 123, .external_lex_state = 3}, + [791] = {.lex_state = 123, .external_lex_state = 3}, + [792] = {.lex_state = 123, .external_lex_state = 3}, + [793] = {.lex_state = 123, .external_lex_state = 3}, + [794] = {.lex_state = 123, .external_lex_state = 3}, + [795] = {.lex_state = 7, .external_lex_state = 3}, + [796] = {.lex_state = 123, .external_lex_state = 3}, + [797] = {.lex_state = 123, .external_lex_state = 3}, + [798] = {.lex_state = 123, .external_lex_state = 3}, + [799] = {.lex_state = 123, .external_lex_state = 3}, + [800] = {.lex_state = 123, .external_lex_state = 3}, + [801] = {.lex_state = 123, .external_lex_state = 3}, + [802] = {.lex_state = 123, .external_lex_state = 3}, + [803] = {.lex_state = 123, .external_lex_state = 3}, + [804] = {.lex_state = 123, .external_lex_state = 4}, + [805] = {.lex_state = 123, .external_lex_state = 3}, + [806] = {.lex_state = 123, .external_lex_state = 3}, + [807] = {.lex_state = 123, .external_lex_state = 3}, + [808] = {.lex_state = 123, .external_lex_state = 3}, + [809] = {.lex_state = 123, .external_lex_state = 3}, + [810] = {.lex_state = 123, .external_lex_state = 3}, + [811] = {.lex_state = 123, .external_lex_state = 3}, + [812] = {.lex_state = 123, .external_lex_state = 4}, + [813] = {.lex_state = 123, .external_lex_state = 3}, + [814] = {.lex_state = 123, .external_lex_state = 3}, + [815] = {.lex_state = 123, .external_lex_state = 3}, + [816] = {.lex_state = 123, .external_lex_state = 3}, + [817] = {.lex_state = 123, .external_lex_state = 4}, + [818] = {.lex_state = 123, .external_lex_state = 3}, + [819] = {.lex_state = 123, .external_lex_state = 4}, + [820] = {.lex_state = 123, .external_lex_state = 4}, + [821] = {.lex_state = 123, .external_lex_state = 3}, + [822] = {.lex_state = 123, .external_lex_state = 3}, + [823] = {.lex_state = 123, .external_lex_state = 3}, + [824] = {.lex_state = 123, .external_lex_state = 4}, + [825] = {.lex_state = 123, .external_lex_state = 4}, + [826] = {.lex_state = 123, .external_lex_state = 3}, + [827] = {.lex_state = 123, .external_lex_state = 4}, + [828] = {.lex_state = 5, .external_lex_state = 2}, + [829] = {.lex_state = 123, .external_lex_state = 4}, + [830] = {.lex_state = 123, .external_lex_state = 4}, + [831] = {.lex_state = 123, .external_lex_state = 4}, + [832] = {.lex_state = 123, .external_lex_state = 4}, + [833] = {.lex_state = 123, .external_lex_state = 4}, + [834] = {.lex_state = 123, .external_lex_state = 4}, + [835] = {.lex_state = 123, .external_lex_state = 4}, + [836] = {.lex_state = 123, .external_lex_state = 4}, + [837] = {.lex_state = 123, .external_lex_state = 4}, + [838] = {.lex_state = 123, .external_lex_state = 4}, + [839] = {.lex_state = 123, .external_lex_state = 4}, + [840] = {.lex_state = 123, .external_lex_state = 4}, + [841] = {.lex_state = 123, .external_lex_state = 4}, + [842] = {.lex_state = 123, .external_lex_state = 4}, + [843] = {.lex_state = 123, .external_lex_state = 4}, + [844] = {.lex_state = 123, .external_lex_state = 4}, + [845] = {.lex_state = 123, .external_lex_state = 4}, + [846] = {.lex_state = 123, .external_lex_state = 4}, + [847] = {.lex_state = 123, .external_lex_state = 4}, + [848] = {.lex_state = 123, .external_lex_state = 3}, + [849] = {.lex_state = 123, .external_lex_state = 4}, + [850] = {.lex_state = 123, .external_lex_state = 4}, + [851] = {.lex_state = 123, .external_lex_state = 4}, + [852] = {.lex_state = 123, .external_lex_state = 4}, + [853] = {.lex_state = 123, .external_lex_state = 4}, + [854] = {.lex_state = 123, .external_lex_state = 4}, + [855] = {.lex_state = 123, .external_lex_state = 3}, + [856] = {.lex_state = 123, .external_lex_state = 4}, + [857] = {.lex_state = 123, .external_lex_state = 4}, + [858] = {.lex_state = 123, .external_lex_state = 4}, + [859] = {.lex_state = 123, .external_lex_state = 4}, + [860] = {.lex_state = 123, .external_lex_state = 4}, + [861] = {.lex_state = 123, .external_lex_state = 4}, + [862] = {.lex_state = 123, .external_lex_state = 4}, + [863] = {.lex_state = 123, .external_lex_state = 4}, + [864] = {.lex_state = 5, .external_lex_state = 2}, + [865] = {.lex_state = 123, .external_lex_state = 4}, + [866] = {.lex_state = 123, .external_lex_state = 4}, + [867] = {.lex_state = 5, .external_lex_state = 2}, + [868] = {.lex_state = 123, .external_lex_state = 4}, + [869] = {.lex_state = 5, .external_lex_state = 2}, + [870] = {.lex_state = 5, .external_lex_state = 2}, + [871] = {.lex_state = 123, .external_lex_state = 4}, + [872] = {.lex_state = 123, .external_lex_state = 4}, + [873] = {.lex_state = 123, .external_lex_state = 4}, + [874] = {.lex_state = 123, .external_lex_state = 4}, + [875] = {.lex_state = 123, .external_lex_state = 4}, + [876] = {.lex_state = 123, .external_lex_state = 4}, + [877] = {.lex_state = 123, .external_lex_state = 4}, + [878] = {.lex_state = 123, .external_lex_state = 4}, + [879] = {.lex_state = 123, .external_lex_state = 4}, + [880] = {.lex_state = 123, .external_lex_state = 4}, + [881] = {.lex_state = 123, .external_lex_state = 4}, + [882] = {.lex_state = 123, .external_lex_state = 4}, + [883] = {.lex_state = 123, .external_lex_state = 4}, + [884] = {.lex_state = 123, .external_lex_state = 4}, + [885] = {.lex_state = 123, .external_lex_state = 4}, + [886] = {.lex_state = 5, .external_lex_state = 2}, + [887] = {.lex_state = 123, .external_lex_state = 4}, + [888] = {.lex_state = 123, .external_lex_state = 4}, + [889] = {.lex_state = 123, .external_lex_state = 4}, + [890] = {.lex_state = 7, .external_lex_state = 4}, + [891] = {.lex_state = 123, .external_lex_state = 3}, + [892] = {.lex_state = 123, .external_lex_state = 4}, + [893] = {.lex_state = 123, .external_lex_state = 4}, + [894] = {.lex_state = 123, .external_lex_state = 4}, + [895] = {.lex_state = 123, .external_lex_state = 4}, + [896] = {.lex_state = 123, .external_lex_state = 4}, + [897] = {.lex_state = 123, .external_lex_state = 4}, + [898] = {.lex_state = 123, .external_lex_state = 4}, + [899] = {.lex_state = 123, .external_lex_state = 4}, + [900] = {.lex_state = 123, .external_lex_state = 4}, + [901] = {.lex_state = 123, .external_lex_state = 4}, + [902] = {.lex_state = 123, .external_lex_state = 4}, + [903] = {.lex_state = 123, .external_lex_state = 4}, + [904] = {.lex_state = 123, .external_lex_state = 4}, + [905] = {.lex_state = 123, .external_lex_state = 4}, + [906] = {.lex_state = 123, .external_lex_state = 4}, + [907] = {.lex_state = 123, .external_lex_state = 4}, + [908] = {.lex_state = 123, .external_lex_state = 4}, + [909] = {.lex_state = 123, .external_lex_state = 4}, + [910] = {.lex_state = 123, .external_lex_state = 4}, + [911] = {.lex_state = 123, .external_lex_state = 4}, + [912] = {.lex_state = 123, .external_lex_state = 4}, + [913] = {.lex_state = 123, .external_lex_state = 4}, + [914] = {.lex_state = 123, .external_lex_state = 4}, + [915] = {.lex_state = 123, .external_lex_state = 3}, + [916] = {.lex_state = 123, .external_lex_state = 4}, + [917] = {.lex_state = 123, .external_lex_state = 4}, + [918] = {.lex_state = 123, .external_lex_state = 4}, + [919] = {.lex_state = 123, .external_lex_state = 4}, + [920] = {.lex_state = 123, .external_lex_state = 4}, + [921] = {.lex_state = 123, .external_lex_state = 4}, + [922] = {.lex_state = 123, .external_lex_state = 4}, + [923] = {.lex_state = 123, .external_lex_state = 4}, + [924] = {.lex_state = 123, .external_lex_state = 4}, + [925] = {.lex_state = 123, .external_lex_state = 4}, + [926] = {.lex_state = 123, .external_lex_state = 4}, + [927] = {.lex_state = 123, .external_lex_state = 4}, + [928] = {.lex_state = 123, .external_lex_state = 4}, + [929] = {.lex_state = 123, .external_lex_state = 4}, + [930] = {.lex_state = 123, .external_lex_state = 4}, + [931] = {.lex_state = 123, .external_lex_state = 4}, + [932] = {.lex_state = 123, .external_lex_state = 4}, + [933] = {.lex_state = 123, .external_lex_state = 4}, + [934] = {.lex_state = 123, .external_lex_state = 4}, + [935] = {.lex_state = 123, .external_lex_state = 4}, + [936] = {.lex_state = 123, .external_lex_state = 4}, + [937] = {.lex_state = 123, .external_lex_state = 4}, + [938] = {.lex_state = 123, .external_lex_state = 4}, + [939] = {.lex_state = 123, .external_lex_state = 4}, + [940] = {.lex_state = 123, .external_lex_state = 4}, + [941] = {.lex_state = 123, .external_lex_state = 4}, + [942] = {.lex_state = 123, .external_lex_state = 4}, + [943] = {.lex_state = 123, .external_lex_state = 4}, + [944] = {.lex_state = 123, .external_lex_state = 4}, + [945] = {.lex_state = 123, .external_lex_state = 4}, + [946] = {.lex_state = 123, .external_lex_state = 4}, + [947] = {.lex_state = 123, .external_lex_state = 4}, + [948] = {.lex_state = 123, .external_lex_state = 4}, + [949] = {.lex_state = 123, .external_lex_state = 4}, + [950] = {.lex_state = 123, .external_lex_state = 4}, + [951] = {.lex_state = 123, .external_lex_state = 4}, + [952] = {.lex_state = 123, .external_lex_state = 4}, + [953] = {.lex_state = 123, .external_lex_state = 4}, + [954] = {.lex_state = 123, .external_lex_state = 4}, + [955] = {.lex_state = 123, .external_lex_state = 4}, + [956] = {.lex_state = 123, .external_lex_state = 4}, + [957] = {.lex_state = 123, .external_lex_state = 4}, + [958] = {.lex_state = 123, .external_lex_state = 4}, + [959] = {.lex_state = 123, .external_lex_state = 4}, + [960] = {.lex_state = 123, .external_lex_state = 4}, + [961] = {.lex_state = 123, .external_lex_state = 4}, + [962] = {.lex_state = 123, .external_lex_state = 4}, + [963] = {.lex_state = 123, .external_lex_state = 4}, + [964] = {.lex_state = 123, .external_lex_state = 4}, + [965] = {.lex_state = 123, .external_lex_state = 4}, + [966] = {.lex_state = 123, .external_lex_state = 4}, + [967] = {.lex_state = 123, .external_lex_state = 4}, + [968] = {.lex_state = 123, .external_lex_state = 4}, + [969] = {.lex_state = 5, .external_lex_state = 2}, + [970] = {.lex_state = 123, .external_lex_state = 4}, + [971] = {.lex_state = 123, .external_lex_state = 4}, + [972] = {.lex_state = 123, .external_lex_state = 4}, + [973] = {.lex_state = 123, .external_lex_state = 4}, + [974] = {.lex_state = 123, .external_lex_state = 4}, + [975] = {.lex_state = 123, .external_lex_state = 4}, + [976] = {.lex_state = 123, .external_lex_state = 4}, + [977] = {.lex_state = 123, .external_lex_state = 4}, + [978] = {.lex_state = 123, .external_lex_state = 4}, + [979] = {.lex_state = 123, .external_lex_state = 4}, + [980] = {.lex_state = 123, .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 = 124, .external_lex_state = 2}, + [987] = {.lex_state = 5, .external_lex_state = 2}, + [988] = {.lex_state = 5, .external_lex_state = 2}, + [989] = {.lex_state = 124, .external_lex_state = 2}, + [990] = {.lex_state = 5, .external_lex_state = 2}, + [991] = {.lex_state = 5, .external_lex_state = 2}, + [992] = {.lex_state = 124, .external_lex_state = 2}, + [993] = {.lex_state = 124, .external_lex_state = 2}, + [994] = {.lex_state = 124, .external_lex_state = 2}, + [995] = {.lex_state = 124, .external_lex_state = 2}, + [996] = {.lex_state = 124, .external_lex_state = 2}, + [997] = {.lex_state = 124, .external_lex_state = 2}, + [998] = {.lex_state = 124, .external_lex_state = 2}, + [999] = {.lex_state = 124, .external_lex_state = 2}, + [1000] = {.lex_state = 124, .external_lex_state = 2}, + [1001] = {.lex_state = 124, .external_lex_state = 2}, + [1002] = {.lex_state = 124, .external_lex_state = 2}, + [1003] = {.lex_state = 124, .external_lex_state = 2}, + [1004] = {.lex_state = 124, .external_lex_state = 2}, + [1005] = {.lex_state = 124, .external_lex_state = 2}, + [1006] = {.lex_state = 124, .external_lex_state = 2}, + [1007] = {.lex_state = 124, .external_lex_state = 2}, + [1008] = {.lex_state = 124, .external_lex_state = 2}, + [1009] = {.lex_state = 124, .external_lex_state = 2}, + [1010] = {.lex_state = 124, .external_lex_state = 5}, + [1011] = {.lex_state = 124, .external_lex_state = 2}, + [1012] = {.lex_state = 124, .external_lex_state = 2}, + [1013] = {.lex_state = 124, .external_lex_state = 2}, + [1014] = {.lex_state = 124, .external_lex_state = 2}, + [1015] = {.lex_state = 5, .external_lex_state = 2}, + [1016] = {.lex_state = 124, .external_lex_state = 2}, + [1017] = {.lex_state = 124, .external_lex_state = 5}, + [1018] = {.lex_state = 124, .external_lex_state = 2}, + [1019] = {.lex_state = 124, .external_lex_state = 5}, + [1020] = {.lex_state = 124, .external_lex_state = 2}, + [1021] = {.lex_state = 124, .external_lex_state = 2}, + [1022] = {.lex_state = 124, .external_lex_state = 2}, + [1023] = {.lex_state = 5, .external_lex_state = 2}, + [1024] = {.lex_state = 124, .external_lex_state = 5}, + [1025] = {.lex_state = 124, .external_lex_state = 5}, + [1026] = {.lex_state = 124, .external_lex_state = 5}, + [1027] = {.lex_state = 5, .external_lex_state = 2}, + [1028] = {.lex_state = 124, .external_lex_state = 5}, + [1029] = {.lex_state = 124, .external_lex_state = 2}, + [1030] = {.lex_state = 124, .external_lex_state = 2}, + [1031] = {.lex_state = 124, .external_lex_state = 5}, + [1032] = {.lex_state = 124, .external_lex_state = 5}, + [1033] = {.lex_state = 124, .external_lex_state = 5}, + [1034] = {.lex_state = 124, .external_lex_state = 5}, + [1035] = {.lex_state = 9, .external_lex_state = 2}, + [1036] = {.lex_state = 124, .external_lex_state = 5}, + [1037] = {.lex_state = 5, .external_lex_state = 2}, + [1038] = {.lex_state = 5, .external_lex_state = 2}, + [1039] = {.lex_state = 9, .external_lex_state = 2}, + [1040] = {.lex_state = 5, .external_lex_state = 2}, + [1041] = {.lex_state = 5, .external_lex_state = 5}, + [1042] = {.lex_state = 5, .external_lex_state = 2}, + [1043] = {.lex_state = 5, .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 = 2}, + [1048] = {.lex_state = 5, .external_lex_state = 2}, + [1049] = {.lex_state = 5, .external_lex_state = 5}, + [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 = 124, .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 = 124, .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 = 5, .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 = 5, .external_lex_state = 2}, + [1073] = {.lex_state = 124, .external_lex_state = 2}, + [1074] = {.lex_state = 124, .external_lex_state = 2}, + [1075] = {.lex_state = 5, .external_lex_state = 2}, + [1076] = {.lex_state = 124, .external_lex_state = 2}, + [1077] = {.lex_state = 5, .external_lex_state = 2}, + [1078] = {.lex_state = 5, .external_lex_state = 2}, + [1079] = {.lex_state = 5, .external_lex_state = 2}, + [1080] = {.lex_state = 124, .external_lex_state = 2}, + [1081] = {.lex_state = 124, .external_lex_state = 2}, + [1082] = {.lex_state = 5, .external_lex_state = 2}, + [1083] = {.lex_state = 124, .external_lex_state = 2}, + [1084] = {.lex_state = 124, .external_lex_state = 2}, + [1085] = {.lex_state = 124, .external_lex_state = 2}, + [1086] = {.lex_state = 124, .external_lex_state = 2}, + [1087] = {.lex_state = 5, .external_lex_state = 2}, + [1088] = {.lex_state = 5, .external_lex_state = 2}, + [1089] = {.lex_state = 124, .external_lex_state = 2}, + [1090] = {.lex_state = 5, .external_lex_state = 2}, + [1091] = {.lex_state = 124, .external_lex_state = 2}, + [1092] = {.lex_state = 124, .external_lex_state = 2}, + [1093] = {.lex_state = 124, .external_lex_state = 2}, + [1094] = {.lex_state = 124, .external_lex_state = 2}, + [1095] = {.lex_state = 124, .external_lex_state = 2}, + [1096] = {.lex_state = 124, .external_lex_state = 2}, + [1097] = {.lex_state = 124, .external_lex_state = 2}, + [1098] = {.lex_state = 124, .external_lex_state = 2}, + [1099] = {.lex_state = 124, .external_lex_state = 2}, + [1100] = {.lex_state = 124, .external_lex_state = 2}, + [1101] = {.lex_state = 5, .external_lex_state = 2}, + [1102] = {.lex_state = 124, .external_lex_state = 2}, + [1103] = {.lex_state = 124, .external_lex_state = 2}, + [1104] = {.lex_state = 5, .external_lex_state = 2}, + [1105] = {.lex_state = 5, .external_lex_state = 2}, + [1106] = {.lex_state = 124, .external_lex_state = 2}, + [1107] = {.lex_state = 124, .external_lex_state = 2}, + [1108] = {.lex_state = 124, .external_lex_state = 2}, + [1109] = {.lex_state = 124, .external_lex_state = 2}, + [1110] = {.lex_state = 124, .external_lex_state = 2}, + [1111] = {.lex_state = 124, .external_lex_state = 2}, + [1112] = {.lex_state = 124, .external_lex_state = 2}, + [1113] = {.lex_state = 124, .external_lex_state = 2}, + [1114] = {.lex_state = 124, .external_lex_state = 2}, + [1115] = {.lex_state = 124, .external_lex_state = 2}, + [1116] = {.lex_state = 124, .external_lex_state = 2}, + [1117] = {.lex_state = 124, .external_lex_state = 2}, + [1118] = {.lex_state = 124, .external_lex_state = 2}, + [1119] = {.lex_state = 124, .external_lex_state = 2}, + [1120] = {.lex_state = 124, .external_lex_state = 2}, + [1121] = {.lex_state = 124, .external_lex_state = 2}, + [1122] = {.lex_state = 124, .external_lex_state = 2}, + [1123] = {.lex_state = 124, .external_lex_state = 2}, + [1124] = {.lex_state = 124, .external_lex_state = 2}, + [1125] = {.lex_state = 124, .external_lex_state = 2}, + [1126] = {.lex_state = 124, .external_lex_state = 2}, + [1127] = {.lex_state = 124, .external_lex_state = 2}, + [1128] = {.lex_state = 124, .external_lex_state = 2}, + [1129] = {.lex_state = 124, .external_lex_state = 2}, + [1130] = {.lex_state = 124, .external_lex_state = 2}, + [1131] = {.lex_state = 124, .external_lex_state = 2}, + [1132] = {.lex_state = 124, .external_lex_state = 2}, + [1133] = {.lex_state = 124, .external_lex_state = 2}, + [1134] = {.lex_state = 124, .external_lex_state = 2}, + [1135] = {.lex_state = 124, .external_lex_state = 2}, + [1136] = {.lex_state = 124, .external_lex_state = 2}, + [1137] = {.lex_state = 124, .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 = 9, .external_lex_state = 6}, + [1145] = {.lex_state = 9, .external_lex_state = 6}, + [1146] = {.lex_state = 9, .external_lex_state = 6}, + [1147] = {.lex_state = 9, .external_lex_state = 6}, + [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 = 9, .external_lex_state = 6}, + [1152] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1153] = {.lex_state = 9, .external_lex_state = 6}, + [1154] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1155] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1156] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1157] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1158] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1159] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1160] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1161] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1162] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1163] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1164] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1165] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1166] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1167] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1168] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1169] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1170] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1171] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1172] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1173] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1174] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1175] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1176] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1177] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1178] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1179] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1180] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1181] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1182] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1183] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1184] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1185] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1186] = {.lex_state = 124, .external_lex_state = 2}, + [1187] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1188] = {.lex_state = 124, .external_lex_state = 2}, + [1189] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1190] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1191] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1192] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1193] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1194] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1195] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1196] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1197] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1198] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1199] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1200] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1201] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1202] = {.lex_state = 124, .external_lex_state = 2}, + [1203] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1204] = {.lex_state = 124, .external_lex_state = 2}, + [1205] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1206] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1207] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1208] = {.lex_state = 124, .external_lex_state = 2}, + [1209] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1210] = {.lex_state = 124, .external_lex_state = 2}, + [1211] = {.lex_state = 124, .external_lex_state = 2}, + [1212] = {.lex_state = 124, .external_lex_state = 5}, + [1213] = {.lex_state = 124, .external_lex_state = 2}, + [1214] = {.lex_state = 124, .external_lex_state = 2}, + [1215] = {.lex_state = 124, .external_lex_state = 5}, + [1216] = {.lex_state = 124, .external_lex_state = 5}, + [1217] = {.lex_state = 124, .external_lex_state = 5}, + [1218] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1219] = {.lex_state = 124, .external_lex_state = 2}, + [1220] = {.lex_state = 124, .external_lex_state = 2}, + [1221] = {.lex_state = 124, .external_lex_state = 2}, + [1222] = {.lex_state = 124, .external_lex_state = 2}, + [1223] = {.lex_state = 124, .external_lex_state = 2}, + [1224] = {.lex_state = 124, .external_lex_state = 2}, + [1225] = {.lex_state = 9, .external_lex_state = 6}, + [1226] = {.lex_state = 10, .external_lex_state = 2}, + [1227] = {.lex_state = 17, .external_lex_state = 2}, + [1228] = {.lex_state = 9, .external_lex_state = 6}, + [1229] = {.lex_state = 124, .external_lex_state = 5}, + [1230] = {.lex_state = 124, .external_lex_state = 2}, + [1231] = {.lex_state = 9, .external_lex_state = 6}, + [1232] = {.lex_state = 124, .external_lex_state = 5}, + [1233] = {.lex_state = 124, .external_lex_state = 2}, + [1234] = {.lex_state = 15, .external_lex_state = 7}, + [1235] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1236] = {.lex_state = 124, .external_lex_state = 5}, + [1237] = {.lex_state = 15, .external_lex_state = 7}, + [1238] = {.lex_state = 124, .external_lex_state = 2}, + [1239] = {.lex_state = 9, .external_lex_state = 6}, + [1240] = {.lex_state = 15, .external_lex_state = 7}, + [1241] = {.lex_state = 124, .external_lex_state = 5}, + [1242] = {.lex_state = 9, .external_lex_state = 6}, + [1243] = {.lex_state = 9, .external_lex_state = 6}, + [1244] = {.lex_state = 9, .external_lex_state = 6}, + [1245] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1246] = {.lex_state = 9, .external_lex_state = 6}, + [1247] = {.lex_state = 9, .external_lex_state = 6}, + [1248] = {.lex_state = 124, .external_lex_state = 5}, + [1249] = {.lex_state = 9, .external_lex_state = 6}, + [1250] = {.lex_state = 15, .external_lex_state = 7}, + [1251] = {.lex_state = 10, .external_lex_state = 2}, + [1252] = {.lex_state = 124, .external_lex_state = 5}, + [1253] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1254] = {.lex_state = 124, .external_lex_state = 5}, + [1255] = {.lex_state = 124, .external_lex_state = 2}, + [1256] = {.lex_state = 124, .external_lex_state = 5}, + [1257] = {.lex_state = 10, .external_lex_state = 2}, + [1258] = {.lex_state = 17, .external_lex_state = 2}, + [1259] = {.lex_state = 9, .external_lex_state = 6}, + [1260] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1261] = {.lex_state = 9, .external_lex_state = 6}, + [1262] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1263] = {.lex_state = 17, .external_lex_state = 2}, + [1264] = {.lex_state = 124, .external_lex_state = 5}, + [1265] = {.lex_state = 9, .external_lex_state = 6}, + [1266] = {.lex_state = 9, .external_lex_state = 6}, + [1267] = {.lex_state = 124, .external_lex_state = 2}, + [1268] = {.lex_state = 9, .external_lex_state = 6}, + [1269] = {.lex_state = 9, .external_lex_state = 6}, + [1270] = {.lex_state = 124, .external_lex_state = 5}, + [1271] = {.lex_state = 15, .external_lex_state = 7}, + [1272] = {.lex_state = 124, .external_lex_state = 5}, + [1273] = {.lex_state = 124, .external_lex_state = 5}, + [1274] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1275] = {.lex_state = 9, .external_lex_state = 6}, + [1276] = {.lex_state = 9, .external_lex_state = 6}, + [1277] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1278] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1279] = {.lex_state = 124, .external_lex_state = 5}, + [1280] = {.lex_state = 124, .external_lex_state = 2}, + [1281] = {.lex_state = 124, .external_lex_state = 5}, + [1282] = {.lex_state = 124, .external_lex_state = 2}, + [1283] = {.lex_state = 124, .external_lex_state = 5}, + [1284] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1285] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1286] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1287] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1288] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1289] = {.lex_state = 124, .external_lex_state = 2}, + [1290] = {.lex_state = 124, .external_lex_state = 2}, + [1291] = {.lex_state = 124, .external_lex_state = 5}, + [1292] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1293] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1294] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1295] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1296] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1297] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1298] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1299] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1300] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1301] = {.lex_state = 124, .external_lex_state = 5}, + [1302] = {.lex_state = 124, .external_lex_state = 2}, + [1303] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1304] = {.lex_state = 124, .external_lex_state = 2}, + [1305] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1306] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1307] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1308] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1309] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1310] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1311] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1312] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1313] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1314] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1315] = {.lex_state = 124, .external_lex_state = 2}, + [1316] = {.lex_state = 124, .external_lex_state = 2}, + [1317] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1318] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1319] = {.lex_state = 124, .external_lex_state = 2}, + [1320] = {.lex_state = 124, .external_lex_state = 2}, + [1321] = {.lex_state = 124, .external_lex_state = 2}, + [1322] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1323] = {.lex_state = 124, .external_lex_state = 2}, + [1324] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1325] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1326] = {.lex_state = 124, .external_lex_state = 5}, + [1327] = {.lex_state = 12, .external_lex_state = 8}, + [1328] = {.lex_state = 124, .external_lex_state = 2}, + [1329] = {.lex_state = 124, .external_lex_state = 2}, + [1330] = {.lex_state = 124, .external_lex_state = 2}, + [1331] = {.lex_state = 12, .external_lex_state = 8}, + [1332] = {.lex_state = 12, .external_lex_state = 8}, + [1333] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1334] = {.lex_state = 19, .external_lex_state = 8}, + [1335] = {.lex_state = 124, .external_lex_state = 2}, + [1336] = {.lex_state = 124, .external_lex_state = 2}, + [1337] = {.lex_state = 124, .external_lex_state = 2}, + [1338] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1339] = {.lex_state = 19, .external_lex_state = 8}, + [1340] = {.lex_state = 124, .external_lex_state = 2}, + [1341] = {.lex_state = 124, .external_lex_state = 2}, + [1342] = {.lex_state = 124, .external_lex_state = 2}, + [1343] = {.lex_state = 12, .external_lex_state = 8}, + [1344] = {.lex_state = 124, .external_lex_state = 2}, + [1345] = {.lex_state = 124, .external_lex_state = 5}, + [1346] = {.lex_state = 124, .external_lex_state = 2}, + [1347] = {.lex_state = 12, .external_lex_state = 8}, + [1348] = {.lex_state = 19, .external_lex_state = 8}, + [1349] = {.lex_state = 124, .external_lex_state = 5}, + [1350] = {.lex_state = 124, .external_lex_state = 2}, + [1351] = {.lex_state = 124, .external_lex_state = 5}, + [1352] = {.lex_state = 19, .external_lex_state = 8}, + [1353] = {.lex_state = 124, .external_lex_state = 5}, + [1354] = {.lex_state = 124, .external_lex_state = 2}, + [1355] = {.lex_state = 124, .external_lex_state = 2}, + [1356] = {.lex_state = 12, .external_lex_state = 8}, + [1357] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1358] = {.lex_state = 124, .external_lex_state = 5}, + [1359] = {.lex_state = 124, .external_lex_state = 2}, + [1360] = {.lex_state = 124, .external_lex_state = 2}, + [1361] = {.lex_state = 124, .external_lex_state = 5}, + [1362] = {.lex_state = 19, .external_lex_state = 8}, + [1363] = {.lex_state = 124, .external_lex_state = 2}, + [1364] = {.lex_state = 124, .external_lex_state = 2}, + [1365] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1366] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1367] = {.lex_state = 124, .external_lex_state = 2}, + [1368] = {.lex_state = 124, .external_lex_state = 5}, + [1369] = {.lex_state = 19, .external_lex_state = 8}, + [1370] = {.lex_state = 19, .external_lex_state = 8}, + [1371] = {.lex_state = 124, .external_lex_state = 2}, + [1372] = {.lex_state = 124, .external_lex_state = 5}, + [1373] = {.lex_state = 124, .external_lex_state = 2}, + [1374] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1375] = {.lex_state = 124, .external_lex_state = 5}, + [1376] = {.lex_state = 124, .external_lex_state = 5}, + [1377] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1378] = {.lex_state = 124, .external_lex_state = 5}, + [1379] = {.lex_state = 12, .external_lex_state = 8}, + [1380] = {.lex_state = 124, .external_lex_state = 2}, + [1381] = {.lex_state = 124, .external_lex_state = 2}, + [1382] = {.lex_state = 124, .external_lex_state = 5}, + [1383] = {.lex_state = 124, .external_lex_state = 2}, + [1384] = {.lex_state = 15, .external_lex_state = 7}, + [1385] = {.lex_state = 124, .external_lex_state = 5}, + [1386] = {.lex_state = 3, .external_lex_state = 2}, + [1387] = {.lex_state = 124, .external_lex_state = 2}, + [1388] = {.lex_state = 124, .external_lex_state = 2}, + [1389] = {.lex_state = 12, .external_lex_state = 8}, + [1390] = {.lex_state = 17, .external_lex_state = 2}, + [1391] = {.lex_state = 19, .external_lex_state = 8}, + [1392] = {.lex_state = 10, .external_lex_state = 2}, + [1393] = {.lex_state = 19, .external_lex_state = 8}, + [1394] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1395] = {.lex_state = 124, .external_lex_state = 5}, + [1396] = {.lex_state = 3, .external_lex_state = 2}, + [1397] = {.lex_state = 124, .external_lex_state = 2}, + [1398] = {.lex_state = 124, .external_lex_state = 2}, + [1399] = {.lex_state = 12, .external_lex_state = 8}, + [1400] = {.lex_state = 124, .external_lex_state = 5}, + [1401] = {.lex_state = 124, .external_lex_state = 5}, + [1402] = {.lex_state = 124, .external_lex_state = 2}, + [1403] = {.lex_state = 124, .external_lex_state = 2}, + [1404] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1405] = {.lex_state = 124, .external_lex_state = 5}, + [1406] = {.lex_state = 124, .external_lex_state = 2}, + [1407] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1408] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1409] = {.lex_state = 124, .external_lex_state = 2}, + [1410] = {.lex_state = 124, .external_lex_state = 2}, + [1411] = {.lex_state = 124, .external_lex_state = 2}, + [1412] = {.lex_state = 124, .external_lex_state = 2}, + [1413] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1414] = {.lex_state = 124, .external_lex_state = 2}, + [1415] = {.lex_state = 124, .external_lex_state = 2}, + [1416] = {.lex_state = 124, .external_lex_state = 2}, + [1417] = {.lex_state = 124, .external_lex_state = 2}, + [1418] = {.lex_state = 124, .external_lex_state = 2}, + [1419] = {.lex_state = 124, .external_lex_state = 2}, + [1420] = {.lex_state = 124, .external_lex_state = 2}, + [1421] = {.lex_state = 124, .external_lex_state = 2}, + [1422] = {.lex_state = 124, .external_lex_state = 2}, + [1423] = {.lex_state = 124, .external_lex_state = 2}, + [1424] = {.lex_state = 124, .external_lex_state = 2}, + [1425] = {.lex_state = 124, .external_lex_state = 2}, + [1426] = {.lex_state = 124, .external_lex_state = 2}, + [1427] = {.lex_state = 6, .external_lex_state = 2}, + [1428] = {.lex_state = 124, .external_lex_state = 2}, + [1429] = {.lex_state = 124, .external_lex_state = 2}, + [1430] = {.lex_state = 124, .external_lex_state = 2}, + [1431] = {.lex_state = 124, .external_lex_state = 2}, + [1432] = {.lex_state = 124, .external_lex_state = 5}, + [1433] = {.lex_state = 124, .external_lex_state = 2}, + [1434] = {.lex_state = 124, .external_lex_state = 2}, + [1435] = {.lex_state = 6, .external_lex_state = 2}, + [1436] = {.lex_state = 124, .external_lex_state = 2}, + [1437] = {.lex_state = 6, .external_lex_state = 2}, + [1438] = {.lex_state = 124, .external_lex_state = 2}, + [1439] = {.lex_state = 124, .external_lex_state = 2}, + [1440] = {.lex_state = 124, .external_lex_state = 2}, + [1441] = {.lex_state = 124, .external_lex_state = 2}, + [1442] = {.lex_state = 124, .external_lex_state = 2}, + [1443] = {.lex_state = 124, .external_lex_state = 5}, + [1444] = {.lex_state = 3, .external_lex_state = 2}, + [1445] = {.lex_state = 124, .external_lex_state = 5}, + [1446] = {.lex_state = 124, .external_lex_state = 2}, + [1447] = {.lex_state = 124, .external_lex_state = 2}, + [1448] = {.lex_state = 124, .external_lex_state = 2}, + [1449] = {.lex_state = 124, .external_lex_state = 2}, + [1450] = {.lex_state = 124, .external_lex_state = 2}, + [1451] = {.lex_state = 124, .external_lex_state = 2}, + [1452] = {.lex_state = 124, .external_lex_state = 2}, + [1453] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1454] = {.lex_state = 124, .external_lex_state = 2}, + [1455] = {.lex_state = 124, .external_lex_state = 2}, + [1456] = {.lex_state = 124, .external_lex_state = 2}, + [1457] = {.lex_state = 124, .external_lex_state = 2}, + [1458] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1459] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1460] = {.lex_state = 3, .external_lex_state = 2}, + [1461] = {.lex_state = 124, .external_lex_state = 2}, + [1462] = {.lex_state = 124, .external_lex_state = 5}, + [1463] = {.lex_state = 124, .external_lex_state = 2}, + [1464] = {.lex_state = 124, .external_lex_state = 2}, + [1465] = {.lex_state = 124, .external_lex_state = 2}, + [1466] = {.lex_state = 124, .external_lex_state = 2}, + [1467] = {.lex_state = 124, .external_lex_state = 2}, + [1468] = {.lex_state = 124, .external_lex_state = 2}, + [1469] = {.lex_state = 124, .external_lex_state = 5}, + [1470] = {.lex_state = 124, .external_lex_state = 2}, + [1471] = {.lex_state = 124, .external_lex_state = 2}, + [1472] = {.lex_state = 124, .external_lex_state = 2}, + [1473] = {.lex_state = 124, .external_lex_state = 2}, + [1474] = {.lex_state = 124, .external_lex_state = 2}, + [1475] = {.lex_state = 124, .external_lex_state = 2}, + [1476] = {.lex_state = 124, .external_lex_state = 2}, + [1477] = {.lex_state = 124, .external_lex_state = 5}, + [1478] = {.lex_state = 124, .external_lex_state = 2}, + [1479] = {.lex_state = 124, .external_lex_state = 5}, + [1480] = {.lex_state = 124, .external_lex_state = 5}, + [1481] = {.lex_state = 124, .external_lex_state = 2}, + [1482] = {.lex_state = 124, .external_lex_state = 2}, + [1483] = {.lex_state = 124, .external_lex_state = 2}, + [1484] = {.lex_state = 124, .external_lex_state = 2}, + [1485] = {.lex_state = 6, .external_lex_state = 2}, + [1486] = {.lex_state = 124, .external_lex_state = 2}, + [1487] = {.lex_state = 124, .external_lex_state = 2}, + [1488] = {.lex_state = 124, .external_lex_state = 2}, + [1489] = {.lex_state = 124, .external_lex_state = 2}, + [1490] = {.lex_state = 124, .external_lex_state = 5}, + [1491] = {.lex_state = 124, .external_lex_state = 2}, + [1492] = {.lex_state = 124, .external_lex_state = 2}, + [1493] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1494] = {.lex_state = 124, .external_lex_state = 2}, + [1495] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1496] = {.lex_state = 124, .external_lex_state = 2}, + [1497] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1498] = {.lex_state = 124, .external_lex_state = 5}, + [1499] = {.lex_state = 124, .external_lex_state = 5}, + [1500] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1501] = {.lex_state = 124, .external_lex_state = 2}, + [1502] = {.lex_state = 124, .external_lex_state = 2}, + [1503] = {.lex_state = 124, .external_lex_state = 2}, + [1504] = {.lex_state = 124, .external_lex_state = 5}, + [1505] = {.lex_state = 124, .external_lex_state = 2}, + [1506] = {.lex_state = 124, .external_lex_state = 5}, + [1507] = {.lex_state = 124, .external_lex_state = 5}, + [1508] = {.lex_state = 124, .external_lex_state = 2}, + [1509] = {.lex_state = 124, .external_lex_state = 2}, + [1510] = {.lex_state = 124, .external_lex_state = 2}, + [1511] = {.lex_state = 124, .external_lex_state = 5}, + [1512] = {.lex_state = 6, .external_lex_state = 2}, + [1513] = {.lex_state = 124, .external_lex_state = 2}, + [1514] = {.lex_state = 124, .external_lex_state = 5}, + [1515] = {.lex_state = 124, .external_lex_state = 2}, + [1516] = {.lex_state = 124, .external_lex_state = 2}, + [1517] = {.lex_state = 6, .external_lex_state = 2}, + [1518] = {.lex_state = 124, .external_lex_state = 2}, + [1519] = {.lex_state = 124, .external_lex_state = 2}, + [1520] = {.lex_state = 124, .external_lex_state = 2}, + [1521] = {.lex_state = 124, .external_lex_state = 2}, + [1522] = {.lex_state = 124, .external_lex_state = 2}, + [1523] = {.lex_state = 124, .external_lex_state = 5}, + [1524] = {.lex_state = 124, .external_lex_state = 2}, + [1525] = {.lex_state = 124, .external_lex_state = 2}, + [1526] = {.lex_state = 124, .external_lex_state = 2}, + [1527] = {.lex_state = 124, .external_lex_state = 2}, + [1528] = {.lex_state = 124, .external_lex_state = 2}, + [1529] = {.lex_state = 124, .external_lex_state = 2}, + [1530] = {.lex_state = 124, .external_lex_state = 2}, + [1531] = {.lex_state = 124, .external_lex_state = 5}, + [1532] = {.lex_state = 124, .external_lex_state = 2}, + [1533] = {.lex_state = 124, .external_lex_state = 2}, + [1534] = {.lex_state = 124, .external_lex_state = 2}, + [1535] = {.lex_state = 124, .external_lex_state = 2}, + [1536] = {.lex_state = 124, .external_lex_state = 2}, + [1537] = {.lex_state = 124, .external_lex_state = 5}, + [1538] = {.lex_state = 124, .external_lex_state = 2}, + [1539] = {.lex_state = 124, .external_lex_state = 2}, + [1540] = {.lex_state = 124, .external_lex_state = 2}, + [1541] = {.lex_state = 124, .external_lex_state = 2}, + [1542] = {.lex_state = 124, .external_lex_state = 2}, + [1543] = {.lex_state = 124, .external_lex_state = 2}, + [1544] = {.lex_state = 124, .external_lex_state = 2}, + [1545] = {.lex_state = 124, .external_lex_state = 2}, + [1546] = {.lex_state = 124, .external_lex_state = 2}, + [1547] = {.lex_state = 124, .external_lex_state = 2}, + [1548] = {.lex_state = 124, .external_lex_state = 2}, + [1549] = {.lex_state = 124, .external_lex_state = 2}, + [1550] = {.lex_state = 124, .external_lex_state = 2}, + [1551] = {.lex_state = 124, .external_lex_state = 2}, + [1552] = {.lex_state = 124, .external_lex_state = 2}, + [1553] = {.lex_state = 124, .external_lex_state = 2}, + [1554] = {.lex_state = 124, .external_lex_state = 5}, + [1555] = {.lex_state = 124, .external_lex_state = 2}, + [1556] = {.lex_state = 124, .external_lex_state = 2}, + [1557] = {.lex_state = 124, .external_lex_state = 2}, + [1558] = {.lex_state = 124, .external_lex_state = 2}, + [1559] = {.lex_state = 124, .external_lex_state = 2}, + [1560] = {.lex_state = 124, .external_lex_state = 2}, + [1561] = {.lex_state = 124, .external_lex_state = 2}, + [1562] = {.lex_state = 124, .external_lex_state = 2}, + [1563] = {.lex_state = 124, .external_lex_state = 2}, + [1564] = {.lex_state = 124, .external_lex_state = 2}, + [1565] = {.lex_state = 124, .external_lex_state = 2}, + [1566] = {.lex_state = 124, .external_lex_state = 2}, + [1567] = {.lex_state = 124, .external_lex_state = 2}, + [1568] = {.lex_state = 124, .external_lex_state = 2}, + [1569] = {.lex_state = 124, .external_lex_state = 2}, + [1570] = {.lex_state = 124, .external_lex_state = 2}, + [1571] = {.lex_state = 124, .external_lex_state = 2}, + [1572] = {.lex_state = 124, .external_lex_state = 2}, + [1573] = {.lex_state = 124, .external_lex_state = 2}, + [1574] = {.lex_state = 124, .external_lex_state = 2}, + [1575] = {.lex_state = 124, .external_lex_state = 2}, + [1576] = {.lex_state = 124, .external_lex_state = 2}, + [1577] = {.lex_state = 124, .external_lex_state = 2}, + [1578] = {.lex_state = 124, .external_lex_state = 2}, + [1579] = {.lex_state = 124, .external_lex_state = 2}, + [1580] = {.lex_state = 124, .external_lex_state = 2}, + [1581] = {.lex_state = 124, .external_lex_state = 2}, + [1582] = {.lex_state = 124, .external_lex_state = 2}, + [1583] = {.lex_state = 124, .external_lex_state = 2}, + [1584] = {.lex_state = 124, .external_lex_state = 2}, + [1585] = {.lex_state = 124, .external_lex_state = 2}, + [1586] = {.lex_state = 124, .external_lex_state = 2}, + [1587] = {.lex_state = 124, .external_lex_state = 2}, + [1588] = {.lex_state = 124, .external_lex_state = 2}, + [1589] = {.lex_state = 30, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1590] = {.lex_state = 124, .external_lex_state = 2}, + [1591] = {.lex_state = 124, .external_lex_state = 2}, + [1592] = {.lex_state = 124, .external_lex_state = 2}, + [1593] = {.lex_state = 124, .external_lex_state = 2}, + [1594] = {.lex_state = 124, .external_lex_state = 2}, + [1595] = {.lex_state = 124, .external_lex_state = 2}, + [1596] = {.lex_state = 124, .external_lex_state = 2}, + [1597] = {.lex_state = 124, .external_lex_state = 2}, + [1598] = {.lex_state = 124, .external_lex_state = 2}, + [1599] = {.lex_state = 124, .external_lex_state = 2}, + [1600] = {.lex_state = 124, .external_lex_state = 2}, + [1601] = {.lex_state = 124, .external_lex_state = 2}, + [1602] = {.lex_state = 124, .external_lex_state = 2}, + [1603] = {.lex_state = 124, .external_lex_state = 2}, + [1604] = {.lex_state = 124, .external_lex_state = 2}, + [1605] = {.lex_state = 124, .external_lex_state = 2}, + [1606] = {.lex_state = 124, .external_lex_state = 2}, + [1607] = {.lex_state = 124, .external_lex_state = 2}, + [1608] = {.lex_state = 124, .external_lex_state = 2}, + [1609] = {.lex_state = 124, .external_lex_state = 2}, + [1610] = {.lex_state = 124, .external_lex_state = 2}, + [1611] = {.lex_state = 124, .external_lex_state = 2}, + [1612] = {.lex_state = 124, .external_lex_state = 2}, + [1613] = {.lex_state = 124, .external_lex_state = 2}, + [1614] = {.lex_state = 124, .external_lex_state = 2}, + [1615] = {.lex_state = 124, .external_lex_state = 2}, + [1616] = {.lex_state = 124, .external_lex_state = 2}, + [1617] = {.lex_state = 124, .external_lex_state = 5}, + [1618] = {.lex_state = 124, .external_lex_state = 2}, + [1619] = {.lex_state = 124, .external_lex_state = 2}, + [1620] = {.lex_state = 124, .external_lex_state = 5}, + [1621] = {.lex_state = 124, .external_lex_state = 5}, + [1622] = {.lex_state = 124, .external_lex_state = 2}, + [1623] = {.lex_state = 124, .external_lex_state = 2}, + [1624] = {.lex_state = 124, .external_lex_state = 2}, + [1625] = {.lex_state = 124, .external_lex_state = 2}, + [1626] = {.lex_state = 124, .external_lex_state = 2}, + [1627] = {.lex_state = 124, .external_lex_state = 2}, + [1628] = {.lex_state = 124, .external_lex_state = 2}, + [1629] = {.lex_state = 124, .external_lex_state = 5}, + [1630] = {.lex_state = 124, .external_lex_state = 2}, + [1631] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1632] = {.lex_state = 124, .external_lex_state = 2}, + [1633] = {.lex_state = 124, .external_lex_state = 2}, + [1634] = {.lex_state = 124, .external_lex_state = 2}, + [1635] = {.lex_state = 124, .external_lex_state = 2}, + [1636] = {.lex_state = 124, .external_lex_state = 2}, + [1637] = {.lex_state = 124, .external_lex_state = 2}, + [1638] = {.lex_state = 124, .external_lex_state = 2}, + [1639] = {.lex_state = 124, .external_lex_state = 2}, + [1640] = {.lex_state = 124, .external_lex_state = 2}, + [1641] = {.lex_state = 124, .external_lex_state = 2}, + [1642] = {.lex_state = 124, .external_lex_state = 2}, + [1643] = {.lex_state = 124, .external_lex_state = 2}, + [1644] = {.lex_state = 124, .external_lex_state = 2}, + [1645] = {.lex_state = 124, .external_lex_state = 5}, + [1646] = {.lex_state = 124, .external_lex_state = 2}, + [1647] = {.lex_state = 124, .external_lex_state = 2}, + [1648] = {.lex_state = 124, .external_lex_state = 5}, + [1649] = {.lex_state = 124, .external_lex_state = 2}, + [1650] = {.lex_state = 124, .external_lex_state = 2}, + [1651] = {.lex_state = 124, .external_lex_state = 2}, + [1652] = {.lex_state = 124, .external_lex_state = 2}, + [1653] = {.lex_state = 124, .external_lex_state = 2}, + [1654] = {.lex_state = 124, .external_lex_state = 2}, + [1655] = {.lex_state = 124, .external_lex_state = 2}, + [1656] = {.lex_state = 124, .external_lex_state = 2}, + [1657] = {.lex_state = 124, .external_lex_state = 2}, + [1658] = {.lex_state = 124, .external_lex_state = 2}, + [1659] = {.lex_state = 124, .external_lex_state = 2}, + [1660] = {.lex_state = 124, .external_lex_state = 2}, + [1661] = {.lex_state = 124, .external_lex_state = 5}, + [1662] = {.lex_state = 124, .external_lex_state = 5}, + [1663] = {.lex_state = 124, .external_lex_state = 2}, + [1664] = {.lex_state = 124, .external_lex_state = 2}, + [1665] = {.lex_state = 124, .external_lex_state = 5}, + [1666] = {.lex_state = 124, .external_lex_state = 2}, + [1667] = {.lex_state = 124, .external_lex_state = 2}, + [1668] = {.lex_state = 124, .external_lex_state = 2}, + [1669] = {.lex_state = 6, .external_lex_state = 2}, + [1670] = {.lex_state = 124, .external_lex_state = 5}, + [1671] = {.lex_state = 124, .external_lex_state = 2}, + [1672] = {.lex_state = 124, .external_lex_state = 5}, + [1673] = {.lex_state = 124, .external_lex_state = 2}, + [1674] = {.lex_state = 124, .external_lex_state = 2}, + [1675] = {.lex_state = 124, .external_lex_state = 2}, + [1676] = {.lex_state = 124, .external_lex_state = 2}, + [1677] = {.lex_state = 124, .external_lex_state = 2}, + [1678] = {.lex_state = 124, .external_lex_state = 2}, + [1679] = {.lex_state = 124, .external_lex_state = 2}, + [1680] = {.lex_state = 124, .external_lex_state = 2}, + [1681] = {.lex_state = 124, .external_lex_state = 2}, + [1682] = {.lex_state = 124, .external_lex_state = 2}, + [1683] = {.lex_state = 124, .external_lex_state = 2}, + [1684] = {.lex_state = 124, .external_lex_state = 2}, + [1685] = {.lex_state = 124, .external_lex_state = 2}, + [1686] = {.lex_state = 6, .external_lex_state = 2}, + [1687] = {.lex_state = 124, .external_lex_state = 2}, + [1688] = {.lex_state = 124, .external_lex_state = 2}, + [1689] = {.lex_state = 124, .external_lex_state = 2}, + [1690] = {.lex_state = 124, .external_lex_state = 2}, + [1691] = {.lex_state = 124, .external_lex_state = 2}, + [1692] = {.lex_state = 124, .external_lex_state = 2}, + [1693] = {.lex_state = 124, .external_lex_state = 2}, + [1694] = {.lex_state = 124, .external_lex_state = 2}, + [1695] = {.lex_state = 124, .external_lex_state = 2}, + [1696] = {.lex_state = 124, .external_lex_state = 2}, + [1697] = {.lex_state = 124, .external_lex_state = 2}, + [1698] = {.lex_state = 124, .external_lex_state = 2}, + [1699] = {.lex_state = 124, .external_lex_state = 2}, + [1700] = {.lex_state = 124, .external_lex_state = 2}, + [1701] = {.lex_state = 124, .external_lex_state = 2}, + [1702] = {.lex_state = 124, .external_lex_state = 2}, + [1703] = {.lex_state = 124, .external_lex_state = 2}, + [1704] = {.lex_state = 124, .external_lex_state = 2}, + [1705] = {.lex_state = 124, .external_lex_state = 2}, + [1706] = {.lex_state = 124, .external_lex_state = 2}, + [1707] = {.lex_state = 124, .external_lex_state = 2}, + [1708] = {.lex_state = 124, .external_lex_state = 2}, + [1709] = {.lex_state = 124, .external_lex_state = 2}, + [1710] = {.lex_state = 124, .external_lex_state = 2}, + [1711] = {.lex_state = 124, .external_lex_state = 2}, + [1712] = {.lex_state = 124, .external_lex_state = 2}, + [1713] = {.lex_state = 124, .external_lex_state = 2}, + [1714] = {.lex_state = 124, .external_lex_state = 2}, + [1715] = {.lex_state = 124, .external_lex_state = 2}, + [1716] = {.lex_state = 124, .external_lex_state = 2}, + [1717] = {.lex_state = 124, .external_lex_state = 2}, + [1718] = {.lex_state = 124, .external_lex_state = 2}, + [1719] = {.lex_state = 124, .external_lex_state = 2}, + [1720] = {.lex_state = 124, .external_lex_state = 2}, + [1721] = {.lex_state = 124, .external_lex_state = 2}, + [1722] = {.lex_state = 124, .external_lex_state = 2}, + [1723] = {.lex_state = 124, .external_lex_state = 2}, + [1724] = {.lex_state = 124, .external_lex_state = 2}, + [1725] = {.lex_state = 124, .external_lex_state = 2}, + [1726] = {.lex_state = 124, .external_lex_state = 2}, + [1727] = {.lex_state = 124, .external_lex_state = 2}, + [1728] = {.lex_state = 124, .external_lex_state = 2}, + [1729] = {.lex_state = 124, .external_lex_state = 2}, + [1730] = {.lex_state = 124, .external_lex_state = 2}, + [1731] = {.lex_state = 124, .external_lex_state = 2}, + [1732] = {.lex_state = 124, .external_lex_state = 2}, + [1733] = {.lex_state = 124, .external_lex_state = 2}, + [1734] = {.lex_state = 124, .external_lex_state = 2}, + [1735] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1736] = {.lex_state = 124, .external_lex_state = 2}, + [1737] = {.lex_state = 124, .external_lex_state = 2}, + [1738] = {.lex_state = 124, .external_lex_state = 2}, + [1739] = {.lex_state = 124, .external_lex_state = 2}, + [1740] = {.lex_state = 124, .external_lex_state = 2}, + [1741] = {.lex_state = 124, .external_lex_state = 2}, + [1742] = {.lex_state = 124, .external_lex_state = 2}, + [1743] = {.lex_state = 124, .external_lex_state = 2}, + [1744] = {.lex_state = 124, .external_lex_state = 2}, + [1745] = {.lex_state = 124, .external_lex_state = 2}, + [1746] = {.lex_state = 124, .external_lex_state = 2}, + [1747] = {.lex_state = 124, .external_lex_state = 2}, + [1748] = {.lex_state = 124, .external_lex_state = 5}, + [1749] = {.lex_state = 124, .external_lex_state = 5}, + [1750] = {.lex_state = 124, .external_lex_state = 2}, + [1751] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1752] = {.lex_state = 124, .external_lex_state = 2}, + [1753] = {.lex_state = 124, .external_lex_state = 2}, + [1754] = {.lex_state = 124, .external_lex_state = 2}, + [1755] = {.lex_state = 124, .external_lex_state = 2}, + [1756] = {.lex_state = 124, .external_lex_state = 2}, + [1757] = {.lex_state = 124, .external_lex_state = 2}, + [1758] = {.lex_state = 124, .external_lex_state = 2}, + [1759] = {.lex_state = 2, .external_lex_state = 9}, + [1760] = {.lex_state = 124, .external_lex_state = 2}, + [1761] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1762] = {.lex_state = 124, .external_lex_state = 2}, + [1763] = {.lex_state = 124, .external_lex_state = 2}, + [1764] = {.lex_state = 124, .external_lex_state = 2}, + [1765] = {.lex_state = 124, .external_lex_state = 2}, + [1766] = {.lex_state = 124, .external_lex_state = 2}, + [1767] = {.lex_state = 2, .external_lex_state = 9}, + [1768] = {.lex_state = 124, .external_lex_state = 2}, + [1769] = {.lex_state = 124, .external_lex_state = 2}, + [1770] = {.lex_state = 124, .external_lex_state = 2}, + [1771] = {.lex_state = 124, .external_lex_state = 2}, + [1772] = {.lex_state = 124, .external_lex_state = 2}, + [1773] = {.lex_state = 124, .external_lex_state = 2}, + [1774] = {.lex_state = 124, .external_lex_state = 2}, + [1775] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1776] = {.lex_state = 124, .external_lex_state = 2}, + [1777] = {.lex_state = 124, .external_lex_state = 2}, + [1778] = {.lex_state = 124, .external_lex_state = 2}, + [1779] = {.lex_state = 124, .external_lex_state = 2}, + [1780] = {.lex_state = 124, .external_lex_state = 2}, + [1781] = {.lex_state = 124, .external_lex_state = 2}, + [1782] = {.lex_state = 124, .external_lex_state = 2}, + [1783] = {.lex_state = 124, .external_lex_state = 2}, + [1784] = {.lex_state = 124, .external_lex_state = 2}, + [1785] = {.lex_state = 124, .external_lex_state = 2}, + [1786] = {.lex_state = 124, .external_lex_state = 2}, + [1787] = {.lex_state = 124, .external_lex_state = 2}, + [1788] = {.lex_state = 2, .external_lex_state = 9}, + [1789] = {.lex_state = 124, .external_lex_state = 2}, + [1790] = {.lex_state = 124, .external_lex_state = 2}, + [1791] = {.lex_state = 124, .external_lex_state = 2}, + [1792] = {.lex_state = 31, .external_lex_state = 2}, + [1793] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1794] = {.lex_state = 124, .external_lex_state = 2}, + [1795] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1796] = {.lex_state = 124, .external_lex_state = 2}, + [1797] = {.lex_state = 31, .external_lex_state = 2}, + [1798] = {.lex_state = 124, .external_lex_state = 2}, + [1799] = {.lex_state = 124, .external_lex_state = 2}, + [1800] = {.lex_state = 124, .external_lex_state = 2}, + [1801] = {.lex_state = 124, .external_lex_state = 2}, + [1802] = {.lex_state = 124, .external_lex_state = 2}, + [1803] = {.lex_state = 124, .external_lex_state = 2}, + [1804] = {.lex_state = 124, .external_lex_state = 2}, + [1805] = {.lex_state = 124, .external_lex_state = 2}, + [1806] = {.lex_state = 124, .external_lex_state = 2}, + [1807] = {.lex_state = 124, .external_lex_state = 2}, + [1808] = {.lex_state = 124, .external_lex_state = 2}, + [1809] = {.lex_state = 124, .external_lex_state = 2}, + [1810] = {.lex_state = 124, .external_lex_state = 2}, + [1811] = {.lex_state = 124, .external_lex_state = 2}, + [1812] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1813] = {.lex_state = 124, .external_lex_state = 2}, + [1814] = {.lex_state = 124, .external_lex_state = 2}, + [1815] = {.lex_state = 124, .external_lex_state = 2}, + [1816] = {.lex_state = 124, .external_lex_state = 2}, + [1817] = {.lex_state = 124, .external_lex_state = 2}, + [1818] = {.lex_state = 124, .external_lex_state = 2}, + [1819] = {.lex_state = 31, .external_lex_state = 2}, + [1820] = {.lex_state = 124, .external_lex_state = 2}, + [1821] = {.lex_state = 124, .external_lex_state = 2}, + [1822] = {.lex_state = 124, .external_lex_state = 2}, + [1823] = {.lex_state = 124, .external_lex_state = 2}, + [1824] = {.lex_state = 124, .external_lex_state = 2}, + [1825] = {.lex_state = 124, .external_lex_state = 2}, + [1826] = {.lex_state = 124, .external_lex_state = 2}, + [1827] = {.lex_state = 124, .external_lex_state = 2}, + [1828] = {.lex_state = 124, .external_lex_state = 2}, + [1829] = {.lex_state = 124, .external_lex_state = 2}, + [1830] = {.lex_state = 124, .external_lex_state = 2}, + [1831] = {.lex_state = 124, .external_lex_state = 2}, + [1832] = {.lex_state = 124, .external_lex_state = 2}, + [1833] = {.lex_state = 124, .external_lex_state = 2}, + [1834] = {.lex_state = 124, .external_lex_state = 2}, + [1835] = {.lex_state = 124, .external_lex_state = 2}, + [1836] = {.lex_state = 2, .external_lex_state = 9}, + [1837] = {.lex_state = 124, .external_lex_state = 2}, + [1838] = {.lex_state = 124, .external_lex_state = 2}, + [1839] = {.lex_state = 124, .external_lex_state = 2}, + [1840] = {.lex_state = 124, .external_lex_state = 2}, + [1841] = {.lex_state = 124, .external_lex_state = 2}, + [1842] = {.lex_state = 124, .external_lex_state = 2}, + [1843] = {.lex_state = 124, .external_lex_state = 2}, + [1844] = {.lex_state = 124, .external_lex_state = 2}, + [1845] = {.lex_state = 124, .external_lex_state = 2}, + [1846] = {.lex_state = 124, .external_lex_state = 2}, + [1847] = {.lex_state = 124, .external_lex_state = 2}, + [1848] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1849] = {.lex_state = 124, .external_lex_state = 2}, + [1850] = {.lex_state = 124, .external_lex_state = 2}, + [1851] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1852] = {.lex_state = 124, .external_lex_state = 2}, + [1853] = {.lex_state = 124, .external_lex_state = 2}, + [1854] = {.lex_state = 124, .external_lex_state = 2}, + [1855] = {.lex_state = 124, .external_lex_state = 2}, + [1856] = {.lex_state = 31, .external_lex_state = 2}, + [1857] = {.lex_state = 124, .external_lex_state = 2}, + [1858] = {.lex_state = 124, .external_lex_state = 2}, + [1859] = {.lex_state = 124, .external_lex_state = 2}, + [1860] = {.lex_state = 124, .external_lex_state = 2}, + [1861] = {.lex_state = 124, .external_lex_state = 2}, + [1862] = {.lex_state = 124, .external_lex_state = 2}, + [1863] = {.lex_state = 124, .external_lex_state = 2}, + [1864] = {.lex_state = 124, .external_lex_state = 2}, + [1865] = {.lex_state = 124, .external_lex_state = 2}, + [1866] = {.lex_state = 124, .external_lex_state = 2}, + [1867] = {.lex_state = 124, .external_lex_state = 2}, + [1868] = {.lex_state = 124, .external_lex_state = 2}, + [1869] = {.lex_state = 124, .external_lex_state = 2}, + [1870] = {.lex_state = 124, .external_lex_state = 2}, + [1871] = {.lex_state = 124, .external_lex_state = 2}, + [1872] = {.lex_state = 124, .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] = { + [STATE(0)] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [sym_hash_bang_line] = ACTIONS(1), + [anon_sym_export] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_import] = ACTIONS(1), + [anon_sym_from] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), + [anon_sym_var] = ACTIONS(1), + [anon_sym_let] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_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), + [anon_sym_for] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_debugger] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_throw] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_catch] = ACTIONS(1), + [anon_sym_finally] = ACTIONS(1), + [anon_sym_yield] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_LT_SLASH] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_AMP2] = ACTIONS(1), + [anon_sym_class] = ACTIONS(1), + [anon_sym_extends] = ACTIONS(1), + [anon_sym_async] = ACTIONS(1), + [anon_sym_function] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), + [sym_optional_chain] = ACTIONS(1), + [anon_sym_new] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_GT_GT_GT] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_AMP3] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_QMARK_QMARK] = ACTIONS(1), + [anon_sym_instanceof] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_typeof] = ACTIONS(1), + [anon_sym_void] = ACTIONS(1), + [anon_sym_delete] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), + [anon_sym_SLASH2] = ACTIONS(1), + [sym_number] = ACTIONS(1), + [sym_private_property_identifier] = ACTIONS(1), + [anon_sym_target] = ACTIONS(1), + [anon_sym_meta] = ACTIONS(1), + [sym_this] = ACTIONS(1), + [sym_super] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [sym_null] = ACTIONS(1), + [sym_undefined] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [aux_sym_method_definition_token1] = ACTIONS(1), + [anon_sym_get] = ACTIONS(1), + [anon_sym_set] = ACTIONS(1), + [sym__automatic_semicolon] = ACTIONS(1), + [sym__template_chars] = ACTIONS(1), + [sym__ternary_qmark] = ACTIONS(1), + [sym_html_comment] = ACTIONS(5), + [sym_jsx_text] = ACTIONS(1), + }, + [STATE(1)] = { + [sym_program] = STATE(1758), + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1304), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [sym_hash_bang_line] = ACTIONS(11), + [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(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), + }, + [STATE(2)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1799), + [sym_object_assignment_pattern] = STATE(1424), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1799), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1799), + [sym_spread_element] = STATE(1429), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(815), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [sym_rest_pattern] = STATE(1424), + [sym_method_definition] = STATE(1429), + [sym_pair] = STATE(1429), + [sym_pair_pattern] = STATE(1424), + [sym__property_name] = STATE(1431), + [sym_computed_property_name] = STATE(1431), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1015), + [aux_sym_object_repeat1] = STATE(1433), + [aux_sym_object_pattern_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(15), + [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(107), + [anon_sym_const] = ACTIONS(25), + [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(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), + }, + [STATE(3)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1799), + [sym_object_assignment_pattern] = STATE(1424), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1799), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1799), + [sym_spread_element] = STATE(1429), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(815), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [sym_rest_pattern] = STATE(1424), + [sym_method_definition] = STATE(1429), + [sym_pair] = STATE(1429), + [sym_pair_pattern] = STATE(1424), + [sym__property_name] = STATE(1431), + [sym_computed_property_name] = STATE(1431), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1015), + [aux_sym_object_repeat1] = STATE(1433), + [aux_sym_object_pattern_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(15), + [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(107), + [anon_sym_const] = ACTIONS(25), + [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(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), + }, + [STATE(4)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1799), + [sym_object_assignment_pattern] = STATE(1424), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1799), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1799), + [sym_spread_element] = STATE(1429), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(815), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [sym_rest_pattern] = STATE(1424), + [sym_method_definition] = STATE(1429), + [sym_pair] = STATE(1429), + [sym_pair_pattern] = STATE(1424), + [sym__property_name] = STATE(1431), + [sym_computed_property_name] = STATE(1431), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(1015), + [aux_sym_object_repeat1] = STATE(1433), + [aux_sym_object_pattern_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(15), + [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(107), + [anon_sym_const] = ACTIONS(25), + [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(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), + }, + [STATE(5)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1799), + [sym_object_assignment_pattern] = STATE(1424), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1799), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1799), + [sym_spread_element] = STATE(1452), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(815), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [sym_rest_pattern] = STATE(1424), + [sym_method_definition] = STATE(1452), + [sym_pair] = STATE(1452), + [sym_pair_pattern] = STATE(1424), + [sym__property_name] = STATE(1431), + [sym_computed_property_name] = STATE(1431), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1015), + [aux_sym_object_repeat1] = STATE(1455), + [aux_sym_object_pattern_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(131), + [anon_sym_export] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(15), + [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(137), + [anon_sym_const] = ACTIONS(25), + [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(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), + }, + [STATE(6)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1799), + [sym_object_assignment_pattern] = STATE(1424), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1799), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1799), + [sym_spread_element] = STATE(1452), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(815), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [sym_rest_pattern] = STATE(1424), + [sym_method_definition] = STATE(1452), + [sym_pair] = STATE(1452), + [sym_pair_pattern] = STATE(1424), + [sym__property_name] = STATE(1431), + [sym_computed_property_name] = STATE(1431), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1015), + [aux_sym_object_repeat1] = STATE(1455), + [aux_sym_object_pattern_repeat1] = STATE(1434), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(15), + [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(151), + [anon_sym_const] = ACTIONS(25), + [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(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), + }, + [STATE(7)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(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), + }, + [STATE(8)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(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), + }, + [STATE(9)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(10)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(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), + }, + [STATE(11)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(353), + [anon_sym_LBRACE] = ACTIONS(15), + [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_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(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), + }, + [STATE(12)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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_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(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), + }, + [STATE(13)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(15), + [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_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(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), + }, + [STATE(14)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(15), + [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_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(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), + }, + [STATE(15)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(16)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(17)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(1304), + [ts_builtin_sym_end] = ACTIONS(463), + [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(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), + }, + [STATE(18)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [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_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(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), + }, + [STATE(19)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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_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(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), + }, + [STATE(20)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1304), + [ts_builtin_sym_end] = ACTIONS(463), + [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(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), + }, + [STATE(21)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1304), + [ts_builtin_sym_end] = ACTIONS(469), + [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(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), + }, + [STATE(22)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [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_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(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), + }, + [STATE(23)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [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_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(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), + }, + [STATE(24)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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_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(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), + }, + [STATE(25)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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_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(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), + }, + [STATE(26)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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_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(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), + }, + [STATE(27)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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_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(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), + }, + [STATE(28)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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_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(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), + }, + [STATE(29)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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_AMP3] = 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(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), + }, + [STATE(30)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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_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(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), + }, + [STATE(31)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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_AMP3] = 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(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), + }, + [STATE(32)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(33)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(34)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(35)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(36)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(37)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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_AMP3] = 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(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), + }, + [STATE(38)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(39)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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_AMP3] = 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(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), + }, + [STATE(40)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(1502), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(41)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(1862), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(42)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(43)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(44)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(45)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(46)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(47)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(48)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(49)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(50)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(51)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(52)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(53)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(54)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(55)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(56)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(57)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(58)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(59)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(60)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(61)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(62)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(63)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(64)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(65)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(66)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(67)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1316), + [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(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), + }, + [STATE(68)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(69)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(70)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(71)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1304), + [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(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), + }, + [STATE(72)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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_AMP3] = 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(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), + }, + [STATE(73)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(74)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(75)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(76)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(77)] = { + [sym_import] = STATE(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(78)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(79)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(80)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(81)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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_AMP3] = 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(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), + }, + [STATE(82)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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_AMP3] = 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(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), + }, + [STATE(83)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(926), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(84)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [STATE(85)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(578), + [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(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [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_AMP3] = 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(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), + }, + [STATE(101)] = { + [sym_declaration] = STATE(469), + [sym_import] = STATE(1386), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(915), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1329), + [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(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), + }, + [STATE(102)] = { + [sym_declaration] = STATE(451), + [sym_import] = STATE(1386), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(891), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1359), + [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(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), + }, + [STATE(103)] = { + [sym_declaration] = STATE(451), + [sym_import] = STATE(1386), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(891), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1329), + [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(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), + }, + [STATE(104)] = { + [sym_declaration] = STATE(469), + [sym_import] = STATE(1386), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(915), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1359), + [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(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), + }, + [STATE(105)] = { + [sym_import] = STATE(1396), + [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(1280), + [sym_assignment_pattern] = STATE(1410), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [sym_spread_element] = STATE(1464), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1465), + [aux_sym_array_pattern_repeat1] = STATE(1418), + [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(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), + }, + [STATE(106)] = { + [sym_import] = STATE(1396), + [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(1280), + [sym_assignment_pattern] = STATE(1410), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [sym_spread_element] = STATE(1464), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1465), + [aux_sym_array_pattern_repeat1] = STATE(1418), + [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(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), + }, + [STATE(107)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1410), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [sym_spread_element] = STATE(1412), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1402), + [aux_sym_array_pattern_repeat1] = STATE(1418), + [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(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), + }, + [STATE(108)] = { + [sym_import] = STATE(1396), + [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(1280), + [sym_assignment_pattern] = STATE(1410), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [sym_spread_element] = STATE(1464), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1465), + [aux_sym_array_pattern_repeat1] = STATE(1418), + [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(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), + }, + [STATE(109)] = { + [sym_import] = STATE(1396), + [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(1280), + [sym_assignment_pattern] = STATE(1410), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [sym_spread_element] = STATE(1464), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1465), + [aux_sym_array_pattern_repeat1] = STATE(1418), + [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(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), + }, + [STATE(110)] = { + [sym_import] = STATE(1396), + [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(1280), + [sym_assignment_pattern] = STATE(1410), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [sym_spread_element] = STATE(1464), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1465), + [aux_sym_array_pattern_repeat1] = STATE(1418), + [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(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), + }, + [STATE(111)] = { + [sym_import] = STATE(1396), + [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(1280), + [sym_assignment_pattern] = STATE(1410), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [sym_spread_element] = STATE(1412), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1402), + [aux_sym_array_pattern_repeat1] = STATE(1418), + [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(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), + }, + [STATE(112)] = { + [sym_import] = STATE(1396), + [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(1406), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1406), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1406), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1818), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(113)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1405), + [sym__destructuring_pattern] = STATE(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1771), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(114)] = { + [sym_import] = STATE(1396), + [sym_variable_declaration] = STATE(143), + [sym_lexical_declaration] = STATE(143), + [sym_empty_statement] = STATE(143), + [sym_parenthesized_expression] = STATE(564), + [sym_expression] = STATE(883), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1406), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1406), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1406), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1871), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(115)] = { + [sym_import] = STATE(1396), + [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(1319), + [sym_assignment_pattern] = STATE(1410), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1319), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1319), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_pattern_repeat1] = STATE(1418), + [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(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), + }, + [STATE(116)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(970), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1410), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1344), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_pattern_repeat1] = STATE(1418), + [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(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), + }, + [STATE(117)] = { + [sym_import] = STATE(1396), + [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(1280), + [sym_assignment_pattern] = STATE(1509), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [sym_spread_element] = STATE(1439), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1441), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(118)] = { + [sym_import] = STATE(1396), + [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(1319), + [sym_assignment_pattern] = STATE(1463), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1319), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1319), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1371), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_pattern_repeat1] = STATE(1466), + [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(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), + }, + [STATE(119)] = { + [sym_import] = STATE(1396), + [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(1280), + [sym_assignment_pattern] = STATE(1468), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1840), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1354), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(120)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(865), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1468), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1796), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1354), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(121)] = { + [sym_import] = STATE(1396), + [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(1319), + [sym_assignment_pattern] = STATE(1509), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1319), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1319), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1441), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(122)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_spread_element] = STATE(1425), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1426), + [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(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), + }, + [STATE(123)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_spread_element] = STATE(1419), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1420), + [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(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), + }, + [STATE(124)] = { + [sym_import] = STATE(1396), + [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(1319), + [sym_assignment_pattern] = STATE(1743), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1319), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1319), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1501), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(125)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_spread_element] = STATE(1483), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [aux_sym_array_repeat1] = STATE(1484), + [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(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), + }, + [STATE(126)] = { + [sym_import] = STATE(1396), + [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(1319), + [sym_assignment_pattern] = STATE(1468), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1319), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1319), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1354), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(127)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_spread_element] = STATE(1439), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(128)] = { + [sym_import] = STATE(1396), + [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(1319), + [sym_assignment_pattern] = STATE(1743), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1319), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1319), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1501), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(129)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_spread_element] = STATE(1810), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1810), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(130)] = { + [sym_import] = STATE(1396), + [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(1319), + [sym_assignment_pattern] = STATE(1692), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1319), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1319), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1403), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(131)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_spread_element] = STATE(1870), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1870), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(132)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(889), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1280), + [sym_assignment_pattern] = STATE(1692), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1280), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1280), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [sym_pattern] = STATE(1403), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(133)] = { + [sym_namespace_export] = STATE(1630), + [sym_export_clause] = STATE(1382), + [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(1087), + [aux_sym_export_statement_repeat1] = STATE(1383), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(169), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(134)] = { + [sym_namespace_export] = STATE(1630), + [sym_export_clause] = STATE(1382), + [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(1087), + [aux_sym_export_statement_repeat1] = STATE(1383), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(169), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(135)] = { + [sym_import] = STATE(1396), + [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(1319), + [sym_assignment_pattern] = STATE(1743), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1319), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1319), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [sym_pattern] = STATE(1501), + [sym_rest_pattern] = STATE(1321), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(136)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1771), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(137)] = { + [sym_namespace_export] = STATE(1630), + [sym_export_clause] = STATE(1382), + [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(1087), + [aux_sym_export_statement_repeat1] = STATE(1383), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(169), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(138)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1855), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(139)] = { + [sym_import] = STATE(1396), + [sym_empty_statement] = STATE(150), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(140)] = { + [sym_import] = STATE(1396), + [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(1494), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1494), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1494), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(141)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1853), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(142)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1645), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(143)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1846), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(144)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(145)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1822), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(146)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(147)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1798), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(148)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1849), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(149)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(150)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1834), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(151)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(152)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(153)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(628), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(154)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(629), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(913), + [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(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(155)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1771), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(156)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1832), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(157)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(158)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1791), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(159)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(160)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1827), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(161)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1820), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(162)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1865), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(163)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(164)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(165)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(166)] = { + [sym_namespace_export] = STATE(1630), + [sym_export_clause] = STATE(1382), + [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(1087), + [aux_sym_export_statement_repeat1] = STATE(1383), + [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_AMP3] = 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(169), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(167)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(168)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(169)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(170)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(171)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1770), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(172)] = { + [sym_namespace_export] = STATE(1630), + [sym_export_clause] = STATE(1382), + [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(1087), + [aux_sym_export_statement_repeat1] = STATE(1383), + [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_AMP3] = 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(169), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(173)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(174)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1537), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(175)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(176)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(177)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(178)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(868), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1814), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(179)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(180)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(181)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(182)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(183)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1787), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(184)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(185)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(186)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(187)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1772), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(188)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(189)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1754), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(190)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(191)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1763), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(192)] = { + [sym_import] = STATE(1386), + [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(1841), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(193)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1824), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(194)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(630), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(195)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(196)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(600), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(197)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(613), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(198)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(626), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(199)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(628), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(200)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(629), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(941), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(201)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1869), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(202)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1815), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(203)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(630), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(204)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(600), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(205)] = { + [sym_import] = STATE(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(206)] = { + [sym_import] = STATE(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(207)] = { + [sym_import] = STATE(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(208)] = { + [sym_import] = STATE(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(209)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(630), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(210)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(211)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1809), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(212)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(600), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(213)] = { + [sym_import] = STATE(1386), + [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(1841), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(214)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(613), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(215)] = { + [sym_import] = STATE(1396), + [sym_statement_block] = STATE(626), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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(216)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(217)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(218)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(856), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(219)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(220)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(221)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(222)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(917), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(223)] = { + [sym_import] = STATE(1396), + [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(1320), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1320), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1320), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(224)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(225)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(226)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(227)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(889), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(228)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(229)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(230)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(578), + [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(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(231)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(232)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(233)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(234)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(235)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(236)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(237)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(238)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(239)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(240)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(241)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(242)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(243)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(244)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(245)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(246)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(247)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(248)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(249)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(250)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(251)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(252)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(253)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(254)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(255)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(256)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(257)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(258)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(259)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(260)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(261)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(262)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(263)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(264)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(265)] = { + [sym_import] = STATE(1396), + [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(1380), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1380), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1380), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(266)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(973), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(267)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(268)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(269)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(970), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(270)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(271)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(272)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(273)] = { + [sym_import] = STATE(1386), + [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(1867), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1867), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1141), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1867), + [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(1087), + [sym_formal_parameters] = STATE(1833), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(274)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(275)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(276)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(277)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(278)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(279)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(280)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(281)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(282)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(283)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(284)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(285)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(286)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(287)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(288)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(289)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(290)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(291)] = { + [sym_import] = STATE(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(292)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(914), + [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(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(293)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(294)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(295)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(296)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(297)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(298)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(299)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(976), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(300)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(301)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(302)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(303)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(304)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(305)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(306)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(307)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(308)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(309)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(310)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(311)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(312)] = { + [sym_import] = STATE(1396), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(978), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(313)] = { + [sym_import] = STATE(1386), + [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(1805), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1805), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1144), + [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(1805), + [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(1087), + [sym_formal_parameters] = STATE(1806), + [aux_sym_export_statement_repeat1] = STATE(1346), + [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(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), + }, + [STATE(314)] = { + [sym_import] = STATE(1396), + [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(1825), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1825), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1825), + [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(1087), + [sym_formal_parameters] = STATE(1854), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(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), + }, + [STATE(315)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(316)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(317)] = { + [sym_import] = STATE(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(922), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(942), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(971), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(887), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1860), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1860), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1860), + [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(1087), + [sym_formal_parameters] = STATE(1782), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(975), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1841), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1841), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1841), + [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(1087), + [sym_formal_parameters] = STATE(1826), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1396), + [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(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1151), + [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(1140), + [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(1087), + [sym_formal_parameters] = STATE(1769), + [aux_sym_export_statement_repeat1] = STATE(1335), + [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(1709), + [sym_formal_parameters] = STATE(1837), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1709), + [sym_formal_parameters] = STATE(1837), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1709), + [sym_formal_parameters] = STATE(1837), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1709), + [sym__property_name] = STATE(1709), + [sym_computed_property_name] = STATE(1709), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1779), + [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_AMP3] = 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(1779), + [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_AMP3] = 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(1361), + [sym_object_pattern] = STATE(1291), + [sym_array_pattern] = STATE(1291), + [sym__destructuring_pattern] = STATE(1291), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1361), + [sym_object_pattern] = STATE(1291), + [sym_array_pattern] = STATE(1291), + [sym__destructuring_pattern] = STATE(1291), + [aux_sym_object_repeat1] = STATE(1409), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1837), + [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_AMP3] = 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(1837), + [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_AMP3] = 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(1816), + [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_AMP3] = 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(1837), + [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_AMP3] = 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(1837), + [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_AMP3] = 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(1816), + [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_AMP3] = 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(1830), + [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_AMP3] = 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(1779), + [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_AMP3] = 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(1361), + [sym_object_pattern] = STATE(1291), + [sym_array_pattern] = STATE(1291), + [sym__destructuring_pattern] = STATE(1291), + [aux_sym_object_repeat1] = STATE(1473), + [aux_sym_object_pattern_repeat1] = STATE(1411), + [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_AMP3] = 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(1830), + [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_AMP3] = 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(1779), + [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_AMP3] = 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(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), + }, + [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(1779), + [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_AMP3] = 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), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 13, + 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(1091), 1, + sym_identifier, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(1098), 1, + anon_sym_function, + STATE(1779), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(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), 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_AMP3, + 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, + [91] = 11, + ACTIONS(200), 1, + anon_sym_EQ_GT, + ACTIONS(490), 1, + anon_sym_EQ, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(1110), 1, + sym_identifier, + ACTIONS(1120), 1, + anon_sym_function, + STATE(1837), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(169), 13, + 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(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_AMP3, + 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, + [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, + 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, + 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(490), 1, + anon_sym_EQ, + ACTIONS(1079), 1, + anon_sym_function, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(1110), 1, + sym_identifier, + STATE(1837), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(169), 13, + 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(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_AMP3, + 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, + [340] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(694), 18, + sym__automatic_semicolon, + 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(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_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, + [410] = 4, + ACTIONS(730), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(722), 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(724), 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, + [482] = 11, + ACTIONS(440), 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(1773), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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_AMP3, + 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, + [568] = 4, + ACTIONS(1142), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(708), 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(710), 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, + [640] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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_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(1146), 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, + [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(1361), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 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_AMP3, + 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(1361), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 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_AMP3, + 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, + 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(774), 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, + [964] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(704), 18, + sym__automatic_semicolon, + 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(706), 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, + [1034] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(700), 18, + sym__automatic_semicolon, + 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(702), 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, + [1104] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1150), 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(1152), 44, + 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_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, + [1174] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(690), 18, + sym__automatic_semicolon, + 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(692), 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, + [1244] = 4, + ACTIONS(740), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(732), 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(734), 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, + [1316] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1154), 18, + sym__automatic_semicolon, + 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(1156), 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, + [1386] = 4, + ACTIONS(770), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(762), 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(764), 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, + [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(1773), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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_AMP3, + 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, + 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(1160), 44, + 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_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, + [1614] = 4, + ACTIONS(760), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(752), 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(754), 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, + [1686] = 4, + ACTIONS(790), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(782), 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(784), 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, + [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(1830), 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_AMP3, + 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(1162), 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(1164), 42, + 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_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, + [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(1785), 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_AMP3, + 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, + [2004] = 4, + ACTIONS(800), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(792), 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(794), 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, + [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(1785), 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_AMP3, + 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(742), 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(744), 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, + [2234] = 4, + ACTIONS(1172), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(694), 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(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_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, + [2306] = 13, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(498), 1, + anon_sym_EQ_GT, + ACTIONS(504), 1, + anon_sym_of, + ACTIONS(506), 1, + anon_sym_in, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(1098), 1, + anon_sym_function, + ACTIONS(1122), 1, + sym_identifier, + STATE(1830), 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), 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), 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_AMP3, + 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, + [2396] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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, + 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(1176), 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, + [2466] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1178), 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(1180), 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, + [2535] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1182), 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(1184), 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, + [2604] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1186), 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(1188), 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, + [2673] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1186), 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(1188), 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, + [2742] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1190), 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(1192), 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, + [2811] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1194), 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(1196), 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, + [2880] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1198), 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(1200), 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, + [2949] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1202), 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(1204), 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, + [3018] = 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, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [3087] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1210), 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(1212), 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, + [3156] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1214), 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(1216), 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, + [3225] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1218), 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(1220), 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, + [3294] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1222), 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(1224), 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, + [3363] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1226), 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(1228), 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, + [3432] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 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(1232), 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, + [3501] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1234), 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(1236), 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, + [3570] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1238), 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(1240), 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, + [3639] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1242), 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(1244), 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, + [3708] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1246), 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(1248), 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, + [3777] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1250), 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(1252), 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, + [3846] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1254), 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(1256), 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, + [3915] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1258), 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(1260), 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, + [3984] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1258), 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(1260), 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, + [4053] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1262), 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(1264), 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, + [4122] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1266), 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(1268), 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, + [4191] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1270), 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(1272), 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, + [4260] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1274), 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(1276), 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, + [4329] = 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, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [4398] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1278), 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(1280), 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, + [4467] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1282), 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(1284), 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, + [4536] = 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, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [4605] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1286), 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(1288), 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, + [4674] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1290), 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(1292), 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, + [4743] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1294), 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(1296), 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, + [4812] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1298), 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(1300), 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, + [4881] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1298), 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(1300), 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, + [4950] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1302), 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(1304), 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, + [5019] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1306), 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(1308), 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, + [5088] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1310), 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(1312), 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, + [5157] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1314), 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(1316), 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, + [5226] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 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(1320), 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, + [5295] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1322), 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(1324), 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, + [5364] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1326), 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(1328), 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, + [5433] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1330), 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(1332), 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, + [5502] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1334), 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(1336), 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, + [5571] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1338), 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(1340), 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, + [5640] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1342), 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(1344), 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, + [5709] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [5778] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1350), 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(1352), 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, + [5847] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 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(1356), 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, + [5916] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1358), 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(1360), 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, + [5985] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1362), 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(1364), 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, + [6054] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1366), 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(1368), 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, + [6123] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1370), 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(1372), 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, + [6192] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1374), 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(1376), 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, + [6261] = 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, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [6330] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1378), 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(1380), 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, + [6399] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1382), 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(1384), 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, + [6468] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1386), 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(1388), 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, + [6537] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1390), 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(1392), 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, + [6606] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1394), 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(1396), 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, + [6675] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1398), 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(1400), 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, + [6744] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1402), 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(1404), 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, + [6813] = 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, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [6882] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1406), 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(1408), 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, + [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, + 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(1106), 1, + anon_sym_LBRACK, + ACTIONS(1422), 1, + sym_identifier, + ACTIONS(1424), 1, + anon_sym_of, + STATE(1361), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1216), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(169), 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(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_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_AMP3, + 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, + [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(1361), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(169), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_AMP3, + 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, + [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(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_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_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_AMP3, + 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, + [7483] = 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_AMP3, + 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), 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, + [7549] = 11, + ACTIONS(171), 1, + anon_sym_RBRACE, + ACTIONS(183), 1, + anon_sym_COLON, + ACTIONS(1430), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_EQ_GT, + STATE(1409), 1, + aux_sym_object_repeat1, + STATE(1411), 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_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_AMP3, + 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, + [7631] = 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_AMP3, + 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), 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, + [7697] = 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_AMP3, + 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [7763] = 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_AMP3, + 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), 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, + [7829] = 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_AMP3, + 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), 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, + [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_AMP3, + 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_AMP3, + 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(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_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_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_AMP3, + 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, + [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_AMP3, + 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(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), 19, + sym__ternary_qmark, + 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_LT_EQ, + anon_sym_EQ_EQ_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_AMP3, + 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, + [8250] = 6, + ACTIONS(384), 1, + anon_sym_EQ, + ACTIONS(402), 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), 19, + sym__ternary_qmark, + 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_LT_EQ, + anon_sym_EQ_EQ_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_AMP3, + 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, + [8321] = 6, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(1467), 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), 19, + sym__ternary_qmark, + 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_LT_EQ, + anon_sym_EQ_EQ_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_AMP3, + 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, + [8392] = 6, + ACTIONS(402), 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), 19, + sym__ternary_qmark, + 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_LT_EQ, + anon_sym_EQ_EQ_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_AMP3, + 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, + [8463] = 12, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(498), 1, + anon_sym_EQ_GT, + ACTIONS(506), 1, + anon_sym_in, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, + sym_identifier, + ACTIONS(1471), 1, + anon_sym_of, + ACTIONS(1473), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1499), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(169), 11, + sym__ternary_qmark, + anon_sym_LPAREN, + 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), 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_AMP3, + 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, + [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(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), 19, + sym__ternary_qmark, + 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_LT_EQ, + anon_sym_EQ_EQ_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_AMP3, + 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, + [8678] = 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, + [8742] = 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, + [8806] = 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, + [8870] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1486), 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(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_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, + [8934] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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_AMP3, + 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, + 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), 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_AMP3, + 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, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + 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, + [11948] = 6, + 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_AMP3, + 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, + [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_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_AMP3, + 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, + [12084] = 7, + ACTIONS(384), 1, + anon_sym_EQ, + ACTIONS(402), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_AMP3, + 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, + [12154] = 5, + ACTIONS(1524), 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_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_AMP3, + 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, + [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(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_AMP3, + 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, + [12291] = 6, + ACTIONS(1465), 1, + anon_sym_EQ, + 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_AMP3, + 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] = 8, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + 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(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_AMP3, + 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, + [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(1428), 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(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_AMP3, + 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, + [12498] = 6, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(628), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(169), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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_AMP3, + 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, + [12564] = 6, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(1555), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_AMP3, + 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, + [12630] = 6, + ACTIONS(624), 1, + anon_sym_EQ, + ACTIONS(628), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(169), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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_AMP3, + 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(1428), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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_AMP3, + 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, + [12762] = 6, + ACTIONS(580), 1, + anon_sym_EQ_GT, + ACTIONS(590), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(169), 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(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_AMP3, + 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, + [12828] = 6, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(1559), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1428), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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_AMP3, + 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, + [12894] = 6, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(498), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(169), 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(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_AMP3, + 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, + [12960] = 7, + 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(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_AMP3, + 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, + [13028] = 6, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(580), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(169), 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(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_AMP3, + 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, + [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(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), 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_AMP3, + 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_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), 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_AMP3, + 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, + [13234] = 6, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(1535), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_AMP3, + 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_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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_AMP3, + 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, + [13366] = 5, + ACTIONS(1557), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1428), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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_AMP3, + 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, + [13429] = 5, + ACTIONS(1561), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_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_AMP3, + 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, + [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(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), 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_AMP3, + 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, + [13559] = 10, + ACTIONS(662), 1, + anon_sym_BQUOTE, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1573), 1, + sym_optional_chain, + 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_AMP3, + 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, + [13625] = 5, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(1575), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(710), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, + [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(1563), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1565), 27, + 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_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, + [13741] = 4, + ACTIONS(1575), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(710), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1579), 28, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1585), 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_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + ACTIONS(1591), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + 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, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [14089] = 4, + ACTIONS(1459), 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_AMP3, + 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_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, + [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_AMP3, + 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1601), 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(704), 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1609), 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [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_GT_GT, + anon_sym_AMP3, + 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), 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_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1579), 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1648), 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(748), 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1660), 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1664), 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1672), 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, + [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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(728), 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, + [15259] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1674), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [15309] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1678), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [15359] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1682), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [15409] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1686), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [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_AMP3, + 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, + 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, + [15509] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(702), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [15559] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(766), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [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_AMP3, + 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, + 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, + [15659] = 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_AMP3, + 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, + 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, + [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_AMP3, + 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, + 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, + [15759] = 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_AMP3, + 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, + 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, + [15809] = 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_AMP3, + 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, + 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, + [15859] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(692), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [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_AMP3, + 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, + 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, + [15959] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1702), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16009] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1706), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + [16059] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1710), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16109] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1714), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16159] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1718), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [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_AMP3, + 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(1731), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16313] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1735), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16363] = 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16413] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(756), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16463] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [16513] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1743), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16563] = 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16613] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1751), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1753), 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, + [16663] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1755), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16713] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1759), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16763] = 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16813] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(776), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16863] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(786), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [16913] = 3, + 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_AMP3, + 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_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, + [16963] = 3, + 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [17013] = 5, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1767), 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, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(716), 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, + [17067] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1770), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [17117] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(796), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [17167] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1774), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [17217] = 4, + ACTIONS(1729), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1722), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1724), 27, + sym__ternary_qmark, + 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_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [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_AMP3, + 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(1780), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP3, + 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(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_AMP3, + 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(1814), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP3, + 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(1816), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [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(1563), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1565), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + 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_AMP3, + 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, + [17796] = 4, + ACTIONS(1465), 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1428), 27, + sym__ternary_qmark, + 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_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [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_AMP3, + 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(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, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP3, + 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(1631), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [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(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_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 17, + 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_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, + [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_AMP3, + 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(1832), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP3, + 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(1700), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [18292] = 4, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(714), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(716), 27, + sym__ternary_qmark, + 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_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [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_AMP3, + 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(1708), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP3, + 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(1834), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP3, + 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(1712), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [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(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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 20, + 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, + 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, + [18685] = 4, + ACTIONS(1644), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1637), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1639), 27, + sym__ternary_qmark, + 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_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [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_AMP3, + 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(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(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, + [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, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP3, + 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(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(1828), 10, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + 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(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_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 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, + 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, + [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(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(1830), 2, + anon_sym_AMP3, + 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_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [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_AMP3, + 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(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(1828), 12, + 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_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_AMP3, + ACTIONS(1794), 1, + anon_sym_CARET, + 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(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(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, + [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(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, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 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, + 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, + [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(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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 20, + 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, + 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, + [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(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, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1830), 4, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 14, + 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_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [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_AMP3, + 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(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(1828), 9, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [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(1563), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1565), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + 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, + [19579] = 5, + ACTIONS(83), 1, + anon_sym_BQUOTE, + STATE(758), 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1579), 25, + 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, + [19631] = 4, + ACTIONS(1644), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1637), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1639), 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, + [19681] = 5, + ACTIONS(712), 1, + sym__automatic_semicolon, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(710), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(708), 25, + 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, + [19733] = 4, + ACTIONS(1729), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1722), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1724), 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, + [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(1577), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1579), 22, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [19841] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1678), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1680), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [19889] = 4, + ACTIONS(1459), 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [19939] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1751), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1753), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + 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, + [19987] = 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_AMP3, + 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(1836), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + STATE(797), 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 22, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [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(1840), 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1585), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + [20197] = 6, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(720), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(708), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(714), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, + [20251] = 4, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(714), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(716), 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, + [20301] = 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(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1591), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1593), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + [20361] = 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1826), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [20452] = 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [20499] = 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1780), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [20590] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1613), 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, + [20637] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1617), 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, + [20684] = 4, + ACTIONS(1876), 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_GT_GT, + anon_sym_AMP3, + 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), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [20733] = 5, + ACTIONS(740), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(732), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(736), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(738), 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, + [20784] = 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1631), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [20875] = 15, + 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(1850), 1, + anon_sym_GT_GT, + 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(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(1830), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 15, + 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_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, + [20946] = 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(1840), 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [21007] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [21054] = 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(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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, + 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_instanceof, + ACTIONS(1828), 9, + 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_QMARK_QMARK, + anon_sym_BQUOTE, + [21137] = 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(1846), 1, + anon_sym_AMP_AMP, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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, + 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_instanceof, + ACTIONS(1828), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [21222] = 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(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(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1842), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1860), 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_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + [21289] = 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(1850), 1, + anon_sym_GT_GT, + 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(1830), 2, + anon_sym_AMP3, + anon_sym_PIPE, + 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_instanceof, + ACTIONS(1828), 10, + 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_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [21368] = 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1828), 10, + 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_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [21449] = 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(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + ACTIONS(1856), 1, + anon_sym_CARET, + 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(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_instanceof, + ACTIONS(1828), 9, + 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_QMARK_QMARK, + anon_sym_BQUOTE, + [21532] = 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, + 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(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1842), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1830), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + [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(1840), 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [21658] = 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(1850), 1, + anon_sym_GT_GT, + 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(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(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(1830), 4, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 12, + 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_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [21733] = 23, + 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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, + 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_instanceof, + ACTIONS(1828), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [21820] = 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1834), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1676), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [22002] = 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_AMP3, + 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(1826), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [22093] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [22140] = 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1700), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1708), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1712), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [22413] = 5, + ACTIONS(730), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(722), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(726), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(728), 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, + [22464] = 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_AMP3, + 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(1631), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [22555] = 15, + 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(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_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 15, + 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_LT_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, + [22626] = 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + 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(1633), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [22764] = 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_AMP3, + 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(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(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, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1639), 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, + [22906] = 5, + ACTIONS(1729), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1724), 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, + [22957] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [23004] = 5, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(716), 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, + [23055] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1686), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [23102] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1774), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [23149] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(756), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [23196] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1714), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [23243] = 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [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_AMP3, + 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, + 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, + [23337] = 3, + 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [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_AMP3, + 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, + 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, + [23431] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1710), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [23478] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(776), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23525] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [23572] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [23619] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1735), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [23713] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1682), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [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(1840), 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + [23821] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1759), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [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_AMP3, + 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(742), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(746), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(748), 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, + [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_AMP3, + 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(786), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [24134] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(796), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + [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(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_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [24248] = 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [24295] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24342] = 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + [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(1830), 2, + anon_sym_AMP3, + 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, + 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), 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, + [24468] = 5, + 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(1426), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [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_AMP3, + 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(1780), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP3, + 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), 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, + [24691] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1718), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [24738] = 5, + 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(1426), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24789] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(766), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [24836] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1770), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [24883] = 5, + ACTIONS(780), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(772), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(776), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(778), 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, + [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_AMP3, + 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(1603), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + [25072] = 4, + ACTIONS(1528), 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1428), 25, + 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, + [25121] = 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [25168] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [25215] = 5, + ACTIONS(760), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(752), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(756), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(758), 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, + [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_AMP3, + 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(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, + [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, + 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(1830), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [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(1840), 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + [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(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, + ACTIONS(1902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1830), 4, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 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, + [25550] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1702), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + [25597] = 23, + 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_AMP3, + 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), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [25684] = 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [25731] = 5, + ACTIONS(790), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(782), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(786), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(788), 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, + [25782] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [25829] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25876] = 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [25923] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [25970] = 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_AMP3, + 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(1816), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [26061] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [26108] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1755), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [26155] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [26202] = 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_AMP3, + 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(1834), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + 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, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP3, + 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(1700), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [26384] = 4, + ACTIONS(1524), 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1428), 25, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [26433] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1706), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + 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, + [26480] = 4, + ACTIONS(1876), 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_AMP3, + 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), 23, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + 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, + [26529] = 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1832), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [26620] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [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_AMP3, + 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, + 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, + [26718] = 5, + ACTIONS(800), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(792), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(796), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(798), 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, + [26769] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1743), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [26816] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1674), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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_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, + [26863] = 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_AMP3, + 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(1832), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [26954] = 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_AMP3, + 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(1676), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [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_AMP3, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [27096] = 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_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [27143] = 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_AMP3, + 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(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_AMP3, + 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, + [27281] = 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1816), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [27372] = 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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(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_instanceof, + ACTIONS(1716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [27463] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1731), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1733), 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, + [27510] = 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_AMP3, + 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(1712), 5, + sym__automatic_semicolon, + 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_AMP3, + 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, + [27653] = 27, + 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_AMP3, + 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, + 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(1826), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [27747] = 27, + 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_AMP3, + 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, + 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(1816), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [27841] = 5, + ACTIONS(1929), 1, + anon_sym_LPAREN, + ACTIONS(1932), 1, + anon_sym_COLON, + 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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1428), 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, + [27891] = 5, + ACTIONS(1934), 1, + anon_sym_LPAREN, + ACTIONS(1937), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1770), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1772), 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, + [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(1637), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1639), 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, + [27993] = 27, + 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_AMP3, + 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, + ACTIONS(1942), 1, + anon_sym_COMMA, + STATE(797), 1, + sym_arguments, + STATE(1345), 1, + aux_sym_sequence_expression_repeat1, + 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(1944), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [28087] = 5, + ACTIONS(1465), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1547), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1426), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [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(1722), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1724), 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, + [28189] = 27, + 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_AMP3, + 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, + 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(1826), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [28283] = 27, + 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_AMP3, + 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, + ACTIONS(1942), 1, + anon_sym_COMMA, + STATE(797), 1, + sym_arguments, + STATE(1345), 1, + aux_sym_sequence_expression_repeat1, + 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(1954), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [28377] = 27, + 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_AMP3, + 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, + ACTIONS(1942), 1, + anon_sym_COMMA, + STATE(797), 1, + sym_arguments, + STATE(1345), 1, + aux_sym_sequence_expression_repeat1, + 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(1956), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [28471] = 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_AMP3, + 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(1958), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [28561] = 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_AMP3, + 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(1960), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [28651] = 26, + 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, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP3, + 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, + ACTIONS(1964), 1, + anon_sym_in, + 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(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(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_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1428), 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, + [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(1023), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + STATE(1433), 1, + aux_sym_object_repeat1, + STATE(1434), 1, + aux_sym_object_pattern_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(1424), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1429), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1804), 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(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_AMP3, + 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, + 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(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, + [28975] = 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_AMP3, + 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, + 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(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, + [29068] = 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_AMP3, + 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, + 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(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, + [29161] = 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_AMP3, + 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, + 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(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, + [29254] = 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_AMP3, + 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, + 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(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, + [29347] = 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_AMP3, + 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, + 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(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, + [29440] = 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_AMP3, + 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, + 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(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, + [29533] = 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_AMP3, + 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, + 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(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, + [29626] = 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_AMP3, + 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, + 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(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, + [29719] = 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_AMP3, + 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, + 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(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, + [29812] = 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_AMP3, + 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, + 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(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, + [29905] = 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_AMP3, + 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, + 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(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, + [29998] = 27, + ACTIONS(910), 1, + anon_sym_COMMA, + 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_AMP3, + 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(2009), 1, + anon_sym_RBRACK, + STATE(637), 1, + sym_arguments, + STATE(1449), 1, + aux_sym_array_repeat1, + 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, + [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_AMP3, + 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, + ACTIONS(2011), 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(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, + [30184] = 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_AMP3, + 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, + 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(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, + [30277] = 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_AMP3, + 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, + 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(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, + [30370] = 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_AMP3, + 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(2017), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [30459] = 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_AMP3, + 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, + ACTIONS(2019), 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(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, + [30552] = 27, + ACTIONS(910), 1, + anon_sym_COMMA, + 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_AMP3, + 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(2021), 1, + anon_sym_RPAREN, + STATE(637), 1, + sym_arguments, + STATE(1442), 1, + aux_sym_array_repeat1, + 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, + [30645] = 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_AMP3, + 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(1836), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + 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, + [30734] = 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_AMP3, + 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, + 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(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, + [30827] = 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_AMP3, + 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, + 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(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, + [30920] = 6, + 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(1426), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [30971] = 6, + ACTIONS(1641), 1, + anon_sym_RBRACK, + ACTIONS(1644), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1637), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1639), 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, + [31022] = 6, + ACTIONS(1726), 1, + anon_sym_RBRACK, + ACTIONS(1729), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1722), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1724), 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, + [31073] = 6, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(1767), 1, + anon_sym_RBRACK, + ACTIONS(1916), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(714), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(716), 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, + [31124] = 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_AMP3, + 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(1962), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [31213] = 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_AMP3, + 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, + ACTIONS(2027), 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(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, + [31306] = 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_AMP3, + 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, + ACTIONS(2029), 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(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, + [31399] = 27, + ACTIONS(910), 1, + anon_sym_COMMA, + 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_AMP3, + 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(2031), 1, + anon_sym_RBRACK, + STATE(637), 1, + sym_arguments, + STATE(1481), 1, + aux_sym_array_repeat1, + 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, + [31492] = 27, + ACTIONS(910), 1, + anon_sym_COMMA, + 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_AMP3, + 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(2033), 1, + anon_sym_RPAREN, + STATE(637), 1, + sym_arguments, + STATE(1488), 1, + aux_sym_array_repeat1, + 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, + [31585] = 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_AMP3, + 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, + ACTIONS(2035), 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(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, + [31678] = 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_AMP3, + 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, + ACTIONS(2037), 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(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, + [31771] = 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_AMP3, + 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, + ACTIONS(2039), 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(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, + [31864] = 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_AMP3, + 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, + ACTIONS(2041), 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(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, + [31957] = 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(2045), 1, + anon_sym_RBRACE, + ACTIONS(2047), 1, + anon_sym_async, + ACTIONS(2049), 1, + anon_sym_static, + STATE(1023), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + STATE(1434), 1, + aux_sym_object_pattern_repeat1, + STATE(1455), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2051), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1452), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2043), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [32044] = 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_AMP3, + 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, + ACTIONS(2053), 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(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, + [32137] = 27, + ACTIONS(910), 1, + anon_sym_COMMA, + 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_AMP3, + 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(2055), 1, + anon_sym_RPAREN, + STATE(637), 1, + sym_arguments, + STATE(1428), 1, + aux_sym_array_repeat1, + 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, + [32230] = 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(2059), 1, + anon_sym_RBRACE, + ACTIONS(2061), 1, + anon_sym_async, + ACTIONS(2063), 1, + anon_sym_static, + STATE(1023), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + STATE(1434), 1, + aux_sym_object_pattern_repeat1, + STATE(1455), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2065), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1452), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2057), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [32317] = 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_AMP3, + 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, + ACTIONS(2067), 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(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, + [32410] = 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(2071), 1, + anon_sym_RBRACE, + ACTIONS(2073), 1, + anon_sym_async, + ACTIONS(2075), 1, + anon_sym_static, + STATE(1023), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + STATE(1434), 1, + aux_sym_object_pattern_repeat1, + STATE(1455), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2077), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1452), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2069), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [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(1023), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + STATE(1434), 1, + aux_sym_object_pattern_repeat1, + STATE(1455), 1, + aux_sym_object_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(1424), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1452), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1804), 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] = 27, + ACTIONS(910), 1, + anon_sym_COMMA, + 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_AMP3, + 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(2089), 1, + anon_sym_RBRACK, + STATE(637), 1, + sym_arguments, + STATE(1449), 1, + aux_sym_array_repeat1, + 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, + [32677] = 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_AMP3, + 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, + ACTIONS(2091), 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(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, + [32770] = 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_AMP3, + 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, + ACTIONS(2093), 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(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, + [32863] = 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_AMP3, + 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, + ACTIONS(2095), 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(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, + [32956] = 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_AMP3, + 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, + ACTIONS(2097), 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(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, + [33049] = 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_AMP3, + 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, + ACTIONS(2099), 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(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, + [33142] = 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_AMP3, + 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, + ACTIONS(2101), 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(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, + [33235] = 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_AMP3, + 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, + ACTIONS(2103), 1, + anon_sym_COLON, + STATE(637), 1, + sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, + 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, + [33328] = 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_AMP3, + 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, + ACTIONS(2105), 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(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, + [33421] = 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_AMP3, + 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, + ACTIONS(2107), 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(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, + [33514] = 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_AMP3, + 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, + ACTIONS(2109), 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(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, + [33607] = 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_AMP3, + 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, + ACTIONS(2111), 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(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, + [33700] = 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_AMP3, + 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, + ACTIONS(2113), 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(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, + [33793] = 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_AMP3, + 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, + ACTIONS(2115), 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(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, + [33886] = 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_AMP3, + 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, + ACTIONS(2117), 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(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, + [33979] = 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(2121), 1, + anon_sym_RBRACE, + ACTIONS(2123), 1, + anon_sym_async, + ACTIONS(2125), 1, + anon_sym_static, + STATE(1023), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + STATE(1434), 1, + aux_sym_object_pattern_repeat1, + STATE(1455), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2127), 2, + anon_sym_get, + anon_sym_set, + STATE(1424), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1452), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2119), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [34066] = 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(2133), 1, + anon_sym_AMP_AMP, + ACTIONS(2135), 1, + anon_sym_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 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(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 5, + sym__ternary_qmark, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [34148] = 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_AMP3, + 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, + 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, + [34194] = 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_AMP3, + 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(2157), 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, + [34282] = 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_AMP3, + 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, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [34328] = 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_AMP3, + 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(2159), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + 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, + [34416] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1816), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34504] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1716), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34592] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1780), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34680] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1826), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34768] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1631), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34856] = 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(2169), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 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(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1830), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP3, + 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, + anon_sym_BQUOTE, + [34924] = 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(2183), 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_AMP3, + 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_LBRACE, + anon_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, + [34982] = 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(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 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(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35062] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 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(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 5, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35144] = 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(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 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(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2179), 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_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 14, + 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_LT_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, + [35208] = 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(2169), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 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), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 7, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35284] = 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(1830), 1, + anon_sym_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 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(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 7, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35362] = 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(1830), 1, + anon_sym_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 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(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35442] = 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(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 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(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1830), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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_LBRACE, + 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, + [35504] = 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(2183), 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_AMP3, + 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_LBRACE, + anon_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, + [35562] = 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(2169), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 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(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1830), 4, + anon_sym_AMP3, + 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, + [35634] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 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(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 4, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35718] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35806] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1676), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35894] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1700), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35982] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36070] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1712), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36158] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1814), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36246] = 26, + 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_AMP3, + 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, + ACTIONS(2195), 1, + anon_sym_SEMI, + ACTIONS(2197), 1, + sym__automatic_semicolon, + 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, + [36336] = 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_AMP3, + 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(1924), 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, + [36424] = 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_AMP3, + 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(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, + [36512] = 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, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [36558] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 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(1832), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36646] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1816), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [36734] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1716), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [36822] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1780), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [36910] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1826), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [36998] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1631), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [37086] = 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(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(1830), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP3, + 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, + anon_sym_BQUOTE, + [37154] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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(1832), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37242] = 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(2207), 1, + anon_sym_GT_GT, + ACTIONS(2211), 1, + anon_sym_AMP3, + 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), 6, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [37322] = 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(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2207), 1, + anon_sym_GT_GT, + ACTIONS(2211), 1, + anon_sym_AMP3, + 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), 5, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [37404] = 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(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(2217), 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_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [37468] = 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(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(1830), 2, + anon_sym_AMP3, + anon_sym_PIPE, + 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), 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, + [37544] = 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(1830), 1, + anon_sym_PIPE, + ACTIONS(2207), 1, + anon_sym_GT_GT, + ACTIONS(2211), 1, + anon_sym_AMP3, + 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), 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, + [37622] = 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(1830), 1, + anon_sym_PIPE, + ACTIONS(2207), 1, + anon_sym_GT_GT, + ACTIONS(2211), 1, + anon_sym_AMP3, + ACTIONS(2213), 1, + anon_sym_CARET, + 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), 6, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [37702] = 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(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(1830), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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_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, + [37764] = 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, + anon_sym_GT_GT, + anon_sym_AMP3, + 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_LT_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, + [37822] = 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_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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, + [37894] = 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_AMP3, + 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_COLON, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [37978] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1834), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [38066] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1676), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [38154] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1700), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [38242] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1708), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [38330] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1712), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [38418] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1814), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [38506] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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(1816), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38594] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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(1716), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38682] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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(1780), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38770] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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(1826), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38858] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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(1631), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38946] = 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(2135), 1, + anon_sym_GT_GT, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 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(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1830), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 12, + sym__ternary_qmark, + 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, + [39014] = 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(2149), 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_AMP3, + 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_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [39072] = 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(2135), 1, + anon_sym_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 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(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [39152] = 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(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 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(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2145), 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_AMP3, + anon_sym_PIPE, + 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, + [39216] = 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(2135), 1, + anon_sym_GT_GT, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 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), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 7, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [39292] = 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(1830), 1, + anon_sym_PIPE, + ACTIONS(2135), 1, + anon_sym_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 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(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 7, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [39370] = 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(1830), 1, + anon_sym_PIPE, + ACTIONS(2135), 1, + anon_sym_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 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(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [39450] = 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(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 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(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1830), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, + [39512] = 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(2149), 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_AMP3, + 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_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [39570] = 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(2135), 1, + anon_sym_GT_GT, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 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(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1830), 4, + anon_sym_AMP3, + 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, + [39642] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_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(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 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_BQUOTE, + [39726] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39814] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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(1676), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39902] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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(1700), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39990] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40078] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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(1712), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40166] = 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_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 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(1814), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40254] = 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, + anon_sym_GT_GT, + anon_sym_AMP3, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [40304] = 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(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_AMP3, + 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, + 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(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1832), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + 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, + [40392] = 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, + anon_sym_GT_GT, + anon_sym_AMP3, + 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_LT_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, + [40450] = 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(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_AMP3, + 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, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + ACTIONS(2239), 1, + anon_sym_COLON, + 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, + [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(1023), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 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(1431), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1516), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1519), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1804), 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(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_AMP3, + 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(2252), 1, + anon_sym_RBRACK, + 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, + [40703] = 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(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_AMP3, + 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, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + ACTIONS(2254), 1, + anon_sym_COLON, + 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, + [40790] = 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(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_AMP3, + 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, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + ACTIONS(2256), 1, + anon_sym_COLON, + 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, + [40877] = 26, + 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(1962), 1, + anon_sym_of, + ACTIONS(2133), 1, + anon_sym_AMP_AMP, + ACTIONS(2135), 1, + anon_sym_GT_GT, + ACTIONS(2139), 1, + anon_sym_AMP3, + ACTIONS(2141), 1, + anon_sym_CARET, + ACTIONS(2143), 1, + anon_sym_PIPE, + ACTIONS(2147), 1, + anon_sym_PERCENT, + ACTIONS(2149), 1, + anon_sym_STAR_STAR, + ACTIONS(2233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2235), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2237), 1, + sym__ternary_qmark, + ACTIONS(2258), 1, + anon_sym_in, + 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(2131), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2137), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2145), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2153), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2155), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2151), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40966] = 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(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_AMP3, + 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, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + ACTIONS(2261), 1, + anon_sym_COLON, + 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, + [41053] = 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(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_AMP3, + 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, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + ACTIONS(2263), 1, + anon_sym_COLON, + 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, + [41140] = 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(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_AMP3, + 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, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + ACTIONS(2265), 1, + anon_sym_COLON, + 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, + [41227] = 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(2165), 1, + anon_sym_AMP_AMP, + ACTIONS(2167), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2169), 1, + anon_sym_GT_GT, + ACTIONS(2173), 1, + anon_sym_AMP3, + ACTIONS(2175), 1, + anon_sym_CARET, + ACTIONS(2177), 1, + anon_sym_PIPE, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2193), 1, + sym__ternary_qmark, + ACTIONS(2267), 1, + anon_sym_LBRACE, + 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(2161), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2171), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2187), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2189), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2163), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41314] = 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_AMP3, + 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(2269), 1, + anon_sym_RBRACK, + 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, + [41401] = 24, + 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_AMP3, + 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, + 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(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, + [41485] = 24, + 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(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_AMP3, + 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, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + STATE(797), 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, + [41569] = 20, + 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(2273), 1, + anon_sym_COMMA, + ACTIONS(2275), 1, + anon_sym_RBRACE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2279), 1, + anon_sym_async, + ACTIONS(2283), 1, + anon_sym_static, + STATE(1023), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + STATE(1416), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2281), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2285), 2, + anon_sym_get, + anon_sym_set, + STATE(1415), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1496), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2271), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [41640] = 21, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2289), 1, + anon_sym_STAR, + ACTIONS(2291), 1, + anon_sym_RBRACE, + ACTIONS(2293), 1, + anon_sym_SEMI, + 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, + STATE(984), 1, + aux_sym_class_body_repeat1, + STATE(1027), 1, + aux_sym_export_statement_repeat1, + STATE(1079), 1, + sym_method_definition, + STATE(1082), 1, + sym_class_static_block, + STATE(1087), 1, + sym_decorator, + STATE(1665), 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(1254), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [41712] = 21, + ACTIONS(2314), 1, + anon_sym_STAR, + ACTIONS(2317), 1, + anon_sym_RBRACE, + ACTIONS(2319), 1, + anon_sym_SEMI, + ACTIONS(2322), 1, + anon_sym_LBRACK, + ACTIONS(2325), 1, + anon_sym_DQUOTE, + ACTIONS(2328), 1, + anon_sym_SQUOTE, + ACTIONS(2331), 1, + anon_sym_async, + ACTIONS(2337), 1, + anon_sym_AT, + ACTIONS(2340), 1, + anon_sym_static, + ACTIONS(2343), 1, + aux_sym_method_definition_token1, + STATE(983), 1, + aux_sym_class_body_repeat1, + STATE(1027), 1, + aux_sym_export_statement_repeat1, + STATE(1079), 1, + sym_method_definition, + STATE(1082), 1, + sym_class_static_block, + STATE(1087), 1, + sym_decorator, + STATE(1665), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2334), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2346), 2, + anon_sym_get, + anon_sym_set, + STATE(1254), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2311), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [41784] = 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(2349), 1, + anon_sym_RBRACE, + ACTIONS(2351), 1, + anon_sym_SEMI, + STATE(983), 1, + aux_sym_class_body_repeat1, + STATE(1027), 1, + aux_sym_export_statement_repeat1, + STATE(1079), 1, + sym_method_definition, + STATE(1082), 1, + sym_class_static_block, + STATE(1087), 1, + sym_decorator, + STATE(1665), 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(1254), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [41856] = 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(2357), 1, + anon_sym_async, + ACTIONS(2359), 1, + anon_sym_static, + STATE(1023), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2281), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2355), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2361), 2, + anon_sym_get, + anon_sym_set, + STATE(1496), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1519), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(2353), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [41922] = 14, + ACTIONS(883), 1, + anon_sym_DOT_DOT_DOT, + 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(2365), 1, + anon_sym_COMMA, + ACTIONS(2367), 1, + anon_sym_RBRACE, + STATE(1434), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2369), 2, + sym_number, + sym_private_property_identifier, + STATE(1424), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(1844), 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, + [41980] = 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(2351), 1, + anon_sym_SEMI, + ACTIONS(2371), 1, + anon_sym_RBRACE, + STATE(983), 1, + aux_sym_class_body_repeat1, + STATE(1027), 1, + aux_sym_export_statement_repeat1, + STATE(1079), 1, + sym_method_definition, + STATE(1082), 1, + sym_class_static_block, + STATE(1087), 1, + sym_decorator, + STATE(1665), 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(1254), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [42052] = 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(2373), 1, + anon_sym_RBRACE, + ACTIONS(2375), 1, + anon_sym_SEMI, + STATE(987), 1, + aux_sym_class_body_repeat1, + STATE(1027), 1, + aux_sym_export_statement_repeat1, + STATE(1079), 1, + sym_method_definition, + STATE(1082), 1, + sym_class_static_block, + STATE(1087), 1, + sym_decorator, + STATE(1665), 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(1254), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [42124] = 14, + ACTIONS(883), 1, + anon_sym_DOT_DOT_DOT, + 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(2365), 1, + anon_sym_COMMA, + ACTIONS(2379), 1, + anon_sym_RBRACE, + STATE(1456), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2369), 2, + sym_number, + sym_private_property_identifier, + STATE(1451), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(1844), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2377), 8, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [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(2381), 1, + anon_sym_RBRACE, + ACTIONS(2383), 1, + anon_sym_SEMI, + STATE(991), 1, + aux_sym_class_body_repeat1, + STATE(1027), 1, + aux_sym_export_statement_repeat1, + STATE(1079), 1, + sym_method_definition, + STATE(1082), 1, + sym_class_static_block, + STATE(1087), 1, + sym_decorator, + STATE(1665), 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(1254), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [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(2351), 1, + anon_sym_SEMI, + ACTIONS(2385), 1, + anon_sym_RBRACE, + STATE(983), 1, + aux_sym_class_body_repeat1, + STATE(1027), 1, + aux_sym_export_statement_repeat1, + STATE(1079), 1, + sym_method_definition, + STATE(1082), 1, + sym_class_static_block, + STATE(1087), 1, + sym_decorator, + STATE(1665), 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(1254), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + 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(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(1973), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2369), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2389), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1516), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(1844), 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, + [42379] = 15, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 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, + [42436] = 16, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [42495] = 16, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(171), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1409), 1, + aux_sym_object_repeat1, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [42554] = 15, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(216), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 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, + [42611] = 16, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [42670] = 16, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(216), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [42729] = 15, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2401), 1, + anon_sym_RBRACE, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 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, + [42786] = 15, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 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, + [42843] = 15, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(171), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1409), 1, + aux_sym_object_repeat1, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 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, + [42900] = 16, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2401), 1, + anon_sym_RBRACE, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [42959] = 15, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(351), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 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, + [43016] = 16, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(351), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [43075] = 13, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 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_COLON, + STATE(1709), 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, + [43127] = 13, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(171), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1409), 1, + aux_sym_object_repeat1, + STATE(1411), 1, + aux_sym_object_pattern_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_COLON, + STATE(1709), 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, + [43179] = 13, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(216), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 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_COLON, + STATE(1709), 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, + [43231] = 13, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2401), 1, + anon_sym_RBRACE, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 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_COLON, + STATE(1709), 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, + [43283] = 13, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 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_COLON, + STATE(1709), 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, + [43335] = 14, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2297), 1, + anon_sym_DQUOTE, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + 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(1077), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2409), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2411), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(1248), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2287), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [43389] = 13, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(351), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 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_COLON, + STATE(1709), 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, + [43441] = 13, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2416), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [43492] = 13, + 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(2391), 1, + anon_sym_STAR, + ACTIONS(2419), 1, + anon_sym_RBRACE, + STATE(1421), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 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, + [43543] = 14, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2419), 1, + anon_sym_RBRACE, + STATE(1421), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [43596] = 18, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2421), 1, + anon_sym_export, + ACTIONS(2423), 1, + anon_sym_STAR, + ACTIONS(2425), 1, + anon_sym_class, + ACTIONS(2427), 1, + anon_sym_async, + ACTIONS(2431), 1, + anon_sym_static, + ACTIONS(2433), 1, + aux_sym_method_definition_token1, + ACTIONS(2435), 1, + anon_sym_get, + ACTIONS(2437), 1, + anon_sym_set, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2429), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1085), 3, + anon_sym_let, + anon_sym_await, + sym_identifier, + STATE(1667), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [43657] = 12, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2416), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1709), 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, + [43706] = 11, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + 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(2441), 2, + sym_number, + sym_private_property_identifier, + STATE(1579), 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), 6, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + [43752] = 11, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2447), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1709), 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, + [43798] = 10, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2403), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2449), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2451), 2, + anon_sym_get, + anon_sym_set, + STATE(1550), 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), 6, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + [43842] = 12, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2447), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [43890] = 10, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2397), 1, + anon_sym_EQ, + 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_COLON, + ACTIONS(2416), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1709), 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, + [43934] = 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(2419), 1, + anon_sym_RBRACE, + STATE(1421), 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_COLON, + STATE(1709), 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, + [43980] = 16, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_STAR, + ACTIONS(2427), 1, + anon_sym_async, + ACTIONS(2431), 1, + anon_sym_static, + ACTIONS(2433), 1, + aux_sym_method_definition_token1, + ACTIONS(2435), 1, + anon_sym_get, + ACTIONS(2437), 1, + anon_sym_set, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2429), 2, + sym_number, + sym_private_property_identifier, + STATE(1667), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [44036] = 10, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2453), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2455), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2457), 2, + anon_sym_get, + anon_sym_set, + STATE(1577), 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), 6, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + [44080] = 12, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2297), 1, + anon_sym_DQUOTE, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2459), 1, + anon_sym_STAR, + ACTIONS(2461), 1, + anon_sym_async, + ACTIONS(2465), 1, + anon_sym_get, + ACTIONS(2467), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2463), 2, + sym_number, + sym_private_property_identifier, + STATE(1229), 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(2287), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [44128] = 11, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2469), 1, + anon_sym_STAR, + ACTIONS(2473), 1, + anon_sym_get, + ACTIONS(2475), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2471), 2, + sym_number, + sym_private_property_identifier, + STATE(1596), 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), 6, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + [44174] = 16, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2297), 1, + anon_sym_DQUOTE, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2477), 1, + anon_sym_STAR, + ACTIONS(2479), 1, + anon_sym_async, + ACTIONS(2483), 1, + anon_sym_static, + ACTIONS(2485), 1, + aux_sym_method_definition_token1, + ACTIONS(2487), 1, + anon_sym_get, + ACTIONS(2489), 1, + anon_sym_set, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2481), 2, + sym_number, + sym_private_property_identifier, + STATE(1270), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [44230] = 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(2491), 2, + sym_number, + sym_private_property_identifier, + STATE(1598), 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_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44269] = 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(2493), 1, + anon_sym_default, + STATE(486), 1, + sym_declaration, + STATE(1087), 1, + sym_decorator, + STATE(1383), 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, + [44322] = 9, + 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(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2447), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1709), 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, + [44363] = 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(2495), 2, + sym_number, + sym_private_property_identifier, + STATE(1581), 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_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44402] = 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(2455), 2, + sym_number, + sym_private_property_identifier, + STATE(1577), 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_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44441] = 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(2497), 2, + sym_number, + sym_private_property_identifier, + STATE(1582), 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_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44480] = 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(2449), 2, + sym_number, + sym_private_property_identifier, + STATE(1550), 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_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44519] = 6, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2505), 1, + anon_sym_DOT, + STATE(1088), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2501), 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(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, + [44554] = 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(2507), 2, + sym_number, + sym_private_property_identifier, + STATE(1597), 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_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44593] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2511), 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, + [44621] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2511), 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, + [44649] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2515), 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(2513), 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, + [44677] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2519), 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, + [44705] = 4, + ACTIONS(2521), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(694), 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, + [44735] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2523), 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(2525), 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, + [44763] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2523), 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(2525), 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, + [44791] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2523), 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(2525), 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, + [44819] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2511), 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, + [44847] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2511), 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, + [44875] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2523), 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(2525), 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, + [44903] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2527), 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(2529), 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, + [44931] = 4, + ACTIONS(2531), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(708), 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, + [44961] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2523), 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(2525), 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, + [44989] = 6, + ACTIONS(2537), 1, + anon_sym_AT, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2535), 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(2533), 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, + [45023] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2523), 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(2525), 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, + [45051] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2511), 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, + [45079] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2511), 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, + [45107] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2511), 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, + [45135] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2540), 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(2542), 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, + [45163] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2544), 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(2546), 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, + [45191] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2544), 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(2546), 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, + [45219] = 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(2548), 1, + anon_sym_default, + STATE(486), 1, + sym_declaration, + STATE(1087), 1, + sym_decorator, + STATE(1383), 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, + [45269] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2511), 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(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(2511), 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, + [45325] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2544), 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(2546), 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, + [45353] = 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(2493), 1, + anon_sym_default, + STATE(486), 1, + sym_declaration, + STATE(1087), 1, + sym_decorator, + STATE(1383), 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, + [45403] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2550), 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(2552), 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, + [45431] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2554), 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(2556), 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, + [45459] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2511), 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, + [45487] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2544), 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(2546), 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, + [45515] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2544), 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(2546), 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, + [45543] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2544), 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(2546), 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, + [45571] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(2511), 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, + [45599] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(700), 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, + [45626] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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(694), 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, + [45653] = 10, + 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(2453), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2455), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2457), 2, + anon_sym_get, + anon_sym_set, + STATE(1577), 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, + [45694] = 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(2558), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2560), 2, + sym_number, + sym_private_property_identifier, + STATE(1677), 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, + [45733] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2562), 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(2564), 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, + [45760] = 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(2566), 1, + anon_sym_STAR, + ACTIONS(2570), 1, + anon_sym_get, + ACTIONS(2572), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2568), 2, + sym_number, + sym_private_property_identifier, + STATE(1600), 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, + [45803] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2574), 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(2576), 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, + [45830] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2578), 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(2580), 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, + [45857] = 4, + ACTIONS(2586), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2582), 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(2584), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [45886] = 10, + 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(2589), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2560), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2591), 2, + anon_sym_get, + anon_sym_set, + STATE(1677), 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, + [45927] = 12, + 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(2593), 1, + anon_sym_STAR, + ACTIONS(2595), 1, + anon_sym_async, + ACTIONS(2599), 1, + anon_sym_get, + ACTIONS(2601), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2597), 2, + sym_number, + sym_private_property_identifier, + STATE(1731), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [45972] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2582), 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(2584), 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, + [45999] = 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(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(2605), 2, + sym_number, + sym_private_property_identifier, + STATE(1606), 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, + [46042] = 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(2611), 1, + anon_sym_STAR, + ACTIONS(2615), 1, + anon_sym_get, + ACTIONS(2617), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2613), 2, + sym_number, + sym_private_property_identifier, + STATE(1573), 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, + [46085] = 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(2619), 1, + anon_sym_STAR, + ACTIONS(2623), 1, + anon_sym_get, + ACTIONS(2625), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2621), 2, + sym_number, + sym_private_property_identifier, + STATE(1565), 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, + [46128] = 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(2627), 2, + sym_number, + sym_private_property_identifier, + STATE(1608), 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, + [46164] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2631), 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(2629), 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, + [46190] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2635), 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(2633), 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, + [46216] = 10, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2391), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + STATE(1709), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [46256] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2501), 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(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, + [46282] = 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(2637), 2, + sym_number, + sym_private_property_identifier, + STATE(1718), 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, + [46318] = 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(2639), 2, + sym_number, + sym_private_property_identifier, + STATE(1719), 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, + [46354] = 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(2641), 2, + sym_number, + sym_private_property_identifier, + STATE(1740), 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, + [46390] = 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(2643), 2, + sym_number, + sym_private_property_identifier, + STATE(1742), 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, + [46426] = 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(2645), 2, + sym_number, + sym_private_property_identifier, + STATE(1555), 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, + [46462] = 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(2560), 2, + sym_number, + sym_private_property_identifier, + STATE(1677), 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, + [46498] = 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(2647), 2, + sym_number, + sym_private_property_identifier, + STATE(1559), 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, + [46534] = 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(2649), 2, + sym_number, + sym_private_property_identifier, + STATE(1561), 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, + [46570] = 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(2651), 2, + sym_number, + sym_private_property_identifier, + STATE(1566), 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, + [46606] = 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(2653), 2, + sym_number, + sym_private_property_identifier, + STATE(1567), 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, + [46642] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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, + [46668] = 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(2655), 2, + sym_number, + sym_private_property_identifier, + STATE(1612), 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, + [46704] = 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(2657), 2, + sym_number, + sym_private_property_identifier, + STATE(1575), 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, + [46740] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1737), 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(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, + [46766] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1745), 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(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, + [46792] = 11, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2659), 1, + anon_sym_STAR, + ACTIONS(2661), 1, + anon_sym_async, + ACTIONS(2665), 1, + anon_sym_get, + ACTIONS(2667), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2663), 2, + sym_number, + sym_private_property_identifier, + STATE(1564), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [46834] = 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(2669), 2, + sym_number, + sym_private_property_identifier, + STATE(1572), 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, + [46870] = 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(2671), 2, + sym_number, + sym_private_property_identifier, + STATE(1583), 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, + [46906] = 10, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2403), 1, + anon_sym_STAR, + ACTIONS(2673), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2449), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2451), 2, + anon_sym_get, + anon_sym_set, + STATE(1550), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [46946] = 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(2455), 2, + sym_number, + sym_private_property_identifier, + STATE(1577), 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, + [46982] = 11, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2675), 1, + anon_sym_STAR, + ACTIONS(2677), 1, + anon_sym_async, + ACTIONS(2681), 1, + anon_sym_get, + ACTIONS(2683), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2679), 2, + sym_number, + sym_private_property_identifier, + STATE(1580), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [47024] = 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(2685), 2, + sym_number, + sym_private_property_identifier, + STATE(1591), 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, + [47060] = 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(2687), 2, + sym_number, + sym_private_property_identifier, + STATE(1593), 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, + [47096] = 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(2689), 2, + sym_number, + sym_private_property_identifier, + STATE(1594), 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, + [47132] = 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(2691), 2, + sym_number, + sym_private_property_identifier, + STATE(1601), 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, + [47168] = 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(2693), 2, + sym_number, + sym_private_property_identifier, + STATE(1602), 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, + [47204] = 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(2695), 2, + sym_number, + sym_private_property_identifier, + STATE(1609), 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, + [47240] = 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(2697), 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_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47276] = 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(2699), 2, + sym_number, + sym_private_property_identifier, + STATE(1574), 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, + [47312] = 7, + 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(2645), 2, + sym_number, + sym_private_property_identifier, + STATE(1555), 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, + [47345] = 7, + 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(2701), 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_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47378] = 7, + 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(1081), 2, + sym_number, + sym_private_property_identifier, + STATE(1709), 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, + [47411] = 7, + 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(2560), 2, + sym_number, + sym_private_property_identifier, + STATE(1677), 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, + [47444] = 7, + 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(2703), 2, + sym_number, + sym_private_property_identifier, + STATE(1711), 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, + [47477] = 7, + 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(2705), 2, + sym_number, + sym_private_property_identifier, + STATE(1558), 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, + [47510] = 7, + 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(2707), 2, + sym_number, + sym_private_property_identifier, + STATE(1563), 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, + [47543] = 7, + 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(2709), 2, + sym_number, + sym_private_property_identifier, + STATE(1569), 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, + [47576] = 7, + 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(2711), 2, + sym_number, + sym_private_property_identifier, + STATE(1525), 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, + [47609] = 7, + 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(2449), 2, + sym_number, + sym_private_property_identifier, + STATE(1550), 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, + [47642] = 7, + 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(2455), 2, + sym_number, + sym_private_property_identifier, + STATE(1577), 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, + [47675] = 7, + 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(2713), 2, + sym_number, + sym_private_property_identifier, + STATE(1578), 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, + [47708] = 7, + 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(2685), 2, + sym_number, + sym_private_property_identifier, + STATE(1591), 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, + [47741] = 7, + 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(2715), 2, + sym_number, + sym_private_property_identifier, + STATE(1592), 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, + [47774] = 7, + 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(2717), 2, + sym_number, + sym_private_property_identifier, + STATE(1595), 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, + [47807] = 7, + 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(2719), 2, + sym_number, + sym_private_property_identifier, + STATE(1599), 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, + [47840] = 7, + 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(2721), 2, + sym_number, + sym_private_property_identifier, + STATE(1607), 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, + [47873] = 7, + 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(2723), 2, + sym_number, + sym_private_property_identifier, + STATE(1739), 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, + [47906] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2725), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [47928] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + 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] = 9, + ACTIONS(2737), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2743), 1, + anon_sym_LT_SLASH, + ACTIONS(2745), 1, + anon_sym_AMP, + STATE(745), 1, + sym_jsx_closing_element, + STATE(1147), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2739), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1146), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [48072] = 9, + ACTIONS(2737), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2749), 1, + anon_sym_LT_SLASH, + STATE(611), 1, + sym_jsx_closing_element, + STATE(1147), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2747), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1153), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [48106] = 9, + ACTIONS(2737), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2743), 1, + anon_sym_LT_SLASH, + ACTIONS(2745), 1, + anon_sym_AMP, + STATE(790), 1, + sym_jsx_closing_element, + STATE(1147), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2747), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1153), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [48140] = 9, + ACTIONS(2737), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2753), 1, + anon_sym_LT_SLASH, + STATE(1147), 1, + sym_jsx_opening_element, + STATE(1239), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2751), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1148), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [48174] = 9, + ACTIONS(2737), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2753), 1, + anon_sym_LT_SLASH, + STATE(1147), 1, + sym_jsx_opening_element, + STATE(1261), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2747), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1153), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [48208] = 9, + ACTIONS(2737), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2757), 1, + anon_sym_LT_SLASH, + STATE(1147), 1, + sym_jsx_opening_element, + STATE(1299), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2755), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1150), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [48242] = 9, + ACTIONS(2737), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2757), 1, + anon_sym_LT_SLASH, + STATE(1147), 1, + sym_jsx_opening_element, + STATE(1306), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2747), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1153), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [48276] = 9, + ACTIONS(2737), 1, + anon_sym_LBRACE, + ACTIONS(2741), 1, + anon_sym_LT, + ACTIONS(2745), 1, + anon_sym_AMP, + ACTIONS(2749), 1, + anon_sym_LT_SLASH, + STATE(608), 1, + sym_jsx_closing_element, + STATE(1147), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2759), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1145), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [48310] = 11, + ACTIONS(2297), 1, + anon_sym_DQUOTE, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2761), 1, + sym_identifier, + ACTIONS(2763), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LBRACE, + ACTIONS(2769), 1, + anon_sym_DOT, + STATE(1401), 1, + sym_string, + STATE(1534), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2767), 2, + anon_sym_LPAREN, + sym_optional_chain, + STATE(1760), 2, + sym_namespace_import, + sym_named_imports, + [48347] = 8, + ACTIONS(2771), 1, + anon_sym_LBRACE, + ACTIONS(2777), 1, + anon_sym_LT, + ACTIONS(2780), 1, + anon_sym_LT_SLASH, + ACTIONS(2782), 1, + anon_sym_AMP, + STATE(1147), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2774), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1153), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [48378] = 11, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2797), 1, + anon_sym_SLASH_GT, + STATE(1178), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48414] = 11, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2799), 1, + anon_sym_SLASH_GT, + STATE(1173), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48450] = 11, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2801), 1, + anon_sym_SLASH_GT, + STATE(1176), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48486] = 11, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2803), 1, + anon_sym_SLASH_GT, + STATE(1182), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48522] = 10, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2799), 1, + anon_sym_SLASH_GT, + STATE(1174), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48555] = 10, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2797), 1, + anon_sym_SLASH_GT, + STATE(1177), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48588] = 10, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2797), 1, + anon_sym_SLASH_GT, + STATE(1179), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48621] = 10, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2801), 1, + anon_sym_SLASH_GT, + STATE(1185), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48654] = 10, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2803), 1, + anon_sym_SLASH_GT, + STATE(1181), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48687] = 10, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2801), 1, + anon_sym_SLASH_GT, + STATE(1167), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48720] = 10, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(2803), 1, + anon_sym_SLASH_GT, + STATE(1183), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48753] = 10, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2799), 1, + anon_sym_SLASH_GT, + STATE(1172), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48786] = 9, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_identifier, + ACTIONS(2807), 1, + anon_sym_default, + ACTIONS(2809), 1, + anon_sym_COMMA, + ACTIONS(2811), 1, + anon_sym_RBRACE, + STATE(1491), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1789), 2, + sym__module_export_name, + sym_string, + [48816] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2813), 1, + anon_sym_GT, + ACTIONS(2815), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48846] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2817), 1, + anon_sym_GT, + ACTIONS(2819), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48876] = 8, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2823), 1, + anon_sym_COMMA, + ACTIONS(2825), 1, + anon_sym_RBRACE, + STATE(1478), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2821), 2, + anon_sym_default, + sym_identifier, + STATE(1492), 2, + sym__module_export_name, + sym_string, + [48904] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2799), 1, + anon_sym_SLASH_GT, + STATE(1175), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48934] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2797), 1, + anon_sym_SLASH_GT, + STATE(1180), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48964] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2827), 1, + anon_sym_GT, + ACTIONS(2829), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48994] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2831), 1, + anon_sym_GT, + ACTIONS(2833), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49024] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2813), 1, + anon_sym_GT, + ACTIONS(2835), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49054] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2817), 1, + anon_sym_GT, + ACTIONS(2837), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49084] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2831), 1, + anon_sym_GT, + ACTIONS(2839), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49114] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2827), 1, + anon_sym_GT, + ACTIONS(2841), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49144] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2831), 1, + anon_sym_GT, + ACTIONS(2843), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49174] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2813), 1, + anon_sym_GT, + ACTIONS(2845), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49204] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2817), 1, + anon_sym_GT, + ACTIONS(2847), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49234] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2827), 1, + anon_sym_GT, + ACTIONS(2849), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49264] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2831), 1, + anon_sym_GT, + ACTIONS(2851), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49294] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2813), 1, + anon_sym_GT, + ACTIONS(2853), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49324] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2817), 1, + anon_sym_GT, + ACTIONS(2855), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49354] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2827), 1, + anon_sym_GT, + ACTIONS(2857), 1, + anon_sym_SLASH_GT, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49384] = 7, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2859), 1, + anon_sym_LT, + ACTIONS(2861), 1, + anon_sym_DQUOTE, + ACTIONS(2863), 1, + anon_sym_SQUOTE, + STATE(1149), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1293), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [49410] = 8, + ACTIONS(2865), 1, + sym_identifier, + ACTIONS(2868), 1, + anon_sym_LBRACE, + ACTIONS(2873), 1, + sym_jsx_identifier, + STATE(1187), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2871), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49438] = 7, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2859), 1, + anon_sym_LT, + ACTIONS(2861), 1, + anon_sym_DQUOTE, + ACTIONS(2863), 1, + anon_sym_SQUOTE, + STATE(1149), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1294), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [49464] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2801), 1, + anon_sym_SLASH_GT, + STATE(1168), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49494] = 9, + ACTIONS(2785), 1, + sym_identifier, + ACTIONS(2787), 1, + anon_sym_LBRACE, + ACTIONS(2791), 1, + anon_sym_GT, + ACTIONS(2793), 1, + sym_jsx_identifier, + ACTIONS(2803), 1, + anon_sym_SLASH_GT, + STATE(1184), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1235), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1300), 2, + sym_jsx_expression, + sym_jsx_attribute, + [49524] = 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(1368), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49549] = 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(1375), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49574] = 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(1358), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49599] = 7, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2876), 1, + anon_sym_RBRACE, + STATE(1540), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2821), 2, + anon_sym_default, + sym_identifier, + STATE(1492), 2, + sym__module_export_name, + sym_string, + [49624] = 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(1443), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49649] = 7, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(2878), 1, + sym_identifier, + ACTIONS(2880), 1, + anon_sym_of, + STATE(1358), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1215), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49674] = 7, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2882), 1, + anon_sym_RBRACE, + STATE(1540), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2821), 2, + anon_sym_default, + sym_identifier, + STATE(1492), 2, + sym__module_export_name, + sym_string, + [49699] = 8, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_identifier, + ACTIONS(2807), 1, + anon_sym_default, + ACTIONS(2884), 1, + anon_sym_RBRACE, + STATE(1604), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1789), 2, + sym__module_export_name, + sym_string, + [49726] = 7, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1422), 1, + sym_identifier, + ACTIONS(2886), 1, + anon_sym_of, + STATE(1361), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1216), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49751] = 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(1361), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49776] = 8, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_identifier, + ACTIONS(2807), 1, + anon_sym_default, + ACTIONS(2888), 1, + anon_sym_RBRACE, + STATE(1604), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1789), 2, + sym__module_export_name, + sym_string, + [49803] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(171), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1409), 1, + aux_sym_object_repeat1, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [49827] = 6, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + sym_identifier, + ACTIONS(2890), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1499), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49849] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2401), 1, + anon_sym_RBRACE, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [49873] = 5, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2892), 1, + sym_identifier, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2894), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [49893] = 6, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + STATE(1540), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2821), 2, + anon_sym_default, + sym_identifier, + STATE(1492), 2, + sym__module_export_name, + sym_string, + [49915] = 6, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(2898), 1, + sym_identifier, + ACTIONS(2900), 1, + anon_sym_of, + ACTIONS(2902), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1336), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49937] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2904), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + anon_sym_RBRACK, + [49951] = 6, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(2906), 1, + sym_identifier, + ACTIONS(2908), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1480), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49973] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [49997] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(351), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [50021] = 5, + ACTIONS(2912), 1, + anon_sym_EQ, + STATE(1279), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2910), 2, + anon_sym_of, + anon_sym_in, + ACTIONS(858), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [50041] = 4, + ACTIONS(2914), 1, + anon_sym_COMMA, + STATE(1213), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1836), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [50059] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2917), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + anon_sym_RBRACK, + [50073] = 5, + ACTIONS(2912), 1, + anon_sym_EQ, + STATE(1281), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2921), 2, + anon_sym_of, + anon_sym_in, + ACTIONS(2919), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [50093] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2923), 1, + sym__automatic_semicolon, + STATE(1432), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2919), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2921), 2, + anon_sym_of, + anon_sym_in, + [50115] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(864), 1, + sym__automatic_semicolon, + STATE(1405), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(858), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2910), 2, + anon_sym_of, + anon_sym_in, + [50137] = 7, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2805), 1, + sym_identifier, + ACTIONS(2807), 1, + anon_sym_default, + STATE(1604), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1789), 2, + sym__module_export_name, + sym_string, + [50161] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [50185] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(216), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + STATE(1473), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [50209] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2926), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + anon_sym_RBRACK, + [50223] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2928), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + anon_sym_RBRACK, + [50237] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2930), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + anon_sym_RBRACK, + [50251] = 4, + ACTIONS(1983), 1, + anon_sym_COMMA, + STATE(1213), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2932), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [50269] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1599), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1601), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50284] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2934), 1, + sym_html_character_reference, + ACTIONS(2936), 1, + anon_sym_DQUOTE, + ACTIONS(2938), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(2940), 1, + anon_sym_AMP2, + STATE(1251), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [50307] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2936), 1, + anon_sym_SQUOTE, + ACTIONS(2942), 1, + sym_html_character_reference, + ACTIONS(2944), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(2946), 1, + anon_sym_AMP2, + STATE(1263), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [50330] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2950), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2948), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50345] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1688), 1, + sym_formal_parameters, + STATE(1748), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2954), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50366] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1753), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [50379] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2958), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2956), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50394] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2904), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [50407] = 5, + ACTIONS(2960), 1, + anon_sym_default, + ACTIONS(2963), 1, + anon_sym_RBRACE, + ACTIONS(2965), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1233), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [50426] = 5, + ACTIONS(2970), 1, + anon_sym_BQUOTE, + ACTIONS(2972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2968), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1237), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [50445] = 4, + ACTIONS(2974), 1, + sym_identifier, + ACTIONS(2978), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2976), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50462] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2928), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [50475] = 5, + ACTIONS(2983), 1, + anon_sym_BQUOTE, + ACTIONS(2985), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2980), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1237), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [50494] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1680), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [50507] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1658), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1660), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50522] = 5, + ACTIONS(2972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2988), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2968), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1237), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [50541] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1912), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [50554] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2992), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2990), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50569] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2996), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2994), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50584] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2950), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2948), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50599] = 5, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2998), 2, + anon_sym_default, + sym_identifier, + STATE(1857), 2, + sym__module_export_name, + sym_string, + [50618] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3002), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(3000), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50633] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2950), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2948), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50648] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1661), 1, + sym__initializer, + STATE(1673), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3004), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50669] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2950), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(2948), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50684] = 5, + ACTIONS(2972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3008), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3006), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1234), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [50703] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2940), 1, + anon_sym_AMP2, + ACTIONS(3010), 1, + sym_html_character_reference, + ACTIONS(3012), 1, + anon_sym_DQUOTE, + ACTIONS(3014), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1257), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [50726] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2926), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [50739] = 5, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(2902), 1, + anon_sym_LBRACK, + ACTIONS(3016), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1852), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [50758] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1554), 1, + sym__initializer, + STATE(1644), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3018), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50779] = 5, + ACTIONS(3020), 1, + anon_sym_default, + ACTIONS(3022), 1, + anon_sym_RBRACE, + ACTIONS(3024), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1267), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [50798] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2917), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [50811] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3026), 1, + sym_html_character_reference, + ACTIONS(3029), 1, + anon_sym_DQUOTE, + ACTIONS(3031), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(3034), 1, + anon_sym_AMP2, + STATE(1257), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [50834] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3037), 1, + sym_html_character_reference, + ACTIONS(3040), 1, + anon_sym_SQUOTE, + ACTIONS(3042), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(3045), 1, + anon_sym_AMP2, + STATE(1258), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [50857] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1666), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1668), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50872] = 3, + ACTIONS(3048), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3050), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50887] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1670), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1672), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50902] = 5, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3052), 2, + anon_sym_default, + sym_identifier, + STATE(1541), 2, + sym__module_export_name, + sym_string, + [50921] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2946), 1, + anon_sym_AMP2, + ACTIONS(3012), 1, + anon_sym_SQUOTE, + ACTIONS(3054), 1, + sym_html_character_reference, + ACTIONS(3056), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1258), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [50944] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2930), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [50957] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1694), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1696), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50972] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1694), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1696), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50987] = 5, + ACTIONS(3020), 1, + anon_sym_default, + ACTIONS(3024), 1, + anon_sym_case, + ACTIONS(3058), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1233), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [51006] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1694), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1696), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51021] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1694), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1696), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51036] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1662), 1, + sym__initializer, + STATE(1674), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3060), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51057] = 5, + ACTIONS(2972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3064), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3062), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1240), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [51076] = 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, + [51089] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1916), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [51102] = 3, + ACTIONS(3066), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3068), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [51117] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3072), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(3070), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51132] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1603), 2, + anon_sym_LT, + anon_sym_AMP, + ACTIONS(1605), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51147] = 6, + ACTIONS(3074), 1, + sym_identifier, + ACTIONS(3076), 1, + anon_sym_GT, + ACTIONS(3078), 1, + sym_jsx_identifier, + STATE(1160), 1, + sym_nested_identifier, + STATE(1171), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51167] = 6, + ACTIONS(3080), 1, + sym_identifier, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_extends, + STATE(748), 1, + sym_class_body, + STATE(1570), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51187] = 4, + ACTIONS(3088), 1, + anon_sym_of, + ACTIONS(3090), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3086), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51203] = 3, + ACTIONS(3092), 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, + [51217] = 4, + ACTIONS(3097), 1, + anon_sym_of, + ACTIONS(3099), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3095), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51233] = 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(2416), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51249] = 4, + ACTIONS(862), 1, + anon_sym_EQ, + STATE(1405), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(858), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51265] = 6, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3101), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_class_body, + STATE(1633), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51285] = 6, + ACTIONS(3105), 1, + sym_identifier, + ACTIONS(3107), 1, + anon_sym_GT, + ACTIONS(3109), 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, + [51305] = 3, + ACTIONS(3111), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3113), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51319] = 3, + ACTIONS(3072), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3070), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51333] = 6, + ACTIONS(3076), 1, + anon_sym_GT, + ACTIONS(3115), 1, + sym_identifier, + ACTIONS(3117), 1, + sym_jsx_identifier, + STATE(1164), 1, + sym_nested_identifier, + STATE(1190), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51353] = 6, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(3119), 1, + sym_identifier, + ACTIONS(3121), 1, + anon_sym_LBRACK, + ACTIONS(3123), 1, + sym_private_property_identifier, + STATE(609), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51373] = 6, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(3125), 1, + sym_identifier, + ACTIONS(3127), 1, + anon_sym_LBRACK, + ACTIONS(3129), 1, + sym_private_property_identifier, + STATE(784), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51393] = 4, + ACTIONS(862), 1, + anon_sym_EQ, + STATE(1432), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2919), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51409] = 6, + ACTIONS(3076), 1, + anon_sym_GT, + ACTIONS(3131), 1, + sym_identifier, + ACTIONS(3133), 1, + sym_jsx_identifier, + STATE(1158), 1, + sym_nested_identifier, + STATE(1170), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51429] = 3, + ACTIONS(3135), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3137), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51443] = 3, + ACTIONS(3139), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3141), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51457] = 6, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3143), 1, + sym_identifier, + STATE(732), 1, + sym_class_body, + STATE(1650), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51477] = 6, + ACTIONS(3145), 1, + sym_identifier, + ACTIONS(3147), 1, + anon_sym_GT, + ACTIONS(3149), 1, + sym_jsx_identifier, + STATE(1517), 1, + sym_nested_identifier, + STATE(1756), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51497] = 3, + ACTIONS(2996), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2994), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51511] = 6, + ACTIONS(3151), 1, + sym_identifier, + ACTIONS(3153), 1, + anon_sym_GT, + ACTIONS(3155), 1, + sym_jsx_identifier, + STATE(1669), 1, + sym_nested_identifier, + STATE(1757), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51531] = 3, + ACTIONS(1658), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1660), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51545] = 3, + ACTIONS(3157), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3159), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51559] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1680), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [51571] = 6, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(2395), 1, + anon_sym_COLON, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(3161), 1, + anon_sym_RBRACE, + STATE(1411), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51591] = 3, + ACTIONS(1603), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1605), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51605] = 6, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3163), 1, + anon_sym_export, + ACTIONS(3165), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51625] = 3, + ACTIONS(1666), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1668), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51639] = 3, + ACTIONS(1670), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1672), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51653] = 3, + ACTIONS(1694), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1696), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51667] = 3, + ACTIONS(1694), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1696), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51681] = 3, + ACTIONS(1694), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1696), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51695] = 3, + ACTIONS(1694), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1696), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51709] = 3, + ACTIONS(1599), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1601), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51723] = 6, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3167), 1, + sym_identifier, + STATE(732), 1, + sym_class_body, + STATE(1650), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51743] = 6, + ACTIONS(3076), 1, + anon_sym_GT, + ACTIONS(3169), 1, + sym_identifier, + ACTIONS(3171), 1, + sym_jsx_identifier, + STATE(1163), 1, + sym_nested_identifier, + STATE(1189), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51763] = 6, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3173), 1, + sym_identifier, + STATE(748), 1, + sym_class_body, + STATE(1570), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51783] = 6, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(2395), 1, + anon_sym_COLON, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(3175), 1, + anon_sym_RBRACE, + STATE(1474), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51803] = 6, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3177), 1, + anon_sym_export, + ACTIONS(3179), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51823] = 6, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3103), 1, + anon_sym_LBRACE, + ACTIONS(3181), 1, + sym_identifier, + STATE(615), 1, + sym_class_body, + STATE(1671), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51843] = 6, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3183), 1, + sym_identifier, + STATE(748), 1, + sym_class_body, + STATE(1570), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51863] = 3, + ACTIONS(3185), 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, + [51877] = 3, + ACTIONS(3188), 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, + [51891] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1530), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [51903] = 6, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3084), 1, + anon_sym_extends, + ACTIONS(3190), 1, + sym_identifier, + STATE(732), 1, + sym_class_body, + STATE(1650), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51923] = 5, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(2419), 1, + anon_sym_RBRACE, + STATE(1421), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [51941] = 3, + ACTIONS(3192), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3194), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51955] = 6, + ACTIONS(3196), 1, + sym_identifier, + ACTIONS(3198), 1, + anon_sym_GT, + ACTIONS(3200), 1, + sym_jsx_identifier, + STATE(1686), 1, + sym_nested_identifier, + STATE(1790), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51975] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1753), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [51987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3202), 1, + anon_sym_DQUOTE, + STATE(1343), 1, + aux_sym_string_repeat1, + ACTIONS(3204), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52004] = 5, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(798), 1, + sym_class_body, + STATE(1656), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52021] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3165), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52038] = 5, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(766), 1, + sym_class_body, + STATE(1551), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52055] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3208), 1, + anon_sym_DQUOTE, + STATE(1347), 1, + aux_sym_string_repeat1, + ACTIONS(3210), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52072] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3212), 1, + anon_sym_DQUOTE, + STATE(1389), 1, + aux_sym_string_repeat1, + ACTIONS(3214), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52089] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3216), 1, + sym_identifier, + ACTIONS(3218), 1, + anon_sym_STAR, + STATE(1634), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52106] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3208), 1, + anon_sym_SQUOTE, + STATE(1348), 1, + aux_sym_string_repeat2, + ACTIONS(3220), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52123] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3222), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52140] = 4, + ACTIONS(3224), 1, + anon_sym_EQ, + STATE(1605), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2921), 2, + anon_sym_of, + anon_sym_in, + [52155] = 5, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(97), 1, + sym_class_body, + STATE(1724), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52172] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3226), 1, + sym_identifier, + ACTIONS(3228), 1, + anon_sym_STAR, + STATE(1619), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52189] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3212), 1, + anon_sym_SQUOTE, + STATE(1391), 1, + aux_sym_string_repeat2, + ACTIONS(3230), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52206] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1914), 4, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + [52217] = 5, + ACTIONS(3206), 1, + anon_sym_extends, + ACTIONS(3232), 1, + anon_sym_LBRACE, + STATE(405), 1, + sym_class_body, + STATE(1632), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52234] = 5, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(755), 1, + sym_class_body, + STATE(1626), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52251] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3234), 1, + anon_sym_DQUOTE, + STATE(1347), 1, + aux_sym_string_repeat1, + ACTIONS(3210), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52268] = 5, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3236), 1, + anon_sym_EQ, + ACTIONS(3238), 1, + anon_sym_RBRACK, + STATE(1450), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52285] = 4, + ACTIONS(1942), 1, + anon_sym_COMMA, + STATE(1395), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2932), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52300] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3240), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52317] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3242), 1, + anon_sym_DQUOTE, + STATE(1347), 1, + aux_sym_string_repeat1, + ACTIONS(3244), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52334] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3247), 1, + anon_sym_SQUOTE, + STATE(1348), 1, + aux_sym_string_repeat2, + ACTIONS(3249), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52351] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52366] = 5, + ACTIONS(3103), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(619), 1, + sym_class_body, + STATE(1675), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52383] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3256), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3258), 1, + anon_sym_SQUOTE, + STATE(1348), 1, + aux_sym_string_repeat2, + ACTIONS(3220), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52415] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1937), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [52426] = 5, + ACTIONS(3236), 1, + anon_sym_EQ, + ACTIONS(3260), 1, + anon_sym_COMMA, + ACTIONS(3262), 1, + anon_sym_RPAREN, + STATE(1417), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52443] = 4, + ACTIONS(2763), 1, + anon_sym_STAR, + ACTIONS(2765), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1802), 2, + sym_namespace_import, + sym_named_imports, + [52458] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3264), 1, + anon_sym_DQUOTE, + STATE(1331), 1, + aux_sym_string_repeat1, + ACTIONS(3266), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52475] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_STAR, + STATE(1619), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52492] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1349), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3272), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52507] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3179), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52524] = 5, + ACTIONS(3206), 1, + anon_sym_extends, + ACTIONS(3232), 1, + anon_sym_LBRACE, + STATE(413), 1, + sym_class_body, + STATE(1545), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52541] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1351), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3274), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3264), 1, + anon_sym_SQUOTE, + STATE(1334), 1, + aux_sym_string_repeat2, + ACTIONS(3276), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52573] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1912), 4, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + [52584] = 4, + ACTIONS(3278), 1, + anon_sym_COMMA, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2017), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [52599] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3281), 1, + sym_identifier, + ACTIONS(3283), 1, + anon_sym_STAR, + STATE(1750), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52616] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3285), 1, + sym_identifier, + ACTIONS(3287), 1, + anon_sym_STAR, + STATE(1657), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52633] = 4, + ACTIONS(3224), 1, + anon_sym_EQ, + STATE(1660), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2910), 2, + anon_sym_of, + anon_sym_in, + [52648] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1372), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3289), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52663] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3291), 1, + anon_sym_SQUOTE, + STATE(1352), 1, + aux_sym_string_repeat2, + ACTIONS(3293), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52680] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3234), 1, + anon_sym_SQUOTE, + STATE(1348), 1, + aux_sym_string_repeat2, + ACTIONS(3220), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52697] = 5, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3236), 1, + anon_sym_EQ, + ACTIONS(3295), 1, + anon_sym_RBRACK, + STATE(1482), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52714] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3297), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52729] = 5, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(100), 1, + sym_class_body, + STATE(1536), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52746] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3299), 1, + sym_identifier, + ACTIONS(3301), 1, + anon_sym_STAR, + STATE(1750), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52763] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1385), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3303), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52778] = 5, + ACTIONS(3305), 1, + anon_sym_with, + ACTIONS(3307), 1, + anon_sym_SEMI, + ACTIONS(3309), 1, + sym__automatic_semicolon, + STATE(1507), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52795] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3311), 1, + sym_identifier, + ACTIONS(3313), 1, + anon_sym_STAR, + STATE(1750), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52812] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [52823] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3291), 1, + anon_sym_DQUOTE, + STATE(1399), 1, + aux_sym_string_repeat1, + ACTIONS(3315), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52840] = 3, + ACTIONS(3317), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1543), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [52853] = 4, + ACTIONS(2395), 1, + anon_sym_COLON, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3319), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52868] = 4, + ACTIONS(3321), 1, + anon_sym_from, + STATE(1506), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3323), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52883] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3325), 1, + anon_sym_class, + STATE(1051), 1, + aux_sym_export_statement_repeat1, + STATE(1087), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52900] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3327), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [52911] = 4, + ACTIONS(3252), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3329), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52926] = 5, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(3331), 1, + sym_optional_chain, + STATE(797), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52943] = 5, + ACTIONS(3103), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(650), 1, + sym_class_body, + STATE(1697), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52960] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2447), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52973] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3333), 1, + anon_sym_DQUOTE, + STATE(1347), 1, + aux_sym_string_repeat1, + ACTIONS(3210), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52990] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3337), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(3335), 3, + sym_html_character_reference, + anon_sym_SQUOTE, + anon_sym_AMP2, + [53005] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3333), 1, + anon_sym_SQUOTE, + STATE(1348), 1, + aux_sym_string_repeat2, + ACTIONS(3220), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [53022] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3337), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(3335), 3, + sym_html_character_reference, + anon_sym_DQUOTE, + anon_sym_AMP2, + [53037] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3202), 1, + anon_sym_SQUOTE, + STATE(1370), 1, + aux_sym_string_repeat2, + ACTIONS(3339), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [53054] = 5, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3341), 1, + sym_identifier, + ACTIONS(3343), 1, + anon_sym_STAR, + STATE(1619), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53071] = 4, + ACTIONS(3345), 1, + anon_sym_COMMA, + STATE(1395), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1836), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53086] = 5, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(3348), 1, + sym_optional_chain, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53103] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1916), 4, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + [53114] = 5, + ACTIONS(3082), 1, + anon_sym_LBRACE, + ACTIONS(3206), 1, + anon_sym_extends, + STATE(799), 1, + sym_class_body, + STATE(1683), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3258), 1, + anon_sym_DQUOTE, + STATE(1347), 1, + aux_sym_string_repeat1, + ACTIONS(3210), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [53148] = 4, + ACTIONS(3350), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3353), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53163] = 4, + ACTIONS(3305), 1, + anon_sym_with, + STATE(1672), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3355), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53178] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2009), 1, + anon_sym_RBRACK, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53192] = 3, + ACTIONS(3236), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3357), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53204] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3359), 1, + sym_identifier, + STATE(1528), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53218] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3086), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [53228] = 3, + ACTIONS(3317), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1550), 2, + anon_sym_of, + anon_sym_in, + [53240] = 4, + ACTIONS(3361), 1, + sym_identifier, + STATE(1035), 1, + sym_decorator_member_expression, + STATE(1090), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53254] = 3, + ACTIONS(3363), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3365), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53266] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3367), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53280] = 4, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_RBRACK, + STATE(1450), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53294] = 4, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(3369), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53308] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2009), 1, + anon_sym_RBRACK, + STATE(1449), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53322] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3371), 1, + sym_identifier, + STATE(1528), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53336] = 3, + ACTIONS(1902), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1932), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [53348] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3373), 1, + anon_sym_RBRACE, + STATE(1422), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53362] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3373), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53376] = 4, + ACTIONS(918), 1, + anon_sym_RPAREN, + ACTIONS(3375), 1, + anon_sym_COMMA, + STATE(1454), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53390] = 4, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, + anon_sym_RBRACK, + STATE(1457), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53404] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2021), 1, + anon_sym_RPAREN, + STATE(1442), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53418] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2021), 1, + anon_sym_RPAREN, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53432] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3377), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53446] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3379), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53460] = 4, + ACTIONS(3381), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_LPAREN, + STATE(401), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53474] = 4, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(3385), 1, + anon_sym_RBRACE, + STATE(1467), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53488] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2055), 1, + anon_sym_RPAREN, + STATE(1428), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53502] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2055), 1, + anon_sym_RPAREN, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53516] = 4, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3387), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53530] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(3389), 1, + anon_sym_RPAREN, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53544] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3391), 1, + anon_sym_RBRACE, + STATE(1471), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53558] = 4, + ACTIONS(2884), 1, + anon_sym_RBRACE, + ACTIONS(3393), 1, + anon_sym_COMMA, + STATE(1461), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53572] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3395), 1, + anon_sym_COLON, + STATE(1651), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53586] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3095), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [53596] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3391), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53610] = 4, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(3385), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53624] = 4, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3397), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53638] = 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, + [53652] = 4, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3399), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53666] = 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, + [53680] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2017), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [53690] = 4, + ACTIONS(2297), 1, + anon_sym_DQUOTE, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1462), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53704] = 3, + ACTIONS(3236), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3405), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53716] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(3407), 1, + anon_sym_RPAREN, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53730] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3353), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [53740] = 3, + ACTIONS(2769), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2767), 2, + anon_sym_LPAREN, + sym_optional_chain, + [53752] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3409), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [53762] = 4, + ACTIONS(3411), 1, + anon_sym_COMMA, + ACTIONS(3414), 1, + anon_sym_RBRACE, + STATE(1446), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53776] = 4, + ACTIONS(3321), 1, + anon_sym_from, + ACTIONS(3416), 1, + anon_sym_as, + STATE(1531), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53790] = 4, + ACTIONS(3418), 1, + anon_sym_await, + ACTIONS(3420), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53804] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(3422), 1, + anon_sym_RBRACK, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53818] = 4, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3424), 1, + anon_sym_RBRACK, + STATE(1457), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53832] = 4, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(3426), 1, + anon_sym_RBRACE, + STATE(1475), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53846] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3428), 1, + anon_sym_RBRACE, + STATE(1476), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53860] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3430), 1, + sym_identifier, + STATE(1658), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53874] = 4, + ACTIONS(3432), 1, + anon_sym_COMMA, + ACTIONS(3435), 1, + anon_sym_RPAREN, + STATE(1454), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53888] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3428), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53902] = 4, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(3426), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53916] = 4, + ACTIONS(3405), 1, + anon_sym_RBRACK, + ACTIONS(3437), 1, + anon_sym_COMMA, + STATE(1457), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53930] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3440), 1, + sym_identifier, + STATE(1505), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53944] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3442), 1, + sym_identifier, + STATE(1679), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53958] = 3, + ACTIONS(3444), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2767), 2, + anon_sym_LPAREN, + sym_optional_chain, + [53970] = 4, + ACTIONS(3446), 1, + anon_sym_COMMA, + ACTIONS(3449), 1, + anon_sym_RBRACE, + STATE(1461), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53984] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3451), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [53994] = 4, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3295), 1, + anon_sym_RBRACK, + STATE(1482), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54008] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2031), 1, + anon_sym_RBRACK, + STATE(1481), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54022] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2031), 1, + anon_sym_RBRACK, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54036] = 4, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3295), 1, + anon_sym_RBRACK, + STATE(1457), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54050] = 4, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(3453), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54064] = 4, + ACTIONS(3260), 1, + anon_sym_COMMA, + ACTIONS(3262), 1, + anon_sym_RPAREN, + STATE(1417), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54078] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3455), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [54088] = 4, + ACTIONS(2876), 1, + anon_sym_RBRACE, + ACTIONS(3457), 1, + anon_sym_COMMA, + STATE(1446), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54102] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3459), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54116] = 4, + ACTIONS(3119), 1, + sym_identifier, + ACTIONS(3121), 1, + anon_sym_LBRACK, + ACTIONS(3123), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54130] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3461), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54144] = 4, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(3463), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54158] = 4, + ACTIONS(2365), 1, + anon_sym_COMMA, + ACTIONS(3465), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54172] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3467), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54186] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3469), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [54196] = 4, + ACTIONS(3471), 1, + anon_sym_COMMA, + ACTIONS(3473), 1, + anon_sym_RBRACE, + STATE(1470), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54210] = 3, + ACTIONS(3477), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3475), 2, + anon_sym_of, + anon_sym_in, + [54222] = 3, + ACTIONS(3481), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3479), 2, + anon_sym_of, + anon_sym_in, + [54234] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(3483), 1, + anon_sym_RBRACK, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54248] = 4, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3485), 1, + anon_sym_RBRACK, + STATE(1457), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54262] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2033), 1, + anon_sym_RPAREN, + STATE(1488), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54276] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2033), 1, + anon_sym_RPAREN, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54290] = 4, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3487), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54304] = 4, + ACTIONS(3489), 1, + anon_sym_COMMA, + ACTIONS(3492), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54318] = 4, + ACTIONS(3494), 1, + anon_sym_COMMA, + ACTIONS(3497), 1, + anon_sym_RBRACE, + STATE(1487), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54332] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_RPAREN, + STATE(1364), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54346] = 3, + ACTIONS(3501), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3503), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54358] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3505), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [54368] = 4, + ACTIONS(3507), 1, + anon_sym_COMMA, + ACTIONS(3509), 1, + anon_sym_RBRACE, + STATE(1430), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54382] = 3, + ACTIONS(3511), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3513), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54394] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3515), 1, + sym_identifier, + STATE(1528), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54408] = 3, + ACTIONS(3188), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1550), 2, + anon_sym_of, + anon_sym_in, + [54420] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + sym_identifier, + STATE(1505), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54434] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3519), 1, + anon_sym_COLON, + STATE(1651), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54448] = 3, + ACTIONS(3521), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3523), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54460] = 3, + ACTIONS(953), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2910), 2, + anon_sym_of, + anon_sym_in, + [54472] = 3, + ACTIONS(3525), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2921), 2, + anon_sym_of, + anon_sym_in, + [54484] = 4, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(3527), 1, + sym_identifier, + STATE(1505), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54498] = 3, + ACTIONS(3236), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3435), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54510] = 4, + ACTIONS(1162), 1, + anon_sym_while, + ACTIONS(3529), 1, + anon_sym_else, + STATE(428), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54524] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1042), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54535] = 3, + ACTIONS(3531), 1, + anon_sym_SEMI, + ACTIONS(3533), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54546] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(789), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54557] = 3, + ACTIONS(3537), 1, + anon_sym_SEMI, + ACTIONS(3539), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54568] = 3, + ACTIONS(3541), 1, + anon_sym_SEMI, + ACTIONS(3543), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54579] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1615), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54590] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3405), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [54599] = 3, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(3397), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54610] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1688), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54619] = 3, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3397), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54630] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(94), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54641] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1692), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54650] = 3, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(3399), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54661] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3497), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54670] = 3, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3399), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54681] = 3, + ACTIONS(3545), 1, + anon_sym_LPAREN, + STATE(54), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54692] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3492), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54701] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(95), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54712] = 3, + ACTIONS(3545), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54723] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1520), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54734] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3547), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54743] = 3, + ACTIONS(3545), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54754] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1556), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54765] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3549), 2, + anon_sym_of, + anon_sym_in, + [54774] = 3, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2558), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54785] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(764), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54796] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(381), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54807] = 3, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(3551), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54818] = 3, + ACTIONS(3553), 1, + anon_sym_SEMI, + ACTIONS(3555), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54829] = 3, + ACTIONS(3557), 1, + anon_sym_COMMA, + ACTIONS(3559), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54840] = 3, + ACTIONS(3561), 1, + anon_sym_LPAREN, + STATE(58), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54851] = 3, + ACTIONS(3321), 1, + anon_sym_from, + STATE(1376), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54862] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1659), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54873] = 3, + ACTIONS(3082), 1, + anon_sym_LBRACE, + STATE(93), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54884] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1944), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54893] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3563), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [54902] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(99), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54913] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3414), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54922] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3565), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54931] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1691), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54942] = 3, + ACTIONS(3567), 1, + anon_sym_LBRACE, + STATE(403), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54953] = 3, + ACTIONS(3567), 1, + anon_sym_LBRACE, + STATE(415), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54964] = 3, + ACTIONS(3232), 1, + anon_sym_LBRACE, + STATE(392), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54975] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1937), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [54984] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1075), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54995] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3569), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [55004] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1056), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55015] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1673), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55026] = 3, + ACTIONS(3082), 1, + anon_sym_LBRACE, + STATE(743), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55037] = 3, + ACTIONS(3571), 1, + anon_sym_LBRACE, + STATE(478), 1, + sym_switch_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55048] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1676), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55059] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3573), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55068] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1696), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55079] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1057), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55090] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1680), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55101] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1698), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55112] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1699), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55123] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1681), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55134] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1700), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55145] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1058), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55156] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1707), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55167] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1576), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55178] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1720), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55189] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1722), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55200] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1723), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55211] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55222] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1738), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55233] = 3, + ACTIONS(3082), 1, + anon_sym_LBRACE, + STATE(807), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55244] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1539), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55255] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1586), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55266] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1744), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55277] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1745), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55288] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1747), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55299] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1067), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55310] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1684), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55321] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1685), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55332] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1687), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55343] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1689), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55354] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1690), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55365] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1693), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55376] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1587), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55387] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1694), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55398] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1695), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55409] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55420] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1069), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55431] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1701), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55442] = 3, + ACTIONS(3575), 1, + sym_identifier, + ACTIONS(3577), 1, + sym_jsx_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55453] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3579), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [55462] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1702), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55473] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1703), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55484] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1704), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55495] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1705), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55506] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1706), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55517] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1708), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55528] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1710), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55539] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1712), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55550] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1713), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55561] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1714), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55572] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1715), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55583] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1716), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55594] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1717), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55605] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [55614] = 3, + ACTIONS(3097), 1, + anon_sym_of, + ACTIONS(3099), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55625] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1562), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55636] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1503), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55647] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1726), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55658] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1727), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55669] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1728), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55680] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1729), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55691] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1730), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55702] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1623), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55713] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1624), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55724] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(754), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55735] = 3, + ACTIONS(3545), 1, + anon_sym_LPAREN, + STATE(71), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55746] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(716), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55755] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1048), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55766] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(699), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55777] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3581), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55786] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1749), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55795] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1627), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55806] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55817] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55828] = 3, + ACTIONS(3545), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55839] = 3, + ACTIONS(3082), 1, + anon_sym_LBRACE, + STATE(786), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55850] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55861] = 3, + ACTIONS(3545), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55872] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3583), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55881] = 3, + ACTIONS(3321), 1, + anon_sym_from, + STATE(1504), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55892] = 3, + ACTIONS(3585), 1, + sym_identifier, + ACTIONS(3587), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55903] = 3, + ACTIONS(3232), 1, + anon_sym_LBRACE, + STATE(398), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55914] = 3, + ACTIONS(3103), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55925] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(596), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55936] = 3, + ACTIONS(3545), 1, + anon_sym_LPAREN, + STATE(1552), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55947] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3591), 2, + anon_sym_of, + anon_sym_in, + [55956] = 3, + ACTIONS(3593), 1, + sym_identifier, + ACTIONS(3595), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55967] = 3, + ACTIONS(3119), 1, + sym_identifier, + ACTIONS(3123), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55978] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1543), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55989] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1544), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56000] = 3, + ACTIONS(3567), 1, + anon_sym_LBRACE, + STATE(409), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56011] = 3, + ACTIONS(3561), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56022] = 3, + ACTIONS(3597), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56033] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56044] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1954), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56053] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3599), 2, + anon_sym_of, + anon_sym_in, + [56062] = 3, + ACTIONS(3601), 1, + anon_sym_LBRACE, + STATE(1523), 1, + sym_object, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56073] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1724), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56082] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(458), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56093] = 3, + ACTIONS(3082), 1, + anon_sym_LBRACE, + STATE(783), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56104] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56115] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1042), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56126] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1043), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56137] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3603), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [56146] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1044), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56157] = 3, + ACTIONS(3082), 1, + anon_sym_LBRACE, + STATE(768), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56168] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(627), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56179] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(631), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56190] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(782), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56201] = 3, + ACTIONS(3088), 1, + anon_sym_of, + ACTIONS(3090), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56212] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3605), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56221] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3607), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56230] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(96), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56241] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56252] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3609), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56261] = 3, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(3487), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56272] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1618), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56283] = 3, + ACTIONS(2789), 1, + anon_sym_COLON, + ACTIONS(3387), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56294] = 3, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3487), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56305] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3611), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56314] = 3, + ACTIONS(3103), 1, + anon_sym_LBRACE, + STATE(643), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56325] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3613), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56334] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56345] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1048), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56356] = 3, + ACTIONS(3103), 1, + anon_sym_LBRACE, + STATE(644), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56367] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(645), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56378] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1549), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56389] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1047), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56400] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(641), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56411] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(702), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56422] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(752), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56433] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1050), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56444] = 3, + ACTIONS(3082), 1, + anon_sym_LBRACE, + STATE(724), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56455] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1056), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56466] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1057), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56477] = 3, + ACTIONS(2795), 1, + anon_sym_DOT, + ACTIONS(3387), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56488] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1058), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56499] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56510] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1067), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56521] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56532] = 3, + ACTIONS(3567), 1, + anon_sym_LBRACE, + STATE(408), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56543] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3357), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56552] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1069), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56563] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(620), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56574] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(605), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56585] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1064), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56596] = 3, + ACTIONS(3103), 1, + anon_sym_LBRACE, + STATE(612), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56607] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56618] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1045), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56629] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1046), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56640] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(774), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56651] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1064), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56662] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56673] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1045), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56684] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1046), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56695] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56706] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56717] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1038), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56728] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1664), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56739] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1055), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56750] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1652), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56761] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1053), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56772] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1054), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56783] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1037), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56794] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1066), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56805] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1061), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56816] = 3, + ACTIONS(3589), 1, + anon_sym_LBRACE, + STATE(636), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56827] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1653), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56838] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1655), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56849] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1038), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56860] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1052), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56871] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1055), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56882] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1053), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56893] = 3, + ACTIONS(3082), 1, + anon_sym_LBRACE, + STATE(98), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56904] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3615), 2, + anon_sym_of, + anon_sym_in, + [56913] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1043), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56924] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1044), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56935] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1047), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56946] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1050), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56957] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1052), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56968] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1568), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56979] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(407), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56990] = 3, + ACTIONS(3617), 1, + sym_identifier, + ACTIONS(3619), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57001] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1663), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57012] = 3, + ACTIONS(3621), 1, + sym_identifier, + ACTIONS(3623), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57023] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1513), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57034] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1641), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57045] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1054), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57056] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1678), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57067] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1682), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57078] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3625), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [57087] = 3, + ACTIONS(2952), 1, + anon_sym_LPAREN, + STATE(1721), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57098] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3435), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57107] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1037), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57118] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1066), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57129] = 3, + ACTIONS(3125), 1, + sym_identifier, + ACTIONS(3129), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57140] = 3, + ACTIONS(3381), 1, + anon_sym_LBRACE, + STATE(1061), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57151] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3627), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57160] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1956), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [57169] = 3, + ACTIONS(3535), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57180] = 2, + ACTIONS(3629), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57188] = 2, + ACTIONS(3551), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57196] = 2, + ACTIONS(3631), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57204] = 2, + ACTIONS(2023), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57212] = 2, + ACTIONS(3633), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57220] = 2, + ACTIONS(3399), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57228] = 2, + ACTIONS(3487), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57236] = 2, + ACTIONS(3635), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3637), 1, + sym_regex_pattern, + [57254] = 2, + ACTIONS(3559), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57262] = 2, + ACTIONS(3639), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57270] = 2, + ACTIONS(3641), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57278] = 2, + ACTIONS(2103), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57286] = 2, + ACTIONS(3643), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57294] = 2, + ACTIONS(3645), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57302] = 2, + ACTIONS(3647), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3649), 1, + sym_regex_pattern, + [57320] = 2, + ACTIONS(3651), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57328] = 2, + ACTIONS(3653), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57336] = 2, + ACTIONS(3655), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57344] = 2, + ACTIONS(2105), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57352] = 2, + ACTIONS(2039), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57360] = 2, + ACTIONS(3657), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57368] = 2, + ACTIONS(3659), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57376] = 2, + ACTIONS(3661), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57384] = 2, + ACTIONS(3663), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57392] = 2, + ACTIONS(3509), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57400] = 2, + ACTIONS(3665), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57408] = 2, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57416] = 2, + ACTIONS(2151), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57424] = 2, + ACTIONS(1804), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57432] = 2, + ACTIONS(3669), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57440] = 2, + ACTIONS(3671), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57448] = 2, + ACTIONS(3673), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57456] = 2, + ACTIONS(3675), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57464] = 2, + ACTIONS(3645), 1, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57472] = 2, + ACTIONS(3677), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3679), 1, + sym_regex_pattern, + [57490] = 2, + ACTIONS(3681), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57498] = 2, + ACTIONS(3387), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57506] = 2, + ACTIONS(1999), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3683), 1, + anon_sym_SLASH2, + [57524] = 2, + ACTIONS(3685), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57532] = 2, + ACTIONS(3473), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57540] = 2, + ACTIONS(3687), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57548] = 2, + ACTIONS(2053), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3689), 1, + anon_sym_SLASH2, + [57566] = 2, + ACTIONS(2093), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57574] = 2, + ACTIONS(3691), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57582] = 2, + ACTIONS(3693), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57590] = 2, + ACTIONS(1866), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57598] = 2, + ACTIONS(3695), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57606] = 2, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57614] = 2, + ACTIONS(3697), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57622] = 2, + ACTIONS(3699), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57630] = 2, + ACTIONS(3701), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57638] = 2, + ACTIONS(2003), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57646] = 2, + ACTIONS(3703), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57654] = 2, + ACTIONS(2019), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57662] = 2, + ACTIONS(2025), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57670] = 2, + ACTIONS(3705), 1, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57678] = 2, + ACTIONS(3707), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57686] = 2, + ACTIONS(3709), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57694] = 2, + ACTIONS(2067), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57702] = 2, + ACTIONS(2015), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57710] = 2, + ACTIONS(3711), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57718] = 2, + ACTIONS(3713), 1, + anon_sym_function, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57726] = 2, + ACTIONS(2011), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3715), 1, + anon_sym_SLASH2, + [57744] = 2, + ACTIONS(2091), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57752] = 2, + ACTIONS(3705), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57760] = 2, + ACTIONS(2007), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57768] = 2, + ACTIONS(2223), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57776] = 2, + ACTIONS(1985), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57784] = 2, + ACTIONS(3317), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57792] = 2, + ACTIONS(3717), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57800] = 2, + ACTIONS(2107), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57808] = 2, + ACTIONS(3719), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57816] = 2, + ACTIONS(3721), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57824] = 2, + ACTIONS(3723), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57832] = 2, + ACTIONS(3725), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57840] = 2, + ACTIONS(3727), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57848] = 2, + ACTIONS(3729), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57856] = 2, + ACTIONS(1989), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57864] = 2, + ACTIONS(2095), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3731), 1, + sym_regex_pattern, + [57882] = 2, + ACTIONS(3733), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57890] = 2, + ACTIONS(2097), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57898] = 2, + ACTIONS(2109), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57906] = 2, + ACTIONS(2101), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57914] = 2, + ACTIONS(3188), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57922] = 2, + ACTIONS(2558), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57930] = 2, + ACTIONS(1902), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57938] = 2, + ACTIONS(3735), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57946] = 2, + ACTIONS(2111), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57954] = 2, + ACTIONS(2115), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57962] = 2, + ACTIONS(2005), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57970] = 2, + ACTIONS(3737), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57978] = 2, + ACTIONS(2099), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57986] = 2, + ACTIONS(2029), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57994] = 2, + ACTIONS(3739), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58002] = 2, + ACTIONS(3741), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58010] = 2, + ACTIONS(2041), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58018] = 2, + ACTIONS(3743), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58026] = 2, + ACTIONS(2117), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3745), 1, + anon_sym_SLASH2, + [58044] = 2, + ACTIONS(3747), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58052] = 2, + ACTIONS(2027), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58060] = 2, + ACTIONS(3749), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58068] = 2, + ACTIONS(3751), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58076] = 2, + ACTIONS(3397), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58084] = 2, + ACTIONS(3753), 1, + anon_sym_while, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58092] = 2, + ACTIONS(3755), 1, + anon_sym_using, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58100] = 2, + ACTIONS(1987), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58108] = 2, + ACTIONS(2001), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58116] = 2, + ACTIONS(2185), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58124] = 2, + ACTIONS(3757), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58132] = 2, + ACTIONS(2035), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58140] = 2, + ACTIONS(2013), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58148] = 2, + ACTIONS(2037), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58156] = 2, + ACTIONS(2113), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [58164] = 2, + ACTIONS(3759), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [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)] = 31306, + [SMALL_STATE(858)] = 31399, + [SMALL_STATE(859)] = 31492, + [SMALL_STATE(860)] = 31585, + [SMALL_STATE(861)] = 31678, + [SMALL_STATE(862)] = 31771, + [SMALL_STATE(863)] = 31864, + [SMALL_STATE(864)] = 31957, + [SMALL_STATE(865)] = 32044, + [SMALL_STATE(866)] = 32137, + [SMALL_STATE(867)] = 32230, + [SMALL_STATE(868)] = 32317, + [SMALL_STATE(869)] = 32410, + [SMALL_STATE(870)] = 32497, + [SMALL_STATE(871)] = 32584, + [SMALL_STATE(872)] = 32677, + [SMALL_STATE(873)] = 32770, + [SMALL_STATE(874)] = 32863, + [SMALL_STATE(875)] = 32956, + [SMALL_STATE(876)] = 33049, + [SMALL_STATE(877)] = 33142, + [SMALL_STATE(878)] = 33235, + [SMALL_STATE(879)] = 33328, + [SMALL_STATE(880)] = 33421, + [SMALL_STATE(881)] = 33514, + [SMALL_STATE(882)] = 33607, + [SMALL_STATE(883)] = 33700, + [SMALL_STATE(884)] = 33793, + [SMALL_STATE(885)] = 33886, + [SMALL_STATE(886)] = 33979, + [SMALL_STATE(887)] = 34066, + [SMALL_STATE(888)] = 34148, + [SMALL_STATE(889)] = 34194, + [SMALL_STATE(890)] = 34282, + [SMALL_STATE(891)] = 34328, + [SMALL_STATE(892)] = 34416, + [SMALL_STATE(893)] = 34504, + [SMALL_STATE(894)] = 34592, + [SMALL_STATE(895)] = 34680, + [SMALL_STATE(896)] = 34768, + [SMALL_STATE(897)] = 34856, + [SMALL_STATE(898)] = 34924, + [SMALL_STATE(899)] = 34982, + [SMALL_STATE(900)] = 35062, + [SMALL_STATE(901)] = 35144, + [SMALL_STATE(902)] = 35208, + [SMALL_STATE(903)] = 35284, + [SMALL_STATE(904)] = 35362, + [SMALL_STATE(905)] = 35442, + [SMALL_STATE(906)] = 35504, + [SMALL_STATE(907)] = 35562, + [SMALL_STATE(908)] = 35634, + [SMALL_STATE(909)] = 35718, + [SMALL_STATE(910)] = 35806, + [SMALL_STATE(911)] = 35894, + [SMALL_STATE(912)] = 35982, + [SMALL_STATE(913)] = 36070, + [SMALL_STATE(914)] = 36158, + [SMALL_STATE(915)] = 36246, + [SMALL_STATE(916)] = 36336, + [SMALL_STATE(917)] = 36424, + [SMALL_STATE(918)] = 36512, + [SMALL_STATE(919)] = 36558, + [SMALL_STATE(920)] = 36646, + [SMALL_STATE(921)] = 36734, + [SMALL_STATE(922)] = 36822, + [SMALL_STATE(923)] = 36910, + [SMALL_STATE(924)] = 36998, + [SMALL_STATE(925)] = 37086, + [SMALL_STATE(926)] = 37154, + [SMALL_STATE(927)] = 37242, + [SMALL_STATE(928)] = 37322, + [SMALL_STATE(929)] = 37404, + [SMALL_STATE(930)] = 37468, + [SMALL_STATE(931)] = 37544, + [SMALL_STATE(932)] = 37622, + [SMALL_STATE(933)] = 37702, + [SMALL_STATE(934)] = 37764, + [SMALL_STATE(935)] = 37822, + [SMALL_STATE(936)] = 37894, + [SMALL_STATE(937)] = 37978, + [SMALL_STATE(938)] = 38066, + [SMALL_STATE(939)] = 38154, + [SMALL_STATE(940)] = 38242, + [SMALL_STATE(941)] = 38330, + [SMALL_STATE(942)] = 38418, + [SMALL_STATE(943)] = 38506, + [SMALL_STATE(944)] = 38594, + [SMALL_STATE(945)] = 38682, + [SMALL_STATE(946)] = 38770, + [SMALL_STATE(947)] = 38858, + [SMALL_STATE(948)] = 38946, + [SMALL_STATE(949)] = 39014, + [SMALL_STATE(950)] = 39072, + [SMALL_STATE(951)] = 39152, + [SMALL_STATE(952)] = 39216, + [SMALL_STATE(953)] = 39292, + [SMALL_STATE(954)] = 39370, + [SMALL_STATE(955)] = 39450, + [SMALL_STATE(956)] = 39512, + [SMALL_STATE(957)] = 39570, + [SMALL_STATE(958)] = 39642, + [SMALL_STATE(959)] = 39726, + [SMALL_STATE(960)] = 39814, + [SMALL_STATE(961)] = 39902, + [SMALL_STATE(962)] = 39990, + [SMALL_STATE(963)] = 40078, + [SMALL_STATE(964)] = 40166, + [SMALL_STATE(965)] = 40254, + [SMALL_STATE(966)] = 40304, + [SMALL_STATE(967)] = 40392, + [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)] = 40966, + [SMALL_STATE(975)] = 41053, + [SMALL_STATE(976)] = 41140, + [SMALL_STATE(977)] = 41227, + [SMALL_STATE(978)] = 41314, + [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)] = 41922, + [SMALL_STATE(987)] = 41980, + [SMALL_STATE(988)] = 42052, + [SMALL_STATE(989)] = 42124, + [SMALL_STATE(990)] = 42182, + [SMALL_STATE(991)] = 42254, + [SMALL_STATE(992)] = 42326, + [SMALL_STATE(993)] = 42379, + [SMALL_STATE(994)] = 42436, + [SMALL_STATE(995)] = 42495, + [SMALL_STATE(996)] = 42554, + [SMALL_STATE(997)] = 42611, + [SMALL_STATE(998)] = 42670, + [SMALL_STATE(999)] = 42729, + [SMALL_STATE(1000)] = 42786, + [SMALL_STATE(1001)] = 42843, + [SMALL_STATE(1002)] = 42900, + [SMALL_STATE(1003)] = 42959, + [SMALL_STATE(1004)] = 43016, + [SMALL_STATE(1005)] = 43075, + [SMALL_STATE(1006)] = 43127, + [SMALL_STATE(1007)] = 43179, + [SMALL_STATE(1008)] = 43231, + [SMALL_STATE(1009)] = 43283, + [SMALL_STATE(1010)] = 43335, + [SMALL_STATE(1011)] = 43389, + [SMALL_STATE(1012)] = 43441, + [SMALL_STATE(1013)] = 43492, + [SMALL_STATE(1014)] = 43543, + [SMALL_STATE(1015)] = 43596, + [SMALL_STATE(1016)] = 43657, + [SMALL_STATE(1017)] = 43706, + [SMALL_STATE(1018)] = 43752, + [SMALL_STATE(1019)] = 43798, + [SMALL_STATE(1020)] = 43842, + [SMALL_STATE(1021)] = 43890, + [SMALL_STATE(1022)] = 43934, + [SMALL_STATE(1023)] = 43980, + [SMALL_STATE(1024)] = 44036, + [SMALL_STATE(1025)] = 44080, + [SMALL_STATE(1026)] = 44128, + [SMALL_STATE(1027)] = 44174, + [SMALL_STATE(1028)] = 44230, + [SMALL_STATE(1029)] = 44269, + [SMALL_STATE(1030)] = 44322, + [SMALL_STATE(1031)] = 44363, + [SMALL_STATE(1032)] = 44402, + [SMALL_STATE(1033)] = 44441, + [SMALL_STATE(1034)] = 44480, + [SMALL_STATE(1035)] = 44519, + [SMALL_STATE(1036)] = 44554, + [SMALL_STATE(1037)] = 44593, + [SMALL_STATE(1038)] = 44621, + [SMALL_STATE(1039)] = 44649, + [SMALL_STATE(1040)] = 44677, + [SMALL_STATE(1041)] = 44705, + [SMALL_STATE(1042)] = 44735, + [SMALL_STATE(1043)] = 44763, + [SMALL_STATE(1044)] = 44791, + [SMALL_STATE(1045)] = 44819, + [SMALL_STATE(1046)] = 44847, + [SMALL_STATE(1047)] = 44875, + [SMALL_STATE(1048)] = 44903, + [SMALL_STATE(1049)] = 44931, + [SMALL_STATE(1050)] = 44961, + [SMALL_STATE(1051)] = 44989, + [SMALL_STATE(1052)] = 45023, + [SMALL_STATE(1053)] = 45051, + [SMALL_STATE(1054)] = 45079, + [SMALL_STATE(1055)] = 45107, + [SMALL_STATE(1056)] = 45135, + [SMALL_STATE(1057)] = 45163, + [SMALL_STATE(1058)] = 45191, + [SMALL_STATE(1059)] = 45219, + [SMALL_STATE(1060)] = 45269, + [SMALL_STATE(1061)] = 45297, + [SMALL_STATE(1062)] = 45325, + [SMALL_STATE(1063)] = 45353, + [SMALL_STATE(1064)] = 45403, + [SMALL_STATE(1065)] = 45431, + [SMALL_STATE(1066)] = 45459, + [SMALL_STATE(1067)] = 45487, + [SMALL_STATE(1068)] = 45515, + [SMALL_STATE(1069)] = 45543, + [SMALL_STATE(1070)] = 45571, + [SMALL_STATE(1071)] = 45599, + [SMALL_STATE(1072)] = 45626, + [SMALL_STATE(1073)] = 45653, + [SMALL_STATE(1074)] = 45694, + [SMALL_STATE(1075)] = 45733, + [SMALL_STATE(1076)] = 45760, + [SMALL_STATE(1077)] = 45803, + [SMALL_STATE(1078)] = 45830, + [SMALL_STATE(1079)] = 45857, + [SMALL_STATE(1080)] = 45886, + [SMALL_STATE(1081)] = 45927, + [SMALL_STATE(1082)] = 45972, + [SMALL_STATE(1083)] = 45999, + [SMALL_STATE(1084)] = 46042, + [SMALL_STATE(1085)] = 46085, + [SMALL_STATE(1086)] = 46128, + [SMALL_STATE(1087)] = 46164, + [SMALL_STATE(1088)] = 46190, + [SMALL_STATE(1089)] = 46216, + [SMALL_STATE(1090)] = 46256, + [SMALL_STATE(1091)] = 46282, + [SMALL_STATE(1092)] = 46318, + [SMALL_STATE(1093)] = 46354, + [SMALL_STATE(1094)] = 46390, + [SMALL_STATE(1095)] = 46426, + [SMALL_STATE(1096)] = 46462, + [SMALL_STATE(1097)] = 46498, + [SMALL_STATE(1098)] = 46534, + [SMALL_STATE(1099)] = 46570, + [SMALL_STATE(1100)] = 46606, + [SMALL_STATE(1101)] = 46642, + [SMALL_STATE(1102)] = 46668, + [SMALL_STATE(1103)] = 46704, + [SMALL_STATE(1104)] = 46740, + [SMALL_STATE(1105)] = 46766, + [SMALL_STATE(1106)] = 46792, + [SMALL_STATE(1107)] = 46834, + [SMALL_STATE(1108)] = 46870, + [SMALL_STATE(1109)] = 46906, + [SMALL_STATE(1110)] = 46946, + [SMALL_STATE(1111)] = 46982, + [SMALL_STATE(1112)] = 47024, + [SMALL_STATE(1113)] = 47060, + [SMALL_STATE(1114)] = 47096, + [SMALL_STATE(1115)] = 47132, + [SMALL_STATE(1116)] = 47168, + [SMALL_STATE(1117)] = 47204, + [SMALL_STATE(1118)] = 47240, + [SMALL_STATE(1119)] = 47276, + [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)] = 48072, + [SMALL_STATE(1146)] = 48106, + [SMALL_STATE(1147)] = 48140, + [SMALL_STATE(1148)] = 48174, + [SMALL_STATE(1149)] = 48208, + [SMALL_STATE(1150)] = 48242, + [SMALL_STATE(1151)] = 48276, + [SMALL_STATE(1152)] = 48310, + [SMALL_STATE(1153)] = 48347, + [SMALL_STATE(1154)] = 48378, + [SMALL_STATE(1155)] = 48414, + [SMALL_STATE(1156)] = 48450, + [SMALL_STATE(1157)] = 48486, + [SMALL_STATE(1158)] = 48522, + [SMALL_STATE(1159)] = 48555, + [SMALL_STATE(1160)] = 48588, + [SMALL_STATE(1161)] = 48621, + [SMALL_STATE(1162)] = 48654, + [SMALL_STATE(1163)] = 48687, + [SMALL_STATE(1164)] = 48720, + [SMALL_STATE(1165)] = 48753, + [SMALL_STATE(1166)] = 48786, + [SMALL_STATE(1167)] = 48816, + [SMALL_STATE(1168)] = 48846, + [SMALL_STATE(1169)] = 48876, + [SMALL_STATE(1170)] = 48904, + [SMALL_STATE(1171)] = 48934, + [SMALL_STATE(1172)] = 48964, + [SMALL_STATE(1173)] = 48994, + [SMALL_STATE(1174)] = 49024, + [SMALL_STATE(1175)] = 49054, + [SMALL_STATE(1176)] = 49084, + [SMALL_STATE(1177)] = 49114, + [SMALL_STATE(1178)] = 49144, + [SMALL_STATE(1179)] = 49174, + [SMALL_STATE(1180)] = 49204, + [SMALL_STATE(1181)] = 49234, + [SMALL_STATE(1182)] = 49264, + [SMALL_STATE(1183)] = 49294, + [SMALL_STATE(1184)] = 49324, + [SMALL_STATE(1185)] = 49354, + [SMALL_STATE(1186)] = 49384, + [SMALL_STATE(1187)] = 49410, + [SMALL_STATE(1188)] = 49438, + [SMALL_STATE(1189)] = 49464, + [SMALL_STATE(1190)] = 49494, + [SMALL_STATE(1191)] = 49524, + [SMALL_STATE(1192)] = 49549, + [SMALL_STATE(1193)] = 49574, + [SMALL_STATE(1194)] = 49599, + [SMALL_STATE(1195)] = 49624, + [SMALL_STATE(1196)] = 49649, + [SMALL_STATE(1197)] = 49674, + [SMALL_STATE(1198)] = 49699, + [SMALL_STATE(1199)] = 49726, + [SMALL_STATE(1200)] = 49751, + [SMALL_STATE(1201)] = 49776, + [SMALL_STATE(1202)] = 49803, + [SMALL_STATE(1203)] = 49827, + [SMALL_STATE(1204)] = 49849, + [SMALL_STATE(1205)] = 49873, + [SMALL_STATE(1206)] = 49893, + [SMALL_STATE(1207)] = 49915, + [SMALL_STATE(1208)] = 49937, + [SMALL_STATE(1209)] = 49951, + [SMALL_STATE(1210)] = 49973, + [SMALL_STATE(1211)] = 49997, + [SMALL_STATE(1212)] = 50021, + [SMALL_STATE(1213)] = 50041, + [SMALL_STATE(1214)] = 50059, + [SMALL_STATE(1215)] = 50073, + [SMALL_STATE(1216)] = 50093, + [SMALL_STATE(1217)] = 50115, + [SMALL_STATE(1218)] = 50137, + [SMALL_STATE(1219)] = 50161, + [SMALL_STATE(1220)] = 50185, + [SMALL_STATE(1221)] = 50209, + [SMALL_STATE(1222)] = 50223, + [SMALL_STATE(1223)] = 50237, + [SMALL_STATE(1224)] = 50251, + [SMALL_STATE(1225)] = 50269, + [SMALL_STATE(1226)] = 50284, + [SMALL_STATE(1227)] = 50307, + [SMALL_STATE(1228)] = 50330, + [SMALL_STATE(1229)] = 50345, + [SMALL_STATE(1230)] = 50366, + [SMALL_STATE(1231)] = 50379, + [SMALL_STATE(1232)] = 50394, + [SMALL_STATE(1233)] = 50407, + [SMALL_STATE(1234)] = 50426, + [SMALL_STATE(1235)] = 50445, + [SMALL_STATE(1236)] = 50462, + [SMALL_STATE(1237)] = 50475, + [SMALL_STATE(1238)] = 50494, + [SMALL_STATE(1239)] = 50507, + [SMALL_STATE(1240)] = 50522, + [SMALL_STATE(1241)] = 50541, + [SMALL_STATE(1242)] = 50554, + [SMALL_STATE(1243)] = 50569, + [SMALL_STATE(1244)] = 50584, + [SMALL_STATE(1245)] = 50599, + [SMALL_STATE(1246)] = 50618, + [SMALL_STATE(1247)] = 50633, + [SMALL_STATE(1248)] = 50648, + [SMALL_STATE(1249)] = 50669, + [SMALL_STATE(1250)] = 50684, + [SMALL_STATE(1251)] = 50703, + [SMALL_STATE(1252)] = 50726, + [SMALL_STATE(1253)] = 50739, + [SMALL_STATE(1254)] = 50758, + [SMALL_STATE(1255)] = 50779, + [SMALL_STATE(1256)] = 50798, + [SMALL_STATE(1257)] = 50811, + [SMALL_STATE(1258)] = 50834, + [SMALL_STATE(1259)] = 50857, + [SMALL_STATE(1260)] = 50872, + [SMALL_STATE(1261)] = 50887, + [SMALL_STATE(1262)] = 50902, + [SMALL_STATE(1263)] = 50921, + [SMALL_STATE(1264)] = 50944, + [SMALL_STATE(1265)] = 50957, + [SMALL_STATE(1266)] = 50972, + [SMALL_STATE(1267)] = 50987, + [SMALL_STATE(1268)] = 51006, + [SMALL_STATE(1269)] = 51021, + [SMALL_STATE(1270)] = 51036, + [SMALL_STATE(1271)] = 51057, + [SMALL_STATE(1272)] = 51076, + [SMALL_STATE(1273)] = 51089, + [SMALL_STATE(1274)] = 51102, + [SMALL_STATE(1275)] = 51117, + [SMALL_STATE(1276)] = 51132, + [SMALL_STATE(1277)] = 51147, + [SMALL_STATE(1278)] = 51167, + [SMALL_STATE(1279)] = 51187, + [SMALL_STATE(1280)] = 51203, + [SMALL_STATE(1281)] = 51217, + [SMALL_STATE(1282)] = 51233, + [SMALL_STATE(1283)] = 51249, + [SMALL_STATE(1284)] = 51265, + [SMALL_STATE(1285)] = 51285, + [SMALL_STATE(1286)] = 51305, + [SMALL_STATE(1287)] = 51319, + [SMALL_STATE(1288)] = 51333, + [SMALL_STATE(1289)] = 51353, + [SMALL_STATE(1290)] = 51373, + [SMALL_STATE(1291)] = 51393, + [SMALL_STATE(1292)] = 51409, + [SMALL_STATE(1293)] = 51429, + [SMALL_STATE(1294)] = 51443, + [SMALL_STATE(1295)] = 51457, + [SMALL_STATE(1296)] = 51477, + [SMALL_STATE(1297)] = 51497, + [SMALL_STATE(1298)] = 51511, + [SMALL_STATE(1299)] = 51531, + [SMALL_STATE(1300)] = 51545, + [SMALL_STATE(1301)] = 51559, + [SMALL_STATE(1302)] = 51571, + [SMALL_STATE(1303)] = 51591, + [SMALL_STATE(1304)] = 51605, + [SMALL_STATE(1305)] = 51625, + [SMALL_STATE(1306)] = 51639, + [SMALL_STATE(1307)] = 51653, + [SMALL_STATE(1308)] = 51667, + [SMALL_STATE(1309)] = 51681, + [SMALL_STATE(1310)] = 51695, + [SMALL_STATE(1311)] = 51709, + [SMALL_STATE(1312)] = 51723, + [SMALL_STATE(1313)] = 51743, + [SMALL_STATE(1314)] = 51763, + [SMALL_STATE(1315)] = 51783, + [SMALL_STATE(1316)] = 51803, + [SMALL_STATE(1317)] = 51823, + [SMALL_STATE(1318)] = 51843, + [SMALL_STATE(1319)] = 51863, + [SMALL_STATE(1320)] = 51877, + [SMALL_STATE(1321)] = 51891, + [SMALL_STATE(1322)] = 51903, + [SMALL_STATE(1323)] = 51923, + [SMALL_STATE(1324)] = 51941, + [SMALL_STATE(1325)] = 51955, + [SMALL_STATE(1326)] = 51975, + [SMALL_STATE(1327)] = 51987, + [SMALL_STATE(1328)] = 52004, + [SMALL_STATE(1329)] = 52021, + [SMALL_STATE(1330)] = 52038, + [SMALL_STATE(1331)] = 52055, + [SMALL_STATE(1332)] = 52072, + [SMALL_STATE(1333)] = 52089, + [SMALL_STATE(1334)] = 52106, + [SMALL_STATE(1335)] = 52123, + [SMALL_STATE(1336)] = 52140, + [SMALL_STATE(1337)] = 52155, + [SMALL_STATE(1338)] = 52172, + [SMALL_STATE(1339)] = 52189, + [SMALL_STATE(1340)] = 52206, + [SMALL_STATE(1341)] = 52217, + [SMALL_STATE(1342)] = 52234, + [SMALL_STATE(1343)] = 52251, + [SMALL_STATE(1344)] = 52268, + [SMALL_STATE(1345)] = 52285, + [SMALL_STATE(1346)] = 52300, + [SMALL_STATE(1347)] = 52317, + [SMALL_STATE(1348)] = 52334, + [SMALL_STATE(1349)] = 52351, + [SMALL_STATE(1350)] = 52366, + [SMALL_STATE(1351)] = 52383, + [SMALL_STATE(1352)] = 52398, + [SMALL_STATE(1353)] = 52415, + [SMALL_STATE(1354)] = 52426, + [SMALL_STATE(1355)] = 52443, + [SMALL_STATE(1356)] = 52458, + [SMALL_STATE(1357)] = 52475, + [SMALL_STATE(1358)] = 52492, + [SMALL_STATE(1359)] = 52507, + [SMALL_STATE(1360)] = 52524, + [SMALL_STATE(1361)] = 52541, + [SMALL_STATE(1362)] = 52556, + [SMALL_STATE(1363)] = 52573, + [SMALL_STATE(1364)] = 52584, + [SMALL_STATE(1365)] = 52599, + [SMALL_STATE(1366)] = 52616, + [SMALL_STATE(1367)] = 52633, + [SMALL_STATE(1368)] = 52648, + [SMALL_STATE(1369)] = 52663, + [SMALL_STATE(1370)] = 52680, + [SMALL_STATE(1371)] = 52697, + [SMALL_STATE(1372)] = 52714, + [SMALL_STATE(1373)] = 52729, + [SMALL_STATE(1374)] = 52746, + [SMALL_STATE(1375)] = 52763, + [SMALL_STATE(1376)] = 52778, + [SMALL_STATE(1377)] = 52795, + [SMALL_STATE(1378)] = 52812, + [SMALL_STATE(1379)] = 52823, + [SMALL_STATE(1380)] = 52840, + [SMALL_STATE(1381)] = 52853, + [SMALL_STATE(1382)] = 52868, + [SMALL_STATE(1383)] = 52883, + [SMALL_STATE(1384)] = 52900, + [SMALL_STATE(1385)] = 52911, + [SMALL_STATE(1386)] = 52926, + [SMALL_STATE(1387)] = 52943, + [SMALL_STATE(1388)] = 52960, + [SMALL_STATE(1389)] = 52973, + [SMALL_STATE(1390)] = 52990, + [SMALL_STATE(1391)] = 53005, + [SMALL_STATE(1392)] = 53022, + [SMALL_STATE(1393)] = 53037, + [SMALL_STATE(1394)] = 53054, + [SMALL_STATE(1395)] = 53071, + [SMALL_STATE(1396)] = 53086, + [SMALL_STATE(1397)] = 53103, + [SMALL_STATE(1398)] = 53114, + [SMALL_STATE(1399)] = 53131, + [SMALL_STATE(1400)] = 53148, + [SMALL_STATE(1401)] = 53163, + [SMALL_STATE(1402)] = 53178, + [SMALL_STATE(1403)] = 53192, + [SMALL_STATE(1404)] = 53204, + [SMALL_STATE(1405)] = 53218, + [SMALL_STATE(1406)] = 53228, + [SMALL_STATE(1407)] = 53240, + [SMALL_STATE(1408)] = 53254, + [SMALL_STATE(1409)] = 53266, + [SMALL_STATE(1410)] = 53280, + [SMALL_STATE(1411)] = 53294, + [SMALL_STATE(1412)] = 53308, + [SMALL_STATE(1413)] = 53322, + [SMALL_STATE(1414)] = 53336, + [SMALL_STATE(1415)] = 53348, + [SMALL_STATE(1416)] = 53362, + [SMALL_STATE(1417)] = 53376, + [SMALL_STATE(1418)] = 53390, + [SMALL_STATE(1419)] = 53404, + [SMALL_STATE(1420)] = 53418, + [SMALL_STATE(1421)] = 53432, + [SMALL_STATE(1422)] = 53446, + [SMALL_STATE(1423)] = 53460, + [SMALL_STATE(1424)] = 53474, + [SMALL_STATE(1425)] = 53488, + [SMALL_STATE(1426)] = 53502, + [SMALL_STATE(1427)] = 53516, + [SMALL_STATE(1428)] = 53530, + [SMALL_STATE(1429)] = 53544, + [SMALL_STATE(1430)] = 53558, + [SMALL_STATE(1431)] = 53572, + [SMALL_STATE(1432)] = 53586, + [SMALL_STATE(1433)] = 53596, + [SMALL_STATE(1434)] = 53610, + [SMALL_STATE(1435)] = 53624, + [SMALL_STATE(1436)] = 53638, + [SMALL_STATE(1437)] = 53652, + [SMALL_STATE(1438)] = 53666, + [SMALL_STATE(1439)] = 53680, + [SMALL_STATE(1440)] = 53690, + [SMALL_STATE(1441)] = 53704, + [SMALL_STATE(1442)] = 53716, + [SMALL_STATE(1443)] = 53730, + [SMALL_STATE(1444)] = 53740, + [SMALL_STATE(1445)] = 53752, + [SMALL_STATE(1446)] = 53762, + [SMALL_STATE(1447)] = 53776, + [SMALL_STATE(1448)] = 53790, + [SMALL_STATE(1449)] = 53804, + [SMALL_STATE(1450)] = 53818, + [SMALL_STATE(1451)] = 53832, + [SMALL_STATE(1452)] = 53846, + [SMALL_STATE(1453)] = 53860, + [SMALL_STATE(1454)] = 53874, + [SMALL_STATE(1455)] = 53888, + [SMALL_STATE(1456)] = 53902, + [SMALL_STATE(1457)] = 53916, + [SMALL_STATE(1458)] = 53930, + [SMALL_STATE(1459)] = 53944, + [SMALL_STATE(1460)] = 53958, + [SMALL_STATE(1461)] = 53970, + [SMALL_STATE(1462)] = 53984, + [SMALL_STATE(1463)] = 53994, + [SMALL_STATE(1464)] = 54008, + [SMALL_STATE(1465)] = 54022, + [SMALL_STATE(1466)] = 54036, + [SMALL_STATE(1467)] = 54050, + [SMALL_STATE(1468)] = 54064, + [SMALL_STATE(1469)] = 54078, + [SMALL_STATE(1470)] = 54088, + [SMALL_STATE(1471)] = 54102, + [SMALL_STATE(1472)] = 54116, + [SMALL_STATE(1473)] = 54130, + [SMALL_STATE(1474)] = 54144, + [SMALL_STATE(1475)] = 54158, + [SMALL_STATE(1476)] = 54172, + [SMALL_STATE(1477)] = 54186, + [SMALL_STATE(1478)] = 54196, + [SMALL_STATE(1479)] = 54210, + [SMALL_STATE(1480)] = 54222, + [SMALL_STATE(1481)] = 54234, + [SMALL_STATE(1482)] = 54248, + [SMALL_STATE(1483)] = 54262, + [SMALL_STATE(1484)] = 54276, + [SMALL_STATE(1485)] = 54290, + [SMALL_STATE(1486)] = 54304, + [SMALL_STATE(1487)] = 54318, + [SMALL_STATE(1488)] = 54332, + [SMALL_STATE(1489)] = 54346, + [SMALL_STATE(1490)] = 54358, + [SMALL_STATE(1491)] = 54368, + [SMALL_STATE(1492)] = 54382, + [SMALL_STATE(1493)] = 54394, + [SMALL_STATE(1494)] = 54408, + [SMALL_STATE(1495)] = 54420, + [SMALL_STATE(1496)] = 54434, + [SMALL_STATE(1497)] = 54448, + [SMALL_STATE(1498)] = 54460, + [SMALL_STATE(1499)] = 54472, + [SMALL_STATE(1500)] = 54484, + [SMALL_STATE(1501)] = 54498, + [SMALL_STATE(1502)] = 54510, + [SMALL_STATE(1503)] = 54524, + [SMALL_STATE(1504)] = 54535, + [SMALL_STATE(1505)] = 54546, + [SMALL_STATE(1506)] = 54557, + [SMALL_STATE(1507)] = 54568, + [SMALL_STATE(1508)] = 54579, + [SMALL_STATE(1509)] = 54590, + [SMALL_STATE(1510)] = 54599, + [SMALL_STATE(1511)] = 54610, + [SMALL_STATE(1512)] = 54619, + [SMALL_STATE(1513)] = 54630, + [SMALL_STATE(1514)] = 54641, + [SMALL_STATE(1515)] = 54650, + [SMALL_STATE(1516)] = 54661, + [SMALL_STATE(1517)] = 54670, + [SMALL_STATE(1518)] = 54681, + [SMALL_STATE(1519)] = 54692, + [SMALL_STATE(1520)] = 54701, + [SMALL_STATE(1521)] = 54712, + [SMALL_STATE(1522)] = 54723, + [SMALL_STATE(1523)] = 54734, + [SMALL_STATE(1524)] = 54743, + [SMALL_STATE(1525)] = 54754, + [SMALL_STATE(1526)] = 54765, + [SMALL_STATE(1527)] = 54774, + [SMALL_STATE(1528)] = 54785, + [SMALL_STATE(1529)] = 54796, + [SMALL_STATE(1530)] = 54807, + [SMALL_STATE(1531)] = 54818, + [SMALL_STATE(1532)] = 54829, + [SMALL_STATE(1533)] = 54840, + [SMALL_STATE(1534)] = 54851, + [SMALL_STATE(1535)] = 54862, + [SMALL_STATE(1536)] = 54873, + [SMALL_STATE(1537)] = 54884, + [SMALL_STATE(1538)] = 54893, + [SMALL_STATE(1539)] = 54902, + [SMALL_STATE(1540)] = 54913, + [SMALL_STATE(1541)] = 54922, + [SMALL_STATE(1542)] = 54931, + [SMALL_STATE(1543)] = 54942, + [SMALL_STATE(1544)] = 54953, + [SMALL_STATE(1545)] = 54964, + [SMALL_STATE(1546)] = 54975, + [SMALL_STATE(1547)] = 54984, + [SMALL_STATE(1548)] = 54995, + [SMALL_STATE(1549)] = 55004, + [SMALL_STATE(1550)] = 55015, + [SMALL_STATE(1551)] = 55026, + [SMALL_STATE(1552)] = 55037, + [SMALL_STATE(1553)] = 55048, + [SMALL_STATE(1554)] = 55059, + [SMALL_STATE(1555)] = 55068, + [SMALL_STATE(1556)] = 55079, + [SMALL_STATE(1557)] = 55090, + [SMALL_STATE(1558)] = 55101, + [SMALL_STATE(1559)] = 55112, + [SMALL_STATE(1560)] = 55123, + [SMALL_STATE(1561)] = 55134, + [SMALL_STATE(1562)] = 55145, + [SMALL_STATE(1563)] = 55156, + [SMALL_STATE(1564)] = 55167, + [SMALL_STATE(1565)] = 55178, + [SMALL_STATE(1566)] = 55189, + [SMALL_STATE(1567)] = 55200, + [SMALL_STATE(1568)] = 55211, + [SMALL_STATE(1569)] = 55222, + [SMALL_STATE(1570)] = 55233, + [SMALL_STATE(1571)] = 55244, + [SMALL_STATE(1572)] = 55255, + [SMALL_STATE(1573)] = 55266, + [SMALL_STATE(1574)] = 55277, + [SMALL_STATE(1575)] = 55288, + [SMALL_STATE(1576)] = 55299, + [SMALL_STATE(1577)] = 55310, + [SMALL_STATE(1578)] = 55321, + [SMALL_STATE(1579)] = 55332, + [SMALL_STATE(1580)] = 55343, + [SMALL_STATE(1581)] = 55354, + [SMALL_STATE(1582)] = 55365, + [SMALL_STATE(1583)] = 55376, + [SMALL_STATE(1584)] = 55387, + [SMALL_STATE(1585)] = 55398, + [SMALL_STATE(1586)] = 55409, + [SMALL_STATE(1587)] = 55420, + [SMALL_STATE(1588)] = 55431, + [SMALL_STATE(1589)] = 55442, + [SMALL_STATE(1590)] = 55453, + [SMALL_STATE(1591)] = 55462, + [SMALL_STATE(1592)] = 55473, + [SMALL_STATE(1593)] = 55484, + [SMALL_STATE(1594)] = 55495, + [SMALL_STATE(1595)] = 55506, + [SMALL_STATE(1596)] = 55517, + [SMALL_STATE(1597)] = 55528, + [SMALL_STATE(1598)] = 55539, + [SMALL_STATE(1599)] = 55550, + [SMALL_STATE(1600)] = 55561, + [SMALL_STATE(1601)] = 55572, + [SMALL_STATE(1602)] = 55583, + [SMALL_STATE(1603)] = 55594, + [SMALL_STATE(1604)] = 55605, + [SMALL_STATE(1605)] = 55614, + [SMALL_STATE(1606)] = 55625, + [SMALL_STATE(1607)] = 55636, + [SMALL_STATE(1608)] = 55647, + [SMALL_STATE(1609)] = 55658, + [SMALL_STATE(1610)] = 55669, + [SMALL_STATE(1611)] = 55680, + [SMALL_STATE(1612)] = 55691, + [SMALL_STATE(1613)] = 55702, + [SMALL_STATE(1614)] = 55713, + [SMALL_STATE(1615)] = 55724, + [SMALL_STATE(1616)] = 55735, + [SMALL_STATE(1617)] = 55746, + [SMALL_STATE(1618)] = 55755, + [SMALL_STATE(1619)] = 55766, + [SMALL_STATE(1620)] = 55777, + [SMALL_STATE(1621)] = 55786, + [SMALL_STATE(1622)] = 55795, + [SMALL_STATE(1623)] = 55806, + [SMALL_STATE(1624)] = 55817, + [SMALL_STATE(1625)] = 55828, + [SMALL_STATE(1626)] = 55839, + [SMALL_STATE(1627)] = 55850, + [SMALL_STATE(1628)] = 55861, + [SMALL_STATE(1629)] = 55872, + [SMALL_STATE(1630)] = 55881, + [SMALL_STATE(1631)] = 55892, + [SMALL_STATE(1632)] = 55903, + [SMALL_STATE(1633)] = 55914, + [SMALL_STATE(1634)] = 55925, + [SMALL_STATE(1635)] = 55936, + [SMALL_STATE(1636)] = 55947, + [SMALL_STATE(1637)] = 55956, + [SMALL_STATE(1638)] = 55967, + [SMALL_STATE(1639)] = 55978, + [SMALL_STATE(1640)] = 55989, + [SMALL_STATE(1641)] = 56000, + [SMALL_STATE(1642)] = 56011, + [SMALL_STATE(1643)] = 56022, + [SMALL_STATE(1644)] = 56033, + [SMALL_STATE(1645)] = 56044, + [SMALL_STATE(1646)] = 56053, + [SMALL_STATE(1647)] = 56062, + [SMALL_STATE(1648)] = 56073, + [SMALL_STATE(1649)] = 56082, + [SMALL_STATE(1650)] = 56093, + [SMALL_STATE(1651)] = 56104, + [SMALL_STATE(1652)] = 56115, + [SMALL_STATE(1653)] = 56126, + [SMALL_STATE(1654)] = 56137, + [SMALL_STATE(1655)] = 56146, + [SMALL_STATE(1656)] = 56157, + [SMALL_STATE(1657)] = 56168, + [SMALL_STATE(1658)] = 56179, + [SMALL_STATE(1659)] = 56190, + [SMALL_STATE(1660)] = 56201, + [SMALL_STATE(1661)] = 56212, + [SMALL_STATE(1662)] = 56221, + [SMALL_STATE(1663)] = 56230, + [SMALL_STATE(1664)] = 56241, + [SMALL_STATE(1665)] = 56252, + [SMALL_STATE(1666)] = 56261, + [SMALL_STATE(1667)] = 56272, + [SMALL_STATE(1668)] = 56283, + [SMALL_STATE(1669)] = 56294, + [SMALL_STATE(1670)] = 56305, + [SMALL_STATE(1671)] = 56314, + [SMALL_STATE(1672)] = 56325, + [SMALL_STATE(1673)] = 56334, + [SMALL_STATE(1674)] = 56345, + [SMALL_STATE(1675)] = 56356, + [SMALL_STATE(1676)] = 56367, + [SMALL_STATE(1677)] = 56378, + [SMALL_STATE(1678)] = 56389, + [SMALL_STATE(1679)] = 56400, + [SMALL_STATE(1680)] = 56411, + [SMALL_STATE(1681)] = 56422, + [SMALL_STATE(1682)] = 56433, + [SMALL_STATE(1683)] = 56444, + [SMALL_STATE(1684)] = 56455, + [SMALL_STATE(1685)] = 56466, + [SMALL_STATE(1686)] = 56477, + [SMALL_STATE(1687)] = 56488, + [SMALL_STATE(1688)] = 56499, + [SMALL_STATE(1689)] = 56510, + [SMALL_STATE(1690)] = 56521, + [SMALL_STATE(1691)] = 56532, + [SMALL_STATE(1692)] = 56543, + [SMALL_STATE(1693)] = 56552, + [SMALL_STATE(1694)] = 56563, + [SMALL_STATE(1695)] = 56574, + [SMALL_STATE(1696)] = 56585, + [SMALL_STATE(1697)] = 56596, + [SMALL_STATE(1698)] = 56607, + [SMALL_STATE(1699)] = 56618, + [SMALL_STATE(1700)] = 56629, + [SMALL_STATE(1701)] = 56640, + [SMALL_STATE(1702)] = 56651, + [SMALL_STATE(1703)] = 56662, + [SMALL_STATE(1704)] = 56673, + [SMALL_STATE(1705)] = 56684, + [SMALL_STATE(1706)] = 56695, + [SMALL_STATE(1707)] = 56706, + [SMALL_STATE(1708)] = 56717, + [SMALL_STATE(1709)] = 56728, + [SMALL_STATE(1710)] = 56739, + [SMALL_STATE(1711)] = 56750, + [SMALL_STATE(1712)] = 56761, + [SMALL_STATE(1713)] = 56772, + [SMALL_STATE(1714)] = 56783, + [SMALL_STATE(1715)] = 56794, + [SMALL_STATE(1716)] = 56805, + [SMALL_STATE(1717)] = 56816, + [SMALL_STATE(1718)] = 56827, + [SMALL_STATE(1719)] = 56838, + [SMALL_STATE(1720)] = 56849, + [SMALL_STATE(1721)] = 56860, + [SMALL_STATE(1722)] = 56871, + [SMALL_STATE(1723)] = 56882, + [SMALL_STATE(1724)] = 56893, + [SMALL_STATE(1725)] = 56904, + [SMALL_STATE(1726)] = 56913, + [SMALL_STATE(1727)] = 56924, + [SMALL_STATE(1728)] = 56935, + [SMALL_STATE(1729)] = 56946, + [SMALL_STATE(1730)] = 56957, + [SMALL_STATE(1731)] = 56968, + [SMALL_STATE(1732)] = 56979, + [SMALL_STATE(1733)] = 56990, + [SMALL_STATE(1734)] = 57001, + [SMALL_STATE(1735)] = 57012, + [SMALL_STATE(1736)] = 57023, + [SMALL_STATE(1737)] = 57034, + [SMALL_STATE(1738)] = 57045, + [SMALL_STATE(1739)] = 57056, + [SMALL_STATE(1740)] = 57067, + [SMALL_STATE(1741)] = 57078, + [SMALL_STATE(1742)] = 57087, + [SMALL_STATE(1743)] = 57098, + [SMALL_STATE(1744)] = 57107, + [SMALL_STATE(1745)] = 57118, + [SMALL_STATE(1746)] = 57129, + [SMALL_STATE(1747)] = 57140, + [SMALL_STATE(1748)] = 57151, + [SMALL_STATE(1749)] = 57160, + [SMALL_STATE(1750)] = 57169, + [SMALL_STATE(1751)] = 57180, + [SMALL_STATE(1752)] = 57188, + [SMALL_STATE(1753)] = 57196, + [SMALL_STATE(1754)] = 57204, + [SMALL_STATE(1755)] = 57212, + [SMALL_STATE(1756)] = 57220, + [SMALL_STATE(1757)] = 57228, + [SMALL_STATE(1758)] = 57236, + [SMALL_STATE(1759)] = 57244, + [SMALL_STATE(1760)] = 57254, + [SMALL_STATE(1761)] = 57262, + [SMALL_STATE(1762)] = 57270, + [SMALL_STATE(1763)] = 57278, + [SMALL_STATE(1764)] = 57286, + [SMALL_STATE(1765)] = 57294, + [SMALL_STATE(1766)] = 57302, + [SMALL_STATE(1767)] = 57310, + [SMALL_STATE(1768)] = 57320, + [SMALL_STATE(1769)] = 57328, + [SMALL_STATE(1770)] = 57336, + [SMALL_STATE(1771)] = 57344, + [SMALL_STATE(1772)] = 57352, + [SMALL_STATE(1773)] = 57360, + [SMALL_STATE(1774)] = 57368, + [SMALL_STATE(1775)] = 57376, + [SMALL_STATE(1776)] = 57384, + [SMALL_STATE(1777)] = 57392, + [SMALL_STATE(1778)] = 57400, + [SMALL_STATE(1779)] = 57408, + [SMALL_STATE(1780)] = 57416, + [SMALL_STATE(1781)] = 57424, + [SMALL_STATE(1782)] = 57432, + [SMALL_STATE(1783)] = 57440, + [SMALL_STATE(1784)] = 57448, + [SMALL_STATE(1785)] = 57456, + [SMALL_STATE(1786)] = 57464, + [SMALL_STATE(1787)] = 57472, + [SMALL_STATE(1788)] = 57480, + [SMALL_STATE(1789)] = 57490, + [SMALL_STATE(1790)] = 57498, + [SMALL_STATE(1791)] = 57506, + [SMALL_STATE(1792)] = 57514, + [SMALL_STATE(1793)] = 57524, + [SMALL_STATE(1794)] = 57532, + [SMALL_STATE(1795)] = 57540, + [SMALL_STATE(1796)] = 57548, + [SMALL_STATE(1797)] = 57556, + [SMALL_STATE(1798)] = 57566, + [SMALL_STATE(1799)] = 57574, + [SMALL_STATE(1800)] = 57582, + [SMALL_STATE(1801)] = 57590, + [SMALL_STATE(1802)] = 57598, + [SMALL_STATE(1803)] = 57606, + [SMALL_STATE(1804)] = 57614, + [SMALL_STATE(1805)] = 57622, + [SMALL_STATE(1806)] = 57630, + [SMALL_STATE(1807)] = 57638, + [SMALL_STATE(1808)] = 57646, + [SMALL_STATE(1809)] = 57654, + [SMALL_STATE(1810)] = 57662, + [SMALL_STATE(1811)] = 57670, + [SMALL_STATE(1812)] = 57678, + [SMALL_STATE(1813)] = 57686, + [SMALL_STATE(1814)] = 57694, + [SMALL_STATE(1815)] = 57702, + [SMALL_STATE(1816)] = 57710, + [SMALL_STATE(1817)] = 57718, + [SMALL_STATE(1818)] = 57726, + [SMALL_STATE(1819)] = 57734, + [SMALL_STATE(1820)] = 57744, + [SMALL_STATE(1821)] = 57752, + [SMALL_STATE(1822)] = 57760, + [SMALL_STATE(1823)] = 57768, + [SMALL_STATE(1824)] = 57776, + [SMALL_STATE(1825)] = 57784, + [SMALL_STATE(1826)] = 57792, + [SMALL_STATE(1827)] = 57800, + [SMALL_STATE(1828)] = 57808, + [SMALL_STATE(1829)] = 57816, + [SMALL_STATE(1830)] = 57824, + [SMALL_STATE(1831)] = 57832, + [SMALL_STATE(1832)] = 57840, + [SMALL_STATE(1833)] = 57848, + [SMALL_STATE(1834)] = 57856, + [SMALL_STATE(1835)] = 57864, + [SMALL_STATE(1836)] = 57872, + [SMALL_STATE(1837)] = 57882, + [SMALL_STATE(1838)] = 57890, + [SMALL_STATE(1839)] = 57898, + [SMALL_STATE(1840)] = 57906, + [SMALL_STATE(1841)] = 57914, + [SMALL_STATE(1842)] = 57922, + [SMALL_STATE(1843)] = 57930, + [SMALL_STATE(1844)] = 57938, + [SMALL_STATE(1845)] = 57946, + [SMALL_STATE(1846)] = 57954, + [SMALL_STATE(1847)] = 57962, + [SMALL_STATE(1848)] = 57970, + [SMALL_STATE(1849)] = 57978, + [SMALL_STATE(1850)] = 57986, + [SMALL_STATE(1851)] = 57994, + [SMALL_STATE(1852)] = 58002, + [SMALL_STATE(1853)] = 58010, + [SMALL_STATE(1854)] = 58018, + [SMALL_STATE(1855)] = 58026, + [SMALL_STATE(1856)] = 58034, + [SMALL_STATE(1857)] = 58044, + [SMALL_STATE(1858)] = 58052, + [SMALL_STATE(1859)] = 58060, + [SMALL_STATE(1860)] = 58068, + [SMALL_STATE(1861)] = 58076, + [SMALL_STATE(1862)] = 58084, + [SMALL_STATE(1863)] = 58092, + [SMALL_STATE(1864)] = 58100, + [SMALL_STATE(1865)] = 58108, + [SMALL_STATE(1866)] = 58116, + [SMALL_STATE(1867)] = 58124, + [SMALL_STATE(1868)] = 58132, + [SMALL_STATE(1869)] = 58140, + [SMALL_STATE(1870)] = 58148, + [SMALL_STATE(1871)] = 58156, + [SMALL_STATE(1872)] = 58164, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(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(1152), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [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(1277), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [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(1122), + [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(1414), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [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(1444), + [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(1277), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [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(1767), + [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(1250), + [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(1152), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), + [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(1200), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1192), + [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(1625), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1635), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), + [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(1628), + [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(1529), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1497), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1629), + [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(1277), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1369), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), + [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(1338), + [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(1767), + [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(1250), + [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(1843), + [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(1407), + [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(864), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [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(1292), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [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(1759), + [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(1271), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [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(886), + [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(1823), + [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(1041), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [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(1209), + [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(1836), + [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(1801), + [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(1518), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [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(1788), + [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(1780), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [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(886), + [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(1866), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [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(1292), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [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(1788), + [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(1292), + [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(869), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [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(1636), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [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(1363), + [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(870), + [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(1241), + [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(1101), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [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(1654), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [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(1751), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [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(1786), + [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(1811), + [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(1530), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1123), + [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(1356), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(126), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [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(1423), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [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(1766), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [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(1784), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [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(1216), + [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(1499), + [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(1637), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [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(1472), + [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(1733), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [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(1436), + [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(1202), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [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(1384), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 57), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [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(1012), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(340), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1378), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1129), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(983), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(312), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1327), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1393), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1019), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1254), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1407), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1010), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1109), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1034), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [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(820), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1547), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 18), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 19), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 18), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [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(1795), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 100), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 100), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 77), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 77), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 108), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 108), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 84), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 84), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), SHIFT_REPEAT(1407), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 89), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 89), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 94), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 94), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 99), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 99), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 58), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 58), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 7), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 7), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), SHIFT_REPEAT(1078), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(1205), + [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(131), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(1205), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 6), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 6), SHIFT(1646), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 19), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 65), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 65), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 86), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1237), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_lone_ampersand, 1, 0, 0), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_lone_ampersand, 1, 0, 0), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 33), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 33), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 67), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 36), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1258), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1258), + [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1390), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 69), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 23), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(249), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 24), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [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(1155), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 34), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 34), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(319), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1347), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1348), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 19), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string_lone_ampersand, 1, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string_lone_ampersand, 1, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1195), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 57), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 21), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [3494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(992), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 6), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 6), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 83), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 68), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 83), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 85), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 87), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 98), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [3635] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__automatic_semicolon = 0, + ts_external_token__template_chars = 1, + ts_external_token__ternary_qmark = 2, + ts_external_token_html_comment = 3, + ts_external_token_PIPE_PIPE = 4, + ts_external_token_escape_sequence = 5, + ts_external_token_regex_pattern = 6, + ts_external_token_jsx_text = 7, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, + [ts_external_token__template_chars] = sym__template_chars, + [ts_external_token__ternary_qmark] = sym__ternary_qmark, + [ts_external_token_html_comment] = sym_html_comment, + [ts_external_token_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [ts_external_token_escape_sequence] = sym_escape_sequence, + [ts_external_token_regex_pattern] = sym_regex_pattern, + [ts_external_token_jsx_text] = sym_jsx_text, +}; + +static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__template_chars] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_escape_sequence] = true, + [ts_external_token_jsx_text] = true, + }, + [2] = { + [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__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + }, + [5] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + }, + [6] = { + [ts_external_token_html_comment] = true, + [ts_external_token_jsx_text] = true, + }, + [7] = { + [ts_external_token__template_chars] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [8] = { + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [9] = { + [ts_external_token_html_comment] = true, + [ts_external_token_regex_pattern] = true, + }, +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_javascript_external_scanner_create(void); +void tree_sitter_javascript_external_scanner_destroy(void *); +bool tree_sitter_javascript_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_javascript_external_scanner_serialize(void *, char *); +void tree_sitter_javascript_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) +#endif + +TS_PUBLIC const TSLanguage *tree_sitter_javascript(void) { + static const TSLanguage language = { + .abi_version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .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 = (const void*)ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_identifier, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_javascript_external_scanner_create, + tree_sitter_javascript_external_scanner_destroy, + tree_sitter_javascript_external_scanner_scan, + tree_sitter_javascript_external_scanner_serialize, + 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 = 25, + .patch_version = 0, + }, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/tools/tree-sitter-javascript/src/scanner.c b/tools/tree-sitter-javascript/src/scanner.c new file mode 100644 index 000000000..795916dd3 --- /dev/null +++ b/tools/tree-sitter-javascript/src/scanner.c @@ -0,0 +1,364 @@ +#include "tree_sitter/parser.h" + +#include +#include + +enum TokenType { + AUTOMATIC_SEMICOLON, + TEMPLATE_CHARS, + TERNARY_QMARK, + HTML_COMMENT, + LOGICAL_OR, + ESCAPE_SEQUENCE, + REGEX_PATTERN, + JSX_TEXT, +}; + +void *tree_sitter_javascript_external_scanner_create() { return NULL; } + +void tree_sitter_javascript_external_scanner_destroy(void *p) {} + +unsigned tree_sitter_javascript_external_scanner_serialize(void *payload, char *buffer) { return 0; } + +void tree_sitter_javascript_external_scanner_deserialize(void *p, const char *b, unsigned n) {} + +static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } + +static bool scan_template_chars(TSLexer *lexer) { + lexer->result_symbol = TEMPLATE_CHARS; + for (bool has_content = false;; has_content = true) { + lexer->mark_end(lexer); + switch (lexer->lookahead) { + case '`': + return has_content; + case '\0': + return false; + case '$': + advance(lexer); + if (lexer->lookahead == '{') { + return has_content; + } + break; + case '\\': + return has_content; + default: + advance(lexer); + } + } +} + +typedef enum { + REJECT, // Semicolon is illegal, ie a syntax error occurred + NO_NEWLINE, // Unclear if semicolon will be legal, continue + ACCEPT, // Semicolon is legal, assuming a comment was encountered +} WhitespaceResult; + +/** + * @param consume If false, only consume enough to check if comment indicates semicolon-legality + */ +static WhitespaceResult scan_whitespace_and_comments(TSLexer *lexer, bool *scanned_comment, bool consume) { + bool saw_block_newline = false; + + for (;;) { + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + + if (lexer->lookahead == '/') { + skip(lexer); + + if (lexer->lookahead == '/') { + skip(lexer); + while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && + lexer->lookahead != 0x2029) { + skip(lexer); + } + *scanned_comment = true; + } else if (lexer->lookahead == '*') { + skip(lexer); + while (lexer->lookahead != 0) { + if (lexer->lookahead == '*') { + skip(lexer); + if (lexer->lookahead == '/') { + skip(lexer); + *scanned_comment = true; + + if (lexer->lookahead != '/' && !consume) { + return saw_block_newline ? ACCEPT : NO_NEWLINE; + } + + break; + } + } else if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + saw_block_newline = true; + skip(lexer); + } else { + skip(lexer); + } + } + } else { + return REJECT; + } + } else { + return ACCEPT; + } + } +} + +static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, bool *scanned_comment) { + lexer->result_symbol = AUTOMATIC_SEMICOLON; + lexer->mark_end(lexer); + + for (;;) { + if (lexer->lookahead == 0) { + return true; + } + + if (lexer->lookahead == '/') { + WhitespaceResult result = scan_whitespace_and_comments(lexer, scanned_comment, false); + if (result == REJECT) { + return false; + } + + if (result == ACCEPT && comment_condition && lexer->lookahead != ',' && lexer->lookahead != '=') { + return true; + } + } + + if (lexer->lookahead == '}') { + return true; + } + + if (lexer->is_at_included_range_start(lexer)) { + return true; + } + + if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + break; + } + + if (!iswspace(lexer->lookahead)) { + return false; + } + + skip(lexer); + } + + skip(lexer); + + if (scan_whitespace_and_comments(lexer, scanned_comment, true) == REJECT) { + return false; + } + + switch (lexer->lookahead) { + case '`': + case ',': + case ':': + case ';': + case '*': + case '%': + case '>': + case '<': + case '=': + case '[': + case '(': + case '?': + case '^': + case '|': + case '&': + case '/': + return false; + + // Insert a semicolon before decimals literals but not otherwise. + case '.': + skip(lexer); + return iswdigit(lexer->lookahead); + + // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. + case '+': + skip(lexer); + return lexer->lookahead == '+'; + case '-': + skip(lexer); + return lexer->lookahead == '-'; + + // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. + case '!': + skip(lexer); + return lexer->lookahead != '='; + + // Don't insert a semicolon before `in` or `instanceof`, but do insert one + // before an identifier. + case 'i': + skip(lexer); + + if (lexer->lookahead != 'n') { + return true; + } + skip(lexer); + + if (!iswalpha(lexer->lookahead)) { + return false; + } + + for (unsigned i = 0; i < 8; i++) { + if (lexer->lookahead != "stanceof"[i]) { + return true; + } + skip(lexer); + } + + if (!iswalpha(lexer->lookahead)) { + return false; + } + break; + + default: + break; + } + + return true; +} + +static bool scan_ternary_qmark(TSLexer *lexer) { + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + skip(lexer); + } + + if (lexer->lookahead == '?') { + advance(lexer); + + if (lexer->lookahead == '?') { + return false; + } + + lexer->mark_end(lexer); + lexer->result_symbol = TERNARY_QMARK; + + if (lexer->lookahead == '.') { + advance(lexer); + if (iswdigit(lexer->lookahead)) { + return true; + } + return false; + } + return true; + } + return false; +} + +static bool scan_html_comment(TSLexer *lexer) { + while (iswspace(lexer->lookahead) || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + skip(lexer); + } + + const char *comment_start = ""; + + if (lexer->lookahead == '<') { + for (unsigned i = 0; i < 4; i++) { + if (lexer->lookahead != comment_start[i]) { + return false; + } + advance(lexer); + } + } else if (lexer->lookahead == '-') { + for (unsigned i = 0; i < 3; i++) { + if (lexer->lookahead != comment_end[i]) { + return false; + } + advance(lexer); + } + } else { + return false; + } + + while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && + lexer->lookahead != 0x2029) { + advance(lexer); + } + + lexer->result_symbol = HTML_COMMENT; + lexer->mark_end(lexer); + + return true; +} + +static bool scan_jsx_text(TSLexer *lexer) { + // saw_text will be true if we see any non-whitespace content, or any whitespace content that is not a newline and + // does not immediately follow a newline. + bool saw_text = false; + // at_newline will be true if we are currently at a newline, or if we are at whitespace that is not a newline but + // immediately follows a newline. + bool at_newline = false; + + while (lexer->lookahead != 0 && lexer->lookahead != '<' && lexer->lookahead != '>' && lexer->lookahead != '{' && + lexer->lookahead != '}' && lexer->lookahead != '&') { + bool is_wspace = iswspace(lexer->lookahead); + if (lexer->lookahead == '\n') { + at_newline = true; + } else { + // If at_newline is already true, and we see some whitespace, then it must stay true. + // Otherwise, it should be false. + // + // See the table below to determine the logic for computing `saw_text`. + // + // |------------------------------------| + // | at_newline | is_wspace | saw_text | + // |------------|-----------|-----------| + // | false (0) | false (0) | true (1) | + // | false (0) | true (1) | true (1) | + // | true (1) | false (0) | true (1) | + // | true (1) | true (1) | false (0) | + // |------------------------------------| + + at_newline &= is_wspace; + if (!at_newline) { + saw_text = true; + } + } + + advance(lexer); + } + + lexer->result_symbol = JSX_TEXT; + return saw_text; +} + +bool tree_sitter_javascript_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[TEMPLATE_CHARS]) { + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + return false; + } + return scan_template_chars(lexer); + } + + if (valid_symbols[JSX_TEXT] && scan_jsx_text(lexer)) { + return true; + } + + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + bool scanned_comment = false; + bool ret = scan_automatic_semicolon(lexer, !valid_symbols[LOGICAL_OR], &scanned_comment); + if (!ret && !scanned_comment && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') { + return scan_ternary_qmark(lexer); + } + return ret; + } + + if (valid_symbols[TERNARY_QMARK]) { + return scan_ternary_qmark(lexer); + } + + if (valid_symbols[HTML_COMMENT] && !valid_symbols[LOGICAL_OR] && !valid_symbols[ESCAPE_SEQUENCE] && + !valid_symbols[REGEX_PATTERN]) { + return scan_html_comment(lexer); + } + + return false; +} diff --git a/tools/tree-sitter-javascript/src/tree_sitter/alloc.h b/tools/tree-sitter-javascript/src/tree_sitter/alloc.h new file mode 100644 index 000000000..1abdd1201 --- /dev/null +++ b/tools/tree-sitter-javascript/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/tools/tree-sitter-javascript/src/tree_sitter/array.h b/tools/tree-sitter-javascript/src/tree_sitter/array.h new file mode 100644 index 000000000..a17a574f0 --- /dev/null +++ b/tools/tree-sitter-javascript/src/tree_sitter/array.h @@ -0,0 +1,291 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(pop) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/tools/tree-sitter-javascript/src/tree_sitter/parser.h b/tools/tree-sitter-javascript/src/tree_sitter/parser.h new file mode 100644 index 000000000..858107deb --- /dev/null +++ b/tools/tree-sitter-javascript/src/tree_sitter/parser.h @@ -0,0 +1,286 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +// Used to index the field and supertype maps. +typedef struct { + uint16_t index; + uint16_t length; +} TSMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + +struct TSLanguage { + uint32_t abi_version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const 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 TSLexerMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; + 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(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; + const TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + const TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + +/* + * Lexer Macros + */ + +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + UNUSED \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value) \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value), \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/tools/tree-sitter-javascript/test/corpus/jsx_ampersand.txt b/tools/tree-sitter-javascript/test/corpus/jsx_ampersand.txt new file mode 100644 index 000000000..290f7d4bb --- /dev/null +++ b/tools/tree-sitter-javascript/test/corpus/jsx_ampersand.txt @@ -0,0 +1,140 @@ +================================================================================ +JSX attribute: lone ampersand in a double-quoted string (#1736) +================================================================================ + +; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_self_closing_element + (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (string_fragment) + (string_fragment)))))) + +================================================================================ +JSX attribute: lone ampersand in a single-quoted string (#1736) +================================================================================ + +; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_self_closing_element + (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (string_fragment) + (string_fragment)))))) + +================================================================================ +JSX attribute: ampersand before the closing quote (#1736) +================================================================================ + +

; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_self_closing_element + (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (string_fragment))) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (string_fragment)))))) + +================================================================================ +JSX text: lone ampersand (#1736) +================================================================================ + +

Tom &Jerry, Tom & Jerry, x &1 y, a&

; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_element + (jsx_opening_element + (identifier)) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_closing_element + (identifier))))) + +================================================================================ +JSX: character references still parse as references +================================================================================ + +

A&B & C &

; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_element + (jsx_opening_element + (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (html_character_reference) + (string_fragment) + (html_character_reference) + (string_fragment)))) + (jsx_text) + (html_character_reference) + (jsx_text) + (html_character_reference) + (jsx_text) + (html_character_reference) + (jsx_closing_element + (identifier))))) + +================================================================================ +JSX: bitwise and logical and in expressions are unaffected +================================================================================ + +{a && b}; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_element + (jsx_opening_element + (identifier) + (jsx_attribute + (property_identifier) + (jsx_expression + (binary_expression + (identifier) + (identifier))))) + (jsx_expression + (binary_expression + (identifier) + (identifier))) + (jsx_closing_element + (identifier))))) diff --git a/tools/tree-sitter-javascript/tree-sitter.json b/tools/tree-sitter-javascript/tree-sitter.json new file mode 100644 index 000000000..3096f2eea --- /dev/null +++ b/tools/tree-sitter-javascript/tree-sitter.json @@ -0,0 +1,16 @@ +{ + "grammars": [ + { + "name": "javascript", + "camelcase": "JavaScript", + "scope": "source.js", + "path": ".", + "file-types": ["js", "mjs", "cjs", "jsx"] + } + ], + "metadata": { + "version": "0.25.0-cbm.1", + "license": "MIT", + "description": "cbm fork of tree-sitter-javascript @ 58404d8 (JSX lone-ampersand fix)" + } +} diff --git a/tools/tree-sitter-tsx/define-grammar.js b/tools/tree-sitter-tsx/define-grammar.js new file mode 100644 index 000000000..32304c340 --- /dev/null +++ b/tools/tree-sitter-tsx/define-grammar.js @@ -0,0 +1,1149 @@ +const JavaScript = require('./javascript-grammar'); + +module.exports = function defineGrammar(dialect) { + return grammar(JavaScript, { + name: dialect, + + externals: ($, previous) => previous.concat([ + $._function_signature_automatic_semicolon, + $.__error_recovery, + ]), + + supertypes: ($, previous) => previous.concat([ + $.type, + $.primary_type, + ]), + + precedences: ($, previous) => previous.concat([ + [ + 'call', + 'instantiation', + 'unary', + 'binary', + $.await_expression, + $.arrow_function, + ], + [ + 'extends', + 'instantiation', + ], + [ + $.intersection_type, + $.union_type, + $.conditional_type, + $.function_type, + 'binary', + $.type_predicate, + $.readonly_type, + ], + [$.mapped_type_clause, $.primary_expression], + [$.accessibility_modifier, $.primary_expression], + ['unary_void', $.expression], + [$.extends_clause, $.primary_expression], + ['unary', 'assign'], + ['declaration', $.expression], + [$.predefined_type, $.unary_expression], + [$.type, $.flow_maybe_type], + [$.tuple_type, $.array_type, $.pattern, $.type], + [$.readonly_type, $.pattern], + [$.readonly_type, $.primary_expression], + [$.type_query, $.subscript_expression, $.expression], + [$.type_query, $._type_query_subscript_expression], + [$.nested_type_identifier, $.generic_type, $.primary_type, $.lookup_type, $.index_type_query, $.type], + [$.as_expression, $.satisfies_expression, $.primary_type], + [$._type_query_member_expression, $.member_expression], + [$.member_expression, $._type_query_member_expression_in_type_annotation], + [$._type_query_member_expression, $.primary_expression], + [$._type_query_subscript_expression, $.subscript_expression], + [$._type_query_subscript_expression, $.primary_expression], + [$._type_query_call_expression, $.primary_expression], + [$._type_query_instantiation_expression, $.primary_expression], + [$.type_query, $.primary_expression], + [$.override_modifier, $.primary_expression], + [$.decorator_call_expression, $.decorator], + [$.literal_type, $.pattern], + [$.predefined_type, $.pattern], + [$.call_expression, $._type_query_call_expression], + [$.call_expression, $._type_query_call_expression_in_type_annotation], + [$.new_expression, $.primary_expression], + [$.meta_property, $.primary_expression], + [$.construct_signature, $._property_name], + ]), + + conflicts: ($, previous) => previous.concat([ + [$.call_expression, $.instantiation_expression, $.binary_expression], + [$.call_expression, $.instantiation_expression, $.binary_expression, $.unary_expression], + [$.call_expression, $.instantiation_expression, $.binary_expression, $.update_expression], + [$.call_expression, $.instantiation_expression, $.binary_expression, $.await_expression], + + // This appears to be necessary to parse a parenthesized class expression + [$.class], + + [$.nested_identifier, $.nested_type_identifier, $.primary_expression], + [$.nested_identifier, $.nested_type_identifier], + + [$._call_signature, $.function_type], + [$._call_signature, $.constructor_type], + + [$.primary_expression, $._parameter_name], + [$.primary_expression, $._parameter_name, $.primary_type], + [$.primary_expression, $.literal_type], + [$.primary_expression, $.literal_type, $.rest_pattern], + [$.primary_expression, $.predefined_type, $.rest_pattern], + [$.primary_expression, $.primary_type], + [$.primary_expression, $.generic_type], + [$.primary_expression, $.predefined_type], + [$.primary_expression, $.pattern, $.primary_type], + [$._parameter_name, $.primary_type], + [$.pattern, $.primary_type], + + [$.optional_tuple_parameter, $.primary_type], + [$.rest_pattern, $.primary_type, $.primary_expression], + + [$.object, $.object_type], + [$.object, $.object_pattern, $.object_type], + [$.object, $.object_pattern, $._property_name], + [$.object_pattern, $.object_type], + [$.object_pattern, $.object_type], + + [$.array, $.tuple_type], + [$.array, $.array_pattern, $.tuple_type], + [$.array_pattern, $.tuple_type], + + [$.template_literal_type, $.template_string], + ]).concat( + dialect === 'typescript' ? [ + [$.primary_type, $.type_parameter], + ] : [ + [$.jsx_opening_element, $.type_parameter], + [$.jsx_namespace_name, $.primary_type], + ], + ), + + inline: ($, previous) => previous + .filter((rule) => ![ + '_formal_parameter', + '_call_signature', + ].includes(rule.name)) + .concat([ + $._type_identifier, + $._jsx_start_opening_element, + ]), + + rules: { + public_field_definition: $ => seq( + repeat(field('decorator', $.decorator)), + optional(choice( + seq('declare', optional($.accessibility_modifier)), + seq($.accessibility_modifier, optional('declare')), + )), + choice( + seq(optional('static'), optional($.override_modifier), optional('readonly')), + seq(optional('abstract'), optional('readonly')), + seq(optional('readonly'), optional('abstract')), + optional('accessor'), + ), + field('name', $._property_name), + optional(choice('?', '!')), + field('type', optional($.type_annotation)), + optional($._initializer), + ), + + // override original catch_clause, add optional type annotation + catch_clause: $ => seq( + 'catch', + optional( + seq( + '(', + field( + 'parameter', + choice($.identifier, $._destructuring_pattern), + ), + optional( + // only types that resolve to 'any' or 'unknown' are supported + // by the language but it's simpler to accept any type here. + field('type', $.type_annotation), + ), + ')', + ), + ), + field('body', $.statement_block), + ), + + call_expression: $ => choice( + prec('call', seq( + field('function', choice($.expression, $.import)), + field('type_arguments', optional($.type_arguments)), + field('arguments', $.arguments), + )), + prec('template_call', seq( + field('function', choice($.primary_expression, $.new_expression)), + field('arguments', $.template_string), + )), + prec('member', seq( + field('function', $.primary_expression), + '?.', + field('type_arguments', optional($.type_arguments)), + field('arguments', $.arguments), + )), + ), + + new_expression: $ => prec.right('new', seq( + 'new', + field('constructor', $.primary_expression), + field('type_arguments', optional($.type_arguments)), + field('arguments', optional($.arguments)), + )), + + assignment_expression: $ => prec.right('assign', seq( + optional('using'), + field('left', choice($.parenthesized_expression, $._lhs_expression)), + '=', + field('right', $.expression), + )), + + _augmented_assignment_lhs: ($, previous) => choice(previous, $.non_null_expression), + + _lhs_expression: ($, previous) => choice(previous, $.non_null_expression), + + primary_expression: ($, previous) => choice( + previous, + $.non_null_expression, + ), + + // If the dialect is regular typescript, we exclude JSX expressions and + // include type assertions. If the dialect is TSX, we do the opposite. + expression: ($, previous) => { + const choices = [ + $.as_expression, + $.satisfies_expression, + $.instantiation_expression, + $.internal_module, + ]; + + if (dialect === 'typescript') { + choices.push($.type_assertion); + choices.push(...previous.members.filter((member) => + member.name !== '_jsx_element', + )); + } else if (dialect === 'tsx') { + choices.push(...previous.members); + } else { + throw new Error(`Unknown dialect ${dialect}`); + } + + return choice(...choices); + }, + + _jsx_start_opening_element: $ => seq( + '<', + optional( + seq( + choice( + field('name', choice( + $._jsx_identifier, + $.jsx_namespace_name, + )), + seq( + field('name', choice( + $.identifier, + alias($.nested_identifier, $.member_expression), + )), + field('type_arguments', optional($.type_arguments)), + ), + ), + repeat(field('attribute', $._jsx_attribute)), + ), + ), + ), + + // This rule is only referenced by expression when the dialect is 'tsx' + jsx_opening_element: $ => prec.dynamic(-1, seq( + $._jsx_start_opening_element, + '>', + )), + + // tsx only. See jsx_opening_element. + jsx_self_closing_element: $ => prec.dynamic(-1, seq( + $._jsx_start_opening_element, + '/>', + )), + + export_specifier: (_, previous) => seq( + optional(choice('type', 'typeof')), + previous, + ), + + _import_identifier: $ => choice($.identifier, alias('type', $.identifier)), + + import_specifier: $ => seq( + optional(choice('type', 'typeof')), + choice( + field('name', $._import_identifier), + seq( + field('name', choice($._module_export_name, alias('type', $.identifier))), + 'as', + field('alias', $._import_identifier), + ), + ), + ), + + import_attribute: $ => seq(choice('with', 'assert'), $.object), + + import_clause: $ => choice( + $.namespace_import, + $.named_imports, + seq( + $._import_identifier, + optional(seq( + ',', + choice( + $.namespace_import, + $.named_imports, + ), + )), + ), + ), + + import_statement: $ => seq( + 'import', + optional(choice('type', 'typeof')), + choice( + seq($.import_clause, $._from_clause), + $.import_require_clause, + field('source', $.string), + ), + optional($.import_attribute), + $._semicolon, + ), + + export_statement: ($, previous) => choice( + previous, + seq( + 'export', + 'type', + $.export_clause, + optional($._from_clause), + $._semicolon, + ), + seq('export', '=', $.expression, $._semicolon), + seq('export', 'as', 'namespace', $.identifier, $._semicolon), + ), + + non_null_expression: $ => prec.left('unary', seq( + $.expression, '!', + )), + + variable_declarator: $ => choice( + seq( + field('name', choice($.identifier, $._destructuring_pattern)), + field('type', optional($.type_annotation)), + optional($._initializer), + ), + prec('declaration', seq( + field('name', $.identifier), + '!', + field('type', $.type_annotation), + )), + ), + + method_signature: $ => seq( + optional($.accessibility_modifier), + optional('static'), + optional($.override_modifier), + optional('readonly'), + optional('async'), + optional(choice('get', 'set', '*')), + field('name', $._property_name), + optional('?'), + $._call_signature, + ), + + abstract_method_signature: $ => seq( + optional($.accessibility_modifier), + 'abstract', + optional($.override_modifier), + optional(choice('get', 'set', '*')), + field('name', $._property_name), + optional('?'), + $._call_signature, + ), + + parenthesized_expression: $ => seq( + '(', + choice( + seq($.expression, field('type', optional($.type_annotation))), + $.sequence_expression, + ), + ')', + ), + + _formal_parameter: $ => choice( + $.required_parameter, + $.optional_parameter, + ), + + function_signature: $ => seq( + optional('async'), + 'function', + field('name', $.identifier), + $._call_signature, + choice($._semicolon, $._function_signature_automatic_semicolon), + ), + + decorator: $ => seq( + '@', + choice( + $.identifier, + alias($.decorator_member_expression, $.member_expression), + alias($.decorator_call_expression, $.call_expression), + alias($.decorator_parenthesized_expression, $.parenthesized_expression), + ), + ), + + decorator_call_expression: $ => prec('call', seq( + field('function', choice( + $.identifier, + alias($.decorator_member_expression, $.member_expression), + )), + optional(field('type_arguments', $.type_arguments)), + field('arguments', $.arguments), + )), + + decorator_parenthesized_expression: $ => seq( + '(', + choice( + $.identifier, + alias($.decorator_member_expression, $.member_expression), + alias($.decorator_call_expression, $.call_expression), + ), + ')', + ), + + class_body: $ => seq( + '{', + repeat(choice( + seq( + repeat(field('decorator', $.decorator)), + $.method_definition, + optional($._semicolon), + ), + // As it happens for functions, the semicolon insertion should not + // happen if a block follows the closing paren, because then it's a + // *definition*, not a declaration. Example: + // public foo() + // { <--- this brace made the method signature become a definition + // } + // The same rule applies for functions and that's why we use + // "_function_signature_automatic_semicolon". + seq($.method_signature, choice($._function_signature_automatic_semicolon, ',')), + $.class_static_block, + seq( + choice( + $.abstract_method_signature, + $.index_signature, + $.method_signature, + $.public_field_definition, + ), + choice($._semicolon, ','), + ), + ';', + )), + '}', + ), + + method_definition: $ => prec.left(seq( + optional($.accessibility_modifier), + optional('static'), + optional($.override_modifier), + optional('readonly'), + optional('async'), + optional(choice('get', 'set', '*')), + field('name', $._property_name), + optional('?'), + $._call_signature, + field('body', $.statement_block), + )), + + declaration: ($, previous) => choice( + previous, + $.function_signature, + $.abstract_class_declaration, + $.module, + prec('declaration', $.internal_module), + $.type_alias_declaration, + $.enum_declaration, + $.interface_declaration, + $.import_alias, + $.ambient_declaration, + ), + + type_assertion: $ => prec.left('unary', seq( + $.type_arguments, + $.expression, + )), + + as_expression: $ => prec.left('binary', seq( + $.expression, + 'as', + choice('const', $.type), + )), + + satisfies_expression: $ => prec.left('binary', seq( + $.expression, + 'satisfies', + $.type, + )), + + instantiation_expression: $ => prec('instantiation', seq( + $.expression, + field('type_arguments', $.type_arguments), + )), + + class_heritage: $ => choice( + seq($.extends_clause, optional($.implements_clause)), + $.implements_clause, + ), + + import_require_clause: $ => seq( + $.identifier, + '=', + 'require', + '(', + field('source', $.string), + ')', + ), + + extends_clause: $ => seq( + 'extends', + commaSep1($._extends_clause_single), + ), + + _extends_clause_single: $ => prec('extends', seq( + field('value', $.expression), + field('type_arguments', optional($.type_arguments)), + )), + + implements_clause: $ => seq( + 'implements', + commaSep1($.type), + ), + + ambient_declaration: $ => seq( + 'declare', + choice( + $.declaration, + seq('global', $.statement_block), + seq('module', '.', alias($.identifier, $.property_identifier), ':', $.type, $._semicolon), + ), + ), + + class: $ => prec('literal', seq( + repeat(field('decorator', $.decorator)), + 'class', + field('name', optional($._type_identifier)), + field('type_parameters', optional($.type_parameters)), + optional($.class_heritage), + field('body', $.class_body), + )), + + abstract_class_declaration: $ => prec('declaration', seq( + repeat(field('decorator', $.decorator)), + 'abstract', + 'class', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + optional($.class_heritage), + field('body', $.class_body), + )), + + class_declaration: $ => prec.left('declaration', seq( + repeat(field('decorator', $.decorator)), + 'class', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + optional($.class_heritage), + field('body', $.class_body), + optional($._automatic_semicolon), + )), + + module: $ => seq( + 'module', + $._module, + ), + + internal_module: $ => seq( + 'namespace', + $._module, + ), + + _module: $ => prec.right(seq( + field('name', choice($.string, $.identifier, $.nested_identifier)), + // On .d.ts files "declare module foo" desugars to "declare module foo {}", + // hence why it is optional here + field('body', optional($.statement_block)), + )), + + import_alias: $ => seq( + 'import', + $.identifier, + '=', + choice($.identifier, $.nested_identifier), + $._semicolon, + ), + + nested_type_identifier: $ => prec('member', seq( + field('module', choice($.identifier, $.nested_identifier)), + '.', + field('name', $._type_identifier), + )), + + interface_declaration: $ => seq( + 'interface', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + optional($.extends_type_clause), + field('body', alias($.object_type, $.interface_body)), + ), + + extends_type_clause: $ => seq( + 'extends', + commaSep1(field('type', choice( + $._type_identifier, + $.nested_type_identifier, + $.generic_type, + ))), + ), + + enum_declaration: $ => seq( + optional('const'), + 'enum', + field('name', $.identifier), + field('body', $.enum_body), + ), + + enum_body: $ => seq( + '{', + optional(seq( + sepBy1(',', choice( + field('name', $._property_name), + $.enum_assignment, + )), + optional(','), + )), + '}', + ), + + enum_assignment: $ => seq( + field('name', $._property_name), + $._initializer, + ), + + type_alias_declaration: $ => seq( + 'type', + field('name', $._type_identifier), + field('type_parameters', optional($.type_parameters)), + '=', + field('value', $.type), + $._semicolon, + ), + + accessibility_modifier: _ => choice( + 'public', + 'private', + 'protected', + ), + + override_modifier: _ => 'override', + + required_parameter: $ => seq( + $._parameter_name, + field('type', optional($.type_annotation)), + optional($._initializer), + ), + + optional_parameter: $ => seq( + $._parameter_name, + '?', + field('type', optional($.type_annotation)), + optional($._initializer), + ), + + _parameter_name: $ => seq( + repeat(field('decorator', $.decorator)), + optional($.accessibility_modifier), + optional($.override_modifier), + optional('readonly'), + field('pattern', choice($.pattern, $.this)), + ), + + omitting_type_annotation: $ => seq('-?:', $.type), + adding_type_annotation: $ => seq('+?:', $.type), + opting_type_annotation: $ => seq('?:', $.type), + type_annotation: $ => seq( + ':', + $.type, + ), + + // Oh boy + // The issue is these special type queries need a lower relative precedence than the normal ones, + // since these are used in type annotations whereas the other ones are used where `typeof` is + // required beforehand. This allows for parsing of annotations such as + // foo: import('x').y.z; + // but was a nightmare to get working. + _type_query_member_expression_in_type_annotation: $ => seq( + field('object', choice( + $.import, + alias($._type_query_member_expression_in_type_annotation, $.member_expression), + alias($._type_query_call_expression_in_type_annotation, $.call_expression), + )), + '.', + field('property', choice( + $.private_property_identifier, + alias($.identifier, $.property_identifier), + )), + ), + _type_query_call_expression_in_type_annotation: $ => seq( + field('function', choice( + $.import, + alias($._type_query_member_expression_in_type_annotation, $.member_expression), + )), + field('arguments', $.arguments), + ), + + asserts: $ => seq( + 'asserts', + choice($.type_predicate, $.identifier, $.this), + ), + + asserts_annotation: $ => seq( + seq(':', $.asserts), + ), + + type: $ => choice( + $.primary_type, + $.function_type, + $.readonly_type, + $.constructor_type, + $.infer_type, + prec(-1, alias($._type_query_member_expression_in_type_annotation, $.member_expression)), + prec(-1, alias($._type_query_call_expression_in_type_annotation, $.call_expression)), + ), + + tuple_parameter: $ => seq( + field('name', choice($.identifier, $.rest_pattern)), + field('type', $.type_annotation), + ), + + optional_tuple_parameter: $ => seq( + field('name', $.identifier), + '?', + field('type', $.type_annotation), + ), + + optional_type: $ => seq($.type, '?'), + rest_type: $ => seq('...', $.type), + + _tuple_type_member: $ => choice( + alias($.tuple_parameter, $.required_parameter), + alias($.optional_tuple_parameter, $.optional_parameter), + $.optional_type, + $.rest_type, + $.type, + ), + + constructor_type: $ => prec.left(seq( + optional('abstract'), + 'new', + field('type_parameters', optional($.type_parameters)), + field('parameters', $.formal_parameters), + '=>', + field('type', $.type), + )), + + primary_type: $ => choice( + $.parenthesized_type, + $.predefined_type, + $._type_identifier, + $.nested_type_identifier, + $.generic_type, + $.object_type, + $.array_type, + $.tuple_type, + $.flow_maybe_type, + $.type_query, + $.index_type_query, + alias($.this, $.this_type), + $.existential_type, + $.literal_type, + $.lookup_type, + $.conditional_type, + $.template_literal_type, + $.intersection_type, + $.union_type, + 'const', + ), + + template_type: $ => seq('${', choice($.primary_type, $.infer_type), '}'), + + template_literal_type: $ => seq( + '`', + repeat(choice( + alias($._template_chars, $.string_fragment), + $.template_type, + )), + '`', + ), + + infer_type: $ => prec.right(seq( + 'infer', + $._type_identifier, + optional(seq( + 'extends', + $.type, + )), + )), + + conditional_type: $ => prec.right(seq( + field('left', $.type), + 'extends', + field('right', $.type), + '?', + field('consequence', $.type), + ':', + field('alternative', $.type), + )), + + generic_type: $ => prec('call', seq( + field('name', choice( + $._type_identifier, + $.nested_type_identifier, + )), + field('type_arguments', $.type_arguments), + )), + + type_predicate: $ => seq( + field('name', choice( + $.identifier, + $.this, + // Sometimes tree-sitter contextual lexing is not good enough to know + // that 'object' in ':object is foo' is really an identifier and not + // a predefined_type, so we must explicitely list all possibilities. + // TODO: should we use '_reserved_identifier'? Should all the element in + // 'predefined_type' be added to '_reserved_identifier'? + alias($.predefined_type, $.identifier), + )), + 'is', + field('type', $.type), + ), + + type_predicate_annotation: $ => seq( + seq(':', $.type_predicate), + ), + + // Type query expressions are more restrictive than regular expressions + _type_query_member_expression: $ => seq( + field('object', choice( + $.identifier, + $.this, + alias($._type_query_subscript_expression, $.subscript_expression), + alias($._type_query_member_expression, $.member_expression), + alias($._type_query_call_expression, $.call_expression), + )), + choice('.', '?.'), + field('property', choice( + $.private_property_identifier, + alias($.identifier, $.property_identifier), + )), + ), + _type_query_subscript_expression: $ => seq( + field('object', choice( + $.identifier, + $.this, + alias($._type_query_subscript_expression, $.subscript_expression), + alias($._type_query_member_expression, $.member_expression), + alias($._type_query_call_expression, $.call_expression), + )), + optional('?.'), + '[', field('index', choice($.predefined_type, $.string, $.number)), ']', + ), + _type_query_call_expression: $ => seq( + field('function', choice( + $.import, + $.identifier, + alias($._type_query_member_expression, $.member_expression), + alias($._type_query_subscript_expression, $.subscript_expression), + )), + field('arguments', $.arguments), + ), + _type_query_instantiation_expression: $ => seq( + field('function', choice( + $.import, + $.identifier, + alias($._type_query_member_expression, $.member_expression), + alias($._type_query_subscript_expression, $.subscript_expression), + )), + field('type_arguments', $.type_arguments), + ), + type_query: $ => prec.right(seq( + 'typeof', + choice( + alias($._type_query_subscript_expression, $.subscript_expression), + alias($._type_query_member_expression, $.member_expression), + alias($._type_query_call_expression, $.call_expression), + alias($._type_query_instantiation_expression, $.instantiation_expression), + $.identifier, + $.this, + ), + )), + + index_type_query: $ => seq( + 'keyof', + $.primary_type, + ), + + lookup_type: $ => seq( + $.primary_type, + '[', + $.type, + ']', + ), + + mapped_type_clause: $ => seq( + field('name', $._type_identifier), + 'in', + field('type', $.type), + optional(seq('as', field('alias', $.type))), + ), + + literal_type: $ => choice( + alias($._number, $.unary_expression), + $.number, + $.string, + $.true, + $.false, + $.null, + $.undefined, + ), + + _number: $ => prec.left(1, seq( + field('operator', choice('-', '+')), + field('argument', $.number), + )), + + existential_type: _ => '*', + + flow_maybe_type: $ => prec.right(seq('?', $.primary_type)), + + parenthesized_type: $ => seq('(', $.type, ')'), + + predefined_type: _ => choice( + 'any', + 'number', + 'boolean', + 'string', + 'symbol', + alias(seq('unique', 'symbol'), 'unique symbol'), + 'void', + 'unknown', + 'string', + 'never', + 'object', + ), + + type_arguments: $ => seq( + '<', + commaSep1($.type), + optional(','), + '>', + ), + + object_type: $ => seq( + choice('{', '{|'), + optional(seq( + optional(choice(',', ';')), + sepBy1( + choice(',', $._semicolon), + choice( + $.export_statement, + $.property_signature, + $.call_signature, + $.construct_signature, + $.index_signature, + $.method_signature, + ), + ), + optional(choice(',', $._semicolon)), + )), + choice('}', '|}'), + ), + + call_signature: $ => $._call_signature, + + property_signature: $ => seq( + optional($.accessibility_modifier), + optional('static'), + optional($.override_modifier), + optional('readonly'), + field('name', $._property_name), + optional('?'), + field('type', optional($.type_annotation)), + ), + + _call_signature: $ => seq( + field('type_parameters', optional($.type_parameters)), + field('parameters', $.formal_parameters), + field('return_type', optional( + choice($.type_annotation, $.asserts_annotation, $.type_predicate_annotation), + )), + ), + + type_parameters: $ => seq( + '<', commaSep1($.type_parameter), optional(','), '>', + ), + + type_parameter: $ => seq( + optional('const'), + field('name', $._type_identifier), + field('constraint', optional($.constraint)), + field('value', optional($.default_type)), + ), + + default_type: $ => seq( + '=', + $.type, + ), + + constraint: $ => seq( + choice('extends', ':'), + $.type, + ), + + construct_signature: $ => seq( + optional('abstract'), + 'new', + field('type_parameters', optional($.type_parameters)), + field('parameters', $.formal_parameters), + field('type', optional($.type_annotation)), + ), + + index_signature: $ => seq( + optional( + seq( + field('sign', optional(choice('-', '+'))), + 'readonly', + ), + ), + '[', + choice( + seq( + field('name', choice( + $.identifier, + alias($._reserved_identifier, $.identifier), + )), + ':', + field('index_type', $.type), + ), + $.mapped_type_clause, + ), + ']', + field('type', choice( + $.type_annotation, + $.omitting_type_annotation, + $.adding_type_annotation, + $.opting_type_annotation, + )), + ), + + array_type: $ => seq($.primary_type, '[', ']'), + tuple_type: $ => seq( + '[', commaSep($._tuple_type_member), optional(','), ']', + ), + readonly_type: $ => seq('readonly', $.type), + + union_type: $ => prec.left(seq(optional($.type), '|', $.type)), + intersection_type: $ => prec.left(seq(optional($.type), '&', $.type)), + + function_type: $ => prec.left(seq( + field('type_parameters', optional($.type_parameters)), + field('parameters', $.formal_parameters), + '=>', + field('return_type', choice($.type, $.asserts, $.type_predicate)), + )), + + _type_identifier: $ => alias($.identifier, $.type_identifier), + + _reserved_identifier: (_, previous) => choice( + 'declare', + 'namespace', + 'type', + 'public', + 'private', + 'protected', + 'override', + 'readonly', + 'module', + 'any', + 'number', + 'boolean', + 'string', + 'symbol', + 'export', + 'object', + 'new', + 'readonly', + previous, + ), + }, + }); +}; + +/** + * Creates a rule to match one or more of the rules separated by a comma + * + * @param {RuleOrLiteral} rule + * + * @return {SeqRule} + * + */ +function commaSep1(rule) { + return sepBy1(',', rule); +} + +/** + * Creates a rule to optionally match one or more of the rules separated by a comma + * + * @param {RuleOrLiteral} rule + * + * @return {SeqRule} + * + */ +function commaSep(rule) { + return sepBy(',', rule); +} + +/** + * Creates a rule to optionally match one or more of the rules separated by a separator + * + * @param {RuleOrLiteral} sep + * + * @param {RuleOrLiteral} rule + * + * @return {ChoiceRule} + */ +function sepBy(sep, rule) { + return optional(sepBy1(sep, rule)); +} + +/** + * Creates a rule to match one or more of the rules separated by a separator + * + * @param {RuleOrLiteral} sep + * + * @param {RuleOrLiteral} rule + * + * @return {SeqRule} + */ +function sepBy1(sep, rule) { + return seq(rule, repeat(seq(sep, rule))); +} diff --git a/tools/tree-sitter-tsx/grammar.js b/tools/tree-sitter-tsx/grammar.js new file mode 100644 index 000000000..f0be37670 --- /dev/null +++ b/tools/tree-sitter-tsx/grammar.js @@ -0,0 +1,39 @@ +/* + * cbm self-maintained fork of tree-sitter-typescript's `tsx` dialect + * (JSX lone-ampersand fix, #1736) + * + * Copyright (c) 2017 Max Brunsfeld (tree-sitter-typescript, MIT) + * Copyright (c) 2014 Max Brunsfeld (tree-sitter-javascript base, MIT) + * Copyright (c) 2026 DeusData (the "cbm fork (#1736)" hunks in + * javascript-grammar.js) + * + * The VENDORED parser ships upstream's MIT LICENSE byte-identical; our copyright + * for the patch lives here, with the source, and in THIRD_PARTY.md. + * + * Fork provenance (pinned; the same commits our vendored typescript/arkts use): + * tree-sitter/tree-sitter-typescript @ 75b3874edb2dc714fb1fd77a32013d0f8699989f (v0.23.2) + * tsx/grammar.js -> this file (require path made local) + * common/define-grammar.js -> ./define-grammar.js (only the + * tree-sitter-javascript require made local) + * common/scanner.h -> src/_common_scanner.h (byte-identical) + * tsx/src/scanner.c -> src/scanner.c (include path made local) + * tree-sitter/tree-sitter-javascript @ 3a837b6f3658ca3618f2022f8707e29739c91364 + * (v0.23.1, the version tree-sitter-typescript v0.23.2's package-lock pins) + * grammar.js -> ./javascript-grammar.js = upstream + + * ../tree-sitter-javascript/patches/jsx-lone-ampersand.patch + * + * Only the patch changes the grammar: without it this directory regenerates the + * upstream tsx parser (identical state/symbol counts and node types). + * + * Regenerate (ABI 15 -- the vendored runtime ceiling; NEVER use a CLI >= 0.26, + * which emits ABI 16): + * cd tools/tree-sitter-tsx + * npx tree-sitter-cli@0.25.10 generate + * npx tree-sitter-cli@0.25.10 test + * cp src/parser.c ../../internal/cbm/vendored/grammars/tsx/parser.c + * cp src/tree_sitter/*.h ../../internal/cbm/vendored/grammars/tsx/tree_sitter/ + */ + +const defineGrammar = require('./define-grammar'); + +module.exports = defineGrammar('tsx'); diff --git a/tools/tree-sitter-tsx/javascript-grammar.js b/tools/tree-sitter-tsx/javascript-grammar.js new file mode 100644 index 000000000..3dccdf845 --- /dev/null +++ b/tools/tree-sitter-tsx/javascript-grammar.js @@ -0,0 +1,1264 @@ +/** + * @file JavaScript grammar for tree-sitter + * @author Max Brunsfeld + * @author Amaan Qureshi + * @license MIT + */ + +/// +// @ts-check + +module.exports = grammar({ + name: 'javascript', + + externals: $ => [ + $._automatic_semicolon, + $._template_chars, + $._ternary_qmark, + $.html_comment, + '||', + // We use escape sequence and regex pattern to tell the scanner if we're currently inside a string or template string, in which case + // it should NOT parse html comments. + $.escape_sequence, + $.regex_pattern, + $.jsx_text, + ], + + extras: $ => [ + $.comment, + $.html_comment, + /[\s\p{Zs}\uFEFF\u2028\u2029\u2060\u200B]/, + ], + + supertypes: $ => [ + $.statement, + $.declaration, + $.expression, + $.primary_expression, + $.pattern, + ], + + inline: $ => [ + $._call_signature, + $._formal_parameter, + $._expressions, + $._semicolon, + $._identifier, + $._reserved_identifier, + $._jsx_attribute, + $._jsx_element_name, + $._jsx_child, + $._jsx_element, + $._jsx_attribute_name, + $._jsx_attribute_value, + $._jsx_identifier, + $._lhs_expression, + ], + + precedences: $ => [ + [ + 'member', + 'template_call', + 'call', + $.update_expression, + 'unary_void', + 'binary_exp', + 'binary_times', + 'binary_plus', + 'binary_shift', + 'binary_compare', + 'binary_relation', + 'binary_equality', + 'bitwise_and', + 'bitwise_xor', + 'bitwise_or', + 'logical_and', + 'logical_or', + 'ternary', + $.sequence_expression, + $.arrow_function, + ], + ['assign', $.primary_expression], + ['member', 'template_call', 'new', 'call', $.expression], + ['declaration', 'literal'], + [$.primary_expression, $.statement_block, 'object'], + [$.meta_property, $.import], + [$.import_statement, $.import], + [$.export_statement, $.primary_expression], + [$.lexical_declaration, $.primary_expression], + ], + + conflicts: $ => [ + [$.primary_expression, $._property_name], + [$.primary_expression, $._property_name, $.arrow_function], + [$.primary_expression, $.arrow_function], + [$.primary_expression, $.method_definition], + [$.primary_expression, $.rest_pattern], + [$.primary_expression, $.pattern], + [$.primary_expression, $._for_header], + [$.variable_declarator, $._for_header], + [$.array, $.array_pattern], + [$.object, $.object_pattern], + [$.assignment_expression, $.pattern], + [$.assignment_expression, $.object_assignment_pattern], + [$.labeled_statement, $._property_name], + [$.computed_property_name, $.array], + [$.binary_expression, $._initializer], + [$.class_static_block, $._property_name], + ], + + word: $ => $.identifier, + + rules: { + program: $ => seq( + optional($.hash_bang_line), + repeat($.statement), + ), + + hash_bang_line: _ => /#!.*/, + + // + // Export declarations + // + + export_statement: $ => choice( + seq( + 'export', + choice( + seq('*', $._from_clause), + seq($.namespace_export, $._from_clause), + seq($.export_clause, $._from_clause), + $.export_clause, + ), + $._semicolon, + ), + seq( + repeat(field('decorator', $.decorator)), + 'export', + choice( + field('declaration', $.declaration), + seq( + 'default', + choice( + field('declaration', $.declaration), + seq( + field('value', $.expression), + $._semicolon, + ), + ), + ), + ), + ), + ), + + namespace_export: $ => seq( + '*', 'as', $._module_export_name, + ), + + export_clause: $ => seq( + '{', + commaSep($.export_specifier), + optional(','), + '}', + ), + + export_specifier: $ => seq( + field('name', $._module_export_name), + optional(seq( + 'as', + field('alias', $._module_export_name), + )), + ), + + _module_export_name: $ => choice( + $.identifier, + $.string, + ), + + declaration: $ => choice( + $.function_declaration, + $.generator_function_declaration, + $.class_declaration, + $.lexical_declaration, + $.variable_declaration, + ), + + // + // Import declarations + // + + import: _ => token('import'), + + import_statement: $ => seq( + 'import', + choice( + seq($.import_clause, $._from_clause), + field('source', $.string), + ), + optional($.import_attribute), + $._semicolon, + ), + + import_clause: $ => choice( + $.namespace_import, + $.named_imports, + seq( + $.identifier, + optional(seq( + ',', + choice( + $.namespace_import, + $.named_imports, + ), + )), + ), + ), + + _from_clause: $ => seq( + 'from', field('source', $.string), + ), + + namespace_import: $ => seq( + '*', 'as', $.identifier, + ), + + named_imports: $ => seq( + '{', + commaSep($.import_specifier), + optional(','), + '}', + ), + + import_specifier: $ => choice( + field('name', $.identifier), + seq( + field('name', $._module_export_name), + 'as', + field('alias', $.identifier), + ), + ), + + import_attribute: $ => seq('with', $.object), + + // + // Statements + // + + statement: $ => choice( + $.export_statement, + $.import_statement, + $.debugger_statement, + $.expression_statement, + $.declaration, + $.statement_block, + + $.if_statement, + $.switch_statement, + $.for_statement, + $.for_in_statement, + $.while_statement, + $.do_statement, + $.try_statement, + $.with_statement, + + $.break_statement, + $.continue_statement, + $.return_statement, + $.throw_statement, + $.empty_statement, + $.labeled_statement, + ), + + expression_statement: $ => seq( + $._expressions, + $._semicolon, + ), + + variable_declaration: $ => seq( + 'var', + commaSep1($.variable_declarator), + $._semicolon, + ), + + lexical_declaration: $ => seq( + field('kind', choice('let', 'const')), + commaSep1($.variable_declarator), + $._semicolon, + ), + + variable_declarator: $ => seq( + field('name', choice($.identifier, $._destructuring_pattern)), + optional($._initializer), + ), + + statement_block: $ => prec.right(seq( + '{', + repeat($.statement), + '}', + optional($._automatic_semicolon), + )), + + else_clause: $ => seq('else', $.statement), + + if_statement: $ => prec.right(seq( + 'if', + field('condition', $.parenthesized_expression), + field('consequence', $.statement), + optional(field('alternative', $.else_clause)), + )), + + switch_statement: $ => seq( + 'switch', + field('value', $.parenthesized_expression), + field('body', $.switch_body), + ), + + for_statement: $ => seq( + 'for', + '(', + choice( + field('initializer', choice($.lexical_declaration, $.variable_declaration)), + seq(field('initializer', $._expressions), ';'), + field('initializer', $.empty_statement), + ), + field('condition', choice( + seq($._expressions, ';'), + $.empty_statement, + )), + field('increment', optional($._expressions)), + ')', + field('body', $.statement), + ), + + for_in_statement: $ => seq( + 'for', + optional('await'), + $._for_header, + field('body', $.statement), + ), + + _for_header: $ => seq( + '(', + choice( + field('left', choice( + $._lhs_expression, + $.parenthesized_expression, + )), + seq( + field('kind', 'var'), + field('left', choice( + $.identifier, + $._destructuring_pattern, + )), + optional($._initializer), + ), + seq( + field('kind', choice('let', 'const')), + field('left', choice( + $.identifier, + $._destructuring_pattern, + )), + optional($._automatic_semicolon), + ), + ), + field('operator', choice('in', 'of')), + field('right', $._expressions), + ')', + ), + + while_statement: $ => seq( + 'while', + field('condition', $.parenthesized_expression), + field('body', $.statement), + ), + + do_statement: $ => prec.right(seq( + 'do', + field('body', $.statement), + 'while', + field('condition', $.parenthesized_expression), + optional($._semicolon), + )), + + try_statement: $ => seq( + 'try', + field('body', $.statement_block), + optional(field('handler', $.catch_clause)), + optional(field('finalizer', $.finally_clause)), + ), + + with_statement: $ => seq( + 'with', + field('object', $.parenthesized_expression), + field('body', $.statement), + ), + + break_statement: $ => seq( + 'break', + field('label', optional(alias($.identifier, $.statement_identifier))), + $._semicolon, + ), + + continue_statement: $ => seq( + 'continue', + field('label', optional(alias($.identifier, $.statement_identifier))), + $._semicolon, + ), + + debugger_statement: $ => seq( + 'debugger', + $._semicolon, + ), + + return_statement: $ => seq( + 'return', + optional($._expressions), + $._semicolon, + ), + + throw_statement: $ => seq( + 'throw', + $._expressions, + $._semicolon, + ), + + empty_statement: _ => ';', + + labeled_statement: $ => prec.dynamic(-1, seq( + field('label', alias(choice($.identifier, $._reserved_identifier), $.statement_identifier)), + ':', + field('body', $.statement), + )), + + // + // Statement components + // + + switch_body: $ => seq( + '{', + repeat(choice($.switch_case, $.switch_default)), + '}', + ), + + switch_case: $ => seq( + 'case', + field('value', $._expressions), + ':', + field('body', repeat($.statement)), + ), + + switch_default: $ => seq( + 'default', + ':', + field('body', repeat($.statement)), + ), + + catch_clause: $ => seq( + 'catch', + optional(seq('(', field('parameter', choice($.identifier, $._destructuring_pattern)), ')')), + field('body', $.statement_block), + ), + + finally_clause: $ => seq( + 'finally', + field('body', $.statement_block), + ), + + parenthesized_expression: $ => seq( + '(', + $._expressions, + ')', + ), + + // + // Expressions + // + _expressions: $ => choice( + $.expression, + $.sequence_expression, + ), + + expression: $ => choice( + $.primary_expression, + $._jsx_element, + $.assignment_expression, + $.augmented_assignment_expression, + $.await_expression, + $.unary_expression, + $.binary_expression, + $.ternary_expression, + $.update_expression, + $.new_expression, + $.yield_expression, + ), + + primary_expression: $ => choice( + $.subscript_expression, + $.member_expression, + $.parenthesized_expression, + $._identifier, + alias($._reserved_identifier, $.identifier), + $.this, + $.super, + $.number, + $.string, + $.template_string, + $.regex, + $.true, + $.false, + $.null, + $.object, + $.array, + $.function_expression, + $.arrow_function, + $.generator_function, + $.class, + $.meta_property, + $.call_expression, + ), + + yield_expression: $ => prec.right(seq( + 'yield', + choice( + seq('*', $.expression), + optional($.expression), + ))), + + object: $ => prec('object', seq( + '{', + commaSep(optional(choice( + $.pair, + $.spread_element, + $.method_definition, + alias( + choice($.identifier, $._reserved_identifier), + $.shorthand_property_identifier, + ), + ))), + '}', + )), + + object_pattern: $ => prec('object', seq( + '{', + commaSep(optional(choice( + $.pair_pattern, + $.rest_pattern, + $.object_assignment_pattern, + alias( + choice($.identifier, $._reserved_identifier), + $.shorthand_property_identifier_pattern, + ), + ))), + '}', + )), + + assignment_pattern: $ => seq( + field('left', $.pattern), + '=', + field('right', $.expression), + ), + + object_assignment_pattern: $ => seq( + field('left', choice( + alias(choice($._reserved_identifier, $.identifier), $.shorthand_property_identifier_pattern), + $._destructuring_pattern, + )), + '=', + field('right', $.expression), + ), + + array: $ => seq( + '[', + commaSep(optional(choice( + $.expression, + $.spread_element, + ))), + ']', + ), + + array_pattern: $ => seq( + '[', + commaSep(optional(choice( + $.pattern, + $.assignment_pattern, + ))), + ']', + ), + + _jsx_element: $ => choice($.jsx_element, $.jsx_self_closing_element), + + jsx_element: $ => seq( + field('open_tag', $.jsx_opening_element), + repeat($._jsx_child), + field('close_tag', $.jsx_closing_element), + ), + + // An entity can be named, numeric (decimal), or numeric (hexadecimal). The + // longest entity name is 29 characters long, and the HTML spec says that + // no more will ever be added. + html_character_reference: _ => /&(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30});/, + + jsx_expression: $ => seq( + '{', + optional(choice( + $.expression, + $.sequence_expression, + $.spread_element, + )), + '}', + ), + + _jsx_child: $ => choice( + $.jsx_text, + $.html_character_reference, + // cbm fork (#1736): a lone '&' that does not start a complete + // html_character_reference is plain text, as in HTML/React. + alias($._jsx_lone_ampersand, $.jsx_text), + $._jsx_element, + $.jsx_expression, + ), + + jsx_opening_element: $ => prec.dynamic(-1, seq( + '<', + optional(seq( + field('name', $._jsx_element_name), + repeat(field('attribute', $._jsx_attribute)), + )), + '>', + )), + + jsx_identifier: _ => /[a-zA-Z_$][a-zA-Z\d_$]*-[a-zA-Z\d_$\-]*/, + + _jsx_identifier: $ => choice( + alias($.jsx_identifier, $.identifier), + $.identifier, + ), + + nested_identifier: $ => prec('member', seq( + field('object', choice($.identifier, alias($.nested_identifier, $.member_expression))), + '.', + field('property', alias($.identifier, $.property_identifier)), + )), + + jsx_namespace_name: $ => seq($._jsx_identifier, ':', $._jsx_identifier), + + _jsx_element_name: $ => choice( + $._jsx_identifier, + alias($.nested_identifier, $.member_expression), + $.jsx_namespace_name, + ), + + jsx_closing_element: $ => seq( + '', + ), + + jsx_self_closing_element: $ => seq( + '<', + field('name', $._jsx_element_name), + repeat(field('attribute', $._jsx_attribute)), + '/>', + ), + + _jsx_attribute: $ => choice($.jsx_attribute, $.jsx_expression), + + _jsx_attribute_name: $ => choice(alias($._jsx_identifier, $.property_identifier), $.jsx_namespace_name), + + jsx_attribute: $ => seq( + $._jsx_attribute_name, + optional(seq( + '=', + $._jsx_attribute_value, + )), + ), + + _jsx_string: $ => choice( + seq( + '"', + repeat(choice( + alias($.unescaped_double_jsx_string_fragment, $.string_fragment), + $.html_character_reference, + alias($._jsx_string_lone_ampersand, $.string_fragment), // cbm fork (#1736) + )), + '"', + ), + seq( + '\'', + repeat(choice( + alias($.unescaped_single_jsx_string_fragment, $.string_fragment), + $.html_character_reference, + alias($._jsx_string_lone_ampersand, $.string_fragment), // cbm fork (#1736) + )), + '\'', + ), + ), + + // Workaround to https://github.com/tree-sitter/tree-sitter/issues/1156 + // We give names to the token() constructs containing a regexp + // so as to obtain a node in the CST. + // + // cbm fork (#1736): '&' directly before the closing quote is excluded so the + // fragment cannot run past the end of the string (upstream: &[^#A-Za-z]). + unescaped_double_jsx_string_fragment: _ => token.immediate(prec(1, /([^"&]|&[^#A-Za-z"])+/)), + + // same here + unescaped_single_jsx_string_fragment: _ => token.immediate(prec(1, /([^'&]|&[^#A-Za-z'])+/)), + + // cbm fork (#1736): a lone '&' that does not begin a complete + // html_character_reference (`?a=1&b=2`, `Tom &Jerry`). Precedence -1 keeps + // html_character_reference (precedence 0) winning for `&` / `&`; the + // lexer falls back to this one-character token only when no reference + // matches. Upstream leaves `&` + letter/`#` unmatched, producing an ERROR. + _jsx_lone_ampersand: _ => token(prec(-1, '&')), + _jsx_string_lone_ampersand: _ => token.immediate(prec(-1, '&')), + + _jsx_attribute_value: $ => choice( + alias($._jsx_string, $.string), + $.jsx_expression, + $._jsx_element, + ), + + class: $ => prec('literal', seq( + repeat(field('decorator', $.decorator)), + 'class', + field('name', optional($.identifier)), + optional($.class_heritage), + field('body', $.class_body), + )), + + class_declaration: $ => prec('declaration', seq( + repeat(field('decorator', $.decorator)), + 'class', + field('name', $.identifier), + optional($.class_heritage), + field('body', $.class_body), + optional($._automatic_semicolon), + )), + + class_heritage: $ => seq('extends', $.expression), + + function_expression: $ => prec('literal', seq( + optional('async'), + 'function', + field('name', optional($.identifier)), + $._call_signature, + field('body', $.statement_block), + )), + + function_declaration: $ => prec.right('declaration', seq( + optional('async'), + 'function', + field('name', $.identifier), + $._call_signature, + field('body', $.statement_block), + optional($._automatic_semicolon), + )), + + generator_function: $ => prec('literal', seq( + optional('async'), + 'function', + '*', + field('name', optional($.identifier)), + $._call_signature, + field('body', $.statement_block), + )), + + generator_function_declaration: $ => prec.right('declaration', seq( + optional('async'), + 'function', + '*', + field('name', $.identifier), + $._call_signature, + field('body', $.statement_block), + optional($._automatic_semicolon), + )), + + arrow_function: $ => seq( + optional('async'), + choice( + field('parameter', choice( + alias($._reserved_identifier, $.identifier), + $.identifier, + )), + $._call_signature, + ), + '=>', + field('body', choice( + $.expression, + $.statement_block, + )), + ), + + // Override + _call_signature: $ => field('parameters', $.formal_parameters), + _formal_parameter: $ => choice($.pattern, $.assignment_pattern), + + optional_chain: _ => '?.', + + call_expression: $ => choice( + prec('call', seq( + field('function', choice($.expression, $.import)), + field('arguments', $.arguments), + )), + prec('template_call', seq( + field('function', choice($.primary_expression, $.new_expression)), + field('arguments', $.template_string), + )), + prec('member', seq( + field('function', $.primary_expression), + field('optional_chain', $.optional_chain), + field('arguments', $.arguments), + )), + ), + + new_expression: $ => prec.right('new', seq( + 'new', + field('constructor', choice($.primary_expression, $.new_expression)), + field('arguments', optional(prec.dynamic(1, $.arguments))), + )), + + await_expression: $ => prec('unary_void', seq( + 'await', + $.expression, + )), + + member_expression: $ => prec('member', seq( + field('object', choice($.expression, $.primary_expression, $.import)), + choice('.', field('optional_chain', $.optional_chain)), + field('property', choice( + $.private_property_identifier, + alias($.identifier, $.property_identifier))), + )), + + subscript_expression: $ => prec.right('member', seq( + field('object', choice($.expression, $.primary_expression)), + optional(field('optional_chain', $.optional_chain)), + '[', field('index', $._expressions), ']', + )), + + _lhs_expression: $ => choice( + $.member_expression, + $.subscript_expression, + $._identifier, + alias($._reserved_identifier, $.identifier), + $._destructuring_pattern, + ), + + assignment_expression: $ => prec.right('assign', seq( + field('left', choice($.parenthesized_expression, $._lhs_expression)), + '=', + field('right', $.expression), + )), + + _augmented_assignment_lhs: $ => choice( + $.member_expression, + $.subscript_expression, + alias($._reserved_identifier, $.identifier), + $.identifier, + $.parenthesized_expression, + ), + + augmented_assignment_expression: $ => prec.right('assign', seq( + field('left', $._augmented_assignment_lhs), + field('operator', choice('+=', '-=', '*=', '/=', '%=', '^=', '&=', '|=', '>>=', '>>>=', + '<<=', '**=', '&&=', '||=', '??=')), + field('right', $.expression), + )), + + _initializer: $ => seq( + '=', + field('value', $.expression), + ), + + _destructuring_pattern: $ => choice( + $.object_pattern, + $.array_pattern, + ), + + spread_element: $ => seq('...', $.expression), + + ternary_expression: $ => prec.right('ternary', seq( + field('condition', $.expression), + alias($._ternary_qmark, '?'), + field('consequence', $.expression), + ':', + field('alternative', $.expression), + )), + + binary_expression: $ => choice( + ...[ + ['&&', 'logical_and'], + ['||', 'logical_or'], + ['>>', 'binary_shift'], + ['>>>', 'binary_shift'], + ['<<', 'binary_shift'], + ['&', 'bitwise_and'], + ['^', 'bitwise_xor'], + ['|', 'bitwise_or'], + ['+', 'binary_plus'], + ['-', 'binary_plus'], + ['*', 'binary_times'], + ['/', 'binary_times'], + ['%', 'binary_times'], + ['**', 'binary_exp', 'right'], + ['<', 'binary_relation'], + ['<=', 'binary_relation'], + ['==', 'binary_equality'], + ['===', 'binary_equality'], + ['!=', 'binary_equality'], + ['!==', 'binary_equality'], + ['>=', 'binary_relation'], + ['>', 'binary_relation'], + ['??', 'ternary'], + ['instanceof', 'binary_relation'], + ['in', 'binary_relation'], + ].map(([operator, precedence, associativity]) => + (associativity === 'right' ? prec.right : prec.left)(precedence, seq( + field('left', operator === 'in' ? choice($.expression, $.private_property_identifier) : $.expression), + field('operator', operator), + field('right', $.expression), + )), + ), + ), + + unary_expression: $ => prec.left('unary_void', seq( + field('operator', choice('!', '~', '-', '+', 'typeof', 'void', 'delete')), + field('argument', $.expression), + )), + + update_expression: $ => prec.left(choice( + seq( + field('argument', $.expression), + field('operator', choice('++', '--')), + ), + seq( + field('operator', choice('++', '--')), + field('argument', $.expression), + ), + )), + + sequence_expression: $ => prec.right(commaSep1($.expression)), + + // + // Primitives + // + + string: $ => choice( + seq( + '"', + repeat(choice( + alias($.unescaped_double_string_fragment, $.string_fragment), + $.escape_sequence, + )), + '"', + ), + seq( + '\'', + repeat(choice( + alias($.unescaped_single_string_fragment, $.string_fragment), + $.escape_sequence, + )), + '\'', + ), + ), + + // Workaround to https://github.com/tree-sitter/tree-sitter/issues/1156 + // We give names to the token() constructs containing a regexp + // so as to obtain a node in the CST. + // + unescaped_double_string_fragment: _ => token.immediate(prec(1, /[^"\\\r\n]+/)), + + // same here + unescaped_single_string_fragment: _ => token.immediate(prec(1, /[^'\\\r\n]+/)), + + escape_sequence: _ => token.immediate(seq( + '\\', + choice( + /[^xu0-7]/, + /[0-7]{1,3}/, + /x[0-9a-fA-F]{2}/, + /u[0-9a-fA-F]{4}/, + /u\{[0-9a-fA-F]+\}/, + /[\r?][\n\u2028\u2029]/, + ), + )), + + // http://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 + comment: _ => token(choice( + seq('//', /[^\r\n\u2028\u2029]*/), + seq( + '/*', + /[^*]*\*+([^/*][^*]*\*+)*/, + '/', + ), + )), + + template_string: $ => seq( + '`', + repeat(choice( + alias($._template_chars, $.string_fragment), + $.escape_sequence, + $.template_substitution, + )), + '`', + ), + + template_substitution: $ => seq( + '${', + $._expressions, + '}', + ), + + regex: $ => seq( + '/', + field('pattern', $.regex_pattern), + token.immediate(prec(1, '/')), + optional(field('flags', $.regex_flags)), + ), + + regex_pattern: _ => token.immediate(prec(-1, + repeat1(choice( + seq( + '[', + repeat(choice( + seq('\\', /./), // escaped character + /[^\]\n\\]/, // any character besides ']' or '\n' + )), + ']', + ), // square-bracket-delimited character class + seq('\\', /./), // escaped character + /[^/\\\[\n]/, // any character besides '[', '\', '/', '\n' + )), + )), + + regex_flags: _ => token.immediate(/[a-z]+/), + + number: _ => { + const hexLiteral = seq( + choice('0x', '0X'), + /[\da-fA-F](_?[\da-fA-F])*/, + ); + + const decimalDigits = /\d(_?\d)*/; + const signedInteger = seq(optional(choice('-', '+')), decimalDigits); + const exponentPart = seq(choice('e', 'E'), signedInteger); + + const binaryLiteral = seq(choice('0b', '0B'), /[0-1](_?[0-1])*/); + + const octalLiteral = seq(choice('0o', '0O'), /[0-7](_?[0-7])*/); + + const bigintLiteral = seq(choice(hexLiteral, binaryLiteral, octalLiteral, decimalDigits), 'n'); + + const decimalIntegerLiteral = choice( + '0', + seq(optional('0'), /[1-9]/, optional(seq(optional('_'), decimalDigits))), + ); + + const decimalLiteral = choice( + seq(decimalIntegerLiteral, '.', optional(decimalDigits), optional(exponentPart)), + seq('.', decimalDigits, optional(exponentPart)), + seq(decimalIntegerLiteral, exponentPart), + decimalDigits, + ); + + return token(choice( + hexLiteral, + decimalLiteral, + binaryLiteral, + octalLiteral, + bigintLiteral, + )); + }, + + // 'undefined' is syntactically a regular identifier in JavaScript. + // However, its main use is as the read-only global variable whose + // value is [undefined], for which there's no literal representation + // unlike 'null'. We gave it its own rule so it's easy to + // highlight in text editors and other applications. + _identifier: $ => choice( + $.undefined, + $.identifier, + ), + + identifier: _ => { + const alpha = /[^\x00-\x1F\s\p{Zs}0-9:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + + const alphanumeric = /[^\x00-\x1F\s\p{Zs}:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + return token(seq(alpha, repeat(alphanumeric))); + }, + + private_property_identifier: _ => { + const alpha = /[^\x00-\x1F\s\p{Zs}0-9:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + + const alphanumeric = /[^\x00-\x1F\s\p{Zs}:;`"'@#.,|^&<=>+\-*/\\%?!~()\[\]{}\uFEFF\u2060\u200B\u2028\u2029]|\\u[0-9a-fA-F]{4}|\\u\{[0-9a-fA-F]+\}/; + return token(seq('#', alpha, repeat(alphanumeric))); + }, + + meta_property: _ => choice(seq('new', '.', 'target'), seq('import', '.', 'meta')), + + this: _ => 'this', + super: _ => 'super', + true: _ => 'true', + false: _ => 'false', + null: _ => 'null', + undefined: _ => 'undefined', + + // + // Expression components + // + + arguments: $ => seq( + '(', + commaSep(optional(choice($.expression, $.spread_element))), + ')', + ), + + decorator: $ => seq( + '@', + choice( + $.identifier, + alias($.decorator_member_expression, $.member_expression), + alias($.decorator_call_expression, $.call_expression), + ), + ), + + decorator_member_expression: $ => prec('member', seq( + field('object', choice( + $.identifier, + alias($.decorator_member_expression, $.member_expression), + )), + '.', + field('property', alias($.identifier, $.property_identifier)), + )), + + decorator_call_expression: $ => prec('call', seq( + field('function', choice( + $.identifier, + alias($.decorator_member_expression, $.member_expression), + )), + field('arguments', $.arguments), + )), + + class_body: $ => seq( + '{', + repeat(choice( + seq(field('member', $.method_definition), optional(';')), + seq(field('member', $.field_definition), $._semicolon), + field('member', $.class_static_block), + ';', + )), + '}', + ), + + field_definition: $ => seq( + repeat(field('decorator', $.decorator)), + optional('static'), + field('property', $._property_name), + optional($._initializer), + ), + + formal_parameters: $ => seq( + '(', + optional(seq( + commaSep1($._formal_parameter), + optional(','), + )), + ')', + ), + + class_static_block: $ => seq( + 'static', + optional($._automatic_semicolon), + field('body', $.statement_block), + ), + + // This negative dynamic precedence ensures that during error recovery, + // unfinished constructs are generally treated as literal expressions, + // not patterns. + pattern: $ => prec.dynamic(-1, choice( + $._lhs_expression, + $.rest_pattern, + )), + + rest_pattern: $ => prec.right(seq( + '...', + $._lhs_expression, + )), + + method_definition: $ => seq( + repeat(field('decorator', $.decorator)), + optional(choice( + 'static', + alias(token(seq('static', /\s+/, 'get', /\s*\n/)), 'static get'), + )), + optional('async'), + optional(choice('get', 'set', '*')), + field('name', $._property_name), + field('parameters', $.formal_parameters), + field('body', $.statement_block), + ), + + pair: $ => seq( + field('key', $._property_name), + ':', + field('value', $.expression), + ), + + pair_pattern: $ => seq( + field('key', $._property_name), + ':', + field('value', choice($.pattern, $.assignment_pattern)), + ), + + _property_name: $ => choice( + alias( + choice($.identifier, $._reserved_identifier), + $.property_identifier, + ), + $.private_property_identifier, + $.string, + $.number, + $.computed_property_name, + ), + + computed_property_name: $ => seq( + '[', + $.expression, + ']', + ), + + _reserved_identifier: _ => choice( + 'get', + 'set', + 'async', + 'static', + 'export', + 'let', + ), + + _semicolon: $ => choice($._automatic_semicolon, ';'), + }, +}); + +/** + * Creates a rule to match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @returns {SeqRule} + */ +function commaSep1(rule) { + return seq(rule, repeat(seq(',', rule))); +} + +/** + * Creates a rule to optionally match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @returns {ChoiceRule} + */ +function commaSep(rule) { + return optional(commaSep1(rule)); +} diff --git a/tools/tree-sitter-tsx/package.json b/tools/tree-sitter-tsx/package.json new file mode 100644 index 000000000..cee152ea6 --- /dev/null +++ b/tools/tree-sitter-tsx/package.json @@ -0,0 +1,9 @@ +{ + "name": "tree-sitter-tsx-cbm", + "version": "0.23.2-cbm.1", + "description": "cbm fork of tree-sitter-typescript's tsx dialect @ 75b3874 (JSX lone-ampersand fix, #1736)", + "license": "MIT", + "devDependencies": { + "tree-sitter-cli": "0.25.10" + } +} diff --git a/tools/tree-sitter-tsx/src/_common_scanner.h b/tools/tree-sitter-tsx/src/_common_scanner.h new file mode 100644 index 000000000..23b78b5bc --- /dev/null +++ b/tools/tree-sitter-tsx/src/_common_scanner.h @@ -0,0 +1,347 @@ +#include "tree_sitter/parser.h" + +#include + +enum TokenType { + AUTOMATIC_SEMICOLON, + TEMPLATE_CHARS, + TERNARY_QMARK, + HTML_COMMENT, + LOGICAL_OR, + ESCAPE_SEQUENCE, + REGEX_PATTERN, + JSX_TEXT, + FUNCTION_SIGNATURE_AUTOMATIC_SEMICOLON, + ERROR_RECOVERY, +}; + +static void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +static void skip(TSLexer *lexer) { lexer->advance(lexer, true); } + +static bool scan_template_chars(TSLexer *lexer) { + lexer->result_symbol = TEMPLATE_CHARS; + for (bool has_content = false;; has_content = true) { + lexer->mark_end(lexer); + switch (lexer->lookahead) { + case '`': + return has_content; + case '\0': + return false; + case '$': + advance(lexer); + if (lexer->lookahead == '{') { + return has_content; + } + break; + case '\\': + return has_content; + default: + advance(lexer); + } + } +} + +static bool scan_whitespace_and_comments(TSLexer *lexer, bool *scanned_comment) { + for (;;) { + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + + if (lexer->lookahead == '/') { + skip(lexer); + + if (lexer->lookahead == '/') { + skip(lexer); + while (lexer->lookahead != 0 && lexer->lookahead != '\n') { + skip(lexer); + } + *scanned_comment = true; + } else if (lexer->lookahead == '*') { + skip(lexer); + while (lexer->lookahead != 0) { + if (lexer->lookahead == '*') { + skip(lexer); + if (lexer->lookahead == '/') { + skip(lexer); + break; + } + } else { + skip(lexer); + } + } + } else { + return false; + } + } else { + return true; + } + } +} + +static bool scan_automatic_semicolon(TSLexer *lexer, const bool *valid_symbols, bool *scanned_comment) { + lexer->result_symbol = AUTOMATIC_SEMICOLON; + lexer->mark_end(lexer); + + for (;;) { + if (lexer->lookahead == 0) { + return true; + } + if (lexer->lookahead == '}') { + // Automatic semicolon insertion breaks detection of object patterns + // in a typed context: + // type F = ({a}: {a: number}) => number; + // Therefore, disable automatic semicolons when followed by typing + do { + skip(lexer); + } while (iswspace(lexer->lookahead)); + if (lexer->lookahead == ':') { + return valid_symbols[LOGICAL_OR]; // Don't return false if we're in a ternary by checking if || is valid + } + return true; + } + if (!iswspace(lexer->lookahead)) { + return false; + } + if (lexer->lookahead == '\n') { + break; + } + skip(lexer); + } + + skip(lexer); + + if (!scan_whitespace_and_comments(lexer, scanned_comment)) { + return false; + } + + switch (lexer->lookahead) { + case '`': + case ',': + case '.': + case ';': + case '*': + case '%': + case '>': + case '<': + case '=': + case '?': + case '^': + case '|': + case '&': + case '/': + case ':': + return false; + + case '{': + if (valid_symbols[FUNCTION_SIGNATURE_AUTOMATIC_SEMICOLON]) { + return false; + } + break; + + // Don't insert a semicolon before a '[' or '(', unless we're parsing + // a type. Detect whether we're parsing a type or an expression using + // the validity of a binary operator token. + case '(': + case '[': + if (valid_symbols[LOGICAL_OR]) { + return false; + } + break; + + // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. + case '+': + skip(lexer); + return lexer->lookahead == '+'; + case '-': + skip(lexer); + return lexer->lookahead == '-'; + + // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. + case '!': + skip(lexer); + return lexer->lookahead != '='; + + // Don't insert a semicolon before `in` or `instanceof`, but do insert one + // before an identifier. + case 'i': + skip(lexer); + + if (lexer->lookahead != 'n') { + return true; + } + skip(lexer); + + if (!iswalpha(lexer->lookahead)) { + return false; + } + + for (unsigned i = 0; i < 8; i++) { + if (lexer->lookahead != "stanceof"[i]) { + return true; + } + skip(lexer); + } + + if (!iswalpha(lexer->lookahead)) { + return false; + } + break; + } + + return true; +} + +static bool scan_ternary_qmark(TSLexer *lexer) { + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + skip(lexer); + } + + if (lexer->lookahead == '?') { + advance(lexer); + + /* Optional chaining. */ + if (lexer->lookahead == '?' || lexer->lookahead == '.') { + return false; + } + + lexer->mark_end(lexer); + lexer->result_symbol = TERNARY_QMARK; + + /* TypeScript optional arguments contain the ?: sequence, possibly + with whitespace. */ + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + advance(lexer); + } + + if (lexer->lookahead == ':' || lexer->lookahead == ')' || lexer->lookahead == ',') { + return false; + } + + if (lexer->lookahead == '.') { + advance(lexer); + if (iswdigit(lexer->lookahead)) { + return true; + } + return false; + } + return true; + } + return false; +} + +static bool scan_closing_comment(TSLexer *lexer) { + while (iswspace(lexer->lookahead) || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + skip(lexer); + } + + const char *comment_start = ""; + + if (lexer->lookahead == '<') { + for (unsigned i = 0; i < 4; i++) { + if (lexer->lookahead != comment_start[i]) { + return false; + } + advance(lexer); + } + } else if (lexer->lookahead == '-') { + for (unsigned i = 0; i < 3; i++) { + if (lexer->lookahead != comment_end[i]) { + return false; + } + advance(lexer); + } + } else { + return false; + } + + while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && + lexer->lookahead != 0x2029) { + advance(lexer); + } + + lexer->result_symbol = HTML_COMMENT; + lexer->mark_end(lexer); + + return true; +} + +static bool scan_jsx_text(TSLexer *lexer) { + // saw_text will be true if we see any non-whitespace content, or any whitespace content that is not a newline and + // does not immediately follow a newline. + bool saw_text = false; + // at_newline will be true if we are currently at a newline, or if we are at whitespace that is not a newline but + // immediately follows a newline. + bool at_newline = false; + + while (lexer->lookahead != 0 && lexer->lookahead != '<' && lexer->lookahead != '>' && lexer->lookahead != '{' && + lexer->lookahead != '}' && lexer->lookahead != '&') { + bool is_wspace = iswspace(lexer->lookahead); + if (lexer->lookahead == '\n') { + at_newline = true; + } else { + // If at_newline is already true, and we see some whitespace, then it must stay true. + // Otherwise, it should be false. + // + // See the table below to determine the logic for computing `saw_text`. + // + // |------------------------------------| + // | at_newline | is_wspace | saw_text | + // |------------|-----------|-----------| + // | false (0) | false (0) | true (1) | + // | false (0) | true (1) | true (1) | + // | true (1) | false (0) | true (1) | + // | true (1) | true (1) | false (0) | + // |------------------------------------| + + at_newline &= is_wspace; + if (!at_newline) { + saw_text = true; + } + } + + advance(lexer); + } + + lexer->result_symbol = JSX_TEXT; + return saw_text; +} + +static inline bool external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[TEMPLATE_CHARS]) { + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + return false; + } + return scan_template_chars(lexer); + } + + if (valid_symbols[JSX_TEXT] && scan_jsx_text(lexer)) { + return true; + } + + if (valid_symbols[AUTOMATIC_SEMICOLON] || valid_symbols[FUNCTION_SIGNATURE_AUTOMATIC_SEMICOLON]) { + bool scanned_comment = false; + bool ret = scan_automatic_semicolon(lexer, valid_symbols, &scanned_comment); + if (!ret && !scanned_comment && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') { + return scan_ternary_qmark(lexer); + } + return ret; + } + if (valid_symbols[TERNARY_QMARK]) { + return scan_ternary_qmark(lexer); + } + + if (valid_symbols[HTML_COMMENT] && !valid_symbols[LOGICAL_OR] && !valid_symbols[ESCAPE_SEQUENCE] && + !valid_symbols[REGEX_PATTERN]) { + return scan_closing_comment(lexer); + } + + return false; +} diff --git a/tools/tree-sitter-tsx/src/grammar.json b/tools/tree-sitter-tsx/src/grammar.json new file mode 100644 index 000000000..2912dc04a --- /dev/null +++ b/tools/tree-sitter-tsx/src/grammar.json @@ -0,0 +1,12024 @@ +{ + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", + "name": "tsx", + "inherits": "javascript", + "word": "identifier", + "rules": { + "program": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hash_bang_line" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "hash_bang_line": { + "type": "PATTERN", + "value": "#!.*" + }, + "export_statement": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "export" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "SYMBOL", + "name": "_from_clause" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_export" + }, + { + "type": "SYMBOL", + "name": "_from_clause" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "export_clause" + }, + { + "type": "SYMBOL", + "name": "_from_clause" + } + ] + }, + { + "type": "SYMBOL", + "name": "export_clause" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "STRING", + "value": "export" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "declaration", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "default" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "declaration", + "content": { + "type": "SYMBOL", + "name": "declaration" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "export" + }, + { + "type": "STRING", + "value": "type" + }, + { + "type": "SYMBOL", + "name": "export_clause" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_from_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "export" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "export" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "STRING", + "value": "namespace" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + }, + "namespace_export": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "SYMBOL", + "name": "_module_export_name" + } + ] + }, + "export_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "export_specifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "export_specifier" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "export_specifier": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "STRING", + "value": "typeof" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_module_export_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "_module_export_name" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + "_module_export_name": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string" + } + ] + }, + "declaration": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_declaration" + }, + { + "type": "SYMBOL", + "name": "generator_function_declaration" + }, + { + "type": "SYMBOL", + "name": "class_declaration" + }, + { + "type": "SYMBOL", + "name": "lexical_declaration" + }, + { + "type": "SYMBOL", + "name": "variable_declaration" + } + ] + }, + { + "type": "SYMBOL", + "name": "function_signature" + }, + { + "type": "SYMBOL", + "name": "abstract_class_declaration" + }, + { + "type": "SYMBOL", + "name": "module" + }, + { + "type": "PREC", + "value": "declaration", + "content": { + "type": "SYMBOL", + "name": "internal_module" + } + }, + { + "type": "SYMBOL", + "name": "type_alias_declaration" + }, + { + "type": "SYMBOL", + "name": "enum_declaration" + }, + { + "type": "SYMBOL", + "name": "interface_declaration" + }, + { + "type": "SYMBOL", + "name": "import_alias" + }, + { + "type": "SYMBOL", + "name": "ambient_declaration" + } + ] + }, + "import": { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "import" + } + }, + "import_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "import" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "STRING", + "value": "typeof" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "import_clause" + }, + { + "type": "SYMBOL", + "name": "_from_clause" + } + ] + }, + { + "type": "SYMBOL", + "name": "import_require_clause" + }, + { + "type": "FIELD", + "name": "source", + "content": { + "type": "SYMBOL", + "name": "string" + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "import_attribute" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "import_clause": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_import" + }, + { + "type": "SYMBOL", + "name": "named_imports" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_import_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "namespace_import" + }, + { + "type": "SYMBOL", + "name": "named_imports" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + "_from_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "from" + }, + { + "type": "FIELD", + "name": "source", + "content": { + "type": "SYMBOL", + "name": "string" + } + } + ] + }, + "namespace_import": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "named_imports": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "import_specifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "import_specifier" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "import_specifier": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "STRING", + "value": "typeof" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_import_identifier" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_module_export_name" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "type" + }, + "named": true, + "value": "identifier" + } + ] + } + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "_import_identifier" + } + } + ] + } + ] + } + ] + }, + "import_attribute": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "with" + }, + { + "type": "STRING", + "value": "assert" + } + ] + }, + { + "type": "SYMBOL", + "name": "object" + } + ] + }, + "statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "export_statement" + }, + { + "type": "SYMBOL", + "name": "import_statement" + }, + { + "type": "SYMBOL", + "name": "debugger_statement" + }, + { + "type": "SYMBOL", + "name": "expression_statement" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "statement_block" + }, + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "switch_statement" + }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "for_in_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "do_statement" + }, + { + "type": "SYMBOL", + "name": "try_statement" + }, + { + "type": "SYMBOL", + "name": "with_statement" + }, + { + "type": "SYMBOL", + "name": "break_statement" + }, + { + "type": "SYMBOL", + "name": "continue_statement" + }, + { + "type": "SYMBOL", + "name": "return_statement" + }, + { + "type": "SYMBOL", + "name": "throw_statement" + }, + { + "type": "SYMBOL", + "name": "empty_statement" + }, + { + "type": "SYMBOL", + "name": "labeled_statement" + } + ] + }, + "expression_statement": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "variable_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "var" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_declarator" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "variable_declarator" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "lexical_declaration": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "kind", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "STRING", + "value": "const" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_declarator" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "variable_declarator" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "variable_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_annotation" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_initializer" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "PREC", + "value": "declaration", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_annotation" + } + } + ] + } + } + ] + }, + "statement_block": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "SYMBOL", + "name": "statement" + } + ] + }, + "if_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "switch_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "switch" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "switch_body" + } + } + ] + }, + "for_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lexical_declaration" + }, + { + "type": "SYMBOL", + "name": "variable_declaration" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "SYMBOL", + "name": "empty_statement" + } + } + ] + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "SYMBOL", + "name": "empty_statement" + } + ] + } + }, + { + "type": "FIELD", + "name": "increment", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "for_in_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "await" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_for_header" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "_for_header": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_lhs_expression" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "kind", + "content": { + "type": "STRING", + "value": "var" + } + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_initializer" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "kind", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "STRING", + "value": "const" + } + ] + } + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "of" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "while_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "do_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "try_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "try" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "handler", + "content": { + "type": "SYMBOL", + "name": "catch_clause" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "finalizer", + "content": { + "type": "SYMBOL", + "name": "finally_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "with_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "with" + }, + { + "type": "FIELD", + "name": "object", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + }, + "break_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "break" + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "statement_identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "continue_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "continue" + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "statement_identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "debugger_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "debugger" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "return_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "throw_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "throw" + }, + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "empty_statement": { + "type": "STRING", + "value": ";" + }, + "labeled_statement": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "label", + "content": { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "statement_identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + ] + } + }, + "switch_body": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "switch_case" + }, + { + "type": "SYMBOL", + "name": "switch_default" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "switch_case": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "case" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + } + ] + }, + "switch_default": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "statement" + } + } + } + ] + }, + "catch_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "catch" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "parameter", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_annotation" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + }, + "finally_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "finally" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + }, + "parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_annotation" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "sequence_expression" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_expressions": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "sequence_expression" + } + ] + }, + "expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "as_expression" + }, + { + "type": "SYMBOL", + "name": "satisfies_expression" + }, + { + "type": "SYMBOL", + "name": "instantiation_expression" + }, + { + "type": "SYMBOL", + "name": "internal_module" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "_jsx_element" + }, + { + "type": "SYMBOL", + "name": "assignment_expression" + }, + { + "type": "SYMBOL", + "name": "augmented_assignment_expression" + }, + { + "type": "SYMBOL", + "name": "await_expression" + }, + { + "type": "SYMBOL", + "name": "unary_expression" + }, + { + "type": "SYMBOL", + "name": "binary_expression" + }, + { + "type": "SYMBOL", + "name": "ternary_expression" + }, + { + "type": "SYMBOL", + "name": "update_expression" + }, + { + "type": "SYMBOL", + "name": "new_expression" + }, + { + "type": "SYMBOL", + "name": "yield_expression" + } + ] + }, + "primary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "member_expression" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "this" + }, + { + "type": "SYMBOL", + "name": "super" + }, + { + "type": "SYMBOL", + "name": "number" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "template_string" + }, + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "null" + }, + { + "type": "SYMBOL", + "name": "object" + }, + { + "type": "SYMBOL", + "name": "array" + }, + { + "type": "SYMBOL", + "name": "function_expression" + }, + { + "type": "SYMBOL", + "name": "arrow_function" + }, + { + "type": "SYMBOL", + "name": "generator_function" + }, + { + "type": "SYMBOL", + "name": "class" + }, + { + "type": "SYMBOL", + "name": "meta_property" + }, + { + "type": "SYMBOL", + "name": "call_expression" + } + ] + }, + { + "type": "SYMBOL", + "name": "non_null_expression" + } + ] + }, + "yield_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "yield" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + }, + "object": { + "type": "PREC", + "value": "object", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "SYMBOL", + "name": "spread_element" + }, + { + "type": "SYMBOL", + "name": "method_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "shorthand_property_identifier" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "SYMBOL", + "name": "spread_element" + }, + { + "type": "SYMBOL", + "name": "method_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "shorthand_property_identifier" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + "object_pattern": { + "type": "PREC", + "value": "object", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair_pattern" + }, + { + "type": "SYMBOL", + "name": "rest_pattern" + }, + { + "type": "SYMBOL", + "name": "object_assignment_pattern" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "shorthand_property_identifier_pattern" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair_pattern" + }, + { + "type": "SYMBOL", + "name": "rest_pattern" + }, + { + "type": "SYMBOL", + "name": "object_assignment_pattern" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "shorthand_property_identifier_pattern" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + } + }, + "assignment_pattern": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "pattern" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "object_assignment_pattern": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "named": true, + "value": "shorthand_property_identifier_pattern" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "array": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "spread_element" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "spread_element" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "array_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "SYMBOL", + "name": "assignment_pattern" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "SYMBOL", + "name": "assignment_pattern" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_jsx_element": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "jsx_element" + }, + { + "type": "SYMBOL", + "name": "jsx_self_closing_element" + } + ] + }, + "jsx_element": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "open_tag", + "content": { + "type": "SYMBOL", + "name": "jsx_opening_element" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_jsx_child" + } + }, + { + "type": "FIELD", + "name": "close_tag", + "content": { + "type": "SYMBOL", + "name": "jsx_closing_element" + } + } + ] + }, + "html_character_reference": { + "type": "PATTERN", + "value": "&(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30});" + }, + "jsx_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "sequence_expression" + }, + { + "type": "SYMBOL", + "name": "spread_element" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_jsx_child": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "jsx_text" + }, + { + "type": "SYMBOL", + "name": "html_character_reference" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_lone_ampersand" + }, + "named": true, + "value": "jsx_text" + }, + { + "type": "SYMBOL", + "name": "_jsx_element" + }, + { + "type": "SYMBOL", + "name": "jsx_expression" + } + ] + }, + "jsx_opening_element": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_start_opening_element" + }, + { + "type": "STRING", + "value": ">" + } + ] + } + }, + "jsx_identifier": { + "type": "PATTERN", + "value": "[a-zA-Z_$][a-zA-Z\\d_$]*-[a-zA-Z\\d_$\\-]*" + }, + "_jsx_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "jsx_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "nested_identifier": { + "type": "PREC", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "property", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + } + } + ] + } + }, + "jsx_namespace_name": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_jsx_identifier" + } + ] + }, + "_jsx_element_name": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "SYMBOL", + "name": "jsx_namespace_name" + } + ] + }, + "jsx_closing_element": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "" + } + ] + }, + "jsx_self_closing_element": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_start_opening_element" + }, + { + "type": "STRING", + "value": "/>" + } + ] + } + }, + "_jsx_attribute": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "jsx_attribute" + }, + { + "type": "SYMBOL", + "name": "jsx_expression" + } + ] + }, + "_jsx_attribute_name": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_identifier" + }, + "named": true, + "value": "property_identifier" + }, + { + "type": "SYMBOL", + "name": "jsx_namespace_name" + } + ] + }, + "jsx_attribute": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_attribute_name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_jsx_attribute_value" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_jsx_string": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_double_jsx_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "html_character_reference" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_string_lone_ampersand" + }, + "named": true, + "value": "string_fragment" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_single_jsx_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "html_character_reference" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_string_lone_ampersand" + }, + "named": true, + "value": "string_fragment" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + } + ] + }, + "unescaped_double_jsx_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "([^\"&]|&[^#A-Za-z\"])+" + } + } + }, + "unescaped_single_jsx_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "([^'&]|&[^#A-Za-z'])+" + } + } + }, + "_jsx_lone_ampersand": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "STRING", + "value": "&" + } + } + }, + "_jsx_string_lone_ampersand": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "STRING", + "value": "&" + } + } + }, + "_jsx_attribute_value": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_string" + }, + "named": true, + "value": "string" + }, + { + "type": "SYMBOL", + "name": "jsx_expression" + }, + { + "type": "SYMBOL", + "name": "_jsx_element" + } + ] + }, + "class": { + "type": "PREC", + "value": "literal", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_heritage" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "class_body" + } + } + ] + } + }, + "class_declaration": { + "type": "PREC_LEFT", + "value": "declaration", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_heritage" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "class_body" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "class_heritage": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "extends_clause" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "implements_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "implements_clause" + } + ] + }, + "function_expression": { + "type": "PREC", + "value": "literal", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + } + }, + "function_declaration": { + "type": "PREC_RIGHT", + "value": "declaration", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "generator_function": { + "type": "PREC", + "value": "literal", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + } + }, + "generator_function_declaration": { + "type": "PREC_RIGHT", + "value": "declaration", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "arrow_function": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "parameter", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + } + ] + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "statement_block" + } + ] + } + } + ] + }, + "_call_signature": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "formal_parameters" + } + }, + { + "type": "FIELD", + "name": "return_type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_annotation" + }, + { + "type": "SYMBOL", + "name": "asserts_annotation" + }, + { + "type": "SYMBOL", + "name": "type_predicate_annotation" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "_formal_parameter": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "required_parameter" + }, + { + "type": "SYMBOL", + "name": "optional_parameter" + } + ] + }, + "optional_chain": { + "type": "STRING", + "value": "?." + }, + "call_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": "call", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "import" + } + ] + } + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + }, + { + "type": "PREC", + "value": "template_call", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "new_expression" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "template_string" + } + } + ] + } + }, + { + "type": "PREC", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "STRING", + "value": "?." + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + } + ] + }, + "new_expression": { + "type": "PREC_RIGHT", + "value": "new", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "FIELD", + "name": "constructor", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "arguments" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "await_expression": { + "type": "PREC", + "value": "unary_void", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "await" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + "member_expression": { + "type": "PREC", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "import" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "optional_chain", + "content": { + "type": "SYMBOL", + "name": "optional_chain" + } + } + ] + }, + { + "type": "FIELD", + "name": "property", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "private_property_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + } + ] + } + } + ] + } + }, + "subscript_expression": { + "type": "PREC_RIGHT", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "optional_chain", + "content": { + "type": "SYMBOL", + "name": "optional_chain" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "index", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "_lhs_expression": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "member_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + }, + { + "type": "SYMBOL", + "name": "non_null_expression" + } + ] + }, + "assignment_expression": { + "type": "PREC_RIGHT", + "value": "assign", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "using" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "_lhs_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "_augmented_assignment_lhs": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "member_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + ] + }, + { + "type": "SYMBOL", + "name": "non_null_expression" + } + ] + }, + "augmented_assignment_expression": { + "type": "PREC_RIGHT", + "value": "assign", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_augmented_assignment_lhs" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": ">>>=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": "**=" + }, + { + "type": "STRING", + "value": "&&=" + }, + { + "type": "STRING", + "value": "||=" + }, + { + "type": "STRING", + "value": "??=" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "_initializer": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "_destructuring_pattern": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "object_pattern" + }, + { + "type": "SYMBOL", + "name": "array_pattern" + } + ] + }, + "spread_element": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "ternary_expression": { + "type": "PREC_RIGHT", + "value": "ternary", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_ternary_qmark" + }, + "named": false, + "value": "?" + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": "logical_and", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "logical_or", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_shift", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_shift", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_shift", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "bitwise_and", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "bitwise_xor", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "bitwise_or", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_plus", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_plus", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_times", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_times", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_times", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": "binary_exp", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "**" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_equality", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_equality", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "===" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_equality", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_equality", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "ternary", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "??" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "instanceof" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": "binary_relation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "private_property_identifier" + } + ] + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "in" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, + "unary_expression": { + "type": "PREC_LEFT", + "value": "unary_void", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "typeof" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "delete" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "update_expression": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + ] + } + }, + "sequence_expression": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + } + }, + "string": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_double_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_single_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + } + ] + }, + "unescaped_double_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\"\\\\\\r\\n]+" + } + } + }, + "unescaped_single_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^'\\\\\\r\\n]+" + } + } + }, + "escape_sequence": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^xu0-7]" + }, + { + "type": "PATTERN", + "value": "[0-7]{1,3}" + }, + { + "type": "PATTERN", + "value": "x[0-9a-fA-F]{2}" + }, + { + "type": "PATTERN", + "value": "u[0-9a-fA-F]{4}" + }, + { + "type": "PATTERN", + "value": "u\\{[0-9a-fA-F]+\\}" + }, + { + "type": "PATTERN", + "value": "[\\r?][\\n\\u2028\\u2029]" + } + ] + } + ] + } + }, + "comment": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": "[^\\r\\n\\u2028\\u2029]*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" + } + ] + } + ] + } + }, + "template_string": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "`" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_template_chars" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "template_substitution" + } + ] + } + }, + { + "type": "STRING", + "value": "`" + } + ] + }, + "template_substitution": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "${" + }, + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "regex": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/" + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "regex_pattern" + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "/" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "flags", + "content": { + "type": "SYMBOL", + "name": "regex_flags" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "regex_pattern": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "PATTERN", + "value": "." + } + ] + }, + { + "type": "PATTERN", + "value": "[^\\]\\n\\\\]" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "PATTERN", + "value": "." + } + ] + }, + { + "type": "PATTERN", + "value": "[^/\\\\\\[\\n]" + } + ] + } + } + } + }, + "regex_flags": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[a-z]+" + } + }, + "number": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "STRING", + "value": "0X" + } + ] + }, + { + "type": "PATTERN", + "value": "[\\da-fA-F](_?[\\da-fA-F])*" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "[1-9]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "e" + }, + { + "type": "STRING", + "value": "E" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "e" + }, + { + "type": "STRING", + "value": "E" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "[1-9]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "e" + }, + { + "type": "STRING", + "value": "E" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + } + ] + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "STRING", + "value": "0B" + } + ] + }, + { + "type": "PATTERN", + "value": "[0-1](_?[0-1])*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0o" + }, + { + "type": "STRING", + "value": "0O" + } + ] + }, + { + "type": "PATTERN", + "value": "[0-7](_?[0-7])*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "STRING", + "value": "0X" + } + ] + }, + { + "type": "PATTERN", + "value": "[\\da-fA-F](_?[\\da-fA-F])*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "STRING", + "value": "0B" + } + ] + }, + { + "type": "PATTERN", + "value": "[0-1](_?[0-1])*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0o" + }, + { + "type": "STRING", + "value": "0O" + } + ] + }, + { + "type": "PATTERN", + "value": "[0-7](_?[0-7])*" + } + ] + }, + { + "type": "PATTERN", + "value": "\\d(_?\\d)*" + } + ] + }, + { + "type": "STRING", + "value": "n" + } + ] + } + ] + } + }, + "_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "undefined" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "identifier": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[^\\x00-\\x1F\\s\\p{Zs}0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\x00-\\x1F\\s\\p{Zs}:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + } + } + ] + } + }, + "private_property_identifier": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "PATTERN", + "value": "[^\\x00-\\x1F\\s\\p{Zs}0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + }, + { + "type": "REPEAT", + "content": { + "type": "PATTERN", + "value": "[^\\x00-\\x1F\\s\\p{Zs}:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + } + } + ] + } + }, + "meta_property": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "target" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "import" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "meta" + } + ] + } + ] + }, + "this": { + "type": "STRING", + "value": "this" + }, + "super": { + "type": "STRING", + "value": "super" + }, + "true": { + "type": "STRING", + "value": "true" + }, + "false": { + "type": "STRING", + "value": "false" + }, + "null": { + "type": "STRING", + "value": "null" + }, + "undefined": { + "type": "STRING", + "value": "undefined" + }, + "arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "spread_element" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "spread_element" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "decorator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_member_expression" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_call_expression" + }, + "named": true, + "value": "call_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_parenthesized_expression" + }, + "named": true, + "value": "parenthesized_expression" + } + ] + } + ] + }, + "decorator_member_expression": { + "type": "PREC", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_member_expression" + }, + "named": true, + "value": "member_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "property", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + } + } + ] + } + }, + "decorator_call_expression": { + "type": "PREC", + "value": "call", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_member_expression" + }, + "named": true, + "value": "member_expression" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + } + }, + "class_body": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "SYMBOL", + "name": "method_definition" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "method_signature" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_function_signature_automatic_semicolon" + }, + { + "type": "STRING", + "value": "," + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "class_static_block" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "abstract_method_signature" + }, + { + "type": "SYMBOL", + "name": "index_signature" + }, + { + "type": "SYMBOL", + "name": "method_signature" + }, + { + "type": "SYMBOL", + "name": "public_field_definition" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semicolon" + }, + { + "type": "STRING", + "value": "," + } + ] + } + ] + }, + { + "type": "STRING", + "value": ";" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "field_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "property", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_initializer" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "formal_parameters": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_formal_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_formal_parameter" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "class_static_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + }, + "pattern": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_lhs_expression" + }, + { + "type": "SYMBOL", + "name": "rest_pattern" + } + ] + } + }, + "rest_pattern": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "SYMBOL", + "name": "_lhs_expression" + } + ] + } + }, + "method_definition": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "accessibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "override_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "get" + }, + { + "type": "STRING", + "value": "set" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_call_signature" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + } + }, + "pair": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "key", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "pair_pattern": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "key", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "SYMBOL", + "name": "assignment_pattern" + } + ] + } + } + ] + }, + "_property_name": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "property_identifier" + }, + { + "type": "SYMBOL", + "name": "private_property_identifier" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "number" + }, + { + "type": "SYMBOL", + "name": "computed_property_name" + } + ] + }, + "computed_property_name": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_reserved_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "declare" + }, + { + "type": "STRING", + "value": "namespace" + }, + { + "type": "STRING", + "value": "type" + }, + { + "type": "STRING", + "value": "public" + }, + { + "type": "STRING", + "value": "private" + }, + { + "type": "STRING", + "value": "protected" + }, + { + "type": "STRING", + "value": "override" + }, + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "STRING", + "value": "module" + }, + { + "type": "STRING", + "value": "any" + }, + { + "type": "STRING", + "value": "number" + }, + { + "type": "STRING", + "value": "boolean" + }, + { + "type": "STRING", + "value": "string" + }, + { + "type": "STRING", + "value": "symbol" + }, + { + "type": "STRING", + "value": "export" + }, + { + "type": "STRING", + "value": "object" + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "get" + }, + { + "type": "STRING", + "value": "set" + }, + { + "type": "STRING", + "value": "async" + }, + { + "type": "STRING", + "value": "static" + }, + { + "type": "STRING", + "value": "export" + }, + { + "type": "STRING", + "value": "let" + } + ] + } + ] + }, + "_semicolon": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + "public_field_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "declare" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "accessibility_modifier" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "accessibility_modifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "declare" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "override_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "abstract" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "abstract" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "accessor" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?" + }, + { + "type": "STRING", + "value": "!" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_annotation" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_initializer" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_jsx_start_opening_element": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_identifier" + }, + { + "type": "SYMBOL", + "name": "jsx_namespace_name" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" + } + ] + } + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "_jsx_attribute" + } + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_import_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "type" + }, + "named": true, + "value": "identifier" + } + ] + }, + "non_null_expression": { + "type": "PREC_LEFT", + "value": "unary", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "!" + } + ] + } + }, + "method_signature": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "accessibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "override_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "get" + }, + { + "type": "STRING", + "value": "set" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_call_signature" + } + ] + }, + "abstract_method_signature": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "accessibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "abstract" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "override_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "get" + }, + { + "type": "STRING", + "value": "set" + }, + { + "type": "STRING", + "value": "*" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_call_signature" + } + ] + }, + "function_signature": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "SYMBOL", + "name": "_call_signature" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semicolon" + }, + { + "type": "SYMBOL", + "name": "_function_signature_automatic_semicolon" + } + ] + } + ] + }, + "decorator_parenthesized_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_member_expression" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "decorator_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "type_assertion": { + "type": "PREC_LEFT", + "value": "unary", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + "as_expression": { + "type": "PREC_LEFT", + "value": "binary", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + } + ] + } + }, + "satisfies_expression": { + "type": "PREC_LEFT", + "value": "binary", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "satisfies" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + } + }, + "instantiation_expression": { + "type": "PREC", + "value": "instantiation", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + } + ] + } + }, + "import_require_clause": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "require" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "source", + "content": { + "type": "SYMBOL", + "name": "string" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "extends_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "extends" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_extends_clause_single" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_extends_clause_single" + } + ] + } + } + ] + } + ] + }, + "_extends_clause_single": { + "type": "PREC", + "value": "extends", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "implements_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "implements" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + } + } + ] + } + ] + }, + "ambient_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "declare" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "global" + }, + { + "type": "SYMBOL", + "name": "statement_block" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "module" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } + ] + } + ] + }, + "abstract_class_declaration": { + "type": "PREC", + "value": "declaration", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "STRING", + "value": "abstract" + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_heritage" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "class_body" + } + } + ] + } + }, + "module": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "module" + }, + { + "type": "SYMBOL", + "name": "_module" + } + ] + }, + "internal_module": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "namespace" + }, + { + "type": "SYMBOL", + "name": "_module" + } + ] + }, + "_module": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "nested_identifier" + } + ] + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "statement_block" + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, + "import_alias": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "import" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "nested_identifier" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "nested_type_identifier": { + "type": "PREC", + "value": "member", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "module", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "nested_identifier" + } + ] + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + } + ] + } + }, + "interface_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "interface" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "extends_type_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "object_type" + }, + "named": true, + "value": "interface_body" + } + } + ] + }, + "extends_type_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "extends" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "nested_type_identifier" + }, + { + "type": "SYMBOL", + "name": "generic_type" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "nested_type_identifier" + }, + { + "type": "SYMBOL", + "name": "generic_type" + } + ] + } + } + ] + } + } + ] + } + ] + }, + "enum_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "enum" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "enum_body" + } + } + ] + }, + "enum_body": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "SYMBOL", + "name": "enum_assignment" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "SYMBOL", + "name": "enum_assignment" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "enum_assignment": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "SYMBOL", + "name": "_initializer" + } + ] + }, + "type_alias_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "type" + } + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + "accessibility_modifier": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "public" + }, + { + "type": "STRING", + "value": "private" + }, + { + "type": "STRING", + "value": "protected" + } + ] + }, + "override_modifier": { + "type": "STRING", + "value": "override" + }, + "required_parameter": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_parameter_name" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_annotation" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_initializer" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "optional_parameter": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_parameter_name" + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_annotation" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_initializer" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_parameter_name": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "accessibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "override_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "SYMBOL", + "name": "this" + } + ] + } + } + ] + }, + "omitting_type_annotation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "-?:" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + "adding_type_annotation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "+?:" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + "opting_type_annotation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "?:" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + "type_annotation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + "_type_query_member_expression_in_type_annotation": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "import" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_member_expression_in_type_annotation" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_call_expression_in_type_annotation" + }, + "named": true, + "value": "call_expression" + } + ] + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "property", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "private_property_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + } + ] + } + } + ] + }, + "_type_query_call_expression_in_type_annotation": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "import" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_member_expression_in_type_annotation" + }, + "named": true, + "value": "member_expression" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + }, + "asserts": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "asserts" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_predicate" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "this" + } + ] + } + ] + }, + "asserts_annotation": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "asserts" + } + ] + } + ] + }, + "type": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_type" + }, + { + "type": "SYMBOL", + "name": "function_type" + }, + { + "type": "SYMBOL", + "name": "readonly_type" + }, + { + "type": "SYMBOL", + "name": "constructor_type" + }, + { + "type": "SYMBOL", + "name": "infer_type" + }, + { + "type": "PREC", + "value": -1, + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_member_expression_in_type_annotation" + }, + "named": true, + "value": "member_expression" + } + }, + { + "type": "PREC", + "value": -1, + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_call_expression_in_type_annotation" + }, + "named": true, + "value": "call_expression" + } + } + ] + }, + "tuple_parameter": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "rest_pattern" + } + ] + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_annotation" + } + } + ] + }, + "optional_tuple_parameter": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_annotation" + } + } + ] + }, + "optional_type": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "STRING", + "value": "?" + } + ] + }, + "rest_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + "_tuple_type_member": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "tuple_parameter" + }, + "named": true, + "value": "required_parameter" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "optional_tuple_parameter" + }, + "named": true, + "value": "optional_parameter" + }, + { + "type": "SYMBOL", + "name": "optional_type" + }, + { + "type": "SYMBOL", + "name": "rest_type" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + "constructor_type": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "abstract" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "formal_parameters" + } + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type" + } + } + ] + } + }, + "primary_type": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "parenthesized_type" + }, + { + "type": "SYMBOL", + "name": "predefined_type" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "nested_type_identifier" + }, + { + "type": "SYMBOL", + "name": "generic_type" + }, + { + "type": "SYMBOL", + "name": "object_type" + }, + { + "type": "SYMBOL", + "name": "array_type" + }, + { + "type": "SYMBOL", + "name": "tuple_type" + }, + { + "type": "SYMBOL", + "name": "flow_maybe_type" + }, + { + "type": "SYMBOL", + "name": "type_query" + }, + { + "type": "SYMBOL", + "name": "index_type_query" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "this" + }, + "named": true, + "value": "this_type" + }, + { + "type": "SYMBOL", + "name": "existential_type" + }, + { + "type": "SYMBOL", + "name": "literal_type" + }, + { + "type": "SYMBOL", + "name": "lookup_type" + }, + { + "type": "SYMBOL", + "name": "conditional_type" + }, + { + "type": "SYMBOL", + "name": "template_literal_type" + }, + { + "type": "SYMBOL", + "name": "intersection_type" + }, + { + "type": "SYMBOL", + "name": "union_type" + }, + { + "type": "STRING", + "value": "const" + } + ] + }, + "template_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "${" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "primary_type" + }, + { + "type": "SYMBOL", + "name": "infer_type" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "template_literal_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "`" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_template_chars" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "template_type" + } + ] + } + }, + { + "type": "STRING", + "value": "`" + } + ] + }, + "infer_type": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "infer" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "extends" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "conditional_type": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "type" + } + }, + { + "type": "STRING", + "value": "extends" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "type" + } + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "type" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "type" + } + } + ] + } + }, + "generic_type": { + "type": "PREC", + "value": "call", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "nested_type_identifier" + } + ] + } + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + } + ] + } + }, + "type_predicate": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "this" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "predefined_type" + }, + "named": true, + "value": "identifier" + } + ] + } + }, + { + "type": "STRING", + "value": "is" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type" + } + } + ] + }, + "type_predicate_annotation": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "type_predicate" + } + ] + } + ] + }, + "_type_query_member_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "this" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_subscript_expression" + }, + "named": true, + "value": "subscript_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_member_expression" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "?." + } + ] + }, + { + "type": "FIELD", + "name": "property", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "private_property_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + } + ] + } + } + ] + }, + "_type_query_subscript_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "this" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_subscript_expression" + }, + "named": true, + "value": "subscript_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_member_expression" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?." + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "index", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "predefined_type" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "number" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_type_query_call_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "import" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_member_expression" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_subscript_expression" + }, + "named": true, + "value": "subscript_expression" + } + ] + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + } + ] + }, + "_type_query_instantiation_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "import" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_member_expression" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_subscript_expression" + }, + "named": true, + "value": "subscript_expression" + } + ] + } + }, + { + "type": "FIELD", + "name": "type_arguments", + "content": { + "type": "SYMBOL", + "name": "type_arguments" + } + } + ] + }, + "type_query": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "typeof" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_subscript_expression" + }, + "named": true, + "value": "subscript_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_member_expression" + }, + "named": true, + "value": "member_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_call_expression" + }, + "named": true, + "value": "call_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_instantiation_expression" + }, + "named": true, + "value": "instantiation_expression" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "this" + } + ] + } + ] + } + }, + "index_type_query": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "keyof" + }, + { + "type": "SYMBOL", + "name": "primary_type" + } + ] + }, + "lookup_type": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "primary_type" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "mapped_type_clause": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "type" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "literal_type": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_number" + }, + "named": true, + "value": "unary_expression" + }, + { + "type": "SYMBOL", + "name": "number" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "null" + }, + { + "type": "SYMBOL", + "name": "undefined" + } + ] + }, + "_number": { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "number" + } + } + ] + } + }, + "existential_type": { + "type": "STRING", + "value": "*" + }, + "flow_maybe_type": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "?" + }, + { + "type": "SYMBOL", + "name": "primary_type" + } + ] + } + }, + "parenthesized_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "predefined_type": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "any" + }, + { + "type": "STRING", + "value": "number" + }, + { + "type": "STRING", + "value": "boolean" + }, + { + "type": "STRING", + "value": "string" + }, + { + "type": "STRING", + "value": "symbol" + }, + { + "type": "ALIAS", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "unique" + }, + { + "type": "STRING", + "value": "symbol" + } + ] + }, + "named": false, + "value": "unique symbol" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "unknown" + }, + { + "type": "STRING", + "value": "string" + }, + { + "type": "STRING", + "value": "never" + }, + { + "type": "STRING", + "value": "object" + } + ] + }, + "type_arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + "object_type": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "{|" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "export_statement" + }, + { + "type": "SYMBOL", + "name": "property_signature" + }, + { + "type": "SYMBOL", + "name": "call_signature" + }, + { + "type": "SYMBOL", + "name": "construct_signature" + }, + { + "type": "SYMBOL", + "name": "index_signature" + }, + { + "type": "SYMBOL", + "name": "method_signature" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "export_statement" + }, + { + "type": "SYMBOL", + "name": "property_signature" + }, + { + "type": "SYMBOL", + "name": "call_signature" + }, + { + "type": "SYMBOL", + "name": "construct_signature" + }, + { + "type": "SYMBOL", + "name": "index_signature" + }, + { + "type": "SYMBOL", + "name": "method_signature" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "}" + }, + { + "type": "STRING", + "value": "|}" + } + ] + } + ] + }, + "call_signature": { + "type": "SYMBOL", + "name": "_call_signature" + }, + "property_signature": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "accessibility_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "override_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_property_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_annotation" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "type_parameters": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_parameter" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + "type_parameter": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "constraint", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "constraint" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "default_type" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "default_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + "constraint": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "extends" + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + "construct_signature": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "abstract" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "formal_parameters" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_annotation" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "index_signature": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "sign", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "readonly" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + } + ] + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "index_type", + "content": { + "type": "SYMBOL", + "name": "type" + } + } + ] + }, + { + "type": "SYMBOL", + "name": "mapped_type_clause" + } + ] + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_annotation" + }, + { + "type": "SYMBOL", + "name": "omitting_type_annotation" + }, + { + "type": "SYMBOL", + "name": "adding_type_annotation" + }, + { + "type": "SYMBOL", + "name": "opting_type_annotation" + } + ] + } + } + ] + }, + "array_type": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "primary_type" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "tuple_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_tuple_type_member" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_tuple_type_member" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "readonly_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + }, + "union_type": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + } + }, + "intersection_type": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "SYMBOL", + "name": "type" + } + ] + } + }, + "function_type": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "formal_parameters" + } + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "FIELD", + "name": "return_type", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "SYMBOL", + "name": "asserts" + }, + { + "type": "SYMBOL", + "name": "type_predicate" + } + ] + } + } + ] + } + }, + "_type_identifier": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "type_identifier" + } + }, + "extras": [ + { + "type": "SYMBOL", + "name": "comment" + }, + { + "type": "SYMBOL", + "name": "html_comment" + }, + { + "type": "PATTERN", + "value": "[\\s\\p{Zs}\\uFEFF\\u2028\\u2029\\u2060\\u200B]" + } + ], + "conflicts": [ + [ + "primary_expression", + "_property_name" + ], + [ + "primary_expression", + "_property_name", + "arrow_function" + ], + [ + "primary_expression", + "arrow_function" + ], + [ + "primary_expression", + "method_definition" + ], + [ + "primary_expression", + "rest_pattern" + ], + [ + "primary_expression", + "pattern" + ], + [ + "primary_expression", + "_for_header" + ], + [ + "variable_declarator", + "_for_header" + ], + [ + "array", + "array_pattern" + ], + [ + "object", + "object_pattern" + ], + [ + "assignment_expression", + "pattern" + ], + [ + "assignment_expression", + "object_assignment_pattern" + ], + [ + "labeled_statement", + "_property_name" + ], + [ + "computed_property_name", + "array" + ], + [ + "binary_expression", + "_initializer" + ], + [ + "class_static_block", + "_property_name" + ], + [ + "call_expression", + "instantiation_expression", + "binary_expression" + ], + [ + "call_expression", + "instantiation_expression", + "binary_expression", + "unary_expression" + ], + [ + "call_expression", + "instantiation_expression", + "binary_expression", + "update_expression" + ], + [ + "call_expression", + "instantiation_expression", + "binary_expression", + "await_expression" + ], + [ + "class" + ], + [ + "nested_identifier", + "nested_type_identifier", + "primary_expression" + ], + [ + "nested_identifier", + "nested_type_identifier" + ], + [ + "_call_signature", + "function_type" + ], + [ + "_call_signature", + "constructor_type" + ], + [ + "primary_expression", + "_parameter_name" + ], + [ + "primary_expression", + "_parameter_name", + "primary_type" + ], + [ + "primary_expression", + "literal_type" + ], + [ + "primary_expression", + "literal_type", + "rest_pattern" + ], + [ + "primary_expression", + "predefined_type", + "rest_pattern" + ], + [ + "primary_expression", + "primary_type" + ], + [ + "primary_expression", + "generic_type" + ], + [ + "primary_expression", + "predefined_type" + ], + [ + "primary_expression", + "pattern", + "primary_type" + ], + [ + "_parameter_name", + "primary_type" + ], + [ + "pattern", + "primary_type" + ], + [ + "optional_tuple_parameter", + "primary_type" + ], + [ + "rest_pattern", + "primary_type", + "primary_expression" + ], + [ + "object", + "object_type" + ], + [ + "object", + "object_pattern", + "object_type" + ], + [ + "object", + "object_pattern", + "_property_name" + ], + [ + "object_pattern", + "object_type" + ], + [ + "object_pattern", + "object_type" + ], + [ + "array", + "tuple_type" + ], + [ + "array", + "array_pattern", + "tuple_type" + ], + [ + "array_pattern", + "tuple_type" + ], + [ + "template_literal_type", + "template_string" + ], + [ + "jsx_opening_element", + "type_parameter" + ], + [ + "jsx_namespace_name", + "primary_type" + ] + ], + "precedences": [ + [ + { + "type": "STRING", + "value": "member" + }, + { + "type": "STRING", + "value": "template_call" + }, + { + "type": "STRING", + "value": "call" + }, + { + "type": "SYMBOL", + "name": "update_expression" + }, + { + "type": "STRING", + "value": "unary_void" + }, + { + "type": "STRING", + "value": "binary_exp" + }, + { + "type": "STRING", + "value": "binary_times" + }, + { + "type": "STRING", + "value": "binary_plus" + }, + { + "type": "STRING", + "value": "binary_shift" + }, + { + "type": "STRING", + "value": "binary_compare" + }, + { + "type": "STRING", + "value": "binary_relation" + }, + { + "type": "STRING", + "value": "binary_equality" + }, + { + "type": "STRING", + "value": "bitwise_and" + }, + { + "type": "STRING", + "value": "bitwise_xor" + }, + { + "type": "STRING", + "value": "bitwise_or" + }, + { + "type": "STRING", + "value": "logical_and" + }, + { + "type": "STRING", + "value": "logical_or" + }, + { + "type": "STRING", + "value": "ternary" + }, + { + "type": "SYMBOL", + "name": "sequence_expression" + }, + { + "type": "SYMBOL", + "name": "arrow_function" + } + ], + [ + { + "type": "STRING", + "value": "assign" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "STRING", + "value": "member" + }, + { + "type": "STRING", + "value": "template_call" + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "call" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ], + [ + { + "type": "STRING", + "value": "declaration" + }, + { + "type": "STRING", + "value": "literal" + } + ], + [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "statement_block" + }, + { + "type": "STRING", + "value": "object" + } + ], + [ + { + "type": "SYMBOL", + "name": "meta_property" + }, + { + "type": "SYMBOL", + "name": "import" + } + ], + [ + { + "type": "SYMBOL", + "name": "import_statement" + }, + { + "type": "SYMBOL", + "name": "import" + } + ], + [ + { + "type": "SYMBOL", + "name": "export_statement" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "lexical_declaration" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "STRING", + "value": "call" + }, + { + "type": "STRING", + "value": "instantiation" + }, + { + "type": "STRING", + "value": "unary" + }, + { + "type": "STRING", + "value": "binary" + }, + { + "type": "SYMBOL", + "name": "await_expression" + }, + { + "type": "SYMBOL", + "name": "arrow_function" + } + ], + [ + { + "type": "STRING", + "value": "extends" + }, + { + "type": "STRING", + "value": "instantiation" + } + ], + [ + { + "type": "SYMBOL", + "name": "intersection_type" + }, + { + "type": "SYMBOL", + "name": "union_type" + }, + { + "type": "SYMBOL", + "name": "conditional_type" + }, + { + "type": "SYMBOL", + "name": "function_type" + }, + { + "type": "STRING", + "value": "binary" + }, + { + "type": "SYMBOL", + "name": "type_predicate" + }, + { + "type": "SYMBOL", + "name": "readonly_type" + } + ], + [ + { + "type": "SYMBOL", + "name": "mapped_type_clause" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "accessibility_modifier" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "STRING", + "value": "unary_void" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "extends_clause" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "STRING", + "value": "unary" + }, + { + "type": "STRING", + "value": "assign" + } + ], + [ + { + "type": "STRING", + "value": "declaration" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "predefined_type" + }, + { + "type": "SYMBOL", + "name": "unary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "type" + }, + { + "type": "SYMBOL", + "name": "flow_maybe_type" + } + ], + [ + { + "type": "SYMBOL", + "name": "tuple_type" + }, + { + "type": "SYMBOL", + "name": "array_type" + }, + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "SYMBOL", + "name": "type" + } + ], + [ + { + "type": "SYMBOL", + "name": "readonly_type" + }, + { + "type": "SYMBOL", + "name": "pattern" + } + ], + [ + { + "type": "SYMBOL", + "name": "readonly_type" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "type_query" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "type_query" + }, + { + "type": "SYMBOL", + "name": "_type_query_subscript_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "nested_type_identifier" + }, + { + "type": "SYMBOL", + "name": "generic_type" + }, + { + "type": "SYMBOL", + "name": "primary_type" + }, + { + "type": "SYMBOL", + "name": "lookup_type" + }, + { + "type": "SYMBOL", + "name": "index_type_query" + }, + { + "type": "SYMBOL", + "name": "type" + } + ], + [ + { + "type": "SYMBOL", + "name": "as_expression" + }, + { + "type": "SYMBOL", + "name": "satisfies_expression" + }, + { + "type": "SYMBOL", + "name": "primary_type" + } + ], + [ + { + "type": "SYMBOL", + "name": "_type_query_member_expression" + }, + { + "type": "SYMBOL", + "name": "member_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "member_expression" + }, + { + "type": "SYMBOL", + "name": "_type_query_member_expression_in_type_annotation" + } + ], + [ + { + "type": "SYMBOL", + "name": "_type_query_member_expression" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "_type_query_subscript_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "_type_query_subscript_expression" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "_type_query_call_expression" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "_type_query_instantiation_expression" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "type_query" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "override_modifier" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "decorator_call_expression" + }, + { + "type": "SYMBOL", + "name": "decorator" + } + ], + [ + { + "type": "SYMBOL", + "name": "literal_type" + }, + { + "type": "SYMBOL", + "name": "pattern" + } + ], + [ + { + "type": "SYMBOL", + "name": "predefined_type" + }, + { + "type": "SYMBOL", + "name": "pattern" + } + ], + [ + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "SYMBOL", + "name": "_type_query_call_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "call_expression" + }, + { + "type": "SYMBOL", + "name": "_type_query_call_expression_in_type_annotation" + } + ], + [ + { + "type": "SYMBOL", + "name": "new_expression" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "meta_property" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], + [ + { + "type": "SYMBOL", + "name": "construct_signature" + }, + { + "type": "SYMBOL", + "name": "_property_name" + } + ] + ], + "externals": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "SYMBOL", + "name": "_template_chars" + }, + { + "type": "SYMBOL", + "name": "_ternary_qmark" + }, + { + "type": "SYMBOL", + "name": "html_comment" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "regex_pattern" + }, + { + "type": "SYMBOL", + "name": "jsx_text" + }, + { + "type": "SYMBOL", + "name": "_function_signature_automatic_semicolon" + }, + { + "type": "SYMBOL", + "name": "__error_recovery" + } + ], + "inline": [ + "_expressions", + "_semicolon", + "_identifier", + "_reserved_identifier", + "_jsx_attribute", + "_jsx_element_name", + "_jsx_child", + "_jsx_element", + "_jsx_attribute_name", + "_jsx_attribute_value", + "_jsx_identifier", + "_lhs_expression", + "_type_identifier", + "_jsx_start_opening_element" + ], + "supertypes": [ + "statement", + "declaration", + "expression", + "primary_expression", + "pattern", + "type", + "primary_type" + ], + "reserved": {} +} \ No newline at end of file diff --git a/tools/tree-sitter-tsx/src/node-types.json b/tools/tree-sitter-tsx/src/node-types.json new file mode 100644 index 000000000..64035dd7b --- /dev/null +++ b/tools/tree-sitter-tsx/src/node-types.json @@ -0,0 +1,6292 @@ +[ + { + "type": "declaration", + "named": true, + "subtypes": [ + { + "type": "abstract_class_declaration", + "named": true + }, + { + "type": "ambient_declaration", + "named": true + }, + { + "type": "class_declaration", + "named": true + }, + { + "type": "enum_declaration", + "named": true + }, + { + "type": "function_declaration", + "named": true + }, + { + "type": "function_signature", + "named": true + }, + { + "type": "generator_function_declaration", + "named": true + }, + { + "type": "import_alias", + "named": true + }, + { + "type": "interface_declaration", + "named": true + }, + { + "type": "internal_module", + "named": true + }, + { + "type": "lexical_declaration", + "named": true + }, + { + "type": "module", + "named": true + }, + { + "type": "type_alias_declaration", + "named": true + }, + { + "type": "variable_declaration", + "named": true + } + ] + }, + { + "type": "expression", + "named": true, + "subtypes": [ + { + "type": "as_expression", + "named": true + }, + { + "type": "assignment_expression", + "named": true + }, + { + "type": "augmented_assignment_expression", + "named": true + }, + { + "type": "await_expression", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "instantiation_expression", + "named": true + }, + { + "type": "internal_module", + "named": true + }, + { + "type": "jsx_element", + "named": true + }, + { + "type": "jsx_self_closing_element", + "named": true + }, + { + "type": "new_expression", + "named": true + }, + { + "type": "primary_expression", + "named": true + }, + { + "type": "satisfies_expression", + "named": true + }, + { + "type": "ternary_expression", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "update_expression", + "named": true + }, + { + "type": "yield_expression", + "named": true + } + ] + }, + { + "type": "pattern", + "named": true, + "subtypes": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "non_null_expression", + "named": true + }, + { + "type": "object_pattern", + "named": true + }, + { + "type": "rest_pattern", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + }, + { + "type": "primary_expression", + "named": true, + "subtypes": [ + { + "type": "array", + "named": true + }, + { + "type": "arrow_function", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "class", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "function_expression", + "named": true + }, + { + "type": "generator_function", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "meta_property", + "named": true + }, + { + "type": "non_null_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "regex", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "super", + "named": true + }, + { + "type": "template_string", + "named": true + }, + { + "type": "this", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + }, + { + "type": "primary_type", + "named": true, + "subtypes": [ + { + "type": "array_type", + "named": true + }, + { + "type": "conditional_type", + "named": true + }, + { + "type": "const", + "named": false + }, + { + "type": "existential_type", + "named": true + }, + { + "type": "flow_maybe_type", + "named": true + }, + { + "type": "generic_type", + "named": true + }, + { + "type": "index_type_query", + "named": true + }, + { + "type": "intersection_type", + "named": true + }, + { + "type": "literal_type", + "named": true + }, + { + "type": "lookup_type", + "named": true + }, + { + "type": "nested_type_identifier", + "named": true + }, + { + "type": "object_type", + "named": true + }, + { + "type": "parenthesized_type", + "named": true + }, + { + "type": "predefined_type", + "named": true + }, + { + "type": "template_literal_type", + "named": true + }, + { + "type": "this_type", + "named": true + }, + { + "type": "tuple_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "type_query", + "named": true + }, + { + "type": "union_type", + "named": true + } + ] + }, + { + "type": "statement", + "named": true, + "subtypes": [ + { + "type": "break_statement", + "named": true + }, + { + "type": "continue_statement", + "named": true + }, + { + "type": "debugger_statement", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_statement", + "named": true + }, + { + "type": "empty_statement", + "named": true + }, + { + "type": "export_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_in_statement", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "import_statement", + "named": true + }, + { + "type": "labeled_statement", + "named": true + }, + { + "type": "return_statement", + "named": true + }, + { + "type": "statement_block", + "named": true + }, + { + "type": "switch_statement", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "while_statement", + "named": true + }, + { + "type": "with_statement", + "named": true + } + ] + }, + { + "type": "type", + "named": true, + "subtypes": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "constructor_type", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "infer_type", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "primary_type", + "named": true + }, + { + "type": "readonly_type", + "named": true + } + ] + }, + { + "type": "abstract_class_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "class_body", + "named": true + } + ] + }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "class_heritage", + "named": true + } + ] + } + }, + { + "type": "abstract_method_signature", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asserts_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + }, + { + "type": "type_predicate_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "accessibility_modifier", + "named": true + }, + { + "type": "override_modifier", + "named": true + } + ] + } + }, + { + "type": "accessibility_modifier", + "named": true, + "fields": {} + }, + { + "type": "adding_type_annotation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "ambient_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "declaration", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "statement_block", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "spread_element", + "named": true + } + ] + } + }, + { + "type": "array", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "spread_element", + "named": true + } + ] + } + }, + { + "type": "array_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "assignment_pattern", + "named": true + }, + { + "type": "pattern", + "named": true + } + ] + } + }, + { + "type": "array_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_type", + "named": true + } + ] + } + }, + { + "type": "arrow_function", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "statement_block", + "named": true + } + ] + }, + "parameter": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asserts_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + }, + { + "type": "type_predicate_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "as_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "asserts", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "this", + "named": true + }, + { + "type": "type_predicate", + "named": true + } + ] + } + }, + { + "type": "asserts_annotation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "asserts", + "named": true + } + ] + } + }, + { + "type": "assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "non_null_expression", + "named": true + }, + { + "type": "object_pattern", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "assignment_pattern", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "pattern", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "augmented_assignment_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "non_null_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "%=", + "named": false + }, + { + "type": "&&=", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "**=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": ">>>=", + "named": false + }, + { + "type": "??=", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||=", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "await_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "binary_expression", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!=", + "named": false + }, + { + "type": "!==", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": "===", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>>", + "named": false + }, + { + "type": "??", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "instanceof", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "||", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "break_statement", + "named": true, + "fields": { + "label": { + "multiple": false, + "required": false, + "types": [ + { + "type": "statement_identifier", + "named": true + } + ] + } + } + }, + { + "type": "call_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + }, + { + "type": "template_string", + "named": true + } + ] + }, + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "import", + "named": true + } + ] + }, + "type_arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + } + }, + { + "type": "call_signature", + "named": true, + "fields": { + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asserts_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + }, + { + "type": "type_predicate_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "catch_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "parameter": { + "multiple": false, + "required": false, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "object_pattern", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_annotation", + "named": true + } + ] + } + } + }, + { + "type": "class", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "class_body", + "named": true + } + ] + }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "class_heritage", + "named": true + } + ] + } + }, + { + "type": "class_body", + "named": true, + "fields": { + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "abstract_method_signature", + "named": true + }, + { + "type": "class_static_block", + "named": true + }, + { + "type": "index_signature", + "named": true + }, + { + "type": "method_definition", + "named": true + }, + { + "type": "method_signature", + "named": true + }, + { + "type": "public_field_definition", + "named": true + } + ] + } + }, + { + "type": "class_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "class_body", + "named": true + } + ] + }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "class_heritage", + "named": true + } + ] + } + }, + { + "type": "class_heritage", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "extends_clause", + "named": true + }, + { + "type": "implements_clause", + "named": true + } + ] + } + }, + { + "type": "class_static_block", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + } + } + }, + { + "type": "computed_property_name", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "conditional_type", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + }, + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + } + }, + { + "type": "constraint", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "construct_signature", + "named": true, + "fields": { + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "constructor_type", + "named": true, + "fields": { + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "continue_statement", + "named": true, + "fields": { + "label": { + "multiple": false, + "required": false, + "types": [ + { + "type": "statement_identifier", + "named": true + } + ] + } + } + }, + { + "type": "debugger_statement", + "named": true, + "fields": {} + }, + { + "type": "decorator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + } + ] + } + }, + { + "type": "default_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "do_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "else_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + }, + { + "type": "empty_statement", + "named": true, + "fields": {} + }, + { + "type": "enum_assignment", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "enum_body", + "named": true, + "fields": { + "name": { + "multiple": true, + "required": false, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "enum_assignment", + "named": true + } + ] + } + }, + { + "type": "enum_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "enum_body", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + } + }, + { + "type": "existential_type", + "named": true, + "fields": {} + }, + { + "type": "export_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "export_specifier", + "named": true + } + ] + } + }, + { + "type": "export_specifier", + "named": true, + "fields": { + "alias": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + } + }, + { + "type": "export_statement", + "named": true, + "fields": { + "declaration": { + "multiple": false, + "required": false, + "types": [ + { + "type": "declaration", + "named": true + } + ] + }, + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "source": { + "multiple": false, + "required": false, + "types": [ + { + "type": "string", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "export_clause", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "namespace_export", + "named": true + } + ] + } + }, + { + "type": "expression_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "extends_clause", + "named": true, + "fields": { + "type_arguments": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + }, + "value": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "extends_type_clause", + "named": true, + "fields": { + "type": { + "multiple": true, + "required": true, + "types": [ + { + "type": "generic_type", + "named": true + }, + { + "type": "nested_type_identifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "finally_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + } + } + }, + { + "type": "flow_maybe_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_type", + "named": true + } + ] + } + }, + { + "type": "for_in_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "kind": { + "multiple": false, + "required": false, + "types": [ + { + "type": "const", + "named": false + }, + { + "type": "let", + "named": false + }, + { + "type": "var", + "named": false + } + ] + }, + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "non_null_expression", + "named": true + }, + { + "type": "object_pattern", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "in", + "named": false + }, + { + "type": "of", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "for_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "condition": { + "multiple": true, + "required": true, + "types": [ + { + "type": ";", + "named": false + }, + { + "type": "empty_statement", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + }, + "increment": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + }, + "initializer": { + "multiple": false, + "required": true, + "types": [ + { + "type": "empty_statement", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "lexical_declaration", + "named": true + }, + { + "type": "sequence_expression", + "named": true + }, + { + "type": "variable_declaration", + "named": true + } + ] + } + } + }, + { + "type": "formal_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "optional_parameter", + "named": true + }, + { + "type": "required_parameter", + "named": true + } + ] + } + }, + { + "type": "function_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asserts_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + }, + { + "type": "type_predicate_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "function_expression", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asserts_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + }, + { + "type": "type_predicate_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "function_signature", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asserts_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + }, + { + "type": "type_predicate_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "function_type", + "named": true, + "fields": { + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "asserts", + "named": true + }, + { + "type": "type", + "named": true + }, + { + "type": "type_predicate", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "generator_function", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asserts_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + }, + { + "type": "type_predicate_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "generator_function_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asserts_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + }, + { + "type": "type_predicate_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + } + }, + { + "type": "generic_type", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "nested_type_identifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + } + }, + { + "type": "identifier", + "named": true, + "fields": {} + }, + { + "type": "if_statement", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "else_clause", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + } + }, + { + "type": "implements_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "import", + "named": true, + "fields": {} + }, + { + "type": "import_alias", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "nested_identifier", + "named": true + } + ] + } + }, + { + "type": "import_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "object", + "named": true + } + ] + } + }, + { + "type": "import_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "named_imports", + "named": true + }, + { + "type": "namespace_import", + "named": true + } + ] + } + }, + { + "type": "import_require_clause", + "named": true, + "fields": { + "source": { + "multiple": false, + "required": true, + "types": [ + { + "type": "string", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "import_specifier", + "named": true, + "fields": { + "alias": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + } + }, + { + "type": "import_statement", + "named": true, + "fields": { + "source": { + "multiple": false, + "required": false, + "types": [ + { + "type": "string", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "import_attribute", + "named": true + }, + { + "type": "import_clause", + "named": true + }, + { + "type": "import_require_clause", + "named": true + } + ] + } + }, + { + "type": "index_signature", + "named": true, + "fields": { + "index_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "sign": { + "multiple": false, + "required": false, + "types": [ + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "adding_type_annotation", + "named": true + }, + { + "type": "omitting_type_annotation", + "named": true + }, + { + "type": "opting_type_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "mapped_type_clause", + "named": true + } + ] + } + }, + { + "type": "index_type_query", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_type", + "named": true + } + ] + } + }, + { + "type": "infer_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, + { + "type": "instantiation_expression", + "named": true, + "fields": { + "function": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "import", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + } + ] + }, + "type_arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "interface_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "call_signature", + "named": true + }, + { + "type": "construct_signature", + "named": true + }, + { + "type": "export_statement", + "named": true + }, + { + "type": "index_signature", + "named": true + }, + { + "type": "method_signature", + "named": true + }, + { + "type": "property_signature", + "named": true + } + ] + } + }, + { + "type": "interface_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "interface_body", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "extends_type_clause", + "named": true + } + ] + } + }, + { + "type": "internal_module", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "nested_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + } + }, + { + "type": "intersection_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "jsx_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "jsx_element", + "named": true + }, + { + "type": "jsx_expression", + "named": true + }, + { + "type": "jsx_namespace_name", + "named": true + }, + { + "type": "jsx_self_closing_element", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + }, + { + "type": "jsx_closing_element", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "jsx_namespace_name", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + } + } + }, + { + "type": "jsx_element", + "named": true, + "fields": { + "close_tag": { + "multiple": false, + "required": true, + "types": [ + { + "type": "jsx_closing_element", + "named": true + } + ] + }, + "open_tag": { + "multiple": false, + "required": true, + "types": [ + { + "type": "jsx_opening_element", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "html_character_reference", + "named": true + }, + { + "type": "jsx_element", + "named": true + }, + { + "type": "jsx_expression", + "named": true + }, + { + "type": "jsx_self_closing_element", + "named": true + }, + { + "type": "jsx_text", + "named": true + } + ] + } + }, + { + "type": "jsx_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + }, + { + "type": "spread_element", + "named": true + } + ] + } + }, + { + "type": "jsx_namespace_name", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "jsx_opening_element", + "named": true, + "fields": { + "attribute": { + "multiple": true, + "required": false, + "types": [ + { + "type": "jsx_attribute", + "named": true + }, + { + "type": "jsx_expression", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "jsx_namespace_name", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + }, + "type_arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + } + }, + { + "type": "jsx_self_closing_element", + "named": true, + "fields": { + "attribute": { + "multiple": true, + "required": false, + "types": [ + { + "type": "jsx_attribute", + "named": true + }, + { + "type": "jsx_expression", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "jsx_namespace_name", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + }, + "type_arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + } + }, + { + "type": "jsx_text", + "named": true, + "fields": {} + }, + { + "type": "labeled_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "label": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_identifier", + "named": true + } + ] + } + } + }, + { + "type": "lexical_declaration", + "named": true, + "fields": { + "kind": { + "multiple": false, + "required": true, + "types": [ + { + "type": "const", + "named": false + }, + { + "type": "let", + "named": false + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "variable_declarator", + "named": true + } + ] + } + }, + { + "type": "literal_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "false", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "unary_expression", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + } + }, + { + "type": "lookup_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "mapped_type_clause", + "named": true, + "fields": { + "alias": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + } + }, + { + "type": "member_expression", + "named": true, + "fields": { + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "import", + "named": true + } + ] + }, + "optional_chain": { + "multiple": false, + "required": false, + "types": [ + { + "type": "optional_chain", + "named": true + } + ] + }, + "property": { + "multiple": false, + "required": true, + "types": [ + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + } + ] + } + } + }, + { + "type": "meta_property", + "named": true, + "fields": {} + }, + { + "type": "method_definition", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asserts_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + }, + { + "type": "type_predicate_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "accessibility_modifier", + "named": true + }, + { + "type": "override_modifier", + "named": true + } + ] + } + }, + { + "type": "method_signature", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "formal_parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "asserts_annotation", + "named": true + }, + { + "type": "type_annotation", + "named": true + }, + { + "type": "type_predicate_annotation", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "accessibility_modifier", + "named": true + }, + { + "type": "override_modifier", + "named": true + } + ] + } + }, + { + "type": "module", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "nested_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + } + }, + { + "type": "named_imports", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "import_specifier", + "named": true + } + ] + } + }, + { + "type": "namespace_export", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + } + }, + { + "type": "namespace_import", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "nested_identifier", + "named": true, + "fields": { + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + }, + "property": { + "multiple": false, + "required": true, + "types": [ + { + "type": "property_identifier", + "named": true + } + ] + } + } + }, + { + "type": "nested_type_identifier", + "named": true, + "fields": { + "module": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "nested_identifier", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, + { + "type": "new_expression", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "arguments", + "named": true + } + ] + }, + "constructor": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + }, + "type_arguments": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_arguments", + "named": true + } + ] + } + } + }, + { + "type": "non_null_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "object", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "method_definition", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "shorthand_property_identifier", + "named": true + }, + { + "type": "spread_element", + "named": true + } + ] + } + }, + { + "type": "object_assignment_pattern", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "object_pattern", + "named": true + }, + { + "type": "shorthand_property_identifier_pattern", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "object_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "object_assignment_pattern", + "named": true + }, + { + "type": "pair_pattern", + "named": true + }, + { + "type": "rest_pattern", + "named": true + }, + { + "type": "shorthand_property_identifier_pattern", + "named": true + } + ] + } + }, + { + "type": "object_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "call_signature", + "named": true + }, + { + "type": "construct_signature", + "named": true + }, + { + "type": "export_statement", + "named": true + }, + { + "type": "index_signature", + "named": true + }, + { + "type": "method_signature", + "named": true + }, + { + "type": "property_signature", + "named": true + } + ] + } + }, + { + "type": "omitting_type_annotation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "opting_type_annotation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "optional_chain", + "named": true, + "fields": {} + }, + { + "type": "optional_parameter", + "named": true, + "fields": { + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "pattern": { + "multiple": false, + "required": false, + "types": [ + { + "type": "pattern", + "named": true + }, + { + "type": "this", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_annotation", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "accessibility_modifier", + "named": true + }, + { + "type": "override_modifier", + "named": true + } + ] + } + }, + { + "type": "optional_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "override_modifier", + "named": true, + "fields": {} + }, + { + "type": "pair", + "named": true, + "fields": { + "key": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "pair_pattern", + "named": true, + "fields": { + "key": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "assignment_pattern", + "named": true + }, + { + "type": "pattern", + "named": true + } + ] + } + } + }, + { + "type": "parenthesized_expression", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_annotation", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "parenthesized_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "predefined_type", + "named": true, + "fields": {} + }, + { + "type": "program", + "named": true, + "root": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "hash_bang_line", + "named": true + }, + { + "type": "statement", + "named": true + } + ] + } + }, + { + "type": "property_signature", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_annotation", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "accessibility_modifier", + "named": true + }, + { + "type": "override_modifier", + "named": true + } + ] + } + }, + { + "type": "public_field_definition", + "named": true, + "fields": { + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "computed_property_name", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_annotation", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "accessibility_modifier", + "named": true + }, + { + "type": "override_modifier", + "named": true + } + ] + } + }, + { + "type": "readonly_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "regex", + "named": true, + "fields": { + "flags": { + "multiple": false, + "required": false, + "types": [ + { + "type": "regex_flags", + "named": true + } + ] + }, + "pattern": { + "multiple": false, + "required": true, + "types": [ + { + "type": "regex_pattern", + "named": true + } + ] + } + } + }, + { + "type": "required_parameter", + "named": true, + "fields": { + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "rest_pattern", + "named": true + } + ] + }, + "pattern": { + "multiple": false, + "required": false, + "types": [ + { + "type": "pattern", + "named": true + }, + { + "type": "this", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_annotation", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "accessibility_modifier", + "named": true + }, + { + "type": "override_modifier", + "named": true + } + ] + } + }, + { + "type": "rest_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "non_null_expression", + "named": true + }, + { + "type": "object_pattern", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "undefined", + "named": true + } + ] + } + }, + { + "type": "rest_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "return_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "satisfies_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "sequence_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "spread_element", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "statement_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + }, + { + "type": "string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "html_character_reference", + "named": true + }, + { + "type": "string_fragment", + "named": true + } + ] + } + }, + { + "type": "string_fragment", + "named": true, + "fields": {} + }, + { + "type": "subscript_expression", + "named": true, + "fields": { + "index": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "number", + "named": true + }, + { + "type": "predefined_type", + "named": true + }, + { + "type": "sequence_expression", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "optional_chain": { + "multiple": false, + "required": false, + "types": [ + { + "type": "optional_chain", + "named": true + } + ] + } + } + }, + { + "type": "switch_body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "switch_case", + "named": true + }, + { + "type": "switch_default", + "named": true + } + ] + } + }, + { + "type": "switch_case", + "named": true, + "fields": { + "body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + } + }, + { + "type": "switch_default", + "named": true, + "fields": { + "body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "statement", + "named": true + } + ] + } + } + }, + { + "type": "switch_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "switch_body", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "template_literal_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "string_fragment", + "named": true + }, + { + "type": "template_type", + "named": true + } + ] + } + }, + { + "type": "template_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "string_fragment", + "named": true + }, + { + "type": "template_substitution", + "named": true + } + ] + } + }, + { + "type": "template_substitution", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "template_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "infer_type", + "named": true + }, + { + "type": "primary_type", + "named": true + } + ] + } + }, + { + "type": "ternary_expression", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "throw_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", + "named": true + } + ] + } + }, + { + "type": "try_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + }, + "finalizer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "finally_clause", + "named": true + } + ] + }, + "handler": { + "multiple": false, + "required": false, + "types": [ + { + "type": "catch_clause", + "named": true + } + ] + } + } + }, + { + "type": "tuple_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "optional_parameter", + "named": true + }, + { + "type": "optional_type", + "named": true + }, + { + "type": "required_parameter", + "named": true + }, + { + "type": "rest_type", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "type_alias_declaration", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + } + }, + { + "type": "type_annotation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "type_arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "type_parameter", + "named": true, + "fields": { + "constraint": { + "multiple": false, + "required": false, + "types": [ + { + "type": "constraint", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "default_type", + "named": true + } + ] + } + } + }, + { + "type": "type_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type_parameter", + "named": true + } + ] + } + }, + { + "type": "type_predicate", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "this", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + } + }, + { + "type": "type_predicate_annotation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_predicate", + "named": true + } + ] + } + }, + { + "type": "type_query", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "instantiation_expression", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "this", + "named": true + } + ] + } + }, + { + "type": "unary_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "number", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "delete", + "named": false + }, + { + "type": "typeof", + "named": false + }, + { + "type": "void", + "named": false + }, + { + "type": "~", + "named": false + } + ] + } + } + }, + { + "type": "union_type", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "update_expression", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "++", + "named": false + }, + { + "type": "--", + "named": false + } + ] + } + } + }, + { + "type": "variable_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "variable_declarator", + "named": true + } + ] + } + }, + { + "type": "variable_declarator", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "array_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "object_pattern", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_annotation", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "while_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "with_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement", + "named": true + } + ] + }, + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parenthesized_expression", + "named": true + } + ] + } + } + }, + { + "type": "yield_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "!==", + "named": false + }, + { + "type": "\"", + "named": false + }, + { + "type": "${", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "&&=", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "**=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "++", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": "+?:", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "--", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "-?:", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "...", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": "/>", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": ">>>", + "named": false + }, + { + "type": ">>>=", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "?.", + "named": false + }, + { + "type": "?:", + "named": false + }, + { + "type": "??", + "named": false + }, + { + "type": "??=", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "`", + "named": false + }, + { + "type": "abstract", + "named": false + }, + { + "type": "accessor", + "named": false + }, + { + "type": "any", + "named": false + }, + { + "type": "as", + "named": false + }, + { + "type": "assert", + "named": false + }, + { + "type": "asserts", + "named": false + }, + { + "type": "async", + "named": false + }, + { + "type": "await", + "named": false + }, + { + "type": "boolean", + "named": false + }, + { + "type": "break", + "named": false + }, + { + "type": "case", + "named": false + }, + { + "type": "catch", + "named": false + }, + { + "type": "class", + "named": false + }, + { + "type": "comment", + "named": true, + "extra": true + }, + { + "type": "const", + "named": false + }, + { + "type": "continue", + "named": false + }, + { + "type": "debugger", + "named": false + }, + { + "type": "declare", + "named": false + }, + { + "type": "default", + "named": false + }, + { + "type": "delete", + "named": false + }, + { + "type": "do", + "named": false + }, + { + "type": "else", + "named": false + }, + { + "type": "enum", + "named": false + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "export", + "named": false + }, + { + "type": "extends", + "named": false + }, + { + "type": "false", + "named": true + }, + { + "type": "finally", + "named": false + }, + { + "type": "for", + "named": false + }, + { + "type": "from", + "named": false + }, + { + "type": "function", + "named": false + }, + { + "type": "get", + "named": false + }, + { + "type": "global", + "named": false + }, + { + "type": "hash_bang_line", + "named": true + }, + { + "type": "html_character_reference", + "named": true + }, + { + "type": "html_comment", + "named": true, + "extra": true + }, + { + "type": "if", + "named": false + }, + { + "type": "implements", + "named": false + }, + { + "type": "import", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "infer", + "named": false + }, + { + "type": "instanceof", + "named": false + }, + { + "type": "interface", + "named": false + }, + { + "type": "is", + "named": false + }, + { + "type": "keyof", + "named": false + }, + { + "type": "let", + "named": false + }, + { + "type": "meta", + "named": false + }, + { + "type": "module", + "named": false + }, + { + "type": "namespace", + "named": false + }, + { + "type": "never", + "named": false + }, + { + "type": "new", + "named": false + }, + { + "type": "null", + "named": true + }, + { + "type": "number", + "named": false + }, + { + "type": "number", + "named": true + }, + { + "type": "object", + "named": false + }, + { + "type": "of", + "named": false + }, + { + "type": "override", + "named": false + }, + { + "type": "private", + "named": false + }, + { + "type": "private_property_identifier", + "named": true + }, + { + "type": "property_identifier", + "named": true + }, + { + "type": "protected", + "named": false + }, + { + "type": "public", + "named": false + }, + { + "type": "readonly", + "named": false + }, + { + "type": "regex_flags", + "named": true + }, + { + "type": "regex_pattern", + "named": true + }, + { + "type": "require", + "named": false + }, + { + "type": "return", + "named": false + }, + { + "type": "satisfies", + "named": false + }, + { + "type": "set", + "named": false + }, + { + "type": "shorthand_property_identifier", + "named": true + }, + { + "type": "shorthand_property_identifier_pattern", + "named": true + }, + { + "type": "statement_identifier", + "named": true + }, + { + "type": "static", + "named": false + }, + { + "type": "string", + "named": false + }, + { + "type": "super", + "named": true + }, + { + "type": "switch", + "named": false + }, + { + "type": "symbol", + "named": false + }, + { + "type": "target", + "named": false + }, + { + "type": "this", + "named": true + }, + { + "type": "this_type", + "named": true + }, + { + "type": "throw", + "named": false + }, + { + "type": "true", + "named": true + }, + { + "type": "try", + "named": false + }, + { + "type": "type", + "named": false + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "typeof", + "named": false + }, + { + "type": "undefined", + "named": true + }, + { + "type": "unique symbol", + "named": false + }, + { + "type": "unknown", + "named": false + }, + { + "type": "using", + "named": false + }, + { + "type": "var", + "named": false + }, + { + "type": "void", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "with", + "named": false + }, + { + "type": "yield", + "named": false + }, + { + "type": "{", + "named": false + }, + { + "type": "{|", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "||", + "named": false + }, + { + "type": "||=", + "named": false + }, + { + "type": "|}", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "~", + "named": false + } +] \ No newline at end of file diff --git a/tools/tree-sitter-tsx/src/parser.c b/tools/tree-sitter-tsx/src/parser.c new file mode 100644 index 000000000..be3f298eb --- /dev/null +++ b/tools/tree-sitter-tsx/src/parser.c @@ -0,0 +1,283292 @@ +/* Automatically @generated by tree-sitter v0.25.10 */ + +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 5989 +#define LARGE_STATE_COUNT 1167 +#define SYMBOL_COUNT 397 +#define ALIAS_COUNT 7 +#define TOKEN_COUNT 174 +#define EXTERNAL_TOKEN_COUNT 10 +#define FIELD_COUNT 43 +#define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define MAX_RESERVED_WORD_SET_SIZE 0 +#define PRODUCTION_ID_COUNT 351 +#define SUPERTYPE_COUNT 7 + +enum ts_symbol_identifiers { + sym_identifier = 1, + sym_hash_bang_line = 2, + anon_sym_export = 3, + anon_sym_STAR = 4, + anon_sym_default = 5, + anon_sym_type = 6, + anon_sym_EQ = 7, + anon_sym_as = 8, + anon_sym_namespace = 9, + anon_sym_LBRACE = 10, + anon_sym_COMMA = 11, + anon_sym_RBRACE = 12, + anon_sym_typeof = 13, + anon_sym_import = 14, + anon_sym_from = 15, + anon_sym_with = 16, + anon_sym_assert = 17, + anon_sym_var = 18, + anon_sym_let = 19, + anon_sym_const = 20, + anon_sym_BANG = 21, + anon_sym_else = 22, + anon_sym_if = 23, + anon_sym_switch = 24, + anon_sym_for = 25, + anon_sym_LPAREN = 26, + anon_sym_SEMI = 27, + anon_sym_RPAREN = 28, + anon_sym_await = 29, + anon_sym_in = 30, + anon_sym_of = 31, + anon_sym_while = 32, + anon_sym_do = 33, + anon_sym_try = 34, + anon_sym_break = 35, + anon_sym_continue = 36, + anon_sym_debugger = 37, + anon_sym_return = 38, + anon_sym_throw = 39, + anon_sym_COLON = 40, + anon_sym_case = 41, + anon_sym_catch = 42, + anon_sym_finally = 43, + anon_sym_yield = 44, + anon_sym_LBRACK = 45, + anon_sym_RBRACK = 46, + sym_html_character_reference = 47, + anon_sym_GT = 48, + sym_jsx_identifier = 49, + anon_sym_DOT = 50, + anon_sym_LT_SLASH = 51, + anon_sym_SLASH_GT = 52, + anon_sym_DQUOTE = 53, + anon_sym_SQUOTE = 54, + sym_unescaped_double_jsx_string_fragment = 55, + sym_unescaped_single_jsx_string_fragment = 56, + anon_sym_AMP = 57, + anon_sym_AMP2 = 58, + anon_sym_class = 59, + anon_sym_async = 60, + anon_sym_function = 61, + anon_sym_EQ_GT = 62, + anon_sym_QMARK_DOT = 63, + anon_sym_new = 64, + anon_sym_using = 65, + anon_sym_PLUS_EQ = 66, + anon_sym_DASH_EQ = 67, + anon_sym_STAR_EQ = 68, + anon_sym_SLASH_EQ = 69, + anon_sym_PERCENT_EQ = 70, + anon_sym_CARET_EQ = 71, + anon_sym_AMP_EQ = 72, + anon_sym_PIPE_EQ = 73, + anon_sym_GT_GT_EQ = 74, + anon_sym_GT_GT_GT_EQ = 75, + anon_sym_LT_LT_EQ = 76, + anon_sym_STAR_STAR_EQ = 77, + anon_sym_AMP_AMP_EQ = 78, + anon_sym_PIPE_PIPE_EQ = 79, + anon_sym_QMARK_QMARK_EQ = 80, + anon_sym_DOT_DOT_DOT = 81, + anon_sym_AMP_AMP = 82, + anon_sym_PIPE_PIPE = 83, + anon_sym_GT_GT = 84, + anon_sym_GT_GT_GT = 85, + anon_sym_LT_LT = 86, + anon_sym_AMP3 = 87, + anon_sym_CARET = 88, + anon_sym_PIPE = 89, + anon_sym_PLUS = 90, + anon_sym_DASH = 91, + anon_sym_SLASH = 92, + anon_sym_PERCENT = 93, + anon_sym_STAR_STAR = 94, + anon_sym_LT = 95, + anon_sym_LT_EQ = 96, + anon_sym_EQ_EQ = 97, + anon_sym_EQ_EQ_EQ = 98, + anon_sym_BANG_EQ = 99, + anon_sym_BANG_EQ_EQ = 100, + anon_sym_GT_EQ = 101, + anon_sym_QMARK_QMARK = 102, + anon_sym_instanceof = 103, + anon_sym_TILDE = 104, + anon_sym_void = 105, + anon_sym_delete = 106, + anon_sym_PLUS_PLUS = 107, + anon_sym_DASH_DASH = 108, + sym_unescaped_double_string_fragment = 109, + sym_unescaped_single_string_fragment = 110, + sym_escape_sequence = 111, + sym_comment = 112, + anon_sym_BQUOTE = 113, + anon_sym_DOLLAR_LBRACE = 114, + anon_sym_SLASH2 = 115, + sym_regex_pattern = 116, + sym_regex_flags = 117, + sym_number = 118, + sym_private_property_identifier = 119, + anon_sym_target = 120, + anon_sym_meta = 121, + sym_this = 122, + sym_super = 123, + sym_true = 124, + sym_false = 125, + sym_null = 126, + sym_undefined = 127, + anon_sym_AT = 128, + anon_sym_static = 129, + anon_sym_readonly = 130, + anon_sym_get = 131, + anon_sym_set = 132, + anon_sym_QMARK = 133, + anon_sym_declare = 134, + anon_sym_public = 135, + anon_sym_private = 136, + anon_sym_protected = 137, + anon_sym_override = 138, + anon_sym_module = 139, + anon_sym_any = 140, + anon_sym_number = 141, + anon_sym_boolean = 142, + anon_sym_string = 143, + anon_sym_symbol = 144, + anon_sym_object = 145, + anon_sym_abstract = 146, + anon_sym_accessor = 147, + anon_sym_satisfies = 148, + anon_sym_require = 149, + anon_sym_extends = 150, + anon_sym_implements = 151, + anon_sym_global = 152, + anon_sym_interface = 153, + anon_sym_enum = 154, + anon_sym_DASH_QMARK_COLON = 155, + anon_sym_PLUS_QMARK_COLON = 156, + anon_sym_QMARK_COLON = 157, + anon_sym_asserts = 158, + anon_sym_infer = 159, + anon_sym_is = 160, + anon_sym_keyof = 161, + anon_sym_unique = 162, + anon_sym_unknown = 163, + anon_sym_never = 164, + anon_sym_LBRACE_PIPE = 165, + anon_sym_PIPE_RBRACE = 166, + sym__automatic_semicolon = 167, + sym__template_chars = 168, + sym__ternary_qmark = 169, + sym_html_comment = 170, + sym_jsx_text = 171, + sym__function_signature_automatic_semicolon = 172, + sym___error_recovery = 173, + sym_program = 174, + sym_export_statement = 175, + sym_namespace_export = 176, + sym_export_clause = 177, + sym_export_specifier = 178, + sym__module_export_name = 179, + sym_declaration = 180, + sym_import = 181, + sym_import_statement = 182, + sym_import_clause = 183, + sym__from_clause = 184, + sym_namespace_import = 185, + sym_named_imports = 186, + sym_import_specifier = 187, + sym_import_attribute = 188, + sym_statement = 189, + sym_expression_statement = 190, + sym_variable_declaration = 191, + sym_lexical_declaration = 192, + sym_variable_declarator = 193, + sym_statement_block = 194, + sym_else_clause = 195, + sym_if_statement = 196, + sym_switch_statement = 197, + sym_for_statement = 198, + sym_for_in_statement = 199, + sym__for_header = 200, + sym_while_statement = 201, + sym_do_statement = 202, + sym_try_statement = 203, + sym_with_statement = 204, + sym_break_statement = 205, + sym_continue_statement = 206, + sym_debugger_statement = 207, + sym_return_statement = 208, + sym_throw_statement = 209, + sym_empty_statement = 210, + sym_labeled_statement = 211, + sym_switch_body = 212, + sym_switch_case = 213, + sym_switch_default = 214, + sym_catch_clause = 215, + sym_finally_clause = 216, + sym_parenthesized_expression = 217, + sym_expression = 218, + sym_primary_expression = 219, + sym_yield_expression = 220, + sym_object = 221, + sym_object_pattern = 222, + sym_assignment_pattern = 223, + sym_object_assignment_pattern = 224, + sym_array = 225, + sym_array_pattern = 226, + sym_jsx_element = 227, + sym_jsx_expression = 228, + sym_jsx_opening_element = 229, + sym_nested_identifier = 230, + sym_jsx_namespace_name = 231, + sym_jsx_closing_element = 232, + sym_jsx_self_closing_element = 233, + sym_jsx_attribute = 234, + sym__jsx_string = 235, + sym__jsx_lone_ampersand = 236, + sym__jsx_string_lone_ampersand = 237, + sym_class = 238, + sym_class_declaration = 239, + sym_class_heritage = 240, + sym_function_expression = 241, + sym_function_declaration = 242, + sym_generator_function = 243, + sym_generator_function_declaration = 244, + sym_arrow_function = 245, + sym__call_signature = 246, + sym__formal_parameter = 247, + sym_optional_chain = 248, + sym_call_expression = 249, + sym_new_expression = 250, + sym_await_expression = 251, + sym_member_expression = 252, + sym_subscript_expression = 253, + sym_assignment_expression = 254, + sym__augmented_assignment_lhs = 255, + sym_augmented_assignment_expression = 256, + sym__initializer = 257, + sym__destructuring_pattern = 258, + sym_spread_element = 259, + sym_ternary_expression = 260, + sym_binary_expression = 261, + sym_unary_expression = 262, + sym_update_expression = 263, + sym_sequence_expression = 264, + sym_string = 265, + sym_template_string = 266, + sym_template_substitution = 267, + sym_regex = 268, + sym_meta_property = 269, + sym_arguments = 270, + sym_decorator = 271, + sym_decorator_member_expression = 272, + sym_decorator_call_expression = 273, + sym_class_body = 274, + sym_formal_parameters = 275, + sym_class_static_block = 276, + sym_pattern = 277, + sym_rest_pattern = 278, + sym_method_definition = 279, + sym_pair = 280, + sym_pair_pattern = 281, + sym__property_name = 282, + sym_computed_property_name = 283, + sym_public_field_definition = 284, + sym__import_identifier = 285, + sym_non_null_expression = 286, + sym_method_signature = 287, + sym_abstract_method_signature = 288, + sym_function_signature = 289, + sym_decorator_parenthesized_expression = 290, + sym_as_expression = 291, + sym_satisfies_expression = 292, + sym_instantiation_expression = 293, + sym_import_require_clause = 294, + sym_extends_clause = 295, + sym__extends_clause_single = 296, + sym_implements_clause = 297, + sym_ambient_declaration = 298, + sym_abstract_class_declaration = 299, + sym_module = 300, + sym_internal_module = 301, + sym__module = 302, + sym_import_alias = 303, + sym_nested_type_identifier = 304, + sym_interface_declaration = 305, + sym_extends_type_clause = 306, + sym_enum_declaration = 307, + sym_enum_body = 308, + sym_enum_assignment = 309, + sym_type_alias_declaration = 310, + sym_accessibility_modifier = 311, + sym_override_modifier = 312, + sym_required_parameter = 313, + sym_optional_parameter = 314, + sym__parameter_name = 315, + sym_omitting_type_annotation = 316, + sym_adding_type_annotation = 317, + sym_opting_type_annotation = 318, + sym_type_annotation = 319, + sym__type_query_member_expression_in_type_annotation = 320, + sym__type_query_call_expression_in_type_annotation = 321, + sym_asserts = 322, + sym_asserts_annotation = 323, + sym_type = 324, + sym_tuple_parameter = 325, + sym_optional_tuple_parameter = 326, + sym_optional_type = 327, + sym_rest_type = 328, + sym__tuple_type_member = 329, + sym_constructor_type = 330, + sym_primary_type = 331, + sym_template_type = 332, + sym_template_literal_type = 333, + sym_infer_type = 334, + sym_conditional_type = 335, + sym_generic_type = 336, + sym_type_predicate = 337, + sym_type_predicate_annotation = 338, + sym__type_query_member_expression = 339, + sym__type_query_subscript_expression = 340, + sym__type_query_call_expression = 341, + sym__type_query_instantiation_expression = 342, + sym_type_query = 343, + sym_index_type_query = 344, + sym_lookup_type = 345, + sym_mapped_type_clause = 346, + sym_literal_type = 347, + sym__number = 348, + sym_existential_type = 349, + sym_flow_maybe_type = 350, + sym_parenthesized_type = 351, + sym_predefined_type = 352, + sym_type_arguments = 353, + sym_object_type = 354, + sym_call_signature = 355, + sym_property_signature = 356, + sym_type_parameters = 357, + sym_type_parameter = 358, + sym_default_type = 359, + sym_constraint = 360, + sym_construct_signature = 361, + sym_index_signature = 362, + sym_array_type = 363, + sym_tuple_type = 364, + sym_readonly_type = 365, + sym_union_type = 366, + sym_intersection_type = 367, + sym_function_type = 368, + aux_sym_program_repeat1 = 369, + aux_sym_export_statement_repeat1 = 370, + aux_sym_export_clause_repeat1 = 371, + aux_sym_named_imports_repeat1 = 372, + aux_sym_variable_declaration_repeat1 = 373, + aux_sym_switch_body_repeat1 = 374, + aux_sym_object_repeat1 = 375, + aux_sym_object_pattern_repeat1 = 376, + aux_sym_array_repeat1 = 377, + aux_sym_array_pattern_repeat1 = 378, + aux_sym_jsx_element_repeat1 = 379, + aux_sym__jsx_string_repeat1 = 380, + aux_sym__jsx_string_repeat2 = 381, + aux_sym_sequence_expression_repeat1 = 382, + aux_sym_string_repeat1 = 383, + aux_sym_string_repeat2 = 384, + aux_sym_template_string_repeat1 = 385, + aux_sym_class_body_repeat1 = 386, + aux_sym_formal_parameters_repeat1 = 387, + aux_sym__jsx_start_opening_element_repeat1 = 388, + aux_sym_extends_clause_repeat1 = 389, + aux_sym_implements_clause_repeat1 = 390, + aux_sym_extends_type_clause_repeat1 = 391, + aux_sym_enum_body_repeat1 = 392, + aux_sym_template_literal_type_repeat1 = 393, + aux_sym_object_type_repeat1 = 394, + aux_sym_type_parameters_repeat1 = 395, + aux_sym_tuple_type_repeat1 = 396, + alias_sym_interface_body = 397, + alias_sym_property_identifier = 398, + alias_sym_shorthand_property_identifier = 399, + alias_sym_shorthand_property_identifier_pattern = 400, + alias_sym_statement_identifier = 401, + alias_sym_this_type = 402, + alias_sym_type_identifier = 403, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [sym_hash_bang_line] = "hash_bang_line", + [anon_sym_export] = "export", + [anon_sym_STAR] = "*", + [anon_sym_default] = "default", + [anon_sym_type] = "type", + [anon_sym_EQ] = "=", + [anon_sym_as] = "as", + [anon_sym_namespace] = "namespace", + [anon_sym_LBRACE] = "{", + [anon_sym_COMMA] = ",", + [anon_sym_RBRACE] = "}", + [anon_sym_typeof] = "typeof", + [anon_sym_import] = "import", + [anon_sym_from] = "from", + [anon_sym_with] = "with", + [anon_sym_assert] = "assert", + [anon_sym_var] = "var", + [anon_sym_let] = "let", + [anon_sym_const] = "const", + [anon_sym_BANG] = "!", + [anon_sym_else] = "else", + [anon_sym_if] = "if", + [anon_sym_switch] = "switch", + [anon_sym_for] = "for", + [anon_sym_LPAREN] = "(", + [anon_sym_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", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", + [anon_sym_debugger] = "debugger", + [anon_sym_return] = "return", + [anon_sym_throw] = "throw", + [anon_sym_COLON] = ":", + [anon_sym_case] = "case", + [anon_sym_catch] = "catch", + [anon_sym_finally] = "finally", + [anon_sym_yield] = "yield", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [sym_html_character_reference] = "html_character_reference", + [anon_sym_GT] = ">", + [sym_jsx_identifier] = "identifier", + [anon_sym_DOT] = ".", + [anon_sym_LT_SLASH] = "", + [anon_sym_DQUOTE] = "\"", + [anon_sym_SQUOTE] = "'", + [sym_unescaped_double_jsx_string_fragment] = "string_fragment", + [sym_unescaped_single_jsx_string_fragment] = "string_fragment", + [anon_sym_AMP] = "&", + [anon_sym_AMP2] = "&", + [anon_sym_class] = "class", + [anon_sym_async] = "async", + [anon_sym_function] = "function", + [anon_sym_EQ_GT] = "=>", + [anon_sym_QMARK_DOT] = "\?.", + [anon_sym_new] = "new", + [anon_sym_using] = "using", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_GT_GT_GT_EQ] = ">>>=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_STAR_STAR_EQ] = "**=", + [anon_sym_AMP_AMP_EQ] = "&&=", + [anon_sym_PIPE_PIPE_EQ] = "||=", + [anon_sym_QMARK_QMARK_EQ] = "\?\?=", + [anon_sym_DOT_DOT_DOT] = "...", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_PIPE_PIPE] = "||", + [anon_sym_GT_GT] = ">>", + [anon_sym_GT_GT_GT] = ">>>", + [anon_sym_LT_LT] = "<<", + [anon_sym_AMP3] = "&", + [anon_sym_CARET] = "^", + [anon_sym_PIPE] = "|", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [anon_sym_STAR_STAR] = "**", + [anon_sym_LT] = "<", + [anon_sym_LT_EQ] = "<=", + [anon_sym_EQ_EQ] = "==", + [anon_sym_EQ_EQ_EQ] = "===", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_BANG_EQ_EQ] = "!==", + [anon_sym_GT_EQ] = ">=", + [anon_sym_QMARK_QMARK] = "\?\?", + [anon_sym_instanceof] = "instanceof", + [anon_sym_TILDE] = "~", + [anon_sym_void] = "void", + [anon_sym_delete] = "delete", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_DASH_DASH] = "--", + [sym_unescaped_double_string_fragment] = "string_fragment", + [sym_unescaped_single_string_fragment] = "string_fragment", + [sym_escape_sequence] = "escape_sequence", + [sym_comment] = "comment", + [anon_sym_BQUOTE] = "`", + [anon_sym_DOLLAR_LBRACE] = "${", + [anon_sym_SLASH2] = "/", + [sym_regex_pattern] = "regex_pattern", + [sym_regex_flags] = "regex_flags", + [sym_number] = "number", + [sym_private_property_identifier] = "private_property_identifier", + [anon_sym_target] = "target", + [anon_sym_meta] = "meta", + [sym_this] = "this", + [sym_super] = "super", + [sym_true] = "true", + [sym_false] = "false", + [sym_null] = "null", + [sym_undefined] = "undefined", + [anon_sym_AT] = "@", + [anon_sym_static] = "static", + [anon_sym_readonly] = "readonly", + [anon_sym_get] = "get", + [anon_sym_set] = "set", + [anon_sym_QMARK] = "\?", + [anon_sym_declare] = "declare", + [anon_sym_public] = "public", + [anon_sym_private] = "private", + [anon_sym_protected] = "protected", + [anon_sym_override] = "override", + [anon_sym_module] = "module", + [anon_sym_any] = "any", + [anon_sym_number] = "number", + [anon_sym_boolean] = "boolean", + [anon_sym_string] = "string", + [anon_sym_symbol] = "symbol", + [anon_sym_object] = "object", + [anon_sym_abstract] = "abstract", + [anon_sym_accessor] = "accessor", + [anon_sym_satisfies] = "satisfies", + [anon_sym_require] = "require", + [anon_sym_extends] = "extends", + [anon_sym_implements] = "implements", + [anon_sym_global] = "global", + [anon_sym_interface] = "interface", + [anon_sym_enum] = "enum", + [anon_sym_DASH_QMARK_COLON] = "-\?:", + [anon_sym_PLUS_QMARK_COLON] = "+\?:", + [anon_sym_QMARK_COLON] = "\?:", + [anon_sym_asserts] = "asserts", + [anon_sym_infer] = "infer", + [anon_sym_is] = "is", + [anon_sym_keyof] = "keyof", + [anon_sym_unique] = "unique symbol", + [anon_sym_unknown] = "unknown", + [anon_sym_never] = "never", + [anon_sym_LBRACE_PIPE] = "{|", + [anon_sym_PIPE_RBRACE] = "|}", + [sym__automatic_semicolon] = "_automatic_semicolon", + [sym__template_chars] = "string_fragment", + [sym__ternary_qmark] = "\?", + [sym_html_comment] = "html_comment", + [sym_jsx_text] = "jsx_text", + [sym__function_signature_automatic_semicolon] = "_function_signature_automatic_semicolon", + [sym___error_recovery] = "__error_recovery", + [sym_program] = "program", + [sym_export_statement] = "export_statement", + [sym_namespace_export] = "namespace_export", + [sym_export_clause] = "export_clause", + [sym_export_specifier] = "export_specifier", + [sym__module_export_name] = "_module_export_name", + [sym_declaration] = "declaration", + [sym_import] = "import", + [sym_import_statement] = "import_statement", + [sym_import_clause] = "import_clause", + [sym__from_clause] = "_from_clause", + [sym_namespace_import] = "namespace_import", + [sym_named_imports] = "named_imports", + [sym_import_specifier] = "import_specifier", + [sym_import_attribute] = "import_attribute", + [sym_statement] = "statement", + [sym_expression_statement] = "expression_statement", + [sym_variable_declaration] = "variable_declaration", + [sym_lexical_declaration] = "lexical_declaration", + [sym_variable_declarator] = "variable_declarator", + [sym_statement_block] = "statement_block", + [sym_else_clause] = "else_clause", + [sym_if_statement] = "if_statement", + [sym_switch_statement] = "switch_statement", + [sym_for_statement] = "for_statement", + [sym_for_in_statement] = "for_in_statement", + [sym__for_header] = "_for_header", + [sym_while_statement] = "while_statement", + [sym_do_statement] = "do_statement", + [sym_try_statement] = "try_statement", + [sym_with_statement] = "with_statement", + [sym_break_statement] = "break_statement", + [sym_continue_statement] = "continue_statement", + [sym_debugger_statement] = "debugger_statement", + [sym_return_statement] = "return_statement", + [sym_throw_statement] = "throw_statement", + [sym_empty_statement] = "empty_statement", + [sym_labeled_statement] = "labeled_statement", + [sym_switch_body] = "switch_body", + [sym_switch_case] = "switch_case", + [sym_switch_default] = "switch_default", + [sym_catch_clause] = "catch_clause", + [sym_finally_clause] = "finally_clause", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym_expression] = "expression", + [sym_primary_expression] = "primary_expression", + [sym_yield_expression] = "yield_expression", + [sym_object] = "object", + [sym_object_pattern] = "object_pattern", + [sym_assignment_pattern] = "assignment_pattern", + [sym_object_assignment_pattern] = "object_assignment_pattern", + [sym_array] = "array", + [sym_array_pattern] = "array_pattern", + [sym_jsx_element] = "jsx_element", + [sym_jsx_expression] = "jsx_expression", + [sym_jsx_opening_element] = "jsx_opening_element", + [sym_nested_identifier] = "nested_identifier", + [sym_jsx_namespace_name] = "jsx_namespace_name", + [sym_jsx_closing_element] = "jsx_closing_element", + [sym_jsx_self_closing_element] = "jsx_self_closing_element", + [sym_jsx_attribute] = "jsx_attribute", + [sym__jsx_string] = "string", + [sym__jsx_lone_ampersand] = "jsx_text", + [sym__jsx_string_lone_ampersand] = "string_fragment", + [sym_class] = "class", + [sym_class_declaration] = "class_declaration", + [sym_class_heritage] = "class_heritage", + [sym_function_expression] = "function_expression", + [sym_function_declaration] = "function_declaration", + [sym_generator_function] = "generator_function", + [sym_generator_function_declaration] = "generator_function_declaration", + [sym_arrow_function] = "arrow_function", + [sym__call_signature] = "_call_signature", + [sym__formal_parameter] = "_formal_parameter", + [sym_optional_chain] = "optional_chain", + [sym_call_expression] = "call_expression", + [sym_new_expression] = "new_expression", + [sym_await_expression] = "await_expression", + [sym_member_expression] = "member_expression", + [sym_subscript_expression] = "subscript_expression", + [sym_assignment_expression] = "assignment_expression", + [sym__augmented_assignment_lhs] = "_augmented_assignment_lhs", + [sym_augmented_assignment_expression] = "augmented_assignment_expression", + [sym__initializer] = "_initializer", + [sym__destructuring_pattern] = "_destructuring_pattern", + [sym_spread_element] = "spread_element", + [sym_ternary_expression] = "ternary_expression", + [sym_binary_expression] = "binary_expression", + [sym_unary_expression] = "unary_expression", + [sym_update_expression] = "update_expression", + [sym_sequence_expression] = "sequence_expression", + [sym_string] = "string", + [sym_template_string] = "template_string", + [sym_template_substitution] = "template_substitution", + [sym_regex] = "regex", + [sym_meta_property] = "meta_property", + [sym_arguments] = "arguments", + [sym_decorator] = "decorator", + [sym_decorator_member_expression] = "member_expression", + [sym_decorator_call_expression] = "call_expression", + [sym_class_body] = "class_body", + [sym_formal_parameters] = "formal_parameters", + [sym_class_static_block] = "class_static_block", + [sym_pattern] = "pattern", + [sym_rest_pattern] = "rest_pattern", + [sym_method_definition] = "method_definition", + [sym_pair] = "pair", + [sym_pair_pattern] = "pair_pattern", + [sym__property_name] = "_property_name", + [sym_computed_property_name] = "computed_property_name", + [sym_public_field_definition] = "public_field_definition", + [sym__import_identifier] = "_import_identifier", + [sym_non_null_expression] = "non_null_expression", + [sym_method_signature] = "method_signature", + [sym_abstract_method_signature] = "abstract_method_signature", + [sym_function_signature] = "function_signature", + [sym_decorator_parenthesized_expression] = "parenthesized_expression", + [sym_as_expression] = "as_expression", + [sym_satisfies_expression] = "satisfies_expression", + [sym_instantiation_expression] = "instantiation_expression", + [sym_import_require_clause] = "import_require_clause", + [sym_extends_clause] = "extends_clause", + [sym__extends_clause_single] = "_extends_clause_single", + [sym_implements_clause] = "implements_clause", + [sym_ambient_declaration] = "ambient_declaration", + [sym_abstract_class_declaration] = "abstract_class_declaration", + [sym_module] = "module", + [sym_internal_module] = "internal_module", + [sym__module] = "_module", + [sym_import_alias] = "import_alias", + [sym_nested_type_identifier] = "nested_type_identifier", + [sym_interface_declaration] = "interface_declaration", + [sym_extends_type_clause] = "extends_type_clause", + [sym_enum_declaration] = "enum_declaration", + [sym_enum_body] = "enum_body", + [sym_enum_assignment] = "enum_assignment", + [sym_type_alias_declaration] = "type_alias_declaration", + [sym_accessibility_modifier] = "accessibility_modifier", + [sym_override_modifier] = "override_modifier", + [sym_required_parameter] = "required_parameter", + [sym_optional_parameter] = "optional_parameter", + [sym__parameter_name] = "_parameter_name", + [sym_omitting_type_annotation] = "omitting_type_annotation", + [sym_adding_type_annotation] = "adding_type_annotation", + [sym_opting_type_annotation] = "opting_type_annotation", + [sym_type_annotation] = "type_annotation", + [sym__type_query_member_expression_in_type_annotation] = "member_expression", + [sym__type_query_call_expression_in_type_annotation] = "call_expression", + [sym_asserts] = "asserts", + [sym_asserts_annotation] = "asserts_annotation", + [sym_type] = "type", + [sym_tuple_parameter] = "required_parameter", + [sym_optional_tuple_parameter] = "optional_parameter", + [sym_optional_type] = "optional_type", + [sym_rest_type] = "rest_type", + [sym__tuple_type_member] = "_tuple_type_member", + [sym_constructor_type] = "constructor_type", + [sym_primary_type] = "primary_type", + [sym_template_type] = "template_type", + [sym_template_literal_type] = "template_literal_type", + [sym_infer_type] = "infer_type", + [sym_conditional_type] = "conditional_type", + [sym_generic_type] = "generic_type", + [sym_type_predicate] = "type_predicate", + [sym_type_predicate_annotation] = "type_predicate_annotation", + [sym__type_query_member_expression] = "member_expression", + [sym__type_query_subscript_expression] = "subscript_expression", + [sym__type_query_call_expression] = "call_expression", + [sym__type_query_instantiation_expression] = "instantiation_expression", + [sym_type_query] = "type_query", + [sym_index_type_query] = "index_type_query", + [sym_lookup_type] = "lookup_type", + [sym_mapped_type_clause] = "mapped_type_clause", + [sym_literal_type] = "literal_type", + [sym__number] = "unary_expression", + [sym_existential_type] = "existential_type", + [sym_flow_maybe_type] = "flow_maybe_type", + [sym_parenthesized_type] = "parenthesized_type", + [sym_predefined_type] = "predefined_type", + [sym_type_arguments] = "type_arguments", + [sym_object_type] = "object_type", + [sym_call_signature] = "call_signature", + [sym_property_signature] = "property_signature", + [sym_type_parameters] = "type_parameters", + [sym_type_parameter] = "type_parameter", + [sym_default_type] = "default_type", + [sym_constraint] = "constraint", + [sym_construct_signature] = "construct_signature", + [sym_index_signature] = "index_signature", + [sym_array_type] = "array_type", + [sym_tuple_type] = "tuple_type", + [sym_readonly_type] = "readonly_type", + [sym_union_type] = "union_type", + [sym_intersection_type] = "intersection_type", + [sym_function_type] = "function_type", + [aux_sym_program_repeat1] = "program_repeat1", + [aux_sym_export_statement_repeat1] = "export_statement_repeat1", + [aux_sym_export_clause_repeat1] = "export_clause_repeat1", + [aux_sym_named_imports_repeat1] = "named_imports_repeat1", + [aux_sym_variable_declaration_repeat1] = "variable_declaration_repeat1", + [aux_sym_switch_body_repeat1] = "switch_body_repeat1", + [aux_sym_object_repeat1] = "object_repeat1", + [aux_sym_object_pattern_repeat1] = "object_pattern_repeat1", + [aux_sym_array_repeat1] = "array_repeat1", + [aux_sym_array_pattern_repeat1] = "array_pattern_repeat1", + [aux_sym_jsx_element_repeat1] = "jsx_element_repeat1", + [aux_sym__jsx_string_repeat1] = "_jsx_string_repeat1", + [aux_sym__jsx_string_repeat2] = "_jsx_string_repeat2", + [aux_sym_sequence_expression_repeat1] = "sequence_expression_repeat1", + [aux_sym_string_repeat1] = "string_repeat1", + [aux_sym_string_repeat2] = "string_repeat2", + [aux_sym_template_string_repeat1] = "template_string_repeat1", + [aux_sym_class_body_repeat1] = "class_body_repeat1", + [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1", + [aux_sym__jsx_start_opening_element_repeat1] = "_jsx_start_opening_element_repeat1", + [aux_sym_extends_clause_repeat1] = "extends_clause_repeat1", + [aux_sym_implements_clause_repeat1] = "implements_clause_repeat1", + [aux_sym_extends_type_clause_repeat1] = "extends_type_clause_repeat1", + [aux_sym_enum_body_repeat1] = "enum_body_repeat1", + [aux_sym_template_literal_type_repeat1] = "template_literal_type_repeat1", + [aux_sym_object_type_repeat1] = "object_type_repeat1", + [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", + [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1", + [alias_sym_interface_body] = "interface_body", + [alias_sym_property_identifier] = "property_identifier", + [alias_sym_shorthand_property_identifier] = "shorthand_property_identifier", + [alias_sym_shorthand_property_identifier_pattern] = "shorthand_property_identifier_pattern", + [alias_sym_statement_identifier] = "statement_identifier", + [alias_sym_this_type] = "this_type", + [alias_sym_type_identifier] = "type_identifier", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [sym_hash_bang_line] = sym_hash_bang_line, + [anon_sym_export] = anon_sym_export, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_default] = anon_sym_default, + [anon_sym_type] = anon_sym_type, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_as] = anon_sym_as, + [anon_sym_namespace] = anon_sym_namespace, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_typeof] = anon_sym_typeof, + [anon_sym_import] = anon_sym_import, + [anon_sym_from] = anon_sym_from, + [anon_sym_with] = anon_sym_with, + [anon_sym_assert] = anon_sym_assert, + [anon_sym_var] = anon_sym_var, + [anon_sym_let] = anon_sym_let, + [anon_sym_const] = anon_sym_const, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_else] = anon_sym_else, + [anon_sym_if] = anon_sym_if, + [anon_sym_switch] = anon_sym_switch, + [anon_sym_for] = anon_sym_for, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_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, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, + [anon_sym_debugger] = anon_sym_debugger, + [anon_sym_return] = anon_sym_return, + [anon_sym_throw] = anon_sym_throw, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_case] = anon_sym_case, + [anon_sym_catch] = anon_sym_catch, + [anon_sym_finally] = anon_sym_finally, + [anon_sym_yield] = anon_sym_yield, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [sym_html_character_reference] = sym_html_character_reference, + [anon_sym_GT] = anon_sym_GT, + [sym_jsx_identifier] = sym_identifier, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_LT_SLASH] = anon_sym_LT_SLASH, + [anon_sym_SLASH_GT] = anon_sym_SLASH_GT, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [sym_unescaped_double_jsx_string_fragment] = sym__template_chars, + [sym_unescaped_single_jsx_string_fragment] = sym__template_chars, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_AMP2] = anon_sym_AMP, + [anon_sym_class] = anon_sym_class, + [anon_sym_async] = anon_sym_async, + [anon_sym_function] = anon_sym_function, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [anon_sym_QMARK_DOT] = anon_sym_QMARK_DOT, + [anon_sym_new] = anon_sym_new, + [anon_sym_using] = anon_sym_using, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_GT_GT_GT_EQ] = anon_sym_GT_GT_GT_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, + [anon_sym_AMP_AMP_EQ] = anon_sym_AMP_AMP_EQ, + [anon_sym_PIPE_PIPE_EQ] = anon_sym_PIPE_PIPE_EQ, + [anon_sym_QMARK_QMARK_EQ] = anon_sym_QMARK_QMARK_EQ, + [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_AMP3] = anon_sym_AMP, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, + [anon_sym_instanceof] = anon_sym_instanceof, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_void] = anon_sym_void, + [anon_sym_delete] = anon_sym_delete, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [sym_unescaped_double_string_fragment] = sym__template_chars, + [sym_unescaped_single_string_fragment] = sym__template_chars, + [sym_escape_sequence] = sym_escape_sequence, + [sym_comment] = sym_comment, + [anon_sym_BQUOTE] = anon_sym_BQUOTE, + [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, + [anon_sym_SLASH2] = anon_sym_SLASH, + [sym_regex_pattern] = sym_regex_pattern, + [sym_regex_flags] = sym_regex_flags, + [sym_number] = sym_number, + [sym_private_property_identifier] = sym_private_property_identifier, + [anon_sym_target] = anon_sym_target, + [anon_sym_meta] = anon_sym_meta, + [sym_this] = sym_this, + [sym_super] = sym_super, + [sym_true] = sym_true, + [sym_false] = sym_false, + [sym_null] = sym_null, + [sym_undefined] = sym_undefined, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_static] = anon_sym_static, + [anon_sym_readonly] = anon_sym_readonly, + [anon_sym_get] = anon_sym_get, + [anon_sym_set] = anon_sym_set, + [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_declare] = anon_sym_declare, + [anon_sym_public] = anon_sym_public, + [anon_sym_private] = anon_sym_private, + [anon_sym_protected] = anon_sym_protected, + [anon_sym_override] = anon_sym_override, + [anon_sym_module] = anon_sym_module, + [anon_sym_any] = anon_sym_any, + [anon_sym_number] = anon_sym_number, + [anon_sym_boolean] = anon_sym_boolean, + [anon_sym_string] = anon_sym_string, + [anon_sym_symbol] = anon_sym_symbol, + [anon_sym_object] = anon_sym_object, + [anon_sym_abstract] = anon_sym_abstract, + [anon_sym_accessor] = anon_sym_accessor, + [anon_sym_satisfies] = anon_sym_satisfies, + [anon_sym_require] = anon_sym_require, + [anon_sym_extends] = anon_sym_extends, + [anon_sym_implements] = anon_sym_implements, + [anon_sym_global] = anon_sym_global, + [anon_sym_interface] = anon_sym_interface, + [anon_sym_enum] = anon_sym_enum, + [anon_sym_DASH_QMARK_COLON] = anon_sym_DASH_QMARK_COLON, + [anon_sym_PLUS_QMARK_COLON] = anon_sym_PLUS_QMARK_COLON, + [anon_sym_QMARK_COLON] = anon_sym_QMARK_COLON, + [anon_sym_asserts] = anon_sym_asserts, + [anon_sym_infer] = anon_sym_infer, + [anon_sym_is] = anon_sym_is, + [anon_sym_keyof] = anon_sym_keyof, + [anon_sym_unique] = anon_sym_unique, + [anon_sym_unknown] = anon_sym_unknown, + [anon_sym_never] = anon_sym_never, + [anon_sym_LBRACE_PIPE] = anon_sym_LBRACE_PIPE, + [anon_sym_PIPE_RBRACE] = anon_sym_PIPE_RBRACE, + [sym__automatic_semicolon] = sym__automatic_semicolon, + [sym__template_chars] = sym__template_chars, + [sym__ternary_qmark] = anon_sym_QMARK, + [sym_html_comment] = sym_html_comment, + [sym_jsx_text] = sym_jsx_text, + [sym__function_signature_automatic_semicolon] = sym__function_signature_automatic_semicolon, + [sym___error_recovery] = sym___error_recovery, + [sym_program] = sym_program, + [sym_export_statement] = sym_export_statement, + [sym_namespace_export] = sym_namespace_export, + [sym_export_clause] = sym_export_clause, + [sym_export_specifier] = sym_export_specifier, + [sym__module_export_name] = sym__module_export_name, + [sym_declaration] = sym_declaration, + [sym_import] = sym_import, + [sym_import_statement] = sym_import_statement, + [sym_import_clause] = sym_import_clause, + [sym__from_clause] = sym__from_clause, + [sym_namespace_import] = sym_namespace_import, + [sym_named_imports] = sym_named_imports, + [sym_import_specifier] = sym_import_specifier, + [sym_import_attribute] = sym_import_attribute, + [sym_statement] = sym_statement, + [sym_expression_statement] = sym_expression_statement, + [sym_variable_declaration] = sym_variable_declaration, + [sym_lexical_declaration] = sym_lexical_declaration, + [sym_variable_declarator] = sym_variable_declarator, + [sym_statement_block] = sym_statement_block, + [sym_else_clause] = sym_else_clause, + [sym_if_statement] = sym_if_statement, + [sym_switch_statement] = sym_switch_statement, + [sym_for_statement] = sym_for_statement, + [sym_for_in_statement] = sym_for_in_statement, + [sym__for_header] = sym__for_header, + [sym_while_statement] = sym_while_statement, + [sym_do_statement] = sym_do_statement, + [sym_try_statement] = sym_try_statement, + [sym_with_statement] = sym_with_statement, + [sym_break_statement] = sym_break_statement, + [sym_continue_statement] = sym_continue_statement, + [sym_debugger_statement] = sym_debugger_statement, + [sym_return_statement] = sym_return_statement, + [sym_throw_statement] = sym_throw_statement, + [sym_empty_statement] = sym_empty_statement, + [sym_labeled_statement] = sym_labeled_statement, + [sym_switch_body] = sym_switch_body, + [sym_switch_case] = sym_switch_case, + [sym_switch_default] = sym_switch_default, + [sym_catch_clause] = sym_catch_clause, + [sym_finally_clause] = sym_finally_clause, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_expression] = sym_expression, + [sym_primary_expression] = sym_primary_expression, + [sym_yield_expression] = sym_yield_expression, + [sym_object] = sym_object, + [sym_object_pattern] = sym_object_pattern, + [sym_assignment_pattern] = sym_assignment_pattern, + [sym_object_assignment_pattern] = sym_object_assignment_pattern, + [sym_array] = sym_array, + [sym_array_pattern] = sym_array_pattern, + [sym_jsx_element] = sym_jsx_element, + [sym_jsx_expression] = sym_jsx_expression, + [sym_jsx_opening_element] = sym_jsx_opening_element, + [sym_nested_identifier] = sym_nested_identifier, + [sym_jsx_namespace_name] = sym_jsx_namespace_name, + [sym_jsx_closing_element] = sym_jsx_closing_element, + [sym_jsx_self_closing_element] = sym_jsx_self_closing_element, + [sym_jsx_attribute] = sym_jsx_attribute, + [sym__jsx_string] = sym_string, + [sym__jsx_lone_ampersand] = sym_jsx_text, + [sym__jsx_string_lone_ampersand] = sym__template_chars, + [sym_class] = sym_class, + [sym_class_declaration] = sym_class_declaration, + [sym_class_heritage] = sym_class_heritage, + [sym_function_expression] = sym_function_expression, + [sym_function_declaration] = sym_function_declaration, + [sym_generator_function] = sym_generator_function, + [sym_generator_function_declaration] = sym_generator_function_declaration, + [sym_arrow_function] = sym_arrow_function, + [sym__call_signature] = sym__call_signature, + [sym__formal_parameter] = sym__formal_parameter, + [sym_optional_chain] = sym_optional_chain, + [sym_call_expression] = sym_call_expression, + [sym_new_expression] = sym_new_expression, + [sym_await_expression] = sym_await_expression, + [sym_member_expression] = sym_member_expression, + [sym_subscript_expression] = sym_subscript_expression, + [sym_assignment_expression] = sym_assignment_expression, + [sym__augmented_assignment_lhs] = sym__augmented_assignment_lhs, + [sym_augmented_assignment_expression] = sym_augmented_assignment_expression, + [sym__initializer] = sym__initializer, + [sym__destructuring_pattern] = sym__destructuring_pattern, + [sym_spread_element] = sym_spread_element, + [sym_ternary_expression] = sym_ternary_expression, + [sym_binary_expression] = sym_binary_expression, + [sym_unary_expression] = sym_unary_expression, + [sym_update_expression] = sym_update_expression, + [sym_sequence_expression] = sym_sequence_expression, + [sym_string] = sym_string, + [sym_template_string] = sym_template_string, + [sym_template_substitution] = sym_template_substitution, + [sym_regex] = sym_regex, + [sym_meta_property] = sym_meta_property, + [sym_arguments] = sym_arguments, + [sym_decorator] = sym_decorator, + [sym_decorator_member_expression] = sym_member_expression, + [sym_decorator_call_expression] = sym_call_expression, + [sym_class_body] = sym_class_body, + [sym_formal_parameters] = sym_formal_parameters, + [sym_class_static_block] = sym_class_static_block, + [sym_pattern] = sym_pattern, + [sym_rest_pattern] = sym_rest_pattern, + [sym_method_definition] = sym_method_definition, + [sym_pair] = sym_pair, + [sym_pair_pattern] = sym_pair_pattern, + [sym__property_name] = sym__property_name, + [sym_computed_property_name] = sym_computed_property_name, + [sym_public_field_definition] = sym_public_field_definition, + [sym__import_identifier] = sym__import_identifier, + [sym_non_null_expression] = sym_non_null_expression, + [sym_method_signature] = sym_method_signature, + [sym_abstract_method_signature] = sym_abstract_method_signature, + [sym_function_signature] = sym_function_signature, + [sym_decorator_parenthesized_expression] = sym_parenthesized_expression, + [sym_as_expression] = sym_as_expression, + [sym_satisfies_expression] = sym_satisfies_expression, + [sym_instantiation_expression] = sym_instantiation_expression, + [sym_import_require_clause] = sym_import_require_clause, + [sym_extends_clause] = sym_extends_clause, + [sym__extends_clause_single] = sym__extends_clause_single, + [sym_implements_clause] = sym_implements_clause, + [sym_ambient_declaration] = sym_ambient_declaration, + [sym_abstract_class_declaration] = sym_abstract_class_declaration, + [sym_module] = sym_module, + [sym_internal_module] = sym_internal_module, + [sym__module] = sym__module, + [sym_import_alias] = sym_import_alias, + [sym_nested_type_identifier] = sym_nested_type_identifier, + [sym_interface_declaration] = sym_interface_declaration, + [sym_extends_type_clause] = sym_extends_type_clause, + [sym_enum_declaration] = sym_enum_declaration, + [sym_enum_body] = sym_enum_body, + [sym_enum_assignment] = sym_enum_assignment, + [sym_type_alias_declaration] = sym_type_alias_declaration, + [sym_accessibility_modifier] = sym_accessibility_modifier, + [sym_override_modifier] = sym_override_modifier, + [sym_required_parameter] = sym_required_parameter, + [sym_optional_parameter] = sym_optional_parameter, + [sym__parameter_name] = sym__parameter_name, + [sym_omitting_type_annotation] = sym_omitting_type_annotation, + [sym_adding_type_annotation] = sym_adding_type_annotation, + [sym_opting_type_annotation] = sym_opting_type_annotation, + [sym_type_annotation] = sym_type_annotation, + [sym__type_query_member_expression_in_type_annotation] = sym_member_expression, + [sym__type_query_call_expression_in_type_annotation] = sym_call_expression, + [sym_asserts] = sym_asserts, + [sym_asserts_annotation] = sym_asserts_annotation, + [sym_type] = sym_type, + [sym_tuple_parameter] = sym_required_parameter, + [sym_optional_tuple_parameter] = sym_optional_parameter, + [sym_optional_type] = sym_optional_type, + [sym_rest_type] = sym_rest_type, + [sym__tuple_type_member] = sym__tuple_type_member, + [sym_constructor_type] = sym_constructor_type, + [sym_primary_type] = sym_primary_type, + [sym_template_type] = sym_template_type, + [sym_template_literal_type] = sym_template_literal_type, + [sym_infer_type] = sym_infer_type, + [sym_conditional_type] = sym_conditional_type, + [sym_generic_type] = sym_generic_type, + [sym_type_predicate] = sym_type_predicate, + [sym_type_predicate_annotation] = sym_type_predicate_annotation, + [sym__type_query_member_expression] = sym_member_expression, + [sym__type_query_subscript_expression] = sym_subscript_expression, + [sym__type_query_call_expression] = sym_call_expression, + [sym__type_query_instantiation_expression] = sym_instantiation_expression, + [sym_type_query] = sym_type_query, + [sym_index_type_query] = sym_index_type_query, + [sym_lookup_type] = sym_lookup_type, + [sym_mapped_type_clause] = sym_mapped_type_clause, + [sym_literal_type] = sym_literal_type, + [sym__number] = sym_unary_expression, + [sym_existential_type] = sym_existential_type, + [sym_flow_maybe_type] = sym_flow_maybe_type, + [sym_parenthesized_type] = sym_parenthesized_type, + [sym_predefined_type] = sym_predefined_type, + [sym_type_arguments] = sym_type_arguments, + [sym_object_type] = sym_object_type, + [sym_call_signature] = sym_call_signature, + [sym_property_signature] = sym_property_signature, + [sym_type_parameters] = sym_type_parameters, + [sym_type_parameter] = sym_type_parameter, + [sym_default_type] = sym_default_type, + [sym_constraint] = sym_constraint, + [sym_construct_signature] = sym_construct_signature, + [sym_index_signature] = sym_index_signature, + [sym_array_type] = sym_array_type, + [sym_tuple_type] = sym_tuple_type, + [sym_readonly_type] = sym_readonly_type, + [sym_union_type] = sym_union_type, + [sym_intersection_type] = sym_intersection_type, + [sym_function_type] = sym_function_type, + [aux_sym_program_repeat1] = aux_sym_program_repeat1, + [aux_sym_export_statement_repeat1] = aux_sym_export_statement_repeat1, + [aux_sym_export_clause_repeat1] = aux_sym_export_clause_repeat1, + [aux_sym_named_imports_repeat1] = aux_sym_named_imports_repeat1, + [aux_sym_variable_declaration_repeat1] = aux_sym_variable_declaration_repeat1, + [aux_sym_switch_body_repeat1] = aux_sym_switch_body_repeat1, + [aux_sym_object_repeat1] = aux_sym_object_repeat1, + [aux_sym_object_pattern_repeat1] = aux_sym_object_pattern_repeat1, + [aux_sym_array_repeat1] = aux_sym_array_repeat1, + [aux_sym_array_pattern_repeat1] = aux_sym_array_pattern_repeat1, + [aux_sym_jsx_element_repeat1] = aux_sym_jsx_element_repeat1, + [aux_sym__jsx_string_repeat1] = aux_sym__jsx_string_repeat1, + [aux_sym__jsx_string_repeat2] = aux_sym__jsx_string_repeat2, + [aux_sym_sequence_expression_repeat1] = aux_sym_sequence_expression_repeat1, + [aux_sym_string_repeat1] = aux_sym_string_repeat1, + [aux_sym_string_repeat2] = aux_sym_string_repeat2, + [aux_sym_template_string_repeat1] = aux_sym_template_string_repeat1, + [aux_sym_class_body_repeat1] = aux_sym_class_body_repeat1, + [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1, + [aux_sym__jsx_start_opening_element_repeat1] = aux_sym__jsx_start_opening_element_repeat1, + [aux_sym_extends_clause_repeat1] = aux_sym_extends_clause_repeat1, + [aux_sym_implements_clause_repeat1] = aux_sym_implements_clause_repeat1, + [aux_sym_extends_type_clause_repeat1] = aux_sym_extends_type_clause_repeat1, + [aux_sym_enum_body_repeat1] = aux_sym_enum_body_repeat1, + [aux_sym_template_literal_type_repeat1] = aux_sym_template_literal_type_repeat1, + [aux_sym_object_type_repeat1] = aux_sym_object_type_repeat1, + [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, + [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1, + [alias_sym_interface_body] = alias_sym_interface_body, + [alias_sym_property_identifier] = alias_sym_property_identifier, + [alias_sym_shorthand_property_identifier] = alias_sym_shorthand_property_identifier, + [alias_sym_shorthand_property_identifier_pattern] = alias_sym_shorthand_property_identifier_pattern, + [alias_sym_statement_identifier] = alias_sym_statement_identifier, + [alias_sym_this_type] = alias_sym_this_type, + [alias_sym_type_identifier] = alias_sym_type_identifier, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [sym_hash_bang_line] = { + .visible = true, + .named = true, + }, + [anon_sym_export] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_default] = { + .visible = true, + .named = false, + }, + [anon_sym_type] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [anon_sym_namespace] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_typeof] = { + .visible = true, + .named = false, + }, + [anon_sym_import] = { + .visible = true, + .named = false, + }, + [anon_sym_from] = { + .visible = true, + .named = false, + }, + [anon_sym_with] = { + .visible = true, + .named = false, + }, + [anon_sym_assert] = { + .visible = true, + .named = false, + }, + [anon_sym_var] = { + .visible = true, + .named = false, + }, + [anon_sym_let] = { + .visible = true, + .named = false, + }, + [anon_sym_const] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_switch] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_await] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_of] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_do] = { + .visible = true, + .named = false, + }, + [anon_sym_try] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { + .visible = true, + .named = false, + }, + [anon_sym_debugger] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_throw] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_case] = { + .visible = true, + .named = false, + }, + [anon_sym_catch] = { + .visible = true, + .named = false, + }, + [anon_sym_finally] = { + .visible = true, + .named = false, + }, + [anon_sym_yield] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [sym_html_character_reference] = { + .visible = true, + .named = true, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [sym_jsx_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [sym_unescaped_double_jsx_string_fragment] = { + .visible = true, + .named = true, + }, + [sym_unescaped_single_jsx_string_fragment] = { + .visible = true, + .named = true, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP2] = { + .visible = true, + .named = false, + }, + [anon_sym_class] = { + .visible = true, + .named = false, + }, + [anon_sym_async] = { + .visible = true, + .named = false, + }, + [anon_sym_function] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_new] = { + .visible = true, + .named = false, + }, + [anon_sym_using] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_QMARK_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP3] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_instanceof] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_void] = { + .visible = true, + .named = false, + }, + [anon_sym_delete] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH] = { + .visible = true, + .named = false, + }, + [sym_unescaped_double_string_fragment] = { + .visible = true, + .named = true, + }, + [sym_unescaped_single_string_fragment] = { + .visible = true, + .named = true, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [anon_sym_BQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH2] = { + .visible = true, + .named = false, + }, + [sym_regex_pattern] = { + .visible = true, + .named = true, + }, + [sym_regex_flags] = { + .visible = true, + .named = true, + }, + [sym_number] = { + .visible = true, + .named = true, + }, + [sym_private_property_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_target] = { + .visible = true, + .named = false, + }, + [anon_sym_meta] = { + .visible = true, + .named = false, + }, + [sym_this] = { + .visible = true, + .named = true, + }, + [sym_super] = { + .visible = true, + .named = true, + }, + [sym_true] = { + .visible = true, + .named = true, + }, + [sym_false] = { + .visible = true, + .named = true, + }, + [sym_null] = { + .visible = true, + .named = true, + }, + [sym_undefined] = { + .visible = true, + .named = true, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_static] = { + .visible = true, + .named = false, + }, + [anon_sym_readonly] = { + .visible = true, + .named = false, + }, + [anon_sym_get] = { + .visible = true, + .named = false, + }, + [anon_sym_set] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_declare] = { + .visible = true, + .named = false, + }, + [anon_sym_public] = { + .visible = true, + .named = false, + }, + [anon_sym_private] = { + .visible = true, + .named = false, + }, + [anon_sym_protected] = { + .visible = true, + .named = false, + }, + [anon_sym_override] = { + .visible = true, + .named = false, + }, + [anon_sym_module] = { + .visible = true, + .named = false, + }, + [anon_sym_any] = { + .visible = true, + .named = false, + }, + [anon_sym_number] = { + .visible = true, + .named = false, + }, + [anon_sym_boolean] = { + .visible = true, + .named = false, + }, + [anon_sym_string] = { + .visible = true, + .named = false, + }, + [anon_sym_symbol] = { + .visible = true, + .named = false, + }, + [anon_sym_object] = { + .visible = true, + .named = false, + }, + [anon_sym_abstract] = { + .visible = true, + .named = false, + }, + [anon_sym_accessor] = { + .visible = true, + .named = false, + }, + [anon_sym_satisfies] = { + .visible = true, + .named = false, + }, + [anon_sym_require] = { + .visible = true, + .named = false, + }, + [anon_sym_extends] = { + .visible = true, + .named = false, + }, + [anon_sym_implements] = { + .visible = true, + .named = false, + }, + [anon_sym_global] = { + .visible = true, + .named = false, + }, + [anon_sym_interface] = { + .visible = true, + .named = false, + }, + [anon_sym_enum] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_QMARK_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_QMARK_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_asserts] = { + .visible = true, + .named = false, + }, + [anon_sym_infer] = { + .visible = true, + .named = false, + }, + [anon_sym_is] = { + .visible = true, + .named = false, + }, + [anon_sym_keyof] = { + .visible = true, + .named = false, + }, + [anon_sym_unique] = { + .visible = true, + .named = false, + }, + [anon_sym_unknown] = { + .visible = true, + .named = false, + }, + [anon_sym_never] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_RBRACE] = { + .visible = true, + .named = false, + }, + [sym__automatic_semicolon] = { + .visible = false, + .named = true, + }, + [sym__template_chars] = { + .visible = true, + .named = true, + }, + [sym__ternary_qmark] = { + .visible = true, + .named = false, + }, + [sym_html_comment] = { + .visible = true, + .named = true, + }, + [sym_jsx_text] = { + .visible = true, + .named = true, + }, + [sym__function_signature_automatic_semicolon] = { + .visible = false, + .named = true, + }, + [sym___error_recovery] = { + .visible = false, + .named = true, + }, + [sym_program] = { + .visible = true, + .named = true, + }, + [sym_export_statement] = { + .visible = true, + .named = true, + }, + [sym_namespace_export] = { + .visible = true, + .named = true, + }, + [sym_export_clause] = { + .visible = true, + .named = true, + }, + [sym_export_specifier] = { + .visible = true, + .named = true, + }, + [sym__module_export_name] = { + .visible = false, + .named = true, + }, + [sym_declaration] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_import] = { + .visible = true, + .named = true, + }, + [sym_import_statement] = { + .visible = true, + .named = true, + }, + [sym_import_clause] = { + .visible = true, + .named = true, + }, + [sym__from_clause] = { + .visible = false, + .named = true, + }, + [sym_namespace_import] = { + .visible = true, + .named = true, + }, + [sym_named_imports] = { + .visible = true, + .named = true, + }, + [sym_import_specifier] = { + .visible = true, + .named = true, + }, + [sym_import_attribute] = { + .visible = true, + .named = true, + }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_expression_statement] = { + .visible = true, + .named = true, + }, + [sym_variable_declaration] = { + .visible = true, + .named = true, + }, + [sym_lexical_declaration] = { + .visible = true, + .named = true, + }, + [sym_variable_declarator] = { + .visible = true, + .named = true, + }, + [sym_statement_block] = { + .visible = true, + .named = true, + }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_switch_statement] = { + .visible = true, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym_for_in_statement] = { + .visible = true, + .named = true, + }, + [sym__for_header] = { + .visible = false, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_do_statement] = { + .visible = true, + .named = true, + }, + [sym_try_statement] = { + .visible = true, + .named = true, + }, + [sym_with_statement] = { + .visible = true, + .named = true, + }, + [sym_break_statement] = { + .visible = true, + .named = true, + }, + [sym_continue_statement] = { + .visible = true, + .named = true, + }, + [sym_debugger_statement] = { + .visible = true, + .named = true, + }, + [sym_return_statement] = { + .visible = true, + .named = true, + }, + [sym_throw_statement] = { + .visible = true, + .named = true, + }, + [sym_empty_statement] = { + .visible = true, + .named = true, + }, + [sym_labeled_statement] = { + .visible = true, + .named = true, + }, + [sym_switch_body] = { + .visible = true, + .named = true, + }, + [sym_switch_case] = { + .visible = true, + .named = true, + }, + [sym_switch_default] = { + .visible = true, + .named = true, + }, + [sym_catch_clause] = { + .visible = true, + .named = true, + }, + [sym_finally_clause] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_primary_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_yield_expression] = { + .visible = true, + .named = true, + }, + [sym_object] = { + .visible = true, + .named = true, + }, + [sym_object_pattern] = { + .visible = true, + .named = true, + }, + [sym_assignment_pattern] = { + .visible = true, + .named = true, + }, + [sym_object_assignment_pattern] = { + .visible = true, + .named = true, + }, + [sym_array] = { + .visible = true, + .named = true, + }, + [sym_array_pattern] = { + .visible = true, + .named = true, + }, + [sym_jsx_element] = { + .visible = true, + .named = true, + }, + [sym_jsx_expression] = { + .visible = true, + .named = true, + }, + [sym_jsx_opening_element] = { + .visible = true, + .named = true, + }, + [sym_nested_identifier] = { + .visible = true, + .named = true, + }, + [sym_jsx_namespace_name] = { + .visible = true, + .named = true, + }, + [sym_jsx_closing_element] = { + .visible = true, + .named = true, + }, + [sym_jsx_self_closing_element] = { + .visible = true, + .named = true, + }, + [sym_jsx_attribute] = { + .visible = true, + .named = true, + }, + [sym__jsx_string] = { + .visible = true, + .named = true, + }, + [sym__jsx_lone_ampersand] = { + .visible = true, + .named = true, + }, + [sym__jsx_string_lone_ampersand] = { + .visible = true, + .named = true, + }, + [sym_class] = { + .visible = true, + .named = true, + }, + [sym_class_declaration] = { + .visible = true, + .named = true, + }, + [sym_class_heritage] = { + .visible = true, + .named = true, + }, + [sym_function_expression] = { + .visible = true, + .named = true, + }, + [sym_function_declaration] = { + .visible = true, + .named = true, + }, + [sym_generator_function] = { + .visible = true, + .named = true, + }, + [sym_generator_function_declaration] = { + .visible = true, + .named = true, + }, + [sym_arrow_function] = { + .visible = true, + .named = true, + }, + [sym__call_signature] = { + .visible = false, + .named = true, + }, + [sym__formal_parameter] = { + .visible = false, + .named = true, + }, + [sym_optional_chain] = { + .visible = true, + .named = true, + }, + [sym_call_expression] = { + .visible = true, + .named = true, + }, + [sym_new_expression] = { + .visible = true, + .named = true, + }, + [sym_await_expression] = { + .visible = true, + .named = true, + }, + [sym_member_expression] = { + .visible = true, + .named = true, + }, + [sym_subscript_expression] = { + .visible = true, + .named = true, + }, + [sym_assignment_expression] = { + .visible = true, + .named = true, + }, + [sym__augmented_assignment_lhs] = { + .visible = false, + .named = true, + }, + [sym_augmented_assignment_expression] = { + .visible = true, + .named = true, + }, + [sym__initializer] = { + .visible = false, + .named = true, + }, + [sym__destructuring_pattern] = { + .visible = false, + .named = true, + }, + [sym_spread_element] = { + .visible = true, + .named = true, + }, + [sym_ternary_expression] = { + .visible = true, + .named = true, + }, + [sym_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_unary_expression] = { + .visible = true, + .named = true, + }, + [sym_update_expression] = { + .visible = true, + .named = true, + }, + [sym_sequence_expression] = { + .visible = true, + .named = true, + }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym_template_string] = { + .visible = true, + .named = true, + }, + [sym_template_substitution] = { + .visible = true, + .named = true, + }, + [sym_regex] = { + .visible = true, + .named = true, + }, + [sym_meta_property] = { + .visible = true, + .named = true, + }, + [sym_arguments] = { + .visible = true, + .named = true, + }, + [sym_decorator] = { + .visible = true, + .named = true, + }, + [sym_decorator_member_expression] = { + .visible = true, + .named = true, + }, + [sym_decorator_call_expression] = { + .visible = true, + .named = true, + }, + [sym_class_body] = { + .visible = true, + .named = true, + }, + [sym_formal_parameters] = { + .visible = true, + .named = true, + }, + [sym_class_static_block] = { + .visible = true, + .named = true, + }, + [sym_pattern] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_rest_pattern] = { + .visible = true, + .named = true, + }, + [sym_method_definition] = { + .visible = true, + .named = true, + }, + [sym_pair] = { + .visible = true, + .named = true, + }, + [sym_pair_pattern] = { + .visible = true, + .named = true, + }, + [sym__property_name] = { + .visible = false, + .named = true, + }, + [sym_computed_property_name] = { + .visible = true, + .named = true, + }, + [sym_public_field_definition] = { + .visible = true, + .named = true, + }, + [sym__import_identifier] = { + .visible = false, + .named = true, + }, + [sym_non_null_expression] = { + .visible = true, + .named = true, + }, + [sym_method_signature] = { + .visible = true, + .named = true, + }, + [sym_abstract_method_signature] = { + .visible = true, + .named = true, + }, + [sym_function_signature] = { + .visible = true, + .named = true, + }, + [sym_decorator_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_as_expression] = { + .visible = true, + .named = true, + }, + [sym_satisfies_expression] = { + .visible = true, + .named = true, + }, + [sym_instantiation_expression] = { + .visible = true, + .named = true, + }, + [sym_import_require_clause] = { + .visible = true, + .named = true, + }, + [sym_extends_clause] = { + .visible = true, + .named = true, + }, + [sym__extends_clause_single] = { + .visible = false, + .named = true, + }, + [sym_implements_clause] = { + .visible = true, + .named = true, + }, + [sym_ambient_declaration] = { + .visible = true, + .named = true, + }, + [sym_abstract_class_declaration] = { + .visible = true, + .named = true, + }, + [sym_module] = { + .visible = true, + .named = true, + }, + [sym_internal_module] = { + .visible = true, + .named = true, + }, + [sym__module] = { + .visible = false, + .named = true, + }, + [sym_import_alias] = { + .visible = true, + .named = true, + }, + [sym_nested_type_identifier] = { + .visible = true, + .named = true, + }, + [sym_interface_declaration] = { + .visible = true, + .named = true, + }, + [sym_extends_type_clause] = { + .visible = true, + .named = true, + }, + [sym_enum_declaration] = { + .visible = true, + .named = true, + }, + [sym_enum_body] = { + .visible = true, + .named = true, + }, + [sym_enum_assignment] = { + .visible = true, + .named = true, + }, + [sym_type_alias_declaration] = { + .visible = true, + .named = true, + }, + [sym_accessibility_modifier] = { + .visible = true, + .named = true, + }, + [sym_override_modifier] = { + .visible = true, + .named = true, + }, + [sym_required_parameter] = { + .visible = true, + .named = true, + }, + [sym_optional_parameter] = { + .visible = true, + .named = true, + }, + [sym__parameter_name] = { + .visible = false, + .named = true, + }, + [sym_omitting_type_annotation] = { + .visible = true, + .named = true, + }, + [sym_adding_type_annotation] = { + .visible = true, + .named = true, + }, + [sym_opting_type_annotation] = { + .visible = true, + .named = true, + }, + [sym_type_annotation] = { + .visible = true, + .named = true, + }, + [sym__type_query_member_expression_in_type_annotation] = { + .visible = true, + .named = true, + }, + [sym__type_query_call_expression_in_type_annotation] = { + .visible = true, + .named = true, + }, + [sym_asserts] = { + .visible = true, + .named = true, + }, + [sym_asserts_annotation] = { + .visible = true, + .named = true, + }, + [sym_type] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_tuple_parameter] = { + .visible = true, + .named = true, + }, + [sym_optional_tuple_parameter] = { + .visible = true, + .named = true, + }, + [sym_optional_type] = { + .visible = true, + .named = true, + }, + [sym_rest_type] = { + .visible = true, + .named = true, + }, + [sym__tuple_type_member] = { + .visible = false, + .named = true, + }, + [sym_constructor_type] = { + .visible = true, + .named = true, + }, + [sym_primary_type] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_template_type] = { + .visible = true, + .named = true, + }, + [sym_template_literal_type] = { + .visible = true, + .named = true, + }, + [sym_infer_type] = { + .visible = true, + .named = true, + }, + [sym_conditional_type] = { + .visible = true, + .named = true, + }, + [sym_generic_type] = { + .visible = true, + .named = true, + }, + [sym_type_predicate] = { + .visible = true, + .named = true, + }, + [sym_type_predicate_annotation] = { + .visible = true, + .named = true, + }, + [sym__type_query_member_expression] = { + .visible = true, + .named = true, + }, + [sym__type_query_subscript_expression] = { + .visible = true, + .named = true, + }, + [sym__type_query_call_expression] = { + .visible = true, + .named = true, + }, + [sym__type_query_instantiation_expression] = { + .visible = true, + .named = true, + }, + [sym_type_query] = { + .visible = true, + .named = true, + }, + [sym_index_type_query] = { + .visible = true, + .named = true, + }, + [sym_lookup_type] = { + .visible = true, + .named = true, + }, + [sym_mapped_type_clause] = { + .visible = true, + .named = true, + }, + [sym_literal_type] = { + .visible = true, + .named = true, + }, + [sym__number] = { + .visible = true, + .named = true, + }, + [sym_existential_type] = { + .visible = true, + .named = true, + }, + [sym_flow_maybe_type] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_type] = { + .visible = true, + .named = true, + }, + [sym_predefined_type] = { + .visible = true, + .named = true, + }, + [sym_type_arguments] = { + .visible = true, + .named = true, + }, + [sym_object_type] = { + .visible = true, + .named = true, + }, + [sym_call_signature] = { + .visible = true, + .named = true, + }, + [sym_property_signature] = { + .visible = true, + .named = true, + }, + [sym_type_parameters] = { + .visible = true, + .named = true, + }, + [sym_type_parameter] = { + .visible = true, + .named = true, + }, + [sym_default_type] = { + .visible = true, + .named = true, + }, + [sym_constraint] = { + .visible = true, + .named = true, + }, + [sym_construct_signature] = { + .visible = true, + .named = true, + }, + [sym_index_signature] = { + .visible = true, + .named = true, + }, + [sym_array_type] = { + .visible = true, + .named = true, + }, + [sym_tuple_type] = { + .visible = true, + .named = true, + }, + [sym_readonly_type] = { + .visible = true, + .named = true, + }, + [sym_union_type] = { + .visible = true, + .named = true, + }, + [sym_intersection_type] = { + .visible = true, + .named = true, + }, + [sym_function_type] = { + .visible = true, + .named = true, + }, + [aux_sym_program_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_export_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_export_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_named_imports_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_variable_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_switch_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_object_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_object_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_array_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_array_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_jsx_element_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__jsx_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__jsx_string_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_sequence_expression_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_template_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_class_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_formal_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__jsx_start_opening_element_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_extends_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_implements_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_extends_type_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_enum_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_template_literal_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_object_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_type_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_interface_body] = { + .visible = true, + .named = true, + }, + [alias_sym_property_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_shorthand_property_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_shorthand_property_identifier_pattern] = { + .visible = true, + .named = true, + }, + [alias_sym_statement_identifier] = { + .visible = true, + .named = true, + }, + [alias_sym_this_type] = { + .visible = true, + .named = true, + }, + [alias_sym_type_identifier] = { + .visible = true, + .named = true, + }, +}; + +enum ts_field_identifiers { + field_alias = 1, + field_alternative = 2, + field_argument = 3, + field_arguments = 4, + field_attribute = 5, + field_body = 6, + field_close_tag = 7, + field_condition = 8, + field_consequence = 9, + field_constraint = 10, + field_constructor = 11, + field_declaration = 12, + field_decorator = 13, + field_finalizer = 14, + field_flags = 15, + field_function = 16, + field_handler = 17, + field_increment = 18, + field_index = 19, + field_index_type = 20, + field_initializer = 21, + field_key = 22, + field_kind = 23, + field_label = 24, + field_left = 25, + field_module = 26, + field_name = 27, + field_object = 28, + field_open_tag = 29, + field_operator = 30, + field_optional_chain = 31, + field_parameter = 32, + field_parameters = 33, + field_pattern = 34, + field_property = 35, + field_return_type = 36, + field_right = 37, + field_sign = 38, + field_source = 39, + field_type = 40, + field_type_arguments = 41, + field_type_parameters = 42, + field_value = 43, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alias] = "alias", + [field_alternative] = "alternative", + [field_argument] = "argument", + [field_arguments] = "arguments", + [field_attribute] = "attribute", + [field_body] = "body", + [field_close_tag] = "close_tag", + [field_condition] = "condition", + [field_consequence] = "consequence", + [field_constraint] = "constraint", + [field_constructor] = "constructor", + [field_declaration] = "declaration", + [field_decorator] = "decorator", + [field_finalizer] = "finalizer", + [field_flags] = "flags", + [field_function] = "function", + [field_handler] = "handler", + [field_increment] = "increment", + [field_index] = "index", + [field_index_type] = "index_type", + [field_initializer] = "initializer", + [field_key] = "key", + [field_kind] = "kind", + [field_label] = "label", + [field_left] = "left", + [field_module] = "module", + [field_name] = "name", + [field_object] = "object", + [field_open_tag] = "open_tag", + [field_operator] = "operator", + [field_optional_chain] = "optional_chain", + [field_parameter] = "parameter", + [field_parameters] = "parameters", + [field_pattern] = "pattern", + [field_property] = "property", + [field_return_type] = "return_type", + [field_right] = "right", + [field_sign] = "sign", + [field_source] = "source", + [field_type] = "type", + [field_type_arguments] = "type_arguments", + [field_type_parameters] = "type_parameters", + [field_value] = "value", +}; + +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [2] = {.index = 0, .length = 1}, + [3] = {.index = 1, .length = 1}, + [4] = {.index = 2, .length = 1}, + [5] = {.index = 3, .length = 1}, + [6] = {.index = 4, .length = 2}, + [8] = {.index = 6, .length = 2}, + [9] = {.index = 8, .length = 1}, + [10] = {.index = 9, .length = 2}, + [11] = {.index = 11, .length = 1}, + [12] = {.index = 12, .length = 1}, + [13] = {.index = 3, .length = 1}, + [14] = {.index = 13, .length = 2}, + [15] = {.index = 15, .length = 2}, + [16] = {.index = 17, .length = 1}, + [17] = {.index = 18, .length = 2}, + [18] = {.index = 20, .length = 2}, + [19] = {.index = 22, .length = 2}, + [20] = {.index = 24, .length = 2}, + [21] = {.index = 26, .length = 1}, + [22] = {.index = 27, .length = 2}, + [23] = {.index = 29, .length = 2}, + [24] = {.index = 31, .length = 2}, + [25] = {.index = 33, .length = 2}, + [29] = {.index = 35, .length = 1}, + [30] = {.index = 36, .length = 2}, + [31] = {.index = 38, .length = 2}, + [32] = {.index = 40, .length = 2}, + [33] = {.index = 42, .length = 1}, + [34] = {.index = 43, .length = 2}, + [35] = {.index = 45, .length = 2}, + [36] = {.index = 47, .length = 6}, + [37] = {.index = 53, .length = 1}, + [38] = {.index = 54, .length = 3}, + [39] = {.index = 57, .length = 3}, + [40] = {.index = 60, .length = 2}, + [41] = {.index = 62, .length = 2}, + [42] = {.index = 64, .length = 2}, + [43] = {.index = 66, .length = 2}, + [44] = {.index = 68, .length = 1}, + [45] = {.index = 69, .length = 2}, + [46] = {.index = 71, .length = 1}, + [47] = {.index = 72, .length = 2}, + [50] = {.index = 74, .length = 2}, + [51] = {.index = 76, .length = 2}, + [52] = {.index = 78, .length = 2}, + [53] = {.index = 80, .length = 1}, + [54] = {.index = 81, .length = 2}, + [55] = {.index = 83, .length = 4}, + [56] = {.index = 87, .length = 2}, + [57] = {.index = 89, .length = 2}, + [58] = {.index = 91, .length = 1}, + [59] = {.index = 91, .length = 1}, + [60] = {.index = 92, .length = 1}, + [61] = {.index = 93, .length = 2}, + [62] = {.index = 95, .length = 2}, + [63] = {.index = 91, .length = 1}, + [64] = {.index = 27, .length = 2}, + [65] = {.index = 31, .length = 2}, + [66] = {.index = 97, .length = 3}, + [67] = {.index = 69, .length = 2}, + [68] = {.index = 69, .length = 2}, + [69] = {.index = 100, .length = 2}, + [70] = {.index = 100, .length = 2}, + [71] = {.index = 102, .length = 3}, + [72] = {.index = 102, .length = 3}, + [73] = {.index = 105, .length = 3}, + [74] = {.index = 108, .length = 2}, + [75] = {.index = 110, .length = 2}, + [76] = {.index = 112, .length = 4}, + [77] = {.index = 116, .length = 3}, + [78] = {.index = 119, .length = 2}, + [79] = {.index = 121, .length = 2}, + [80] = {.index = 123, .length = 1}, + [81] = {.index = 124, .length = 1}, + [82] = {.index = 100, .length = 2}, + [83] = {.index = 27, .length = 2}, + [84] = {.index = 125, .length = 2}, + [85] = {.index = 127, .length = 5}, + [86] = {.index = 132, .length = 1}, + [87] = {.index = 133, .length = 1}, + [88] = {.index = 134, .length = 2}, + [89] = {.index = 136, .length = 3}, + [90] = {.index = 139, .length = 2}, + [91] = {.index = 141, .length = 3}, + [92] = {.index = 144, .length = 6}, + [93] = {.index = 150, .length = 1}, + [94] = {.index = 151, .length = 1}, + [95] = {.index = 152, .length = 3}, + [96] = {.index = 155, .length = 3}, + [97] = {.index = 158, .length = 4}, + [98] = {.index = 162, .length = 2}, + [99] = {.index = 164, .length = 2}, + [100] = {.index = 166, .length = 3}, + [101] = {.index = 169, .length = 4}, + [102] = {.index = 173, .length = 1}, + [103] = {.index = 174, .length = 2}, + [104] = {.index = 176, .length = 1}, + [105] = {.index = 177, .length = 2}, + [106] = {.index = 179, .length = 3}, + [107] = {.index = 182, .length = 2}, + [108] = {.index = 184, .length = 4}, + [109] = {.index = 188, .length = 3}, + [110] = {.index = 191, .length = 2}, + [111] = {.index = 193, .length = 2}, + [112] = {.index = 195, .length = 2}, + [113] = {.index = 197, .length = 2}, + [114] = {.index = 199, .length = 2}, + [117] = {.index = 199, .length = 2}, + [118] = {.index = 201, .length = 4}, + [119] = {.index = 205, .length = 2}, + [120] = {.index = 207, .length = 2}, + [121] = {.index = 209, .length = 4}, + [122] = {.index = 207, .length = 2}, + [123] = {.index = 213, .length = 4}, + [124] = {.index = 217, .length = 4}, + [125] = {.index = 221, .length = 5}, + [126] = {.index = 226, .length = 3}, + [127] = {.index = 229, .length = 2}, + [128] = {.index = 229, .length = 2}, + [129] = {.index = 231, .length = 2}, + [130] = {.index = 233, .length = 2}, + [131] = {.index = 235, .length = 2}, + [132] = {.index = 237, .length = 2}, + [133] = {.index = 239, .length = 2}, + [134] = {.index = 241, .length = 2}, + [135] = {.index = 243, .length = 3}, + [136] = {.index = 241, .length = 2}, + [137] = {.index = 237, .length = 2}, + [138] = {.index = 139, .length = 2}, + [139] = {.index = 246, .length = 1}, + [140] = {.index = 246, .length = 1}, + [141] = {.index = 177, .length = 2}, + [142] = {.index = 179, .length = 3}, + [143] = {.index = 247, .length = 2}, + [144] = {.index = 249, .length = 3}, + [145] = {.index = 252, .length = 2}, + [146] = {.index = 254, .length = 3}, + [147] = {.index = 257, .length = 2}, + [148] = {.index = 259, .length = 3}, + [149] = {.index = 262, .length = 1}, + [150] = {.index = 263, .length = 2}, + [151] = {.index = 265, .length = 2}, + [152] = {.index = 267, .length = 5}, + [153] = {.index = 263, .length = 2}, + [154] = {.index = 272, .length = 1}, + [155] = {.index = 273, .length = 4}, + [156] = {.index = 277, .length = 2}, + [157] = {.index = 279, .length = 1}, + [158] = {.index = 280, .length = 2}, + [159] = {.index = 282, .length = 2}, + [160] = {.index = 284, .length = 2}, + [161] = {.index = 286, .length = 4}, + [162] = {.index = 290, .length = 2}, + [163] = {.index = 292, .length = 3}, + [164] = {.index = 295, .length = 3}, + [165] = {.index = 298, .length = 3}, + [166] = {.index = 301, .length = 4}, + [167] = {.index = 305, .length = 1}, + [168] = {.index = 306, .length = 2}, + [169] = {.index = 308, .length = 4}, + [170] = {.index = 312, .length = 4}, + [171] = {.index = 316, .length = 4}, + [172] = {.index = 320, .length = 2}, + [173] = {.index = 322, .length = 2}, + [174] = {.index = 324, .length = 4}, + [175] = {.index = 324, .length = 4}, + [176] = {.index = 328, .length = 4}, + [177] = {.index = 328, .length = 4}, + [178] = {.index = 332, .length = 4}, + [179] = {.index = 336, .length = 4}, + [180] = {.index = 340, .length = 5}, + [181] = {.index = 345, .length = 3}, + [182] = {.index = 348, .length = 3}, + [183] = {.index = 348, .length = 3}, + [184] = {.index = 351, .length = 2}, + [185] = {.index = 353, .length = 3}, + [186] = {.index = 356, .length = 2}, + [187] = {.index = 356, .length = 2}, + [188] = {.index = 298, .length = 3}, + [189] = {.index = 358, .length = 3}, + [190] = {.index = 361, .length = 3}, + [191] = {.index = 134, .length = 2}, + [192] = {.index = 364, .length = 2}, + [193] = {.index = 366, .length = 3}, + [194] = {.index = 369, .length = 4}, + [195] = {.index = 373, .length = 3}, + [196] = {.index = 376, .length = 3}, + [197] = {.index = 379, .length = 2}, + [198] = {.index = 381, .length = 3}, + [199] = {.index = 384, .length = 5}, + [200] = {.index = 379, .length = 2}, + [201] = {.index = 389, .length = 3}, + [202] = {.index = 389, .length = 3}, + [203] = {.index = 392, .length = 3}, + [204] = {.index = 395, .length = 2}, + [205] = {.index = 397, .length = 4}, + [206] = {.index = 134, .length = 2}, + [207] = {.index = 401, .length = 1}, + [208] = {.index = 402, .length = 2}, + [209] = {.index = 404, .length = 2}, + [210] = {.index = 406, .length = 2}, + [211] = {.index = 408, .length = 2}, + [212] = {.index = 410, .length = 3}, + [213] = {.index = 413, .length = 1}, + [214] = {.index = 414, .length = 3}, + [215] = {.index = 417, .length = 2}, + [216] = {.index = 419, .length = 3}, + [217] = {.index = 422, .length = 3}, + [218] = {.index = 425, .length = 3}, + [219] = {.index = 428, .length = 3}, + [220] = {.index = 431, .length = 4}, + [221] = {.index = 435, .length = 2}, + [222] = {.index = 437, .length = 2}, + [223] = {.index = 439, .length = 1}, + [224] = {.index = 440, .length = 4}, + [225] = {.index = 440, .length = 4}, + [226] = {.index = 444, .length = 2}, + [227] = {.index = 446, .length = 3}, + [228] = {.index = 449, .length = 5}, + [229] = {.index = 454, .length = 3}, + [230] = {.index = 457, .length = 2}, + [231] = {.index = 459, .length = 2}, + [232] = {.index = 461, .length = 2}, + [233] = {.index = 463, .length = 1}, + [234] = {.index = 464, .length = 4}, + [235] = {.index = 468, .length = 3}, + [236] = {.index = 471, .length = 4}, + [237] = {.index = 475, .length = 5}, + [238] = {.index = 480, .length = 1}, + [239] = {.index = 481, .length = 2}, + [240] = {.index = 483, .length = 4}, + [241] = {.index = 487, .length = 4}, + [242] = {.index = 491, .length = 4}, + [243] = {.index = 495, .length = 3}, + [244] = {.index = 498, .length = 2}, + [245] = {.index = 500, .length = 4}, + [246] = {.index = 504, .length = 4}, + [247] = {.index = 508, .length = 2}, + [248] = {.index = 510, .length = 2}, + [249] = {.index = 512, .length = 3}, + [250] = {.index = 515, .length = 3}, + [251] = {.index = 518, .length = 2}, + [252] = {.index = 520, .length = 2}, + [253] = {.index = 522, .length = 1}, + [254] = {.index = 523, .length = 1}, + [255] = {.index = 524, .length = 3}, + [256] = {.index = 527, .length = 3}, + [257] = {.index = 530, .length = 3}, + [258] = {.index = 533, .length = 3}, + [259] = {.index = 536, .length = 4}, + [260] = {.index = 540, .length = 2}, + [261] = {.index = 542, .length = 4}, + [262] = {.index = 546, .length = 3}, + [263] = {.index = 549, .length = 2}, + [264] = {.index = 551, .length = 2}, + [265] = {.index = 553, .length = 4}, + [266] = {.index = 557, .length = 4}, + [267] = {.index = 561, .length = 4}, + [268] = {.index = 565, .length = 3}, + [269] = {.index = 568, .length = 2}, + [271] = {.index = 570, .length = 4}, + [272] = {.index = 574, .length = 5}, + [273] = {.index = 579, .length = 5}, + [274] = {.index = 584, .length = 5}, + [275] = {.index = 589, .length = 4}, + [276] = {.index = 593, .length = 5}, + [277] = {.index = 598, .length = 4}, + [278] = {.index = 602, .length = 4}, + [279] = {.index = 606, .length = 3}, + [280] = {.index = 609, .length = 3}, + [281] = {.index = 612, .length = 3}, + [282] = {.index = 609, .length = 3}, + [283] = {.index = 615, .length = 2}, + [284] = {.index = 617, .length = 4}, + [285] = {.index = 621, .length = 4}, + [286] = {.index = 625, .length = 3}, + [287] = {.index = 628, .length = 2}, + [288] = {.index = 630, .length = 2}, + [289] = {.index = 632, .length = 3}, + [290] = {.index = 635, .length = 2}, + [291] = {.index = 637, .length = 2}, + [292] = {.index = 639, .length = 1}, + [293] = {.index = 640, .length = 3}, + [294] = {.index = 643, .length = 3}, + [295] = {.index = 646, .length = 4}, + [296] = {.index = 650, .length = 4}, + [297] = {.index = 654, .length = 3}, + [298] = {.index = 657, .length = 3}, + [299] = {.index = 660, .length = 2}, + [300] = {.index = 662, .length = 3}, + [301] = {.index = 665, .length = 2}, + [302] = {.index = 667, .length = 4}, + [303] = {.index = 671, .length = 4}, + [304] = {.index = 675, .length = 4}, + [305] = {.index = 679, .length = 3}, + [306] = {.index = 682, .length = 5}, + [307] = {.index = 687, .length = 5}, + [308] = {.index = 692, .length = 5}, + [309] = {.index = 697, .length = 4}, + [310] = {.index = 701, .length = 4}, + [311] = {.index = 705, .length = 3}, + [312] = {.index = 708, .length = 3}, + [313] = {.index = 708, .length = 3}, + [314] = {.index = 711, .length = 2}, + [315] = {.index = 713, .length = 2}, + [316] = {.index = 715, .length = 3}, + [317] = {.index = 718, .length = 2}, + [318] = {.index = 720, .length = 2}, + [319] = {.index = 722, .length = 4}, + [320] = {.index = 726, .length = 3}, + [321] = {.index = 729, .length = 3}, + [322] = {.index = 732, .length = 4}, + [323] = {.index = 736, .length = 3}, + [324] = {.index = 739, .length = 3}, + [325] = {.index = 742, .length = 2}, + [326] = {.index = 744, .length = 4}, + [327] = {.index = 748, .length = 5}, + [328] = {.index = 753, .length = 5}, + [329] = {.index = 758, .length = 4}, + [330] = {.index = 758, .length = 4}, + [331] = {.index = 762, .length = 4}, + [332] = {.index = 766, .length = 3}, + [333] = {.index = 769, .length = 2}, + [334] = {.index = 771, .length = 2}, + [335] = {.index = 773, .length = 3}, + [336] = {.index = 776, .length = 4}, + [337] = {.index = 780, .length = 4}, + [338] = {.index = 784, .length = 3}, + [339] = {.index = 787, .length = 3}, + [340] = {.index = 790, .length = 4}, + [341] = {.index = 794, .length = 3}, + [342] = {.index = 797, .length = 3}, + [343] = {.index = 800, .length = 5}, + [344] = {.index = 805, .length = 3}, + [345] = {.index = 808, .length = 4}, + [346] = {.index = 812, .length = 4}, + [347] = {.index = 816, .length = 3}, + [348] = {.index = 819, .length = 3}, + [349] = {.index = 822, .length = 4}, + [350] = {.index = 826, .length = 4}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_decorator, 0}, + [1] = + {field_parameters, 0}, + [2] = + {field_declaration, 1}, + [3] = + {field_name, 0}, + [4] = + {field_body, 1, .inherited = true}, + {field_name, 1, .inherited = true}, + [6] = + {field_argument, 1}, + {field_operator, 0}, + [8] = + {field_pattern, 0}, + [9] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 0, .inherited = true}, + [11] = + {field_body, 1}, + [12] = + {field_constructor, 1}, + [13] = + {field_arguments, 1}, + {field_function, 0}, + [15] = + {field_argument, 0}, + {field_operator, 1}, + [17] = + {field_type_arguments, 1}, + [18] = + {field_close_tag, 1}, + {field_open_tag, 0}, + [20] = + {field_parameters, 0}, + {field_return_type, 1}, + [22] = + {field_parameters, 1}, + {field_type_parameters, 0}, + [24] = + {field_decorator, 0, .inherited = true}, + {field_decorator, 1, .inherited = true}, + [26] = + {field_declaration, 2}, + [27] = + {field_left, 0}, + {field_right, 2}, + [29] = + {field_body, 2}, + {field_label, 0}, + [31] = + {field_body, 2}, + {field_parameter, 0}, + [33] = + {field_body, 1}, + {field_name, 0}, + [35] = + {field_source, 1}, + [36] = + {field_body, 2}, + {field_object, 1}, + [38] = + {field_name, 0}, + {field_value, 1, .inherited = true}, + [40] = + {field_name, 0}, + {field_type, 1}, + [42] = + {field_kind, 0}, + [43] = + {field_condition, 1}, + {field_consequence, 2}, + [45] = + {field_body, 2}, + {field_value, 1}, + [47] = + {field_body, 2}, + {field_kind, 1, .inherited = true}, + {field_left, 1, .inherited = true}, + {field_operator, 1, .inherited = true}, + {field_right, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [53] = + {field_pattern, 1}, + [54] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 0, .inherited = true}, + {field_value, 1, .inherited = true}, + [57] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 0, .inherited = true}, + {field_type, 1}, + [60] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 1}, + [62] = + {field_body, 2}, + {field_condition, 1}, + [64] = + {field_body, 1}, + {field_handler, 2}, + [66] = + {field_body, 1}, + {field_finalizer, 2}, + [68] = + {field_label, 1}, + [69] = + {field_body, 2}, + {field_name, 1}, + [71] = + {field_value, 0}, + [72] = + {field_type_arguments, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [74] = + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + [76] = + {field_arguments, 0, .inherited = true}, + {field_function, 0, .inherited = true}, + [78] = + {field_argument, 0, .inherited = true}, + {field_operator, 0, .inherited = true}, + [80] = + {field_body, 2}, + [81] = + {field_body, 2}, + {field_type_parameters, 1}, + [83] = + {field_body, 2}, + {field_parameters, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + {field_type_parameters, 1, .inherited = true}, + [87] = + {field_arguments, 2}, + {field_constructor, 1}, + [89] = + {field_constructor, 1}, + {field_type_arguments, 2}, + [91] = + {field_name, 1}, + [92] = + {field_attribute, 0}, + [93] = + {field_name, 0}, + {field_value, 1}, + [95] = + {field_constraint, 1}, + {field_name, 0}, + [97] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [100] = + {field_object, 0}, + {field_property, 2}, + [102] = + {field_object, 0}, + {field_optional_chain, 1}, + {field_property, 2}, + [105] = + {field_arguments, 2}, + {field_function, 0}, + {field_type_arguments, 1}, + [108] = + {field_arguments, 2}, + {field_function, 0}, + [110] = + {field_close_tag, 2}, + {field_open_tag, 0}, + [112] = + {field_body, 2}, + {field_parameters, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + {field_type_parameters, 0, .inherited = true}, + [116] = + {field_parameters, 1}, + {field_return_type, 2}, + {field_type_parameters, 0}, + [119] = + {field_declaration, 2}, + {field_decorator, 0, .inherited = true}, + [121] = + {field_body, 2}, + {field_decorator, 0, .inherited = true}, + [123] = + {field_source, 2, .inherited = true}, + [124] = + {field_value, 2}, + [125] = + {field_key, 0}, + {field_value, 2}, + [127] = + {field_body, 2}, + {field_name, 0}, + {field_parameters, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + {field_type_parameters, 1, .inherited = true}, + [132] = + {field_source, 2}, + [133] = + {field_value, 1}, + [134] = + {field_name, 0}, + {field_type, 2}, + [136] = + {field_name, 0}, + {field_type, 1}, + {field_value, 2, .inherited = true}, + [139] = + {field_body, 3}, + {field_name, 2}, + [141] = + {field_alternative, 3}, + {field_condition, 1}, + {field_consequence, 2}, + [144] = + {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}, + [150] = + {field_type, 2}, + [151] = + {field_pattern, 2}, + [152] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 0, .inherited = true}, + {field_value, 2, .inherited = true}, + [155] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 0, .inherited = true}, + {field_type, 2}, + [158] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 0, .inherited = true}, + {field_type, 1}, + {field_value, 2, .inherited = true}, + [162] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 2}, + [164] = + {field_body, 1}, + {field_condition, 3}, + [166] = + {field_body, 1}, + {field_finalizer, 3}, + {field_handler, 2}, + [169] = + {field_name, 0}, + {field_parameters, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + {field_type_parameters, 1, .inherited = true}, + [173] = + {field_decorator, 0, .inherited = true}, + [174] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + [176] = + {field_decorator, 1, .inherited = true}, + [177] = + {field_body, 3}, + {field_name, 1}, + [179] = + {field_body, 3}, + {field_name, 1}, + {field_type_parameters, 2}, + [182] = + {field_type_arguments, 1}, + {field_value, 0}, + [184] = + {field_type_arguments, 1, .inherited = true}, + {field_type_arguments, 2, .inherited = true}, + {field_value, 1, .inherited = true}, + {field_value, 2, .inherited = true}, + [188] = + {field_parameters, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + {field_type_parameters, 0, .inherited = true}, + [191] = + {field_object, 1, .inherited = true}, + {field_property, 1, .inherited = true}, + [193] = + {field_index, 1, .inherited = true}, + {field_object, 1, .inherited = true}, + [195] = + {field_arguments, 1, .inherited = true}, + {field_function, 1, .inherited = true}, + [197] = + {field_function, 1, .inherited = true}, + {field_type_arguments, 1, .inherited = true}, + [199] = + {field_name, 0}, + {field_type_arguments, 1}, + [201] = + {field_arguments, 1}, + {field_function, 0}, + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + [205] = + {field_body, 3}, + {field_type_parameters, 1}, + [207] = + {field_body, 3}, + {field_parameter, 1}, + [209] = + {field_body, 3}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + {field_type_parameters, 2, .inherited = true}, + [213] = + {field_body, 3}, + {field_parameters, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + {field_type_parameters, 1, .inherited = true}, + [217] = + {field_name, 1}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + {field_type_parameters, 2, .inherited = true}, + [221] = + {field_body, 3}, + {field_name, 1}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + {field_type_parameters, 2, .inherited = true}, + [226] = + {field_arguments, 3}, + {field_constructor, 1}, + {field_type_arguments, 2}, + [229] = + {field_left, 1}, + {field_right, 3}, + [231] = + {field_flags, 3}, + {field_pattern, 1}, + [233] = + {field_name, 1}, + {field_value, 2}, + [235] = + {field_constraint, 2}, + {field_name, 1}, + [237] = + {field_attribute, 2, .inherited = true}, + {field_name, 1}, + [239] = + {field_attribute, 0, .inherited = true}, + {field_attribute, 1, .inherited = true}, + [241] = + {field_name, 1}, + {field_type_arguments, 2}, + [243] = + {field_constraint, 1}, + {field_name, 0}, + {field_value, 2}, + [246] = + {field_type, 1}, + [247] = + {field_index, 2}, + {field_object, 0}, + [249] = + {field_arguments, 3}, + {field_function, 0}, + {field_type_arguments, 2}, + [252] = + {field_declaration, 3}, + {field_decorator, 0, .inherited = true}, + [254] = + {field_body, 3}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + [257] = + {field_body, 3}, + {field_decorator, 0, .inherited = true}, + [259] = + {field_body, 3}, + {field_decorator, 0, .inherited = true}, + {field_type_parameters, 2}, + [262] = + {field_source, 3, .inherited = true}, + [263] = + {field_alias, 2}, + {field_name, 0}, + [265] = + {field_name, 1}, + {field_value, 3}, + [267] = + {field_body, 3}, + {field_name, 0}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + {field_type_parameters, 2, .inherited = true}, + [272] = + {field_pattern, 3}, + [273] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 0, .inherited = true}, + {field_type, 2}, + {field_value, 3, .inherited = true}, + [277] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 3}, + [279] = + {field_name, 2}, + [280] = + {field_name, 1}, + {field_value, 2, .inherited = true}, + [282] = + {field_name, 1}, + {field_type, 2}, + [284] = + {field_name, 0}, + {field_value, 2, .inherited = true}, + [286] = + {field_name, 0}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + {field_type_parameters, 2, .inherited = true}, + [290] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + [292] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_value, 2, .inherited = true}, + [295] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_type, 2}, + [298] = + {field_body, 4}, + {field_name, 1}, + {field_type_parameters, 2}, + [301] = + {field_type_arguments, 0, .inherited = true}, + {field_type_arguments, 1, .inherited = true}, + {field_value, 0, .inherited = true}, + {field_value, 1, .inherited = true}, + [305] = + {field_parameters, 1}, + [306] = + {field_function, 0}, + {field_type_arguments, 1}, + [308] = + {field_function, 0}, + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + {field_type_arguments, 1}, + [312] = + {field_arguments, 1}, + {field_function, 0}, + {field_index, 0, .inherited = true}, + {field_object, 0, .inherited = true}, + [316] = + {field_function, 0}, + {field_index, 0, .inherited = true}, + {field_object, 0, .inherited = true}, + {field_type_arguments, 1}, + [320] = + {field_module, 0}, + {field_name, 2}, + [322] = + {field_parameters, 0}, + {field_return_type, 2}, + [324] = + {field_object, 0}, + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + {field_property, 2}, + [328] = + {field_arguments, 0, .inherited = true}, + {field_function, 0, .inherited = true}, + {field_object, 0}, + {field_property, 2}, + [332] = + {field_body, 4}, + {field_parameters, 3, .inherited = true}, + {field_return_type, 3, .inherited = true}, + {field_type_parameters, 3, .inherited = true}, + [336] = + {field_name, 2}, + {field_parameters, 3, .inherited = true}, + {field_return_type, 3, .inherited = true}, + {field_type_parameters, 3, .inherited = true}, + [340] = + {field_body, 4}, + {field_name, 2}, + {field_parameters, 3, .inherited = true}, + {field_return_type, 3, .inherited = true}, + {field_type_parameters, 3, .inherited = true}, + [345] = + {field_constraint, 2}, + {field_name, 1}, + {field_value, 3}, + [348] = + {field_attribute, 3, .inherited = true}, + {field_name, 1}, + {field_type_arguments, 2}, + [351] = + {field_body, 4}, + {field_name, 2}, + [353] = + {field_body, 4}, + {field_name, 2}, + {field_type_parameters, 3}, + [356] = + {field_type, 1}, + {field_type, 2, .inherited = true}, + [358] = + {field_alternative, 4}, + {field_condition, 0}, + {field_consequence, 2}, + [361] = + {field_index, 3}, + {field_object, 0}, + {field_optional_chain, 1}, + [364] = + {field_decorator, 0, .inherited = true}, + {field_value, 3}, + [366] = + {field_body, 4}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + [369] = + {field_body, 4}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_type_parameters, 3}, + [373] = + {field_body, 4}, + {field_decorator, 0, .inherited = true}, + {field_type_parameters, 2}, + [376] = + {field_body, 4}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + [379] = + {field_alias, 3}, + {field_name, 1}, + [381] = + {field_name, 1}, + {field_type_parameters, 2}, + {field_value, 4}, + [384] = + {field_body, 4}, + {field_name, 1}, + {field_parameters, 3, .inherited = true}, + {field_return_type, 3, .inherited = true}, + {field_type_parameters, 3, .inherited = true}, + [389] = + {field_left, 1}, + {field_operator, 2}, + {field_right, 3}, + [392] = + {field_body, 5}, + {field_condition, 3}, + {field_initializer, 2}, + [395] = + {field_decorator, 0, .inherited = true}, + {field_pattern, 4}, + [397] = + {field_name, 1}, + {field_parameters, 3, .inherited = true}, + {field_return_type, 3, .inherited = true}, + {field_type_parameters, 3, .inherited = true}, + [401] = + {field_type, 3}, + [402] = + {field_name, 2}, + {field_value, 3, .inherited = true}, + [404] = + {field_name, 2}, + {field_type, 3}, + [406] = + {field_name, 1}, + {field_value, 3, .inherited = true}, + [408] = + {field_name, 1}, + {field_type, 3}, + [410] = + {field_name, 1}, + {field_type, 2}, + {field_value, 3, .inherited = true}, + [413] = + {field_name, 3}, + [414] = + {field_name, 0}, + {field_type, 2}, + {field_value, 3, .inherited = true}, + [417] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + [419] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_value, 3, .inherited = true}, + [422] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_type, 3}, + [425] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_value, 3, .inherited = true}, + [428] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_type, 3}, + [431] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_type, 2}, + {field_value, 3, .inherited = true}, + [435] = + {field_parameters, 1}, + {field_type, 2}, + [437] = + {field_parameters, 2}, + {field_type_parameters, 1}, + [439] = + {field_parameters, 2}, + [440] = + {field_index, 0, .inherited = true}, + {field_object, 0}, + {field_object, 0, .inherited = true}, + {field_property, 2}, + [444] = + {field_parameters, 1}, + {field_type, 3}, + [446] = + {field_parameters, 1}, + {field_return_type, 3}, + {field_type_parameters, 0}, + [449] = + {field_body, 5}, + {field_name, 3}, + {field_parameters, 4, .inherited = true}, + {field_return_type, 4, .inherited = true}, + {field_type_parameters, 4, .inherited = true}, + [454] = + {field_body, 5}, + {field_name, 2}, + {field_type_parameters, 3}, + [457] = + {field_type, 0, .inherited = true}, + {field_type, 1, .inherited = true}, + [459] = + {field_name, 1}, + {field_name, 2, .inherited = true}, + [461] = + {field_name, 0, .inherited = true}, + {field_name, 1, .inherited = true}, + [463] = + {field_name, 2, .inherited = true}, + [464] = + {field_body, 5}, + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_type_parameters, 3}, + [468] = + {field_body, 5}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + [471] = + {field_body, 5}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_type_parameters, 4}, + [475] = + {field_body, 5}, + {field_name, 2}, + {field_parameters, 4, .inherited = true}, + {field_return_type, 4, .inherited = true}, + {field_type_parameters, 4, .inherited = true}, + [480] = + {field_source, 4}, + [481] = + {field_body, 3}, + {field_value, 1}, + [483] = + {field_kind, 1}, + {field_left, 2}, + {field_operator, 3}, + {field_right, 4}, + [487] = + {field_body, 6}, + {field_condition, 3}, + {field_increment, 4}, + {field_initializer, 2}, + [491] = + {field_body, 6}, + {field_condition, 3}, + {field_condition, 4}, + {field_initializer, 2}, + [495] = + {field_body, 6}, + {field_condition, 4}, + {field_initializer, 2}, + [498] = + {field_body, 4}, + {field_parameter, 2}, + [500] = + {field_name, 2}, + {field_parameters, 4, .inherited = true}, + {field_return_type, 4, .inherited = true}, + {field_type_parameters, 4, .inherited = true}, + [504] = + {field_name, 3}, + {field_parameters, 4, .inherited = true}, + {field_return_type, 4, .inherited = true}, + {field_type_parameters, 4, .inherited = true}, + [508] = + {field_name, 2}, + {field_value, 4, .inherited = true}, + [510] = + {field_name, 2}, + {field_type, 4}, + [512] = + {field_name, 2}, + {field_type, 3}, + {field_value, 4, .inherited = true}, + [515] = + {field_name, 1}, + {field_type, 3}, + {field_value, 4, .inherited = true}, + [518] = + {field_name, 3}, + {field_value, 4, .inherited = true}, + [520] = + {field_name, 3}, + {field_type, 4}, + [522] = + {field_type, 4}, + [523] = + {field_name, 4}, + [524] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_value, 4, .inherited = true}, + [527] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_type, 4}, + [530] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_value, 4, .inherited = true}, + [533] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_type, 4}, + [536] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_type, 3}, + {field_value, 4, .inherited = true}, + [540] = + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + [542] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_type, 3}, + {field_value, 4, .inherited = true}, + [546] = + {field_parameters, 2}, + {field_type, 3}, + {field_type_parameters, 1}, + [549] = + {field_parameters, 2}, + {field_type, 3}, + [551] = + {field_parameters, 3}, + {field_type_parameters, 2}, + [553] = + {field_index, 2}, + {field_object, 0}, + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + [557] = + {field_index, 0, .inherited = true}, + {field_index, 2}, + {field_object, 0}, + {field_object, 0, .inherited = true}, + [561] = + {field_arguments, 0, .inherited = true}, + {field_function, 0, .inherited = true}, + {field_index, 2}, + {field_object, 0}, + [565] = + {field_parameters, 2}, + {field_type, 4}, + {field_type_parameters, 1}, + [568] = + {field_parameters, 2}, + {field_type, 4}, + [570] = + {field_body, 6}, + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_type_parameters, 4}, + [574] = + {field_body, 6}, + {field_name, 3}, + {field_parameters, 5, .inherited = true}, + {field_return_type, 5, .inherited = true}, + {field_type_parameters, 5, .inherited = true}, + [579] = + {field_body, 6}, + {field_name, 4}, + {field_parameters, 5, .inherited = true}, + {field_return_type, 5, .inherited = true}, + {field_type_parameters, 5, .inherited = true}, + [584] = + {field_kind, 1}, + {field_left, 2}, + {field_operator, 4}, + {field_right, 5}, + {field_value, 3, .inherited = true}, + [589] = + {field_kind, 1}, + {field_left, 2}, + {field_operator, 4}, + {field_right, 5}, + [593] = + {field_body, 7}, + {field_condition, 3}, + {field_condition, 4}, + {field_increment, 5}, + {field_initializer, 2}, + [598] = + {field_body, 7}, + {field_condition, 4}, + {field_increment, 5}, + {field_initializer, 2}, + [602] = + {field_body, 7}, + {field_condition, 4}, + {field_condition, 5}, + {field_initializer, 2}, + [606] = + {field_body, 5}, + {field_parameter, 2}, + {field_type, 3}, + [609] = + {field_index_type, 3}, + {field_name, 1}, + {field_type, 5}, + [612] = + {field_alias, 4}, + {field_name, 0}, + {field_type, 2}, + [615] = + {field_sign, 0}, + {field_type, 5}, + [617] = + {field_name, 3}, + {field_parameters, 5, .inherited = true}, + {field_return_type, 5, .inherited = true}, + {field_type_parameters, 5, .inherited = true}, + [621] = + {field_name, 4}, + {field_parameters, 5, .inherited = true}, + {field_return_type, 5, .inherited = true}, + {field_type_parameters, 5, .inherited = true}, + [625] = + {field_name, 2}, + {field_type, 4}, + {field_value, 5, .inherited = true}, + [628] = + {field_name, 3}, + {field_value, 5, .inherited = true}, + [630] = + {field_name, 3}, + {field_type, 5}, + [632] = + {field_name, 3}, + {field_type, 4}, + {field_value, 5, .inherited = true}, + [635] = + {field_name, 4}, + {field_value, 5, .inherited = true}, + [637] = + {field_name, 4}, + {field_type, 5}, + [639] = + {field_name, 5}, + [640] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_value, 5, .inherited = true}, + [643] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_type, 5}, + [646] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_type, 4}, + {field_value, 5, .inherited = true}, + [650] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_type, 4}, + {field_value, 5, .inherited = true}, + [654] = + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + {field_value, 5, .inherited = true}, + [657] = + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + {field_type, 5}, + [660] = + {field_decorator, 0, .inherited = true}, + {field_name, 5}, + [662] = + {field_parameters, 3}, + {field_type, 4}, + {field_type_parameters, 2}, + [665] = + {field_index, 3}, + {field_object, 0}, + [667] = + {field_index, 3}, + {field_object, 0}, + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + [671] = + {field_index, 0, .inherited = true}, + {field_index, 3}, + {field_object, 0}, + {field_object, 0, .inherited = true}, + [675] = + {field_arguments, 0, .inherited = true}, + {field_function, 0, .inherited = true}, + {field_index, 3}, + {field_object, 0}, + [679] = + {field_parameters, 3}, + {field_type, 5}, + {field_type_parameters, 2}, + [682] = + {field_body, 7}, + {field_name, 4}, + {field_parameters, 6, .inherited = true}, + {field_return_type, 6, .inherited = true}, + {field_type_parameters, 6, .inherited = true}, + [687] = + {field_body, 7}, + {field_name, 5}, + {field_parameters, 6, .inherited = true}, + {field_return_type, 6, .inherited = true}, + {field_type_parameters, 6, .inherited = true}, + [692] = + {field_body, 8}, + {field_condition, 4}, + {field_condition, 5}, + {field_increment, 6}, + {field_initializer, 2}, + [697] = + {field_name, 4}, + {field_parameters, 6, .inherited = true}, + {field_return_type, 6, .inherited = true}, + {field_type_parameters, 6, .inherited = true}, + [701] = + {field_name, 5}, + {field_parameters, 6, .inherited = true}, + {field_return_type, 6, .inherited = true}, + {field_type_parameters, 6, .inherited = true}, + [705] = + {field_name, 3}, + {field_type, 5}, + {field_value, 6, .inherited = true}, + [708] = + {field_index_type, 4}, + {field_name, 2}, + {field_type, 6}, + [711] = + {field_name, 4}, + {field_value, 6, .inherited = true}, + [713] = + {field_name, 4}, + {field_type, 6}, + [715] = + {field_name, 4}, + {field_type, 5}, + {field_value, 6, .inherited = true}, + [718] = + {field_name, 5}, + {field_value, 6, .inherited = true}, + [720] = + {field_name, 5}, + {field_type, 6}, + [722] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_type, 5}, + {field_value, 6, .inherited = true}, + [726] = + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + {field_value, 6, .inherited = true}, + [729] = + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + {field_type, 6}, + [732] = + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + {field_type, 5}, + {field_value, 6, .inherited = true}, + [736] = + {field_decorator, 0, .inherited = true}, + {field_name, 5}, + {field_value, 6, .inherited = true}, + [739] = + {field_decorator, 0, .inherited = true}, + {field_name, 5}, + {field_type, 6}, + [742] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + [744] = + {field_alternative, 6}, + {field_consequence, 4}, + {field_left, 0}, + {field_right, 2}, + [748] = + {field_body, 8}, + {field_name, 5}, + {field_parameters, 7, .inherited = true}, + {field_return_type, 7, .inherited = true}, + {field_type_parameters, 7, .inherited = true}, + [753] = + {field_body, 8}, + {field_name, 6}, + {field_parameters, 7, .inherited = true}, + {field_return_type, 7, .inherited = true}, + {field_type_parameters, 7, .inherited = true}, + [758] = + {field_index_type, 5}, + {field_name, 3}, + {field_sign, 0}, + {field_type, 7}, + [762] = + {field_name, 5}, + {field_parameters, 7, .inherited = true}, + {field_return_type, 7, .inherited = true}, + {field_type_parameters, 7, .inherited = true}, + [766] = + {field_name, 4}, + {field_type, 6}, + {field_value, 7, .inherited = true}, + [769] = + {field_name, 5}, + {field_value, 7, .inherited = true}, + [771] = + {field_name, 5}, + {field_type, 7}, + [773] = + {field_name, 5}, + {field_type, 6}, + {field_value, 7, .inherited = true}, + [776] = + {field_name, 6}, + {field_parameters, 7, .inherited = true}, + {field_return_type, 7, .inherited = true}, + {field_type_parameters, 7, .inherited = true}, + [780] = + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + {field_type, 6}, + {field_value, 7, .inherited = true}, + [784] = + {field_decorator, 0, .inherited = true}, + {field_name, 5}, + {field_value, 7, .inherited = true}, + [787] = + {field_decorator, 0, .inherited = true}, + {field_name, 5}, + {field_type, 7}, + [790] = + {field_decorator, 0, .inherited = true}, + {field_name, 5}, + {field_type, 6}, + {field_value, 7, .inherited = true}, + [794] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_value, 7, .inherited = true}, + [797] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_type, 7}, + [800] = + {field_body, 9}, + {field_name, 6}, + {field_parameters, 8, .inherited = true}, + {field_return_type, 8, .inherited = true}, + {field_type_parameters, 8, .inherited = true}, + [805] = + {field_name, 5}, + {field_type, 7}, + {field_value, 8, .inherited = true}, + [808] = + {field_name, 6}, + {field_parameters, 8, .inherited = true}, + {field_return_type, 8, .inherited = true}, + {field_type_parameters, 8, .inherited = true}, + [812] = + {field_decorator, 0, .inherited = true}, + {field_name, 5}, + {field_type, 7}, + {field_value, 8, .inherited = true}, + [816] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_value, 8, .inherited = true}, + [819] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_type, 8}, + [822] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_type, 7}, + {field_value, 8, .inherited = true}, + [826] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_type, 8}, + {field_value, 9, .inherited = true}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = sym_identifier, + }, + [7] = { + [0] = alias_sym_property_identifier, + }, + [13] = { + [0] = alias_sym_type_identifier, + }, + [22] = { + [0] = sym_identifier, + }, + [23] = { + [0] = alias_sym_statement_identifier, + }, + [24] = { + [0] = sym_identifier, + }, + [26] = { + [1] = alias_sym_shorthand_property_identifier, + }, + [27] = { + [1] = alias_sym_shorthand_property_identifier_pattern, + }, + [28] = { + [1] = sym_identifier, + }, + [44] = { + [1] = alias_sym_statement_identifier, + }, + [45] = { + [1] = alias_sym_type_identifier, + }, + [48] = { + [0] = alias_sym_type_identifier, + }, + [49] = { + [0] = alias_sym_this_type, + }, + [58] = { + [1] = alias_sym_type_identifier, + }, + [61] = { + [0] = alias_sym_type_identifier, + }, + [62] = { + [0] = alias_sym_type_identifier, + }, + [63] = { + [1] = sym_member_expression, + }, + [67] = { + [1] = alias_sym_type_identifier, + [2] = alias_sym_interface_body, + }, + [69] = { + [2] = alias_sym_property_identifier, + }, + [71] = { + [2] = alias_sym_property_identifier, + }, + [82] = { + [0] = sym_member_expression, + [2] = alias_sym_property_identifier, + }, + [83] = { + [0] = alias_sym_shorthand_property_identifier_pattern, + }, + [105] = { + [1] = alias_sym_type_identifier, + }, + [106] = { + [1] = alias_sym_type_identifier, + }, + [114] = { + [0] = alias_sym_type_identifier, + }, + [115] = { + [1] = alias_sym_type_identifier, + }, + [116] = { + [1] = anon_sym_unique, + }, + [120] = { + [1] = sym_identifier, + }, + [127] = { + [1] = sym_identifier, + }, + [130] = { + [1] = alias_sym_type_identifier, + }, + [131] = { + [1] = alias_sym_type_identifier, + }, + [135] = { + [0] = alias_sym_type_identifier, + }, + [136] = { + [1] = sym_member_expression, + }, + [137] = { + [1] = sym_member_expression, + }, + [138] = { + [2] = alias_sym_type_identifier, + }, + [139] = { + [1] = alias_sym_type_identifier, + }, + [141] = { + [1] = alias_sym_type_identifier, + [3] = alias_sym_interface_body, + }, + [142] = { + [1] = alias_sym_type_identifier, + [3] = alias_sym_interface_body, + }, + [146] = { + [2] = alias_sym_type_identifier, + }, + [151] = { + [1] = alias_sym_type_identifier, + }, + [153] = { + [0] = sym_identifier, + }, + [165] = { + [1] = alias_sym_type_identifier, + }, + [172] = { + [2] = alias_sym_type_identifier, + }, + [174] = { + [2] = alias_sym_property_identifier, + }, + [176] = { + [2] = alias_sym_property_identifier, + }, + [181] = { + [1] = alias_sym_type_identifier, + }, + [183] = { + [1] = sym_member_expression, + }, + [184] = { + [2] = alias_sym_type_identifier, + }, + [185] = { + [2] = alias_sym_type_identifier, + }, + [186] = { + [1] = alias_sym_type_identifier, + }, + [188] = { + [1] = alias_sym_type_identifier, + [4] = alias_sym_interface_body, + }, + [191] = { + [0] = sym_identifier, + }, + [193] = { + [2] = alias_sym_type_identifier, + }, + [194] = { + [2] = alias_sym_type_identifier, + }, + [196] = { + [3] = alias_sym_type_identifier, + }, + [198] = { + [1] = alias_sym_type_identifier, + }, + [200] = { + [1] = sym_identifier, + }, + [201] = { + [1] = sym_identifier, + }, + [206] = { + [0] = alias_sym_type_identifier, + }, + [224] = { + [2] = alias_sym_property_identifier, + }, + [229] = { + [2] = alias_sym_type_identifier, + }, + [234] = { + [2] = alias_sym_type_identifier, + }, + [235] = { + [3] = alias_sym_type_identifier, + }, + [236] = { + [3] = alias_sym_type_identifier, + }, + [270] = { + [3] = alias_sym_property_identifier, + }, + [271] = { + [3] = alias_sym_type_identifier, + }, + [280] = { + [1] = sym_identifier, + }, + [281] = { + [0] = alias_sym_type_identifier, + }, + [312] = { + [2] = sym_identifier, + }, + [329] = { + [3] = sym_identifier, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym_nested_identifier, 2, + sym_nested_identifier, + sym_member_expression, + sym_predefined_type, 2, + sym_predefined_type, + sym_identifier, + sym_object_type, 2, + sym_object_type, + alias_sym_interface_body, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 2, + [4] = 4, + [5] = 4, + [6] = 4, + [7] = 4, + [8] = 4, + [9] = 9, + [10] = 10, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 15, + [16] = 16, + [17] = 17, + [18] = 18, + [19] = 14, + [20] = 14, + [21] = 18, + [22] = 14, + [23] = 18, + [24] = 18, + [25] = 14, + [26] = 18, + [27] = 14, + [28] = 18, + [29] = 18, + [30] = 14, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 37, + [38] = 38, + [39] = 39, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 34, + [47] = 38, + [48] = 44, + [49] = 49, + [50] = 31, + [51] = 51, + [52] = 33, + [53] = 35, + [54] = 36, + [55] = 37, + [56] = 39, + [57] = 40, + [58] = 41, + [59] = 42, + [60] = 43, + [61] = 31, + [62] = 34, + [63] = 49, + [64] = 31, + [65] = 31, + [66] = 31, + [67] = 31, + [68] = 31, + [69] = 31, + [70] = 31, + [71] = 51, + [72] = 43, + [73] = 45, + [74] = 38, + [75] = 44, + [76] = 49, + [77] = 51, + [78] = 33, + [79] = 35, + [80] = 36, + [81] = 37, + [82] = 39, + [83] = 40, + [84] = 41, + [85] = 42, + [86] = 45, + [87] = 87, + [88] = 87, + [89] = 87, + [90] = 90, + [91] = 90, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 90, + [98] = 92, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 103, + [106] = 103, + [107] = 103, + [108] = 108, + [109] = 108, + [110] = 104, + [111] = 103, + [112] = 108, + [113] = 113, + [114] = 101, + [115] = 108, + [116] = 108, + [117] = 101, + [118] = 108, + [119] = 119, + [120] = 113, + [121] = 119, + [122] = 113, + [123] = 123, + [124] = 124, + [125] = 102, + [126] = 126, + [127] = 127, + [128] = 108, + [129] = 101, + [130] = 119, + [131] = 108, + [132] = 108, + [133] = 119, + [134] = 134, + [135] = 101, + [136] = 108, + [137] = 101, + [138] = 108, + [139] = 104, + [140] = 108, + [141] = 108, + [142] = 108, + [143] = 108, + [144] = 101, + [145] = 108, + [146] = 124, + [147] = 101, + [148] = 123, + [149] = 149, + [150] = 150, + [151] = 150, + [152] = 101, + [153] = 150, + [154] = 150, + [155] = 108, + [156] = 150, + [157] = 150, + [158] = 150, + [159] = 150, + [160] = 150, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 162, + [165] = 162, + [166] = 162, + [167] = 162, + [168] = 162, + [169] = 162, + [170] = 170, + [171] = 162, + [172] = 162, + [173] = 173, + [174] = 173, + [175] = 173, + [176] = 173, + [177] = 173, + [178] = 173, + [179] = 173, + [180] = 173, + [181] = 173, + [182] = 182, + [183] = 182, + [184] = 182, + [185] = 185, + [186] = 186, + [187] = 186, + [188] = 188, + [189] = 186, + [190] = 185, + [191] = 191, + [192] = 186, + [193] = 185, + [194] = 185, + [195] = 188, + [196] = 182, + [197] = 182, + [198] = 188, + [199] = 182, + [200] = 191, + [201] = 182, + [202] = 182, + [203] = 182, + [204] = 204, + [205] = 204, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 206, + [210] = 208, + [211] = 206, + [212] = 207, + [213] = 207, + [214] = 208, + [215] = 215, + [216] = 215, + [217] = 217, + [218] = 218, + [219] = 215, + [220] = 215, + [221] = 215, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 215, + [228] = 228, + [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] = 218, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 218, + [258] = 258, + [259] = 255, + [260] = 255, + [261] = 261, + [262] = 262, + [263] = 262, + [264] = 261, + [265] = 265, + [266] = 266, + [267] = 218, + [268] = 218, + [269] = 266, + [270] = 270, + [271] = 266, + [272] = 266, + [273] = 218, + [274] = 266, + [275] = 218, + [276] = 276, + [277] = 266, + [278] = 218, + [279] = 218, + [280] = 280, + [281] = 281, + [282] = 266, + [283] = 270, + [284] = 280, + [285] = 218, + [286] = 286, + [287] = 286, + [288] = 288, + [289] = 286, + [290] = 286, + [291] = 291, + [292] = 292, + [293] = 286, + [294] = 286, + [295] = 286, + [296] = 286, + [297] = 292, + [298] = 286, + [299] = 286, + [300] = 300, + [301] = 286, + [302] = 286, + [303] = 286, + [304] = 286, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 307, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 307, + [313] = 309, + [314] = 309, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 317, + [321] = 318, + [322] = 322, + [323] = 319, + [324] = 317, + [325] = 322, + [326] = 318, + [327] = 319, + [328] = 328, + [329] = 322, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 335, + [343] = 333, + [344] = 344, + [345] = 345, + [346] = 330, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 335, + [352] = 335, + [353] = 344, + [354] = 330, + [355] = 347, + [356] = 348, + [357] = 349, + [358] = 358, + [359] = 335, + [360] = 344, + [361] = 330, + [362] = 347, + [363] = 348, + [364] = 349, + [365] = 347, + [366] = 348, + [367] = 344, + [368] = 335, + [369] = 344, + [370] = 345, + [371] = 347, + [372] = 348, + [373] = 349, + [374] = 335, + [375] = 344, + [376] = 330, + [377] = 347, + [378] = 348, + [379] = 349, + [380] = 349, + [381] = 330, + [382] = 335, + [383] = 344, + [384] = 330, + [385] = 347, + [386] = 348, + [387] = 349, + [388] = 347, + [389] = 348, + [390] = 349, + [391] = 391, + [392] = 335, + [393] = 344, + [394] = 330, + [395] = 347, + [396] = 348, + [397] = 349, + [398] = 398, + [399] = 350, + [400] = 344, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 330, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 406, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 405, + [426] = 416, + [427] = 408, + [428] = 421, + [429] = 407, + [430] = 409, + [431] = 411, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 432, + [439] = 439, + [440] = 433, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 406, + [445] = 434, + [446] = 446, + [447] = 447, + [448] = 446, + [449] = 417, + [450] = 447, + [451] = 417, + [452] = 419, + [453] = 420, + [454] = 422, + [455] = 424, + [456] = 405, + [457] = 416, + [458] = 408, + [459] = 421, + [460] = 407, + [461] = 409, + [462] = 411, + [463] = 432, + [464] = 433, + [465] = 434, + [466] = 435, + [467] = 435, + [468] = 441, + [469] = 442, + [470] = 406, + [471] = 471, + [472] = 446, + [473] = 414, + [474] = 413, + [475] = 415, + [476] = 417, + [477] = 419, + [478] = 419, + [479] = 420, + [480] = 422, + [481] = 423, + [482] = 424, + [483] = 405, + [484] = 416, + [485] = 408, + [486] = 421, + [487] = 407, + [488] = 409, + [489] = 411, + [490] = 432, + [491] = 433, + [492] = 434, + [493] = 418, + [494] = 435, + [495] = 406, + [496] = 496, + [497] = 441, + [498] = 442, + [499] = 419, + [500] = 406, + [501] = 420, + [502] = 446, + [503] = 447, + [504] = 504, + [505] = 417, + [506] = 422, + [507] = 419, + [508] = 420, + [509] = 422, + [510] = 424, + [511] = 405, + [512] = 416, + [513] = 408, + [514] = 421, + [515] = 407, + [516] = 409, + [517] = 411, + [518] = 432, + [519] = 433, + [520] = 434, + [521] = 435, + [522] = 436, + [523] = 441, + [524] = 442, + [525] = 424, + [526] = 526, + [527] = 406, + [528] = 405, + [529] = 416, + [530] = 446, + [531] = 408, + [532] = 414, + [533] = 413, + [534] = 421, + [535] = 407, + [536] = 415, + [537] = 423, + [538] = 409, + [539] = 417, + [540] = 419, + [541] = 420, + [542] = 422, + [543] = 424, + [544] = 405, + [545] = 416, + [546] = 408, + [547] = 421, + [548] = 407, + [549] = 409, + [550] = 411, + [551] = 432, + [552] = 433, + [553] = 434, + [554] = 435, + [555] = 555, + [556] = 417, + [557] = 441, + [558] = 442, + [559] = 411, + [560] = 432, + [561] = 406, + [562] = 433, + [563] = 446, + [564] = 434, + [565] = 414, + [566] = 413, + [567] = 415, + [568] = 423, + [569] = 435, + [570] = 417, + [571] = 419, + [572] = 420, + [573] = 422, + [574] = 424, + [575] = 405, + [576] = 416, + [577] = 408, + [578] = 421, + [579] = 407, + [580] = 409, + [581] = 411, + [582] = 432, + [583] = 433, + [584] = 434, + [585] = 585, + [586] = 435, + [587] = 415, + [588] = 406, + [589] = 441, + [590] = 442, + [591] = 441, + [592] = 406, + [593] = 418, + [594] = 442, + [595] = 446, + [596] = 443, + [597] = 414, + [598] = 413, + [599] = 599, + [600] = 415, + [601] = 423, + [602] = 602, + [603] = 447, + [604] = 441, + [605] = 442, + [606] = 414, + [607] = 413, + [608] = 447, + [609] = 609, + [610] = 406, + [611] = 406, + [612] = 447, + [613] = 417, + [614] = 419, + [615] = 420, + [616] = 422, + [617] = 424, + [618] = 405, + [619] = 416, + [620] = 408, + [621] = 421, + [622] = 407, + [623] = 409, + [624] = 411, + [625] = 432, + [626] = 433, + [627] = 434, + [628] = 435, + [629] = 406, + [630] = 418, + [631] = 441, + [632] = 442, + [633] = 446, + [634] = 406, + [635] = 420, + [636] = 446, + [637] = 414, + [638] = 413, + [639] = 422, + [640] = 640, + [641] = 641, + [642] = 423, + [643] = 415, + [644] = 423, + [645] = 414, + [646] = 413, + [647] = 414, + [648] = 413, + [649] = 424, + [650] = 526, + [651] = 447, + [652] = 447, + [653] = 415, + [654] = 423, + [655] = 415, + [656] = 423, + [657] = 447, + [658] = 658, + [659] = 658, + [660] = 658, + [661] = 661, + [662] = 661, + [663] = 661, + [664] = 664, + [665] = 664, + [666] = 664, + [667] = 667, + [668] = 667, + [669] = 667, + [670] = 670, + [671] = 670, + [672] = 670, + [673] = 673, + [674] = 674, + [675] = 674, + [676] = 673, + [677] = 673, + [678] = 674, + [679] = 679, + [680] = 231, + [681] = 679, + [682] = 679, + [683] = 234, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 691, + [693] = 690, + [694] = 690, + [695] = 689, + [696] = 689, + [697] = 691, + [698] = 698, + [699] = 698, + [700] = 700, + [701] = 701, + [702] = 701, + [703] = 701, + [704] = 701, + [705] = 700, + [706] = 706, + [707] = 701, + [708] = 706, + [709] = 701, + [710] = 706, + [711] = 701, + [712] = 712, + [713] = 701, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 701, + [718] = 698, + [719] = 701, + [720] = 241, + [721] = 721, + [722] = 722, + [723] = 722, + [724] = 722, + [725] = 701, + [726] = 701, + [727] = 232, + [728] = 701, + [729] = 701, + [730] = 701, + [731] = 244, + [732] = 242, + [733] = 245, + [734] = 254, + [735] = 254, + [736] = 701, + [737] = 232, + [738] = 712, + [739] = 244, + [740] = 241, + [741] = 700, + [742] = 742, + [743] = 742, + [744] = 744, + [745] = 742, + [746] = 742, + [747] = 742, + [748] = 742, + [749] = 742, + [750] = 701, + [751] = 742, + [752] = 225, + [753] = 742, + [754] = 226, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 757, + [759] = 222, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 239, + [766] = 757, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 770, + [771] = 771, + [772] = 772, + [773] = 773, + [774] = 757, + [775] = 775, + [776] = 776, + [777] = 246, + [778] = 778, + [779] = 757, + [780] = 780, + [781] = 781, + [782] = 782, + [783] = 783, + [784] = 784, + [785] = 785, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 794, + [795] = 795, + [796] = 796, + [797] = 797, + [798] = 798, + [799] = 799, + [800] = 794, + [801] = 795, + [802] = 802, + [803] = 803, + [804] = 804, + [805] = 794, + [806] = 795, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 795, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 230, + [851] = 794, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 228, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 242, + [886] = 245, + [887] = 887, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 908, + [909] = 794, + [910] = 910, + [911] = 795, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 918, + [921] = 917, + [922] = 922, + [923] = 918, + [924] = 917, + [925] = 918, + [926] = 917, + [927] = 927, + [928] = 918, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 917, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 922, + [939] = 778, + [940] = 940, + [941] = 918, + [942] = 922, + [943] = 917, + [944] = 756, + [945] = 918, + [946] = 917, + [947] = 947, + [948] = 948, + [949] = 949, + [950] = 950, + [951] = 948, + [952] = 952, + [953] = 949, + [954] = 948, + [955] = 948, + [956] = 950, + [957] = 957, + [958] = 949, + [959] = 959, + [960] = 950, + [961] = 949, + [962] = 949, + [963] = 963, + [964] = 948, + [965] = 948, + [966] = 949, + [967] = 949, + [968] = 948, + [969] = 950, + [970] = 950, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 977, + [980] = 980, + [981] = 981, + [982] = 977, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 981, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 976, + [992] = 992, + [993] = 983, + [994] = 994, + [995] = 995, + [996] = 988, + [997] = 990, + [998] = 995, + [999] = 999, + [1000] = 1000, + [1001] = 974, + [1002] = 975, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 977, + [1007] = 976, + [1008] = 1008, + [1009] = 994, + [1010] = 971, + [1011] = 1011, + [1012] = 1000, + [1013] = 983, + [1014] = 984, + [1015] = 985, + [1016] = 986, + [1017] = 981, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 984, + [1022] = 994, + [1023] = 971, + [1024] = 988, + [1025] = 990, + [1026] = 995, + [1027] = 999, + [1028] = 1003, + [1029] = 974, + [1030] = 977, + [1031] = 975, + [1032] = 1003, + [1033] = 976, + [1034] = 1004, + [1035] = 1035, + [1036] = 983, + [1037] = 984, + [1038] = 985, + [1039] = 986, + [1040] = 981, + [1041] = 985, + [1042] = 994, + [1043] = 971, + [1044] = 995, + [1045] = 999, + [1046] = 974, + [1047] = 975, + [1048] = 1003, + [1049] = 1004, + [1050] = 1050, + [1051] = 973, + [1052] = 983, + [1053] = 984, + [1054] = 985, + [1055] = 999, + [1056] = 981, + [1057] = 977, + [1058] = 994, + [1059] = 977, + [1060] = 971, + [1061] = 995, + [1062] = 999, + [1063] = 994, + [1064] = 974, + [1065] = 975, + [1066] = 1003, + [1067] = 1004, + [1068] = 971, + [1069] = 983, + [1070] = 984, + [1071] = 985, + [1072] = 986, + [1073] = 981, + [1074] = 976, + [1075] = 988, + [1076] = 990, + [1077] = 988, + [1078] = 990, + [1079] = 986, + [1080] = 995, + [1081] = 999, + [1082] = 1035, + [1083] = 1050, + [1084] = 1084, + [1085] = 974, + [1086] = 975, + [1087] = 976, + [1088] = 1003, + [1089] = 989, + [1090] = 1004, + [1091] = 983, + [1092] = 984, + [1093] = 985, + [1094] = 986, + [1095] = 981, + [1096] = 1096, + [1097] = 994, + [1098] = 971, + [1099] = 1099, + [1100] = 988, + [1101] = 990, + [1102] = 1102, + [1103] = 995, + [1104] = 999, + [1105] = 1004, + [1106] = 1106, + [1107] = 974, + [1108] = 975, + [1109] = 1109, + [1110] = 1003, + [1111] = 1004, + [1112] = 1084, + [1113] = 1011, + [1114] = 976, + [1115] = 1115, + [1116] = 1116, + [1117] = 988, + [1118] = 990, + [1119] = 1011, + [1120] = 1011, + [1121] = 1011, + [1122] = 1011, + [1123] = 1011, + [1124] = 986, + [1125] = 1125, + [1126] = 1125, + [1127] = 1125, + [1128] = 1125, + [1129] = 1125, + [1130] = 1125, + [1131] = 1125, + [1132] = 1125, + [1133] = 1125, + [1134] = 1125, + [1135] = 1125, + [1136] = 1125, + [1137] = 1137, + [1138] = 1138, + [1139] = 1138, + [1140] = 1138, + [1141] = 1137, + [1142] = 1142, + [1143] = 1137, + [1144] = 1142, + [1145] = 1142, + [1146] = 1146, + [1147] = 1147, + [1148] = 1147, + [1149] = 1146, + [1150] = 1150, + [1151] = 1151, + [1152] = 1151, + [1153] = 1153, + [1154] = 1154, + [1155] = 1154, + [1156] = 1153, + [1157] = 1157, + [1158] = 1150, + [1159] = 1154, + [1160] = 1147, + [1161] = 1147, + [1162] = 1153, + [1163] = 1157, + [1164] = 1157, + [1165] = 1147, + [1166] = 1147, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1168, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1168, + [1177] = 1147, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1147, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 756, + [1187] = 1187, + [1188] = 1187, + [1189] = 1187, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1185, + [1194] = 1191, + [1195] = 1147, + [1196] = 1185, + [1197] = 1146, + [1198] = 1172, + [1199] = 1199, + [1200] = 1147, + [1201] = 1147, + [1202] = 1147, + [1203] = 778, + [1204] = 1192, + [1205] = 1147, + [1206] = 1206, + [1207] = 1207, + [1208] = 1191, + [1209] = 1167, + [1210] = 1147, + [1211] = 1172, + [1212] = 1212, + [1213] = 1147, + [1214] = 1147, + [1215] = 1150, + [1216] = 1172, + [1217] = 1217, + [1218] = 1172, + [1219] = 1219, + [1220] = 1147, + [1221] = 1221, + [1222] = 1222, + [1223] = 1221, + [1224] = 1224, + [1225] = 1225, + [1226] = 1172, + [1227] = 1227, + [1228] = 1224, + [1229] = 1225, + [1230] = 1221, + [1231] = 1224, + [1232] = 1199, + [1233] = 1147, + [1234] = 1234, + [1235] = 1224, + [1236] = 1172, + [1237] = 1237, + [1238] = 1222, + [1239] = 1224, + [1240] = 1240, + [1241] = 1224, + [1242] = 1224, + [1243] = 1243, + [1244] = 1172, + [1245] = 1234, + [1246] = 1224, + [1247] = 1247, + [1248] = 1172, + [1249] = 1224, + [1250] = 1243, + [1251] = 1199, + [1252] = 1252, + [1253] = 1253, + [1254] = 1207, + [1255] = 1255, + [1256] = 1199, + [1257] = 1175, + [1258] = 1172, + [1259] = 1172, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 1212, + [1264] = 1212, + [1265] = 1175, + [1266] = 1199, + [1267] = 1267, + [1268] = 1237, + [1269] = 1171, + [1270] = 1267, + [1271] = 1171, + [1272] = 1175, + [1273] = 1273, + [1274] = 1262, + [1275] = 1267, + [1276] = 1172, + [1277] = 1277, + [1278] = 1260, + [1279] = 1237, + [1280] = 1171, + [1281] = 1199, + [1282] = 1282, + [1283] = 1252, + [1284] = 1199, + [1285] = 1212, + [1286] = 1234, + [1287] = 1172, + [1288] = 1182, + [1289] = 1289, + [1290] = 1290, + [1291] = 1183, + [1292] = 1290, + [1293] = 1293, + [1294] = 1290, + [1295] = 1212, + [1296] = 1243, + [1297] = 1243, + [1298] = 778, + [1299] = 1289, + [1300] = 1300, + [1301] = 756, + [1302] = 1179, + [1303] = 1234, + [1304] = 1243, + [1305] = 1199, + [1306] = 1180, + [1307] = 1199, + [1308] = 1212, + [1309] = 1243, + [1310] = 1310, + [1311] = 1289, + [1312] = 1234, + [1313] = 1173, + [1314] = 1300, + [1315] = 1237, + [1316] = 1207, + [1317] = 1184, + [1318] = 1234, + [1319] = 1172, + [1320] = 1178, + [1321] = 1243, + [1322] = 1171, + [1323] = 1323, + [1324] = 1212, + [1325] = 1243, + [1326] = 1234, + [1327] = 1327, + [1328] = 1234, + [1329] = 1329, + [1330] = 1253, + [1331] = 1212, + [1332] = 1332, + [1333] = 1261, + [1334] = 1171, + [1335] = 1335, + [1336] = 1175, + [1337] = 1175, + [1338] = 1335, + [1339] = 1212, + [1340] = 1199, + [1341] = 1207, + [1342] = 1207, + [1343] = 1207, + [1344] = 1171, + [1345] = 1175, + [1346] = 1346, + [1347] = 1347, + [1348] = 1346, + [1349] = 1346, + [1350] = 1346, + [1351] = 1346, + [1352] = 1352, + [1353] = 1234, + [1354] = 1354, + [1355] = 1234, + [1356] = 1243, + [1357] = 1225, + [1358] = 1234, + [1359] = 1222, + [1360] = 1346, + [1361] = 1212, + [1362] = 1234, + [1363] = 1243, + [1364] = 1364, + [1365] = 1365, + [1366] = 1243, + [1367] = 1243, + [1368] = 1332, + [1369] = 1207, + [1370] = 1234, + [1371] = 1252, + [1372] = 1243, + [1373] = 1327, + [1374] = 1262, + [1375] = 1234, + [1376] = 1207, + [1377] = 1234, + [1378] = 1243, + [1379] = 1234, + [1380] = 1243, + [1381] = 1243, + [1382] = 1382, + [1383] = 1383, + [1384] = 1384, + [1385] = 1385, + [1386] = 1383, + [1387] = 1384, + [1388] = 1385, + [1389] = 1384, + [1390] = 1383, + [1391] = 1384, + [1392] = 1385, + [1393] = 1393, + [1394] = 1385, + [1395] = 1383, + [1396] = 1393, + [1397] = 1382, + [1398] = 1382, + [1399] = 1234, + [1400] = 1393, + [1401] = 1382, + [1402] = 1207, + [1403] = 1382, + [1404] = 1393, + [1405] = 1382, + [1406] = 1393, + [1407] = 1382, + [1408] = 1383, + [1409] = 1384, + [1410] = 1385, + [1411] = 1393, + [1412] = 1382, + [1413] = 1261, + [1414] = 1347, + [1415] = 1383, + [1416] = 1393, + [1417] = 1393, + [1418] = 1382, + [1419] = 1384, + [1420] = 1243, + [1421] = 1207, + [1422] = 1385, + [1423] = 1393, + [1424] = 1424, + [1425] = 1424, + [1426] = 1424, + [1427] = 1424, + [1428] = 1424, + [1429] = 1424, + [1430] = 1424, + [1431] = 1424, + [1432] = 1424, + [1433] = 1433, + [1434] = 1433, + [1435] = 1433, + [1436] = 1436, + [1437] = 1433, + [1438] = 1433, + [1439] = 1433, + [1440] = 1440, + [1441] = 1440, + [1442] = 1440, + [1443] = 1443, + [1444] = 1443, + [1445] = 1440, + [1446] = 1443, + [1447] = 1447, + [1448] = 1447, + [1449] = 1447, + [1450] = 1450, + [1451] = 1447, + [1452] = 1440, + [1453] = 1443, + [1454] = 1443, + [1455] = 1447, + [1456] = 1456, + [1457] = 1456, + [1458] = 1456, + [1459] = 1459, + [1460] = 1456, + [1461] = 1456, + [1462] = 1456, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 231, + [1469] = 1469, + [1470] = 234, + [1471] = 1471, + [1472] = 1472, + [1473] = 234, + [1474] = 231, + [1475] = 1475, + [1476] = 223, + [1477] = 1477, + [1478] = 1478, + [1479] = 957, + [1480] = 952, + [1481] = 1481, + [1482] = 1482, + [1483] = 959, + [1484] = 1484, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, + [1508] = 226, + [1509] = 225, + [1510] = 222, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 232, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 685, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, + [1529] = 1529, + [1530] = 687, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, + [1534] = 226, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 225, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 222, + [1543] = 1543, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1551, + [1552] = 1552, + [1553] = 1553, + [1554] = 688, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 1564, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, + [1581] = 1581, + [1582] = 1582, + [1583] = 1583, + [1584] = 684, + [1585] = 1585, + [1586] = 241, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 686, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1602, + [1603] = 1603, + [1604] = 1604, + [1605] = 1605, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, + [1615] = 1615, + [1616] = 1616, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 242, + [1623] = 1623, + [1624] = 1624, + [1625] = 1625, + [1626] = 1626, + [1627] = 1459, + [1628] = 1628, + [1629] = 1629, + [1630] = 1630, + [1631] = 1631, + [1632] = 1632, + [1633] = 1633, + [1634] = 1634, + [1635] = 1635, + [1636] = 1636, + [1637] = 1637, + [1638] = 1638, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, + [1642] = 1642, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1650, + [1651] = 1651, + [1652] = 1652, + [1653] = 1653, + [1654] = 1654, + [1655] = 1655, + [1656] = 1656, + [1657] = 1657, + [1658] = 1658, + [1659] = 1659, + [1660] = 245, + [1661] = 1661, + [1662] = 1662, + [1663] = 1663, + [1664] = 1664, + [1665] = 1665, + [1666] = 1666, + [1667] = 1667, + [1668] = 1668, + [1669] = 1669, + [1670] = 1670, + [1671] = 1671, + [1672] = 1672, + [1673] = 1673, + [1674] = 1674, + [1675] = 1675, + [1676] = 1676, + [1677] = 1677, + [1678] = 1678, + [1679] = 1679, + [1680] = 1680, + [1681] = 1681, + [1682] = 1682, + [1683] = 1683, + [1684] = 1684, + [1685] = 1685, + [1686] = 1686, + [1687] = 1687, + [1688] = 1688, + [1689] = 1689, + [1690] = 1690, + [1691] = 1691, + [1692] = 1692, + [1693] = 1693, + [1694] = 1694, + [1695] = 1695, + [1696] = 1696, + [1697] = 1697, + [1698] = 1698, + [1699] = 1699, + [1700] = 1700, + [1701] = 1701, + [1702] = 1702, + [1703] = 1703, + [1704] = 1704, + [1705] = 239, + [1706] = 1679, + [1707] = 246, + [1708] = 230, + [1709] = 228, + [1710] = 254, + [1711] = 239, + [1712] = 246, + [1713] = 244, + [1714] = 1679, + [1715] = 1715, + [1716] = 1716, + [1717] = 1717, + [1718] = 1718, + [1719] = 1679, + [1720] = 1720, + [1721] = 1721, + [1722] = 1722, + [1723] = 1723, + [1724] = 1724, + [1725] = 1679, + [1726] = 1702, + [1727] = 1727, + [1728] = 1703, + [1729] = 1729, + [1730] = 254, + [1731] = 1731, + [1732] = 1727, + [1733] = 241, + [1734] = 1704, + [1735] = 244, + [1736] = 242, + [1737] = 1737, + [1738] = 230, + [1739] = 1739, + [1740] = 228, + [1741] = 1741, + [1742] = 1463, + [1743] = 232, + [1744] = 1469, + [1745] = 1731, + [1746] = 1727, + [1747] = 1466, + [1748] = 1465, + [1749] = 1731, + [1750] = 1727, + [1751] = 1751, + [1752] = 245, + [1753] = 1731, + [1754] = 1727, + [1755] = 1731, + [1756] = 1617, + [1757] = 1634, + [1758] = 1636, + [1759] = 1666, + [1760] = 1760, + [1761] = 1637, + [1762] = 1638, + [1763] = 1639, + [1764] = 1640, + [1765] = 1641, + [1766] = 1642, + [1767] = 1610, + [1768] = 1643, + [1769] = 1644, + [1770] = 1770, + [1771] = 1770, + [1772] = 1717, + [1773] = 1773, + [1774] = 1633, + [1775] = 1775, + [1776] = 1776, + [1777] = 1770, + [1778] = 957, + [1779] = 1773, + [1780] = 1670, + [1781] = 1693, + [1782] = 1654, + [1783] = 1783, + [1784] = 1663, + [1785] = 1484, + [1786] = 1471, + [1787] = 1671, + [1788] = 1616, + [1789] = 1647, + [1790] = 1648, + [1791] = 1617, + [1792] = 1773, + [1793] = 1503, + [1794] = 1485, + [1795] = 1723, + [1796] = 1636, + [1797] = 1717, + [1798] = 1718, + [1799] = 1720, + [1800] = 1723, + [1801] = 1519, + [1802] = 1637, + [1803] = 959, + [1804] = 1804, + [1805] = 1638, + [1806] = 1639, + [1807] = 1653, + [1808] = 1475, + [1809] = 1702, + [1810] = 1641, + [1811] = 1654, + [1812] = 1703, + [1813] = 1634, + [1814] = 1704, + [1815] = 1498, + [1816] = 1501, + [1817] = 1620, + [1818] = 1663, + [1819] = 1642, + [1820] = 1620, + [1821] = 1821, + [1822] = 1666, + [1823] = 1653, + [1824] = 1610, + [1825] = 1512, + [1826] = 1773, + [1827] = 1670, + [1828] = 1643, + [1829] = 1829, + [1830] = 1644, + [1831] = 1498, + [1832] = 1501, + [1833] = 1501, + [1834] = 1482, + [1835] = 1671, + [1836] = 1720, + [1837] = 1804, + [1838] = 1616, + [1839] = 1693, + [1840] = 1498, + [1841] = 1770, + [1842] = 1481, + [1843] = 1718, + [1844] = 1773, + [1845] = 1631, + [1846] = 1633, + [1847] = 1648, + [1848] = 952, + [1849] = 1478, + [1850] = 1472, + [1851] = 1631, + [1852] = 1477, + [1853] = 1647, + [1854] = 1640, + [1855] = 1543, + [1856] = 1821, + [1857] = 1592, + [1858] = 1858, + [1859] = 1859, + [1860] = 1860, + [1861] = 1512, + [1862] = 1862, + [1863] = 1863, + [1864] = 1864, + [1865] = 1865, + [1866] = 1519, + [1867] = 1498, + [1868] = 1868, + [1869] = 688, + [1870] = 1555, + [1871] = 1556, + [1872] = 1557, + [1873] = 1558, + [1874] = 1559, + [1875] = 1560, + [1876] = 1561, + [1877] = 1562, + [1878] = 1878, + [1879] = 1563, + [1880] = 1564, + [1881] = 1501, + [1882] = 1565, + [1883] = 1566, + [1884] = 1568, + [1885] = 1569, + [1886] = 1570, + [1887] = 1573, + [1888] = 1574, + [1889] = 1575, + [1890] = 1576, + [1891] = 1577, + [1892] = 1580, + [1893] = 1581, + [1894] = 1499, + [1895] = 1517, + [1896] = 1518, + [1897] = 1897, + [1898] = 684, + [1899] = 1585, + [1900] = 1588, + [1901] = 1593, + [1902] = 1594, + [1903] = 1595, + [1904] = 1596, + [1905] = 1597, + [1906] = 1598, + [1907] = 1599, + [1908] = 1600, + [1909] = 1601, + [1910] = 1487, + [1911] = 1603, + [1912] = 1604, + [1913] = 1605, + [1914] = 1606, + [1915] = 1608, + [1916] = 1495, + [1917] = 1602, + [1918] = 1645, + [1919] = 1551, + [1920] = 1507, + [1921] = 1520, + [1922] = 686, + [1923] = 1489, + [1924] = 1490, + [1925] = 1925, + [1926] = 1492, + [1927] = 1494, + [1928] = 1496, + [1929] = 1497, + [1930] = 1511, + [1931] = 1931, + [1932] = 1513, + [1933] = 1515, + [1934] = 1516, + [1935] = 1521, + [1936] = 1523, + [1937] = 1524, + [1938] = 685, + [1939] = 1531, + [1940] = 1533, + [1941] = 1550, + [1942] = 1567, + [1943] = 1571, + [1944] = 1578, + [1945] = 1579, + [1946] = 1582, + [1947] = 1583, + [1948] = 1589, + [1949] = 1522, + [1950] = 1590, + [1951] = 1951, + [1952] = 223, + [1953] = 1953, + [1954] = 1954, + [1955] = 1925, + [1956] = 1572, + [1957] = 1957, + [1958] = 1526, + [1959] = 1959, + [1960] = 1680, + [1961] = 1961, + [1962] = 1646, + [1963] = 1957, + [1964] = 1527, + [1965] = 1704, + [1966] = 1966, + [1967] = 1957, + [1968] = 1519, + [1969] = 1957, + [1970] = 1528, + [1971] = 1498, + [1972] = 1529, + [1973] = 687, + [1974] = 1501, + [1975] = 1729, + [1976] = 1504, + [1977] = 1532, + [1978] = 1607, + [1979] = 1488, + [1980] = 1980, + [1981] = 1587, + [1982] = 1505, + [1983] = 1506, + [1984] = 1535, + [1985] = 1536, + [1986] = 1986, + [1987] = 1646, + [1988] = 1703, + [1989] = 1863, + [1990] = 1821, + [1991] = 1957, + [1992] = 1493, + [1993] = 1616, + [1994] = 1617, + [1995] = 1620, + [1996] = 1631, + [1997] = 1633, + [1998] = 1634, + [1999] = 1636, + [2000] = 1637, + [2001] = 1638, + [2002] = 1639, + [2003] = 1640, + [2004] = 1641, + [2005] = 1642, + [2006] = 1643, + [2007] = 1644, + [2008] = 1645, + [2009] = 1647, + [2010] = 1648, + [2011] = 1653, + [2012] = 1654, + [2013] = 1663, + [2014] = 1666, + [2015] = 1610, + [2016] = 1670, + [2017] = 1671, + [2018] = 1537, + [2019] = 1693, + [2020] = 2020, + [2021] = 1539, + [2022] = 1540, + [2023] = 2023, + [2024] = 1541, + [2025] = 1544, + [2026] = 1545, + [2027] = 1546, + [2028] = 1547, + [2029] = 2029, + [2030] = 1500, + [2031] = 1548, + [2032] = 2032, + [2033] = 2033, + [2034] = 1500, + [2035] = 1549, + [2036] = 1502, + [2037] = 1680, + [2038] = 1498, + [2039] = 223, + [2040] = 1502, + [2041] = 1680, + [2042] = 1501, + [2043] = 1609, + [2044] = 1503, + [2045] = 1503, + [2046] = 1552, + [2047] = 1645, + [2048] = 1553, + [2049] = 1957, + [2050] = 1646, + [2051] = 1729, + [2052] = 1717, + [2053] = 1718, + [2054] = 1720, + [2055] = 1723, + [2056] = 1491, + [2057] = 1702, + [2058] = 2058, + [2059] = 1694, + [2060] = 2060, + [2061] = 1721, + [2062] = 2062, + [2063] = 1501, + [2064] = 1656, + [2065] = 2065, + [2066] = 2066, + [2067] = 2067, + [2068] = 2068, + [2069] = 1632, + [2070] = 2070, + [2071] = 1652, + [2072] = 1665, + [2073] = 2073, + [2074] = 229, + [2075] = 2067, + [2076] = 1620, + [2077] = 229, + [2078] = 1631, + [2079] = 2079, + [2080] = 1618, + [2081] = 2081, + [2082] = 1645, + [2083] = 1722, + [2084] = 1690, + [2085] = 1633, + [2086] = 2086, + [2087] = 2087, + [2088] = 1614, + [2089] = 1612, + [2090] = 237, + [2091] = 2091, + [2092] = 238, + [2093] = 2067, + [2094] = 1717, + [2095] = 249, + [2096] = 250, + [2097] = 1718, + [2098] = 1821, + [2099] = 2099, + [2100] = 2100, + [2101] = 1720, + [2102] = 1623, + [2103] = 2103, + [2104] = 252, + [2105] = 2105, + [2106] = 1672, + [2107] = 1673, + [2108] = 2070, + [2109] = 1723, + [2110] = 2110, + [2111] = 2111, + [2112] = 1674, + [2113] = 249, + [2114] = 250, + [2115] = 1634, + [2116] = 1675, + [2117] = 2117, + [2118] = 1624, + [2119] = 1500, + [2120] = 2120, + [2121] = 2070, + [2122] = 1676, + [2123] = 1502, + [2124] = 1680, + [2125] = 2073, + [2126] = 1677, + [2127] = 2127, + [2128] = 2066, + [2129] = 2129, + [2130] = 1678, + [2131] = 1649, + [2132] = 236, + [2133] = 251, + [2134] = 1619, + [2135] = 2135, + [2136] = 1625, + [2137] = 233, + [2138] = 1635, + [2139] = 2066, + [2140] = 2140, + [2141] = 2141, + [2142] = 2142, + [2143] = 1636, + [2144] = 235, + [2145] = 1626, + [2146] = 1616, + [2147] = 1617, + [2148] = 1637, + [2149] = 1638, + [2150] = 2150, + [2151] = 1639, + [2152] = 1659, + [2153] = 1640, + [2154] = 1741, + [2155] = 1641, + [2156] = 237, + [2157] = 2157, + [2158] = 1642, + [2159] = 238, + [2160] = 2160, + [2161] = 2161, + [2162] = 1695, + [2163] = 1620, + [2164] = 247, + [2165] = 2165, + [2166] = 248, + [2167] = 1696, + [2168] = 1697, + [2169] = 2081, + [2170] = 2170, + [2171] = 2171, + [2172] = 1643, + [2173] = 1644, + [2174] = 2174, + [2175] = 1647, + [2176] = 2176, + [2177] = 1698, + [2178] = 2067, + [2179] = 2179, + [2180] = 2066, + [2181] = 1648, + [2182] = 1653, + [2183] = 1654, + [2184] = 2067, + [2185] = 1663, + [2186] = 2070, + [2187] = 1699, + [2188] = 2188, + [2189] = 1631, + [2190] = 1633, + [2191] = 1634, + [2192] = 2066, + [2193] = 1666, + [2194] = 1613, + [2195] = 1636, + [2196] = 2157, + [2197] = 1637, + [2198] = 1638, + [2199] = 1610, + [2200] = 1670, + [2201] = 1667, + [2202] = 1760, + [2203] = 1639, + [2204] = 2204, + [2205] = 1640, + [2206] = 1641, + [2207] = 2207, + [2208] = 1671, + [2209] = 1693, + [2210] = 2210, + [2211] = 2070, + [2212] = 2142, + [2213] = 247, + [2214] = 1661, + [2215] = 248, + [2216] = 1700, + [2217] = 1655, + [2218] = 1668, + [2219] = 2219, + [2220] = 1643, + [2221] = 1644, + [2222] = 2222, + [2223] = 1760, + [2224] = 1729, + [2225] = 251, + [2226] = 2161, + [2227] = 1718, + [2228] = 1651, + [2229] = 2229, + [2230] = 1720, + [2231] = 1729, + [2232] = 2232, + [2233] = 1723, + [2234] = 2234, + [2235] = 1701, + [2236] = 1717, + [2237] = 2165, + [2238] = 2238, + [2239] = 1662, + [2240] = 2240, + [2241] = 2234, + [2242] = 1628, + [2243] = 2243, + [2244] = 1658, + [2245] = 1729, + [2246] = 1621, + [2247] = 1647, + [2248] = 1648, + [2249] = 2249, + [2250] = 1653, + [2251] = 1654, + [2252] = 2252, + [2253] = 2066, + [2254] = 1716, + [2255] = 1966, + [2256] = 2142, + [2257] = 2165, + [2258] = 2243, + [2259] = 2259, + [2260] = 1663, + [2261] = 1666, + [2262] = 1610, + [2263] = 1670, + [2264] = 1671, + [2265] = 2265, + [2266] = 2266, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 2272, + [2273] = 1657, + [2274] = 2087, + [2275] = 236, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 2279, + [2280] = 1616, + [2281] = 2249, + [2282] = 1611, + [2283] = 2234, + [2284] = 2284, + [2285] = 1617, + [2286] = 2268, + [2287] = 2269, + [2288] = 2288, + [2289] = 2229, + [2290] = 1693, + [2291] = 2291, + [2292] = 1715, + [2293] = 2268, + [2294] = 2294, + [2295] = 2295, + [2296] = 2296, + [2297] = 1512, + [2298] = 2171, + [2299] = 2229, + [2300] = 2267, + [2301] = 1681, + [2302] = 1682, + [2303] = 1683, + [2304] = 1680, + [2305] = 2295, + [2306] = 2099, + [2307] = 2307, + [2308] = 2081, + [2309] = 1615, + [2310] = 2171, + [2311] = 1691, + [2312] = 1692, + [2313] = 233, + [2314] = 1684, + [2315] = 1498, + [2316] = 1685, + [2317] = 2269, + [2318] = 2142, + [2319] = 1629, + [2320] = 2320, + [2321] = 2321, + [2322] = 2322, + [2323] = 2165, + [2324] = 1645, + [2325] = 1498, + [2326] = 2252, + [2327] = 2327, + [2328] = 2328, + [2329] = 235, + [2330] = 2330, + [2331] = 1501, + [2332] = 1650, + [2333] = 2067, + [2334] = 2294, + [2335] = 2335, + [2336] = 1512, + [2337] = 2070, + [2338] = 252, + [2339] = 1669, + [2340] = 2340, + [2341] = 1664, + [2342] = 2066, + [2343] = 2142, + [2344] = 2165, + [2345] = 1966, + [2346] = 2346, + [2347] = 1686, + [2348] = 2294, + [2349] = 1687, + [2350] = 1688, + [2351] = 1689, + [2352] = 1724, + [2353] = 1630, + [2354] = 1642, + [2355] = 1729, + [2356] = 2356, + [2357] = 2357, + [2358] = 2358, + [2359] = 2359, + [2360] = 2360, + [2361] = 1775, + [2362] = 2362, + [2363] = 2363, + [2364] = 2364, + [2365] = 2365, + [2366] = 2366, + [2367] = 2360, + [2368] = 2368, + [2369] = 2369, + [2370] = 2370, + [2371] = 2371, + [2372] = 2372, + [2373] = 2373, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, + [2377] = 2377, + [2378] = 2378, + [2379] = 2379, + [2380] = 2380, + [2381] = 240, + [2382] = 2382, + [2383] = 2360, + [2384] = 1760, + [2385] = 2385, + [2386] = 2386, + [2387] = 2387, + [2388] = 2388, + [2389] = 2360, + [2390] = 2390, + [2391] = 1646, + [2392] = 2392, + [2393] = 1503, + [2394] = 1519, + [2395] = 1702, + [2396] = 1703, + [2397] = 1704, + [2398] = 2360, + [2399] = 1646, + [2400] = 1729, + [2401] = 1500, + [2402] = 1502, + [2403] = 2360, + [2404] = 1645, + [2405] = 1680, + [2406] = 1703, + [2407] = 1498, + [2408] = 1501, + [2409] = 2409, + [2410] = 2382, + [2411] = 1512, + [2412] = 2366, + [2413] = 2371, + [2414] = 2375, + [2415] = 2378, + [2416] = 2416, + [2417] = 2409, + [2418] = 1616, + [2419] = 240, + [2420] = 1620, + [2421] = 1631, + [2422] = 1633, + [2423] = 1634, + [2424] = 1636, + [2425] = 1637, + [2426] = 1638, + [2427] = 1639, + [2428] = 1640, + [2429] = 1641, + [2430] = 1642, + [2431] = 1643, + [2432] = 1644, + [2433] = 1647, + [2434] = 1648, + [2435] = 1653, + [2436] = 1654, + [2437] = 1663, + [2438] = 1666, + [2439] = 1610, + [2440] = 1670, + [2441] = 1671, + [2442] = 1693, + [2443] = 1717, + [2444] = 1718, + [2445] = 1720, + [2446] = 1723, + [2447] = 1616, + [2448] = 1617, + [2449] = 1620, + [2450] = 1631, + [2451] = 1633, + [2452] = 1634, + [2453] = 1636, + [2454] = 1637, + [2455] = 1638, + [2456] = 1639, + [2457] = 1640, + [2458] = 1641, + [2459] = 1642, + [2460] = 1643, + [2461] = 1644, + [2462] = 1647, + [2463] = 1648, + [2464] = 1653, + [2465] = 1654, + [2466] = 1663, + [2467] = 1666, + [2468] = 1610, + [2469] = 1670, + [2470] = 1671, + [2471] = 1693, + [2472] = 1717, + [2473] = 1718, + [2474] = 1720, + [2475] = 1723, + [2476] = 1729, + [2477] = 1617, + [2478] = 1633, + [2479] = 1638, + [2480] = 1639, + [2481] = 1640, + [2482] = 1641, + [2483] = 1642, + [2484] = 1643, + [2485] = 1644, + [2486] = 1647, + [2487] = 1648, + [2488] = 1653, + [2489] = 1654, + [2490] = 1663, + [2491] = 1666, + [2492] = 1610, + [2493] = 1670, + [2494] = 1671, + [2495] = 1693, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 1878, + [2503] = 2503, + [2504] = 2504, + [2505] = 1717, + [2506] = 1718, + [2507] = 1720, + [2508] = 1723, + [2509] = 2497, + [2510] = 2497, + [2511] = 2511, + [2512] = 2512, + [2513] = 2513, + [2514] = 1966, + [2515] = 2515, + [2516] = 2516, + [2517] = 2517, + [2518] = 2518, + [2519] = 2519, + [2520] = 1637, + [2521] = 2521, + [2522] = 2522, + [2523] = 2523, + [2524] = 2524, + [2525] = 1804, + [2526] = 1702, + [2527] = 1703, + [2528] = 1704, + [2529] = 952, + [2530] = 2497, + [2531] = 2497, + [2532] = 1512, + [2533] = 2497, + [2534] = 2497, + [2535] = 1646, + [2536] = 959, + [2537] = 1503, + [2538] = 957, + [2539] = 1519, + [2540] = 1729, + [2541] = 1646, + [2542] = 1645, + [2543] = 1680, + [2544] = 2544, + [2545] = 2545, + [2546] = 2546, + [2547] = 2497, + [2548] = 2545, + [2549] = 2549, + [2550] = 2550, + [2551] = 2551, + [2552] = 1616, + [2553] = 1617, + [2554] = 1620, + [2555] = 1631, + [2556] = 2556, + [2557] = 1634, + [2558] = 2497, + [2559] = 1512, + [2560] = 1636, + [2561] = 2561, + [2562] = 2562, + [2563] = 2563, + [2564] = 2564, + [2565] = 2165, + [2566] = 2142, + [2567] = 2165, + [2568] = 2568, + [2569] = 2569, + [2570] = 2570, + [2571] = 2571, + [2572] = 2572, + [2573] = 2142, + [2574] = 2165, + [2575] = 2575, + [2576] = 2576, + [2577] = 2577, + [2578] = 2578, + [2579] = 2142, + [2580] = 2580, + [2581] = 2165, + [2582] = 1760, + [2583] = 2583, + [2584] = 2584, + [2585] = 2142, + [2586] = 2165, + [2587] = 2142, + [2588] = 2588, + [2589] = 2165, + [2590] = 2590, + [2591] = 2142, + [2592] = 2592, + [2593] = 2593, + [2594] = 2594, + [2595] = 2595, + [2596] = 2377, + [2597] = 1512, + [2598] = 1512, + [2599] = 2580, + [2600] = 2600, + [2601] = 254, + [2602] = 2602, + [2603] = 232, + [2604] = 244, + [2605] = 2605, + [2606] = 2606, + [2607] = 2607, + [2608] = 2608, + [2609] = 2609, + [2610] = 2610, + [2611] = 2611, + [2612] = 2612, + [2613] = 2613, + [2614] = 1572, + [2615] = 2615, + [2616] = 2616, + [2617] = 2617, + [2618] = 2618, + [2619] = 2619, + [2620] = 2620, + [2621] = 2621, + [2622] = 2622, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, + [2627] = 2608, + [2628] = 2628, + [2629] = 241, + [2630] = 2630, + [2631] = 2631, + [2632] = 2632, + [2633] = 241, + [2634] = 2634, + [2635] = 2608, + [2636] = 2636, + [2637] = 2637, + [2638] = 2638, + [2639] = 2608, + [2640] = 2640, + [2641] = 2641, + [2642] = 2642, + [2643] = 2608, + [2644] = 2644, + [2645] = 2645, + [2646] = 2608, + [2647] = 2647, + [2648] = 2648, + [2649] = 2608, + [2650] = 2650, + [2651] = 2651, + [2652] = 2608, + [2653] = 2653, + [2654] = 2654, + [2655] = 232, + [2656] = 2656, + [2657] = 2657, + [2658] = 2608, + [2659] = 2659, + [2660] = 2660, + [2661] = 1217, + [2662] = 2662, + [2663] = 2663, + [2664] = 244, + [2665] = 2665, + [2666] = 2666, + [2667] = 1493, + [2668] = 2668, + [2669] = 2523, + [2670] = 254, + [2671] = 2671, + [2672] = 2672, + [2673] = 2673, + [2674] = 2674, + [2675] = 2522, + [2676] = 2676, + [2677] = 2265, + [2678] = 1247, + [2679] = 2679, + [2680] = 2210, + [2681] = 2681, + [2682] = 2682, + [2683] = 2266, + [2684] = 2110, + [2685] = 2685, + [2686] = 2686, + [2687] = 2687, + [2688] = 2688, + [2689] = 2689, + [2690] = 2378, + [2691] = 2380, + [2692] = 2692, + [2693] = 2366, + [2694] = 2371, + [2695] = 2375, + [2696] = 2696, + [2697] = 2378, + [2698] = 2698, + [2699] = 2374, + [2700] = 2366, + [2701] = 2379, + [2702] = 1227, + [2703] = 2365, + [2704] = 2371, + [2705] = 2705, + [2706] = 2372, + [2707] = 2707, + [2708] = 2375, + [2709] = 2698, + [2710] = 2710, + [2711] = 2358, + [2712] = 2365, + [2713] = 2370, + [2714] = 2374, + [2715] = 2692, + [2716] = 2373, + [2717] = 2358, + [2718] = 2370, + [2719] = 2376, + [2720] = 2720, + [2721] = 2721, + [2722] = 2722, + [2723] = 2723, + [2724] = 2724, + [2725] = 2725, + [2726] = 2725, + [2727] = 2724, + [2728] = 2722, + [2729] = 2729, + [2730] = 2730, + [2731] = 2725, + [2732] = 2732, + [2733] = 2721, + [2734] = 2721, + [2735] = 2735, + [2736] = 2721, + [2737] = 2737, + [2738] = 2723, + [2739] = 2739, + [2740] = 2730, + [2741] = 2735, + [2742] = 2742, + [2743] = 1293, + [2744] = 2744, + [2745] = 2745, + [2746] = 2359, + [2747] = 2747, + [2748] = 2748, + [2749] = 2749, + [2750] = 2750, + [2751] = 2751, + [2752] = 2752, + [2753] = 2753, + [2754] = 2754, + [2755] = 2755, + [2756] = 1282, + [2757] = 2757, + [2758] = 2758, + [2759] = 1273, + [2760] = 1255, + [2761] = 2761, + [2762] = 1310, + [2763] = 2763, + [2764] = 2764, + [2765] = 2765, + [2766] = 2766, + [2767] = 2767, + [2768] = 2768, + [2769] = 2769, + [2770] = 2770, + [2771] = 2771, + [2772] = 2772, + [2773] = 2773, + [2774] = 2774, + [2775] = 2775, + [2776] = 2776, + [2777] = 2777, + [2778] = 2778, + [2779] = 2779, + [2780] = 2772, + [2781] = 2781, + [2782] = 2782, + [2783] = 2783, + [2784] = 2767, + [2785] = 2785, + [2786] = 2786, + [2787] = 2776, + [2788] = 2788, + [2789] = 2782, + [2790] = 2769, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 2794, + [2795] = 2795, + [2796] = 2796, + [2797] = 2797, + [2798] = 2798, + [2799] = 2792, + [2800] = 2800, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 2804, + [2805] = 2783, + [2806] = 2788, + [2807] = 2781, + [2808] = 2808, + [2809] = 2809, + [2810] = 2810, + [2811] = 2811, + [2812] = 2791, + [2813] = 2813, + [2814] = 2814, + [2815] = 2815, + [2816] = 2816, + [2817] = 2817, + [2818] = 2818, + [2819] = 2819, + [2820] = 2820, + [2821] = 2770, + [2822] = 2822, + [2823] = 2775, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 2827, + [2828] = 2828, + [2829] = 1463, + [2830] = 1466, + [2831] = 1465, + [2832] = 1579, + [2833] = 1571, + [2834] = 1583, + [2835] = 1582, + [2836] = 1489, + [2837] = 1490, + [2838] = 1492, + [2839] = 1494, + [2840] = 1496, + [2841] = 1497, + [2842] = 1511, + [2843] = 1513, + [2844] = 1578, + [2845] = 1516, + [2846] = 1585, + [2847] = 1588, + [2848] = 1593, + [2849] = 1594, + [2850] = 1595, + [2851] = 1596, + [2852] = 1597, + [2853] = 1598, + [2854] = 1599, + [2855] = 1600, + [2856] = 1601, + [2857] = 1487, + [2858] = 1603, + [2859] = 1604, + [2860] = 1531, + [2861] = 1533, + [2862] = 1543, + [2863] = 1550, + [2864] = 1567, + [2865] = 1515, + [2866] = 234, + [2867] = 231, + [2868] = 2868, + [2869] = 1472, + [2870] = 2868, + [2871] = 1565, + [2872] = 1535, + [2873] = 1555, + [2874] = 1574, + [2875] = 1557, + [2876] = 1575, + [2877] = 1576, + [2878] = 1469, + [2879] = 1559, + [2880] = 1568, + [2881] = 1463, + [2882] = 1532, + [2883] = 1564, + [2884] = 1566, + [2885] = 2885, + [2886] = 1477, + [2887] = 1466, + [2888] = 1465, + [2889] = 1573, + [2890] = 1475, + [2891] = 1526, + [2892] = 1609, + [2893] = 1478, + [2894] = 1507, + [2895] = 1481, + [2896] = 1553, + [2897] = 1499, + [2898] = 1592, + [2899] = 1523, + [2900] = 1560, + [2901] = 1561, + [2902] = 1562, + [2903] = 1552, + [2904] = 1563, + [2905] = 1463, + [2906] = 1466, + [2907] = 1465, + [2908] = 1569, + [2909] = 1577, + [2910] = 1581, + [2911] = 1527, + [2912] = 1528, + [2913] = 1529, + [2914] = 2914, + [2915] = 1504, + [2916] = 2916, + [2917] = 2917, + [2918] = 2918, + [2919] = 2919, + [2920] = 1605, + [2921] = 1606, + [2922] = 1495, + [2923] = 1602, + [2924] = 1556, + [2925] = 2916, + [2926] = 2917, + [2927] = 2918, + [2928] = 2919, + [2929] = 1585, + [2930] = 1588, + [2931] = 1593, + [2932] = 1594, + [2933] = 1595, + [2934] = 1596, + [2935] = 1597, + [2936] = 2914, + [2937] = 1598, + [2938] = 1599, + [2939] = 1600, + [2940] = 1601, + [2941] = 1487, + [2942] = 1558, + [2943] = 1604, + [2944] = 2916, + [2945] = 2917, + [2946] = 2918, + [2947] = 2919, + [2948] = 2914, + [2949] = 1489, + [2950] = 1490, + [2951] = 1492, + [2952] = 1494, + [2953] = 1496, + [2954] = 1497, + [2955] = 1511, + [2956] = 1513, + [2957] = 1515, + [2958] = 1516, + [2959] = 1531, + [2960] = 1533, + [2961] = 1543, + [2962] = 1550, + [2963] = 1567, + [2964] = 1571, + [2965] = 1578, + [2966] = 1579, + [2967] = 1582, + [2968] = 1583, + [2969] = 2916, + [2970] = 2917, + [2971] = 2918, + [2972] = 2919, + [2973] = 2914, + [2974] = 1521, + [2975] = 1589, + [2976] = 1524, + [2977] = 2914, + [2978] = 2916, + [2979] = 2917, + [2980] = 2918, + [2981] = 2919, + [2982] = 2914, + [2983] = 1469, + [2984] = 2914, + [2985] = 1517, + [2986] = 2914, + [2987] = 1536, + [2988] = 1537, + [2989] = 1539, + [2990] = 1541, + [2991] = 2914, + [2992] = 1518, + [2993] = 1544, + [2994] = 1545, + [2995] = 1547, + [2996] = 1520, + [2997] = 1549, + [2998] = 1522, + [2999] = 1603, + [3000] = 3000, + [3001] = 1484, + [3002] = 3000, + [3003] = 3000, + [3004] = 3004, + [3005] = 3005, + [3006] = 3006, + [3007] = 3007, + [3008] = 1471, + [3009] = 3009, + [3010] = 3000, + [3011] = 3011, + [3012] = 3005, + [3013] = 3013, + [3014] = 3014, + [3015] = 3015, + [3016] = 3000, + [3017] = 3017, + [3018] = 3018, + [3019] = 1472, + [3020] = 1475, + [3021] = 3021, + [3022] = 3022, + [3023] = 3023, + [3024] = 3024, + [3025] = 3025, + [3026] = 3026, + [3027] = 3000, + [3028] = 3005, + [3029] = 3029, + [3030] = 3030, + [3031] = 3005, + [3032] = 3000, + [3033] = 3033, + [3034] = 1485, + [3035] = 3035, + [3036] = 3036, + [3037] = 3005, + [3038] = 3038, + [3039] = 3039, + [3040] = 3040, + [3041] = 3041, + [3042] = 1568, + [3043] = 1573, + [3044] = 1574, + [3045] = 3045, + [3046] = 1575, + [3047] = 1576, + [3048] = 1571, + [3049] = 1578, + [3050] = 1579, + [3051] = 1582, + [3052] = 1583, + [3053] = 1580, + [3054] = 1570, + [3055] = 3055, + [3056] = 1585, + [3057] = 3057, + [3058] = 1588, + [3059] = 3059, + [3060] = 1505, + [3061] = 1506, + [3062] = 3062, + [3063] = 3045, + [3064] = 1593, + [3065] = 3057, + [3066] = 1594, + [3067] = 1595, + [3068] = 1596, + [3069] = 1597, + [3070] = 1598, + [3071] = 1477, + [3072] = 1599, + [3073] = 1600, + [3074] = 1469, + [3075] = 3057, + [3076] = 1601, + [3077] = 1487, + [3078] = 3062, + [3079] = 1532, + [3080] = 3080, + [3081] = 1603, + [3082] = 1535, + [3083] = 1604, + [3084] = 3057, + [3085] = 3062, + [3086] = 1489, + [3087] = 1490, + [3088] = 1492, + [3089] = 3089, + [3090] = 1494, + [3091] = 3062, + [3092] = 952, + [3093] = 1496, + [3094] = 3094, + [3095] = 1497, + [3096] = 1511, + [3097] = 1513, + [3098] = 1515, + [3099] = 3099, + [3100] = 959, + [3101] = 1555, + [3102] = 1516, + [3103] = 1590, + [3104] = 1557, + [3105] = 1531, + [3106] = 1559, + [3107] = 1608, + [3108] = 1540, + [3109] = 957, + [3110] = 1533, + [3111] = 1543, + [3112] = 1551, + [3113] = 3113, + [3114] = 1564, + [3115] = 1546, + [3116] = 1565, + [3117] = 1566, + [3118] = 1550, + [3119] = 3119, + [3120] = 3120, + [3121] = 1548, + [3122] = 1567, + [3123] = 3123, + [3124] = 1485, + [3125] = 3125, + [3126] = 3126, + [3127] = 3127, + [3128] = 3128, + [3129] = 1609, + [3130] = 3130, + [3131] = 1478, + [3132] = 1553, + [3133] = 3130, + [3134] = 3134, + [3135] = 1484, + [3136] = 1471, + [3137] = 3137, + [3138] = 3138, + [3139] = 3139, + [3140] = 3140, + [3141] = 3141, + [3142] = 1465, + [3143] = 3143, + [3144] = 1526, + [3145] = 3145, + [3146] = 3146, + [3147] = 3147, + [3148] = 3130, + [3149] = 1592, + [3150] = 3150, + [3151] = 1466, + [3152] = 3152, + [3153] = 3153, + [3154] = 3154, + [3155] = 3140, + [3156] = 3156, + [3157] = 1475, + [3158] = 3158, + [3159] = 3159, + [3160] = 3160, + [3161] = 3161, + [3162] = 3140, + [3163] = 3163, + [3164] = 3164, + [3165] = 3165, + [3166] = 1499, + [3167] = 3130, + [3168] = 3168, + [3169] = 3130, + [3170] = 3170, + [3171] = 3171, + [3172] = 3172, + [3173] = 1463, + [3174] = 3174, + [3175] = 3140, + [3176] = 1472, + [3177] = 3177, + [3178] = 3178, + [3179] = 3179, + [3180] = 1507, + [3181] = 3181, + [3182] = 1481, + [3183] = 3183, + [3184] = 3184, + [3185] = 3185, + [3186] = 3186, + [3187] = 1581, + [3188] = 1557, + [3189] = 1559, + [3190] = 3190, + [3191] = 1518, + [3192] = 1520, + [3193] = 1565, + [3194] = 1522, + [3195] = 1566, + [3196] = 1527, + [3197] = 1528, + [3198] = 1573, + [3199] = 1529, + [3200] = 1574, + [3201] = 1575, + [3202] = 1576, + [3203] = 957, + [3204] = 687, + [3205] = 1536, + [3206] = 1537, + [3207] = 1539, + [3208] = 1540, + [3209] = 1541, + [3210] = 1544, + [3211] = 1477, + [3212] = 1545, + [3213] = 1546, + [3214] = 1547, + [3215] = 1548, + [3216] = 1549, + [3217] = 952, + [3218] = 1552, + [3219] = 688, + [3220] = 1556, + [3221] = 1558, + [3222] = 1560, + [3223] = 1532, + [3224] = 1561, + [3225] = 1562, + [3226] = 1563, + [3227] = 1535, + [3228] = 1569, + [3229] = 1570, + [3230] = 1577, + [3231] = 1580, + [3232] = 684, + [3233] = 1564, + [3234] = 1568, + [3235] = 1605, + [3236] = 1606, + [3237] = 1608, + [3238] = 1495, + [3239] = 1602, + [3240] = 1551, + [3241] = 686, + [3242] = 3171, + [3243] = 959, + [3244] = 1521, + [3245] = 1523, + [3246] = 1524, + [3247] = 685, + [3248] = 3248, + [3249] = 1589, + [3250] = 1590, + [3251] = 1469, + [3252] = 3252, + [3253] = 3253, + [3254] = 1504, + [3255] = 1555, + [3256] = 1505, + [3257] = 1506, + [3258] = 1517, + [3259] = 3259, + [3260] = 1471, + [3261] = 1609, + [3262] = 1553, + [3263] = 3263, + [3264] = 1469, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, + [3268] = 3268, + [3269] = 3269, + [3270] = 3265, + [3271] = 1478, + [3272] = 3259, + [3273] = 3273, + [3274] = 3274, + [3275] = 1481, + [3276] = 3266, + [3277] = 3277, + [3278] = 3277, + [3279] = 3266, + [3280] = 3280, + [3281] = 3281, + [3282] = 3282, + [3283] = 3283, + [3284] = 3281, + [3285] = 3285, + [3286] = 3265, + [3287] = 1526, + [3288] = 3281, + [3289] = 1484, + [3290] = 3290, + [3291] = 1475, + [3292] = 1485, + [3293] = 3265, + [3294] = 3294, + [3295] = 1520, + [3296] = 3296, + [3297] = 1522, + [3298] = 1563, + [3299] = 1558, + [3300] = 3300, + [3301] = 3301, + [3302] = 3302, + [3303] = 3303, + [3304] = 3304, + [3305] = 3305, + [3306] = 3306, + [3307] = 3307, + [3308] = 3308, + [3309] = 3309, + [3310] = 1569, + [3311] = 1570, + [3312] = 3312, + [3313] = 3313, + [3314] = 1527, + [3315] = 1528, + [3316] = 1529, + [3317] = 1605, + [3318] = 1606, + [3319] = 3319, + [3320] = 1608, + [3321] = 1495, + [3322] = 1602, + [3323] = 1551, + [3324] = 1507, + [3325] = 686, + [3326] = 3296, + [3327] = 3327, + [3328] = 1560, + [3329] = 1561, + [3330] = 1562, + [3331] = 3331, + [3332] = 687, + [3333] = 1521, + [3334] = 1523, + [3335] = 1577, + [3336] = 1524, + [3337] = 685, + [3338] = 1580, + [3339] = 1536, + [3340] = 1581, + [3341] = 1537, + [3342] = 1539, + [3343] = 1540, + [3344] = 1541, + [3345] = 1544, + [3346] = 1546, + [3347] = 1547, + [3348] = 1589, + [3349] = 1548, + [3350] = 3130, + [3351] = 3351, + [3352] = 1590, + [3353] = 3353, + [3354] = 1549, + [3355] = 3355, + [3356] = 1499, + [3357] = 3357, + [3358] = 1545, + [3359] = 1552, + [3360] = 3308, + [3361] = 3361, + [3362] = 3353, + [3363] = 3363, + [3364] = 3364, + [3365] = 3365, + [3366] = 3366, + [3367] = 231, + [3368] = 3368, + [3369] = 3369, + [3370] = 3370, + [3371] = 3371, + [3372] = 3296, + [3373] = 3373, + [3374] = 3374, + [3375] = 3130, + [3376] = 1475, + [3377] = 3377, + [3378] = 3378, + [3379] = 3379, + [3380] = 234, + [3381] = 3381, + [3382] = 3382, + [3383] = 3383, + [3384] = 3384, + [3385] = 3385, + [3386] = 3386, + [3387] = 3307, + [3388] = 3388, + [3389] = 3274, + [3390] = 3390, + [3391] = 3391, + [3392] = 684, + [3393] = 3300, + [3394] = 3394, + [3395] = 3301, + [3396] = 1592, + [3397] = 3302, + [3398] = 3303, + [3399] = 3304, + [3400] = 3305, + [3401] = 3401, + [3402] = 3130, + [3403] = 3403, + [3404] = 1505, + [3405] = 3405, + [3406] = 1506, + [3407] = 3300, + [3408] = 3408, + [3409] = 3130, + [3410] = 3301, + [3411] = 3302, + [3412] = 3303, + [3413] = 3413, + [3414] = 3353, + [3415] = 3267, + [3416] = 3304, + [3417] = 3417, + [3418] = 3418, + [3419] = 3417, + [3420] = 3296, + [3421] = 3421, + [3422] = 3422, + [3423] = 3305, + [3424] = 688, + [3425] = 3425, + [3426] = 3388, + [3427] = 3413, + [3428] = 3307, + [3429] = 3429, + [3430] = 3269, + [3431] = 3308, + [3432] = 1517, + [3433] = 3433, + [3434] = 3434, + [3435] = 3435, + [3436] = 3436, + [3437] = 3437, + [3438] = 3438, + [3439] = 3439, + [3440] = 3300, + [3441] = 3441, + [3442] = 3301, + [3443] = 3302, + [3444] = 3444, + [3445] = 3445, + [3446] = 3390, + [3447] = 3447, + [3448] = 3303, + [3449] = 3304, + [3450] = 3450, + [3451] = 3305, + [3452] = 3452, + [3453] = 3453, + [3454] = 3454, + [3455] = 3130, + [3456] = 3456, + [3457] = 3453, + [3458] = 3458, + [3459] = 3459, + [3460] = 3460, + [3461] = 3461, + [3462] = 3462, + [3463] = 1556, + [3464] = 3417, + [3465] = 3465, + [3466] = 3466, + [3467] = 3394, + [3468] = 3418, + [3469] = 3130, + [3470] = 1518, + [3471] = 1504, + [3472] = 3307, + [3473] = 3308, + [3474] = 3474, + [3475] = 3475, + [3476] = 3476, + [3477] = 234, + [3478] = 952, + [3479] = 246, + [3480] = 3480, + [3481] = 3171, + [3482] = 3482, + [3483] = 239, + [3484] = 3484, + [3485] = 3480, + [3486] = 3480, + [3487] = 3487, + [3488] = 3480, + [3489] = 3489, + [3490] = 3490, + [3491] = 959, + [3492] = 957, + [3493] = 3493, + [3494] = 225, + [3495] = 3482, + [3496] = 3496, + [3497] = 3497, + [3498] = 3482, + [3499] = 1485, + [3500] = 3267, + [3501] = 3501, + [3502] = 3502, + [3503] = 3480, + [3504] = 3504, + [3505] = 226, + [3506] = 3480, + [3507] = 3507, + [3508] = 3482, + [3509] = 3509, + [3510] = 3480, + [3511] = 3511, + [3512] = 3482, + [3513] = 3480, + [3514] = 3507, + [3515] = 3482, + [3516] = 231, + [3517] = 3509, + [3518] = 1484, + [3519] = 1471, + [3520] = 3520, + [3521] = 3521, + [3522] = 3522, + [3523] = 3523, + [3524] = 3524, + [3525] = 3525, + [3526] = 3526, + [3527] = 3527, + [3528] = 3528, + [3529] = 3529, + [3530] = 3530, + [3531] = 3531, + [3532] = 3532, + [3533] = 3533, + [3534] = 3534, + [3535] = 3535, + [3536] = 3536, + [3537] = 1570, + [3538] = 1580, + [3539] = 1505, + [3540] = 3540, + [3541] = 1506, + [3542] = 3542, + [3543] = 3543, + [3544] = 3544, + [3545] = 3545, + [3546] = 3546, + [3547] = 3547, + [3548] = 3548, + [3549] = 3549, + [3550] = 3550, + [3551] = 3551, + [3552] = 3552, + [3553] = 3553, + [3554] = 1608, + [3555] = 3555, + [3556] = 3556, + [3557] = 3557, + [3558] = 3558, + [3559] = 3559, + [3560] = 1551, + [3561] = 3561, + [3562] = 3562, + [3563] = 3563, + [3564] = 3384, + [3565] = 222, + [3566] = 3566, + [3567] = 3567, + [3568] = 3568, + [3569] = 3569, + [3570] = 3433, + [3571] = 3571, + [3572] = 1590, + [3573] = 3573, + [3574] = 3574, + [3575] = 3575, + [3576] = 3576, + [3577] = 3577, + [3578] = 3578, + [3579] = 3579, + [3580] = 3580, + [3581] = 3581, + [3582] = 3582, + [3583] = 239, + [3584] = 3584, + [3585] = 3585, + [3586] = 246, + [3587] = 3587, + [3588] = 3588, + [3589] = 3574, + [3590] = 3590, + [3591] = 3591, + [3592] = 3592, + [3593] = 3593, + [3594] = 3594, + [3595] = 3595, + [3596] = 3596, + [3597] = 3597, + [3598] = 3598, + [3599] = 3599, + [3600] = 3327, + [3601] = 3601, + [3602] = 3602, + [3603] = 3603, + [3604] = 3604, + [3605] = 3605, + [3606] = 3606, + [3607] = 3607, + [3608] = 3608, + [3609] = 3609, + [3610] = 3610, + [3611] = 3590, + [3612] = 3612, + [3613] = 3613, + [3614] = 3614, + [3615] = 3615, + [3616] = 3616, + [3617] = 3617, + [3618] = 3618, + [3619] = 3619, + [3620] = 3566, + [3621] = 3621, + [3622] = 3622, + [3623] = 3623, + [3624] = 3624, + [3625] = 3603, + [3626] = 3626, + [3627] = 3536, + [3628] = 3628, + [3629] = 3629, + [3630] = 3630, + [3631] = 3605, + [3632] = 3632, + [3633] = 3633, + [3634] = 3634, + [3635] = 3635, + [3636] = 3636, + [3637] = 3637, + [3638] = 3638, + [3639] = 3639, + [3640] = 3550, + [3641] = 3574, + [3642] = 3642, + [3643] = 3643, + [3644] = 3190, + [3645] = 3645, + [3646] = 3646, + [3647] = 3592, + [3648] = 3648, + [3649] = 3649, + [3650] = 3524, + [3651] = 1540, + [3652] = 1546, + [3653] = 3653, + [3654] = 3532, + [3655] = 3655, + [3656] = 3605, + [3657] = 3657, + [3658] = 3585, + [3659] = 3592, + [3660] = 3587, + [3661] = 3661, + [3662] = 3662, + [3663] = 3618, + [3664] = 3454, + [3665] = 3665, + [3666] = 3666, + [3667] = 3667, + [3668] = 3668, + [3669] = 3669, + [3670] = 3670, + [3671] = 3671, + [3672] = 3672, + [3673] = 3673, + [3674] = 3674, + [3675] = 3675, + [3676] = 3676, + [3677] = 3677, + [3678] = 3678, + [3679] = 3285, + [3680] = 3680, + [3681] = 3532, + [3682] = 3682, + [3683] = 3683, + [3684] = 3545, + [3685] = 3685, + [3686] = 3686, + [3687] = 3687, + [3688] = 3688, + [3689] = 3689, + [3690] = 3592, + [3691] = 3691, + [3692] = 3692, + [3693] = 3693, + [3694] = 3574, + [3695] = 3695, + [3696] = 3696, + [3697] = 3697, + [3698] = 3698, + [3699] = 3699, + [3700] = 3700, + [3701] = 3701, + [3702] = 3702, + [3703] = 3703, + [3704] = 3704, + [3705] = 3705, + [3706] = 3706, + [3707] = 3707, + [3708] = 1484, + [3709] = 3709, + [3710] = 3710, + [3711] = 3711, + [3712] = 3712, + [3713] = 3425, + [3714] = 3714, + [3715] = 3715, + [3716] = 3716, + [3717] = 1471, + [3718] = 3574, + [3719] = 3719, + [3720] = 3552, + [3721] = 3574, + [3722] = 3722, + [3723] = 3723, + [3724] = 3574, + [3725] = 3725, + [3726] = 3726, + [3727] = 3727, + [3728] = 3728, + [3729] = 3729, + [3730] = 3730, + [3731] = 3731, + [3732] = 3732, + [3733] = 3733, + [3734] = 3613, + [3735] = 3602, + [3736] = 3736, + [3737] = 3737, + [3738] = 3566, + [3739] = 3657, + [3740] = 3536, + [3741] = 3574, + [3742] = 3742, + [3743] = 3743, + [3744] = 3744, + [3745] = 3745, + [3746] = 3596, + [3747] = 3747, + [3748] = 3748, + [3749] = 3749, + [3750] = 3750, + [3751] = 3592, + [3752] = 3752, + [3753] = 3753, + [3754] = 3754, + [3755] = 3755, + [3756] = 3630, + [3757] = 3592, + [3758] = 1485, + [3759] = 3759, + [3760] = 3618, + [3761] = 3761, + [3762] = 3595, + [3763] = 3743, + [3764] = 3610, + [3765] = 3765, + [3766] = 1548, + [3767] = 3767, + [3768] = 3768, + [3769] = 3769, + [3770] = 3770, + [3771] = 3771, + [3772] = 3772, + [3773] = 1592, + [3774] = 3774, + [3775] = 3775, + [3776] = 3776, + [3777] = 3777, + [3778] = 3778, + [3779] = 3779, + [3780] = 3770, + [3781] = 3774, + [3782] = 3782, + [3783] = 3783, + [3784] = 3784, + [3785] = 3750, + [3786] = 3759, + [3787] = 3776, + [3788] = 3788, + [3789] = 3778, + [3790] = 3790, + [3791] = 3791, + [3792] = 3770, + [3793] = 3774, + [3794] = 3782, + [3795] = 1722, + [3796] = 1614, + [3797] = 3797, + [3798] = 3776, + [3799] = 3778, + [3800] = 3770, + [3801] = 3782, + [3802] = 3774, + [3803] = 3803, + [3804] = 3782, + [3805] = 3805, + [3806] = 3776, + [3807] = 3807, + [3808] = 3778, + [3809] = 3770, + [3810] = 3810, + [3811] = 3774, + [3812] = 3782, + [3813] = 3776, + [3814] = 1628, + [3815] = 1629, + [3816] = 1650, + [3817] = 1651, + [3818] = 3818, + [3819] = 3819, + [3820] = 3820, + [3821] = 3821, + [3822] = 3269, + [3823] = 3823, + [3824] = 3824, + [3825] = 3825, + [3826] = 3826, + [3827] = 1507, + [3828] = 3828, + [3829] = 3829, + [3830] = 3830, + [3831] = 3831, + [3832] = 3576, + [3833] = 3673, + [3834] = 3834, + [3835] = 3707, + [3836] = 3836, + [3837] = 3837, + [3838] = 3838, + [3839] = 3839, + [3840] = 1540, + [3841] = 1546, + [3842] = 1548, + [3843] = 1673, + [3844] = 1674, + [3845] = 1675, + [3846] = 1676, + [3847] = 1677, + [3848] = 1678, + [3849] = 3709, + [3850] = 3836, + [3851] = 3715, + [3852] = 3852, + [3853] = 3829, + [3854] = 3719, + [3855] = 1682, + [3856] = 1683, + [3857] = 3857, + [3858] = 3831, + [3859] = 3525, + [3860] = 3860, + [3861] = 3861, + [3862] = 3862, + [3863] = 3778, + [3864] = 3864, + [3865] = 3865, + [3866] = 687, + [3867] = 3253, + [3868] = 1691, + [3869] = 1692, + [3870] = 3870, + [3871] = 688, + [3872] = 3742, + [3873] = 684, + [3874] = 3828, + [3875] = 3875, + [3876] = 685, + [3877] = 3838, + [3878] = 3878, + [3879] = 3879, + [3880] = 3880, + [3881] = 1499, + [3882] = 3821, + [3883] = 3768, + [3884] = 3711, + [3885] = 3885, + [3886] = 3823, + [3887] = 3887, + [3888] = 3888, + [3889] = 3889, + [3890] = 3890, + [3891] = 3752, + [3892] = 3839, + [3893] = 3893, + [3894] = 3894, + [3895] = 3893, + [3896] = 3784, + [3897] = 3885, + [3898] = 3857, + [3899] = 3899, + [3900] = 3900, + [3901] = 3901, + [3902] = 3902, + [3903] = 3860, + [3904] = 3557, + [3905] = 3561, + [3906] = 3776, + [3907] = 3907, + [3908] = 3588, + [3909] = 3902, + [3910] = 3556, + [3911] = 3594, + [3912] = 3912, + [3913] = 3885, + [3914] = 3823, + [3915] = 3915, + [3916] = 3775, + [3917] = 3791, + [3918] = 3778, + [3919] = 3919, + [3920] = 3878, + [3921] = 3553, + [3922] = 3722, + [3923] = 3542, + [3924] = 3915, + [3925] = 3770, + [3926] = 3926, + [3927] = 3774, + [3928] = 1570, + [3929] = 1580, + [3930] = 3562, + [3931] = 3931, + [3932] = 3932, + [3933] = 1505, + [3934] = 1506, + [3935] = 3935, + [3936] = 3935, + [3937] = 3782, + [3938] = 3938, + [3939] = 3577, + [3940] = 1608, + [3941] = 1551, + [3942] = 3852, + [3943] = 3582, + [3944] = 3907, + [3945] = 3767, + [3946] = 1590, + [3947] = 3776, + [3948] = 3948, + [3949] = 3949, + [3950] = 3598, + [3951] = 3712, + [3952] = 3821, + [3953] = 3953, + [3954] = 3274, + [3955] = 3955, + [3956] = 3703, + [3957] = 3775, + [3958] = 3958, + [3959] = 3878, + [3960] = 3960, + [3961] = 3961, + [3962] = 686, + [3963] = 3963, + [3964] = 3964, + [3965] = 1568, + [3966] = 228, + [3967] = 845, + [3968] = 773, + [3969] = 3969, + [3970] = 3970, + [3971] = 846, + [3972] = 3972, + [3973] = 3973, + [3974] = 3974, + [3975] = 847, + [3976] = 848, + [3977] = 849, + [3978] = 3978, + [3979] = 3979, + [3980] = 3980, + [3981] = 3981, + [3982] = 3982, + [3983] = 3983, + [3984] = 3984, + [3985] = 3985, + [3986] = 3986, + [3987] = 3987, + [3988] = 3988, + [3989] = 3989, + [3990] = 3990, + [3991] = 3991, + [3992] = 3992, + [3993] = 3993, + [3994] = 3994, + [3995] = 3995, + [3996] = 3996, + [3997] = 3997, + [3998] = 3998, + [3999] = 3999, + [4000] = 4000, + [4001] = 4001, + [4002] = 4002, + [4003] = 4003, + [4004] = 3527, + [4005] = 4005, + [4006] = 857, + [4007] = 4007, + [4008] = 4008, + [4009] = 4009, + [4010] = 4010, + [4011] = 858, + [4012] = 3993, + [4013] = 4013, + [4014] = 859, + [4015] = 4015, + [4016] = 4016, + [4017] = 4017, + [4018] = 4018, + [4019] = 4019, + [4020] = 4020, + [4021] = 4021, + [4022] = 4022, + [4023] = 4023, + [4024] = 4024, + [4025] = 4025, + [4026] = 4026, + [4027] = 4027, + [4028] = 4028, + [4029] = 4029, + [4030] = 4030, + [4031] = 4031, + [4032] = 4032, + [4033] = 4033, + [4034] = 4034, + [4035] = 4035, + [4036] = 4036, + [4037] = 4037, + [4038] = 4038, + [4039] = 809, + [4040] = 4040, + [4041] = 810, + [4042] = 3997, + [4043] = 811, + [4044] = 4044, + [4045] = 4045, + [4046] = 4046, + [4047] = 4047, + [4048] = 4044, + [4049] = 4049, + [4050] = 4032, + [4051] = 4051, + [4052] = 4052, + [4053] = 4053, + [4054] = 4054, + [4055] = 4055, + [4056] = 4056, + [4057] = 4057, + [4058] = 4058, + [4059] = 4021, + [4060] = 887, + [4061] = 4061, + [4062] = 4062, + [4063] = 4063, + [4064] = 4064, + [4065] = 4002, + [4066] = 4066, + [4067] = 4067, + [4068] = 4068, + [4069] = 860, + [4070] = 4013, + [4071] = 4071, + [4072] = 4072, + [4073] = 877, + [4074] = 4074, + [4075] = 4075, + [4076] = 4076, + [4077] = 4077, + [4078] = 4078, + [4079] = 4079, + [4080] = 4080, + [4081] = 3985, + [4082] = 4082, + [4083] = 4083, + [4084] = 4084, + [4085] = 4085, + [4086] = 4086, + [4087] = 4087, + [4088] = 4088, + [4089] = 4089, + [4090] = 4090, + [4091] = 4023, + [4092] = 4092, + [4093] = 4093, + [4094] = 4094, + [4095] = 4095, + [4096] = 878, + [4097] = 4097, + [4098] = 4098, + [4099] = 4099, + [4100] = 4100, + [4101] = 4101, + [4102] = 4102, + [4103] = 4103, + [4104] = 4104, + [4105] = 879, + [4106] = 4106, + [4107] = 880, + [4108] = 4108, + [4109] = 4109, + [4110] = 4110, + [4111] = 4111, + [4112] = 4112, + [4113] = 4113, + [4114] = 4114, + [4115] = 4036, + [4116] = 4116, + [4117] = 4117, + [4118] = 4118, + [4119] = 4119, + [4120] = 4120, + [4121] = 4121, + [4122] = 4122, + [4123] = 4123, + [4124] = 4124, + [4125] = 881, + [4126] = 882, + [4127] = 883, + [4128] = 884, + [4129] = 4129, + [4130] = 4130, + [4131] = 4131, + [4132] = 4132, + [4133] = 4133, + [4134] = 4134, + [4135] = 3982, + [4136] = 4007, + [4137] = 4137, + [4138] = 4138, + [4139] = 4139, + [4140] = 4140, + [4141] = 4141, + [4142] = 4142, + [4143] = 4143, + [4144] = 4144, + [4145] = 3993, + [4146] = 4146, + [4147] = 4098, + [4148] = 4007, + [4149] = 4149, + [4150] = 4010, + [4151] = 3790, + [4152] = 4152, + [4153] = 4153, + [4154] = 4154, + [4155] = 4155, + [4156] = 4034, + [4157] = 4010, + [4158] = 4038, + [4159] = 4159, + [4160] = 4160, + [4161] = 4161, + [4162] = 4162, + [4163] = 4009, + [4164] = 4164, + [4165] = 889, + [4166] = 4166, + [4167] = 4167, + [4168] = 4168, + [4169] = 890, + [4170] = 891, + [4171] = 4171, + [4172] = 892, + [4173] = 4173, + [4174] = 4174, + [4175] = 4175, + [4176] = 763, + [4177] = 780, + [4178] = 4178, + [4179] = 775, + [4180] = 4180, + [4181] = 4181, + [4182] = 893, + [4183] = 4183, + [4184] = 4184, + [4185] = 4185, + [4186] = 825, + [4187] = 4187, + [4188] = 4188, + [4189] = 4189, + [4190] = 4190, + [4191] = 4191, + [4192] = 4192, + [4193] = 3982, + [4194] = 864, + [4195] = 865, + [4196] = 4196, + [4197] = 4197, + [4198] = 4198, + [4199] = 4199, + [4200] = 4200, + [4201] = 898, + [4202] = 4202, + [4203] = 4024, + [4204] = 4025, + [4205] = 4205, + [4206] = 4206, + [4207] = 4207, + [4208] = 4208, + [4209] = 4209, + [4210] = 4210, + [4211] = 4211, + [4212] = 1722, + [4213] = 1614, + [4214] = 4214, + [4215] = 4215, + [4216] = 4216, + [4217] = 4217, + [4218] = 4218, + [4219] = 4219, + [4220] = 4036, + [4221] = 4221, + [4222] = 4222, + [4223] = 4032, + [4224] = 4224, + [4225] = 4225, + [4226] = 4057, + [4227] = 4227, + [4228] = 4228, + [4229] = 4034, + [4230] = 4225, + [4231] = 4231, + [4232] = 3797, + [4233] = 4233, + [4234] = 4234, + [4235] = 4032, + [4236] = 4236, + [4237] = 4237, + [4238] = 4238, + [4239] = 4239, + [4240] = 4038, + [4241] = 3994, + [4242] = 785, + [4243] = 4243, + [4244] = 4076, + [4245] = 786, + [4246] = 4246, + [4247] = 4247, + [4248] = 4248, + [4249] = 4249, + [4250] = 1628, + [4251] = 1629, + [4252] = 4252, + [4253] = 4253, + [4254] = 4254, + [4255] = 3837, + [4256] = 4256, + [4257] = 832, + [4258] = 4258, + [4259] = 4098, + [4260] = 787, + [4261] = 4261, + [4262] = 788, + [4263] = 4263, + [4264] = 4264, + [4265] = 833, + [4266] = 4016, + [4267] = 4249, + [4268] = 834, + [4269] = 1650, + [4270] = 4270, + [4271] = 4271, + [4272] = 4272, + [4273] = 1651, + [4274] = 4274, + [4275] = 4275, + [4276] = 4276, + [4277] = 789, + [4278] = 790, + [4279] = 4279, + [4280] = 791, + [4281] = 4062, + [4282] = 792, + [4283] = 4008, + [4284] = 4078, + [4285] = 4285, + [4286] = 793, + [4287] = 4287, + [4288] = 4288, + [4289] = 4289, + [4290] = 4098, + [4291] = 4291, + [4292] = 4292, + [4293] = 4293, + [4294] = 4098, + [4295] = 826, + [4296] = 4296, + [4297] = 4297, + [4298] = 4231, + [4299] = 829, + [4300] = 4300, + [4301] = 4301, + [4302] = 4302, + [4303] = 4303, + [4304] = 4304, + [4305] = 4305, + [4306] = 4306, + [4307] = 4307, + [4308] = 4308, + [4309] = 4016, + [4310] = 4310, + [4311] = 4031, + [4312] = 4092, + [4313] = 4061, + [4314] = 4314, + [4315] = 4315, + [4316] = 4316, + [4317] = 4317, + [4318] = 4031, + [4319] = 4092, + [4320] = 4320, + [4321] = 797, + [4322] = 3964, + [4323] = 4323, + [4324] = 4188, + [4325] = 764, + [4326] = 3973, + [4327] = 798, + [4328] = 4328, + [4329] = 4329, + [4330] = 4330, + [4331] = 4264, + [4332] = 4332, + [4333] = 4333, + [4334] = 4334, + [4335] = 4335, + [4336] = 4336, + [4337] = 4337, + [4338] = 4338, + [4339] = 4339, + [4340] = 4340, + [4341] = 4341, + [4342] = 4231, + [4343] = 4343, + [4344] = 4344, + [4345] = 4345, + [4346] = 803, + [4347] = 4188, + [4348] = 4348, + [4349] = 4349, + [4350] = 4350, + [4351] = 768, + [4352] = 4352, + [4353] = 4353, + [4354] = 4354, + [4355] = 4355, + [4356] = 4356, + [4357] = 762, + [4358] = 781, + [4359] = 4359, + [4360] = 4360, + [4361] = 4361, + [4362] = 4362, + [4363] = 761, + [4364] = 4336, + [4365] = 835, + [4366] = 4366, + [4367] = 770, + [4368] = 4368, + [4369] = 804, + [4370] = 4370, + [4371] = 4371, + [4372] = 4372, + [4373] = 3818, + [4374] = 837, + [4375] = 4032, + [4376] = 3986, + [4377] = 1673, + [4378] = 1674, + [4379] = 4379, + [4380] = 776, + [4381] = 4381, + [4382] = 4049, + [4383] = 4383, + [4384] = 4384, + [4385] = 230, + [4386] = 4256, + [4387] = 3819, + [4388] = 1675, + [4389] = 4308, + [4390] = 4390, + [4391] = 4037, + [4392] = 1676, + [4393] = 1677, + [4394] = 1678, + [4395] = 4395, + [4396] = 4396, + [4397] = 4397, + [4398] = 4398, + [4399] = 4399, + [4400] = 1682, + [4401] = 1683, + [4402] = 4402, + [4403] = 4403, + [4404] = 3820, + [4405] = 4405, + [4406] = 4406, + [4407] = 4407, + [4408] = 772, + [4409] = 4409, + [4410] = 4036, + [4411] = 4411, + [4412] = 4412, + [4413] = 4413, + [4414] = 4414, + [4415] = 4415, + [4416] = 4416, + [4417] = 3534, + [4418] = 3535, + [4419] = 831, + [4420] = 4420, + [4421] = 841, + [4422] = 872, + [4423] = 4423, + [4424] = 4424, + [4425] = 4425, + [4426] = 4426, + [4427] = 873, + [4428] = 4428, + [4429] = 3636, + [4430] = 4430, + [4431] = 4431, + [4432] = 4432, + [4433] = 842, + [4434] = 4320, + [4435] = 4435, + [4436] = 4436, + [4437] = 4437, + [4438] = 4438, + [4439] = 1691, + [4440] = 4440, + [4441] = 1692, + [4442] = 815, + [4443] = 4443, + [4444] = 1564, + [4445] = 4445, + [4446] = 4446, + [4447] = 4447, + [4448] = 3991, + [4449] = 4449, + [4450] = 4450, + [4451] = 816, + [4452] = 4452, + [4453] = 843, + [4454] = 4454, + [4455] = 4455, + [4456] = 4456, + [4457] = 4457, + [4458] = 4458, + [4459] = 817, + [4460] = 818, + [4461] = 819, + [4462] = 820, + [4463] = 4463, + [4464] = 821, + [4465] = 4307, + [4466] = 824, + [4467] = 4467, + [4468] = 4468, + [4469] = 4469, + [4470] = 4470, + [4471] = 4471, + [4472] = 4472, + [4473] = 4473, + [4474] = 4474, + [4475] = 4475, + [4476] = 4476, + [4477] = 4477, + [4478] = 4472, + [4479] = 4479, + [4480] = 4474, + [4481] = 226, + [4482] = 225, + [4483] = 4483, + [4484] = 4484, + [4485] = 4485, + [4486] = 3568, + [4487] = 4487, + [4488] = 4488, + [4489] = 4489, + [4490] = 4488, + [4491] = 4491, + [4492] = 4489, + [4493] = 4493, + [4494] = 4494, + [4495] = 4495, + [4496] = 4496, + [4497] = 4497, + [4498] = 4498, + [4499] = 4493, + [4500] = 4493, + [4501] = 4501, + [4502] = 4491, + [4503] = 4483, + [4504] = 4504, + [4505] = 4483, + [4506] = 4506, + [4507] = 4504, + [4508] = 4508, + [4509] = 4474, + [4510] = 4489, + [4511] = 4472, + [4512] = 4497, + [4513] = 4508, + [4514] = 4508, + [4515] = 4489, + [4516] = 4488, + [4517] = 4517, + [4518] = 3623, + [4519] = 4471, + [4520] = 4472, + [4521] = 4521, + [4522] = 4496, + [4523] = 4523, + [4524] = 4474, + [4525] = 4525, + [4526] = 4488, + [4527] = 4527, + [4528] = 4474, + [4529] = 4493, + [4530] = 4497, + [4531] = 4531, + [4532] = 4491, + [4533] = 4533, + [4534] = 4534, + [4535] = 4535, + [4536] = 4504, + [4537] = 4472, + [4538] = 4538, + [4539] = 4539, + [4540] = 4508, + [4541] = 4474, + [4542] = 4542, + [4543] = 4508, + [4544] = 4494, + [4545] = 4504, + [4546] = 4546, + [4547] = 4547, + [4548] = 4531, + [4549] = 4489, + [4550] = 4550, + [4551] = 4483, + [4552] = 4504, + [4553] = 4521, + [4554] = 4554, + [4555] = 4555, + [4556] = 4533, + [4557] = 4534, + [4558] = 4558, + [4559] = 4472, + [4560] = 4560, + [4561] = 4561, + [4562] = 4527, + [4563] = 4563, + [4564] = 4560, + [4565] = 4565, + [4566] = 4566, + [4567] = 4567, + [4568] = 4497, + [4569] = 4560, + [4570] = 4504, + [4571] = 4571, + [4572] = 4491, + [4573] = 4483, + [4574] = 4560, + [4575] = 4495, + [4576] = 4488, + [4577] = 4489, + [4578] = 4488, + [4579] = 4504, + [4580] = 4580, + [4581] = 4581, + [4582] = 4472, + [4583] = 4491, + [4584] = 4483, + [4585] = 4560, + [4586] = 4560, + [4587] = 4488, + [4588] = 4588, + [4589] = 4474, + [4590] = 4590, + [4591] = 4571, + [4592] = 4489, + [4593] = 4493, + [4594] = 4483, + [4595] = 4491, + [4596] = 4596, + [4597] = 4597, + [4598] = 4598, + [4599] = 4599, + [4600] = 4497, + [4601] = 4554, + [4602] = 4473, + [4603] = 4603, + [4604] = 4497, + [4605] = 4560, + [4606] = 4491, + [4607] = 4607, + [4608] = 4608, + [4609] = 4609, + [4610] = 4610, + [4611] = 4611, + [4612] = 4612, + [4613] = 4613, + [4614] = 4614, + [4615] = 4615, + [4616] = 4616, + [4617] = 4617, + [4618] = 4618, + [4619] = 4619, + [4620] = 3673, + [4621] = 4621, + [4622] = 4622, + [4623] = 4623, + [4624] = 4624, + [4625] = 4625, + [4626] = 4626, + [4627] = 4627, + [4628] = 4628, + [4629] = 4629, + [4630] = 1545, + [4631] = 4631, + [4632] = 4632, + [4633] = 4633, + [4634] = 4634, + [4635] = 1552, + [4636] = 4218, + [4637] = 4637, + [4638] = 4638, + [4639] = 4639, + [4640] = 4640, + [4641] = 4641, + [4642] = 4642, + [4643] = 4643, + [4644] = 4644, + [4645] = 4645, + [4646] = 4608, + [4647] = 4647, + [4648] = 4648, + [4649] = 4649, + [4650] = 4650, + [4651] = 4651, + [4652] = 4652, + [4653] = 4653, + [4654] = 4654, + [4655] = 4655, + [4656] = 4656, + [4657] = 4657, + [4658] = 4658, + [4659] = 4659, + [4660] = 4660, + [4661] = 4661, + [4662] = 4614, + [4663] = 4663, + [4664] = 4664, + [4665] = 4665, + [4666] = 4666, + [4667] = 4667, + [4668] = 4668, + [4669] = 4669, + [4670] = 4670, + [4671] = 4671, + [4672] = 4672, + [4673] = 4673, + [4674] = 4674, + [4675] = 4675, + [4676] = 4676, + [4677] = 4639, + [4678] = 4678, + [4679] = 4608, + [4680] = 4647, + [4681] = 4681, + [4682] = 4682, + [4683] = 4683, + [4684] = 4684, + [4685] = 4685, + [4686] = 4686, + [4687] = 4687, + [4688] = 4654, + [4689] = 4656, + [4690] = 4658, + [4691] = 4691, + [4692] = 4659, + [4693] = 4693, + [4694] = 4694, + [4695] = 4695, + [4696] = 4609, + [4697] = 4610, + [4698] = 4611, + [4699] = 4612, + [4700] = 4700, + [4701] = 4614, + [4702] = 4702, + [4703] = 4703, + [4704] = 4704, + [4705] = 4705, + [4706] = 4706, + [4707] = 4707, + [4708] = 4708, + [4709] = 4709, + [4710] = 3742, + [4711] = 4711, + [4712] = 4712, + [4713] = 4713, + [4714] = 4608, + [4715] = 4647, + [4716] = 4716, + [4717] = 4717, + [4718] = 4718, + [4719] = 4658, + [4720] = 4720, + [4721] = 4659, + [4722] = 4722, + [4723] = 4723, + [4724] = 4724, + [4725] = 4725, + [4726] = 4726, + [4727] = 4727, + [4728] = 4728, + [4729] = 4729, + [4730] = 4730, + [4731] = 4731, + [4732] = 4608, + [4733] = 4647, + [4734] = 4734, + [4735] = 4735, + [4736] = 4736, + [4737] = 4658, + [4738] = 4738, + [4739] = 4659, + [4740] = 4740, + [4741] = 4741, + [4742] = 4742, + [4743] = 4743, + [4744] = 4744, + [4745] = 4745, + [4746] = 4746, + [4747] = 4747, + [4748] = 4748, + [4749] = 4749, + [4750] = 4750, + [4751] = 4751, + [4752] = 4752, + [4753] = 4753, + [4754] = 4754, + [4755] = 4755, + [4756] = 4756, + [4757] = 4757, + [4758] = 4758, + [4759] = 4759, + [4760] = 4760, + [4761] = 4761, + [4762] = 4762, + [4763] = 4763, + [4764] = 4764, + [4765] = 4765, + [4766] = 4766, + [4767] = 4767, + [4768] = 4768, + [4769] = 4769, + [4770] = 4770, + [4771] = 4771, + [4772] = 4772, + [4773] = 4773, + [4774] = 4774, + [4775] = 4775, + [4776] = 4776, + [4777] = 4777, + [4778] = 4778, + [4779] = 4779, + [4780] = 4780, + [4781] = 4781, + [4782] = 4782, + [4783] = 4783, + [4784] = 1592, + [4785] = 4785, + [4786] = 4786, + [4787] = 4787, + [4788] = 1499, + [4789] = 4789, + [4790] = 4790, + [4791] = 1507, + [4792] = 4792, + [4793] = 4793, + [4794] = 4794, + [4795] = 760, + [4796] = 4796, + [4797] = 4639, + [4798] = 4798, + [4799] = 4799, + [4800] = 4800, + [4801] = 4801, + [4802] = 4802, + [4803] = 4803, + [4804] = 4804, + [4805] = 4805, + [4806] = 4806, + [4807] = 4807, + [4808] = 4808, + [4809] = 4809, + [4810] = 4810, + [4811] = 4811, + [4812] = 4812, + [4813] = 4813, + [4814] = 4814, + [4815] = 4815, + [4816] = 4816, + [4817] = 4817, + [4818] = 4818, + [4819] = 4819, + [4820] = 4820, + [4821] = 4656, + [4822] = 4822, + [4823] = 4823, + [4824] = 4650, + [4825] = 4825, + [4826] = 4826, + [4827] = 4827, + [4828] = 4828, + [4829] = 4829, + [4830] = 4830, + [4831] = 4831, + [4832] = 4832, + [4833] = 4833, + [4834] = 4834, + [4835] = 4634, + [4836] = 4638, + [4837] = 4694, + [4838] = 4815, + [4839] = 4839, + [4840] = 4840, + [4841] = 4424, + [4842] = 4842, + [4843] = 4843, + [4844] = 4844, + [4845] = 4845, + [4846] = 4846, + [4847] = 4847, + [4848] = 4848, + [4849] = 4849, + [4850] = 4850, + [4851] = 4851, + [4852] = 4852, + [4853] = 4853, + [4854] = 4840, + [4855] = 4855, + [4856] = 4856, + [4857] = 4857, + [4858] = 4858, + [4859] = 4859, + [4860] = 4860, + [4861] = 4861, + [4862] = 4862, + [4863] = 4863, + [4864] = 4864, + [4865] = 4865, + [4866] = 4654, + [4867] = 4867, + [4868] = 4868, + [4869] = 4869, + [4870] = 4870, + [4871] = 4871, + [4872] = 4872, + [4873] = 4873, + [4874] = 4771, + [4875] = 4855, + [4876] = 4876, + [4877] = 4877, + [4878] = 4878, + [4879] = 4879, + [4880] = 4880, + [4881] = 4881, + [4882] = 4882, + [4883] = 4883, + [4884] = 4884, + [4885] = 4885, + [4886] = 4886, + [4887] = 4887, + [4888] = 4656, + [4889] = 4889, + [4890] = 4890, + [4891] = 4891, + [4892] = 4892, + [4893] = 4893, + [4894] = 4894, + [4895] = 4895, + [4896] = 4896, + [4897] = 4897, + [4898] = 4898, + [4899] = 4899, + [4900] = 4900, + [4901] = 4901, + [4902] = 4902, + [4903] = 4903, + [4904] = 4904, + [4905] = 4652, + [4906] = 4663, + [4907] = 4907, + [4908] = 4908, + [4909] = 4909, + [4910] = 4910, + [4911] = 4911, + [4912] = 4912, + [4913] = 4913, + [4914] = 4914, + [4915] = 4757, + [4916] = 4916, + [4917] = 4917, + [4918] = 4766, + [4919] = 4770, + [4920] = 4920, + [4921] = 4921, + [4922] = 4922, + [4923] = 4923, + [4924] = 4924, + [4925] = 4925, + [4926] = 4926, + [4927] = 4927, + [4928] = 4928, + [4929] = 4929, + [4930] = 4930, + [4931] = 4931, + [4932] = 4932, + [4933] = 4639, + [4934] = 4639, + [4935] = 4935, + [4936] = 4773, + [4937] = 4937, + [4938] = 4938, + [4939] = 4939, + [4940] = 4940, + [4941] = 4890, + [4942] = 4942, + [4943] = 4943, + [4944] = 3752, + [4945] = 4647, + [4946] = 4946, + [4947] = 4902, + [4948] = 4948, + [4949] = 4949, + [4950] = 4950, + [4951] = 4951, + [4952] = 4916, + [4953] = 4953, + [4954] = 4954, + [4955] = 4955, + [4956] = 4942, + [4957] = 4957, + [4958] = 4958, + [4959] = 4959, + [4960] = 4960, + [4961] = 4961, + [4962] = 4962, + [4963] = 4650, + [4964] = 4904, + [4965] = 4886, + [4966] = 4966, + [4967] = 4857, + [4968] = 4968, + [4969] = 4969, + [4970] = 4970, + [4971] = 4971, + [4972] = 4972, + [4973] = 4973, + [4974] = 4974, + [4975] = 4858, + [4976] = 4976, + [4977] = 4654, + [4978] = 4656, + [4979] = 4979, + [4980] = 4980, + [4981] = 4608, + [4982] = 4982, + [4983] = 4983, + [4984] = 4984, + [4985] = 4985, + [4986] = 4986, + [4987] = 4987, + [4988] = 4988, + [4989] = 4658, + [4990] = 4659, + [4991] = 4991, + [4992] = 4992, + [4993] = 4993, + [4994] = 4994, + [4995] = 4995, + [4996] = 4996, + [4997] = 4997, + [4998] = 4110, + [4999] = 4999, + [5000] = 5000, + [5001] = 4851, + [5002] = 5002, + [5003] = 5003, + [5004] = 5004, + [5005] = 4647, + [5006] = 5006, + [5007] = 5007, + [5008] = 5008, + [5009] = 5009, + [5010] = 5010, + [5011] = 5011, + [5012] = 5012, + [5013] = 4614, + [5014] = 5014, + [5015] = 4768, + [5016] = 5016, + [5017] = 5017, + [5018] = 5018, + [5019] = 5019, + [5020] = 5020, + [5021] = 5021, + [5022] = 4802, + [5023] = 5023, + [5024] = 5024, + [5025] = 5025, + [5026] = 5026, + [5027] = 4804, + [5028] = 5028, + [5029] = 5029, + [5030] = 5030, + [5031] = 5031, + [5032] = 5032, + [5033] = 5033, + [5034] = 5034, + [5035] = 5035, + [5036] = 5036, + [5037] = 5037, + [5038] = 5038, + [5039] = 5039, + [5040] = 5040, + [5041] = 5041, + [5042] = 5042, + [5043] = 4806, + [5044] = 5044, + [5045] = 5045, + [5046] = 5046, + [5047] = 5047, + [5048] = 5048, + [5049] = 5049, + [5050] = 5050, + [5051] = 5051, + [5052] = 5052, + [5053] = 5053, + [5054] = 5054, + [5055] = 5055, + [5056] = 5056, + [5057] = 5057, + [5058] = 5058, + [5059] = 5059, + [5060] = 5060, + [5061] = 5061, + [5062] = 5062, + [5063] = 5063, + [5064] = 5064, + [5065] = 5065, + [5066] = 5066, + [5067] = 5067, + [5068] = 5068, + [5069] = 5069, + [5070] = 5070, + [5071] = 5071, + [5072] = 5072, + [5073] = 4656, + [5074] = 5074, + [5075] = 5075, + [5076] = 5076, + [5077] = 5077, + [5078] = 5078, + [5079] = 5079, + [5080] = 5080, + [5081] = 5081, + [5082] = 5082, + [5083] = 5083, + [5084] = 5084, + [5085] = 5085, + [5086] = 5086, + [5087] = 5087, + [5088] = 5088, + [5089] = 5089, + [5090] = 5090, + [5091] = 5091, + [5092] = 5092, + [5093] = 5093, + [5094] = 5094, + [5095] = 5095, + [5096] = 5096, + [5097] = 5097, + [5098] = 5098, + [5099] = 5099, + [5100] = 5100, + [5101] = 5101, + [5102] = 4758, + [5103] = 5103, + [5104] = 5104, + [5105] = 5105, + [5106] = 4972, + [5107] = 5107, + [5108] = 4986, + [5109] = 4973, + [5110] = 5110, + [5111] = 5111, + [5112] = 5112, + [5113] = 5113, + [5114] = 5114, + [5115] = 5115, + [5116] = 5116, + [5117] = 5117, + [5118] = 5118, + [5119] = 5119, + [5120] = 5120, + [5121] = 5121, + [5122] = 5122, + [5123] = 5123, + [5124] = 5124, + [5125] = 5125, + [5126] = 5126, + [5127] = 5127, + [5128] = 5128, + [5129] = 5129, + [5130] = 5130, + [5131] = 5131, + [5132] = 4988, + [5133] = 5133, + [5134] = 5134, + [5135] = 5135, + [5136] = 5136, + [5137] = 5137, + [5138] = 5138, + [5139] = 5139, + [5140] = 5140, + [5141] = 5141, + [5142] = 4658, + [5143] = 5143, + [5144] = 5144, + [5145] = 5145, + [5146] = 5146, + [5147] = 5147, + [5148] = 5148, + [5149] = 4609, + [5150] = 4610, + [5151] = 5151, + [5152] = 5152, + [5153] = 5153, + [5154] = 4611, + [5155] = 4638, + [5156] = 4694, + [5157] = 5157, + [5158] = 4851, + [5159] = 5159, + [5160] = 4612, + [5161] = 5161, + [5162] = 4659, + [5163] = 5062, + [5164] = 4749, + [5165] = 5165, + [5166] = 5166, + [5167] = 5167, + [5168] = 760, + [5169] = 5169, + [5170] = 4902, + [5171] = 5171, + [5172] = 4663, + [5173] = 5173, + [5174] = 4916, + [5175] = 5175, + [5176] = 5176, + [5177] = 5177, + [5178] = 5178, + [5179] = 5179, + [5180] = 5180, + [5181] = 5181, + [5182] = 4639, + [5183] = 3603, + [5184] = 4639, + [5185] = 5185, + [5186] = 5186, + [5187] = 5187, + [5188] = 5188, + [5189] = 5189, + [5190] = 5190, + [5191] = 5191, + [5192] = 5192, + [5193] = 5193, + [5194] = 5194, + [5195] = 4608, + [5196] = 4647, + [5197] = 5197, + [5198] = 5198, + [5199] = 5199, + [5200] = 4749, + [5201] = 5201, + [5202] = 4650, + [5203] = 5203, + [5204] = 5204, + [5205] = 5205, + [5206] = 5206, + [5207] = 5207, + [5208] = 5208, + [5209] = 5209, + [5210] = 5210, + [5211] = 4614, + [5212] = 5212, + [5213] = 5213, + [5214] = 4654, + [5215] = 4656, + [5216] = 5216, + [5217] = 5217, + [5218] = 5218, + [5219] = 4658, + [5220] = 5220, + [5221] = 4659, + [5222] = 3703, + [5223] = 5223, + [5224] = 5224, + [5225] = 5225, + [5226] = 5226, + [5227] = 2609, + [5228] = 5228, + [5229] = 2610, + [5230] = 2657, + [5231] = 5231, + [5232] = 5232, + [5233] = 5233, + [5234] = 5234, + [5235] = 5235, + [5236] = 5236, + [5237] = 5237, + [5238] = 5238, + [5239] = 5239, + [5240] = 5240, + [5241] = 5241, + [5242] = 1618, + [5243] = 2630, + [5244] = 5244, + [5245] = 5245, + [5246] = 5246, + [5247] = 5247, + [5248] = 5248, + [5249] = 5249, + [5250] = 5250, + [5251] = 5235, + [5252] = 5252, + [5253] = 5253, + [5254] = 5254, + [5255] = 5255, + [5256] = 5256, + [5257] = 2621, + [5258] = 5258, + [5259] = 5259, + [5260] = 5260, + [5261] = 5261, + [5262] = 5235, + [5263] = 5231, + [5264] = 5264, + [5265] = 5265, + [5266] = 5266, + [5267] = 5267, + [5268] = 5268, + [5269] = 5247, + [5270] = 5270, + [5271] = 5271, + [5272] = 5272, + [5273] = 5273, + [5274] = 5274, + [5275] = 5275, + [5276] = 5276, + [5277] = 5277, + [5278] = 5278, + [5279] = 5279, + [5280] = 5280, + [5281] = 5281, + [5282] = 5282, + [5283] = 5283, + [5284] = 5284, + [5285] = 5285, + [5286] = 5279, + [5287] = 5287, + [5288] = 5288, + [5289] = 5236, + [5290] = 5290, + [5291] = 5291, + [5292] = 5237, + [5293] = 5293, + [5294] = 5294, + [5295] = 5295, + [5296] = 5296, + [5297] = 3797, + [5298] = 5298, + [5299] = 5299, + [5300] = 5300, + [5301] = 5301, + [5302] = 5302, + [5303] = 5303, + [5304] = 5304, + [5305] = 2605, + [5306] = 5306, + [5307] = 5307, + [5308] = 5308, + [5309] = 5309, + [5310] = 5310, + [5311] = 5311, + [5312] = 5239, + [5313] = 5298, + [5314] = 5314, + [5315] = 5315, + [5316] = 5316, + [5317] = 5317, + [5318] = 5318, + [5319] = 5319, + [5320] = 5320, + [5321] = 5267, + [5322] = 5322, + [5323] = 5323, + [5324] = 5231, + [5325] = 5247, + [5326] = 5275, + [5327] = 5277, + [5328] = 5236, + [5329] = 5237, + [5330] = 5330, + [5331] = 5331, + [5332] = 5332, + [5333] = 5333, + [5334] = 5317, + [5335] = 5252, + [5336] = 5336, + [5337] = 5331, + [5338] = 5338, + [5339] = 5339, + [5340] = 5340, + [5341] = 3818, + [5342] = 5342, + [5343] = 3819, + [5344] = 5235, + [5345] = 5245, + [5346] = 5346, + [5347] = 3820, + [5348] = 5348, + [5349] = 5240, + [5350] = 5307, + [5351] = 5259, + [5352] = 2617, + [5353] = 5353, + [5354] = 2618, + [5355] = 5355, + [5356] = 5247, + [5357] = 5357, + [5358] = 5275, + [5359] = 5277, + [5360] = 5360, + [5361] = 5361, + [5362] = 5362, + [5363] = 5363, + [5364] = 2619, + [5365] = 5241, + [5366] = 5318, + [5367] = 5282, + [5368] = 5232, + [5369] = 5323, + [5370] = 5233, + [5371] = 5308, + [5372] = 5309, + [5373] = 5373, + [5374] = 5374, + [5375] = 5333, + [5376] = 5339, + [5377] = 5226, + [5378] = 5225, + [5379] = 5311, + [5380] = 5380, + [5381] = 5260, + [5382] = 5261, + [5383] = 5264, + [5384] = 5384, + [5385] = 5266, + [5386] = 5386, + [5387] = 5387, + [5388] = 5388, + [5389] = 5389, + [5390] = 5314, + [5391] = 5225, + [5392] = 5384, + [5393] = 2642, + [5394] = 5320, + [5395] = 5395, + [5396] = 5396, + [5397] = 5397, + [5398] = 5398, + [5399] = 5399, + [5400] = 5268, + [5401] = 5315, + [5402] = 5247, + [5403] = 5403, + [5404] = 5404, + [5405] = 5250, + [5406] = 5406, + [5407] = 5407, + [5408] = 5408, + [5409] = 5409, + [5410] = 5410, + [5411] = 5411, + [5412] = 5228, + [5413] = 5234, + [5414] = 5248, + [5415] = 5415, + [5416] = 5255, + [5417] = 2615, + [5418] = 5418, + [5419] = 2616, + [5420] = 5280, + [5421] = 5316, + [5422] = 2624, + [5423] = 5271, + [5424] = 5303, + [5425] = 5425, + [5426] = 5426, + [5427] = 5427, + [5428] = 5428, + [5429] = 5425, + [5430] = 5235, + [5431] = 5407, + [5432] = 5277, + [5433] = 5418, + [5434] = 5247, + [5435] = 5435, + [5436] = 5300, + [5437] = 5437, + [5438] = 5264, + [5439] = 5439, + [5440] = 5275, + [5441] = 5360, + [5442] = 5353, + [5443] = 5357, + [5444] = 5277, + [5445] = 2613, + [5446] = 5446, + [5447] = 5447, + [5448] = 5448, + [5449] = 5449, + [5450] = 5450, + [5451] = 5231, + [5452] = 5452, + [5453] = 5236, + [5454] = 5448, + [5455] = 5455, + [5456] = 5275, + [5457] = 5447, + [5458] = 5458, + [5459] = 5459, + [5460] = 5237, + [5461] = 5284, + [5462] = 5411, + [5463] = 5224, + [5464] = 5302, + [5465] = 5465, + [5466] = 5466, + [5467] = 5304, + [5468] = 5468, + [5469] = 5336, + [5470] = 5470, + [5471] = 5235, + [5472] = 5472, + [5473] = 5355, + [5474] = 5474, + [5475] = 5260, + [5476] = 5261, + [5477] = 5477, + [5478] = 5478, + [5479] = 5479, + [5480] = 5480, + [5481] = 5481, + [5482] = 5482, + [5483] = 5264, + [5484] = 5484, + [5485] = 5310, + [5486] = 5486, + [5487] = 5487, + [5488] = 5277, + [5489] = 5266, + [5490] = 5490, + [5491] = 2622, + [5492] = 5492, + [5493] = 5493, + [5494] = 5494, + [5495] = 5495, + [5496] = 2620, + [5497] = 5450, + [5498] = 2623, + [5499] = 5452, + [5500] = 5260, + [5501] = 5474, + [5502] = 2631, + [5503] = 2632, + [5504] = 5261, + [5505] = 5250, + [5506] = 5506, + [5507] = 5264, + [5508] = 5406, + [5509] = 5452, + [5510] = 5510, + [5511] = 5266, + [5512] = 5512, + [5513] = 5280, + [5514] = 5514, + [5515] = 5284, + [5516] = 5261, + [5517] = 5458, + [5518] = 5336, + [5519] = 5519, + [5520] = 5520, + [5521] = 5252, + [5522] = 5522, + [5523] = 5275, + [5524] = 5494, + [5525] = 5520, + [5526] = 5302, + [5527] = 5472, + [5528] = 5361, + [5529] = 5529, + [5530] = 5530, + [5531] = 5531, + [5532] = 5532, + [5533] = 5304, + [5534] = 5465, + [5535] = 5535, + [5536] = 5536, + [5537] = 5537, + [5538] = 5538, + [5539] = 1656, + [5540] = 5512, + [5541] = 5302, + [5542] = 5304, + [5543] = 5543, + [5544] = 5544, + [5545] = 5545, + [5546] = 1657, + [5547] = 5253, + [5548] = 5266, + [5549] = 5415, + [5550] = 5320, + [5551] = 5426, + [5552] = 5260, + [5553] = 5553, + [5554] = 5410, + [5555] = 5247, + [5556] = 5425, + [5557] = 5275, + [5558] = 2644, + [5559] = 5472, + [5560] = 5277, + [5561] = 5561, + [5562] = 5231, + [5563] = 5236, + [5564] = 5237, + [5565] = 5565, + [5566] = 2645, + [5567] = 5331, + [5568] = 5282, + [5569] = 5569, + [5570] = 5363, + [5571] = 5571, + [5572] = 5235, + [5573] = 5240, + [5574] = 2602, + [5575] = 5575, + [5576] = 5435, + [5577] = 5577, + [5578] = 5578, + [5579] = 5579, + [5580] = 5580, + [5581] = 5581, + [5582] = 5582, + [5583] = 5583, + [5584] = 5584, + [5585] = 5585, + [5586] = 5586, + [5587] = 5579, + [5588] = 5588, + [5589] = 5589, + [5590] = 5590, + [5591] = 5591, + [5592] = 5580, + [5593] = 5593, + [5594] = 5591, + [5595] = 5595, + [5596] = 5596, + [5597] = 5597, + [5598] = 5598, + [5599] = 5599, + [5600] = 5600, + [5601] = 5601, + [5602] = 5602, + [5603] = 5603, + [5604] = 5604, + [5605] = 5577, + [5606] = 5606, + [5607] = 5588, + [5608] = 5608, + [5609] = 5609, + [5610] = 5610, + [5611] = 5611, + [5612] = 5597, + [5613] = 5578, + [5614] = 5599, + [5615] = 5596, + [5616] = 5616, + [5617] = 5617, + [5618] = 5603, + [5619] = 5619, + [5620] = 5620, + [5621] = 5621, + [5622] = 5622, + [5623] = 5623, + [5624] = 5624, + [5625] = 5585, + [5626] = 5626, + [5627] = 5627, + [5628] = 5601, + [5629] = 5629, + [5630] = 5630, + [5631] = 5631, + [5632] = 5632, + [5633] = 5633, + [5634] = 5634, + [5635] = 5609, + [5636] = 5636, + [5637] = 5637, + [5638] = 5638, + [5639] = 5584, + [5640] = 5622, + [5641] = 5589, + [5642] = 5642, + [5643] = 5581, + [5644] = 5644, + [5645] = 5588, + [5646] = 5646, + [5647] = 5647, + [5648] = 5648, + [5649] = 5649, + [5650] = 5591, + [5651] = 5651, + [5652] = 5638, + [5653] = 5653, + [5654] = 5584, + [5655] = 5580, + [5656] = 5656, + [5657] = 5624, + [5658] = 5658, + [5659] = 5659, + [5660] = 5660, + [5661] = 5579, + [5662] = 5662, + [5663] = 5616, + [5664] = 5664, + [5665] = 5624, + [5666] = 5588, + [5667] = 5667, + [5668] = 5668, + [5669] = 5669, + [5670] = 5604, + [5671] = 5610, + [5672] = 5611, + [5673] = 5673, + [5674] = 5674, + [5675] = 5675, + [5676] = 5630, + [5677] = 5582, + [5678] = 5678, + [5679] = 5679, + [5680] = 5680, + [5681] = 5681, + [5682] = 5682, + [5683] = 5582, + [5684] = 5684, + [5685] = 5685, + [5686] = 5686, + [5687] = 5687, + [5688] = 5593, + [5689] = 5593, + [5690] = 5690, + [5691] = 5691, + [5692] = 5690, + [5693] = 5693, + [5694] = 5577, + [5695] = 5603, + [5696] = 5687, + [5697] = 5617, + [5698] = 5698, + [5699] = 5595, + [5700] = 5630, + [5701] = 5588, + [5702] = 5597, + [5703] = 5675, + [5704] = 5704, + [5705] = 5705, + [5706] = 5604, + [5707] = 5597, + [5708] = 5647, + [5709] = 5659, + [5710] = 5599, + [5711] = 5589, + [5712] = 5712, + [5713] = 5678, + [5714] = 5679, + [5715] = 5715, + [5716] = 5580, + [5717] = 5610, + [5718] = 5718, + [5719] = 5611, + [5720] = 5675, + [5721] = 5630, + [5722] = 5722, + [5723] = 5623, + [5724] = 5681, + [5725] = 5678, + [5726] = 5679, + [5727] = 5681, + [5728] = 5629, + [5729] = 5684, + [5730] = 5582, + [5731] = 5682, + [5732] = 5685, + [5733] = 5733, + [5734] = 5734, + [5735] = 5682, + [5736] = 5582, + [5737] = 5604, + [5738] = 5685, + [5739] = 5686, + [5740] = 5740, + [5741] = 5579, + [5742] = 5742, + [5743] = 5622, + [5744] = 5744, + [5745] = 5745, + [5746] = 5610, + [5747] = 5686, + [5748] = 5601, + [5749] = 5749, + [5750] = 5687, + [5751] = 5749, + [5752] = 5626, + [5753] = 5691, + [5754] = 5687, + [5755] = 5611, + [5756] = 5622, + [5757] = 5675, + [5758] = 5636, + [5759] = 5759, + [5760] = 5678, + [5761] = 5602, + [5762] = 5634, + [5763] = 5763, + [5764] = 5764, + [5765] = 5765, + [5766] = 5698, + [5767] = 5679, + [5768] = 5669, + [5769] = 5623, + [5770] = 5593, + [5771] = 5597, + [5772] = 5631, + [5773] = 5578, + [5774] = 5577, + [5775] = 5603, + [5776] = 5596, + [5777] = 5616, + [5778] = 5778, + [5779] = 5779, + [5780] = 5687, + [5781] = 5781, + [5782] = 5593, + [5783] = 5597, + [5784] = 5784, + [5785] = 5599, + [5786] = 5786, + [5787] = 5681, + [5788] = 5682, + [5789] = 5718, + [5790] = 5685, + [5791] = 5578, + [5792] = 5596, + [5793] = 5616, + [5794] = 5673, + [5795] = 5627, + [5796] = 5577, + [5797] = 5582, + [5798] = 5798, + [5799] = 5603, + [5800] = 5585, + [5801] = 5585, + [5802] = 5802, + [5803] = 5578, + [5804] = 5626, + [5805] = 5630, + [5806] = 5647, + [5807] = 5686, + [5808] = 5601, + [5809] = 5809, + [5810] = 5687, + [5811] = 5811, + [5812] = 5606, + [5813] = 5813, + [5814] = 5622, + [5815] = 5623, + [5816] = 5653, + [5817] = 5817, + [5818] = 5631, + [5819] = 5647, + [5820] = 5633, + [5821] = 5626, + [5822] = 5811, + [5823] = 5601, + [5824] = 5691, + [5825] = 5631, + [5826] = 5609, + [5827] = 5827, + [5828] = 5633, + [5829] = 5588, + [5830] = 5609, + [5831] = 5637, + [5832] = 5811, + [5833] = 5638, + [5834] = 5834, + [5835] = 5584, + [5836] = 5693, + [5837] = 5589, + [5838] = 5598, + [5839] = 5617, + [5840] = 5658, + [5841] = 5659, + [5842] = 5599, + [5843] = 5633, + [5844] = 5734, + [5845] = 5680, + [5846] = 5846, + [5847] = 5588, + [5848] = 5848, + [5849] = 5596, + [5850] = 5616, + [5851] = 5623, + [5852] = 5591, + [5853] = 5585, + [5854] = 5624, + [5855] = 5604, + [5856] = 5856, + [5857] = 5578, + [5858] = 5602, + [5859] = 5596, + [5860] = 5616, + [5861] = 5861, + [5862] = 5809, + [5863] = 5581, + [5864] = 5606, + [5865] = 5600, + [5866] = 5722, + [5867] = 5734, + [5868] = 5610, + [5869] = 5811, + [5870] = 5870, + [5871] = 5611, + [5872] = 5580, + [5873] = 5675, + [5874] = 5581, + [5875] = 5691, + [5876] = 5599, + [5877] = 5678, + [5878] = 5733, + [5879] = 5679, + [5880] = 5659, + [5881] = 5593, + [5882] = 5733, + [5883] = 5630, + [5884] = 5597, + [5885] = 5660, + [5886] = 5599, + [5887] = 5579, + [5888] = 5631, + [5889] = 5578, + [5890] = 5585, + [5891] = 5596, + [5892] = 5616, + [5893] = 5633, + [5894] = 5681, + [5895] = 5598, + [5896] = 5682, + [5897] = 5685, + [5898] = 5686, + [5899] = 5798, + [5900] = 5765, + [5901] = 5585, + [5902] = 5659, + [5903] = 5637, + [5904] = 5658, + [5905] = 5626, + [5906] = 5637, + [5907] = 5712, + [5908] = 5674, + [5909] = 5733, + [5910] = 5598, + [5911] = 5690, + [5912] = 5912, + [5913] = 5593, + [5914] = 5647, + [5915] = 5915, + [5916] = 5598, + [5917] = 5597, + [5918] = 5653, + [5919] = 5919, + [5920] = 5638, + [5921] = 5599, + [5922] = 5658, + [5923] = 5923, + [5924] = 5578, + [5925] = 5925, + [5926] = 5744, + [5927] = 5644, + [5928] = 5596, + [5929] = 5591, + [5930] = 5744, + [5931] = 5667, + [5932] = 5599, + [5933] = 5658, + [5934] = 5577, + [5935] = 5603, + [5936] = 5624, + [5937] = 5616, + [5938] = 5593, + [5939] = 5597, + [5940] = 5638, + [5941] = 5578, + [5942] = 5591, + [5943] = 5624, + [5944] = 5764, + [5945] = 5786, + [5946] = 5579, + [5947] = 5577, + [5948] = 5617, + [5949] = 5779, + [5950] = 5596, + [5951] = 5846, + [5952] = 5630, + [5953] = 5658, + [5954] = 5659, + [5955] = 5616, + [5956] = 5813, + [5957] = 5579, + [5958] = 5817, + [5959] = 5959, + [5960] = 5744, + [5961] = 5647, + [5962] = 5584, + [5963] = 5809, + [5964] = 5964, + [5965] = 5637, + [5966] = 5580, + [5967] = 5585, + [5968] = 5925, + [5969] = 5691, + [5970] = 5582, + [5971] = 5971, + [5972] = 5593, + [5973] = 5603, + [5974] = 5617, + [5975] = 5653, + [5976] = 5674, + [5977] = 5585, + [5978] = 5659, + [5979] = 5653, + [5980] = 5846, + [5981] = 5589, + [5982] = 5687, + [5983] = 5983, + [5984] = 5658, + [5985] = 5985, + [5986] = 5733, + [5987] = 5653, + [5988] = 5609, +}; + +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym_declaration, + sym_expression, + sym_pattern, + sym_primary_expression, + sym_primary_type, + sym_statement, + sym_type, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym_declaration] = {.index = 0, .length = 14}, + [sym_expression] = {.index = 14, .length = 16}, + [sym_pattern] = {.index = 30, .length = 8}, + [sym_primary_expression] = {.index = 38, .length = 23}, + [sym_primary_type] = {.index = 61, .length = 20}, + [sym_statement] = {.index = 81, .length = 20}, + [sym_type] = {.index = 101, .length = 10}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym_abstract_class_declaration, + sym_ambient_declaration, + sym_class_declaration, + sym_enum_declaration, + sym_function_declaration, + sym_function_signature, + sym_generator_function_declaration, + sym_import_alias, + sym_interface_declaration, + sym_internal_module, + sym_lexical_declaration, + sym_module, + sym_type_alias_declaration, + sym_variable_declaration, + [14] = + sym_as_expression, + sym_assignment_expression, + sym_augmented_assignment_expression, + sym_await_expression, + sym_binary_expression, + sym_instantiation_expression, + sym_internal_module, + sym_jsx_element, + sym_jsx_self_closing_element, + sym_new_expression, + sym_primary_expression, + sym_satisfies_expression, + sym_ternary_expression, + sym_unary_expression, + sym_update_expression, + sym_yield_expression, + [30] = + sym_array_pattern, + sym_identifier, + sym_member_expression, + sym_non_null_expression, + sym_object_pattern, + sym_rest_pattern, + sym_subscript_expression, + sym_undefined, + [38] = + 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_non_null_expression, + 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, + [61] = + alias_sym_this_type, + alias_sym_type_identifier, + anon_sym_const, + sym_array_type, + sym_conditional_type, + sym_existential_type, + sym_flow_maybe_type, + sym_generic_type, + sym_index_type_query, + sym_intersection_type, + sym_literal_type, + sym_lookup_type, + sym_nested_type_identifier, + sym_object_type, + sym_parenthesized_type, + sym_predefined_type, + sym_template_literal_type, + sym_tuple_type, + sym_type_query, + sym_union_type, + [81] = + 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, + [101] = + sym__type_query_call_expression, + sym__type_query_call_expression_in_type_annotation, + sym_call_expression, + sym_constructor_type, + sym_decorator_call_expression, + sym_function_type, + sym_infer_type, + sym_member_expression, + sym_primary_type, + sym_readonly_type, +}; + +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 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 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}, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(128); + ADVANCE_MAP( + '!', 142, + '"', 159, + '#', 6, + '$', 283, + '%', 226, + '&', 204, + '\'', 160, + '(', 143, + ')', 145, + '*', 131, + '+', 218, + ',', 139, + '-', 222, + '.', 155, + '/', 268, + '0', 273, + ':', 146, + ';', 144, + '<', 231, + '=', 135, + '>', 151, + '?', 289, + '@', 286, + '[', 147, + '\\', 81, + ']', 148, + '^', 208, + '`', 266, + '{', 138, + '|', 211, + '}', 140, + '~', 242, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(125); + if (lookahead > '@') ADVANCE(284); + END_STATE(); + case 1: + if (lookahead == '\n') SKIP(33); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(124); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(269); + if (lookahead != 0) ADVANCE(270); + END_STATE(); + case 2: + ADVANCE_MAP( + '!', 142, + '"', 159, + '#', 79, + '%', 226, + '&', 205, + '\'', 160, + '(', 143, + ')', 145, + '*', 131, + '+', 217, + ',', 139, + '-', 221, + '.', 155, + '/', 224, + '0', 273, + ':', 146, + ';', 144, + '<', 232, + '=', 135, + '>', 151, + '?', 289, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '^', 208, + '`', 266, + '{', 138, + '|', 211, + '}', 140, + '~', 242, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(2); + if (lookahead > '#') ADVANCE(284); + END_STATE(); + case 3: + ADVANCE_MAP( + '!', 142, + '"', 159, + '#', 79, + '%', 226, + '&', 205, + '\'', 160, + '(', 143, + ')', 145, + '*', 131, + '+', 217, + ',', 139, + '-', 221, + '.', 155, + '/', 224, + '0', 273, + ':', 146, + ';', 144, + '<', 232, + '=', 135, + '>', 151, + '?', 289, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '^', 208, + '`', 266, + '{', 137, + '|', 210, + '}', 140, + '~', 242, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); + if (lookahead > '#') ADVANCE(284); + END_STATE(); + case 4: + ADVANCE_MAP( + '!', 142, + '%', 225, + '&', 206, + '(', 143, + ')', 145, + '*', 132, + '+', 216, + ',', 139, + '-', 220, + '.', 154, + '/', 223, + ':', 146, + ';', 144, + '<', 233, + '=', 76, + '>', 152, + '?', 30, + '[', 147, + '\\', 83, + ']', 148, + '^', 207, + '`', 266, + '{', 137, + '|', 212, + '}', 140, + ); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '`' || '~' < lookahead)) ADVANCE(284); + END_STATE(); + case 5: + ADVANCE_MAP( + '!', 142, + '%', 225, + '&', 206, + '(', 143, + ')', 145, + '*', 132, + '+', 216, + ',', 139, + '-', 220, + '.', 154, + '/', 223, + ':', 146, + ';', 144, + '<', 233, + '=', 76, + '>', 152, + '?', 30, + '[', 147, + '\\', 83, + ']', 148, + '^', 207, + '`', 266, + '{', 137, + '|', 212, + '}', 140, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(284); + END_STATE(); + case 6: + if (lookahead == '!') ADVANCE(129); + if (lookahead == '\\') ADVANCE(82); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(285); + END_STATE(); + case 7: + ADVANCE_MAP( + '!', 141, + '"', 159, + '#', 79, + '&', 204, + '\'', 160, + '(', 143, + ')', 145, + '*', 130, + '+', 216, + ',', 139, + '-', 220, + '.', 155, + '/', 223, + '0', 273, + ':', 146, + ';', 144, + '<', 229, + '=', 136, + '>', 150, + '?', 288, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '`', 266, + '{', 137, + '|', 214, + '}', 140, + '~', 242, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(284); + END_STATE(); + case 8: + ADVANCE_MAP( + '!', 141, + '"', 159, + '#', 79, + '&', 204, + '\'', 160, + '(', 143, + ')', 145, + '*', 130, + '+', 216, + ',', 139, + '-', 220, + '.', 155, + '/', 223, + '0', 273, + '<', 229, + '?', 287, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '`', 266, + '{', 138, + '|', 209, + '~', 242, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(284); + END_STATE(); + case 9: + ADVANCE_MAP( + '"', 159, + '#', 79, + '&', 204, + '\'', 160, + '(', 143, + '*', 130, + '+', 215, + ',', 139, + '-', 219, + '.', 29, + '/', 23, + '0', 273, + ';', 144, + '<', 229, + '>', 150, + '?', 287, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '`', 266, + '{', 138, + '|', 214, + '}', 140, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(284); + END_STATE(); + case 10: + ADVANCE_MAP( + '"', 159, + '#', 79, + '\'', 160, + '(', 143, + '*', 130, + '+', 215, + ',', 139, + '-', 219, + '.', 29, + '/', 23, + '0', 273, + ';', 144, + '<', 229, + '@', 286, + '[', 147, + '\\', 83, + '{', 137, + '|', 93, + '}', 140, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(284); + END_STATE(); + case 11: + ADVANCE_MAP( + '"', 159, + '&', 204, + '\'', 160, + '(', 143, + '*', 130, + '+', 215, + '-', 219, + '.', 100, + '/', 24, + '0', 273, + '<', 229, + '>', 150, + '?', 287, + '[', 147, + '\\', 83, + '`', 266, + '{', 138, + '|', 209, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(282); + if (lookahead > '~') ADVANCE(284); + END_STATE(); + case 12: + if (lookahead == '"') ADVANCE(159); + if (lookahead == '&') ADVANCE(174); + if (lookahead == '/') ADVANCE(161); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(163); + if (lookahead != 0) ADVANCE(162); + END_STATE(); + case 13: + if (lookahead == '"') ADVANCE(159); + if (lookahead == '/') ADVANCE(23); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13); + END_STATE(); + case 14: + if (lookahead == '"') ADVANCE(159); + if (lookahead == '/') ADVANCE(245); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '\n' || + lookahead == '\r') SKIP(13); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(248); + if (lookahead != 0) ADVANCE(250); + END_STATE(); + case 15: + if (lookahead == '#') ADVANCE(96); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#') ADVANCE(162); + END_STATE(); + case 16: + if (lookahead == '#') ADVANCE(96); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(168); + END_STATE(); + case 17: + if (lookahead == '$') ADVANCE(85); + if (lookahead == '&') ADVANCE(173); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '<') ADVANCE(230); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '`') ADVANCE(266); + if (lookahead == '{') ADVANCE(137); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(18); + END_STATE(); + case 18: + if (lookahead == '$') ADVANCE(85); + if (lookahead == '&') ADVANCE(173); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '<') ADVANCE(230); + if (lookahead == '`') ADVANCE(266); + if (lookahead == '{') ADVANCE(137); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(18); + END_STATE(); + case 19: + ADVANCE_MAP( + '&', 204, + '(', 143, + '+', 77, + ',', 139, + '-', 78, + '.', 154, + '/', 24, + ':', 146, + '<', 229, + '=', 133, + '>', 150, + '?', 36, + '[', 147, + '\\', 83, + '{', 137, + '|', 209, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(282); + if (lookahead > '~') ADVANCE(284); + END_STATE(); + case 20: + if (lookahead == '&') ADVANCE(175); + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(167); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(169); + if (lookahead != 0) ADVANCE(168); + END_STATE(); + case 21: + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(23); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(21); + END_STATE(); + case 22: + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(251); + if (lookahead == '\\') ADVANCE(84); + if (lookahead == '\n' || + lookahead == '\r') SKIP(21); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(254); + if (lookahead != 0) ADVANCE(256); + END_STATE(); + case 23: + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(265); + END_STATE(); + case 24: + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(265); + if (lookahead == '>') ADVANCE(158); + END_STATE(); + case 25: + if (lookahead == '*') ADVANCE(25); + if (lookahead == '/') ADVANCE(262); + if (lookahead != 0) ADVANCE(26); + END_STATE(); + case 26: + if (lookahead == '*') ADVANCE(25); + if (lookahead != 0) ADVANCE(26); + END_STATE(); + case 27: + if (lookahead == '*') ADVANCE(164); + if (lookahead == '"' || + lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(26); + if (lookahead != 0) ADVANCE(165); + END_STATE(); + case 28: + if (lookahead == '*') ADVANCE(170); + if (lookahead == '#' || + lookahead == '\'' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(26); + if (lookahead != 0) ADVANCE(171); + END_STATE(); + case 29: + if (lookahead == '.') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); + END_STATE(); + case 30: + if (lookahead == '.') ADVANCE(177); + if (lookahead == '?') ADVANCE(240); + END_STATE(); + case 31: + if (lookahead == '.') ADVANCE(193); + END_STATE(); + case 32: + if (lookahead == '/') ADVANCE(268); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); + END_STATE(); + case 33: + if (lookahead == '/') ADVANCE(23); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); + END_STATE(); + case 34: + if (lookahead == ':') ADVANCE(292); + END_STATE(); + case 35: + if (lookahead == ':') ADVANCE(291); + END_STATE(); + case 36: + if (lookahead == ':') ADVANCE(293); + END_STATE(); + case 37: + if (lookahead == ';') ADVANCE(149); + END_STATE(); + case 38: + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37); + END_STATE(); + case 39: + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + END_STATE(); + case 40: + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39); + END_STATE(); + case 41: + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40); + END_STATE(); + case 42: + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); + END_STATE(); + case 43: + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + END_STATE(); + case 44: + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + END_STATE(); + case 45: + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + END_STATE(); + case 46: + if (lookahead == ';') ADVANCE(149); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + END_STATE(); + case 47: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(37); + END_STATE(); + case 48: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + END_STATE(); + case 49: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + END_STATE(); + case 50: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); + END_STATE(); + case 51: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(50); + END_STATE(); + case 52: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(51); + END_STATE(); + case 53: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(52); + END_STATE(); + case 54: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); + END_STATE(); + case 55: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); + END_STATE(); + case 56: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); + END_STATE(); + case 57: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56); + END_STATE(); + case 58: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57); + END_STATE(); + case 59: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + END_STATE(); + case 60: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); + END_STATE(); + case 61: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); + END_STATE(); + case 62: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); + END_STATE(); + case 63: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + END_STATE(); + case 64: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); + END_STATE(); + case 65: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); + END_STATE(); + case 66: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65); + END_STATE(); + case 67: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); + END_STATE(); + case 68: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67); + END_STATE(); + case 69: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); + END_STATE(); + case 70: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69); + END_STATE(); + case 71: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); + END_STATE(); + case 72: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); + END_STATE(); + case 73: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); + END_STATE(); + case 74: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(73); + END_STATE(); + case 75: + if (lookahead == ';') ADVANCE(149); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); + END_STATE(); + case 76: + if (lookahead == '=') ADVANCE(235); + END_STATE(); + case 77: + if (lookahead == '?') ADVANCE(34); + END_STATE(); + case 78: + if (lookahead == '?') ADVANCE(35); + END_STATE(); + case 79: + if (lookahead == '\\') ADVANCE(82); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(285); + END_STATE(); + case 80: + if (lookahead == '\\') ADVANCE(123); + if (lookahead == ']') ADVANCE(270); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(80); + END_STATE(); + case 81: + if (lookahead == 'u') ADVANCE(86); + if (lookahead == 'x') ADVANCE(113); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(261); + if (lookahead != 0) ADVANCE(257); + END_STATE(); + case 82: + if (lookahead == 'u') ADVANCE(87); + END_STATE(); + case 83: + if (lookahead == 'u') ADVANCE(88); + END_STATE(); + case 84: + if (lookahead == 'u') ADVANCE(89); + if (lookahead == 'x') ADVANCE(113); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(259); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(261); + if (lookahead != 0) ADVANCE(257); + END_STATE(); + case 85: + if (lookahead == '{') ADVANCE(267); + END_STATE(); + case 86: + if (lookahead == '{') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + END_STATE(); + case 87: + if (lookahead == '{') ADVANCE(111); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); + END_STATE(); + case 88: + if (lookahead == '{') ADVANCE(112); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120); + END_STATE(); + case 89: + if (lookahead == '{') ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); + END_STATE(); + case 90: + if (lookahead == '}') ADVANCE(284); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + END_STATE(); + case 91: + if (lookahead == '}') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + END_STATE(); + case 92: + if (lookahead == '}') ADVANCE(257); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); + END_STATE(); + case 93: + if (lookahead == '}') ADVANCE(295); + END_STATE(); + case 94: + if (lookahead == '}') ADVANCE(258); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(94); + END_STATE(); + case 95: + if (lookahead == '+' || + lookahead == '-') ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(280); + END_STATE(); + case 96: + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(41); + END_STATE(); + case 97: + if (lookahead == '0' || + lookahead == '1') ADVANCE(276); + END_STATE(); + case 98: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(277); + END_STATE(); + case 99: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); + END_STATE(); + case 100: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); + END_STATE(); + case 101: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); + END_STATE(); + case 102: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(280); + END_STATE(); + case 103: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(284); + END_STATE(); + case 104: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(285); + END_STATE(); + case 105: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(257); + END_STATE(); + case 106: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(278); + END_STATE(); + case 107: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(94); + END_STATE(); + case 108: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(258); + END_STATE(); + case 109: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + END_STATE(); + case 110: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + END_STATE(); + case 111: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + END_STATE(); + case 112: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + END_STATE(); + case 113: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); + END_STATE(); + case 114: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); + END_STATE(); + case 115: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(108); + END_STATE(); + case 116: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); + END_STATE(); + case 117: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); + END_STATE(); + case 118: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + END_STATE(); + case 119: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + END_STATE(); + case 120: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + END_STATE(); + case 121: + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(162); + END_STATE(); + case 122: + if (lookahead != 0 && + lookahead != '#' && + lookahead != '\'' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(168); + END_STATE(); + case 123: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(80); + END_STATE(); + case 124: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(270); + END_STATE(); + case 125: + if (eof) ADVANCE(128); + ADVANCE_MAP( + '!', 142, + '"', 159, + '#', 6, + '$', 283, + '%', 226, + '&', 204, + '\'', 160, + '(', 143, + ')', 145, + '*', 131, + '+', 218, + ',', 139, + '-', 222, + '.', 155, + '/', 224, + '0', 273, + ':', 146, + ';', 144, + '<', 231, + '=', 135, + '>', 151, + '?', 289, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '^', 208, + '`', 266, + '{', 138, + '|', 211, + '}', 140, + '~', 242, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(125); + if (lookahead > '@') ADVANCE(284); + END_STATE(); + case 126: + if (eof) ADVANCE(128); + ADVANCE_MAP( + '!', 142, + '"', 159, + '#', 79, + '%', 225, + '&', 206, + '\'', 160, + '(', 143, + ')', 145, + '*', 132, + '+', 216, + ',', 139, + '-', 220, + '.', 156, + '/', 223, + '0', 273, + ':', 146, + ';', 144, + '<', 233, + '=', 134, + '>', 152, + '?', 290, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '^', 207, + '`', 266, + '{', 137, + '|', 213, + '}', 140, + '~', 242, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(126); + if (lookahead > '#') ADVANCE(284); + END_STATE(); + case 127: + if (eof) ADVANCE(128); + ADVANCE_MAP( + '!', 141, + '"', 159, + '#', 6, + '&', 204, + '\'', 160, + '(', 143, + ')', 145, + '*', 130, + '+', 216, + ',', 139, + '-', 220, + '.', 155, + '/', 223, + '0', 273, + ':', 146, + ';', 144, + '<', 229, + '=', 136, + '>', 150, + '?', 287, + '@', 286, + '[', 147, + '\\', 83, + ']', 148, + '`', 266, + '{', 137, + '|', 214, + '}', 140, + '~', 242, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(127); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(284); + END_STATE(); + case 128: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 129: + ACCEPT_TOKEN(sym_hash_bang_line); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(129); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(228); + if (lookahead == '=') ADVANCE(180); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(227); + END_STATE(); + case 133: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(235); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(235); + if (lookahead == '>') ADVANCE(176); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(176); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(294); + END_STATE(); + case 139: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(237); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 149: + ACCEPT_TOKEN(sym_html_character_reference); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(239); + if (lookahead == '>') ADVANCE(198); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(239); + if (lookahead == '>') ADVANCE(199); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym_jsx_identifier); + if (lookahead == '$' || + lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(153); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_LT_SLASH); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_SLASH_GT); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 161: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(121); + if (lookahead == '*') ADVANCE(165); + if (lookahead == '/') ADVANCE(166); + if (lookahead != 0 && + lookahead != '"') ADVANCE(162); + END_STATE(); + case 162: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(121); + if (lookahead != 0 && + lookahead != '"') ADVANCE(162); + END_STATE(); + case 163: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(15); + if (lookahead == '/') ADVANCE(161); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(163); + if (lookahead != 0 && + lookahead != '"') ADVANCE(162); + END_STATE(); + case 164: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(27); + if (lookahead == '*') ADVANCE(164); + if (lookahead == '/') ADVANCE(162); + if (lookahead != 0 && + lookahead != '"') ADVANCE(165); + END_STATE(); + case 165: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(27); + if (lookahead == '*') ADVANCE(164); + if (lookahead != 0 && + lookahead != '"') ADVANCE(165); + END_STATE(); + case 166: + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(263); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(162); + if (lookahead != 0 && + lookahead != '"') ADVANCE(166); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '*') ADVANCE(171); + if (lookahead == '/') ADVANCE(172); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(168); + END_STATE(); + case 168: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(122); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(168); + END_STATE(); + case 169: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(16); + if (lookahead == '/') ADVANCE(167); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(169); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(168); + END_STATE(); + case 170: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(28); + if (lookahead == '*') ADVANCE(170); + if (lookahead == '/') ADVANCE(168); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(171); + END_STATE(); + case 171: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(28); + if (lookahead == '*') ADVANCE(170); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(171); + END_STATE(); + case 172: + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(264); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(168); + if (lookahead != 0 && + lookahead != '&' && + lookahead != '\'') ADVANCE(172); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '#') ADVANCE(96); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_AMP2); + if (lookahead == '#') ADVANCE(96); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#') ADVANCE(162); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_AMP2); + if (lookahead == '#') ADVANCE(96); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(168); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_QMARK_DOT); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(190); + END_STATE(); + case 196: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(191); + END_STATE(); + case 198: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(186); + if (lookahead == '>') ADVANCE(201); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(200); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(187); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(188); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_AMP3); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_AMP3); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '=') ADVANCE(184); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_AMP3); + if (lookahead == '&') ADVANCE(194); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(183); + END_STATE(); + case 209: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(185); + if (lookahead == '|') ADVANCE(197); + END_STATE(); + case 211: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(185); + if (lookahead == '|') ADVANCE(197); + if (lookahead == '}') ADVANCE(295); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(196); + END_STATE(); + case 213: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(196); + if (lookahead == '}') ADVANCE(295); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '}') ADVANCE(295); + END_STATE(); + case 215: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(243); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(243); + if (lookahead == '=') ADVANCE(178); + END_STATE(); + case 218: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(243); + if (lookahead == '=') ADVANCE(178); + if (lookahead == '?') ADVANCE(34); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(244); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(244); + if (lookahead == '=') ADVANCE(179); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(244); + if (lookahead == '=') ADVANCE(179); + if (lookahead == '?') ADVANCE(35); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(265); + END_STATE(); + case 224: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(265); + if (lookahead == '=') ADVANCE(181); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(182); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(189); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(157); + END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(157); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(234); + END_STATE(); + case 232: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(234); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(234); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 235: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(236); + END_STATE(); + case 236: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + END_STATE(); + case 237: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(238); + END_STATE(); + case 238: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + END_STATE(); + case 239: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 240: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + END_STATE(); + case 241: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(192); + END_STATE(); + case 242: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 243: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 244: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(247); + if (lookahead == '/') ADVANCE(249); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(250); + END_STATE(); + case 246: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(246); + if (lookahead == '/') ADVANCE(250); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(247); + END_STATE(); + case 247: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(246); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(247); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '/') ADVANCE(245); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(248); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '"' && + lookahead != '\\') ADVANCE(250); + END_STATE(); + case 249: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(250); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(249); + END_STATE(); + case 250: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(250); + END_STATE(); + case 251: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '/') ADVANCE(255); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(256); + END_STATE(); + case 252: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(252); + if (lookahead == '/') ADVANCE(256); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(253); + END_STATE(); + case 253: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(252); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(253); + END_STATE(); + case 254: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '/') ADVANCE(251); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(254); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\'' && + lookahead != '\\') ADVANCE(256); + END_STATE(); + case 255: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(256); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(255); + END_STATE(); + case 256: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(256); + END_STATE(); + case 257: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(83); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(284); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\n' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(257); + END_STATE(); + case 260: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(257); + END_STATE(); + case 261: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(260); + END_STATE(); + case 262: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 263: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(162); + if (lookahead == '"' || + lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(265); + if (lookahead != 0) ADVANCE(166); + END_STATE(); + case 264: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(168); + if (lookahead == '#' || + lookahead == '\'' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(265); + if (lookahead != 0) ADVANCE(172); + END_STATE(); + case 265: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != 0x2028 && + lookahead != 0x2029) ADVANCE(265); + END_STATE(); + case 266: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 267: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_SLASH2); + END_STATE(); + case 269: + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '\n') SKIP(33); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(124); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(269); + if (lookahead != 0) ADVANCE(270); + END_STATE(); + case 270: + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '[') ADVANCE(80); + if (lookahead == '\\') ADVANCE(124); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '/') ADVANCE(270); + END_STATE(); + case 271: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == '\\') ADVANCE(83); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(271); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(284); + END_STATE(); + case 272: + ACCEPT_TOKEN(sym_number); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym_number); + ADVANCE_MAP( + '.', 281, + '0', 275, + '_', 101, + 'n', 272, + 'B', 97, + 'b', 97, + 'E', 95, + 'e', 95, + 'O', 98, + 'o', 98, + 'X', 106, + 'x', 106, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); + END_STATE(); + case 274: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(281); + if (lookahead == '_') ADVANCE(99); + if (lookahead == 'n') ADVANCE(272); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); + END_STATE(); + case 275: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(101); + if (lookahead == 'n') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(275); + END_STATE(); + case 276: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(97); + if (lookahead == 'n') ADVANCE(272); + if (lookahead == '0' || + lookahead == '1') ADVANCE(276); + END_STATE(); + case 277: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(98); + if (lookahead == 'n') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(277); + END_STATE(); + case 278: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(106); + if (lookahead == 'n') ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(278); + END_STATE(); + case 279: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(100); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); + END_STATE(); + case 280: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(280); + END_STATE(); + case 281: + ACCEPT_TOKEN(sym_number); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); + END_STATE(); + case 282: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '$' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(282); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(284); + END_STATE(); + case 283: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(83); + if (lookahead == '{') ADVANCE(267); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(284); + END_STATE(); + case 284: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(83); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(284); + END_STATE(); + case 285: + ACCEPT_TOKEN(sym_private_property_identifier); + if (lookahead == '\\') ADVANCE(82); + if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(285); + END_STATE(); + case 286: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 287: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 288: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(177); + END_STATE(); + case 289: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '?') ADVANCE(241); + END_STATE(); + case 290: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(177); + if (lookahead == '?') ADVANCE(240); + END_STATE(); + case 291: + ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); + END_STATE(); + case 292: + ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); + END_STATE(); + case 293: + ACCEPT_TOKEN(anon_sym_QMARK_COLON); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); + END_STATE(); + case 295: + ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ADVANCE_MAP( + 'a', 1, + 'b', 2, + 'c', 3, + 'd', 4, + 'e', 5, + 'f', 6, + 'g', 7, + 'i', 8, + 'k', 9, + 'l', 10, + 'm', 11, + 'n', 12, + 'o', 13, + 'p', 14, + 'r', 15, + 's', 16, + 't', 17, + 'u', 18, + 'v', 19, + 'w', 20, + 'y', 21, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(0); + END_STATE(); + case 1: + if (lookahead == 'b') ADVANCE(22); + if (lookahead == 'c') ADVANCE(23); + if (lookahead == 'n') ADVANCE(24); + if (lookahead == 's') ADVANCE(25); + if (lookahead == 'w') ADVANCE(26); + END_STATE(); + case 2: + if (lookahead == 'o') ADVANCE(27); + if (lookahead == 'r') ADVANCE(28); + END_STATE(); + case 3: + if (lookahead == 'a') ADVANCE(29); + if (lookahead == 'l') ADVANCE(30); + if (lookahead == 'o') ADVANCE(31); + END_STATE(); + case 4: + if (lookahead == 'e') ADVANCE(32); + if (lookahead == 'o') ADVANCE(33); + END_STATE(); + case 5: + if (lookahead == 'l') ADVANCE(34); + if (lookahead == 'n') ADVANCE(35); + if (lookahead == 'x') ADVANCE(36); + END_STATE(); + case 6: + if (lookahead == 'a') ADVANCE(37); + if (lookahead == 'i') ADVANCE(38); + if (lookahead == 'o') ADVANCE(39); + if (lookahead == 'r') ADVANCE(40); + if (lookahead == 'u') ADVANCE(41); + END_STATE(); + case 7: + if (lookahead == 'e') ADVANCE(42); + if (lookahead == 'l') ADVANCE(43); + END_STATE(); + case 8: + if (lookahead == 'f') ADVANCE(44); + if (lookahead == 'm') ADVANCE(45); + if (lookahead == 'n') ADVANCE(46); + if (lookahead == 's') ADVANCE(47); + END_STATE(); + case 9: + if (lookahead == 'e') ADVANCE(48); + END_STATE(); + case 10: + if (lookahead == 'e') ADVANCE(49); + END_STATE(); + case 11: + if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'o') ADVANCE(51); + END_STATE(); + case 12: + if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'e') ADVANCE(53); + if (lookahead == 'u') ADVANCE(54); + END_STATE(); + case 13: + if (lookahead == 'b') ADVANCE(55); + if (lookahead == 'f') ADVANCE(56); + if (lookahead == 'v') ADVANCE(57); + END_STATE(); + case 14: + if (lookahead == 'r') ADVANCE(58); + if (lookahead == 'u') ADVANCE(59); + END_STATE(); + case 15: + if (lookahead == 'e') ADVANCE(60); + END_STATE(); + case 16: + if (lookahead == 'a') ADVANCE(61); + if (lookahead == 'e') ADVANCE(62); + if (lookahead == 't') ADVANCE(63); + if (lookahead == 'u') ADVANCE(64); + if (lookahead == 'w') ADVANCE(65); + if (lookahead == 'y') ADVANCE(66); + END_STATE(); + case 17: + if (lookahead == 'a') ADVANCE(67); + if (lookahead == 'h') ADVANCE(68); + if (lookahead == 'r') ADVANCE(69); + if (lookahead == 'y') ADVANCE(70); + END_STATE(); + case 18: + if (lookahead == 'n') ADVANCE(71); + if (lookahead == 's') ADVANCE(72); + END_STATE(); + case 19: + if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'o') ADVANCE(74); + END_STATE(); + case 20: + if (lookahead == 'h') ADVANCE(75); + if (lookahead == 'i') ADVANCE(76); + END_STATE(); + case 21: + if (lookahead == 'i') ADVANCE(77); + END_STATE(); + case 22: + if (lookahead == 's') ADVANCE(78); + END_STATE(); + case 23: + if (lookahead == 'c') ADVANCE(79); + END_STATE(); + case 24: + if (lookahead == 'y') ADVANCE(80); + END_STATE(); + case 25: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 's') ADVANCE(81); + if (lookahead == 'y') ADVANCE(82); + END_STATE(); + case 26: + if (lookahead == 'a') ADVANCE(83); + END_STATE(); + case 27: + if (lookahead == 'o') ADVANCE(84); + END_STATE(); + case 28: + if (lookahead == 'e') ADVANCE(85); + END_STATE(); + case 29: + if (lookahead == 's') ADVANCE(86); + if (lookahead == 't') ADVANCE(87); + END_STATE(); + case 30: + if (lookahead == 'a') ADVANCE(88); + END_STATE(); + case 31: + if (lookahead == 'n') ADVANCE(89); + END_STATE(); + case 32: + if (lookahead == 'b') ADVANCE(90); + if (lookahead == 'c') ADVANCE(91); + if (lookahead == 'f') ADVANCE(92); + if (lookahead == 'l') ADVANCE(93); + END_STATE(); + case 33: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 34: + if (lookahead == 's') ADVANCE(94); + END_STATE(); + case 35: + if (lookahead == 'u') ADVANCE(95); + END_STATE(); + case 36: + if (lookahead == 'p') ADVANCE(96); + if (lookahead == 't') ADVANCE(97); + END_STATE(); + case 37: + if (lookahead == 'l') ADVANCE(98); + END_STATE(); + case 38: + if (lookahead == 'n') ADVANCE(99); + END_STATE(); + case 39: + if (lookahead == 'r') ADVANCE(100); + END_STATE(); + case 40: + if (lookahead == 'o') ADVANCE(101); + END_STATE(); + case 41: + if (lookahead == 'n') ADVANCE(102); + END_STATE(); + case 42: + if (lookahead == 't') ADVANCE(103); + END_STATE(); + case 43: + if (lookahead == 'o') ADVANCE(104); + END_STATE(); + case 44: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 45: + if (lookahead == 'p') ADVANCE(105); + END_STATE(); + case 46: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'f') ADVANCE(106); + if (lookahead == 's') ADVANCE(107); + if (lookahead == 't') ADVANCE(108); + END_STATE(); + case 47: + ACCEPT_TOKEN(anon_sym_is); + END_STATE(); + case 48: + if (lookahead == 'y') ADVANCE(109); + END_STATE(); + case 49: + if (lookahead == 't') ADVANCE(110); + END_STATE(); + case 50: + if (lookahead == 't') ADVANCE(111); + END_STATE(); + case 51: + if (lookahead == 'd') ADVANCE(112); + END_STATE(); + case 52: + if (lookahead == 'm') ADVANCE(113); + END_STATE(); + case 53: + if (lookahead == 'v') ADVANCE(114); + if (lookahead == 'w') ADVANCE(115); + END_STATE(); + case 54: + if (lookahead == 'l') ADVANCE(116); + if (lookahead == 'm') ADVANCE(117); + END_STATE(); + case 55: + if (lookahead == 'j') ADVANCE(118); + END_STATE(); + case 56: + ACCEPT_TOKEN(anon_sym_of); + END_STATE(); + case 57: + if (lookahead == 'e') ADVANCE(119); + END_STATE(); + case 58: + if (lookahead == 'i') ADVANCE(120); + if (lookahead == 'o') ADVANCE(121); + END_STATE(); + case 59: + if (lookahead == 'b') ADVANCE(122); + END_STATE(); + case 60: + if (lookahead == 'a') ADVANCE(123); + if (lookahead == 'q') ADVANCE(124); + if (lookahead == 't') ADVANCE(125); + END_STATE(); + case 61: + if (lookahead == 't') ADVANCE(126); + END_STATE(); + case 62: + if (lookahead == 't') ADVANCE(127); + END_STATE(); + case 63: + if (lookahead == 'a') ADVANCE(128); + if (lookahead == 'r') ADVANCE(129); + END_STATE(); + case 64: + if (lookahead == 'p') ADVANCE(130); + END_STATE(); + case 65: + if (lookahead == 'i') ADVANCE(131); + END_STATE(); + case 66: + if (lookahead == 'm') ADVANCE(132); + END_STATE(); + case 67: + if (lookahead == 'r') ADVANCE(133); + END_STATE(); + case 68: + if (lookahead == 'i') ADVANCE(134); + if (lookahead == 'r') ADVANCE(135); + END_STATE(); + case 69: + if (lookahead == 'u') ADVANCE(136); + if (lookahead == 'y') ADVANCE(137); + END_STATE(); + case 70: + if (lookahead == 'p') ADVANCE(138); + END_STATE(); + case 71: + if (lookahead == 'd') ADVANCE(139); + if (lookahead == 'i') ADVANCE(140); + if (lookahead == 'k') ADVANCE(141); + END_STATE(); + case 72: + if (lookahead == 'i') ADVANCE(142); + END_STATE(); + case 73: + if (lookahead == 'r') ADVANCE(143); + END_STATE(); + case 74: + if (lookahead == 'i') ADVANCE(144); + END_STATE(); + case 75: + if (lookahead == 'i') ADVANCE(145); + END_STATE(); + case 76: + if (lookahead == 't') ADVANCE(146); + END_STATE(); + case 77: + if (lookahead == 'e') ADVANCE(147); + END_STATE(); + case 78: + if (lookahead == 't') ADVANCE(148); + END_STATE(); + case 79: + if (lookahead == 'e') ADVANCE(149); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_any); + END_STATE(); + case 81: + if (lookahead == 'e') ADVANCE(150); + END_STATE(); + case 82: + if (lookahead == 'n') ADVANCE(151); + END_STATE(); + case 83: + if (lookahead == 'i') ADVANCE(152); + END_STATE(); + case 84: + if (lookahead == 'l') ADVANCE(153); + END_STATE(); + case 85: + if (lookahead == 'a') ADVANCE(154); + END_STATE(); + case 86: + if (lookahead == 'e') ADVANCE(155); + END_STATE(); + case 87: + if (lookahead == 'c') ADVANCE(156); + END_STATE(); + case 88: + if (lookahead == 's') ADVANCE(157); + END_STATE(); + case 89: + if (lookahead == 's') ADVANCE(158); + if (lookahead == 't') ADVANCE(159); + END_STATE(); + case 90: + if (lookahead == 'u') ADVANCE(160); + END_STATE(); + case 91: + if (lookahead == 'l') ADVANCE(161); + END_STATE(); + case 92: + if (lookahead == 'a') ADVANCE(162); + END_STATE(); + case 93: + if (lookahead == 'e') ADVANCE(163); + END_STATE(); + case 94: + if (lookahead == 'e') ADVANCE(164); + END_STATE(); + case 95: + if (lookahead == 'm') ADVANCE(165); + END_STATE(); + case 96: + if (lookahead == 'o') ADVANCE(166); + END_STATE(); + case 97: + if (lookahead == 'e') ADVANCE(167); + END_STATE(); + case 98: + if (lookahead == 's') ADVANCE(168); + END_STATE(); + case 99: + if (lookahead == 'a') ADVANCE(169); + END_STATE(); + case 100: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 101: + if (lookahead == 'm') ADVANCE(170); + END_STATE(); + case 102: + if (lookahead == 'c') ADVANCE(171); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_get); + END_STATE(); + case 104: + if (lookahead == 'b') ADVANCE(172); + END_STATE(); + case 105: + if (lookahead == 'l') ADVANCE(173); + if (lookahead == 'o') ADVANCE(174); + END_STATE(); + case 106: + if (lookahead == 'e') ADVANCE(175); + END_STATE(); + case 107: + if (lookahead == 't') ADVANCE(176); + END_STATE(); + case 108: + if (lookahead == 'e') ADVANCE(177); + END_STATE(); + case 109: + if (lookahead == 'o') ADVANCE(178); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 111: + if (lookahead == 'a') ADVANCE(179); + END_STATE(); + case 112: + if (lookahead == 'u') ADVANCE(180); + END_STATE(); + case 113: + if (lookahead == 'e') ADVANCE(181); + END_STATE(); + case 114: + if (lookahead == 'e') ADVANCE(182); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_new); + END_STATE(); + case 116: + if (lookahead == 'l') ADVANCE(183); + END_STATE(); + case 117: + if (lookahead == 'b') ADVANCE(184); + END_STATE(); + case 118: + if (lookahead == 'e') ADVANCE(185); + END_STATE(); + case 119: + if (lookahead == 'r') ADVANCE(186); + END_STATE(); + case 120: + if (lookahead == 'v') ADVANCE(187); + END_STATE(); + case 121: + if (lookahead == 't') ADVANCE(188); + END_STATE(); + case 122: + if (lookahead == 'l') ADVANCE(189); + END_STATE(); + case 123: + if (lookahead == 'd') ADVANCE(190); + END_STATE(); + case 124: + if (lookahead == 'u') ADVANCE(191); + END_STATE(); + case 125: + if (lookahead == 'u') ADVANCE(192); + END_STATE(); + case 126: + if (lookahead == 'i') ADVANCE(193); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_set); + END_STATE(); + case 128: + if (lookahead == 't') ADVANCE(194); + END_STATE(); + case 129: + if (lookahead == 'i') ADVANCE(195); + END_STATE(); + case 130: + if (lookahead == 'e') ADVANCE(196); + END_STATE(); + case 131: + if (lookahead == 't') ADVANCE(197); + END_STATE(); + case 132: + if (lookahead == 'b') ADVANCE(198); + END_STATE(); + case 133: + if (lookahead == 'g') ADVANCE(199); + END_STATE(); + case 134: + if (lookahead == 's') ADVANCE(200); + END_STATE(); + case 135: + if (lookahead == 'o') ADVANCE(201); + END_STATE(); + case 136: + if (lookahead == 'e') ADVANCE(202); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 138: + if (lookahead == 'e') ADVANCE(203); + END_STATE(); + case 139: + if (lookahead == 'e') ADVANCE(204); + END_STATE(); + case 140: + if (lookahead == 'q') ADVANCE(205); + END_STATE(); + case 141: + if (lookahead == 'n') ADVANCE(206); + END_STATE(); + case 142: + if (lookahead == 'n') ADVANCE(207); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_var); + END_STATE(); + case 144: + if (lookahead == 'd') ADVANCE(208); + END_STATE(); + case 145: + if (lookahead == 'l') ADVANCE(209); + END_STATE(); + case 146: + if (lookahead == 'h') ADVANCE(210); + END_STATE(); + case 147: + if (lookahead == 'l') ADVANCE(211); + END_STATE(); + case 148: + if (lookahead == 'r') ADVANCE(212); + END_STATE(); + case 149: + if (lookahead == 's') ADVANCE(213); + END_STATE(); + case 150: + if (lookahead == 'r') ADVANCE(214); + END_STATE(); + case 151: + if (lookahead == 'c') ADVANCE(215); + END_STATE(); + case 152: + if (lookahead == 't') ADVANCE(216); + END_STATE(); + case 153: + if (lookahead == 'e') ADVANCE(217); + END_STATE(); + case 154: + if (lookahead == 'k') ADVANCE(218); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 156: + if (lookahead == 'h') ADVANCE(219); + END_STATE(); + case 157: + if (lookahead == 's') ADVANCE(220); + END_STATE(); + case 158: + if (lookahead == 't') ADVANCE(221); + END_STATE(); + case 159: + if (lookahead == 'i') ADVANCE(222); + END_STATE(); + case 160: + if (lookahead == 'g') ADVANCE(223); + END_STATE(); + case 161: + if (lookahead == 'a') ADVANCE(224); + END_STATE(); + case 162: + if (lookahead == 'u') ADVANCE(225); + END_STATE(); + case 163: + if (lookahead == 't') ADVANCE(226); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 166: + if (lookahead == 'r') ADVANCE(227); + END_STATE(); + case 167: + if (lookahead == 'n') ADVANCE(228); + END_STATE(); + case 168: + if (lookahead == 'e') ADVANCE(229); + END_STATE(); + case 169: + if (lookahead == 'l') ADVANCE(230); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_from); + END_STATE(); + case 171: + if (lookahead == 't') ADVANCE(231); + END_STATE(); + case 172: + if (lookahead == 'a') ADVANCE(232); + END_STATE(); + case 173: + if (lookahead == 'e') ADVANCE(233); + END_STATE(); + case 174: + if (lookahead == 'r') ADVANCE(234); + END_STATE(); + case 175: + if (lookahead == 'r') ADVANCE(235); + END_STATE(); + case 176: + if (lookahead == 'a') ADVANCE(236); + END_STATE(); + case 177: + if (lookahead == 'r') ADVANCE(237); + END_STATE(); + case 178: + if (lookahead == 'f') ADVANCE(238); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_meta); + END_STATE(); + case 180: + if (lookahead == 'l') ADVANCE(239); + END_STATE(); + case 181: + if (lookahead == 's') ADVANCE(240); + END_STATE(); + case 182: + if (lookahead == 'r') ADVANCE(241); + END_STATE(); + case 183: + ACCEPT_TOKEN(sym_null); + END_STATE(); + case 184: + if (lookahead == 'e') ADVANCE(242); + END_STATE(); + case 185: + if (lookahead == 'c') ADVANCE(243); + END_STATE(); + case 186: + if (lookahead == 'r') ADVANCE(244); + END_STATE(); + case 187: + if (lookahead == 'a') ADVANCE(245); + END_STATE(); + case 188: + if (lookahead == 'e') ADVANCE(246); + END_STATE(); + case 189: + if (lookahead == 'i') ADVANCE(247); + END_STATE(); + case 190: + if (lookahead == 'o') ADVANCE(248); + END_STATE(); + case 191: + if (lookahead == 'i') ADVANCE(249); + END_STATE(); + case 192: + if (lookahead == 'r') ADVANCE(250); + END_STATE(); + case 193: + if (lookahead == 's') ADVANCE(251); + END_STATE(); + case 194: + if (lookahead == 'i') ADVANCE(252); + END_STATE(); + case 195: + if (lookahead == 'n') ADVANCE(253); + END_STATE(); + case 196: + if (lookahead == 'r') ADVANCE(254); + END_STATE(); + case 197: + if (lookahead == 'c') ADVANCE(255); + END_STATE(); + case 198: + if (lookahead == 'o') ADVANCE(256); + END_STATE(); + case 199: + if (lookahead == 'e') ADVANCE(257); + END_STATE(); + case 200: + ACCEPT_TOKEN(sym_this); + END_STATE(); + case 201: + if (lookahead == 'w') ADVANCE(258); + END_STATE(); + case 202: + ACCEPT_TOKEN(sym_true); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'o') ADVANCE(259); + END_STATE(); + case 204: + if (lookahead == 'f') ADVANCE(260); + END_STATE(); + case 205: + if (lookahead == 'u') ADVANCE(261); + END_STATE(); + case 206: + if (lookahead == 'o') ADVANCE(262); + END_STATE(); + case 207: + if (lookahead == 'g') ADVANCE(263); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_void); + END_STATE(); + case 209: + if (lookahead == 'e') ADVANCE(264); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_with); + END_STATE(); + case 211: + if (lookahead == 'd') ADVANCE(265); + END_STATE(); + case 212: + if (lookahead == 'a') ADVANCE(266); + END_STATE(); + case 213: + if (lookahead == 's') ADVANCE(267); + END_STATE(); + case 214: + if (lookahead == 't') ADVANCE(268); + END_STATE(); + case 215: + ACCEPT_TOKEN(anon_sym_async); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_await); + END_STATE(); + case 217: + if (lookahead == 'a') ADVANCE(269); + END_STATE(); + case 218: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_catch); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 222: + if (lookahead == 'n') ADVANCE(270); + END_STATE(); + case 223: + if (lookahead == 'g') ADVANCE(271); + END_STATE(); + case 224: + if (lookahead == 'r') ADVANCE(272); + END_STATE(); + case 225: + if (lookahead == 'l') ADVANCE(273); + END_STATE(); + case 226: + if (lookahead == 'e') ADVANCE(274); + END_STATE(); + case 227: + if (lookahead == 't') ADVANCE(275); + END_STATE(); + case 228: + if (lookahead == 'd') ADVANCE(276); + END_STATE(); + case 229: + ACCEPT_TOKEN(sym_false); + END_STATE(); + case 230: + if (lookahead == 'l') ADVANCE(277); + END_STATE(); + case 231: + if (lookahead == 'i') ADVANCE(278); + END_STATE(); + case 232: + if (lookahead == 'l') ADVANCE(279); + END_STATE(); + case 233: + if (lookahead == 'm') ADVANCE(280); + END_STATE(); + case 234: + if (lookahead == 't') ADVANCE(281); + END_STATE(); + case 235: + ACCEPT_TOKEN(anon_sym_infer); + END_STATE(); + case 236: + if (lookahead == 'n') ADVANCE(282); + END_STATE(); + case 237: + if (lookahead == 'f') ADVANCE(283); + END_STATE(); + case 238: + ACCEPT_TOKEN(anon_sym_keyof); + END_STATE(); + case 239: + if (lookahead == 'e') ADVANCE(284); + END_STATE(); + case 240: + if (lookahead == 'p') ADVANCE(285); + END_STATE(); + case 241: + ACCEPT_TOKEN(anon_sym_never); + END_STATE(); + case 242: + if (lookahead == 'r') ADVANCE(286); + END_STATE(); + case 243: + if (lookahead == 't') ADVANCE(287); + END_STATE(); + case 244: + if (lookahead == 'i') ADVANCE(288); + END_STATE(); + case 245: + if (lookahead == 't') ADVANCE(289); + END_STATE(); + case 246: + if (lookahead == 'c') ADVANCE(290); + END_STATE(); + case 247: + if (lookahead == 'c') ADVANCE(291); + END_STATE(); + case 248: + if (lookahead == 'n') ADVANCE(292); + END_STATE(); + case 249: + if (lookahead == 'r') ADVANCE(293); + END_STATE(); + case 250: + if (lookahead == 'n') ADVANCE(294); + END_STATE(); + case 251: + if (lookahead == 'f') ADVANCE(295); + END_STATE(); + case 252: + if (lookahead == 'c') ADVANCE(296); + END_STATE(); + case 253: + if (lookahead == 'g') ADVANCE(297); + END_STATE(); + case 254: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 255: + if (lookahead == 'h') ADVANCE(298); + END_STATE(); + case 256: + if (lookahead == 'l') ADVANCE(299); + END_STATE(); + case 257: + if (lookahead == 't') ADVANCE(300); + END_STATE(); + case 258: + ACCEPT_TOKEN(anon_sym_throw); + END_STATE(); + case 259: + if (lookahead == 'f') ADVANCE(301); + END_STATE(); + case 260: + if (lookahead == 'i') ADVANCE(302); + END_STATE(); + case 261: + if (lookahead == 'e') ADVANCE(303); + END_STATE(); + case 262: + if (lookahead == 'w') ADVANCE(304); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_using); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 265: + ACCEPT_TOKEN(anon_sym_yield); + END_STATE(); + case 266: + if (lookahead == 'c') ADVANCE(305); + END_STATE(); + case 267: + if (lookahead == 'o') ADVANCE(306); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_assert); + if (lookahead == 's') ADVANCE(307); + END_STATE(); + case 269: + if (lookahead == 'n') ADVANCE(308); + END_STATE(); + case 270: + if (lookahead == 'u') ADVANCE(309); + END_STATE(); + case 271: + if (lookahead == 'e') ADVANCE(310); + END_STATE(); + case 272: + if (lookahead == 'e') ADVANCE(311); + END_STATE(); + case 273: + if (lookahead == 't') ADVANCE(312); + END_STATE(); + case 274: + ACCEPT_TOKEN(anon_sym_delete); + END_STATE(); + case 275: + ACCEPT_TOKEN(anon_sym_export); + END_STATE(); + case 276: + if (lookahead == 's') ADVANCE(313); + END_STATE(); + case 277: + if (lookahead == 'y') ADVANCE(314); + END_STATE(); + case 278: + if (lookahead == 'o') ADVANCE(315); + END_STATE(); + case 279: + ACCEPT_TOKEN(anon_sym_global); + END_STATE(); + case 280: + if (lookahead == 'e') ADVANCE(316); + END_STATE(); + case 281: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 282: + if (lookahead == 'c') ADVANCE(317); + END_STATE(); + case 283: + if (lookahead == 'a') ADVANCE(318); + END_STATE(); + case 284: + ACCEPT_TOKEN(anon_sym_module); + END_STATE(); + case 285: + if (lookahead == 'a') ADVANCE(319); + END_STATE(); + case 286: + ACCEPT_TOKEN(anon_sym_number); + END_STATE(); + case 287: + ACCEPT_TOKEN(anon_sym_object); + END_STATE(); + case 288: + if (lookahead == 'd') ADVANCE(320); + END_STATE(); + case 289: + if (lookahead == 'e') ADVANCE(321); + END_STATE(); + case 290: + if (lookahead == 't') ADVANCE(322); + END_STATE(); + case 291: + ACCEPT_TOKEN(anon_sym_public); + END_STATE(); + case 292: + if (lookahead == 'l') ADVANCE(323); + END_STATE(); + case 293: + if (lookahead == 'e') ADVANCE(324); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 295: + if (lookahead == 'i') ADVANCE(325); + END_STATE(); + case 296: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 297: + ACCEPT_TOKEN(anon_sym_string); + END_STATE(); + case 298: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 299: + ACCEPT_TOKEN(anon_sym_symbol); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_target); + END_STATE(); + case 301: + ACCEPT_TOKEN(anon_sym_typeof); + END_STATE(); + case 302: + if (lookahead == 'n') ADVANCE(326); + END_STATE(); + case 303: + ACCEPT_TOKEN(anon_sym_unique); + END_STATE(); + case 304: + if (lookahead == 'n') ADVANCE(327); + END_STATE(); + case 305: + if (lookahead == 't') ADVANCE(328); + END_STATE(); + case 306: + if (lookahead == 'r') ADVANCE(329); + END_STATE(); + case 307: + ACCEPT_TOKEN(anon_sym_asserts); + END_STATE(); + case 308: + ACCEPT_TOKEN(anon_sym_boolean); + END_STATE(); + case 309: + if (lookahead == 'e') ADVANCE(330); + END_STATE(); + case 310: + if (lookahead == 'r') ADVANCE(331); + END_STATE(); + case 311: + ACCEPT_TOKEN(anon_sym_declare); + END_STATE(); + case 312: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 313: + ACCEPT_TOKEN(anon_sym_extends); + END_STATE(); + case 314: + ACCEPT_TOKEN(anon_sym_finally); + END_STATE(); + case 315: + if (lookahead == 'n') ADVANCE(332); + END_STATE(); + case 316: + if (lookahead == 'n') ADVANCE(333); + END_STATE(); + case 317: + if (lookahead == 'e') ADVANCE(334); + END_STATE(); + case 318: + if (lookahead == 'c') ADVANCE(335); + END_STATE(); + case 319: + if (lookahead == 'c') ADVANCE(336); + END_STATE(); + case 320: + if (lookahead == 'e') ADVANCE(337); + END_STATE(); + case 321: + ACCEPT_TOKEN(anon_sym_private); + END_STATE(); + case 322: + if (lookahead == 'e') ADVANCE(338); + END_STATE(); + case 323: + if (lookahead == 'y') ADVANCE(339); + END_STATE(); + case 324: + ACCEPT_TOKEN(anon_sym_require); + END_STATE(); + case 325: + if (lookahead == 'e') ADVANCE(340); + END_STATE(); + case 326: + if (lookahead == 'e') ADVANCE(341); + END_STATE(); + case 327: + ACCEPT_TOKEN(anon_sym_unknown); + END_STATE(); + case 328: + ACCEPT_TOKEN(anon_sym_abstract); + END_STATE(); + case 329: + ACCEPT_TOKEN(anon_sym_accessor); + END_STATE(); + case 330: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 331: + ACCEPT_TOKEN(anon_sym_debugger); + END_STATE(); + case 332: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 333: + if (lookahead == 't') ADVANCE(342); + END_STATE(); + case 334: + if (lookahead == 'o') ADVANCE(343); + END_STATE(); + case 335: + if (lookahead == 'e') ADVANCE(344); + END_STATE(); + case 336: + if (lookahead == 'e') ADVANCE(345); + END_STATE(); + case 337: + ACCEPT_TOKEN(anon_sym_override); + END_STATE(); + case 338: + if (lookahead == 'd') ADVANCE(346); + END_STATE(); + case 339: + ACCEPT_TOKEN(anon_sym_readonly); + END_STATE(); + case 340: + if (lookahead == 's') ADVANCE(347); + END_STATE(); + case 341: + if (lookahead == 'd') ADVANCE(348); + END_STATE(); + case 342: + if (lookahead == 's') ADVANCE(349); + END_STATE(); + case 343: + if (lookahead == 'f') ADVANCE(350); + END_STATE(); + case 344: + ACCEPT_TOKEN(anon_sym_interface); + END_STATE(); + case 345: + ACCEPT_TOKEN(anon_sym_namespace); + END_STATE(); + case 346: + ACCEPT_TOKEN(anon_sym_protected); + END_STATE(); + case 347: + ACCEPT_TOKEN(anon_sym_satisfies); + END_STATE(); + case 348: + ACCEPT_TOKEN(sym_undefined); + END_STATE(); + case 349: + ACCEPT_TOKEN(anon_sym_implements); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_instanceof); + END_STATE(); + default: + return false; + } +} + +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 127, .external_lex_state = 2}, + [2] = {.lex_state = 2, .external_lex_state = 3}, + [3] = {.lex_state = 2, .external_lex_state = 3}, + [4] = {.lex_state = 127, .external_lex_state = 2}, + [5] = {.lex_state = 127, .external_lex_state = 2}, + [6] = {.lex_state = 127, .external_lex_state = 2}, + [7] = {.lex_state = 127, .external_lex_state = 2}, + [8] = {.lex_state = 127, .external_lex_state = 2}, + [9] = {.lex_state = 127, .external_lex_state = 2}, + [10] = {.lex_state = 127, .external_lex_state = 2}, + [11] = {.lex_state = 127, .external_lex_state = 2}, + [12] = {.lex_state = 127, .external_lex_state = 2}, + [13] = {.lex_state = 127, .external_lex_state = 2}, + [14] = {.lex_state = 127, .external_lex_state = 2}, + [15] = {.lex_state = 127, .external_lex_state = 2}, + [16] = {.lex_state = 127, .external_lex_state = 2}, + [17] = {.lex_state = 127, .external_lex_state = 2}, + [18] = {.lex_state = 127, .external_lex_state = 2}, + [19] = {.lex_state = 127, .external_lex_state = 2}, + [20] = {.lex_state = 127, .external_lex_state = 2}, + [21] = {.lex_state = 127, .external_lex_state = 2}, + [22] = {.lex_state = 127, .external_lex_state = 2}, + [23] = {.lex_state = 127, .external_lex_state = 2}, + [24] = {.lex_state = 127, .external_lex_state = 2}, + [25] = {.lex_state = 127, .external_lex_state = 2}, + [26] = {.lex_state = 127, .external_lex_state = 2}, + [27] = {.lex_state = 127, .external_lex_state = 2}, + [28] = {.lex_state = 127, .external_lex_state = 2}, + [29] = {.lex_state = 127, .external_lex_state = 2}, + [30] = {.lex_state = 127, .external_lex_state = 2}, + [31] = {.lex_state = 8, .external_lex_state = 2}, + [32] = {.lex_state = 127, .external_lex_state = 2}, + [33] = {.lex_state = 127, .external_lex_state = 2}, + [34] = {.lex_state = 127, .external_lex_state = 2}, + [35] = {.lex_state = 127, .external_lex_state = 2}, + [36] = {.lex_state = 127, .external_lex_state = 2}, + [37] = {.lex_state = 127, .external_lex_state = 2}, + [38] = {.lex_state = 127, .external_lex_state = 2}, + [39] = {.lex_state = 127, .external_lex_state = 2}, + [40] = {.lex_state = 127, .external_lex_state = 2}, + [41] = {.lex_state = 127, .external_lex_state = 2}, + [42] = {.lex_state = 127, .external_lex_state = 2}, + [43] = {.lex_state = 127, .external_lex_state = 2}, + [44] = {.lex_state = 127, .external_lex_state = 2}, + [45] = {.lex_state = 127, .external_lex_state = 2}, + [46] = {.lex_state = 127, .external_lex_state = 2}, + [47] = {.lex_state = 127, .external_lex_state = 2}, + [48] = {.lex_state = 127, .external_lex_state = 2}, + [49] = {.lex_state = 127, .external_lex_state = 2}, + [50] = {.lex_state = 8, .external_lex_state = 2}, + [51] = {.lex_state = 127, .external_lex_state = 2}, + [52] = {.lex_state = 127, .external_lex_state = 2}, + [53] = {.lex_state = 127, .external_lex_state = 2}, + [54] = {.lex_state = 127, .external_lex_state = 2}, + [55] = {.lex_state = 127, .external_lex_state = 2}, + [56] = {.lex_state = 127, .external_lex_state = 2}, + [57] = {.lex_state = 127, .external_lex_state = 2}, + [58] = {.lex_state = 127, .external_lex_state = 2}, + [59] = {.lex_state = 127, .external_lex_state = 2}, + [60] = {.lex_state = 127, .external_lex_state = 2}, + [61] = {.lex_state = 8, .external_lex_state = 2}, + [62] = {.lex_state = 127, .external_lex_state = 2}, + [63] = {.lex_state = 127, .external_lex_state = 2}, + [64] = {.lex_state = 8, .external_lex_state = 2}, + [65] = {.lex_state = 8, .external_lex_state = 2}, + [66] = {.lex_state = 8, .external_lex_state = 2}, + [67] = {.lex_state = 8, .external_lex_state = 2}, + [68] = {.lex_state = 8, .external_lex_state = 2}, + [69] = {.lex_state = 8, .external_lex_state = 2}, + [70] = {.lex_state = 8, .external_lex_state = 2}, + [71] = {.lex_state = 127, .external_lex_state = 2}, + [72] = {.lex_state = 127, .external_lex_state = 2}, + [73] = {.lex_state = 127, .external_lex_state = 2}, + [74] = {.lex_state = 127, .external_lex_state = 2}, + [75] = {.lex_state = 127, .external_lex_state = 2}, + [76] = {.lex_state = 127, .external_lex_state = 2}, + [77] = {.lex_state = 127, .external_lex_state = 2}, + [78] = {.lex_state = 127, .external_lex_state = 2}, + [79] = {.lex_state = 127, .external_lex_state = 2}, + [80] = {.lex_state = 127, .external_lex_state = 2}, + [81] = {.lex_state = 127, .external_lex_state = 2}, + [82] = {.lex_state = 127, .external_lex_state = 2}, + [83] = {.lex_state = 127, .external_lex_state = 2}, + [84] = {.lex_state = 127, .external_lex_state = 2}, + [85] = {.lex_state = 127, .external_lex_state = 2}, + [86] = {.lex_state = 127, .external_lex_state = 2}, + [87] = {.lex_state = 3, .external_lex_state = 4}, + [88] = {.lex_state = 3, .external_lex_state = 4}, + [89] = {.lex_state = 3, .external_lex_state = 4}, + [90] = {.lex_state = 8, .external_lex_state = 2}, + [91] = {.lex_state = 8, .external_lex_state = 2}, + [92] = {.lex_state = 3, .external_lex_state = 3}, + [93] = {.lex_state = 3, .external_lex_state = 3}, + [94] = {.lex_state = 3, .external_lex_state = 3}, + [95] = {.lex_state = 3, .external_lex_state = 3}, + [96] = {.lex_state = 3, .external_lex_state = 3}, + [97] = {.lex_state = 8, .external_lex_state = 2}, + [98] = {.lex_state = 3, .external_lex_state = 3}, + [99] = {.lex_state = 3, .external_lex_state = 3}, + [100] = {.lex_state = 3, .external_lex_state = 3}, + [101] = {.lex_state = 3, .external_lex_state = 3}, + [102] = {.lex_state = 3, .external_lex_state = 3}, + [103] = {.lex_state = 8, .external_lex_state = 2}, + [104] = {.lex_state = 3, .external_lex_state = 3}, + [105] = {.lex_state = 8, .external_lex_state = 2}, + [106] = {.lex_state = 8, .external_lex_state = 2}, + [107] = {.lex_state = 8, .external_lex_state = 2}, + [108] = {.lex_state = 3, .external_lex_state = 3}, + [109] = {.lex_state = 3, .external_lex_state = 3}, + [110] = {.lex_state = 3, .external_lex_state = 3}, + [111] = {.lex_state = 8, .external_lex_state = 2}, + [112] = {.lex_state = 3, .external_lex_state = 4}, + [113] = {.lex_state = 3, .external_lex_state = 4}, + [114] = {.lex_state = 3, .external_lex_state = 4}, + [115] = {.lex_state = 3, .external_lex_state = 4}, + [116] = {.lex_state = 3, .external_lex_state = 4}, + [117] = {.lex_state = 3, .external_lex_state = 4}, + [118] = {.lex_state = 3, .external_lex_state = 4}, + [119] = {.lex_state = 3, .external_lex_state = 3}, + [120] = {.lex_state = 3, .external_lex_state = 4}, + [121] = {.lex_state = 3, .external_lex_state = 3}, + [122] = {.lex_state = 3, .external_lex_state = 4}, + [123] = {.lex_state = 3, .external_lex_state = 3}, + [124] = {.lex_state = 3, .external_lex_state = 3}, + [125] = {.lex_state = 3, .external_lex_state = 3}, + [126] = {.lex_state = 3, .external_lex_state = 3}, + [127] = {.lex_state = 3, .external_lex_state = 3}, + [128] = {.lex_state = 3, .external_lex_state = 3}, + [129] = {.lex_state = 3, .external_lex_state = 3}, + [130] = {.lex_state = 3, .external_lex_state = 3}, + [131] = {.lex_state = 3, .external_lex_state = 3}, + [132] = {.lex_state = 3, .external_lex_state = 3}, + [133] = {.lex_state = 3, .external_lex_state = 3}, + [134] = {.lex_state = 3, .external_lex_state = 3}, + [135] = {.lex_state = 3, .external_lex_state = 4}, + [136] = {.lex_state = 3, .external_lex_state = 4}, + [137] = {.lex_state = 3, .external_lex_state = 3}, + [138] = {.lex_state = 3, .external_lex_state = 4}, + [139] = {.lex_state = 3, .external_lex_state = 3}, + [140] = {.lex_state = 3, .external_lex_state = 3}, + [141] = {.lex_state = 3, .external_lex_state = 3}, + [142] = {.lex_state = 3, .external_lex_state = 3}, + [143] = {.lex_state = 3, .external_lex_state = 3}, + [144] = {.lex_state = 3, .external_lex_state = 3}, + [145] = {.lex_state = 3, .external_lex_state = 3}, + [146] = {.lex_state = 3, .external_lex_state = 3}, + [147] = {.lex_state = 3, .external_lex_state = 3}, + [148] = {.lex_state = 3, .external_lex_state = 3}, + [149] = {.lex_state = 8, .external_lex_state = 2}, + [150] = {.lex_state = 3, .external_lex_state = 3}, + [151] = {.lex_state = 3, .external_lex_state = 3}, + [152] = {.lex_state = 3, .external_lex_state = 3}, + [153] = {.lex_state = 3, .external_lex_state = 3}, + [154] = {.lex_state = 3, .external_lex_state = 3}, + [155] = {.lex_state = 3, .external_lex_state = 3}, + [156] = {.lex_state = 3, .external_lex_state = 3}, + [157] = {.lex_state = 3, .external_lex_state = 3}, + [158] = {.lex_state = 3, .external_lex_state = 3}, + [159] = {.lex_state = 3, .external_lex_state = 3}, + [160] = {.lex_state = 3, .external_lex_state = 3}, + [161] = {.lex_state = 8, .external_lex_state = 2}, + [162] = {.lex_state = 8, .external_lex_state = 2}, + [163] = {.lex_state = 8, .external_lex_state = 2}, + [164] = {.lex_state = 8, .external_lex_state = 2}, + [165] = {.lex_state = 8, .external_lex_state = 2}, + [166] = {.lex_state = 8, .external_lex_state = 2}, + [167] = {.lex_state = 8, .external_lex_state = 2}, + [168] = {.lex_state = 8, .external_lex_state = 2}, + [169] = {.lex_state = 8, .external_lex_state = 2}, + [170] = {.lex_state = 8, .external_lex_state = 2}, + [171] = {.lex_state = 8, .external_lex_state = 2}, + [172] = {.lex_state = 8, .external_lex_state = 2}, + [173] = {.lex_state = 126, .external_lex_state = 3}, + [174] = {.lex_state = 126, .external_lex_state = 4}, + [175] = {.lex_state = 126, .external_lex_state = 4}, + [176] = {.lex_state = 126, .external_lex_state = 3}, + [177] = {.lex_state = 126, .external_lex_state = 3}, + [178] = {.lex_state = 126, .external_lex_state = 4}, + [179] = {.lex_state = 126, .external_lex_state = 3}, + [180] = {.lex_state = 126, .external_lex_state = 3}, + [181] = {.lex_state = 126, .external_lex_state = 3}, + [182] = {.lex_state = 2, .external_lex_state = 3}, + [183] = {.lex_state = 2, .external_lex_state = 4}, + [184] = {.lex_state = 2, .external_lex_state = 4}, + [185] = {.lex_state = 127, .external_lex_state = 2}, + [186] = {.lex_state = 127, .external_lex_state = 2}, + [187] = {.lex_state = 127, .external_lex_state = 2}, + [188] = {.lex_state = 2, .external_lex_state = 3}, + [189] = {.lex_state = 127, .external_lex_state = 2}, + [190] = {.lex_state = 127, .external_lex_state = 2}, + [191] = {.lex_state = 2, .external_lex_state = 3}, + [192] = {.lex_state = 127, .external_lex_state = 2}, + [193] = {.lex_state = 127, .external_lex_state = 2}, + [194] = {.lex_state = 127, .external_lex_state = 2}, + [195] = {.lex_state = 2, .external_lex_state = 3}, + [196] = {.lex_state = 2, .external_lex_state = 3}, + [197] = {.lex_state = 2, .external_lex_state = 3}, + [198] = {.lex_state = 2, .external_lex_state = 3}, + [199] = {.lex_state = 2, .external_lex_state = 4}, + [200] = {.lex_state = 2, .external_lex_state = 3}, + [201] = {.lex_state = 2, .external_lex_state = 3}, + [202] = {.lex_state = 2, .external_lex_state = 3}, + [203] = {.lex_state = 2, .external_lex_state = 3}, + [204] = {.lex_state = 127, .external_lex_state = 2}, + [205] = {.lex_state = 127, .external_lex_state = 2}, + [206] = {.lex_state = 127, .external_lex_state = 2}, + [207] = {.lex_state = 127, .external_lex_state = 2}, + [208] = {.lex_state = 127, .external_lex_state = 2}, + [209] = {.lex_state = 127, .external_lex_state = 2}, + [210] = {.lex_state = 127, .external_lex_state = 2}, + [211] = {.lex_state = 127, .external_lex_state = 2}, + [212] = {.lex_state = 127, .external_lex_state = 2}, + [213] = {.lex_state = 127, .external_lex_state = 2}, + [214] = {.lex_state = 127, .external_lex_state = 2}, + [215] = {.lex_state = 127, .external_lex_state = 2}, + [216] = {.lex_state = 127, .external_lex_state = 2}, + [217] = {.lex_state = 127, .external_lex_state = 2}, + [218] = {.lex_state = 127, .external_lex_state = 2}, + [219] = {.lex_state = 127, .external_lex_state = 2}, + [220] = {.lex_state = 127, .external_lex_state = 2}, + [221] = {.lex_state = 127, .external_lex_state = 2}, + [222] = {.lex_state = 126, .external_lex_state = 4}, + [223] = {.lex_state = 126, .external_lex_state = 4}, + [224] = {.lex_state = 127, .external_lex_state = 2}, + [225] = {.lex_state = 126, .external_lex_state = 4}, + [226] = {.lex_state = 126, .external_lex_state = 4}, + [227] = {.lex_state = 127, .external_lex_state = 2}, + [228] = {.lex_state = 126, .external_lex_state = 4}, + [229] = {.lex_state = 126, .external_lex_state = 4}, + [230] = {.lex_state = 126, .external_lex_state = 4}, + [231] = {.lex_state = 126, .external_lex_state = 4}, + [232] = {.lex_state = 126, .external_lex_state = 4}, + [233] = {.lex_state = 126, .external_lex_state = 4}, + [234] = {.lex_state = 126, .external_lex_state = 4}, + [235] = {.lex_state = 126, .external_lex_state = 4}, + [236] = {.lex_state = 126, .external_lex_state = 4}, + [237] = {.lex_state = 126, .external_lex_state = 4}, + [238] = {.lex_state = 126, .external_lex_state = 4}, + [239] = {.lex_state = 126, .external_lex_state = 4}, + [240] = {.lex_state = 126, .external_lex_state = 4}, + [241] = {.lex_state = 126, .external_lex_state = 4}, + [242] = {.lex_state = 126, .external_lex_state = 4}, + [243] = {.lex_state = 127, .external_lex_state = 5}, + [244] = {.lex_state = 126, .external_lex_state = 4}, + [245] = {.lex_state = 126, .external_lex_state = 4}, + [246] = {.lex_state = 126, .external_lex_state = 4}, + [247] = {.lex_state = 126, .external_lex_state = 4}, + [248] = {.lex_state = 126, .external_lex_state = 4}, + [249] = {.lex_state = 126, .external_lex_state = 4}, + [250] = {.lex_state = 126, .external_lex_state = 4}, + [251] = {.lex_state = 126, .external_lex_state = 4}, + [252] = {.lex_state = 126, .external_lex_state = 4}, + [253] = {.lex_state = 127, .external_lex_state = 2}, + [254] = {.lex_state = 126, .external_lex_state = 4}, + [255] = {.lex_state = 127, .external_lex_state = 2}, + [256] = {.lex_state = 127, .external_lex_state = 2}, + [257] = {.lex_state = 127, .external_lex_state = 2}, + [258] = {.lex_state = 127, .external_lex_state = 2}, + [259] = {.lex_state = 127, .external_lex_state = 2}, + [260] = {.lex_state = 127, .external_lex_state = 2}, + [261] = {.lex_state = 127, .external_lex_state = 2}, + [262] = {.lex_state = 127, .external_lex_state = 2}, + [263] = {.lex_state = 127, .external_lex_state = 2}, + [264] = {.lex_state = 127, .external_lex_state = 2}, + [265] = {.lex_state = 127, .external_lex_state = 2}, + [266] = {.lex_state = 127, .external_lex_state = 2}, + [267] = {.lex_state = 127, .external_lex_state = 2}, + [268] = {.lex_state = 127, .external_lex_state = 2}, + [269] = {.lex_state = 127, .external_lex_state = 2}, + [270] = {.lex_state = 3, .external_lex_state = 3}, + [271] = {.lex_state = 127, .external_lex_state = 2}, + [272] = {.lex_state = 127, .external_lex_state = 2}, + [273] = {.lex_state = 127, .external_lex_state = 2}, + [274] = {.lex_state = 127, .external_lex_state = 2}, + [275] = {.lex_state = 127, .external_lex_state = 2}, + [276] = {.lex_state = 127, .external_lex_state = 2}, + [277] = {.lex_state = 127, .external_lex_state = 2}, + [278] = {.lex_state = 127, .external_lex_state = 2}, + [279] = {.lex_state = 127, .external_lex_state = 2}, + [280] = {.lex_state = 3, .external_lex_state = 3}, + [281] = {.lex_state = 127, .external_lex_state = 2}, + [282] = {.lex_state = 127, .external_lex_state = 2}, + [283] = {.lex_state = 3, .external_lex_state = 3}, + [284] = {.lex_state = 3, .external_lex_state = 3}, + [285] = {.lex_state = 127, .external_lex_state = 2}, + [286] = {.lex_state = 127, .external_lex_state = 2}, + [287] = {.lex_state = 127, .external_lex_state = 2}, + [288] = {.lex_state = 127, .external_lex_state = 2}, + [289] = {.lex_state = 127, .external_lex_state = 2}, + [290] = {.lex_state = 127, .external_lex_state = 2}, + [291] = {.lex_state = 127, .external_lex_state = 2}, + [292] = {.lex_state = 127, .external_lex_state = 2}, + [293] = {.lex_state = 127, .external_lex_state = 2}, + [294] = {.lex_state = 127, .external_lex_state = 2}, + [295] = {.lex_state = 127, .external_lex_state = 2}, + [296] = {.lex_state = 127, .external_lex_state = 2}, + [297] = {.lex_state = 127, .external_lex_state = 2}, + [298] = {.lex_state = 127, .external_lex_state = 2}, + [299] = {.lex_state = 127, .external_lex_state = 2}, + [300] = {.lex_state = 127, .external_lex_state = 2}, + [301] = {.lex_state = 127, .external_lex_state = 2}, + [302] = {.lex_state = 127, .external_lex_state = 2}, + [303] = {.lex_state = 127, .external_lex_state = 2}, + [304] = {.lex_state = 127, .external_lex_state = 2}, + [305] = {.lex_state = 127, .external_lex_state = 2}, + [306] = {.lex_state = 127, .external_lex_state = 2}, + [307] = {.lex_state = 127, .external_lex_state = 2}, + [308] = {.lex_state = 127, .external_lex_state = 2}, + [309] = {.lex_state = 127, .external_lex_state = 2}, + [310] = {.lex_state = 127, .external_lex_state = 5}, + [311] = {.lex_state = 127, .external_lex_state = 2}, + [312] = {.lex_state = 127, .external_lex_state = 2}, + [313] = {.lex_state = 127, .external_lex_state = 2}, + [314] = {.lex_state = 127, .external_lex_state = 2}, + [315] = {.lex_state = 127, .external_lex_state = 2}, + [316] = {.lex_state = 127, .external_lex_state = 2}, + [317] = {.lex_state = 127, .external_lex_state = 2}, + [318] = {.lex_state = 127, .external_lex_state = 2}, + [319] = {.lex_state = 127, .external_lex_state = 2}, + [320] = {.lex_state = 127, .external_lex_state = 2}, + [321] = {.lex_state = 127, .external_lex_state = 2}, + [322] = {.lex_state = 127, .external_lex_state = 2}, + [323] = {.lex_state = 127, .external_lex_state = 2}, + [324] = {.lex_state = 127, .external_lex_state = 2}, + [325] = {.lex_state = 127, .external_lex_state = 2}, + [326] = {.lex_state = 127, .external_lex_state = 2}, + [327] = {.lex_state = 127, .external_lex_state = 2}, + [328] = {.lex_state = 127, .external_lex_state = 2}, + [329] = {.lex_state = 127, .external_lex_state = 2}, + [330] = {.lex_state = 127, .external_lex_state = 2}, + [331] = {.lex_state = 127, .external_lex_state = 2}, + [332] = {.lex_state = 127, .external_lex_state = 2}, + [333] = {.lex_state = 127, .external_lex_state = 2}, + [334] = {.lex_state = 127, .external_lex_state = 2}, + [335] = {.lex_state = 127, .external_lex_state = 2}, + [336] = {.lex_state = 127, .external_lex_state = 2}, + [337] = {.lex_state = 127, .external_lex_state = 2}, + [338] = {.lex_state = 127, .external_lex_state = 2}, + [339] = {.lex_state = 127, .external_lex_state = 2}, + [340] = {.lex_state = 127, .external_lex_state = 2}, + [341] = {.lex_state = 127, .external_lex_state = 2}, + [342] = {.lex_state = 127, .external_lex_state = 2}, + [343] = {.lex_state = 127, .external_lex_state = 2}, + [344] = {.lex_state = 127, .external_lex_state = 2}, + [345] = {.lex_state = 127, .external_lex_state = 2}, + [346] = {.lex_state = 127, .external_lex_state = 2}, + [347] = {.lex_state = 127, .external_lex_state = 2}, + [348] = {.lex_state = 127, .external_lex_state = 2}, + [349] = {.lex_state = 127, .external_lex_state = 2}, + [350] = {.lex_state = 127, .external_lex_state = 2}, + [351] = {.lex_state = 127, .external_lex_state = 2}, + [352] = {.lex_state = 127, .external_lex_state = 2}, + [353] = {.lex_state = 127, .external_lex_state = 2}, + [354] = {.lex_state = 127, .external_lex_state = 2}, + [355] = {.lex_state = 127, .external_lex_state = 2}, + [356] = {.lex_state = 127, .external_lex_state = 2}, + [357] = {.lex_state = 127, .external_lex_state = 2}, + [358] = {.lex_state = 127, .external_lex_state = 2}, + [359] = {.lex_state = 127, .external_lex_state = 2}, + [360] = {.lex_state = 127, .external_lex_state = 2}, + [361] = {.lex_state = 127, .external_lex_state = 2}, + [362] = {.lex_state = 127, .external_lex_state = 2}, + [363] = {.lex_state = 127, .external_lex_state = 2}, + [364] = {.lex_state = 127, .external_lex_state = 2}, + [365] = {.lex_state = 127, .external_lex_state = 2}, + [366] = {.lex_state = 127, .external_lex_state = 2}, + [367] = {.lex_state = 127, .external_lex_state = 2}, + [368] = {.lex_state = 127, .external_lex_state = 2}, + [369] = {.lex_state = 127, .external_lex_state = 2}, + [370] = {.lex_state = 127, .external_lex_state = 2}, + [371] = {.lex_state = 127, .external_lex_state = 2}, + [372] = {.lex_state = 127, .external_lex_state = 2}, + [373] = {.lex_state = 127, .external_lex_state = 2}, + [374] = {.lex_state = 127, .external_lex_state = 2}, + [375] = {.lex_state = 127, .external_lex_state = 2}, + [376] = {.lex_state = 127, .external_lex_state = 2}, + [377] = {.lex_state = 127, .external_lex_state = 2}, + [378] = {.lex_state = 127, .external_lex_state = 2}, + [379] = {.lex_state = 127, .external_lex_state = 2}, + [380] = {.lex_state = 127, .external_lex_state = 2}, + [381] = {.lex_state = 127, .external_lex_state = 2}, + [382] = {.lex_state = 127, .external_lex_state = 2}, + [383] = {.lex_state = 127, .external_lex_state = 2}, + [384] = {.lex_state = 127, .external_lex_state = 2}, + [385] = {.lex_state = 127, .external_lex_state = 2}, + [386] = {.lex_state = 127, .external_lex_state = 2}, + [387] = {.lex_state = 127, .external_lex_state = 2}, + [388] = {.lex_state = 127, .external_lex_state = 2}, + [389] = {.lex_state = 127, .external_lex_state = 2}, + [390] = {.lex_state = 127, .external_lex_state = 2}, + [391] = {.lex_state = 127, .external_lex_state = 2}, + [392] = {.lex_state = 127, .external_lex_state = 2}, + [393] = {.lex_state = 127, .external_lex_state = 2}, + [394] = {.lex_state = 127, .external_lex_state = 2}, + [395] = {.lex_state = 127, .external_lex_state = 2}, + [396] = {.lex_state = 127, .external_lex_state = 2}, + [397] = {.lex_state = 127, .external_lex_state = 2}, + [398] = {.lex_state = 127, .external_lex_state = 2}, + [399] = {.lex_state = 127, .external_lex_state = 2}, + [400] = {.lex_state = 127, .external_lex_state = 2}, + [401] = {.lex_state = 127, .external_lex_state = 2}, + [402] = {.lex_state = 127, .external_lex_state = 2}, + [403] = {.lex_state = 127, .external_lex_state = 2}, + [404] = {.lex_state = 127, .external_lex_state = 2}, + [405] = {.lex_state = 127, .external_lex_state = 2}, + [406] = {.lex_state = 127, .external_lex_state = 2}, + [407] = {.lex_state = 127, .external_lex_state = 2}, + [408] = {.lex_state = 127, .external_lex_state = 2}, + [409] = {.lex_state = 127, .external_lex_state = 2}, + [410] = {.lex_state = 127, .external_lex_state = 2}, + [411] = {.lex_state = 127, .external_lex_state = 2}, + [412] = {.lex_state = 127, .external_lex_state = 2}, + [413] = {.lex_state = 127, .external_lex_state = 2}, + [414] = {.lex_state = 127, .external_lex_state = 2}, + [415] = {.lex_state = 127, .external_lex_state = 2}, + [416] = {.lex_state = 127, .external_lex_state = 2}, + [417] = {.lex_state = 127, .external_lex_state = 2}, + [418] = {.lex_state = 127, .external_lex_state = 2}, + [419] = {.lex_state = 127, .external_lex_state = 2}, + [420] = {.lex_state = 127, .external_lex_state = 2}, + [421] = {.lex_state = 127, .external_lex_state = 2}, + [422] = {.lex_state = 127, .external_lex_state = 2}, + [423] = {.lex_state = 127, .external_lex_state = 2}, + [424] = {.lex_state = 127, .external_lex_state = 2}, + [425] = {.lex_state = 127, .external_lex_state = 2}, + [426] = {.lex_state = 127, .external_lex_state = 2}, + [427] = {.lex_state = 127, .external_lex_state = 2}, + [428] = {.lex_state = 127, .external_lex_state = 2}, + [429] = {.lex_state = 127, .external_lex_state = 2}, + [430] = {.lex_state = 127, .external_lex_state = 2}, + [431] = {.lex_state = 127, .external_lex_state = 2}, + [432] = {.lex_state = 127, .external_lex_state = 2}, + [433] = {.lex_state = 127, .external_lex_state = 2}, + [434] = {.lex_state = 127, .external_lex_state = 2}, + [435] = {.lex_state = 127, .external_lex_state = 2}, + [436] = {.lex_state = 127, .external_lex_state = 2}, + [437] = {.lex_state = 127, .external_lex_state = 2}, + [438] = {.lex_state = 127, .external_lex_state = 2}, + [439] = {.lex_state = 127, .external_lex_state = 2}, + [440] = {.lex_state = 127, .external_lex_state = 2}, + [441] = {.lex_state = 127, .external_lex_state = 2}, + [442] = {.lex_state = 127, .external_lex_state = 2}, + [443] = {.lex_state = 127, .external_lex_state = 2}, + [444] = {.lex_state = 127, .external_lex_state = 2}, + [445] = {.lex_state = 127, .external_lex_state = 2}, + [446] = {.lex_state = 127, .external_lex_state = 2}, + [447] = {.lex_state = 127, .external_lex_state = 2}, + [448] = {.lex_state = 127, .external_lex_state = 2}, + [449] = {.lex_state = 127, .external_lex_state = 2}, + [450] = {.lex_state = 127, .external_lex_state = 2}, + [451] = {.lex_state = 127, .external_lex_state = 2}, + [452] = {.lex_state = 127, .external_lex_state = 2}, + [453] = {.lex_state = 127, .external_lex_state = 2}, + [454] = {.lex_state = 127, .external_lex_state = 2}, + [455] = {.lex_state = 127, .external_lex_state = 2}, + [456] = {.lex_state = 127, .external_lex_state = 2}, + [457] = {.lex_state = 127, .external_lex_state = 2}, + [458] = {.lex_state = 127, .external_lex_state = 2}, + [459] = {.lex_state = 127, .external_lex_state = 2}, + [460] = {.lex_state = 127, .external_lex_state = 2}, + [461] = {.lex_state = 127, .external_lex_state = 2}, + [462] = {.lex_state = 127, .external_lex_state = 2}, + [463] = {.lex_state = 127, .external_lex_state = 2}, + [464] = {.lex_state = 127, .external_lex_state = 2}, + [465] = {.lex_state = 127, .external_lex_state = 2}, + [466] = {.lex_state = 127, .external_lex_state = 2}, + [467] = {.lex_state = 127, .external_lex_state = 2}, + [468] = {.lex_state = 127, .external_lex_state = 2}, + [469] = {.lex_state = 127, .external_lex_state = 2}, + [470] = {.lex_state = 127, .external_lex_state = 2}, + [471] = {.lex_state = 127, .external_lex_state = 2}, + [472] = {.lex_state = 127, .external_lex_state = 2}, + [473] = {.lex_state = 127, .external_lex_state = 2}, + [474] = {.lex_state = 127, .external_lex_state = 2}, + [475] = {.lex_state = 127, .external_lex_state = 2}, + [476] = {.lex_state = 127, .external_lex_state = 2}, + [477] = {.lex_state = 127, .external_lex_state = 2}, + [478] = {.lex_state = 127, .external_lex_state = 2}, + [479] = {.lex_state = 127, .external_lex_state = 2}, + [480] = {.lex_state = 127, .external_lex_state = 2}, + [481] = {.lex_state = 127, .external_lex_state = 2}, + [482] = {.lex_state = 127, .external_lex_state = 2}, + [483] = {.lex_state = 127, .external_lex_state = 2}, + [484] = {.lex_state = 127, .external_lex_state = 2}, + [485] = {.lex_state = 127, .external_lex_state = 2}, + [486] = {.lex_state = 127, .external_lex_state = 2}, + [487] = {.lex_state = 127, .external_lex_state = 2}, + [488] = {.lex_state = 127, .external_lex_state = 2}, + [489] = {.lex_state = 127, .external_lex_state = 2}, + [490] = {.lex_state = 127, .external_lex_state = 2}, + [491] = {.lex_state = 127, .external_lex_state = 2}, + [492] = {.lex_state = 127, .external_lex_state = 2}, + [493] = {.lex_state = 127, .external_lex_state = 2}, + [494] = {.lex_state = 127, .external_lex_state = 2}, + [495] = {.lex_state = 127, .external_lex_state = 2}, + [496] = {.lex_state = 127, .external_lex_state = 2}, + [497] = {.lex_state = 127, .external_lex_state = 2}, + [498] = {.lex_state = 127, .external_lex_state = 2}, + [499] = {.lex_state = 127, .external_lex_state = 2}, + [500] = {.lex_state = 127, .external_lex_state = 2}, + [501] = {.lex_state = 127, .external_lex_state = 2}, + [502] = {.lex_state = 127, .external_lex_state = 2}, + [503] = {.lex_state = 127, .external_lex_state = 2}, + [504] = {.lex_state = 127, .external_lex_state = 2}, + [505] = {.lex_state = 127, .external_lex_state = 2}, + [506] = {.lex_state = 127, .external_lex_state = 2}, + [507] = {.lex_state = 127, .external_lex_state = 2}, + [508] = {.lex_state = 127, .external_lex_state = 2}, + [509] = {.lex_state = 127, .external_lex_state = 2}, + [510] = {.lex_state = 127, .external_lex_state = 2}, + [511] = {.lex_state = 127, .external_lex_state = 2}, + [512] = {.lex_state = 127, .external_lex_state = 2}, + [513] = {.lex_state = 127, .external_lex_state = 2}, + [514] = {.lex_state = 127, .external_lex_state = 2}, + [515] = {.lex_state = 127, .external_lex_state = 2}, + [516] = {.lex_state = 127, .external_lex_state = 2}, + [517] = {.lex_state = 127, .external_lex_state = 2}, + [518] = {.lex_state = 127, .external_lex_state = 2}, + [519] = {.lex_state = 127, .external_lex_state = 2}, + [520] = {.lex_state = 127, .external_lex_state = 2}, + [521] = {.lex_state = 127, .external_lex_state = 2}, + [522] = {.lex_state = 127, .external_lex_state = 2}, + [523] = {.lex_state = 127, .external_lex_state = 2}, + [524] = {.lex_state = 127, .external_lex_state = 2}, + [525] = {.lex_state = 127, .external_lex_state = 2}, + [526] = {.lex_state = 127, .external_lex_state = 2}, + [527] = {.lex_state = 127, .external_lex_state = 2}, + [528] = {.lex_state = 127, .external_lex_state = 2}, + [529] = {.lex_state = 127, .external_lex_state = 2}, + [530] = {.lex_state = 127, .external_lex_state = 2}, + [531] = {.lex_state = 127, .external_lex_state = 2}, + [532] = {.lex_state = 127, .external_lex_state = 2}, + [533] = {.lex_state = 127, .external_lex_state = 2}, + [534] = {.lex_state = 127, .external_lex_state = 2}, + [535] = {.lex_state = 127, .external_lex_state = 2}, + [536] = {.lex_state = 127, .external_lex_state = 2}, + [537] = {.lex_state = 127, .external_lex_state = 2}, + [538] = {.lex_state = 127, .external_lex_state = 2}, + [539] = {.lex_state = 127, .external_lex_state = 2}, + [540] = {.lex_state = 127, .external_lex_state = 2}, + [541] = {.lex_state = 127, .external_lex_state = 2}, + [542] = {.lex_state = 127, .external_lex_state = 2}, + [543] = {.lex_state = 127, .external_lex_state = 2}, + [544] = {.lex_state = 127, .external_lex_state = 2}, + [545] = {.lex_state = 127, .external_lex_state = 2}, + [546] = {.lex_state = 127, .external_lex_state = 2}, + [547] = {.lex_state = 127, .external_lex_state = 2}, + [548] = {.lex_state = 127, .external_lex_state = 2}, + [549] = {.lex_state = 127, .external_lex_state = 2}, + [550] = {.lex_state = 127, .external_lex_state = 2}, + [551] = {.lex_state = 127, .external_lex_state = 2}, + [552] = {.lex_state = 127, .external_lex_state = 2}, + [553] = {.lex_state = 127, .external_lex_state = 2}, + [554] = {.lex_state = 127, .external_lex_state = 2}, + [555] = {.lex_state = 127, .external_lex_state = 2}, + [556] = {.lex_state = 127, .external_lex_state = 2}, + [557] = {.lex_state = 127, .external_lex_state = 2}, + [558] = {.lex_state = 127, .external_lex_state = 2}, + [559] = {.lex_state = 127, .external_lex_state = 2}, + [560] = {.lex_state = 127, .external_lex_state = 2}, + [561] = {.lex_state = 127, .external_lex_state = 2}, + [562] = {.lex_state = 127, .external_lex_state = 2}, + [563] = {.lex_state = 127, .external_lex_state = 2}, + [564] = {.lex_state = 127, .external_lex_state = 2}, + [565] = {.lex_state = 127, .external_lex_state = 2}, + [566] = {.lex_state = 127, .external_lex_state = 2}, + [567] = {.lex_state = 127, .external_lex_state = 2}, + [568] = {.lex_state = 127, .external_lex_state = 2}, + [569] = {.lex_state = 127, .external_lex_state = 2}, + [570] = {.lex_state = 127, .external_lex_state = 2}, + [571] = {.lex_state = 127, .external_lex_state = 2}, + [572] = {.lex_state = 127, .external_lex_state = 2}, + [573] = {.lex_state = 127, .external_lex_state = 2}, + [574] = {.lex_state = 127, .external_lex_state = 2}, + [575] = {.lex_state = 127, .external_lex_state = 2}, + [576] = {.lex_state = 127, .external_lex_state = 2}, + [577] = {.lex_state = 127, .external_lex_state = 2}, + [578] = {.lex_state = 127, .external_lex_state = 2}, + [579] = {.lex_state = 127, .external_lex_state = 2}, + [580] = {.lex_state = 127, .external_lex_state = 2}, + [581] = {.lex_state = 127, .external_lex_state = 2}, + [582] = {.lex_state = 127, .external_lex_state = 2}, + [583] = {.lex_state = 127, .external_lex_state = 2}, + [584] = {.lex_state = 127, .external_lex_state = 2}, + [585] = {.lex_state = 127, .external_lex_state = 2}, + [586] = {.lex_state = 127, .external_lex_state = 2}, + [587] = {.lex_state = 127, .external_lex_state = 2}, + [588] = {.lex_state = 127, .external_lex_state = 2}, + [589] = {.lex_state = 127, .external_lex_state = 2}, + [590] = {.lex_state = 127, .external_lex_state = 2}, + [591] = {.lex_state = 127, .external_lex_state = 2}, + [592] = {.lex_state = 127, .external_lex_state = 2}, + [593] = {.lex_state = 127, .external_lex_state = 2}, + [594] = {.lex_state = 127, .external_lex_state = 2}, + [595] = {.lex_state = 127, .external_lex_state = 2}, + [596] = {.lex_state = 127, .external_lex_state = 2}, + [597] = {.lex_state = 127, .external_lex_state = 2}, + [598] = {.lex_state = 127, .external_lex_state = 2}, + [599] = {.lex_state = 127, .external_lex_state = 2}, + [600] = {.lex_state = 127, .external_lex_state = 2}, + [601] = {.lex_state = 127, .external_lex_state = 2}, + [602] = {.lex_state = 127, .external_lex_state = 2}, + [603] = {.lex_state = 127, .external_lex_state = 2}, + [604] = {.lex_state = 127, .external_lex_state = 2}, + [605] = {.lex_state = 127, .external_lex_state = 2}, + [606] = {.lex_state = 127, .external_lex_state = 2}, + [607] = {.lex_state = 127, .external_lex_state = 2}, + [608] = {.lex_state = 127, .external_lex_state = 2}, + [609] = {.lex_state = 127, .external_lex_state = 2}, + [610] = {.lex_state = 127, .external_lex_state = 2}, + [611] = {.lex_state = 127, .external_lex_state = 2}, + [612] = {.lex_state = 127, .external_lex_state = 2}, + [613] = {.lex_state = 127, .external_lex_state = 2}, + [614] = {.lex_state = 127, .external_lex_state = 2}, + [615] = {.lex_state = 127, .external_lex_state = 2}, + [616] = {.lex_state = 127, .external_lex_state = 2}, + [617] = {.lex_state = 127, .external_lex_state = 2}, + [618] = {.lex_state = 127, .external_lex_state = 2}, + [619] = {.lex_state = 127, .external_lex_state = 2}, + [620] = {.lex_state = 127, .external_lex_state = 2}, + [621] = {.lex_state = 127, .external_lex_state = 2}, + [622] = {.lex_state = 127, .external_lex_state = 2}, + [623] = {.lex_state = 127, .external_lex_state = 2}, + [624] = {.lex_state = 127, .external_lex_state = 2}, + [625] = {.lex_state = 127, .external_lex_state = 2}, + [626] = {.lex_state = 127, .external_lex_state = 2}, + [627] = {.lex_state = 127, .external_lex_state = 2}, + [628] = {.lex_state = 127, .external_lex_state = 2}, + [629] = {.lex_state = 127, .external_lex_state = 2}, + [630] = {.lex_state = 127, .external_lex_state = 2}, + [631] = {.lex_state = 127, .external_lex_state = 2}, + [632] = {.lex_state = 127, .external_lex_state = 2}, + [633] = {.lex_state = 127, .external_lex_state = 2}, + [634] = {.lex_state = 127, .external_lex_state = 2}, + [635] = {.lex_state = 127, .external_lex_state = 2}, + [636] = {.lex_state = 127, .external_lex_state = 2}, + [637] = {.lex_state = 127, .external_lex_state = 2}, + [638] = {.lex_state = 127, .external_lex_state = 2}, + [639] = {.lex_state = 127, .external_lex_state = 2}, + [640] = {.lex_state = 127, .external_lex_state = 2}, + [641] = {.lex_state = 127, .external_lex_state = 2}, + [642] = {.lex_state = 127, .external_lex_state = 2}, + [643] = {.lex_state = 127, .external_lex_state = 2}, + [644] = {.lex_state = 127, .external_lex_state = 2}, + [645] = {.lex_state = 127, .external_lex_state = 2}, + [646] = {.lex_state = 127, .external_lex_state = 2}, + [647] = {.lex_state = 127, .external_lex_state = 2}, + [648] = {.lex_state = 127, .external_lex_state = 2}, + [649] = {.lex_state = 127, .external_lex_state = 2}, + [650] = {.lex_state = 127, .external_lex_state = 2}, + [651] = {.lex_state = 127, .external_lex_state = 2}, + [652] = {.lex_state = 127, .external_lex_state = 2}, + [653] = {.lex_state = 127, .external_lex_state = 2}, + [654] = {.lex_state = 127, .external_lex_state = 2}, + [655] = {.lex_state = 127, .external_lex_state = 2}, + [656] = {.lex_state = 127, .external_lex_state = 2}, + [657] = {.lex_state = 127, .external_lex_state = 2}, + [658] = {.lex_state = 3, .external_lex_state = 4}, + [659] = {.lex_state = 3, .external_lex_state = 4}, + [660] = {.lex_state = 3, .external_lex_state = 4}, + [661] = {.lex_state = 2, .external_lex_state = 4}, + [662] = {.lex_state = 2, .external_lex_state = 4}, + [663] = {.lex_state = 2, .external_lex_state = 4}, + [664] = {.lex_state = 2, .external_lex_state = 4}, + [665] = {.lex_state = 2, .external_lex_state = 4}, + [666] = {.lex_state = 2, .external_lex_state = 4}, + [667] = {.lex_state = 3, .external_lex_state = 4}, + [668] = {.lex_state = 3, .external_lex_state = 4}, + [669] = {.lex_state = 3, .external_lex_state = 4}, + [670] = {.lex_state = 2, .external_lex_state = 4}, + [671] = {.lex_state = 2, .external_lex_state = 4}, + [672] = {.lex_state = 2, .external_lex_state = 4}, + [673] = {.lex_state = 2, .external_lex_state = 4}, + [674] = {.lex_state = 2, .external_lex_state = 4}, + [675] = {.lex_state = 2, .external_lex_state = 4}, + [676] = {.lex_state = 2, .external_lex_state = 4}, + [677] = {.lex_state = 2, .external_lex_state = 4}, + [678] = {.lex_state = 2, .external_lex_state = 4}, + [679] = {.lex_state = 2, .external_lex_state = 4}, + [680] = {.lex_state = 127, .external_lex_state = 2}, + [681] = {.lex_state = 2, .external_lex_state = 4}, + [682] = {.lex_state = 2, .external_lex_state = 4}, + [683] = {.lex_state = 127, .external_lex_state = 2}, + [684] = {.lex_state = 127, .external_lex_state = 2}, + [685] = {.lex_state = 127, .external_lex_state = 2}, + [686] = {.lex_state = 127, .external_lex_state = 2}, + [687] = {.lex_state = 127, .external_lex_state = 2}, + [688] = {.lex_state = 127, .external_lex_state = 2}, + [689] = {.lex_state = 2, .external_lex_state = 4}, + [690] = {.lex_state = 2, .external_lex_state = 4}, + [691] = {.lex_state = 2, .external_lex_state = 4}, + [692] = {.lex_state = 2, .external_lex_state = 4}, + [693] = {.lex_state = 2, .external_lex_state = 4}, + [694] = {.lex_state = 2, .external_lex_state = 4}, + [695] = {.lex_state = 2, .external_lex_state = 4}, + [696] = {.lex_state = 2, .external_lex_state = 4}, + [697] = {.lex_state = 2, .external_lex_state = 4}, + [698] = {.lex_state = 2, .external_lex_state = 3}, + [699] = {.lex_state = 2, .external_lex_state = 3}, + [700] = {.lex_state = 2, .external_lex_state = 3}, + [701] = {.lex_state = 2, .external_lex_state = 3}, + [702] = {.lex_state = 2, .external_lex_state = 3}, + [703] = {.lex_state = 2, .external_lex_state = 4}, + [704] = {.lex_state = 2, .external_lex_state = 4}, + [705] = {.lex_state = 2, .external_lex_state = 3}, + [706] = {.lex_state = 2, .external_lex_state = 4}, + [707] = {.lex_state = 2, .external_lex_state = 4}, + [708] = {.lex_state = 2, .external_lex_state = 4}, + [709] = {.lex_state = 2, .external_lex_state = 4}, + [710] = {.lex_state = 2, .external_lex_state = 4}, + [711] = {.lex_state = 3, .external_lex_state = 3}, + [712] = {.lex_state = 2, .external_lex_state = 3}, + [713] = {.lex_state = 3, .external_lex_state = 3}, + [714] = {.lex_state = 2, .external_lex_state = 3}, + [715] = {.lex_state = 2, .external_lex_state = 3}, + [716] = {.lex_state = 127, .external_lex_state = 2}, + [717] = {.lex_state = 2, .external_lex_state = 4}, + [718] = {.lex_state = 2, .external_lex_state = 3}, + [719] = {.lex_state = 2, .external_lex_state = 3}, + [720] = {.lex_state = 127, .external_lex_state = 5}, + [721] = {.lex_state = 2, .external_lex_state = 3}, + [722] = {.lex_state = 2, .external_lex_state = 4}, + [723] = {.lex_state = 2, .external_lex_state = 4}, + [724] = {.lex_state = 2, .external_lex_state = 4}, + [725] = {.lex_state = 2, .external_lex_state = 4}, + [726] = {.lex_state = 2, .external_lex_state = 3}, + [727] = {.lex_state = 127, .external_lex_state = 5}, + [728] = {.lex_state = 2, .external_lex_state = 3}, + [729] = {.lex_state = 2, .external_lex_state = 3}, + [730] = {.lex_state = 2, .external_lex_state = 3}, + [731] = {.lex_state = 127, .external_lex_state = 2}, + [732] = {.lex_state = 127, .external_lex_state = 5}, + [733] = {.lex_state = 127, .external_lex_state = 5}, + [734] = {.lex_state = 127, .external_lex_state = 2}, + [735] = {.lex_state = 127, .external_lex_state = 5}, + [736] = {.lex_state = 2, .external_lex_state = 3}, + [737] = {.lex_state = 127, .external_lex_state = 5}, + [738] = {.lex_state = 2, .external_lex_state = 3}, + [739] = {.lex_state = 127, .external_lex_state = 5}, + [740] = {.lex_state = 127, .external_lex_state = 5}, + [741] = {.lex_state = 2, .external_lex_state = 3}, + [742] = {.lex_state = 2, .external_lex_state = 3}, + [743] = {.lex_state = 2, .external_lex_state = 3}, + [744] = {.lex_state = 127, .external_lex_state = 2}, + [745] = {.lex_state = 2, .external_lex_state = 3}, + [746] = {.lex_state = 2, .external_lex_state = 3}, + [747] = {.lex_state = 2, .external_lex_state = 3}, + [748] = {.lex_state = 2, .external_lex_state = 3}, + [749] = {.lex_state = 2, .external_lex_state = 3}, + [750] = {.lex_state = 2, .external_lex_state = 3}, + [751] = {.lex_state = 2, .external_lex_state = 3}, + [752] = {.lex_state = 127, .external_lex_state = 2}, + [753] = {.lex_state = 2, .external_lex_state = 3}, + [754] = {.lex_state = 127, .external_lex_state = 2}, + [755] = {.lex_state = 127, .external_lex_state = 5}, + [756] = {.lex_state = 127, .external_lex_state = 5}, + [757] = {.lex_state = 9, .external_lex_state = 2}, + [758] = {.lex_state = 9, .external_lex_state = 2}, + [759] = {.lex_state = 127, .external_lex_state = 2}, + [760] = {.lex_state = 127, .external_lex_state = 2}, + [761] = {.lex_state = 127, .external_lex_state = 5}, + [762] = {.lex_state = 127, .external_lex_state = 5}, + [763] = {.lex_state = 127, .external_lex_state = 5}, + [764] = {.lex_state = 127, .external_lex_state = 5}, + [765] = {.lex_state = 127, .external_lex_state = 2}, + [766] = {.lex_state = 9, .external_lex_state = 2}, + [767] = {.lex_state = 127, .external_lex_state = 2}, + [768] = {.lex_state = 127, .external_lex_state = 5}, + [769] = {.lex_state = 127, .external_lex_state = 2}, + [770] = {.lex_state = 127, .external_lex_state = 5}, + [771] = {.lex_state = 127, .external_lex_state = 2}, + [772] = {.lex_state = 127, .external_lex_state = 5}, + [773] = {.lex_state = 127, .external_lex_state = 5}, + [774] = {.lex_state = 9, .external_lex_state = 2}, + [775] = {.lex_state = 127, .external_lex_state = 5}, + [776] = {.lex_state = 127, .external_lex_state = 5}, + [777] = {.lex_state = 127, .external_lex_state = 2}, + [778] = {.lex_state = 127, .external_lex_state = 5}, + [779] = {.lex_state = 9, .external_lex_state = 2}, + [780] = {.lex_state = 127, .external_lex_state = 5}, + [781] = {.lex_state = 127, .external_lex_state = 5}, + [782] = {.lex_state = 127, .external_lex_state = 2}, + [783] = {.lex_state = 127, .external_lex_state = 2}, + [784] = {.lex_state = 127, .external_lex_state = 2}, + [785] = {.lex_state = 127, .external_lex_state = 2}, + [786] = {.lex_state = 127, .external_lex_state = 2}, + [787] = {.lex_state = 127, .external_lex_state = 2}, + [788] = {.lex_state = 127, .external_lex_state = 2}, + [789] = {.lex_state = 127, .external_lex_state = 2}, + [790] = {.lex_state = 127, .external_lex_state = 2}, + [791] = {.lex_state = 127, .external_lex_state = 2}, + [792] = {.lex_state = 127, .external_lex_state = 2}, + [793] = {.lex_state = 127, .external_lex_state = 2}, + [794] = {.lex_state = 9, .external_lex_state = 2}, + [795] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 127, .external_lex_state = 2}, + [797] = {.lex_state = 127, .external_lex_state = 2}, + [798] = {.lex_state = 127, .external_lex_state = 2}, + [799] = {.lex_state = 127, .external_lex_state = 2}, + [800] = {.lex_state = 9, .external_lex_state = 2}, + [801] = {.lex_state = 9, .external_lex_state = 2}, + [802] = {.lex_state = 127, .external_lex_state = 2}, + [803] = {.lex_state = 127, .external_lex_state = 2}, + [804] = {.lex_state = 127, .external_lex_state = 2}, + [805] = {.lex_state = 9, .external_lex_state = 2}, + [806] = {.lex_state = 9, .external_lex_state = 2}, + [807] = {.lex_state = 127, .external_lex_state = 2}, + [808] = {.lex_state = 127, .external_lex_state = 2}, + [809] = {.lex_state = 127, .external_lex_state = 2}, + [810] = {.lex_state = 127, .external_lex_state = 2}, + [811] = {.lex_state = 127, .external_lex_state = 2}, + [812] = {.lex_state = 127, .external_lex_state = 2}, + [813] = {.lex_state = 127, .external_lex_state = 2}, + [814] = {.lex_state = 9, .external_lex_state = 2}, + [815] = {.lex_state = 127, .external_lex_state = 2}, + [816] = {.lex_state = 127, .external_lex_state = 2}, + [817] = {.lex_state = 127, .external_lex_state = 2}, + [818] = {.lex_state = 127, .external_lex_state = 2}, + [819] = {.lex_state = 127, .external_lex_state = 2}, + [820] = {.lex_state = 127, .external_lex_state = 2}, + [821] = {.lex_state = 127, .external_lex_state = 2}, + [822] = {.lex_state = 127, .external_lex_state = 2}, + [823] = {.lex_state = 127, .external_lex_state = 2}, + [824] = {.lex_state = 127, .external_lex_state = 2}, + [825] = {.lex_state = 127, .external_lex_state = 2}, + [826] = {.lex_state = 127, .external_lex_state = 2}, + [827] = {.lex_state = 127, .external_lex_state = 2}, + [828] = {.lex_state = 127, .external_lex_state = 2}, + [829] = {.lex_state = 127, .external_lex_state = 2}, + [830] = {.lex_state = 127, .external_lex_state = 2}, + [831] = {.lex_state = 127, .external_lex_state = 2}, + [832] = {.lex_state = 127, .external_lex_state = 2}, + [833] = {.lex_state = 127, .external_lex_state = 2}, + [834] = {.lex_state = 127, .external_lex_state = 2}, + [835] = {.lex_state = 127, .external_lex_state = 2}, + [836] = {.lex_state = 127, .external_lex_state = 2}, + [837] = {.lex_state = 127, .external_lex_state = 2}, + [838] = {.lex_state = 127, .external_lex_state = 2}, + [839] = {.lex_state = 127, .external_lex_state = 2}, + [840] = {.lex_state = 127, .external_lex_state = 2}, + [841] = {.lex_state = 127, .external_lex_state = 2}, + [842] = {.lex_state = 127, .external_lex_state = 2}, + [843] = {.lex_state = 127, .external_lex_state = 2}, + [844] = {.lex_state = 127, .external_lex_state = 2}, + [845] = {.lex_state = 127, .external_lex_state = 2}, + [846] = {.lex_state = 127, .external_lex_state = 2}, + [847] = {.lex_state = 127, .external_lex_state = 2}, + [848] = {.lex_state = 127, .external_lex_state = 2}, + [849] = {.lex_state = 127, .external_lex_state = 2}, + [850] = {.lex_state = 127, .external_lex_state = 2}, + [851] = {.lex_state = 9, .external_lex_state = 2}, + [852] = {.lex_state = 127, .external_lex_state = 2}, + [853] = {.lex_state = 127, .external_lex_state = 2}, + [854] = {.lex_state = 127, .external_lex_state = 2}, + [855] = {.lex_state = 127, .external_lex_state = 2}, + [856] = {.lex_state = 127, .external_lex_state = 2}, + [857] = {.lex_state = 127, .external_lex_state = 2}, + [858] = {.lex_state = 127, .external_lex_state = 2}, + [859] = {.lex_state = 127, .external_lex_state = 2}, + [860] = {.lex_state = 127, .external_lex_state = 2}, + [861] = {.lex_state = 127, .external_lex_state = 2}, + [862] = {.lex_state = 127, .external_lex_state = 2}, + [863] = {.lex_state = 127, .external_lex_state = 2}, + [864] = {.lex_state = 127, .external_lex_state = 2}, + [865] = {.lex_state = 127, .external_lex_state = 2}, + [866] = {.lex_state = 127, .external_lex_state = 2}, + [867] = {.lex_state = 127, .external_lex_state = 2}, + [868] = {.lex_state = 127, .external_lex_state = 2}, + [869] = {.lex_state = 127, .external_lex_state = 2}, + [870] = {.lex_state = 127, .external_lex_state = 2}, + [871] = {.lex_state = 127, .external_lex_state = 2}, + [872] = {.lex_state = 127, .external_lex_state = 2}, + [873] = {.lex_state = 127, .external_lex_state = 2}, + [874] = {.lex_state = 127, .external_lex_state = 2}, + [875] = {.lex_state = 127, .external_lex_state = 2}, + [876] = {.lex_state = 127, .external_lex_state = 2}, + [877] = {.lex_state = 127, .external_lex_state = 2}, + [878] = {.lex_state = 127, .external_lex_state = 2}, + [879] = {.lex_state = 127, .external_lex_state = 2}, + [880] = {.lex_state = 127, .external_lex_state = 2}, + [881] = {.lex_state = 127, .external_lex_state = 2}, + [882] = {.lex_state = 127, .external_lex_state = 2}, + [883] = {.lex_state = 127, .external_lex_state = 2}, + [884] = {.lex_state = 127, .external_lex_state = 2}, + [885] = {.lex_state = 127, .external_lex_state = 2}, + [886] = {.lex_state = 127, .external_lex_state = 2}, + [887] = {.lex_state = 127, .external_lex_state = 2}, + [888] = {.lex_state = 127, .external_lex_state = 2}, + [889] = {.lex_state = 127, .external_lex_state = 2}, + [890] = {.lex_state = 127, .external_lex_state = 2}, + [891] = {.lex_state = 127, .external_lex_state = 2}, + [892] = {.lex_state = 127, .external_lex_state = 2}, + [893] = {.lex_state = 127, .external_lex_state = 2}, + [894] = {.lex_state = 127, .external_lex_state = 2}, + [895] = {.lex_state = 127, .external_lex_state = 2}, + [896] = {.lex_state = 127, .external_lex_state = 2}, + [897] = {.lex_state = 127, .external_lex_state = 2}, + [898] = {.lex_state = 127, .external_lex_state = 2}, + [899] = {.lex_state = 127, .external_lex_state = 2}, + [900] = {.lex_state = 127, .external_lex_state = 2}, + [901] = {.lex_state = 127, .external_lex_state = 2}, + [902] = {.lex_state = 127, .external_lex_state = 2}, + [903] = {.lex_state = 127, .external_lex_state = 2}, + [904] = {.lex_state = 127, .external_lex_state = 2}, + [905] = {.lex_state = 127, .external_lex_state = 2}, + [906] = {.lex_state = 127, .external_lex_state = 2}, + [907] = {.lex_state = 127, .external_lex_state = 2}, + [908] = {.lex_state = 127, .external_lex_state = 2}, + [909] = {.lex_state = 9, .external_lex_state = 2}, + [910] = {.lex_state = 127, .external_lex_state = 2}, + [911] = {.lex_state = 9, .external_lex_state = 2}, + [912] = {.lex_state = 127, .external_lex_state = 2}, + [913] = {.lex_state = 127, .external_lex_state = 2}, + [914] = {.lex_state = 127, .external_lex_state = 2}, + [915] = {.lex_state = 127, .external_lex_state = 2}, + [916] = {.lex_state = 9, .external_lex_state = 2}, + [917] = {.lex_state = 9, .external_lex_state = 2}, + [918] = {.lex_state = 9, .external_lex_state = 2}, + [919] = {.lex_state = 127, .external_lex_state = 2}, + [920] = {.lex_state = 9, .external_lex_state = 2}, + [921] = {.lex_state = 9, .external_lex_state = 2}, + [922] = {.lex_state = 9, .external_lex_state = 2}, + [923] = {.lex_state = 9, .external_lex_state = 2}, + [924] = {.lex_state = 9, .external_lex_state = 2}, + [925] = {.lex_state = 9, .external_lex_state = 2}, + [926] = {.lex_state = 9, .external_lex_state = 2}, + [927] = {.lex_state = 127, .external_lex_state = 2}, + [928] = {.lex_state = 9, .external_lex_state = 2}, + [929] = {.lex_state = 127, .external_lex_state = 2}, + [930] = {.lex_state = 127, .external_lex_state = 2}, + [931] = {.lex_state = 127, .external_lex_state = 2}, + [932] = {.lex_state = 127, .external_lex_state = 2}, + [933] = {.lex_state = 9, .external_lex_state = 2}, + [934] = {.lex_state = 127, .external_lex_state = 2}, + [935] = {.lex_state = 127, .external_lex_state = 2}, + [936] = {.lex_state = 127, .external_lex_state = 2}, + [937] = {.lex_state = 127, .external_lex_state = 2}, + [938] = {.lex_state = 9, .external_lex_state = 2}, + [939] = {.lex_state = 127, .external_lex_state = 2}, + [940] = {.lex_state = 127, .external_lex_state = 2}, + [941] = {.lex_state = 9, .external_lex_state = 2}, + [942] = {.lex_state = 9, .external_lex_state = 2}, + [943] = {.lex_state = 9, .external_lex_state = 2}, + [944] = {.lex_state = 127, .external_lex_state = 2}, + [945] = {.lex_state = 9, .external_lex_state = 2}, + [946] = {.lex_state = 9, .external_lex_state = 2}, + [947] = {.lex_state = 127, .external_lex_state = 2}, + [948] = {.lex_state = 9, .external_lex_state = 2}, + [949] = {.lex_state = 9, .external_lex_state = 2}, + [950] = {.lex_state = 9, .external_lex_state = 2}, + [951] = {.lex_state = 9, .external_lex_state = 2}, + [952] = {.lex_state = 7, .external_lex_state = 2}, + [953] = {.lex_state = 9, .external_lex_state = 2}, + [954] = {.lex_state = 9, .external_lex_state = 2}, + [955] = {.lex_state = 9, .external_lex_state = 2}, + [956] = {.lex_state = 9, .external_lex_state = 2}, + [957] = {.lex_state = 7, .external_lex_state = 2}, + [958] = {.lex_state = 9, .external_lex_state = 2}, + [959] = {.lex_state = 7, .external_lex_state = 2}, + [960] = {.lex_state = 9, .external_lex_state = 2}, + [961] = {.lex_state = 9, .external_lex_state = 2}, + [962] = {.lex_state = 9, .external_lex_state = 2}, + [963] = {.lex_state = 11, .external_lex_state = 2}, + [964] = {.lex_state = 9, .external_lex_state = 2}, + [965] = {.lex_state = 9, .external_lex_state = 2}, + [966] = {.lex_state = 9, .external_lex_state = 2}, + [967] = {.lex_state = 9, .external_lex_state = 2}, + [968] = {.lex_state = 9, .external_lex_state = 2}, + [969] = {.lex_state = 9, .external_lex_state = 2}, + [970] = {.lex_state = 9, .external_lex_state = 2}, + [971] = {.lex_state = 9, .external_lex_state = 2}, + [972] = {.lex_state = 9, .external_lex_state = 2}, + [973] = {.lex_state = 9, .external_lex_state = 2}, + [974] = {.lex_state = 9, .external_lex_state = 2}, + [975] = {.lex_state = 9, .external_lex_state = 2}, + [976] = {.lex_state = 9, .external_lex_state = 2}, + [977] = {.lex_state = 9, .external_lex_state = 2}, + [978] = {.lex_state = 9, .external_lex_state = 2}, + [979] = {.lex_state = 9, .external_lex_state = 2}, + [980] = {.lex_state = 9, .external_lex_state = 2}, + [981] = {.lex_state = 9, .external_lex_state = 2}, + [982] = {.lex_state = 9, .external_lex_state = 2}, + [983] = {.lex_state = 9, .external_lex_state = 2}, + [984] = {.lex_state = 9, .external_lex_state = 2}, + [985] = {.lex_state = 9, .external_lex_state = 2}, + [986] = {.lex_state = 9, .external_lex_state = 2}, + [987] = {.lex_state = 9, .external_lex_state = 2}, + [988] = {.lex_state = 9, .external_lex_state = 2}, + [989] = {.lex_state = 9, .external_lex_state = 2}, + [990] = {.lex_state = 9, .external_lex_state = 2}, + [991] = {.lex_state = 9, .external_lex_state = 2}, + [992] = {.lex_state = 9, .external_lex_state = 2}, + [993] = {.lex_state = 9, .external_lex_state = 2}, + [994] = {.lex_state = 9, .external_lex_state = 2}, + [995] = {.lex_state = 9, .external_lex_state = 2}, + [996] = {.lex_state = 9, .external_lex_state = 2}, + [997] = {.lex_state = 9, .external_lex_state = 2}, + [998] = {.lex_state = 9, .external_lex_state = 2}, + [999] = {.lex_state = 9, .external_lex_state = 2}, + [1000] = {.lex_state = 9, .external_lex_state = 2}, + [1001] = {.lex_state = 9, .external_lex_state = 2}, + [1002] = {.lex_state = 9, .external_lex_state = 2}, + [1003] = {.lex_state = 9, .external_lex_state = 2}, + [1004] = {.lex_state = 9, .external_lex_state = 2}, + [1005] = {.lex_state = 9, .external_lex_state = 2}, + [1006] = {.lex_state = 9, .external_lex_state = 2}, + [1007] = {.lex_state = 9, .external_lex_state = 2}, + [1008] = {.lex_state = 9, .external_lex_state = 2}, + [1009] = {.lex_state = 9, .external_lex_state = 2}, + [1010] = {.lex_state = 9, .external_lex_state = 2}, + [1011] = {.lex_state = 9, .external_lex_state = 2}, + [1012] = {.lex_state = 9, .external_lex_state = 2}, + [1013] = {.lex_state = 9, .external_lex_state = 2}, + [1014] = {.lex_state = 9, .external_lex_state = 2}, + [1015] = {.lex_state = 9, .external_lex_state = 2}, + [1016] = {.lex_state = 9, .external_lex_state = 2}, + [1017] = {.lex_state = 9, .external_lex_state = 2}, + [1018] = {.lex_state = 9, .external_lex_state = 2}, + [1019] = {.lex_state = 9, .external_lex_state = 2}, + [1020] = {.lex_state = 9, .external_lex_state = 2}, + [1021] = {.lex_state = 9, .external_lex_state = 2}, + [1022] = {.lex_state = 9, .external_lex_state = 2}, + [1023] = {.lex_state = 9, .external_lex_state = 2}, + [1024] = {.lex_state = 9, .external_lex_state = 2}, + [1025] = {.lex_state = 9, .external_lex_state = 2}, + [1026] = {.lex_state = 9, .external_lex_state = 2}, + [1027] = {.lex_state = 9, .external_lex_state = 2}, + [1028] = {.lex_state = 9, .external_lex_state = 2}, + [1029] = {.lex_state = 9, .external_lex_state = 2}, + [1030] = {.lex_state = 9, .external_lex_state = 2}, + [1031] = {.lex_state = 9, .external_lex_state = 2}, + [1032] = {.lex_state = 9, .external_lex_state = 2}, + [1033] = {.lex_state = 9, .external_lex_state = 2}, + [1034] = {.lex_state = 9, .external_lex_state = 2}, + [1035] = {.lex_state = 9, .external_lex_state = 2}, + [1036] = {.lex_state = 9, .external_lex_state = 2}, + [1037] = {.lex_state = 9, .external_lex_state = 2}, + [1038] = {.lex_state = 9, .external_lex_state = 2}, + [1039] = {.lex_state = 9, .external_lex_state = 2}, + [1040] = {.lex_state = 9, .external_lex_state = 2}, + [1041] = {.lex_state = 9, .external_lex_state = 2}, + [1042] = {.lex_state = 9, .external_lex_state = 2}, + [1043] = {.lex_state = 9, .external_lex_state = 2}, + [1044] = {.lex_state = 9, .external_lex_state = 2}, + [1045] = {.lex_state = 9, .external_lex_state = 2}, + [1046] = {.lex_state = 9, .external_lex_state = 2}, + [1047] = {.lex_state = 9, .external_lex_state = 2}, + [1048] = {.lex_state = 9, .external_lex_state = 2}, + [1049] = {.lex_state = 9, .external_lex_state = 2}, + [1050] = {.lex_state = 9, .external_lex_state = 2}, + [1051] = {.lex_state = 9, .external_lex_state = 2}, + [1052] = {.lex_state = 9, .external_lex_state = 2}, + [1053] = {.lex_state = 9, .external_lex_state = 2}, + [1054] = {.lex_state = 9, .external_lex_state = 2}, + [1055] = {.lex_state = 9, .external_lex_state = 2}, + [1056] = {.lex_state = 9, .external_lex_state = 2}, + [1057] = {.lex_state = 9, .external_lex_state = 2}, + [1058] = {.lex_state = 9, .external_lex_state = 2}, + [1059] = {.lex_state = 9, .external_lex_state = 2}, + [1060] = {.lex_state = 9, .external_lex_state = 2}, + [1061] = {.lex_state = 9, .external_lex_state = 2}, + [1062] = {.lex_state = 9, .external_lex_state = 2}, + [1063] = {.lex_state = 9, .external_lex_state = 2}, + [1064] = {.lex_state = 9, .external_lex_state = 2}, + [1065] = {.lex_state = 9, .external_lex_state = 2}, + [1066] = {.lex_state = 9, .external_lex_state = 2}, + [1067] = {.lex_state = 9, .external_lex_state = 2}, + [1068] = {.lex_state = 9, .external_lex_state = 2}, + [1069] = {.lex_state = 9, .external_lex_state = 2}, + [1070] = {.lex_state = 9, .external_lex_state = 2}, + [1071] = {.lex_state = 9, .external_lex_state = 2}, + [1072] = {.lex_state = 9, .external_lex_state = 2}, + [1073] = {.lex_state = 9, .external_lex_state = 2}, + [1074] = {.lex_state = 9, .external_lex_state = 2}, + [1075] = {.lex_state = 9, .external_lex_state = 2}, + [1076] = {.lex_state = 9, .external_lex_state = 2}, + [1077] = {.lex_state = 9, .external_lex_state = 2}, + [1078] = {.lex_state = 9, .external_lex_state = 2}, + [1079] = {.lex_state = 9, .external_lex_state = 2}, + [1080] = {.lex_state = 9, .external_lex_state = 2}, + [1081] = {.lex_state = 9, .external_lex_state = 2}, + [1082] = {.lex_state = 9, .external_lex_state = 2}, + [1083] = {.lex_state = 9, .external_lex_state = 2}, + [1084] = {.lex_state = 9, .external_lex_state = 2}, + [1085] = {.lex_state = 9, .external_lex_state = 2}, + [1086] = {.lex_state = 9, .external_lex_state = 2}, + [1087] = {.lex_state = 9, .external_lex_state = 2}, + [1088] = {.lex_state = 9, .external_lex_state = 2}, + [1089] = {.lex_state = 9, .external_lex_state = 2}, + [1090] = {.lex_state = 9, .external_lex_state = 2}, + [1091] = {.lex_state = 9, .external_lex_state = 2}, + [1092] = {.lex_state = 9, .external_lex_state = 2}, + [1093] = {.lex_state = 9, .external_lex_state = 2}, + [1094] = {.lex_state = 9, .external_lex_state = 2}, + [1095] = {.lex_state = 9, .external_lex_state = 2}, + [1096] = {.lex_state = 9, .external_lex_state = 2}, + [1097] = {.lex_state = 9, .external_lex_state = 2}, + [1098] = {.lex_state = 9, .external_lex_state = 2}, + [1099] = {.lex_state = 9, .external_lex_state = 2}, + [1100] = {.lex_state = 9, .external_lex_state = 2}, + [1101] = {.lex_state = 9, .external_lex_state = 2}, + [1102] = {.lex_state = 9, .external_lex_state = 2}, + [1103] = {.lex_state = 9, .external_lex_state = 2}, + [1104] = {.lex_state = 9, .external_lex_state = 2}, + [1105] = {.lex_state = 9, .external_lex_state = 2}, + [1106] = {.lex_state = 9, .external_lex_state = 2}, + [1107] = {.lex_state = 9, .external_lex_state = 2}, + [1108] = {.lex_state = 9, .external_lex_state = 2}, + [1109] = {.lex_state = 9, .external_lex_state = 2}, + [1110] = {.lex_state = 9, .external_lex_state = 2}, + [1111] = {.lex_state = 9, .external_lex_state = 2}, + [1112] = {.lex_state = 9, .external_lex_state = 2}, + [1113] = {.lex_state = 9, .external_lex_state = 2}, + [1114] = {.lex_state = 9, .external_lex_state = 2}, + [1115] = {.lex_state = 9, .external_lex_state = 2}, + [1116] = {.lex_state = 9, .external_lex_state = 2}, + [1117] = {.lex_state = 9, .external_lex_state = 2}, + [1118] = {.lex_state = 9, .external_lex_state = 2}, + [1119] = {.lex_state = 9, .external_lex_state = 2}, + [1120] = {.lex_state = 9, .external_lex_state = 2}, + [1121] = {.lex_state = 9, .external_lex_state = 2}, + [1122] = {.lex_state = 9, .external_lex_state = 2}, + [1123] = {.lex_state = 9, .external_lex_state = 2}, + [1124] = {.lex_state = 9, .external_lex_state = 2}, + [1125] = {.lex_state = 10, .external_lex_state = 2}, + [1126] = {.lex_state = 10, .external_lex_state = 2}, + [1127] = {.lex_state = 10, .external_lex_state = 2}, + [1128] = {.lex_state = 10, .external_lex_state = 2}, + [1129] = {.lex_state = 10, .external_lex_state = 2}, + [1130] = {.lex_state = 10, .external_lex_state = 2}, + [1131] = {.lex_state = 10, .external_lex_state = 2}, + [1132] = {.lex_state = 10, .external_lex_state = 2}, + [1133] = {.lex_state = 10, .external_lex_state = 2}, + [1134] = {.lex_state = 10, .external_lex_state = 2}, + [1135] = {.lex_state = 10, .external_lex_state = 2}, + [1136] = {.lex_state = 10, .external_lex_state = 2}, + [1137] = {.lex_state = 3, .external_lex_state = 4}, + [1138] = {.lex_state = 2, .external_lex_state = 4}, + [1139] = {.lex_state = 2, .external_lex_state = 4}, + [1140] = {.lex_state = 2, .external_lex_state = 4}, + [1141] = {.lex_state = 3, .external_lex_state = 4}, + [1142] = {.lex_state = 2, .external_lex_state = 4}, + [1143] = {.lex_state = 3, .external_lex_state = 4}, + [1144] = {.lex_state = 2, .external_lex_state = 4}, + [1145] = {.lex_state = 2, .external_lex_state = 4}, + [1146] = {.lex_state = 2, .external_lex_state = 3}, + [1147] = {.lex_state = 2, .external_lex_state = 3}, + [1148] = {.lex_state = 2, .external_lex_state = 3}, + [1149] = {.lex_state = 2, .external_lex_state = 3}, + [1150] = {.lex_state = 2, .external_lex_state = 3}, + [1151] = {.lex_state = 10, .external_lex_state = 2}, + [1152] = {.lex_state = 10, .external_lex_state = 2}, + [1153] = {.lex_state = 2, .external_lex_state = 4}, + [1154] = {.lex_state = 2, .external_lex_state = 4}, + [1155] = {.lex_state = 2, .external_lex_state = 4}, + [1156] = {.lex_state = 2, .external_lex_state = 4}, + [1157] = {.lex_state = 3, .external_lex_state = 4}, + [1158] = {.lex_state = 2, .external_lex_state = 3}, + [1159] = {.lex_state = 2, .external_lex_state = 4}, + [1160] = {.lex_state = 2, .external_lex_state = 4}, + [1161] = {.lex_state = 2, .external_lex_state = 4}, + [1162] = {.lex_state = 2, .external_lex_state = 4}, + [1163] = {.lex_state = 3, .external_lex_state = 4}, + [1164] = {.lex_state = 3, .external_lex_state = 4}, + [1165] = {.lex_state = 2, .external_lex_state = 4}, + [1166] = {.lex_state = 2, .external_lex_state = 4}, + [1167] = {.lex_state = 2, .external_lex_state = 3}, + [1168] = {.lex_state = 2, .external_lex_state = 4}, + [1169] = {.lex_state = 3, .external_lex_state = 3}, + [1170] = {.lex_state = 2, .external_lex_state = 4}, + [1171] = {.lex_state = 3, .external_lex_state = 3}, + [1172] = {.lex_state = 2, .external_lex_state = 3}, + [1173] = {.lex_state = 3, .external_lex_state = 3}, + [1174] = {.lex_state = 2, .external_lex_state = 3}, + [1175] = {.lex_state = 3, .external_lex_state = 3}, + [1176] = {.lex_state = 2, .external_lex_state = 4}, + [1177] = {.lex_state = 3, .external_lex_state = 3}, + [1178] = {.lex_state = 3, .external_lex_state = 3}, + [1179] = {.lex_state = 3, .external_lex_state = 3}, + [1180] = {.lex_state = 3, .external_lex_state = 3}, + [1181] = {.lex_state = 3, .external_lex_state = 3}, + [1182] = {.lex_state = 3, .external_lex_state = 3}, + [1183] = {.lex_state = 3, .external_lex_state = 3}, + [1184] = {.lex_state = 3, .external_lex_state = 3}, + [1185] = {.lex_state = 2, .external_lex_state = 4}, + [1186] = {.lex_state = 3, .external_lex_state = 3}, + [1187] = {.lex_state = 2, .external_lex_state = 4}, + [1188] = {.lex_state = 2, .external_lex_state = 4}, + [1189] = {.lex_state = 2, .external_lex_state = 4}, + [1190] = {.lex_state = 2, .external_lex_state = 3}, + [1191] = {.lex_state = 2, .external_lex_state = 4}, + [1192] = {.lex_state = 3, .external_lex_state = 4}, + [1193] = {.lex_state = 2, .external_lex_state = 4}, + [1194] = {.lex_state = 2, .external_lex_state = 4}, + [1195] = {.lex_state = 2, .external_lex_state = 4}, + [1196] = {.lex_state = 2, .external_lex_state = 4}, + [1197] = {.lex_state = 2, .external_lex_state = 3}, + [1198] = {.lex_state = 2, .external_lex_state = 4}, + [1199] = {.lex_state = 2, .external_lex_state = 3}, + [1200] = {.lex_state = 2, .external_lex_state = 4}, + [1201] = {.lex_state = 2, .external_lex_state = 3}, + [1202] = {.lex_state = 2, .external_lex_state = 4}, + [1203] = {.lex_state = 3, .external_lex_state = 3}, + [1204] = {.lex_state = 3, .external_lex_state = 4}, + [1205] = {.lex_state = 2, .external_lex_state = 3}, + [1206] = {.lex_state = 2, .external_lex_state = 3}, + [1207] = {.lex_state = 3, .external_lex_state = 3}, + [1208] = {.lex_state = 2, .external_lex_state = 4}, + [1209] = {.lex_state = 2, .external_lex_state = 3}, + [1210] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 4}, + [1212] = {.lex_state = 2, .external_lex_state = 3}, + [1213] = {.lex_state = 2, .external_lex_state = 3}, + [1214] = {.lex_state = 2, .external_lex_state = 3}, + [1215] = {.lex_state = 2, .external_lex_state = 3}, + [1216] = {.lex_state = 2, .external_lex_state = 3}, + [1217] = {.lex_state = 127, .external_lex_state = 2}, + [1218] = {.lex_state = 2, .external_lex_state = 4}, + [1219] = {.lex_state = 2, .external_lex_state = 3}, + [1220] = {.lex_state = 2, .external_lex_state = 3}, + [1221] = {.lex_state = 2, .external_lex_state = 4}, + [1222] = {.lex_state = 2, .external_lex_state = 3}, + [1223] = {.lex_state = 2, .external_lex_state = 3}, + [1224] = {.lex_state = 2, .external_lex_state = 3}, + [1225] = {.lex_state = 2, .external_lex_state = 3}, + [1226] = {.lex_state = 2, .external_lex_state = 3}, + [1227] = {.lex_state = 127, .external_lex_state = 2}, + [1228] = {.lex_state = 2, .external_lex_state = 3}, + [1229] = {.lex_state = 2, .external_lex_state = 3}, + [1230] = {.lex_state = 2, .external_lex_state = 3}, + [1231] = {.lex_state = 2, .external_lex_state = 3}, + [1232] = {.lex_state = 2, .external_lex_state = 4}, + [1233] = {.lex_state = 2, .external_lex_state = 3}, + [1234] = {.lex_state = 2, .external_lex_state = 3}, + [1235] = {.lex_state = 2, .external_lex_state = 3}, + [1236] = {.lex_state = 3, .external_lex_state = 3}, + [1237] = {.lex_state = 2, .external_lex_state = 4}, + [1238] = {.lex_state = 2, .external_lex_state = 3}, + [1239] = {.lex_state = 2, .external_lex_state = 3}, + [1240] = {.lex_state = 3, .external_lex_state = 3}, + [1241] = {.lex_state = 2, .external_lex_state = 3}, + [1242] = {.lex_state = 2, .external_lex_state = 3}, + [1243] = {.lex_state = 2, .external_lex_state = 3}, + [1244] = {.lex_state = 2, .external_lex_state = 4}, + [1245] = {.lex_state = 2, .external_lex_state = 3}, + [1246] = {.lex_state = 2, .external_lex_state = 3}, + [1247] = {.lex_state = 127, .external_lex_state = 2}, + [1248] = {.lex_state = 2, .external_lex_state = 3}, + [1249] = {.lex_state = 2, .external_lex_state = 3}, + [1250] = {.lex_state = 2, .external_lex_state = 3}, + [1251] = {.lex_state = 2, .external_lex_state = 4}, + [1252] = {.lex_state = 2, .external_lex_state = 3}, + [1253] = {.lex_state = 2, .external_lex_state = 3}, + [1254] = {.lex_state = 2, .external_lex_state = 3}, + [1255] = {.lex_state = 127, .external_lex_state = 2}, + [1256] = {.lex_state = 2, .external_lex_state = 3}, + [1257] = {.lex_state = 2, .external_lex_state = 3}, + [1258] = {.lex_state = 2, .external_lex_state = 3}, + [1259] = {.lex_state = 2, .external_lex_state = 3}, + [1260] = {.lex_state = 2, .external_lex_state = 3}, + [1261] = {.lex_state = 2, .external_lex_state = 3}, + [1262] = {.lex_state = 2, .external_lex_state = 3}, + [1263] = {.lex_state = 2, .external_lex_state = 4}, + [1264] = {.lex_state = 2, .external_lex_state = 4}, + [1265] = {.lex_state = 2, .external_lex_state = 4}, + [1266] = {.lex_state = 2, .external_lex_state = 4}, + [1267] = {.lex_state = 2, .external_lex_state = 4}, + [1268] = {.lex_state = 2, .external_lex_state = 3}, + [1269] = {.lex_state = 2, .external_lex_state = 4}, + [1270] = {.lex_state = 2, .external_lex_state = 4}, + [1271] = {.lex_state = 2, .external_lex_state = 3}, + [1272] = {.lex_state = 2, .external_lex_state = 4}, + [1273] = {.lex_state = 127, .external_lex_state = 2}, + [1274] = {.lex_state = 2, .external_lex_state = 3}, + [1275] = {.lex_state = 2, .external_lex_state = 4}, + [1276] = {.lex_state = 2, .external_lex_state = 3}, + [1277] = {.lex_state = 127, .external_lex_state = 2}, + [1278] = {.lex_state = 2, .external_lex_state = 3}, + [1279] = {.lex_state = 2, .external_lex_state = 3}, + [1280] = {.lex_state = 2, .external_lex_state = 4}, + [1281] = {.lex_state = 3, .external_lex_state = 3}, + [1282] = {.lex_state = 127, .external_lex_state = 2}, + [1283] = {.lex_state = 2, .external_lex_state = 3}, + [1284] = {.lex_state = 2, .external_lex_state = 3}, + [1285] = {.lex_state = 2, .external_lex_state = 4}, + [1286] = {.lex_state = 2, .external_lex_state = 4}, + [1287] = {.lex_state = 2, .external_lex_state = 3}, + [1288] = {.lex_state = 2, .external_lex_state = 4}, + [1289] = {.lex_state = 2, .external_lex_state = 4}, + [1290] = {.lex_state = 2, .external_lex_state = 4}, + [1291] = {.lex_state = 2, .external_lex_state = 4}, + [1292] = {.lex_state = 2, .external_lex_state = 4}, + [1293] = {.lex_state = 127, .external_lex_state = 2}, + [1294] = {.lex_state = 2, .external_lex_state = 4}, + [1295] = {.lex_state = 3, .external_lex_state = 3}, + [1296] = {.lex_state = 2, .external_lex_state = 4}, + [1297] = {.lex_state = 2, .external_lex_state = 4}, + [1298] = {.lex_state = 2, .external_lex_state = 4}, + [1299] = {.lex_state = 2, .external_lex_state = 4}, + [1300] = {.lex_state = 2, .external_lex_state = 3}, + [1301] = {.lex_state = 2, .external_lex_state = 4}, + [1302] = {.lex_state = 2, .external_lex_state = 4}, + [1303] = {.lex_state = 2, .external_lex_state = 4}, + [1304] = {.lex_state = 2, .external_lex_state = 4}, + [1305] = {.lex_state = 2, .external_lex_state = 3}, + [1306] = {.lex_state = 2, .external_lex_state = 4}, + [1307] = {.lex_state = 2, .external_lex_state = 3}, + [1308] = {.lex_state = 2, .external_lex_state = 3}, + [1309] = {.lex_state = 2, .external_lex_state = 4}, + [1310] = {.lex_state = 127, .external_lex_state = 2}, + [1311] = {.lex_state = 2, .external_lex_state = 4}, + [1312] = {.lex_state = 2, .external_lex_state = 4}, + [1313] = {.lex_state = 2, .external_lex_state = 4}, + [1314] = {.lex_state = 2, .external_lex_state = 3}, + [1315] = {.lex_state = 2, .external_lex_state = 3}, + [1316] = {.lex_state = 2, .external_lex_state = 4}, + [1317] = {.lex_state = 2, .external_lex_state = 4}, + [1318] = {.lex_state = 2, .external_lex_state = 4}, + [1319] = {.lex_state = 2, .external_lex_state = 3}, + [1320] = {.lex_state = 2, .external_lex_state = 4}, + [1321] = {.lex_state = 3, .external_lex_state = 3}, + [1322] = {.lex_state = 2, .external_lex_state = 4}, + [1323] = {.lex_state = 2, .external_lex_state = 3}, + [1324] = {.lex_state = 2, .external_lex_state = 3}, + [1325] = {.lex_state = 3, .external_lex_state = 3}, + [1326] = {.lex_state = 3, .external_lex_state = 3}, + [1327] = {.lex_state = 2, .external_lex_state = 3}, + [1328] = {.lex_state = 3, .external_lex_state = 3}, + [1329] = {.lex_state = 2, .external_lex_state = 3}, + [1330] = {.lex_state = 2, .external_lex_state = 3}, + [1331] = {.lex_state = 2, .external_lex_state = 3}, + [1332] = {.lex_state = 2, .external_lex_state = 3}, + [1333] = {.lex_state = 2, .external_lex_state = 3}, + [1334] = {.lex_state = 2, .external_lex_state = 3}, + [1335] = {.lex_state = 2, .external_lex_state = 4}, + [1336] = {.lex_state = 2, .external_lex_state = 3}, + [1337] = {.lex_state = 2, .external_lex_state = 4}, + [1338] = {.lex_state = 2, .external_lex_state = 4}, + [1339] = {.lex_state = 2, .external_lex_state = 3}, + [1340] = {.lex_state = 2, .external_lex_state = 3}, + [1341] = {.lex_state = 2, .external_lex_state = 4}, + [1342] = {.lex_state = 2, .external_lex_state = 4}, + [1343] = {.lex_state = 3, .external_lex_state = 3}, + [1344] = {.lex_state = 2, .external_lex_state = 3}, + [1345] = {.lex_state = 2, .external_lex_state = 3}, + [1346] = {.lex_state = 9, .external_lex_state = 2}, + [1347] = {.lex_state = 2, .external_lex_state = 3}, + [1348] = {.lex_state = 9, .external_lex_state = 2}, + [1349] = {.lex_state = 9, .external_lex_state = 2}, + [1350] = {.lex_state = 9, .external_lex_state = 2}, + [1351] = {.lex_state = 9, .external_lex_state = 2}, + [1352] = {.lex_state = 2, .external_lex_state = 3}, + [1353] = {.lex_state = 2, .external_lex_state = 4}, + [1354] = {.lex_state = 2, .external_lex_state = 3}, + [1355] = {.lex_state = 2, .external_lex_state = 4}, + [1356] = {.lex_state = 2, .external_lex_state = 4}, + [1357] = {.lex_state = 2, .external_lex_state = 3}, + [1358] = {.lex_state = 2, .external_lex_state = 3}, + [1359] = {.lex_state = 2, .external_lex_state = 3}, + [1360] = {.lex_state = 9, .external_lex_state = 2}, + [1361] = {.lex_state = 2, .external_lex_state = 3}, + [1362] = {.lex_state = 2, .external_lex_state = 3}, + [1363] = {.lex_state = 2, .external_lex_state = 4}, + [1364] = {.lex_state = 2, .external_lex_state = 3}, + [1365] = {.lex_state = 2, .external_lex_state = 3}, + [1366] = {.lex_state = 2, .external_lex_state = 3}, + [1367] = {.lex_state = 2, .external_lex_state = 3}, + [1368] = {.lex_state = 2, .external_lex_state = 3}, + [1369] = {.lex_state = 2, .external_lex_state = 4}, + [1370] = {.lex_state = 2, .external_lex_state = 3}, + [1371] = {.lex_state = 2, .external_lex_state = 3}, + [1372] = {.lex_state = 2, .external_lex_state = 3}, + [1373] = {.lex_state = 2, .external_lex_state = 3}, + [1374] = {.lex_state = 2, .external_lex_state = 3}, + [1375] = {.lex_state = 2, .external_lex_state = 3}, + [1376] = {.lex_state = 2, .external_lex_state = 3}, + [1377] = {.lex_state = 2, .external_lex_state = 3}, + [1378] = {.lex_state = 2, .external_lex_state = 3}, + [1379] = {.lex_state = 2, .external_lex_state = 3}, + [1380] = {.lex_state = 2, .external_lex_state = 3}, + [1381] = {.lex_state = 2, .external_lex_state = 3}, + [1382] = {.lex_state = 2, .external_lex_state = 3}, + [1383] = {.lex_state = 9, .external_lex_state = 2}, + [1384] = {.lex_state = 9, .external_lex_state = 2}, + [1385] = {.lex_state = 9, .external_lex_state = 2}, + [1386] = {.lex_state = 9, .external_lex_state = 2}, + [1387] = {.lex_state = 9, .external_lex_state = 2}, + [1388] = {.lex_state = 9, .external_lex_state = 2}, + [1389] = {.lex_state = 9, .external_lex_state = 2}, + [1390] = {.lex_state = 9, .external_lex_state = 2}, + [1391] = {.lex_state = 9, .external_lex_state = 2}, + [1392] = {.lex_state = 9, .external_lex_state = 2}, + [1393] = {.lex_state = 2, .external_lex_state = 3}, + [1394] = {.lex_state = 9, .external_lex_state = 2}, + [1395] = {.lex_state = 9, .external_lex_state = 2}, + [1396] = {.lex_state = 2, .external_lex_state = 3}, + [1397] = {.lex_state = 2, .external_lex_state = 3}, + [1398] = {.lex_state = 2, .external_lex_state = 3}, + [1399] = {.lex_state = 2, .external_lex_state = 3}, + [1400] = {.lex_state = 2, .external_lex_state = 3}, + [1401] = {.lex_state = 2, .external_lex_state = 3}, + [1402] = {.lex_state = 2, .external_lex_state = 3}, + [1403] = {.lex_state = 2, .external_lex_state = 3}, + [1404] = {.lex_state = 2, .external_lex_state = 3}, + [1405] = {.lex_state = 2, .external_lex_state = 3}, + [1406] = {.lex_state = 2, .external_lex_state = 3}, + [1407] = {.lex_state = 2, .external_lex_state = 3}, + [1408] = {.lex_state = 9, .external_lex_state = 2}, + [1409] = {.lex_state = 9, .external_lex_state = 2}, + [1410] = {.lex_state = 9, .external_lex_state = 2}, + [1411] = {.lex_state = 2, .external_lex_state = 3}, + [1412] = {.lex_state = 2, .external_lex_state = 3}, + [1413] = {.lex_state = 2, .external_lex_state = 3}, + [1414] = {.lex_state = 2, .external_lex_state = 3}, + [1415] = {.lex_state = 9, .external_lex_state = 2}, + [1416] = {.lex_state = 2, .external_lex_state = 3}, + [1417] = {.lex_state = 2, .external_lex_state = 3}, + [1418] = {.lex_state = 2, .external_lex_state = 3}, + [1419] = {.lex_state = 9, .external_lex_state = 2}, + [1420] = {.lex_state = 2, .external_lex_state = 3}, + [1421] = {.lex_state = 2, .external_lex_state = 3}, + [1422] = {.lex_state = 9, .external_lex_state = 2}, + [1423] = {.lex_state = 2, .external_lex_state = 3}, + [1424] = {.lex_state = 2, .external_lex_state = 3}, + [1425] = {.lex_state = 2, .external_lex_state = 3}, + [1426] = {.lex_state = 2, .external_lex_state = 3}, + [1427] = {.lex_state = 2, .external_lex_state = 3}, + [1428] = {.lex_state = 2, .external_lex_state = 3}, + [1429] = {.lex_state = 2, .external_lex_state = 3}, + [1430] = {.lex_state = 2, .external_lex_state = 3}, + [1431] = {.lex_state = 2, .external_lex_state = 3}, + [1432] = {.lex_state = 2, .external_lex_state = 3}, + [1433] = {.lex_state = 9, .external_lex_state = 2}, + [1434] = {.lex_state = 9, .external_lex_state = 2}, + [1435] = {.lex_state = 9, .external_lex_state = 2}, + [1436] = {.lex_state = 9, .external_lex_state = 2}, + [1437] = {.lex_state = 9, .external_lex_state = 2}, + [1438] = {.lex_state = 9, .external_lex_state = 2}, + [1439] = {.lex_state = 9, .external_lex_state = 2}, + [1440] = {.lex_state = 9, .external_lex_state = 2}, + [1441] = {.lex_state = 9, .external_lex_state = 2}, + [1442] = {.lex_state = 9, .external_lex_state = 2}, + [1443] = {.lex_state = 127, .external_lex_state = 5}, + [1444] = {.lex_state = 127, .external_lex_state = 5}, + [1445] = {.lex_state = 9, .external_lex_state = 2}, + [1446] = {.lex_state = 127, .external_lex_state = 5}, + [1447] = {.lex_state = 9, .external_lex_state = 2}, + [1448] = {.lex_state = 9, .external_lex_state = 2}, + [1449] = {.lex_state = 9, .external_lex_state = 2}, + [1450] = {.lex_state = 9, .external_lex_state = 2}, + [1451] = {.lex_state = 9, .external_lex_state = 2}, + [1452] = {.lex_state = 9, .external_lex_state = 2}, + [1453] = {.lex_state = 127, .external_lex_state = 5}, + [1454] = {.lex_state = 127, .external_lex_state = 5}, + [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1456] = {.lex_state = 127, .external_lex_state = 2}, + [1457] = {.lex_state = 127, .external_lex_state = 2}, + [1458] = {.lex_state = 127, .external_lex_state = 2}, + [1459] = {.lex_state = 126, .external_lex_state = 3}, + [1460] = {.lex_state = 127, .external_lex_state = 2}, + [1461] = {.lex_state = 127, .external_lex_state = 2}, + [1462] = {.lex_state = 127, .external_lex_state = 2}, + [1463] = {.lex_state = 126, .external_lex_state = 3}, + [1464] = {.lex_state = 127, .external_lex_state = 5}, + [1465] = {.lex_state = 126, .external_lex_state = 3}, + [1466] = {.lex_state = 126, .external_lex_state = 3}, + [1467] = {.lex_state = 127, .external_lex_state = 5}, + [1468] = {.lex_state = 126, .external_lex_state = 4}, + [1469] = {.lex_state = 126, .external_lex_state = 3}, + [1470] = {.lex_state = 126, .external_lex_state = 4}, + [1471] = {.lex_state = 126, .external_lex_state = 3}, + [1472] = {.lex_state = 126, .external_lex_state = 3}, + [1473] = {.lex_state = 126, .external_lex_state = 3}, + [1474] = {.lex_state = 126, .external_lex_state = 3}, + [1475] = {.lex_state = 126, .external_lex_state = 3}, + [1476] = {.lex_state = 126, .external_lex_state = 4}, + [1477] = {.lex_state = 126, .external_lex_state = 3}, + [1478] = {.lex_state = 126, .external_lex_state = 3}, + [1479] = {.lex_state = 126, .external_lex_state = 3}, + [1480] = {.lex_state = 126, .external_lex_state = 3}, + [1481] = {.lex_state = 126, .external_lex_state = 3}, + [1482] = {.lex_state = 126, .external_lex_state = 3}, + [1483] = {.lex_state = 126, .external_lex_state = 3}, + [1484] = {.lex_state = 126, .external_lex_state = 3}, + [1485] = {.lex_state = 126, .external_lex_state = 3}, + [1486] = {.lex_state = 127, .external_lex_state = 2}, + [1487] = {.lex_state = 126, .external_lex_state = 3}, + [1488] = {.lex_state = 126, .external_lex_state = 3}, + [1489] = {.lex_state = 126, .external_lex_state = 3}, + [1490] = {.lex_state = 126, .external_lex_state = 3}, + [1491] = {.lex_state = 126, .external_lex_state = 3}, + [1492] = {.lex_state = 126, .external_lex_state = 3}, + [1493] = {.lex_state = 126, .external_lex_state = 3}, + [1494] = {.lex_state = 126, .external_lex_state = 3}, + [1495] = {.lex_state = 126, .external_lex_state = 3}, + [1496] = {.lex_state = 126, .external_lex_state = 3}, + [1497] = {.lex_state = 126, .external_lex_state = 3}, + [1498] = {.lex_state = 126, .external_lex_state = 3}, + [1499] = {.lex_state = 126, .external_lex_state = 3}, + [1500] = {.lex_state = 126, .external_lex_state = 3}, + [1501] = {.lex_state = 126, .external_lex_state = 3}, + [1502] = {.lex_state = 126, .external_lex_state = 3}, + [1503] = {.lex_state = 126, .external_lex_state = 3}, + [1504] = {.lex_state = 126, .external_lex_state = 3}, + [1505] = {.lex_state = 126, .external_lex_state = 3}, + [1506] = {.lex_state = 126, .external_lex_state = 3}, + [1507] = {.lex_state = 126, .external_lex_state = 3}, + [1508] = {.lex_state = 126, .external_lex_state = 3}, + [1509] = {.lex_state = 126, .external_lex_state = 3}, + [1510] = {.lex_state = 126, .external_lex_state = 3}, + [1511] = {.lex_state = 126, .external_lex_state = 3}, + [1512] = {.lex_state = 126, .external_lex_state = 3}, + [1513] = {.lex_state = 126, .external_lex_state = 3}, + [1514] = {.lex_state = 126, .external_lex_state = 4}, + [1515] = {.lex_state = 126, .external_lex_state = 3}, + [1516] = {.lex_state = 126, .external_lex_state = 3}, + [1517] = {.lex_state = 126, .external_lex_state = 3}, + [1518] = {.lex_state = 126, .external_lex_state = 3}, + [1519] = {.lex_state = 126, .external_lex_state = 3}, + [1520] = {.lex_state = 126, .external_lex_state = 3}, + [1521] = {.lex_state = 126, .external_lex_state = 3}, + [1522] = {.lex_state = 126, .external_lex_state = 3}, + [1523] = {.lex_state = 126, .external_lex_state = 3}, + [1524] = {.lex_state = 126, .external_lex_state = 3}, + [1525] = {.lex_state = 126, .external_lex_state = 3}, + [1526] = {.lex_state = 126, .external_lex_state = 3}, + [1527] = {.lex_state = 126, .external_lex_state = 3}, + [1528] = {.lex_state = 126, .external_lex_state = 3}, + [1529] = {.lex_state = 126, .external_lex_state = 3}, + [1530] = {.lex_state = 126, .external_lex_state = 3}, + [1531] = {.lex_state = 126, .external_lex_state = 3}, + [1532] = {.lex_state = 126, .external_lex_state = 3}, + [1533] = {.lex_state = 126, .external_lex_state = 3}, + [1534] = {.lex_state = 126, .external_lex_state = 4}, + [1535] = {.lex_state = 126, .external_lex_state = 3}, + [1536] = {.lex_state = 126, .external_lex_state = 3}, + [1537] = {.lex_state = 126, .external_lex_state = 3}, + [1538] = {.lex_state = 126, .external_lex_state = 4}, + [1539] = {.lex_state = 126, .external_lex_state = 3}, + [1540] = {.lex_state = 126, .external_lex_state = 3}, + [1541] = {.lex_state = 126, .external_lex_state = 3}, + [1542] = {.lex_state = 126, .external_lex_state = 4}, + [1543] = {.lex_state = 126, .external_lex_state = 3}, + [1544] = {.lex_state = 126, .external_lex_state = 3}, + [1545] = {.lex_state = 126, .external_lex_state = 3}, + [1546] = {.lex_state = 126, .external_lex_state = 3}, + [1547] = {.lex_state = 126, .external_lex_state = 3}, + [1548] = {.lex_state = 126, .external_lex_state = 3}, + [1549] = {.lex_state = 126, .external_lex_state = 3}, + [1550] = {.lex_state = 126, .external_lex_state = 3}, + [1551] = {.lex_state = 126, .external_lex_state = 3}, + [1552] = {.lex_state = 126, .external_lex_state = 3}, + [1553] = {.lex_state = 126, .external_lex_state = 3}, + [1554] = {.lex_state = 126, .external_lex_state = 3}, + [1555] = {.lex_state = 126, .external_lex_state = 3}, + [1556] = {.lex_state = 126, .external_lex_state = 3}, + [1557] = {.lex_state = 126, .external_lex_state = 3}, + [1558] = {.lex_state = 126, .external_lex_state = 3}, + [1559] = {.lex_state = 126, .external_lex_state = 3}, + [1560] = {.lex_state = 126, .external_lex_state = 3}, + [1561] = {.lex_state = 126, .external_lex_state = 3}, + [1562] = {.lex_state = 126, .external_lex_state = 3}, + [1563] = {.lex_state = 126, .external_lex_state = 3}, + [1564] = {.lex_state = 126, .external_lex_state = 3}, + [1565] = {.lex_state = 126, .external_lex_state = 3}, + [1566] = {.lex_state = 126, .external_lex_state = 3}, + [1567] = {.lex_state = 126, .external_lex_state = 3}, + [1568] = {.lex_state = 126, .external_lex_state = 3}, + [1569] = {.lex_state = 126, .external_lex_state = 3}, + [1570] = {.lex_state = 126, .external_lex_state = 3}, + [1571] = {.lex_state = 126, .external_lex_state = 3}, + [1572] = {.lex_state = 126, .external_lex_state = 3}, + [1573] = {.lex_state = 126, .external_lex_state = 3}, + [1574] = {.lex_state = 126, .external_lex_state = 3}, + [1575] = {.lex_state = 126, .external_lex_state = 3}, + [1576] = {.lex_state = 126, .external_lex_state = 3}, + [1577] = {.lex_state = 126, .external_lex_state = 3}, + [1578] = {.lex_state = 126, .external_lex_state = 3}, + [1579] = {.lex_state = 126, .external_lex_state = 3}, + [1580] = {.lex_state = 126, .external_lex_state = 3}, + [1581] = {.lex_state = 126, .external_lex_state = 3}, + [1582] = {.lex_state = 126, .external_lex_state = 3}, + [1583] = {.lex_state = 126, .external_lex_state = 3}, + [1584] = {.lex_state = 126, .external_lex_state = 3}, + [1585] = {.lex_state = 126, .external_lex_state = 3}, + [1586] = {.lex_state = 126, .external_lex_state = 4}, + [1587] = {.lex_state = 126, .external_lex_state = 3}, + [1588] = {.lex_state = 126, .external_lex_state = 3}, + [1589] = {.lex_state = 126, .external_lex_state = 3}, + [1590] = {.lex_state = 126, .external_lex_state = 3}, + [1591] = {.lex_state = 126, .external_lex_state = 3}, + [1592] = {.lex_state = 126, .external_lex_state = 3}, + [1593] = {.lex_state = 126, .external_lex_state = 3}, + [1594] = {.lex_state = 126, .external_lex_state = 3}, + [1595] = {.lex_state = 126, .external_lex_state = 3}, + [1596] = {.lex_state = 126, .external_lex_state = 3}, + [1597] = {.lex_state = 126, .external_lex_state = 3}, + [1598] = {.lex_state = 126, .external_lex_state = 3}, + [1599] = {.lex_state = 126, .external_lex_state = 3}, + [1600] = {.lex_state = 126, .external_lex_state = 3}, + [1601] = {.lex_state = 126, .external_lex_state = 3}, + [1602] = {.lex_state = 126, .external_lex_state = 3}, + [1603] = {.lex_state = 126, .external_lex_state = 3}, + [1604] = {.lex_state = 126, .external_lex_state = 3}, + [1605] = {.lex_state = 126, .external_lex_state = 3}, + [1606] = {.lex_state = 126, .external_lex_state = 3}, + [1607] = {.lex_state = 126, .external_lex_state = 3}, + [1608] = {.lex_state = 126, .external_lex_state = 3}, + [1609] = {.lex_state = 126, .external_lex_state = 3}, + [1610] = {.lex_state = 126, .external_lex_state = 3}, + [1611] = {.lex_state = 126, .external_lex_state = 3}, + [1612] = {.lex_state = 126, .external_lex_state = 3}, + [1613] = {.lex_state = 126, .external_lex_state = 3}, + [1614] = {.lex_state = 126, .external_lex_state = 3}, + [1615] = {.lex_state = 126, .external_lex_state = 3}, + [1616] = {.lex_state = 126, .external_lex_state = 3}, + [1617] = {.lex_state = 126, .external_lex_state = 3}, + [1618] = {.lex_state = 126, .external_lex_state = 3}, + [1619] = {.lex_state = 126, .external_lex_state = 3}, + [1620] = {.lex_state = 126, .external_lex_state = 3}, + [1621] = {.lex_state = 126, .external_lex_state = 3}, + [1622] = {.lex_state = 126, .external_lex_state = 3}, + [1623] = {.lex_state = 126, .external_lex_state = 3}, + [1624] = {.lex_state = 126, .external_lex_state = 3}, + [1625] = {.lex_state = 126, .external_lex_state = 3}, + [1626] = {.lex_state = 126, .external_lex_state = 3}, + [1627] = {.lex_state = 126, .external_lex_state = 4}, + [1628] = {.lex_state = 126, .external_lex_state = 3}, + [1629] = {.lex_state = 126, .external_lex_state = 3}, + [1630] = {.lex_state = 126, .external_lex_state = 3}, + [1631] = {.lex_state = 126, .external_lex_state = 3}, + [1632] = {.lex_state = 126, .external_lex_state = 3}, + [1633] = {.lex_state = 126, .external_lex_state = 3}, + [1634] = {.lex_state = 126, .external_lex_state = 3}, + [1635] = {.lex_state = 126, .external_lex_state = 3}, + [1636] = {.lex_state = 126, .external_lex_state = 3}, + [1637] = {.lex_state = 126, .external_lex_state = 3}, + [1638] = {.lex_state = 126, .external_lex_state = 3}, + [1639] = {.lex_state = 126, .external_lex_state = 3}, + [1640] = {.lex_state = 126, .external_lex_state = 3}, + [1641] = {.lex_state = 126, .external_lex_state = 3}, + [1642] = {.lex_state = 126, .external_lex_state = 3}, + [1643] = {.lex_state = 126, .external_lex_state = 3}, + [1644] = {.lex_state = 126, .external_lex_state = 3}, + [1645] = {.lex_state = 126, .external_lex_state = 3}, + [1646] = {.lex_state = 126, .external_lex_state = 3}, + [1647] = {.lex_state = 126, .external_lex_state = 3}, + [1648] = {.lex_state = 126, .external_lex_state = 3}, + [1649] = {.lex_state = 126, .external_lex_state = 3}, + [1650] = {.lex_state = 126, .external_lex_state = 3}, + [1651] = {.lex_state = 126, .external_lex_state = 3}, + [1652] = {.lex_state = 126, .external_lex_state = 3}, + [1653] = {.lex_state = 126, .external_lex_state = 3}, + [1654] = {.lex_state = 126, .external_lex_state = 3}, + [1655] = {.lex_state = 126, .external_lex_state = 3}, + [1656] = {.lex_state = 126, .external_lex_state = 3}, + [1657] = {.lex_state = 126, .external_lex_state = 3}, + [1658] = {.lex_state = 126, .external_lex_state = 3}, + [1659] = {.lex_state = 126, .external_lex_state = 3}, + [1660] = {.lex_state = 126, .external_lex_state = 3}, + [1661] = {.lex_state = 126, .external_lex_state = 3}, + [1662] = {.lex_state = 126, .external_lex_state = 3}, + [1663] = {.lex_state = 126, .external_lex_state = 3}, + [1664] = {.lex_state = 126, .external_lex_state = 3}, + [1665] = {.lex_state = 126, .external_lex_state = 3}, + [1666] = {.lex_state = 126, .external_lex_state = 3}, + [1667] = {.lex_state = 126, .external_lex_state = 3}, + [1668] = {.lex_state = 126, .external_lex_state = 3}, + [1669] = {.lex_state = 126, .external_lex_state = 3}, + [1670] = {.lex_state = 126, .external_lex_state = 3}, + [1671] = {.lex_state = 126, .external_lex_state = 3}, + [1672] = {.lex_state = 126, .external_lex_state = 3}, + [1673] = {.lex_state = 126, .external_lex_state = 3}, + [1674] = {.lex_state = 126, .external_lex_state = 3}, + [1675] = {.lex_state = 126, .external_lex_state = 3}, + [1676] = {.lex_state = 126, .external_lex_state = 3}, + [1677] = {.lex_state = 126, .external_lex_state = 3}, + [1678] = {.lex_state = 126, .external_lex_state = 3}, + [1679] = {.lex_state = 127, .external_lex_state = 5}, + [1680] = {.lex_state = 126, .external_lex_state = 3}, + [1681] = {.lex_state = 126, .external_lex_state = 3}, + [1682] = {.lex_state = 126, .external_lex_state = 3}, + [1683] = {.lex_state = 126, .external_lex_state = 3}, + [1684] = {.lex_state = 126, .external_lex_state = 3}, + [1685] = {.lex_state = 126, .external_lex_state = 3}, + [1686] = {.lex_state = 126, .external_lex_state = 3}, + [1687] = {.lex_state = 126, .external_lex_state = 3}, + [1688] = {.lex_state = 126, .external_lex_state = 3}, + [1689] = {.lex_state = 126, .external_lex_state = 3}, + [1690] = {.lex_state = 126, .external_lex_state = 3}, + [1691] = {.lex_state = 126, .external_lex_state = 3}, + [1692] = {.lex_state = 126, .external_lex_state = 3}, + [1693] = {.lex_state = 126, .external_lex_state = 3}, + [1694] = {.lex_state = 126, .external_lex_state = 3}, + [1695] = {.lex_state = 126, .external_lex_state = 3}, + [1696] = {.lex_state = 126, .external_lex_state = 3}, + [1697] = {.lex_state = 126, .external_lex_state = 3}, + [1698] = {.lex_state = 126, .external_lex_state = 3}, + [1699] = {.lex_state = 126, .external_lex_state = 3}, + [1700] = {.lex_state = 126, .external_lex_state = 3}, + [1701] = {.lex_state = 126, .external_lex_state = 3}, + [1702] = {.lex_state = 126, .external_lex_state = 3}, + [1703] = {.lex_state = 126, .external_lex_state = 3}, + [1704] = {.lex_state = 126, .external_lex_state = 3}, + [1705] = {.lex_state = 126, .external_lex_state = 3}, + [1706] = {.lex_state = 127, .external_lex_state = 5}, + [1707] = {.lex_state = 126, .external_lex_state = 3}, + [1708] = {.lex_state = 126, .external_lex_state = 3}, + [1709] = {.lex_state = 126, .external_lex_state = 3}, + [1710] = {.lex_state = 126, .external_lex_state = 3}, + [1711] = {.lex_state = 126, .external_lex_state = 4}, + [1712] = {.lex_state = 126, .external_lex_state = 4}, + [1713] = {.lex_state = 126, .external_lex_state = 3}, + [1714] = {.lex_state = 127, .external_lex_state = 5}, + [1715] = {.lex_state = 126, .external_lex_state = 3}, + [1716] = {.lex_state = 126, .external_lex_state = 3}, + [1717] = {.lex_state = 126, .external_lex_state = 3}, + [1718] = {.lex_state = 126, .external_lex_state = 3}, + [1719] = {.lex_state = 127, .external_lex_state = 5}, + [1720] = {.lex_state = 126, .external_lex_state = 3}, + [1721] = {.lex_state = 126, .external_lex_state = 3}, + [1722] = {.lex_state = 126, .external_lex_state = 3}, + [1723] = {.lex_state = 126, .external_lex_state = 3}, + [1724] = {.lex_state = 126, .external_lex_state = 3}, + [1725] = {.lex_state = 127, .external_lex_state = 5}, + [1726] = {.lex_state = 126, .external_lex_state = 3}, + [1727] = {.lex_state = 127, .external_lex_state = 5}, + [1728] = {.lex_state = 126, .external_lex_state = 3}, + [1729] = {.lex_state = 126, .external_lex_state = 3}, + [1730] = {.lex_state = 126, .external_lex_state = 4}, + [1731] = {.lex_state = 127, .external_lex_state = 5}, + [1732] = {.lex_state = 127, .external_lex_state = 5}, + [1733] = {.lex_state = 126, .external_lex_state = 4}, + [1734] = {.lex_state = 126, .external_lex_state = 3}, + [1735] = {.lex_state = 126, .external_lex_state = 4}, + [1736] = {.lex_state = 126, .external_lex_state = 4}, + [1737] = {.lex_state = 127, .external_lex_state = 5}, + [1738] = {.lex_state = 126, .external_lex_state = 4}, + [1739] = {.lex_state = 127, .external_lex_state = 5}, + [1740] = {.lex_state = 126, .external_lex_state = 4}, + [1741] = {.lex_state = 126, .external_lex_state = 3}, + [1742] = {.lex_state = 126, .external_lex_state = 4}, + [1743] = {.lex_state = 126, .external_lex_state = 4}, + [1744] = {.lex_state = 126, .external_lex_state = 4}, + [1745] = {.lex_state = 127, .external_lex_state = 5}, + [1746] = {.lex_state = 127, .external_lex_state = 5}, + [1747] = {.lex_state = 126, .external_lex_state = 4}, + [1748] = {.lex_state = 126, .external_lex_state = 4}, + [1749] = {.lex_state = 127, .external_lex_state = 5}, + [1750] = {.lex_state = 127, .external_lex_state = 5}, + [1751] = {.lex_state = 127, .external_lex_state = 5}, + [1752] = {.lex_state = 126, .external_lex_state = 4}, + [1753] = {.lex_state = 127, .external_lex_state = 5}, + [1754] = {.lex_state = 127, .external_lex_state = 5}, + [1755] = {.lex_state = 127, .external_lex_state = 5}, + [1756] = {.lex_state = 126, .external_lex_state = 4}, + [1757] = {.lex_state = 126, .external_lex_state = 4}, + [1758] = {.lex_state = 126, .external_lex_state = 4}, + [1759] = {.lex_state = 126, .external_lex_state = 4}, + [1760] = {.lex_state = 4, .external_lex_state = 3}, + [1761] = {.lex_state = 126, .external_lex_state = 4}, + [1762] = {.lex_state = 126, .external_lex_state = 4}, + [1763] = {.lex_state = 126, .external_lex_state = 4}, + [1764] = {.lex_state = 126, .external_lex_state = 4}, + [1765] = {.lex_state = 126, .external_lex_state = 4}, + [1766] = {.lex_state = 126, .external_lex_state = 4}, + [1767] = {.lex_state = 126, .external_lex_state = 4}, + [1768] = {.lex_state = 126, .external_lex_state = 4}, + [1769] = {.lex_state = 126, .external_lex_state = 4}, + [1770] = {.lex_state = 126, .external_lex_state = 3}, + [1771] = {.lex_state = 126, .external_lex_state = 3}, + [1772] = {.lex_state = 126, .external_lex_state = 4}, + [1773] = {.lex_state = 127, .external_lex_state = 5}, + [1774] = {.lex_state = 126, .external_lex_state = 4}, + [1775] = {.lex_state = 126, .external_lex_state = 3}, + [1776] = {.lex_state = 127, .external_lex_state = 5}, + [1777] = {.lex_state = 126, .external_lex_state = 3}, + [1778] = {.lex_state = 126, .external_lex_state = 4}, + [1779] = {.lex_state = 127, .external_lex_state = 5}, + [1780] = {.lex_state = 126, .external_lex_state = 4}, + [1781] = {.lex_state = 126, .external_lex_state = 4}, + [1782] = {.lex_state = 126, .external_lex_state = 4}, + [1783] = {.lex_state = 127, .external_lex_state = 5}, + [1784] = {.lex_state = 126, .external_lex_state = 4}, + [1785] = {.lex_state = 126, .external_lex_state = 4}, + [1786] = {.lex_state = 126, .external_lex_state = 4}, + [1787] = {.lex_state = 126, .external_lex_state = 4}, + [1788] = {.lex_state = 126, .external_lex_state = 4}, + [1789] = {.lex_state = 126, .external_lex_state = 4}, + [1790] = {.lex_state = 126, .external_lex_state = 4}, + [1791] = {.lex_state = 126, .external_lex_state = 4}, + [1792] = {.lex_state = 127, .external_lex_state = 5}, + [1793] = {.lex_state = 126, .external_lex_state = 3}, + [1794] = {.lex_state = 126, .external_lex_state = 4}, + [1795] = {.lex_state = 126, .external_lex_state = 4}, + [1796] = {.lex_state = 126, .external_lex_state = 4}, + [1797] = {.lex_state = 126, .external_lex_state = 4}, + [1798] = {.lex_state = 126, .external_lex_state = 4}, + [1799] = {.lex_state = 126, .external_lex_state = 4}, + [1800] = {.lex_state = 126, .external_lex_state = 4}, + [1801] = {.lex_state = 126, .external_lex_state = 3}, + [1802] = {.lex_state = 126, .external_lex_state = 4}, + [1803] = {.lex_state = 126, .external_lex_state = 4}, + [1804] = {.lex_state = 126, .external_lex_state = 3}, + [1805] = {.lex_state = 126, .external_lex_state = 4}, + [1806] = {.lex_state = 126, .external_lex_state = 4}, + [1807] = {.lex_state = 126, .external_lex_state = 4}, + [1808] = {.lex_state = 126, .external_lex_state = 4}, + [1809] = {.lex_state = 126, .external_lex_state = 3}, + [1810] = {.lex_state = 126, .external_lex_state = 4}, + [1811] = {.lex_state = 126, .external_lex_state = 4}, + [1812] = {.lex_state = 126, .external_lex_state = 3}, + [1813] = {.lex_state = 126, .external_lex_state = 4}, + [1814] = {.lex_state = 126, .external_lex_state = 3}, + [1815] = {.lex_state = 126, .external_lex_state = 4}, + [1816] = {.lex_state = 126, .external_lex_state = 4}, + [1817] = {.lex_state = 126, .external_lex_state = 4}, + [1818] = {.lex_state = 126, .external_lex_state = 4}, + [1819] = {.lex_state = 126, .external_lex_state = 4}, + [1820] = {.lex_state = 126, .external_lex_state = 4}, + [1821] = {.lex_state = 126, .external_lex_state = 4}, + [1822] = {.lex_state = 126, .external_lex_state = 4}, + [1823] = {.lex_state = 126, .external_lex_state = 4}, + [1824] = {.lex_state = 126, .external_lex_state = 4}, + [1825] = {.lex_state = 126, .external_lex_state = 3}, + [1826] = {.lex_state = 127, .external_lex_state = 5}, + [1827] = {.lex_state = 126, .external_lex_state = 4}, + [1828] = {.lex_state = 126, .external_lex_state = 4}, + [1829] = {.lex_state = 127, .external_lex_state = 5}, + [1830] = {.lex_state = 126, .external_lex_state = 4}, + [1831] = {.lex_state = 126, .external_lex_state = 3}, + [1832] = {.lex_state = 126, .external_lex_state = 3}, + [1833] = {.lex_state = 126, .external_lex_state = 4}, + [1834] = {.lex_state = 126, .external_lex_state = 4}, + [1835] = {.lex_state = 126, .external_lex_state = 4}, + [1836] = {.lex_state = 126, .external_lex_state = 4}, + [1837] = {.lex_state = 126, .external_lex_state = 3}, + [1838] = {.lex_state = 126, .external_lex_state = 4}, + [1839] = {.lex_state = 126, .external_lex_state = 4}, + [1840] = {.lex_state = 126, .external_lex_state = 4}, + [1841] = {.lex_state = 126, .external_lex_state = 3}, + [1842] = {.lex_state = 126, .external_lex_state = 4}, + [1843] = {.lex_state = 126, .external_lex_state = 4}, + [1844] = {.lex_state = 127, .external_lex_state = 5}, + [1845] = {.lex_state = 126, .external_lex_state = 4}, + [1846] = {.lex_state = 126, .external_lex_state = 4}, + [1847] = {.lex_state = 126, .external_lex_state = 4}, + [1848] = {.lex_state = 126, .external_lex_state = 4}, + [1849] = {.lex_state = 126, .external_lex_state = 4}, + [1850] = {.lex_state = 126, .external_lex_state = 4}, + [1851] = {.lex_state = 126, .external_lex_state = 4}, + [1852] = {.lex_state = 126, .external_lex_state = 4}, + [1853] = {.lex_state = 126, .external_lex_state = 4}, + [1854] = {.lex_state = 126, .external_lex_state = 4}, + [1855] = {.lex_state = 126, .external_lex_state = 4}, + [1856] = {.lex_state = 126, .external_lex_state = 3}, + [1857] = {.lex_state = 126, .external_lex_state = 4}, + [1858] = {.lex_state = 127, .external_lex_state = 5}, + [1859] = {.lex_state = 126, .external_lex_state = 3}, + [1860] = {.lex_state = 126, .external_lex_state = 4}, + [1861] = {.lex_state = 126, .external_lex_state = 4}, + [1862] = {.lex_state = 126, .external_lex_state = 4}, + [1863] = {.lex_state = 126, .external_lex_state = 3}, + [1864] = {.lex_state = 126, .external_lex_state = 4}, + [1865] = {.lex_state = 127, .external_lex_state = 5}, + [1866] = {.lex_state = 126, .external_lex_state = 4}, + [1867] = {.lex_state = 126, .external_lex_state = 3}, + [1868] = {.lex_state = 127, .external_lex_state = 5}, + [1869] = {.lex_state = 126, .external_lex_state = 4}, + [1870] = {.lex_state = 126, .external_lex_state = 4}, + [1871] = {.lex_state = 126, .external_lex_state = 4}, + [1872] = {.lex_state = 126, .external_lex_state = 4}, + [1873] = {.lex_state = 126, .external_lex_state = 4}, + [1874] = {.lex_state = 126, .external_lex_state = 4}, + [1875] = {.lex_state = 126, .external_lex_state = 4}, + [1876] = {.lex_state = 126, .external_lex_state = 4}, + [1877] = {.lex_state = 126, .external_lex_state = 4}, + [1878] = {.lex_state = 126, .external_lex_state = 3}, + [1879] = {.lex_state = 126, .external_lex_state = 4}, + [1880] = {.lex_state = 126, .external_lex_state = 4}, + [1881] = {.lex_state = 126, .external_lex_state = 3}, + [1882] = {.lex_state = 126, .external_lex_state = 4}, + [1883] = {.lex_state = 126, .external_lex_state = 4}, + [1884] = {.lex_state = 126, .external_lex_state = 4}, + [1885] = {.lex_state = 126, .external_lex_state = 4}, + [1886] = {.lex_state = 126, .external_lex_state = 4}, + [1887] = {.lex_state = 126, .external_lex_state = 4}, + [1888] = {.lex_state = 126, .external_lex_state = 4}, + [1889] = {.lex_state = 126, .external_lex_state = 4}, + [1890] = {.lex_state = 126, .external_lex_state = 4}, + [1891] = {.lex_state = 126, .external_lex_state = 4}, + [1892] = {.lex_state = 126, .external_lex_state = 4}, + [1893] = {.lex_state = 126, .external_lex_state = 4}, + [1894] = {.lex_state = 126, .external_lex_state = 4}, + [1895] = {.lex_state = 126, .external_lex_state = 4}, + [1896] = {.lex_state = 126, .external_lex_state = 4}, + [1897] = {.lex_state = 126, .external_lex_state = 4}, + [1898] = {.lex_state = 126, .external_lex_state = 4}, + [1899] = {.lex_state = 126, .external_lex_state = 4}, + [1900] = {.lex_state = 126, .external_lex_state = 4}, + [1901] = {.lex_state = 126, .external_lex_state = 4}, + [1902] = {.lex_state = 126, .external_lex_state = 4}, + [1903] = {.lex_state = 126, .external_lex_state = 4}, + [1904] = {.lex_state = 126, .external_lex_state = 4}, + [1905] = {.lex_state = 126, .external_lex_state = 4}, + [1906] = {.lex_state = 126, .external_lex_state = 4}, + [1907] = {.lex_state = 126, .external_lex_state = 4}, + [1908] = {.lex_state = 126, .external_lex_state = 4}, + [1909] = {.lex_state = 126, .external_lex_state = 4}, + [1910] = {.lex_state = 126, .external_lex_state = 4}, + [1911] = {.lex_state = 126, .external_lex_state = 4}, + [1912] = {.lex_state = 126, .external_lex_state = 4}, + [1913] = {.lex_state = 126, .external_lex_state = 4}, + [1914] = {.lex_state = 126, .external_lex_state = 4}, + [1915] = {.lex_state = 126, .external_lex_state = 4}, + [1916] = {.lex_state = 126, .external_lex_state = 4}, + [1917] = {.lex_state = 126, .external_lex_state = 4}, + [1918] = {.lex_state = 126, .external_lex_state = 4}, + [1919] = {.lex_state = 126, .external_lex_state = 4}, + [1920] = {.lex_state = 126, .external_lex_state = 4}, + [1921] = {.lex_state = 126, .external_lex_state = 4}, + [1922] = {.lex_state = 126, .external_lex_state = 4}, + [1923] = {.lex_state = 126, .external_lex_state = 4}, + [1924] = {.lex_state = 126, .external_lex_state = 4}, + [1925] = {.lex_state = 127, .external_lex_state = 2}, + [1926] = {.lex_state = 126, .external_lex_state = 4}, + [1927] = {.lex_state = 126, .external_lex_state = 4}, + [1928] = {.lex_state = 126, .external_lex_state = 4}, + [1929] = {.lex_state = 126, .external_lex_state = 4}, + [1930] = {.lex_state = 126, .external_lex_state = 4}, + [1931] = {.lex_state = 126, .external_lex_state = 4}, + [1932] = {.lex_state = 126, .external_lex_state = 4}, + [1933] = {.lex_state = 126, .external_lex_state = 4}, + [1934] = {.lex_state = 126, .external_lex_state = 4}, + [1935] = {.lex_state = 126, .external_lex_state = 4}, + [1936] = {.lex_state = 126, .external_lex_state = 4}, + [1937] = {.lex_state = 126, .external_lex_state = 4}, + [1938] = {.lex_state = 126, .external_lex_state = 4}, + [1939] = {.lex_state = 126, .external_lex_state = 4}, + [1940] = {.lex_state = 126, .external_lex_state = 4}, + [1941] = {.lex_state = 126, .external_lex_state = 4}, + [1942] = {.lex_state = 126, .external_lex_state = 4}, + [1943] = {.lex_state = 126, .external_lex_state = 4}, + [1944] = {.lex_state = 126, .external_lex_state = 4}, + [1945] = {.lex_state = 126, .external_lex_state = 4}, + [1946] = {.lex_state = 126, .external_lex_state = 4}, + [1947] = {.lex_state = 126, .external_lex_state = 4}, + [1948] = {.lex_state = 126, .external_lex_state = 4}, + [1949] = {.lex_state = 126, .external_lex_state = 4}, + [1950] = {.lex_state = 126, .external_lex_state = 4}, + [1951] = {.lex_state = 126, .external_lex_state = 4}, + [1952] = {.lex_state = 126, .external_lex_state = 4}, + [1953] = {.lex_state = 127, .external_lex_state = 5}, + [1954] = {.lex_state = 127, .external_lex_state = 5}, + [1955] = {.lex_state = 127, .external_lex_state = 2}, + [1956] = {.lex_state = 126, .external_lex_state = 4}, + [1957] = {.lex_state = 127, .external_lex_state = 2}, + [1958] = {.lex_state = 126, .external_lex_state = 4}, + [1959] = {.lex_state = 127, .external_lex_state = 5}, + [1960] = {.lex_state = 126, .external_lex_state = 4}, + [1961] = {.lex_state = 127, .external_lex_state = 5}, + [1962] = {.lex_state = 126, .external_lex_state = 3}, + [1963] = {.lex_state = 127, .external_lex_state = 2}, + [1964] = {.lex_state = 126, .external_lex_state = 4}, + [1965] = {.lex_state = 126, .external_lex_state = 4}, + [1966] = {.lex_state = 126, .external_lex_state = 4}, + [1967] = {.lex_state = 127, .external_lex_state = 2}, + [1968] = {.lex_state = 126, .external_lex_state = 4}, + [1969] = {.lex_state = 127, .external_lex_state = 2}, + [1970] = {.lex_state = 126, .external_lex_state = 4}, + [1971] = {.lex_state = 126, .external_lex_state = 3}, + [1972] = {.lex_state = 126, .external_lex_state = 4}, + [1973] = {.lex_state = 126, .external_lex_state = 4}, + [1974] = {.lex_state = 126, .external_lex_state = 3}, + [1975] = {.lex_state = 126, .external_lex_state = 4}, + [1976] = {.lex_state = 126, .external_lex_state = 4}, + [1977] = {.lex_state = 126, .external_lex_state = 4}, + [1978] = {.lex_state = 126, .external_lex_state = 4}, + [1979] = {.lex_state = 126, .external_lex_state = 4}, + [1980] = {.lex_state = 126, .external_lex_state = 4}, + [1981] = {.lex_state = 126, .external_lex_state = 4}, + [1982] = {.lex_state = 126, .external_lex_state = 4}, + [1983] = {.lex_state = 126, .external_lex_state = 4}, + [1984] = {.lex_state = 126, .external_lex_state = 4}, + [1985] = {.lex_state = 126, .external_lex_state = 4}, + [1986] = {.lex_state = 126, .external_lex_state = 4}, + [1987] = {.lex_state = 126, .external_lex_state = 4}, + [1988] = {.lex_state = 126, .external_lex_state = 4}, + [1989] = {.lex_state = 126, .external_lex_state = 3}, + [1990] = {.lex_state = 126, .external_lex_state = 3}, + [1991] = {.lex_state = 127, .external_lex_state = 2}, + [1992] = {.lex_state = 126, .external_lex_state = 4}, + [1993] = {.lex_state = 126, .external_lex_state = 3}, + [1994] = {.lex_state = 126, .external_lex_state = 3}, + [1995] = {.lex_state = 126, .external_lex_state = 3}, + [1996] = {.lex_state = 126, .external_lex_state = 3}, + [1997] = {.lex_state = 126, .external_lex_state = 3}, + [1998] = {.lex_state = 126, .external_lex_state = 3}, + [1999] = {.lex_state = 126, .external_lex_state = 3}, + [2000] = {.lex_state = 126, .external_lex_state = 3}, + [2001] = {.lex_state = 126, .external_lex_state = 3}, + [2002] = {.lex_state = 126, .external_lex_state = 3}, + [2003] = {.lex_state = 126, .external_lex_state = 3}, + [2004] = {.lex_state = 126, .external_lex_state = 3}, + [2005] = {.lex_state = 126, .external_lex_state = 3}, + [2006] = {.lex_state = 126, .external_lex_state = 3}, + [2007] = {.lex_state = 126, .external_lex_state = 3}, + [2008] = {.lex_state = 126, .external_lex_state = 3}, + [2009] = {.lex_state = 126, .external_lex_state = 3}, + [2010] = {.lex_state = 126, .external_lex_state = 3}, + [2011] = {.lex_state = 126, .external_lex_state = 3}, + [2012] = {.lex_state = 126, .external_lex_state = 3}, + [2013] = {.lex_state = 126, .external_lex_state = 3}, + [2014] = {.lex_state = 126, .external_lex_state = 3}, + [2015] = {.lex_state = 126, .external_lex_state = 3}, + [2016] = {.lex_state = 126, .external_lex_state = 3}, + [2017] = {.lex_state = 126, .external_lex_state = 3}, + [2018] = {.lex_state = 126, .external_lex_state = 4}, + [2019] = {.lex_state = 126, .external_lex_state = 3}, + [2020] = {.lex_state = 127, .external_lex_state = 5}, + [2021] = {.lex_state = 126, .external_lex_state = 4}, + [2022] = {.lex_state = 126, .external_lex_state = 4}, + [2023] = {.lex_state = 127, .external_lex_state = 5}, + [2024] = {.lex_state = 126, .external_lex_state = 4}, + [2025] = {.lex_state = 126, .external_lex_state = 4}, + [2026] = {.lex_state = 126, .external_lex_state = 4}, + [2027] = {.lex_state = 126, .external_lex_state = 4}, + [2028] = {.lex_state = 126, .external_lex_state = 4}, + [2029] = {.lex_state = 127, .external_lex_state = 5}, + [2030] = {.lex_state = 126, .external_lex_state = 4}, + [2031] = {.lex_state = 126, .external_lex_state = 4}, + [2032] = {.lex_state = 127, .external_lex_state = 5}, + [2033] = {.lex_state = 127, .external_lex_state = 5}, + [2034] = {.lex_state = 126, .external_lex_state = 4}, + [2035] = {.lex_state = 126, .external_lex_state = 4}, + [2036] = {.lex_state = 126, .external_lex_state = 4}, + [2037] = {.lex_state = 126, .external_lex_state = 3}, + [2038] = {.lex_state = 126, .external_lex_state = 3}, + [2039] = {.lex_state = 126, .external_lex_state = 4}, + [2040] = {.lex_state = 126, .external_lex_state = 4}, + [2041] = {.lex_state = 126, .external_lex_state = 4}, + [2042] = {.lex_state = 126, .external_lex_state = 3}, + [2043] = {.lex_state = 126, .external_lex_state = 4}, + [2044] = {.lex_state = 126, .external_lex_state = 4}, + [2045] = {.lex_state = 126, .external_lex_state = 4}, + [2046] = {.lex_state = 126, .external_lex_state = 4}, + [2047] = {.lex_state = 126, .external_lex_state = 4}, + [2048] = {.lex_state = 126, .external_lex_state = 4}, + [2049] = {.lex_state = 127, .external_lex_state = 2}, + [2050] = {.lex_state = 126, .external_lex_state = 4}, + [2051] = {.lex_state = 126, .external_lex_state = 4}, + [2052] = {.lex_state = 126, .external_lex_state = 3}, + [2053] = {.lex_state = 126, .external_lex_state = 3}, + [2054] = {.lex_state = 126, .external_lex_state = 3}, + [2055] = {.lex_state = 126, .external_lex_state = 3}, + [2056] = {.lex_state = 126, .external_lex_state = 4}, + [2057] = {.lex_state = 126, .external_lex_state = 4}, + [2058] = {.lex_state = 127, .external_lex_state = 5}, + [2059] = {.lex_state = 126, .external_lex_state = 4}, + [2060] = {.lex_state = 126, .external_lex_state = 3}, + [2061] = {.lex_state = 126, .external_lex_state = 4}, + [2062] = {.lex_state = 127, .external_lex_state = 5}, + [2063] = {.lex_state = 126, .external_lex_state = 4}, + [2064] = {.lex_state = 126, .external_lex_state = 4}, + [2065] = {.lex_state = 127, .external_lex_state = 5}, + [2066] = {.lex_state = 126, .external_lex_state = 3}, + [2067] = {.lex_state = 127, .external_lex_state = 2}, + [2068] = {.lex_state = 126, .external_lex_state = 3}, + [2069] = {.lex_state = 126, .external_lex_state = 4}, + [2070] = {.lex_state = 127, .external_lex_state = 2}, + [2071] = {.lex_state = 126, .external_lex_state = 4}, + [2072] = {.lex_state = 126, .external_lex_state = 4}, + [2073] = {.lex_state = 126, .external_lex_state = 3}, + [2074] = {.lex_state = 126, .external_lex_state = 4}, + [2075] = {.lex_state = 127, .external_lex_state = 2}, + [2076] = {.lex_state = 126, .external_lex_state = 3}, + [2077] = {.lex_state = 126, .external_lex_state = 4}, + [2078] = {.lex_state = 126, .external_lex_state = 3}, + [2079] = {.lex_state = 127, .external_lex_state = 5}, + [2080] = {.lex_state = 126, .external_lex_state = 4}, + [2081] = {.lex_state = 126, .external_lex_state = 3}, + [2082] = {.lex_state = 126, .external_lex_state = 3}, + [2083] = {.lex_state = 126, .external_lex_state = 4}, + [2084] = {.lex_state = 126, .external_lex_state = 4}, + [2085] = {.lex_state = 126, .external_lex_state = 3}, + [2086] = {.lex_state = 127, .external_lex_state = 2}, + [2087] = {.lex_state = 127, .external_lex_state = 5}, + [2088] = {.lex_state = 126, .external_lex_state = 4}, + [2089] = {.lex_state = 126, .external_lex_state = 4}, + [2090] = {.lex_state = 126, .external_lex_state = 4}, + [2091] = {.lex_state = 127, .external_lex_state = 5}, + [2092] = {.lex_state = 126, .external_lex_state = 4}, + [2093] = {.lex_state = 127, .external_lex_state = 2}, + [2094] = {.lex_state = 126, .external_lex_state = 3}, + [2095] = {.lex_state = 126, .external_lex_state = 4}, + [2096] = {.lex_state = 126, .external_lex_state = 4}, + [2097] = {.lex_state = 126, .external_lex_state = 3}, + [2098] = {.lex_state = 126, .external_lex_state = 3}, + [2099] = {.lex_state = 126, .external_lex_state = 3}, + [2100] = {.lex_state = 126, .external_lex_state = 3}, + [2101] = {.lex_state = 126, .external_lex_state = 3}, + [2102] = {.lex_state = 126, .external_lex_state = 4}, + [2103] = {.lex_state = 126, .external_lex_state = 3}, + [2104] = {.lex_state = 126, .external_lex_state = 4}, + [2105] = {.lex_state = 126, .external_lex_state = 3}, + [2106] = {.lex_state = 126, .external_lex_state = 4}, + [2107] = {.lex_state = 126, .external_lex_state = 4}, + [2108] = {.lex_state = 127, .external_lex_state = 2}, + [2109] = {.lex_state = 126, .external_lex_state = 3}, + [2110] = {.lex_state = 127, .external_lex_state = 5}, + [2111] = {.lex_state = 127, .external_lex_state = 5}, + [2112] = {.lex_state = 126, .external_lex_state = 4}, + [2113] = {.lex_state = 126, .external_lex_state = 4}, + [2114] = {.lex_state = 126, .external_lex_state = 4}, + [2115] = {.lex_state = 126, .external_lex_state = 3}, + [2116] = {.lex_state = 126, .external_lex_state = 4}, + [2117] = {.lex_state = 127, .external_lex_state = 5}, + [2118] = {.lex_state = 126, .external_lex_state = 4}, + [2119] = {.lex_state = 126, .external_lex_state = 3}, + [2120] = {.lex_state = 126, .external_lex_state = 3}, + [2121] = {.lex_state = 127, .external_lex_state = 2}, + [2122] = {.lex_state = 126, .external_lex_state = 4}, + [2123] = {.lex_state = 126, .external_lex_state = 3}, + [2124] = {.lex_state = 126, .external_lex_state = 3}, + [2125] = {.lex_state = 126, .external_lex_state = 3}, + [2126] = {.lex_state = 126, .external_lex_state = 4}, + [2127] = {.lex_state = 126, .external_lex_state = 3}, + [2128] = {.lex_state = 126, .external_lex_state = 3}, + [2129] = {.lex_state = 126, .external_lex_state = 3}, + [2130] = {.lex_state = 126, .external_lex_state = 4}, + [2131] = {.lex_state = 126, .external_lex_state = 4}, + [2132] = {.lex_state = 126, .external_lex_state = 4}, + [2133] = {.lex_state = 126, .external_lex_state = 4}, + [2134] = {.lex_state = 126, .external_lex_state = 4}, + [2135] = {.lex_state = 127, .external_lex_state = 5}, + [2136] = {.lex_state = 126, .external_lex_state = 4}, + [2137] = {.lex_state = 126, .external_lex_state = 4}, + [2138] = {.lex_state = 126, .external_lex_state = 4}, + [2139] = {.lex_state = 126, .external_lex_state = 3}, + [2140] = {.lex_state = 126, .external_lex_state = 3}, + [2141] = {.lex_state = 126, .external_lex_state = 3}, + [2142] = {.lex_state = 127, .external_lex_state = 5}, + [2143] = {.lex_state = 126, .external_lex_state = 3}, + [2144] = {.lex_state = 126, .external_lex_state = 4}, + [2145] = {.lex_state = 126, .external_lex_state = 4}, + [2146] = {.lex_state = 126, .external_lex_state = 4}, + [2147] = {.lex_state = 126, .external_lex_state = 4}, + [2148] = {.lex_state = 126, .external_lex_state = 3}, + [2149] = {.lex_state = 126, .external_lex_state = 3}, + [2150] = {.lex_state = 126, .external_lex_state = 3}, + [2151] = {.lex_state = 126, .external_lex_state = 3}, + [2152] = {.lex_state = 126, .external_lex_state = 4}, + [2153] = {.lex_state = 126, .external_lex_state = 3}, + [2154] = {.lex_state = 126, .external_lex_state = 4}, + [2155] = {.lex_state = 126, .external_lex_state = 3}, + [2156] = {.lex_state = 126, .external_lex_state = 4}, + [2157] = {.lex_state = 126, .external_lex_state = 3}, + [2158] = {.lex_state = 126, .external_lex_state = 3}, + [2159] = {.lex_state = 126, .external_lex_state = 4}, + [2160] = {.lex_state = 126, .external_lex_state = 3}, + [2161] = {.lex_state = 127, .external_lex_state = 5}, + [2162] = {.lex_state = 126, .external_lex_state = 4}, + [2163] = {.lex_state = 126, .external_lex_state = 4}, + [2164] = {.lex_state = 126, .external_lex_state = 4}, + [2165] = {.lex_state = 127, .external_lex_state = 5}, + [2166] = {.lex_state = 126, .external_lex_state = 4}, + [2167] = {.lex_state = 126, .external_lex_state = 4}, + [2168] = {.lex_state = 126, .external_lex_state = 4}, + [2169] = {.lex_state = 126, .external_lex_state = 3}, + [2170] = {.lex_state = 127, .external_lex_state = 5}, + [2171] = {.lex_state = 126, .external_lex_state = 3}, + [2172] = {.lex_state = 126, .external_lex_state = 3}, + [2173] = {.lex_state = 126, .external_lex_state = 3}, + [2174] = {.lex_state = 127, .external_lex_state = 5}, + [2175] = {.lex_state = 126, .external_lex_state = 3}, + [2176] = {.lex_state = 126, .external_lex_state = 3}, + [2177] = {.lex_state = 126, .external_lex_state = 4}, + [2178] = {.lex_state = 127, .external_lex_state = 2}, + [2179] = {.lex_state = 127, .external_lex_state = 5}, + [2180] = {.lex_state = 126, .external_lex_state = 3}, + [2181] = {.lex_state = 126, .external_lex_state = 3}, + [2182] = {.lex_state = 126, .external_lex_state = 3}, + [2183] = {.lex_state = 126, .external_lex_state = 3}, + [2184] = {.lex_state = 127, .external_lex_state = 2}, + [2185] = {.lex_state = 126, .external_lex_state = 3}, + [2186] = {.lex_state = 127, .external_lex_state = 2}, + [2187] = {.lex_state = 126, .external_lex_state = 4}, + [2188] = {.lex_state = 126, .external_lex_state = 3}, + [2189] = {.lex_state = 126, .external_lex_state = 4}, + [2190] = {.lex_state = 126, .external_lex_state = 4}, + [2191] = {.lex_state = 126, .external_lex_state = 4}, + [2192] = {.lex_state = 126, .external_lex_state = 3}, + [2193] = {.lex_state = 126, .external_lex_state = 3}, + [2194] = {.lex_state = 126, .external_lex_state = 4}, + [2195] = {.lex_state = 126, .external_lex_state = 4}, + [2196] = {.lex_state = 126, .external_lex_state = 3}, + [2197] = {.lex_state = 126, .external_lex_state = 4}, + [2198] = {.lex_state = 126, .external_lex_state = 4}, + [2199] = {.lex_state = 126, .external_lex_state = 3}, + [2200] = {.lex_state = 126, .external_lex_state = 3}, + [2201] = {.lex_state = 126, .external_lex_state = 4}, + [2202] = {.lex_state = 4, .external_lex_state = 4}, + [2203] = {.lex_state = 126, .external_lex_state = 4}, + [2204] = {.lex_state = 126, .external_lex_state = 3}, + [2205] = {.lex_state = 126, .external_lex_state = 4}, + [2206] = {.lex_state = 126, .external_lex_state = 4}, + [2207] = {.lex_state = 127, .external_lex_state = 5}, + [2208] = {.lex_state = 126, .external_lex_state = 3}, + [2209] = {.lex_state = 126, .external_lex_state = 3}, + [2210] = {.lex_state = 127, .external_lex_state = 5}, + [2211] = {.lex_state = 127, .external_lex_state = 2}, + [2212] = {.lex_state = 127, .external_lex_state = 5}, + [2213] = {.lex_state = 126, .external_lex_state = 4}, + [2214] = {.lex_state = 126, .external_lex_state = 4}, + [2215] = {.lex_state = 126, .external_lex_state = 4}, + [2216] = {.lex_state = 126, .external_lex_state = 4}, + [2217] = {.lex_state = 126, .external_lex_state = 4}, + [2218] = {.lex_state = 126, .external_lex_state = 4}, + [2219] = {.lex_state = 126, .external_lex_state = 3}, + [2220] = {.lex_state = 126, .external_lex_state = 4}, + [2221] = {.lex_state = 126, .external_lex_state = 4}, + [2222] = {.lex_state = 127, .external_lex_state = 5}, + [2223] = {.lex_state = 4, .external_lex_state = 4}, + [2224] = {.lex_state = 126, .external_lex_state = 3}, + [2225] = {.lex_state = 126, .external_lex_state = 4}, + [2226] = {.lex_state = 127, .external_lex_state = 5}, + [2227] = {.lex_state = 126, .external_lex_state = 4}, + [2228] = {.lex_state = 126, .external_lex_state = 4}, + [2229] = {.lex_state = 126, .external_lex_state = 3}, + [2230] = {.lex_state = 126, .external_lex_state = 4}, + [2231] = {.lex_state = 126, .external_lex_state = 4}, + [2232] = {.lex_state = 127, .external_lex_state = 5}, + [2233] = {.lex_state = 126, .external_lex_state = 4}, + [2234] = {.lex_state = 126, .external_lex_state = 3}, + [2235] = {.lex_state = 126, .external_lex_state = 4}, + [2236] = {.lex_state = 126, .external_lex_state = 4}, + [2237] = {.lex_state = 127, .external_lex_state = 5}, + [2238] = {.lex_state = 127, .external_lex_state = 5}, + [2239] = {.lex_state = 126, .external_lex_state = 4}, + [2240] = {.lex_state = 126, .external_lex_state = 4}, + [2241] = {.lex_state = 126, .external_lex_state = 3}, + [2242] = {.lex_state = 126, .external_lex_state = 4}, + [2243] = {.lex_state = 126, .external_lex_state = 3}, + [2244] = {.lex_state = 126, .external_lex_state = 4}, + [2245] = {.lex_state = 126, .external_lex_state = 3}, + [2246] = {.lex_state = 126, .external_lex_state = 4}, + [2247] = {.lex_state = 126, .external_lex_state = 4}, + [2248] = {.lex_state = 126, .external_lex_state = 4}, + [2249] = {.lex_state = 126, .external_lex_state = 3}, + [2250] = {.lex_state = 126, .external_lex_state = 4}, + [2251] = {.lex_state = 126, .external_lex_state = 4}, + [2252] = {.lex_state = 127, .external_lex_state = 5}, + [2253] = {.lex_state = 126, .external_lex_state = 3}, + [2254] = {.lex_state = 126, .external_lex_state = 4}, + [2255] = {.lex_state = 126, .external_lex_state = 4}, + [2256] = {.lex_state = 127, .external_lex_state = 5}, + [2257] = {.lex_state = 127, .external_lex_state = 5}, + [2258] = {.lex_state = 126, .external_lex_state = 3}, + [2259] = {.lex_state = 127, .external_lex_state = 5}, + [2260] = {.lex_state = 126, .external_lex_state = 4}, + [2261] = {.lex_state = 126, .external_lex_state = 4}, + [2262] = {.lex_state = 126, .external_lex_state = 4}, + [2263] = {.lex_state = 126, .external_lex_state = 4}, + [2264] = {.lex_state = 126, .external_lex_state = 4}, + [2265] = {.lex_state = 127, .external_lex_state = 5}, + [2266] = {.lex_state = 127, .external_lex_state = 5}, + [2267] = {.lex_state = 126, .external_lex_state = 3}, + [2268] = {.lex_state = 126, .external_lex_state = 3}, + [2269] = {.lex_state = 126, .external_lex_state = 3}, + [2270] = {.lex_state = 126, .external_lex_state = 3}, + [2271] = {.lex_state = 126, .external_lex_state = 3}, + [2272] = {.lex_state = 127, .external_lex_state = 5}, + [2273] = {.lex_state = 126, .external_lex_state = 4}, + [2274] = {.lex_state = 127, .external_lex_state = 5}, + [2275] = {.lex_state = 126, .external_lex_state = 4}, + [2276] = {.lex_state = 127, .external_lex_state = 5}, + [2277] = {.lex_state = 126, .external_lex_state = 3}, + [2278] = {.lex_state = 126, .external_lex_state = 3}, + [2279] = {.lex_state = 127, .external_lex_state = 5}, + [2280] = {.lex_state = 126, .external_lex_state = 3}, + [2281] = {.lex_state = 126, .external_lex_state = 3}, + [2282] = {.lex_state = 126, .external_lex_state = 4}, + [2283] = {.lex_state = 126, .external_lex_state = 3}, + [2284] = {.lex_state = 126, .external_lex_state = 4}, + [2285] = {.lex_state = 126, .external_lex_state = 3}, + [2286] = {.lex_state = 126, .external_lex_state = 3}, + [2287] = {.lex_state = 126, .external_lex_state = 3}, + [2288] = {.lex_state = 127, .external_lex_state = 5}, + [2289] = {.lex_state = 126, .external_lex_state = 3}, + [2290] = {.lex_state = 126, .external_lex_state = 4}, + [2291] = {.lex_state = 126, .external_lex_state = 3}, + [2292] = {.lex_state = 126, .external_lex_state = 4}, + [2293] = {.lex_state = 126, .external_lex_state = 3}, + [2294] = {.lex_state = 126, .external_lex_state = 3}, + [2295] = {.lex_state = 127, .external_lex_state = 5}, + [2296] = {.lex_state = 126, .external_lex_state = 3}, + [2297] = {.lex_state = 126, .external_lex_state = 4}, + [2298] = {.lex_state = 126, .external_lex_state = 3}, + [2299] = {.lex_state = 126, .external_lex_state = 3}, + [2300] = {.lex_state = 126, .external_lex_state = 3}, + [2301] = {.lex_state = 126, .external_lex_state = 4}, + [2302] = {.lex_state = 126, .external_lex_state = 4}, + [2303] = {.lex_state = 126, .external_lex_state = 4}, + [2304] = {.lex_state = 126, .external_lex_state = 3}, + [2305] = {.lex_state = 127, .external_lex_state = 5}, + [2306] = {.lex_state = 126, .external_lex_state = 3}, + [2307] = {.lex_state = 127, .external_lex_state = 5}, + [2308] = {.lex_state = 126, .external_lex_state = 3}, + [2309] = {.lex_state = 126, .external_lex_state = 4}, + [2310] = {.lex_state = 126, .external_lex_state = 3}, + [2311] = {.lex_state = 126, .external_lex_state = 4}, + [2312] = {.lex_state = 126, .external_lex_state = 4}, + [2313] = {.lex_state = 126, .external_lex_state = 4}, + [2314] = {.lex_state = 126, .external_lex_state = 4}, + [2315] = {.lex_state = 126, .external_lex_state = 4}, + [2316] = {.lex_state = 126, .external_lex_state = 4}, + [2317] = {.lex_state = 126, .external_lex_state = 3}, + [2318] = {.lex_state = 127, .external_lex_state = 5}, + [2319] = {.lex_state = 126, .external_lex_state = 4}, + [2320] = {.lex_state = 126, .external_lex_state = 4}, + [2321] = {.lex_state = 126, .external_lex_state = 3}, + [2322] = {.lex_state = 126, .external_lex_state = 3}, + [2323] = {.lex_state = 127, .external_lex_state = 5}, + [2324] = {.lex_state = 126, .external_lex_state = 3}, + [2325] = {.lex_state = 126, .external_lex_state = 3}, + [2326] = {.lex_state = 127, .external_lex_state = 5}, + [2327] = {.lex_state = 126, .external_lex_state = 3}, + [2328] = {.lex_state = 127, .external_lex_state = 5}, + [2329] = {.lex_state = 126, .external_lex_state = 4}, + [2330] = {.lex_state = 127, .external_lex_state = 5}, + [2331] = {.lex_state = 126, .external_lex_state = 3}, + [2332] = {.lex_state = 126, .external_lex_state = 4}, + [2333] = {.lex_state = 127, .external_lex_state = 2}, + [2334] = {.lex_state = 126, .external_lex_state = 3}, + [2335] = {.lex_state = 127, .external_lex_state = 5}, + [2336] = {.lex_state = 126, .external_lex_state = 4}, + [2337] = {.lex_state = 127, .external_lex_state = 2}, + [2338] = {.lex_state = 126, .external_lex_state = 4}, + [2339] = {.lex_state = 126, .external_lex_state = 4}, + [2340] = {.lex_state = 127, .external_lex_state = 2}, + [2341] = {.lex_state = 126, .external_lex_state = 4}, + [2342] = {.lex_state = 126, .external_lex_state = 3}, + [2343] = {.lex_state = 127, .external_lex_state = 5}, + [2344] = {.lex_state = 127, .external_lex_state = 5}, + [2345] = {.lex_state = 126, .external_lex_state = 3}, + [2346] = {.lex_state = 127, .external_lex_state = 5}, + [2347] = {.lex_state = 126, .external_lex_state = 4}, + [2348] = {.lex_state = 126, .external_lex_state = 3}, + [2349] = {.lex_state = 126, .external_lex_state = 4}, + [2350] = {.lex_state = 126, .external_lex_state = 4}, + [2351] = {.lex_state = 126, .external_lex_state = 4}, + [2352] = {.lex_state = 126, .external_lex_state = 4}, + [2353] = {.lex_state = 126, .external_lex_state = 4}, + [2354] = {.lex_state = 126, .external_lex_state = 4}, + [2355] = {.lex_state = 126, .external_lex_state = 3}, + [2356] = {.lex_state = 126, .external_lex_state = 3}, + [2357] = {.lex_state = 127, .external_lex_state = 2}, + [2358] = {.lex_state = 127, .external_lex_state = 5}, + [2359] = {.lex_state = 127, .external_lex_state = 5}, + [2360] = {.lex_state = 127, .external_lex_state = 2}, + [2361] = {.lex_state = 126, .external_lex_state = 3}, + [2362] = {.lex_state = 127, .external_lex_state = 2}, + [2363] = {.lex_state = 127, .external_lex_state = 5}, + [2364] = {.lex_state = 127, .external_lex_state = 5}, + [2365] = {.lex_state = 127, .external_lex_state = 5}, + [2366] = {.lex_state = 127, .external_lex_state = 5}, + [2367] = {.lex_state = 127, .external_lex_state = 2}, + [2368] = {.lex_state = 127, .external_lex_state = 5}, + [2369] = {.lex_state = 127, .external_lex_state = 5}, + [2370] = {.lex_state = 127, .external_lex_state = 5}, + [2371] = {.lex_state = 127, .external_lex_state = 5}, + [2372] = {.lex_state = 127, .external_lex_state = 5}, + [2373] = {.lex_state = 127, .external_lex_state = 5}, + [2374] = {.lex_state = 127, .external_lex_state = 5}, + [2375] = {.lex_state = 127, .external_lex_state = 5}, + [2376] = {.lex_state = 127, .external_lex_state = 5}, + [2377] = {.lex_state = 126, .external_lex_state = 3}, + [2378] = {.lex_state = 127, .external_lex_state = 5}, + [2379] = {.lex_state = 127, .external_lex_state = 5}, + [2380] = {.lex_state = 127, .external_lex_state = 5}, + [2381] = {.lex_state = 126, .external_lex_state = 4}, + [2382] = {.lex_state = 126, .external_lex_state = 4}, + [2383] = {.lex_state = 127, .external_lex_state = 2}, + [2384] = {.lex_state = 4, .external_lex_state = 3}, + [2385] = {.lex_state = 126, .external_lex_state = 3}, + [2386] = {.lex_state = 126, .external_lex_state = 3}, + [2387] = {.lex_state = 127, .external_lex_state = 2}, + [2388] = {.lex_state = 127, .external_lex_state = 5}, + [2389] = {.lex_state = 127, .external_lex_state = 2}, + [2390] = {.lex_state = 127, .external_lex_state = 2}, + [2391] = {.lex_state = 126, .external_lex_state = 3}, + [2392] = {.lex_state = 127, .external_lex_state = 5}, + [2393] = {.lex_state = 126, .external_lex_state = 4}, + [2394] = {.lex_state = 126, .external_lex_state = 4}, + [2395] = {.lex_state = 126, .external_lex_state = 3}, + [2396] = {.lex_state = 126, .external_lex_state = 3}, + [2397] = {.lex_state = 126, .external_lex_state = 3}, + [2398] = {.lex_state = 127, .external_lex_state = 2}, + [2399] = {.lex_state = 126, .external_lex_state = 4}, + [2400] = {.lex_state = 126, .external_lex_state = 3}, + [2401] = {.lex_state = 126, .external_lex_state = 3}, + [2402] = {.lex_state = 126, .external_lex_state = 3}, + [2403] = {.lex_state = 127, .external_lex_state = 2}, + [2404] = {.lex_state = 126, .external_lex_state = 4}, + [2405] = {.lex_state = 126, .external_lex_state = 4}, + [2406] = {.lex_state = 126, .external_lex_state = 3}, + [2407] = {.lex_state = 126, .external_lex_state = 3}, + [2408] = {.lex_state = 126, .external_lex_state = 3}, + [2409] = {.lex_state = 126, .external_lex_state = 4}, + [2410] = {.lex_state = 126, .external_lex_state = 4}, + [2411] = {.lex_state = 126, .external_lex_state = 3}, + [2412] = {.lex_state = 127, .external_lex_state = 5}, + [2413] = {.lex_state = 127, .external_lex_state = 5}, + [2414] = {.lex_state = 127, .external_lex_state = 5}, + [2415] = {.lex_state = 127, .external_lex_state = 5}, + [2416] = {.lex_state = 126, .external_lex_state = 4}, + [2417] = {.lex_state = 126, .external_lex_state = 4}, + [2418] = {.lex_state = 126, .external_lex_state = 3}, + [2419] = {.lex_state = 126, .external_lex_state = 4}, + [2420] = {.lex_state = 126, .external_lex_state = 3}, + [2421] = {.lex_state = 126, .external_lex_state = 3}, + [2422] = {.lex_state = 126, .external_lex_state = 3}, + [2423] = {.lex_state = 126, .external_lex_state = 3}, + [2424] = {.lex_state = 126, .external_lex_state = 3}, + [2425] = {.lex_state = 126, .external_lex_state = 3}, + [2426] = {.lex_state = 126, .external_lex_state = 3}, + [2427] = {.lex_state = 126, .external_lex_state = 3}, + [2428] = {.lex_state = 126, .external_lex_state = 3}, + [2429] = {.lex_state = 126, .external_lex_state = 3}, + [2430] = {.lex_state = 126, .external_lex_state = 3}, + [2431] = {.lex_state = 126, .external_lex_state = 3}, + [2432] = {.lex_state = 126, .external_lex_state = 3}, + [2433] = {.lex_state = 126, .external_lex_state = 3}, + [2434] = {.lex_state = 126, .external_lex_state = 3}, + [2435] = {.lex_state = 126, .external_lex_state = 3}, + [2436] = {.lex_state = 126, .external_lex_state = 3}, + [2437] = {.lex_state = 126, .external_lex_state = 3}, + [2438] = {.lex_state = 126, .external_lex_state = 3}, + [2439] = {.lex_state = 126, .external_lex_state = 3}, + [2440] = {.lex_state = 126, .external_lex_state = 3}, + [2441] = {.lex_state = 126, .external_lex_state = 3}, + [2442] = {.lex_state = 126, .external_lex_state = 3}, + [2443] = {.lex_state = 126, .external_lex_state = 3}, + [2444] = {.lex_state = 126, .external_lex_state = 3}, + [2445] = {.lex_state = 126, .external_lex_state = 3}, + [2446] = {.lex_state = 126, .external_lex_state = 3}, + [2447] = {.lex_state = 126, .external_lex_state = 3}, + [2448] = {.lex_state = 126, .external_lex_state = 3}, + [2449] = {.lex_state = 126, .external_lex_state = 3}, + [2450] = {.lex_state = 126, .external_lex_state = 3}, + [2451] = {.lex_state = 126, .external_lex_state = 3}, + [2452] = {.lex_state = 126, .external_lex_state = 3}, + [2453] = {.lex_state = 126, .external_lex_state = 3}, + [2454] = {.lex_state = 126, .external_lex_state = 3}, + [2455] = {.lex_state = 126, .external_lex_state = 3}, + [2456] = {.lex_state = 126, .external_lex_state = 3}, + [2457] = {.lex_state = 126, .external_lex_state = 3}, + [2458] = {.lex_state = 126, .external_lex_state = 3}, + [2459] = {.lex_state = 126, .external_lex_state = 3}, + [2460] = {.lex_state = 126, .external_lex_state = 3}, + [2461] = {.lex_state = 126, .external_lex_state = 3}, + [2462] = {.lex_state = 126, .external_lex_state = 3}, + [2463] = {.lex_state = 126, .external_lex_state = 3}, + [2464] = {.lex_state = 126, .external_lex_state = 3}, + [2465] = {.lex_state = 126, .external_lex_state = 3}, + [2466] = {.lex_state = 126, .external_lex_state = 3}, + [2467] = {.lex_state = 126, .external_lex_state = 3}, + [2468] = {.lex_state = 126, .external_lex_state = 3}, + [2469] = {.lex_state = 126, .external_lex_state = 3}, + [2470] = {.lex_state = 126, .external_lex_state = 3}, + [2471] = {.lex_state = 126, .external_lex_state = 3}, + [2472] = {.lex_state = 126, .external_lex_state = 3}, + [2473] = {.lex_state = 126, .external_lex_state = 3}, + [2474] = {.lex_state = 126, .external_lex_state = 3}, + [2475] = {.lex_state = 126, .external_lex_state = 3}, + [2476] = {.lex_state = 126, .external_lex_state = 3}, + [2477] = {.lex_state = 126, .external_lex_state = 3}, + [2478] = {.lex_state = 126, .external_lex_state = 3}, + [2479] = {.lex_state = 126, .external_lex_state = 3}, + [2480] = {.lex_state = 126, .external_lex_state = 3}, + [2481] = {.lex_state = 126, .external_lex_state = 3}, + [2482] = {.lex_state = 126, .external_lex_state = 3}, + [2483] = {.lex_state = 126, .external_lex_state = 3}, + [2484] = {.lex_state = 126, .external_lex_state = 3}, + [2485] = {.lex_state = 126, .external_lex_state = 3}, + [2486] = {.lex_state = 126, .external_lex_state = 3}, + [2487] = {.lex_state = 126, .external_lex_state = 3}, + [2488] = {.lex_state = 126, .external_lex_state = 3}, + [2489] = {.lex_state = 126, .external_lex_state = 3}, + [2490] = {.lex_state = 126, .external_lex_state = 3}, + [2491] = {.lex_state = 126, .external_lex_state = 3}, + [2492] = {.lex_state = 126, .external_lex_state = 3}, + [2493] = {.lex_state = 126, .external_lex_state = 3}, + [2494] = {.lex_state = 126, .external_lex_state = 3}, + [2495] = {.lex_state = 126, .external_lex_state = 3}, + [2496] = {.lex_state = 127, .external_lex_state = 2}, + [2497] = {.lex_state = 126, .external_lex_state = 3}, + [2498] = {.lex_state = 127, .external_lex_state = 5}, + [2499] = {.lex_state = 127, .external_lex_state = 5}, + [2500] = {.lex_state = 127, .external_lex_state = 5}, + [2501] = {.lex_state = 127, .external_lex_state = 5}, + [2502] = {.lex_state = 126, .external_lex_state = 3}, + [2503] = {.lex_state = 126, .external_lex_state = 3}, + [2504] = {.lex_state = 126, .external_lex_state = 3}, + [2505] = {.lex_state = 126, .external_lex_state = 3}, + [2506] = {.lex_state = 126, .external_lex_state = 3}, + [2507] = {.lex_state = 126, .external_lex_state = 3}, + [2508] = {.lex_state = 126, .external_lex_state = 3}, + [2509] = {.lex_state = 126, .external_lex_state = 3}, + [2510] = {.lex_state = 126, .external_lex_state = 3}, + [2511] = {.lex_state = 126, .external_lex_state = 3}, + [2512] = {.lex_state = 126, .external_lex_state = 3}, + [2513] = {.lex_state = 126, .external_lex_state = 3}, + [2514] = {.lex_state = 126, .external_lex_state = 3}, + [2515] = {.lex_state = 127, .external_lex_state = 5}, + [2516] = {.lex_state = 127, .external_lex_state = 5}, + [2517] = {.lex_state = 127, .external_lex_state = 5}, + [2518] = {.lex_state = 127, .external_lex_state = 5}, + [2519] = {.lex_state = 127, .external_lex_state = 5}, + [2520] = {.lex_state = 126, .external_lex_state = 3}, + [2521] = {.lex_state = 127, .external_lex_state = 2}, + [2522] = {.lex_state = 127, .external_lex_state = 5}, + [2523] = {.lex_state = 127, .external_lex_state = 5}, + [2524] = {.lex_state = 127, .external_lex_state = 2}, + [2525] = {.lex_state = 126, .external_lex_state = 3}, + [2526] = {.lex_state = 126, .external_lex_state = 3}, + [2527] = {.lex_state = 126, .external_lex_state = 3}, + [2528] = {.lex_state = 126, .external_lex_state = 3}, + [2529] = {.lex_state = 127, .external_lex_state = 2}, + [2530] = {.lex_state = 126, .external_lex_state = 3}, + [2531] = {.lex_state = 126, .external_lex_state = 3}, + [2532] = {.lex_state = 126, .external_lex_state = 4}, + [2533] = {.lex_state = 126, .external_lex_state = 3}, + [2534] = {.lex_state = 126, .external_lex_state = 3}, + [2535] = {.lex_state = 126, .external_lex_state = 3}, + [2536] = {.lex_state = 127, .external_lex_state = 2}, + [2537] = {.lex_state = 126, .external_lex_state = 3}, + [2538] = {.lex_state = 127, .external_lex_state = 2}, + [2539] = {.lex_state = 126, .external_lex_state = 3}, + [2540] = {.lex_state = 126, .external_lex_state = 3}, + [2541] = {.lex_state = 126, .external_lex_state = 3}, + [2542] = {.lex_state = 126, .external_lex_state = 3}, + [2543] = {.lex_state = 126, .external_lex_state = 3}, + [2544] = {.lex_state = 126, .external_lex_state = 3}, + [2545] = {.lex_state = 126, .external_lex_state = 3}, + [2546] = {.lex_state = 127, .external_lex_state = 2}, + [2547] = {.lex_state = 126, .external_lex_state = 3}, + [2548] = {.lex_state = 126, .external_lex_state = 3}, + [2549] = {.lex_state = 126, .external_lex_state = 3}, + [2550] = {.lex_state = 126, .external_lex_state = 3}, + [2551] = {.lex_state = 126, .external_lex_state = 3}, + [2552] = {.lex_state = 126, .external_lex_state = 3}, + [2553] = {.lex_state = 126, .external_lex_state = 3}, + [2554] = {.lex_state = 126, .external_lex_state = 3}, + [2555] = {.lex_state = 126, .external_lex_state = 3}, + [2556] = {.lex_state = 127, .external_lex_state = 2}, + [2557] = {.lex_state = 126, .external_lex_state = 3}, + [2558] = {.lex_state = 126, .external_lex_state = 3}, + [2559] = {.lex_state = 126, .external_lex_state = 3}, + [2560] = {.lex_state = 126, .external_lex_state = 3}, + [2561] = {.lex_state = 127, .external_lex_state = 5}, + [2562] = {.lex_state = 127, .external_lex_state = 5}, + [2563] = {.lex_state = 127, .external_lex_state = 5}, + [2564] = {.lex_state = 127, .external_lex_state = 5}, + [2565] = {.lex_state = 127, .external_lex_state = 2}, + [2566] = {.lex_state = 127, .external_lex_state = 2}, + [2567] = {.lex_state = 127, .external_lex_state = 2}, + [2568] = {.lex_state = 127, .external_lex_state = 2}, + [2569] = {.lex_state = 127, .external_lex_state = 5}, + [2570] = {.lex_state = 127, .external_lex_state = 5}, + [2571] = {.lex_state = 127, .external_lex_state = 5}, + [2572] = {.lex_state = 127, .external_lex_state = 5}, + [2573] = {.lex_state = 127, .external_lex_state = 2}, + [2574] = {.lex_state = 127, .external_lex_state = 2}, + [2575] = {.lex_state = 127, .external_lex_state = 2}, + [2576] = {.lex_state = 127, .external_lex_state = 5}, + [2577] = {.lex_state = 127, .external_lex_state = 5}, + [2578] = {.lex_state = 127, .external_lex_state = 5}, + [2579] = {.lex_state = 127, .external_lex_state = 2}, + [2580] = {.lex_state = 126, .external_lex_state = 3}, + [2581] = {.lex_state = 127, .external_lex_state = 2}, + [2582] = {.lex_state = 4, .external_lex_state = 3}, + [2583] = {.lex_state = 127, .external_lex_state = 5}, + [2584] = {.lex_state = 127, .external_lex_state = 5}, + [2585] = {.lex_state = 127, .external_lex_state = 2}, + [2586] = {.lex_state = 127, .external_lex_state = 2}, + [2587] = {.lex_state = 127, .external_lex_state = 2}, + [2588] = {.lex_state = 127, .external_lex_state = 5}, + [2589] = {.lex_state = 127, .external_lex_state = 2}, + [2590] = {.lex_state = 127, .external_lex_state = 5}, + [2591] = {.lex_state = 127, .external_lex_state = 2}, + [2592] = {.lex_state = 127, .external_lex_state = 5}, + [2593] = {.lex_state = 127, .external_lex_state = 2}, + [2594] = {.lex_state = 127, .external_lex_state = 2}, + [2595] = {.lex_state = 127, .external_lex_state = 5}, + [2596] = {.lex_state = 126, .external_lex_state = 3}, + [2597] = {.lex_state = 126, .external_lex_state = 3}, + [2598] = {.lex_state = 126, .external_lex_state = 3}, + [2599] = {.lex_state = 126, .external_lex_state = 3}, + [2600] = {.lex_state = 9, .external_lex_state = 5}, + [2601] = {.lex_state = 9, .external_lex_state = 5}, + [2602] = {.lex_state = 9, .external_lex_state = 5}, + [2603] = {.lex_state = 9, .external_lex_state = 5}, + [2604] = {.lex_state = 9, .external_lex_state = 5}, + [2605] = {.lex_state = 9, .external_lex_state = 5}, + [2606] = {.lex_state = 9, .external_lex_state = 5}, + [2607] = {.lex_state = 9, .external_lex_state = 5}, + [2608] = {.lex_state = 126, .external_lex_state = 3}, + [2609] = {.lex_state = 9, .external_lex_state = 5}, + [2610] = {.lex_state = 9, .external_lex_state = 5}, + [2611] = {.lex_state = 9, .external_lex_state = 5}, + [2612] = {.lex_state = 9, .external_lex_state = 5}, + [2613] = {.lex_state = 9, .external_lex_state = 5}, + [2614] = {.lex_state = 126, .external_lex_state = 3}, + [2615] = {.lex_state = 9, .external_lex_state = 5}, + [2616] = {.lex_state = 9, .external_lex_state = 5}, + [2617] = {.lex_state = 9, .external_lex_state = 5}, + [2618] = {.lex_state = 9, .external_lex_state = 5}, + [2619] = {.lex_state = 9, .external_lex_state = 5}, + [2620] = {.lex_state = 9, .external_lex_state = 5}, + [2621] = {.lex_state = 9, .external_lex_state = 5}, + [2622] = {.lex_state = 9, .external_lex_state = 5}, + [2623] = {.lex_state = 9, .external_lex_state = 5}, + [2624] = {.lex_state = 9, .external_lex_state = 5}, + [2625] = {.lex_state = 9, .external_lex_state = 5}, + [2626] = {.lex_state = 9, .external_lex_state = 5}, + [2627] = {.lex_state = 126, .external_lex_state = 3}, + [2628] = {.lex_state = 9, .external_lex_state = 5}, + [2629] = {.lex_state = 9, .external_lex_state = 5}, + [2630] = {.lex_state = 9, .external_lex_state = 5}, + [2631] = {.lex_state = 9, .external_lex_state = 5}, + [2632] = {.lex_state = 9, .external_lex_state = 5}, + [2633] = {.lex_state = 9, .external_lex_state = 5}, + [2634] = {.lex_state = 9, .external_lex_state = 5}, + [2635] = {.lex_state = 126, .external_lex_state = 3}, + [2636] = {.lex_state = 9, .external_lex_state = 5}, + [2637] = {.lex_state = 9, .external_lex_state = 5}, + [2638] = {.lex_state = 9, .external_lex_state = 5}, + [2639] = {.lex_state = 126, .external_lex_state = 3}, + [2640] = {.lex_state = 9, .external_lex_state = 5}, + [2641] = {.lex_state = 9, .external_lex_state = 5}, + [2642] = {.lex_state = 9, .external_lex_state = 5}, + [2643] = {.lex_state = 126, .external_lex_state = 3}, + [2644] = {.lex_state = 9, .external_lex_state = 5}, + [2645] = {.lex_state = 9, .external_lex_state = 5}, + [2646] = {.lex_state = 126, .external_lex_state = 3}, + [2647] = {.lex_state = 9, .external_lex_state = 5}, + [2648] = {.lex_state = 9, .external_lex_state = 5}, + [2649] = {.lex_state = 126, .external_lex_state = 3}, + [2650] = {.lex_state = 9, .external_lex_state = 5}, + [2651] = {.lex_state = 9, .external_lex_state = 5}, + [2652] = {.lex_state = 126, .external_lex_state = 3}, + [2653] = {.lex_state = 9, .external_lex_state = 5}, + [2654] = {.lex_state = 127, .external_lex_state = 2}, + [2655] = {.lex_state = 9, .external_lex_state = 5}, + [2656] = {.lex_state = 9, .external_lex_state = 5}, + [2657] = {.lex_state = 9, .external_lex_state = 5}, + [2658] = {.lex_state = 126, .external_lex_state = 3}, + [2659] = {.lex_state = 9, .external_lex_state = 5}, + [2660] = {.lex_state = 9, .external_lex_state = 5}, + [2661] = {.lex_state = 127, .external_lex_state = 2}, + [2662] = {.lex_state = 9, .external_lex_state = 5}, + [2663] = {.lex_state = 9, .external_lex_state = 5}, + [2664] = {.lex_state = 9, .external_lex_state = 2}, + [2665] = {.lex_state = 9, .external_lex_state = 2}, + [2666] = {.lex_state = 127, .external_lex_state = 2}, + [2667] = {.lex_state = 126, .external_lex_state = 3}, + [2668] = {.lex_state = 9, .external_lex_state = 2}, + [2669] = {.lex_state = 127, .external_lex_state = 2}, + [2670] = {.lex_state = 9, .external_lex_state = 2}, + [2671] = {.lex_state = 127, .external_lex_state = 2}, + [2672] = {.lex_state = 9, .external_lex_state = 2}, + [2673] = {.lex_state = 9, .external_lex_state = 2}, + [2674] = {.lex_state = 9, .external_lex_state = 2}, + [2675] = {.lex_state = 127, .external_lex_state = 2}, + [2676] = {.lex_state = 127, .external_lex_state = 2}, + [2677] = {.lex_state = 127, .external_lex_state = 2}, + [2678] = {.lex_state = 127, .external_lex_state = 2}, + [2679] = {.lex_state = 127, .external_lex_state = 2}, + [2680] = {.lex_state = 127, .external_lex_state = 2}, + [2681] = {.lex_state = 127, .external_lex_state = 2}, + [2682] = {.lex_state = 127, .external_lex_state = 2}, + [2683] = {.lex_state = 127, .external_lex_state = 2}, + [2684] = {.lex_state = 127, .external_lex_state = 2}, + [2685] = {.lex_state = 127, .external_lex_state = 2}, + [2686] = {.lex_state = 127, .external_lex_state = 2}, + [2687] = {.lex_state = 127, .external_lex_state = 2}, + [2688] = {.lex_state = 127, .external_lex_state = 2}, + [2689] = {.lex_state = 127, .external_lex_state = 2}, + [2690] = {.lex_state = 127, .external_lex_state = 2}, + [2691] = {.lex_state = 127, .external_lex_state = 2}, + [2692] = {.lex_state = 127, .external_lex_state = 2}, + [2693] = {.lex_state = 127, .external_lex_state = 2}, + [2694] = {.lex_state = 127, .external_lex_state = 2}, + [2695] = {.lex_state = 127, .external_lex_state = 2}, + [2696] = {.lex_state = 127, .external_lex_state = 2}, + [2697] = {.lex_state = 127, .external_lex_state = 2}, + [2698] = {.lex_state = 127, .external_lex_state = 2}, + [2699] = {.lex_state = 127, .external_lex_state = 2}, + [2700] = {.lex_state = 127, .external_lex_state = 2}, + [2701] = {.lex_state = 127, .external_lex_state = 2}, + [2702] = {.lex_state = 127, .external_lex_state = 2}, + [2703] = {.lex_state = 127, .external_lex_state = 2}, + [2704] = {.lex_state = 127, .external_lex_state = 2}, + [2705] = {.lex_state = 127, .external_lex_state = 2}, + [2706] = {.lex_state = 127, .external_lex_state = 2}, + [2707] = {.lex_state = 127, .external_lex_state = 2}, + [2708] = {.lex_state = 127, .external_lex_state = 2}, + [2709] = {.lex_state = 127, .external_lex_state = 2}, + [2710] = {.lex_state = 127, .external_lex_state = 2}, + [2711] = {.lex_state = 127, .external_lex_state = 2}, + [2712] = {.lex_state = 127, .external_lex_state = 2}, + [2713] = {.lex_state = 127, .external_lex_state = 2}, + [2714] = {.lex_state = 127, .external_lex_state = 2}, + [2715] = {.lex_state = 127, .external_lex_state = 2}, + [2716] = {.lex_state = 127, .external_lex_state = 2}, + [2717] = {.lex_state = 127, .external_lex_state = 2}, + [2718] = {.lex_state = 127, .external_lex_state = 2}, + [2719] = {.lex_state = 127, .external_lex_state = 2}, + [2720] = {.lex_state = 127, .external_lex_state = 2}, + [2721] = {.lex_state = 127, .external_lex_state = 2}, + [2722] = {.lex_state = 127, .external_lex_state = 2}, + [2723] = {.lex_state = 127, .external_lex_state = 2}, + [2724] = {.lex_state = 127, .external_lex_state = 2}, + [2725] = {.lex_state = 127, .external_lex_state = 2}, + [2726] = {.lex_state = 127, .external_lex_state = 2}, + [2727] = {.lex_state = 127, .external_lex_state = 2}, + [2728] = {.lex_state = 127, .external_lex_state = 2}, + [2729] = {.lex_state = 127, .external_lex_state = 2}, + [2730] = {.lex_state = 127, .external_lex_state = 2}, + [2731] = {.lex_state = 127, .external_lex_state = 2}, + [2732] = {.lex_state = 127, .external_lex_state = 2}, + [2733] = {.lex_state = 127, .external_lex_state = 2}, + [2734] = {.lex_state = 127, .external_lex_state = 2}, + [2735] = {.lex_state = 127, .external_lex_state = 2}, + [2736] = {.lex_state = 127, .external_lex_state = 2}, + [2737] = {.lex_state = 127, .external_lex_state = 2}, + [2738] = {.lex_state = 127, .external_lex_state = 2}, + [2739] = {.lex_state = 127, .external_lex_state = 2}, + [2740] = {.lex_state = 127, .external_lex_state = 2}, + [2741] = {.lex_state = 127, .external_lex_state = 2}, + [2742] = {.lex_state = 127, .external_lex_state = 2}, + [2743] = {.lex_state = 127, .external_lex_state = 2}, + [2744] = {.lex_state = 127, .external_lex_state = 2}, + [2745] = {.lex_state = 127, .external_lex_state = 2}, + [2746] = {.lex_state = 127, .external_lex_state = 2}, + [2747] = {.lex_state = 127, .external_lex_state = 2}, + [2748] = {.lex_state = 127, .external_lex_state = 2}, + [2749] = {.lex_state = 127, .external_lex_state = 2}, + [2750] = {.lex_state = 127, .external_lex_state = 2}, + [2751] = {.lex_state = 127, .external_lex_state = 2}, + [2752] = {.lex_state = 127, .external_lex_state = 2}, + [2753] = {.lex_state = 127, .external_lex_state = 2}, + [2754] = {.lex_state = 127, .external_lex_state = 2}, + [2755] = {.lex_state = 127, .external_lex_state = 2}, + [2756] = {.lex_state = 127, .external_lex_state = 2}, + [2757] = {.lex_state = 127, .external_lex_state = 2}, + [2758] = {.lex_state = 127, .external_lex_state = 2}, + [2759] = {.lex_state = 127, .external_lex_state = 2}, + [2760] = {.lex_state = 127, .external_lex_state = 2}, + [2761] = {.lex_state = 127, .external_lex_state = 2}, + [2762] = {.lex_state = 127, .external_lex_state = 2}, + [2763] = {.lex_state = 127, .external_lex_state = 2}, + [2764] = {.lex_state = 127, .external_lex_state = 2}, + [2765] = {.lex_state = 127, .external_lex_state = 2}, + [2766] = {.lex_state = 127, .external_lex_state = 2}, + [2767] = {.lex_state = 127, .external_lex_state = 2}, + [2768] = {.lex_state = 127, .external_lex_state = 2}, + [2769] = {.lex_state = 127, .external_lex_state = 2}, + [2770] = {.lex_state = 127, .external_lex_state = 2}, + [2771] = {.lex_state = 127, .external_lex_state = 2}, + [2772] = {.lex_state = 127, .external_lex_state = 2}, + [2773] = {.lex_state = 127, .external_lex_state = 2}, + [2774] = {.lex_state = 127, .external_lex_state = 2}, + [2775] = {.lex_state = 127, .external_lex_state = 2}, + [2776] = {.lex_state = 127, .external_lex_state = 2}, + [2777] = {.lex_state = 127, .external_lex_state = 2}, + [2778] = {.lex_state = 127, .external_lex_state = 2}, + [2779] = {.lex_state = 127, .external_lex_state = 2}, + [2780] = {.lex_state = 127, .external_lex_state = 2}, + [2781] = {.lex_state = 127, .external_lex_state = 2}, + [2782] = {.lex_state = 127, .external_lex_state = 2}, + [2783] = {.lex_state = 127, .external_lex_state = 2}, + [2784] = {.lex_state = 127, .external_lex_state = 2}, + [2785] = {.lex_state = 127, .external_lex_state = 2}, + [2786] = {.lex_state = 127, .external_lex_state = 2}, + [2787] = {.lex_state = 127, .external_lex_state = 2}, + [2788] = {.lex_state = 127, .external_lex_state = 2}, + [2789] = {.lex_state = 127, .external_lex_state = 2}, + [2790] = {.lex_state = 127, .external_lex_state = 2}, + [2791] = {.lex_state = 127, .external_lex_state = 2}, + [2792] = {.lex_state = 127, .external_lex_state = 2}, + [2793] = {.lex_state = 127, .external_lex_state = 2}, + [2794] = {.lex_state = 127, .external_lex_state = 2}, + [2795] = {.lex_state = 127, .external_lex_state = 2}, + [2796] = {.lex_state = 127, .external_lex_state = 2}, + [2797] = {.lex_state = 127, .external_lex_state = 2}, + [2798] = {.lex_state = 127, .external_lex_state = 2}, + [2799] = {.lex_state = 127, .external_lex_state = 2}, + [2800] = {.lex_state = 127, .external_lex_state = 2}, + [2801] = {.lex_state = 127, .external_lex_state = 2}, + [2802] = {.lex_state = 127, .external_lex_state = 2}, + [2803] = {.lex_state = 127, .external_lex_state = 2}, + [2804] = {.lex_state = 127, .external_lex_state = 2}, + [2805] = {.lex_state = 127, .external_lex_state = 2}, + [2806] = {.lex_state = 127, .external_lex_state = 2}, + [2807] = {.lex_state = 127, .external_lex_state = 2}, + [2808] = {.lex_state = 127, .external_lex_state = 2}, + [2809] = {.lex_state = 127, .external_lex_state = 2}, + [2810] = {.lex_state = 127, .external_lex_state = 2}, + [2811] = {.lex_state = 127, .external_lex_state = 2}, + [2812] = {.lex_state = 127, .external_lex_state = 2}, + [2813] = {.lex_state = 127, .external_lex_state = 2}, + [2814] = {.lex_state = 127, .external_lex_state = 2}, + [2815] = {.lex_state = 127, .external_lex_state = 2}, + [2816] = {.lex_state = 127, .external_lex_state = 2}, + [2817] = {.lex_state = 127, .external_lex_state = 2}, + [2818] = {.lex_state = 127, .external_lex_state = 2}, + [2819] = {.lex_state = 127, .external_lex_state = 2}, + [2820] = {.lex_state = 127, .external_lex_state = 2}, + [2821] = {.lex_state = 127, .external_lex_state = 2}, + [2822] = {.lex_state = 127, .external_lex_state = 2}, + [2823] = {.lex_state = 127, .external_lex_state = 2}, + [2824] = {.lex_state = 127, .external_lex_state = 2}, + [2825] = {.lex_state = 127, .external_lex_state = 2}, + [2826] = {.lex_state = 127, .external_lex_state = 2}, + [2827] = {.lex_state = 127, .external_lex_state = 2}, + [2828] = {.lex_state = 127, .external_lex_state = 2}, + [2829] = {.lex_state = 7, .external_lex_state = 2}, + [2830] = {.lex_state = 7, .external_lex_state = 2}, + [2831] = {.lex_state = 7, .external_lex_state = 2}, + [2832] = {.lex_state = 7, .external_lex_state = 2}, + [2833] = {.lex_state = 7, .external_lex_state = 2}, + [2834] = {.lex_state = 7, .external_lex_state = 2}, + [2835] = {.lex_state = 7, .external_lex_state = 2}, + [2836] = {.lex_state = 7, .external_lex_state = 2}, + [2837] = {.lex_state = 7, .external_lex_state = 2}, + [2838] = {.lex_state = 7, .external_lex_state = 2}, + [2839] = {.lex_state = 7, .external_lex_state = 2}, + [2840] = {.lex_state = 7, .external_lex_state = 2}, + [2841] = {.lex_state = 7, .external_lex_state = 2}, + [2842] = {.lex_state = 7, .external_lex_state = 2}, + [2843] = {.lex_state = 7, .external_lex_state = 2}, + [2844] = {.lex_state = 7, .external_lex_state = 2}, + [2845] = {.lex_state = 7, .external_lex_state = 2}, + [2846] = {.lex_state = 7, .external_lex_state = 2}, + [2847] = {.lex_state = 7, .external_lex_state = 2}, + [2848] = {.lex_state = 7, .external_lex_state = 2}, + [2849] = {.lex_state = 7, .external_lex_state = 2}, + [2850] = {.lex_state = 7, .external_lex_state = 2}, + [2851] = {.lex_state = 7, .external_lex_state = 2}, + [2852] = {.lex_state = 7, .external_lex_state = 2}, + [2853] = {.lex_state = 7, .external_lex_state = 2}, + [2854] = {.lex_state = 7, .external_lex_state = 2}, + [2855] = {.lex_state = 7, .external_lex_state = 2}, + [2856] = {.lex_state = 7, .external_lex_state = 2}, + [2857] = {.lex_state = 7, .external_lex_state = 2}, + [2858] = {.lex_state = 7, .external_lex_state = 2}, + [2859] = {.lex_state = 7, .external_lex_state = 2}, + [2860] = {.lex_state = 7, .external_lex_state = 2}, + [2861] = {.lex_state = 7, .external_lex_state = 2}, + [2862] = {.lex_state = 7, .external_lex_state = 2}, + [2863] = {.lex_state = 7, .external_lex_state = 2}, + [2864] = {.lex_state = 7, .external_lex_state = 2}, + [2865] = {.lex_state = 7, .external_lex_state = 2}, + [2866] = {.lex_state = 127, .external_lex_state = 5}, + [2867] = {.lex_state = 127, .external_lex_state = 5}, + [2868] = {.lex_state = 19, .external_lex_state = 2}, + [2869] = {.lex_state = 127, .external_lex_state = 2}, + [2870] = {.lex_state = 19, .external_lex_state = 2}, + [2871] = {.lex_state = 127, .external_lex_state = 2}, + [2872] = {.lex_state = 7, .external_lex_state = 2}, + [2873] = {.lex_state = 7, .external_lex_state = 2}, + [2874] = {.lex_state = 127, .external_lex_state = 2}, + [2875] = {.lex_state = 7, .external_lex_state = 2}, + [2876] = {.lex_state = 127, .external_lex_state = 2}, + [2877] = {.lex_state = 127, .external_lex_state = 2}, + [2878] = {.lex_state = 127, .external_lex_state = 2}, + [2879] = {.lex_state = 7, .external_lex_state = 2}, + [2880] = {.lex_state = 127, .external_lex_state = 2}, + [2881] = {.lex_state = 7, .external_lex_state = 5}, + [2882] = {.lex_state = 7, .external_lex_state = 2}, + [2883] = {.lex_state = 127, .external_lex_state = 2}, + [2884] = {.lex_state = 127, .external_lex_state = 2}, + [2885] = {.lex_state = 7, .external_lex_state = 2}, + [2886] = {.lex_state = 127, .external_lex_state = 2}, + [2887] = {.lex_state = 7, .external_lex_state = 5}, + [2888] = {.lex_state = 7, .external_lex_state = 5}, + [2889] = {.lex_state = 127, .external_lex_state = 2}, + [2890] = {.lex_state = 127, .external_lex_state = 2}, + [2891] = {.lex_state = 127, .external_lex_state = 2}, + [2892] = {.lex_state = 127, .external_lex_state = 2}, + [2893] = {.lex_state = 127, .external_lex_state = 2}, + [2894] = {.lex_state = 127, .external_lex_state = 2}, + [2895] = {.lex_state = 127, .external_lex_state = 2}, + [2896] = {.lex_state = 127, .external_lex_state = 2}, + [2897] = {.lex_state = 127, .external_lex_state = 2}, + [2898] = {.lex_state = 127, .external_lex_state = 2}, + [2899] = {.lex_state = 127, .external_lex_state = 2}, + [2900] = {.lex_state = 127, .external_lex_state = 2}, + [2901] = {.lex_state = 127, .external_lex_state = 2}, + [2902] = {.lex_state = 127, .external_lex_state = 2}, + [2903] = {.lex_state = 127, .external_lex_state = 2}, + [2904] = {.lex_state = 127, .external_lex_state = 2}, + [2905] = {.lex_state = 7, .external_lex_state = 6}, + [2906] = {.lex_state = 7, .external_lex_state = 6}, + [2907] = {.lex_state = 7, .external_lex_state = 6}, + [2908] = {.lex_state = 127, .external_lex_state = 2}, + [2909] = {.lex_state = 127, .external_lex_state = 2}, + [2910] = {.lex_state = 127, .external_lex_state = 2}, + [2911] = {.lex_state = 127, .external_lex_state = 2}, + [2912] = {.lex_state = 127, .external_lex_state = 2}, + [2913] = {.lex_state = 127, .external_lex_state = 2}, + [2914] = {.lex_state = 2, .external_lex_state = 2}, + [2915] = {.lex_state = 127, .external_lex_state = 2}, + [2916] = {.lex_state = 127, .external_lex_state = 2}, + [2917] = {.lex_state = 127, .external_lex_state = 2}, + [2918] = {.lex_state = 127, .external_lex_state = 2}, + [2919] = {.lex_state = 127, .external_lex_state = 2}, + [2920] = {.lex_state = 127, .external_lex_state = 2}, + [2921] = {.lex_state = 127, .external_lex_state = 2}, + [2922] = {.lex_state = 127, .external_lex_state = 2}, + [2923] = {.lex_state = 127, .external_lex_state = 2}, + [2924] = {.lex_state = 127, .external_lex_state = 2}, + [2925] = {.lex_state = 127, .external_lex_state = 2}, + [2926] = {.lex_state = 127, .external_lex_state = 2}, + [2927] = {.lex_state = 127, .external_lex_state = 2}, + [2928] = {.lex_state = 127, .external_lex_state = 2}, + [2929] = {.lex_state = 7, .external_lex_state = 5}, + [2930] = {.lex_state = 7, .external_lex_state = 5}, + [2931] = {.lex_state = 7, .external_lex_state = 5}, + [2932] = {.lex_state = 7, .external_lex_state = 5}, + [2933] = {.lex_state = 7, .external_lex_state = 5}, + [2934] = {.lex_state = 7, .external_lex_state = 5}, + [2935] = {.lex_state = 7, .external_lex_state = 5}, + [2936] = {.lex_state = 2, .external_lex_state = 2}, + [2937] = {.lex_state = 7, .external_lex_state = 5}, + [2938] = {.lex_state = 7, .external_lex_state = 5}, + [2939] = {.lex_state = 7, .external_lex_state = 5}, + [2940] = {.lex_state = 7, .external_lex_state = 5}, + [2941] = {.lex_state = 7, .external_lex_state = 5}, + [2942] = {.lex_state = 127, .external_lex_state = 2}, + [2943] = {.lex_state = 7, .external_lex_state = 5}, + [2944] = {.lex_state = 127, .external_lex_state = 2}, + [2945] = {.lex_state = 127, .external_lex_state = 2}, + [2946] = {.lex_state = 127, .external_lex_state = 2}, + [2947] = {.lex_state = 127, .external_lex_state = 2}, + [2948] = {.lex_state = 2, .external_lex_state = 2}, + [2949] = {.lex_state = 7, .external_lex_state = 5}, + [2950] = {.lex_state = 7, .external_lex_state = 5}, + [2951] = {.lex_state = 7, .external_lex_state = 5}, + [2952] = {.lex_state = 7, .external_lex_state = 5}, + [2953] = {.lex_state = 7, .external_lex_state = 5}, + [2954] = {.lex_state = 7, .external_lex_state = 5}, + [2955] = {.lex_state = 7, .external_lex_state = 5}, + [2956] = {.lex_state = 7, .external_lex_state = 5}, + [2957] = {.lex_state = 7, .external_lex_state = 5}, + [2958] = {.lex_state = 7, .external_lex_state = 5}, + [2959] = {.lex_state = 7, .external_lex_state = 5}, + [2960] = {.lex_state = 7, .external_lex_state = 5}, + [2961] = {.lex_state = 7, .external_lex_state = 5}, + [2962] = {.lex_state = 7, .external_lex_state = 5}, + [2963] = {.lex_state = 7, .external_lex_state = 5}, + [2964] = {.lex_state = 7, .external_lex_state = 5}, + [2965] = {.lex_state = 7, .external_lex_state = 5}, + [2966] = {.lex_state = 7, .external_lex_state = 5}, + [2967] = {.lex_state = 7, .external_lex_state = 5}, + [2968] = {.lex_state = 7, .external_lex_state = 5}, + [2969] = {.lex_state = 127, .external_lex_state = 2}, + [2970] = {.lex_state = 127, .external_lex_state = 2}, + [2971] = {.lex_state = 127, .external_lex_state = 2}, + [2972] = {.lex_state = 127, .external_lex_state = 2}, + [2973] = {.lex_state = 2, .external_lex_state = 2}, + [2974] = {.lex_state = 127, .external_lex_state = 2}, + [2975] = {.lex_state = 127, .external_lex_state = 2}, + [2976] = {.lex_state = 127, .external_lex_state = 2}, + [2977] = {.lex_state = 2, .external_lex_state = 2}, + [2978] = {.lex_state = 127, .external_lex_state = 2}, + [2979] = {.lex_state = 127, .external_lex_state = 2}, + [2980] = {.lex_state = 127, .external_lex_state = 2}, + [2981] = {.lex_state = 127, .external_lex_state = 2}, + [2982] = {.lex_state = 2, .external_lex_state = 2}, + [2983] = {.lex_state = 127, .external_lex_state = 5}, + [2984] = {.lex_state = 2, .external_lex_state = 2}, + [2985] = {.lex_state = 127, .external_lex_state = 2}, + [2986] = {.lex_state = 2, .external_lex_state = 2}, + [2987] = {.lex_state = 127, .external_lex_state = 2}, + [2988] = {.lex_state = 127, .external_lex_state = 2}, + [2989] = {.lex_state = 127, .external_lex_state = 2}, + [2990] = {.lex_state = 127, .external_lex_state = 2}, + [2991] = {.lex_state = 2, .external_lex_state = 2}, + [2992] = {.lex_state = 127, .external_lex_state = 2}, + [2993] = {.lex_state = 127, .external_lex_state = 2}, + [2994] = {.lex_state = 127, .external_lex_state = 2}, + [2995] = {.lex_state = 127, .external_lex_state = 2}, + [2996] = {.lex_state = 127, .external_lex_state = 2}, + [2997] = {.lex_state = 127, .external_lex_state = 2}, + [2998] = {.lex_state = 127, .external_lex_state = 2}, + [2999] = {.lex_state = 7, .external_lex_state = 5}, + [3000] = {.lex_state = 127, .external_lex_state = 2}, + [3001] = {.lex_state = 127, .external_lex_state = 2}, + [3002] = {.lex_state = 127, .external_lex_state = 2}, + [3003] = {.lex_state = 127, .external_lex_state = 2}, + [3004] = {.lex_state = 127, .external_lex_state = 5}, + [3005] = {.lex_state = 127, .external_lex_state = 5}, + [3006] = {.lex_state = 127, .external_lex_state = 5}, + [3007] = {.lex_state = 127, .external_lex_state = 5}, + [3008] = {.lex_state = 127, .external_lex_state = 2}, + [3009] = {.lex_state = 127, .external_lex_state = 5}, + [3010] = {.lex_state = 127, .external_lex_state = 2}, + [3011] = {.lex_state = 127, .external_lex_state = 5}, + [3012] = {.lex_state = 127, .external_lex_state = 5}, + [3013] = {.lex_state = 127, .external_lex_state = 5}, + [3014] = {.lex_state = 127, .external_lex_state = 5}, + [3015] = {.lex_state = 127, .external_lex_state = 5}, + [3016] = {.lex_state = 127, .external_lex_state = 2}, + [3017] = {.lex_state = 127, .external_lex_state = 5}, + [3018] = {.lex_state = 127, .external_lex_state = 5}, + [3019] = {.lex_state = 127, .external_lex_state = 5}, + [3020] = {.lex_state = 127, .external_lex_state = 5}, + [3021] = {.lex_state = 127, .external_lex_state = 5}, + [3022] = {.lex_state = 127, .external_lex_state = 5}, + [3023] = {.lex_state = 127, .external_lex_state = 5}, + [3024] = {.lex_state = 127, .external_lex_state = 5}, + [3025] = {.lex_state = 127, .external_lex_state = 5}, + [3026] = {.lex_state = 127, .external_lex_state = 5}, + [3027] = {.lex_state = 127, .external_lex_state = 2}, + [3028] = {.lex_state = 127, .external_lex_state = 5}, + [3029] = {.lex_state = 127, .external_lex_state = 2}, + [3030] = {.lex_state = 19, .external_lex_state = 2}, + [3031] = {.lex_state = 127, .external_lex_state = 5}, + [3032] = {.lex_state = 127, .external_lex_state = 2}, + [3033] = {.lex_state = 127, .external_lex_state = 5}, + [3034] = {.lex_state = 127, .external_lex_state = 2}, + [3035] = {.lex_state = 127, .external_lex_state = 5}, + [3036] = {.lex_state = 127, .external_lex_state = 5}, + [3037] = {.lex_state = 127, .external_lex_state = 5}, + [3038] = {.lex_state = 127, .external_lex_state = 5}, + [3039] = {.lex_state = 127, .external_lex_state = 5}, + [3040] = {.lex_state = 127, .external_lex_state = 5}, + [3041] = {.lex_state = 127, .external_lex_state = 5}, + [3042] = {.lex_state = 127, .external_lex_state = 5}, + [3043] = {.lex_state = 127, .external_lex_state = 5}, + [3044] = {.lex_state = 127, .external_lex_state = 5}, + [3045] = {.lex_state = 19, .external_lex_state = 2}, + [3046] = {.lex_state = 127, .external_lex_state = 5}, + [3047] = {.lex_state = 127, .external_lex_state = 5}, + [3048] = {.lex_state = 7, .external_lex_state = 6}, + [3049] = {.lex_state = 7, .external_lex_state = 6}, + [3050] = {.lex_state = 7, .external_lex_state = 6}, + [3051] = {.lex_state = 7, .external_lex_state = 6}, + [3052] = {.lex_state = 7, .external_lex_state = 6}, + [3053] = {.lex_state = 127, .external_lex_state = 2}, + [3054] = {.lex_state = 127, .external_lex_state = 2}, + [3055] = {.lex_state = 127, .external_lex_state = 5}, + [3056] = {.lex_state = 7, .external_lex_state = 6}, + [3057] = {.lex_state = 17, .external_lex_state = 7}, + [3058] = {.lex_state = 7, .external_lex_state = 6}, + [3059] = {.lex_state = 127, .external_lex_state = 5}, + [3060] = {.lex_state = 127, .external_lex_state = 2}, + [3061] = {.lex_state = 127, .external_lex_state = 2}, + [3062] = {.lex_state = 17, .external_lex_state = 7}, + [3063] = {.lex_state = 19, .external_lex_state = 2}, + [3064] = {.lex_state = 7, .external_lex_state = 6}, + [3065] = {.lex_state = 17, .external_lex_state = 7}, + [3066] = {.lex_state = 7, .external_lex_state = 6}, + [3067] = {.lex_state = 7, .external_lex_state = 6}, + [3068] = {.lex_state = 7, .external_lex_state = 6}, + [3069] = {.lex_state = 7, .external_lex_state = 6}, + [3070] = {.lex_state = 7, .external_lex_state = 6}, + [3071] = {.lex_state = 127, .external_lex_state = 5}, + [3072] = {.lex_state = 7, .external_lex_state = 6}, + [3073] = {.lex_state = 7, .external_lex_state = 6}, + [3074] = {.lex_state = 127, .external_lex_state = 6}, + [3075] = {.lex_state = 17, .external_lex_state = 7}, + [3076] = {.lex_state = 7, .external_lex_state = 6}, + [3077] = {.lex_state = 7, .external_lex_state = 6}, + [3078] = {.lex_state = 17, .external_lex_state = 7}, + [3079] = {.lex_state = 7, .external_lex_state = 5}, + [3080] = {.lex_state = 127, .external_lex_state = 5}, + [3081] = {.lex_state = 7, .external_lex_state = 6}, + [3082] = {.lex_state = 7, .external_lex_state = 5}, + [3083] = {.lex_state = 7, .external_lex_state = 6}, + [3084] = {.lex_state = 17, .external_lex_state = 7}, + [3085] = {.lex_state = 17, .external_lex_state = 7}, + [3086] = {.lex_state = 7, .external_lex_state = 6}, + [3087] = {.lex_state = 7, .external_lex_state = 6}, + [3088] = {.lex_state = 7, .external_lex_state = 6}, + [3089] = {.lex_state = 127, .external_lex_state = 5}, + [3090] = {.lex_state = 7, .external_lex_state = 6}, + [3091] = {.lex_state = 17, .external_lex_state = 7}, + [3092] = {.lex_state = 7, .external_lex_state = 5}, + [3093] = {.lex_state = 7, .external_lex_state = 6}, + [3094] = {.lex_state = 127, .external_lex_state = 5}, + [3095] = {.lex_state = 7, .external_lex_state = 6}, + [3096] = {.lex_state = 7, .external_lex_state = 6}, + [3097] = {.lex_state = 7, .external_lex_state = 6}, + [3098] = {.lex_state = 7, .external_lex_state = 6}, + [3099] = {.lex_state = 127, .external_lex_state = 5}, + [3100] = {.lex_state = 7, .external_lex_state = 5}, + [3101] = {.lex_state = 7, .external_lex_state = 5}, + [3102] = {.lex_state = 7, .external_lex_state = 6}, + [3103] = {.lex_state = 127, .external_lex_state = 2}, + [3104] = {.lex_state = 7, .external_lex_state = 5}, + [3105] = {.lex_state = 7, .external_lex_state = 6}, + [3106] = {.lex_state = 7, .external_lex_state = 5}, + [3107] = {.lex_state = 127, .external_lex_state = 2}, + [3108] = {.lex_state = 127, .external_lex_state = 2}, + [3109] = {.lex_state = 7, .external_lex_state = 5}, + [3110] = {.lex_state = 7, .external_lex_state = 6}, + [3111] = {.lex_state = 7, .external_lex_state = 6}, + [3112] = {.lex_state = 127, .external_lex_state = 2}, + [3113] = {.lex_state = 127, .external_lex_state = 5}, + [3114] = {.lex_state = 127, .external_lex_state = 5}, + [3115] = {.lex_state = 127, .external_lex_state = 2}, + [3116] = {.lex_state = 127, .external_lex_state = 5}, + [3117] = {.lex_state = 127, .external_lex_state = 5}, + [3118] = {.lex_state = 7, .external_lex_state = 6}, + [3119] = {.lex_state = 127, .external_lex_state = 5}, + [3120] = {.lex_state = 127, .external_lex_state = 5}, + [3121] = {.lex_state = 127, .external_lex_state = 2}, + [3122] = {.lex_state = 7, .external_lex_state = 6}, + [3123] = {.lex_state = 127, .external_lex_state = 5}, + [3124] = {.lex_state = 127, .external_lex_state = 5}, + [3125] = {.lex_state = 127, .external_lex_state = 5}, + [3126] = {.lex_state = 127, .external_lex_state = 5}, + [3127] = {.lex_state = 127, .external_lex_state = 5}, + [3128] = {.lex_state = 127, .external_lex_state = 5}, + [3129] = {.lex_state = 127, .external_lex_state = 5}, + [3130] = {.lex_state = 127, .external_lex_state = 5}, + [3131] = {.lex_state = 127, .external_lex_state = 5}, + [3132] = {.lex_state = 127, .external_lex_state = 5}, + [3133] = {.lex_state = 127, .external_lex_state = 5}, + [3134] = {.lex_state = 127, .external_lex_state = 5}, + [3135] = {.lex_state = 127, .external_lex_state = 5}, + [3136] = {.lex_state = 127, .external_lex_state = 5}, + [3137] = {.lex_state = 127, .external_lex_state = 5}, + [3138] = {.lex_state = 127, .external_lex_state = 5}, + [3139] = {.lex_state = 127, .external_lex_state = 2}, + [3140] = {.lex_state = 19, .external_lex_state = 2}, + [3141] = {.lex_state = 127, .external_lex_state = 5}, + [3142] = {.lex_state = 7, .external_lex_state = 2}, + [3143] = {.lex_state = 127, .external_lex_state = 5}, + [3144] = {.lex_state = 127, .external_lex_state = 5}, + [3145] = {.lex_state = 127, .external_lex_state = 5}, + [3146] = {.lex_state = 127, .external_lex_state = 5}, + [3147] = {.lex_state = 127, .external_lex_state = 5}, + [3148] = {.lex_state = 127, .external_lex_state = 5}, + [3149] = {.lex_state = 127, .external_lex_state = 5}, + [3150] = {.lex_state = 127, .external_lex_state = 5}, + [3151] = {.lex_state = 7, .external_lex_state = 2}, + [3152] = {.lex_state = 127, .external_lex_state = 5}, + [3153] = {.lex_state = 127, .external_lex_state = 5}, + [3154] = {.lex_state = 127, .external_lex_state = 5}, + [3155] = {.lex_state = 19, .external_lex_state = 2}, + [3156] = {.lex_state = 127, .external_lex_state = 5}, + [3157] = {.lex_state = 127, .external_lex_state = 6}, + [3158] = {.lex_state = 127, .external_lex_state = 5}, + [3159] = {.lex_state = 127, .external_lex_state = 5}, + [3160] = {.lex_state = 127, .external_lex_state = 2}, + [3161] = {.lex_state = 127, .external_lex_state = 5}, + [3162] = {.lex_state = 19, .external_lex_state = 2}, + [3163] = {.lex_state = 17, .external_lex_state = 7}, + [3164] = {.lex_state = 127, .external_lex_state = 5}, + [3165] = {.lex_state = 127, .external_lex_state = 5}, + [3166] = {.lex_state = 127, .external_lex_state = 5}, + [3167] = {.lex_state = 127, .external_lex_state = 5}, + [3168] = {.lex_state = 127, .external_lex_state = 5}, + [3169] = {.lex_state = 127, .external_lex_state = 5}, + [3170] = {.lex_state = 127, .external_lex_state = 5}, + [3171] = {.lex_state = 127, .external_lex_state = 2}, + [3172] = {.lex_state = 127, .external_lex_state = 5}, + [3173] = {.lex_state = 7, .external_lex_state = 2}, + [3174] = {.lex_state = 127, .external_lex_state = 5}, + [3175] = {.lex_state = 19, .external_lex_state = 2}, + [3176] = {.lex_state = 127, .external_lex_state = 6}, + [3177] = {.lex_state = 127, .external_lex_state = 5}, + [3178] = {.lex_state = 127, .external_lex_state = 5}, + [3179] = {.lex_state = 127, .external_lex_state = 5}, + [3180] = {.lex_state = 127, .external_lex_state = 5}, + [3181] = {.lex_state = 127, .external_lex_state = 5}, + [3182] = {.lex_state = 127, .external_lex_state = 5}, + [3183] = {.lex_state = 127, .external_lex_state = 5}, + [3184] = {.lex_state = 127, .external_lex_state = 5}, + [3185] = {.lex_state = 127, .external_lex_state = 5}, + [3186] = {.lex_state = 127, .external_lex_state = 5}, + [3187] = {.lex_state = 127, .external_lex_state = 5}, + [3188] = {.lex_state = 7, .external_lex_state = 6}, + [3189] = {.lex_state = 7, .external_lex_state = 6}, + [3190] = {.lex_state = 127, .external_lex_state = 5}, + [3191] = {.lex_state = 127, .external_lex_state = 5}, + [3192] = {.lex_state = 127, .external_lex_state = 5}, + [3193] = {.lex_state = 127, .external_lex_state = 6}, + [3194] = {.lex_state = 127, .external_lex_state = 5}, + [3195] = {.lex_state = 127, .external_lex_state = 6}, + [3196] = {.lex_state = 127, .external_lex_state = 5}, + [3197] = {.lex_state = 127, .external_lex_state = 5}, + [3198] = {.lex_state = 127, .external_lex_state = 6}, + [3199] = {.lex_state = 127, .external_lex_state = 5}, + [3200] = {.lex_state = 127, .external_lex_state = 6}, + [3201] = {.lex_state = 127, .external_lex_state = 6}, + [3202] = {.lex_state = 127, .external_lex_state = 6}, + [3203] = {.lex_state = 7, .external_lex_state = 6}, + [3204] = {.lex_state = 127, .external_lex_state = 5}, + [3205] = {.lex_state = 127, .external_lex_state = 5}, + [3206] = {.lex_state = 127, .external_lex_state = 5}, + [3207] = {.lex_state = 127, .external_lex_state = 5}, + [3208] = {.lex_state = 127, .external_lex_state = 5}, + [3209] = {.lex_state = 127, .external_lex_state = 5}, + [3210] = {.lex_state = 127, .external_lex_state = 5}, + [3211] = {.lex_state = 127, .external_lex_state = 6}, + [3212] = {.lex_state = 127, .external_lex_state = 5}, + [3213] = {.lex_state = 127, .external_lex_state = 5}, + [3214] = {.lex_state = 127, .external_lex_state = 5}, + [3215] = {.lex_state = 127, .external_lex_state = 5}, + [3216] = {.lex_state = 127, .external_lex_state = 5}, + [3217] = {.lex_state = 7, .external_lex_state = 6}, + [3218] = {.lex_state = 127, .external_lex_state = 5}, + [3219] = {.lex_state = 127, .external_lex_state = 5}, + [3220] = {.lex_state = 127, .external_lex_state = 5}, + [3221] = {.lex_state = 127, .external_lex_state = 5}, + [3222] = {.lex_state = 127, .external_lex_state = 5}, + [3223] = {.lex_state = 7, .external_lex_state = 6}, + [3224] = {.lex_state = 127, .external_lex_state = 5}, + [3225] = {.lex_state = 127, .external_lex_state = 5}, + [3226] = {.lex_state = 127, .external_lex_state = 5}, + [3227] = {.lex_state = 7, .external_lex_state = 6}, + [3228] = {.lex_state = 127, .external_lex_state = 5}, + [3229] = {.lex_state = 127, .external_lex_state = 5}, + [3230] = {.lex_state = 127, .external_lex_state = 5}, + [3231] = {.lex_state = 127, .external_lex_state = 5}, + [3232] = {.lex_state = 127, .external_lex_state = 5}, + [3233] = {.lex_state = 127, .external_lex_state = 6}, + [3234] = {.lex_state = 127, .external_lex_state = 6}, + [3235] = {.lex_state = 127, .external_lex_state = 5}, + [3236] = {.lex_state = 127, .external_lex_state = 5}, + [3237] = {.lex_state = 127, .external_lex_state = 5}, + [3238] = {.lex_state = 127, .external_lex_state = 5}, + [3239] = {.lex_state = 127, .external_lex_state = 5}, + [3240] = {.lex_state = 127, .external_lex_state = 5}, + [3241] = {.lex_state = 127, .external_lex_state = 5}, + [3242] = {.lex_state = 127, .external_lex_state = 5}, + [3243] = {.lex_state = 7, .external_lex_state = 6}, + [3244] = {.lex_state = 127, .external_lex_state = 5}, + [3245] = {.lex_state = 127, .external_lex_state = 5}, + [3246] = {.lex_state = 127, .external_lex_state = 5}, + [3247] = {.lex_state = 127, .external_lex_state = 5}, + [3248] = {.lex_state = 127, .external_lex_state = 2}, + [3249] = {.lex_state = 127, .external_lex_state = 5}, + [3250] = {.lex_state = 127, .external_lex_state = 5}, + [3251] = {.lex_state = 127, .external_lex_state = 2}, + [3252] = {.lex_state = 127, .external_lex_state = 5}, + [3253] = {.lex_state = 127, .external_lex_state = 5}, + [3254] = {.lex_state = 127, .external_lex_state = 5}, + [3255] = {.lex_state = 7, .external_lex_state = 6}, + [3256] = {.lex_state = 127, .external_lex_state = 5}, + [3257] = {.lex_state = 127, .external_lex_state = 5}, + [3258] = {.lex_state = 127, .external_lex_state = 5}, + [3259] = {.lex_state = 127, .external_lex_state = 2}, + [3260] = {.lex_state = 127, .external_lex_state = 6}, + [3261] = {.lex_state = 127, .external_lex_state = 6}, + [3262] = {.lex_state = 127, .external_lex_state = 6}, + [3263] = {.lex_state = 127, .external_lex_state = 5}, + [3264] = {.lex_state = 127, .external_lex_state = 2}, + [3265] = {.lex_state = 19, .external_lex_state = 2}, + [3266] = {.lex_state = 127, .external_lex_state = 2}, + [3267] = {.lex_state = 127, .external_lex_state = 5}, + [3268] = {.lex_state = 127, .external_lex_state = 2}, + [3269] = {.lex_state = 127, .external_lex_state = 5}, + [3270] = {.lex_state = 19, .external_lex_state = 2}, + [3271] = {.lex_state = 127, .external_lex_state = 6}, + [3272] = {.lex_state = 127, .external_lex_state = 2}, + [3273] = {.lex_state = 127, .external_lex_state = 5}, + [3274] = {.lex_state = 127, .external_lex_state = 5}, + [3275] = {.lex_state = 127, .external_lex_state = 6}, + [3276] = {.lex_state = 127, .external_lex_state = 2}, + [3277] = {.lex_state = 127, .external_lex_state = 2}, + [3278] = {.lex_state = 127, .external_lex_state = 2}, + [3279] = {.lex_state = 127, .external_lex_state = 2}, + [3280] = {.lex_state = 127, .external_lex_state = 2}, + [3281] = {.lex_state = 127, .external_lex_state = 2}, + [3282] = {.lex_state = 127, .external_lex_state = 2}, + [3283] = {.lex_state = 127, .external_lex_state = 2}, + [3284] = {.lex_state = 127, .external_lex_state = 2}, + [3285] = {.lex_state = 127, .external_lex_state = 5}, + [3286] = {.lex_state = 19, .external_lex_state = 2}, + [3287] = {.lex_state = 127, .external_lex_state = 6}, + [3288] = {.lex_state = 127, .external_lex_state = 2}, + [3289] = {.lex_state = 127, .external_lex_state = 6}, + [3290] = {.lex_state = 127, .external_lex_state = 2}, + [3291] = {.lex_state = 127, .external_lex_state = 2}, + [3292] = {.lex_state = 127, .external_lex_state = 6}, + [3293] = {.lex_state = 19, .external_lex_state = 2}, + [3294] = {.lex_state = 127, .external_lex_state = 5}, + [3295] = {.lex_state = 127, .external_lex_state = 6}, + [3296] = {.lex_state = 19, .external_lex_state = 2}, + [3297] = {.lex_state = 127, .external_lex_state = 6}, + [3298] = {.lex_state = 127, .external_lex_state = 6}, + [3299] = {.lex_state = 127, .external_lex_state = 6}, + [3300] = {.lex_state = 19, .external_lex_state = 2}, + [3301] = {.lex_state = 19, .external_lex_state = 2}, + [3302] = {.lex_state = 19, .external_lex_state = 2}, + [3303] = {.lex_state = 19, .external_lex_state = 2}, + [3304] = {.lex_state = 19, .external_lex_state = 2}, + [3305] = {.lex_state = 19, .external_lex_state = 2}, + [3306] = {.lex_state = 127, .external_lex_state = 2}, + [3307] = {.lex_state = 19, .external_lex_state = 2}, + [3308] = {.lex_state = 19, .external_lex_state = 2}, + [3309] = {.lex_state = 127, .external_lex_state = 5}, + [3310] = {.lex_state = 127, .external_lex_state = 6}, + [3311] = {.lex_state = 127, .external_lex_state = 6}, + [3312] = {.lex_state = 127, .external_lex_state = 5}, + [3313] = {.lex_state = 127, .external_lex_state = 5}, + [3314] = {.lex_state = 127, .external_lex_state = 6}, + [3315] = {.lex_state = 127, .external_lex_state = 6}, + [3316] = {.lex_state = 127, .external_lex_state = 6}, + [3317] = {.lex_state = 127, .external_lex_state = 6}, + [3318] = {.lex_state = 127, .external_lex_state = 6}, + [3319] = {.lex_state = 127, .external_lex_state = 5}, + [3320] = {.lex_state = 127, .external_lex_state = 6}, + [3321] = {.lex_state = 127, .external_lex_state = 6}, + [3322] = {.lex_state = 127, .external_lex_state = 6}, + [3323] = {.lex_state = 127, .external_lex_state = 6}, + [3324] = {.lex_state = 127, .external_lex_state = 6}, + [3325] = {.lex_state = 127, .external_lex_state = 6}, + [3326] = {.lex_state = 19, .external_lex_state = 2}, + [3327] = {.lex_state = 127, .external_lex_state = 2}, + [3328] = {.lex_state = 127, .external_lex_state = 6}, + [3329] = {.lex_state = 127, .external_lex_state = 6}, + [3330] = {.lex_state = 127, .external_lex_state = 6}, + [3331] = {.lex_state = 127, .external_lex_state = 2}, + [3332] = {.lex_state = 127, .external_lex_state = 6}, + [3333] = {.lex_state = 127, .external_lex_state = 6}, + [3334] = {.lex_state = 127, .external_lex_state = 6}, + [3335] = {.lex_state = 127, .external_lex_state = 6}, + [3336] = {.lex_state = 127, .external_lex_state = 6}, + [3337] = {.lex_state = 127, .external_lex_state = 6}, + [3338] = {.lex_state = 127, .external_lex_state = 6}, + [3339] = {.lex_state = 127, .external_lex_state = 6}, + [3340] = {.lex_state = 127, .external_lex_state = 6}, + [3341] = {.lex_state = 127, .external_lex_state = 6}, + [3342] = {.lex_state = 127, .external_lex_state = 6}, + [3343] = {.lex_state = 127, .external_lex_state = 6}, + [3344] = {.lex_state = 127, .external_lex_state = 6}, + [3345] = {.lex_state = 127, .external_lex_state = 6}, + [3346] = {.lex_state = 127, .external_lex_state = 6}, + [3347] = {.lex_state = 127, .external_lex_state = 6}, + [3348] = {.lex_state = 127, .external_lex_state = 6}, + [3349] = {.lex_state = 127, .external_lex_state = 6}, + [3350] = {.lex_state = 127, .external_lex_state = 2}, + [3351] = {.lex_state = 127, .external_lex_state = 5}, + [3352] = {.lex_state = 127, .external_lex_state = 6}, + [3353] = {.lex_state = 127, .external_lex_state = 2}, + [3354] = {.lex_state = 127, .external_lex_state = 6}, + [3355] = {.lex_state = 127, .external_lex_state = 5}, + [3356] = {.lex_state = 127, .external_lex_state = 6}, + [3357] = {.lex_state = 127, .external_lex_state = 5}, + [3358] = {.lex_state = 127, .external_lex_state = 6}, + [3359] = {.lex_state = 127, .external_lex_state = 6}, + [3360] = {.lex_state = 19, .external_lex_state = 2}, + [3361] = {.lex_state = 127, .external_lex_state = 5}, + [3362] = {.lex_state = 127, .external_lex_state = 2}, + [3363] = {.lex_state = 127, .external_lex_state = 5}, + [3364] = {.lex_state = 127, .external_lex_state = 5}, + [3365] = {.lex_state = 127, .external_lex_state = 5}, + [3366] = {.lex_state = 127, .external_lex_state = 5}, + [3367] = {.lex_state = 127, .external_lex_state = 6}, + [3368] = {.lex_state = 127, .external_lex_state = 5}, + [3369] = {.lex_state = 127, .external_lex_state = 2}, + [3370] = {.lex_state = 127, .external_lex_state = 5}, + [3371] = {.lex_state = 127, .external_lex_state = 5}, + [3372] = {.lex_state = 19, .external_lex_state = 2}, + [3373] = {.lex_state = 127, .external_lex_state = 5}, + [3374] = {.lex_state = 127, .external_lex_state = 5}, + [3375] = {.lex_state = 127, .external_lex_state = 2}, + [3376] = {.lex_state = 127, .external_lex_state = 2}, + [3377] = {.lex_state = 127, .external_lex_state = 5}, + [3378] = {.lex_state = 127, .external_lex_state = 5}, + [3379] = {.lex_state = 127, .external_lex_state = 5}, + [3380] = {.lex_state = 127, .external_lex_state = 6}, + [3381] = {.lex_state = 127, .external_lex_state = 5}, + [3382] = {.lex_state = 127, .external_lex_state = 5}, + [3383] = {.lex_state = 127, .external_lex_state = 5}, + [3384] = {.lex_state = 127, .external_lex_state = 2}, + [3385] = {.lex_state = 127, .external_lex_state = 5}, + [3386] = {.lex_state = 127, .external_lex_state = 5}, + [3387] = {.lex_state = 19, .external_lex_state = 2}, + [3388] = {.lex_state = 127, .external_lex_state = 2}, + [3389] = {.lex_state = 127, .external_lex_state = 6}, + [3390] = {.lex_state = 127, .external_lex_state = 2}, + [3391] = {.lex_state = 127, .external_lex_state = 2}, + [3392] = {.lex_state = 127, .external_lex_state = 6}, + [3393] = {.lex_state = 19, .external_lex_state = 2}, + [3394] = {.lex_state = 127, .external_lex_state = 2}, + [3395] = {.lex_state = 19, .external_lex_state = 2}, + [3396] = {.lex_state = 127, .external_lex_state = 6}, + [3397] = {.lex_state = 19, .external_lex_state = 2}, + [3398] = {.lex_state = 19, .external_lex_state = 2}, + [3399] = {.lex_state = 19, .external_lex_state = 2}, + [3400] = {.lex_state = 19, .external_lex_state = 2}, + [3401] = {.lex_state = 127, .external_lex_state = 5}, + [3402] = {.lex_state = 127, .external_lex_state = 2}, + [3403] = {.lex_state = 19, .external_lex_state = 2}, + [3404] = {.lex_state = 127, .external_lex_state = 6}, + [3405] = {.lex_state = 127, .external_lex_state = 5}, + [3406] = {.lex_state = 127, .external_lex_state = 6}, + [3407] = {.lex_state = 19, .external_lex_state = 2}, + [3408] = {.lex_state = 127, .external_lex_state = 5}, + [3409] = {.lex_state = 127, .external_lex_state = 2}, + [3410] = {.lex_state = 19, .external_lex_state = 2}, + [3411] = {.lex_state = 19, .external_lex_state = 2}, + [3412] = {.lex_state = 19, .external_lex_state = 2}, + [3413] = {.lex_state = 127, .external_lex_state = 2}, + [3414] = {.lex_state = 127, .external_lex_state = 2}, + [3415] = {.lex_state = 127, .external_lex_state = 2}, + [3416] = {.lex_state = 19, .external_lex_state = 2}, + [3417] = {.lex_state = 127, .external_lex_state = 2}, + [3418] = {.lex_state = 127, .external_lex_state = 2}, + [3419] = {.lex_state = 127, .external_lex_state = 2}, + [3420] = {.lex_state = 19, .external_lex_state = 2}, + [3421] = {.lex_state = 127, .external_lex_state = 2}, + [3422] = {.lex_state = 127, .external_lex_state = 5}, + [3423] = {.lex_state = 19, .external_lex_state = 2}, + [3424] = {.lex_state = 127, .external_lex_state = 6}, + [3425] = {.lex_state = 127, .external_lex_state = 2}, + [3426] = {.lex_state = 127, .external_lex_state = 2}, + [3427] = {.lex_state = 127, .external_lex_state = 2}, + [3428] = {.lex_state = 19, .external_lex_state = 2}, + [3429] = {.lex_state = 127, .external_lex_state = 5}, + [3430] = {.lex_state = 127, .external_lex_state = 6}, + [3431] = {.lex_state = 19, .external_lex_state = 2}, + [3432] = {.lex_state = 127, .external_lex_state = 6}, + [3433] = {.lex_state = 127, .external_lex_state = 2}, + [3434] = {.lex_state = 127, .external_lex_state = 5}, + [3435] = {.lex_state = 127, .external_lex_state = 5}, + [3436] = {.lex_state = 127, .external_lex_state = 5}, + [3437] = {.lex_state = 127, .external_lex_state = 5}, + [3438] = {.lex_state = 127, .external_lex_state = 5}, + [3439] = {.lex_state = 127, .external_lex_state = 5}, + [3440] = {.lex_state = 19, .external_lex_state = 2}, + [3441] = {.lex_state = 127, .external_lex_state = 5}, + [3442] = {.lex_state = 19, .external_lex_state = 2}, + [3443] = {.lex_state = 19, .external_lex_state = 2}, + [3444] = {.lex_state = 127, .external_lex_state = 5}, + [3445] = {.lex_state = 127, .external_lex_state = 5}, + [3446] = {.lex_state = 127, .external_lex_state = 2}, + [3447] = {.lex_state = 127, .external_lex_state = 5}, + [3448] = {.lex_state = 19, .external_lex_state = 2}, + [3449] = {.lex_state = 19, .external_lex_state = 2}, + [3450] = {.lex_state = 127, .external_lex_state = 5}, + [3451] = {.lex_state = 19, .external_lex_state = 2}, + [3452] = {.lex_state = 127, .external_lex_state = 2}, + [3453] = {.lex_state = 127, .external_lex_state = 2}, + [3454] = {.lex_state = 127, .external_lex_state = 2}, + [3455] = {.lex_state = 127, .external_lex_state = 2}, + [3456] = {.lex_state = 127, .external_lex_state = 5}, + [3457] = {.lex_state = 127, .external_lex_state = 2}, + [3458] = {.lex_state = 127, .external_lex_state = 5}, + [3459] = {.lex_state = 127, .external_lex_state = 5}, + [3460] = {.lex_state = 127, .external_lex_state = 5}, + [3461] = {.lex_state = 127, .external_lex_state = 5}, + [3462] = {.lex_state = 127, .external_lex_state = 5}, + [3463] = {.lex_state = 127, .external_lex_state = 6}, + [3464] = {.lex_state = 127, .external_lex_state = 2}, + [3465] = {.lex_state = 127, .external_lex_state = 5}, + [3466] = {.lex_state = 127, .external_lex_state = 5}, + [3467] = {.lex_state = 127, .external_lex_state = 2}, + [3468] = {.lex_state = 127, .external_lex_state = 2}, + [3469] = {.lex_state = 127, .external_lex_state = 2}, + [3470] = {.lex_state = 127, .external_lex_state = 6}, + [3471] = {.lex_state = 127, .external_lex_state = 6}, + [3472] = {.lex_state = 19, .external_lex_state = 2}, + [3473] = {.lex_state = 19, .external_lex_state = 2}, + [3474] = {.lex_state = 127, .external_lex_state = 5}, + [3475] = {.lex_state = 127, .external_lex_state = 2}, + [3476] = {.lex_state = 19, .external_lex_state = 2}, + [3477] = {.lex_state = 127, .external_lex_state = 2}, + [3478] = {.lex_state = 7, .external_lex_state = 2}, + [3479] = {.lex_state = 19, .external_lex_state = 2}, + [3480] = {.lex_state = 17, .external_lex_state = 8}, + [3481] = {.lex_state = 127, .external_lex_state = 2}, + [3482] = {.lex_state = 127, .external_lex_state = 2}, + [3483] = {.lex_state = 19, .external_lex_state = 2}, + [3484] = {.lex_state = 127, .external_lex_state = 5}, + [3485] = {.lex_state = 17, .external_lex_state = 8}, + [3486] = {.lex_state = 17, .external_lex_state = 8}, + [3487] = {.lex_state = 19, .external_lex_state = 2}, + [3488] = {.lex_state = 17, .external_lex_state = 8}, + [3489] = {.lex_state = 19, .external_lex_state = 2}, + [3490] = {.lex_state = 19, .external_lex_state = 2}, + [3491] = {.lex_state = 7, .external_lex_state = 2}, + [3492] = {.lex_state = 7, .external_lex_state = 2}, + [3493] = {.lex_state = 19, .external_lex_state = 2}, + [3494] = {.lex_state = 127, .external_lex_state = 5}, + [3495] = {.lex_state = 127, .external_lex_state = 2}, + [3496] = {.lex_state = 127, .external_lex_state = 5}, + [3497] = {.lex_state = 127, .external_lex_state = 5}, + [3498] = {.lex_state = 127, .external_lex_state = 2}, + [3499] = {.lex_state = 127, .external_lex_state = 2}, + [3500] = {.lex_state = 127, .external_lex_state = 6}, + [3501] = {.lex_state = 19, .external_lex_state = 2}, + [3502] = {.lex_state = 19, .external_lex_state = 2}, + [3503] = {.lex_state = 17, .external_lex_state = 8}, + [3504] = {.lex_state = 19, .external_lex_state = 2}, + [3505] = {.lex_state = 127, .external_lex_state = 5}, + [3506] = {.lex_state = 17, .external_lex_state = 8}, + [3507] = {.lex_state = 11, .external_lex_state = 2}, + [3508] = {.lex_state = 127, .external_lex_state = 2}, + [3509] = {.lex_state = 127, .external_lex_state = 2}, + [3510] = {.lex_state = 17, .external_lex_state = 8}, + [3511] = {.lex_state = 19, .external_lex_state = 2}, + [3512] = {.lex_state = 127, .external_lex_state = 2}, + [3513] = {.lex_state = 17, .external_lex_state = 8}, + [3514] = {.lex_state = 11, .external_lex_state = 2}, + [3515] = {.lex_state = 127, .external_lex_state = 2}, + [3516] = {.lex_state = 127, .external_lex_state = 2}, + [3517] = {.lex_state = 127, .external_lex_state = 2}, + [3518] = {.lex_state = 127, .external_lex_state = 2}, + [3519] = {.lex_state = 127, .external_lex_state = 2}, + [3520] = {.lex_state = 127, .external_lex_state = 5}, + [3521] = {.lex_state = 127, .external_lex_state = 5}, + [3522] = {.lex_state = 127, .external_lex_state = 5}, + [3523] = {.lex_state = 127, .external_lex_state = 5}, + [3524] = {.lex_state = 127, .external_lex_state = 2}, + [3525] = {.lex_state = 127, .external_lex_state = 5}, + [3526] = {.lex_state = 127, .external_lex_state = 5}, + [3527] = {.lex_state = 127, .external_lex_state = 5}, + [3528] = {.lex_state = 127, .external_lex_state = 5}, + [3529] = {.lex_state = 127, .external_lex_state = 5}, + [3530] = {.lex_state = 127, .external_lex_state = 5}, + [3531] = {.lex_state = 127, .external_lex_state = 5}, + [3532] = {.lex_state = 127, .external_lex_state = 2}, + [3533] = {.lex_state = 127, .external_lex_state = 5}, + [3534] = {.lex_state = 127, .external_lex_state = 5}, + [3535] = {.lex_state = 127, .external_lex_state = 5}, + [3536] = {.lex_state = 127, .external_lex_state = 2}, + [3537] = {.lex_state = 127, .external_lex_state = 2}, + [3538] = {.lex_state = 127, .external_lex_state = 2}, + [3539] = {.lex_state = 127, .external_lex_state = 2}, + [3540] = {.lex_state = 127, .external_lex_state = 5}, + [3541] = {.lex_state = 127, .external_lex_state = 2}, + [3542] = {.lex_state = 127, .external_lex_state = 5}, + [3543] = {.lex_state = 127, .external_lex_state = 5}, + [3544] = {.lex_state = 127, .external_lex_state = 2}, + [3545] = {.lex_state = 127, .external_lex_state = 2}, + [3546] = {.lex_state = 127, .external_lex_state = 5}, + [3547] = {.lex_state = 127, .external_lex_state = 5}, + [3548] = {.lex_state = 127, .external_lex_state = 5}, + [3549] = {.lex_state = 127, .external_lex_state = 5}, + [3550] = {.lex_state = 127, .external_lex_state = 2}, + [3551] = {.lex_state = 127, .external_lex_state = 2}, + [3552] = {.lex_state = 7, .external_lex_state = 2}, + [3553] = {.lex_state = 127, .external_lex_state = 5}, + [3554] = {.lex_state = 127, .external_lex_state = 2}, + [3555] = {.lex_state = 127, .external_lex_state = 5}, + [3556] = {.lex_state = 127, .external_lex_state = 5}, + [3557] = {.lex_state = 127, .external_lex_state = 5}, + [3558] = {.lex_state = 127, .external_lex_state = 2}, + [3559] = {.lex_state = 19, .external_lex_state = 2}, + [3560] = {.lex_state = 127, .external_lex_state = 2}, + [3561] = {.lex_state = 127, .external_lex_state = 5}, + [3562] = {.lex_state = 127, .external_lex_state = 5}, + [3563] = {.lex_state = 127, .external_lex_state = 5}, + [3564] = {.lex_state = 127, .external_lex_state = 5}, + [3565] = {.lex_state = 127, .external_lex_state = 5}, + [3566] = {.lex_state = 127, .external_lex_state = 2}, + [3567] = {.lex_state = 127, .external_lex_state = 5}, + [3568] = {.lex_state = 127, .external_lex_state = 2}, + [3569] = {.lex_state = 127, .external_lex_state = 5}, + [3570] = {.lex_state = 127, .external_lex_state = 5}, + [3571] = {.lex_state = 127, .external_lex_state = 5}, + [3572] = {.lex_state = 127, .external_lex_state = 2}, + [3573] = {.lex_state = 127, .external_lex_state = 5}, + [3574] = {.lex_state = 7, .external_lex_state = 2}, + [3575] = {.lex_state = 127, .external_lex_state = 5}, + [3576] = {.lex_state = 127, .external_lex_state = 5}, + [3577] = {.lex_state = 127, .external_lex_state = 5}, + [3578] = {.lex_state = 127, .external_lex_state = 5}, + [3579] = {.lex_state = 127, .external_lex_state = 5}, + [3580] = {.lex_state = 127, .external_lex_state = 5}, + [3581] = {.lex_state = 127, .external_lex_state = 5}, + [3582] = {.lex_state = 127, .external_lex_state = 5}, + [3583] = {.lex_state = 127, .external_lex_state = 5}, + [3584] = {.lex_state = 127, .external_lex_state = 2}, + [3585] = {.lex_state = 127, .external_lex_state = 2}, + [3586] = {.lex_state = 127, .external_lex_state = 5}, + [3587] = {.lex_state = 127, .external_lex_state = 2}, + [3588] = {.lex_state = 127, .external_lex_state = 5}, + [3589] = {.lex_state = 7, .external_lex_state = 2}, + [3590] = {.lex_state = 127, .external_lex_state = 2}, + [3591] = {.lex_state = 127, .external_lex_state = 5}, + [3592] = {.lex_state = 7, .external_lex_state = 2}, + [3593] = {.lex_state = 127, .external_lex_state = 5}, + [3594] = {.lex_state = 127, .external_lex_state = 5}, + [3595] = {.lex_state = 127, .external_lex_state = 2}, + [3596] = {.lex_state = 127, .external_lex_state = 2}, + [3597] = {.lex_state = 127, .external_lex_state = 5}, + [3598] = {.lex_state = 127, .external_lex_state = 5}, + [3599] = {.lex_state = 127, .external_lex_state = 5}, + [3600] = {.lex_state = 127, .external_lex_state = 5}, + [3601] = {.lex_state = 127, .external_lex_state = 2}, + [3602] = {.lex_state = 127, .external_lex_state = 2}, + [3603] = {.lex_state = 127, .external_lex_state = 2}, + [3604] = {.lex_state = 127, .external_lex_state = 5}, + [3605] = {.lex_state = 127, .external_lex_state = 2}, + [3606] = {.lex_state = 127, .external_lex_state = 5}, + [3607] = {.lex_state = 127, .external_lex_state = 5}, + [3608] = {.lex_state = 127, .external_lex_state = 2}, + [3609] = {.lex_state = 127, .external_lex_state = 5}, + [3610] = {.lex_state = 8, .external_lex_state = 2}, + [3611] = {.lex_state = 127, .external_lex_state = 2}, + [3612] = {.lex_state = 127, .external_lex_state = 5}, + [3613] = {.lex_state = 127, .external_lex_state = 2}, + [3614] = {.lex_state = 127, .external_lex_state = 5}, + [3615] = {.lex_state = 127, .external_lex_state = 5}, + [3616] = {.lex_state = 127, .external_lex_state = 2}, + [3617] = {.lex_state = 127, .external_lex_state = 5}, + [3618] = {.lex_state = 127, .external_lex_state = 2}, + [3619] = {.lex_state = 127, .external_lex_state = 5}, + [3620] = {.lex_state = 127, .external_lex_state = 2}, + [3621] = {.lex_state = 127, .external_lex_state = 2}, + [3622] = {.lex_state = 127, .external_lex_state = 5}, + [3623] = {.lex_state = 127, .external_lex_state = 2}, + [3624] = {.lex_state = 127, .external_lex_state = 5}, + [3625] = {.lex_state = 127, .external_lex_state = 2}, + [3626] = {.lex_state = 127, .external_lex_state = 5}, + [3627] = {.lex_state = 127, .external_lex_state = 2}, + [3628] = {.lex_state = 127, .external_lex_state = 5}, + [3629] = {.lex_state = 127, .external_lex_state = 5}, + [3630] = {.lex_state = 127, .external_lex_state = 2}, + [3631] = {.lex_state = 127, .external_lex_state = 2}, + [3632] = {.lex_state = 127, .external_lex_state = 5}, + [3633] = {.lex_state = 8, .external_lex_state = 2}, + [3634] = {.lex_state = 127, .external_lex_state = 5}, + [3635] = {.lex_state = 127, .external_lex_state = 5}, + [3636] = {.lex_state = 127, .external_lex_state = 2}, + [3637] = {.lex_state = 127, .external_lex_state = 5}, + [3638] = {.lex_state = 127, .external_lex_state = 5}, + [3639] = {.lex_state = 127, .external_lex_state = 5}, + [3640] = {.lex_state = 127, .external_lex_state = 2}, + [3641] = {.lex_state = 7, .external_lex_state = 2}, + [3642] = {.lex_state = 127, .external_lex_state = 5}, + [3643] = {.lex_state = 127, .external_lex_state = 5}, + [3644] = {.lex_state = 127, .external_lex_state = 2}, + [3645] = {.lex_state = 127, .external_lex_state = 5}, + [3646] = {.lex_state = 127, .external_lex_state = 5}, + [3647] = {.lex_state = 7, .external_lex_state = 2}, + [3648] = {.lex_state = 127, .external_lex_state = 5}, + [3649] = {.lex_state = 127, .external_lex_state = 5}, + [3650] = {.lex_state = 127, .external_lex_state = 2}, + [3651] = {.lex_state = 127, .external_lex_state = 2}, + [3652] = {.lex_state = 127, .external_lex_state = 2}, + [3653] = {.lex_state = 127, .external_lex_state = 5}, + [3654] = {.lex_state = 127, .external_lex_state = 2}, + [3655] = {.lex_state = 127, .external_lex_state = 5}, + [3656] = {.lex_state = 127, .external_lex_state = 2}, + [3657] = {.lex_state = 127, .external_lex_state = 2}, + [3658] = {.lex_state = 127, .external_lex_state = 2}, + [3659] = {.lex_state = 7, .external_lex_state = 2}, + [3660] = {.lex_state = 127, .external_lex_state = 2}, + [3661] = {.lex_state = 127, .external_lex_state = 5}, + [3662] = {.lex_state = 127, .external_lex_state = 5}, + [3663] = {.lex_state = 127, .external_lex_state = 2}, + [3664] = {.lex_state = 127, .external_lex_state = 5}, + [3665] = {.lex_state = 127, .external_lex_state = 5}, + [3666] = {.lex_state = 127, .external_lex_state = 5}, + [3667] = {.lex_state = 127, .external_lex_state = 5}, + [3668] = {.lex_state = 127, .external_lex_state = 2}, + [3669] = {.lex_state = 127, .external_lex_state = 5}, + [3670] = {.lex_state = 127, .external_lex_state = 5}, + [3671] = {.lex_state = 127, .external_lex_state = 5}, + [3672] = {.lex_state = 127, .external_lex_state = 5}, + [3673] = {.lex_state = 127, .external_lex_state = 5}, + [3674] = {.lex_state = 127, .external_lex_state = 5}, + [3675] = {.lex_state = 127, .external_lex_state = 5}, + [3676] = {.lex_state = 127, .external_lex_state = 5}, + [3677] = {.lex_state = 127, .external_lex_state = 5}, + [3678] = {.lex_state = 127, .external_lex_state = 5}, + [3679] = {.lex_state = 127, .external_lex_state = 2}, + [3680] = {.lex_state = 127, .external_lex_state = 2}, + [3681] = {.lex_state = 127, .external_lex_state = 2}, + [3682] = {.lex_state = 127, .external_lex_state = 5}, + [3683] = {.lex_state = 127, .external_lex_state = 5}, + [3684] = {.lex_state = 127, .external_lex_state = 2}, + [3685] = {.lex_state = 127, .external_lex_state = 5}, + [3686] = {.lex_state = 127, .external_lex_state = 5}, + [3687] = {.lex_state = 127, .external_lex_state = 5}, + [3688] = {.lex_state = 127, .external_lex_state = 5}, + [3689] = {.lex_state = 127, .external_lex_state = 5}, + [3690] = {.lex_state = 7, .external_lex_state = 2}, + [3691] = {.lex_state = 127, .external_lex_state = 5}, + [3692] = {.lex_state = 127, .external_lex_state = 5}, + [3693] = {.lex_state = 127, .external_lex_state = 5}, + [3694] = {.lex_state = 7, .external_lex_state = 2}, + [3695] = {.lex_state = 127, .external_lex_state = 5}, + [3696] = {.lex_state = 127, .external_lex_state = 5}, + [3697] = {.lex_state = 127, .external_lex_state = 5}, + [3698] = {.lex_state = 127, .external_lex_state = 5}, + [3699] = {.lex_state = 127, .external_lex_state = 5}, + [3700] = {.lex_state = 127, .external_lex_state = 5}, + [3701] = {.lex_state = 127, .external_lex_state = 5}, + [3702] = {.lex_state = 127, .external_lex_state = 5}, + [3703] = {.lex_state = 127, .external_lex_state = 5}, + [3704] = {.lex_state = 127, .external_lex_state = 5}, + [3705] = {.lex_state = 127, .external_lex_state = 5}, + [3706] = {.lex_state = 127, .external_lex_state = 5}, + [3707] = {.lex_state = 127, .external_lex_state = 5}, + [3708] = {.lex_state = 127, .external_lex_state = 2}, + [3709] = {.lex_state = 127, .external_lex_state = 5}, + [3710] = {.lex_state = 127, .external_lex_state = 2}, + [3711] = {.lex_state = 127, .external_lex_state = 5}, + [3712] = {.lex_state = 127, .external_lex_state = 5}, + [3713] = {.lex_state = 127, .external_lex_state = 5}, + [3714] = {.lex_state = 127, .external_lex_state = 5}, + [3715] = {.lex_state = 127, .external_lex_state = 5}, + [3716] = {.lex_state = 127, .external_lex_state = 5}, + [3717] = {.lex_state = 127, .external_lex_state = 2}, + [3718] = {.lex_state = 7, .external_lex_state = 2}, + [3719] = {.lex_state = 127, .external_lex_state = 5}, + [3720] = {.lex_state = 7, .external_lex_state = 2}, + [3721] = {.lex_state = 7, .external_lex_state = 2}, + [3722] = {.lex_state = 127, .external_lex_state = 5}, + [3723] = {.lex_state = 127, .external_lex_state = 5}, + [3724] = {.lex_state = 7, .external_lex_state = 2}, + [3725] = {.lex_state = 127, .external_lex_state = 5}, + [3726] = {.lex_state = 127, .external_lex_state = 5}, + [3727] = {.lex_state = 127, .external_lex_state = 5}, + [3728] = {.lex_state = 127, .external_lex_state = 5}, + [3729] = {.lex_state = 127, .external_lex_state = 2}, + [3730] = {.lex_state = 127, .external_lex_state = 5}, + [3731] = {.lex_state = 127, .external_lex_state = 5}, + [3732] = {.lex_state = 127, .external_lex_state = 2}, + [3733] = {.lex_state = 127, .external_lex_state = 5}, + [3734] = {.lex_state = 127, .external_lex_state = 2}, + [3735] = {.lex_state = 127, .external_lex_state = 2}, + [3736] = {.lex_state = 127, .external_lex_state = 5}, + [3737] = {.lex_state = 127, .external_lex_state = 5}, + [3738] = {.lex_state = 127, .external_lex_state = 2}, + [3739] = {.lex_state = 127, .external_lex_state = 2}, + [3740] = {.lex_state = 127, .external_lex_state = 2}, + [3741] = {.lex_state = 7, .external_lex_state = 2}, + [3742] = {.lex_state = 127, .external_lex_state = 5}, + [3743] = {.lex_state = 127, .external_lex_state = 2}, + [3744] = {.lex_state = 127, .external_lex_state = 5}, + [3745] = {.lex_state = 127, .external_lex_state = 5}, + [3746] = {.lex_state = 127, .external_lex_state = 2}, + [3747] = {.lex_state = 127, .external_lex_state = 5}, + [3748] = {.lex_state = 127, .external_lex_state = 5}, + [3749] = {.lex_state = 127, .external_lex_state = 5}, + [3750] = {.lex_state = 127, .external_lex_state = 5}, + [3751] = {.lex_state = 7, .external_lex_state = 2}, + [3752] = {.lex_state = 127, .external_lex_state = 5}, + [3753] = {.lex_state = 127, .external_lex_state = 5}, + [3754] = {.lex_state = 127, .external_lex_state = 5}, + [3755] = {.lex_state = 127, .external_lex_state = 5}, + [3756] = {.lex_state = 127, .external_lex_state = 2}, + [3757] = {.lex_state = 7, .external_lex_state = 2}, + [3758] = {.lex_state = 127, .external_lex_state = 2}, + [3759] = {.lex_state = 127, .external_lex_state = 5}, + [3760] = {.lex_state = 127, .external_lex_state = 2}, + [3761] = {.lex_state = 127, .external_lex_state = 5}, + [3762] = {.lex_state = 127, .external_lex_state = 2}, + [3763] = {.lex_state = 127, .external_lex_state = 2}, + [3764] = {.lex_state = 8, .external_lex_state = 2}, + [3765] = {.lex_state = 127, .external_lex_state = 5}, + [3766] = {.lex_state = 127, .external_lex_state = 2}, + [3767] = {.lex_state = 127, .external_lex_state = 2}, + [3768] = {.lex_state = 17, .external_lex_state = 8}, + [3769] = {.lex_state = 127, .external_lex_state = 2}, + [3770] = {.lex_state = 127, .external_lex_state = 5}, + [3771] = {.lex_state = 127, .external_lex_state = 2}, + [3772] = {.lex_state = 127, .external_lex_state = 2}, + [3773] = {.lex_state = 19, .external_lex_state = 2}, + [3774] = {.lex_state = 127, .external_lex_state = 5}, + [3775] = {.lex_state = 127, .external_lex_state = 2}, + [3776] = {.lex_state = 127, .external_lex_state = 2}, + [3777] = {.lex_state = 127, .external_lex_state = 2}, + [3778] = {.lex_state = 127, .external_lex_state = 5}, + [3779] = {.lex_state = 127, .external_lex_state = 2}, + [3780] = {.lex_state = 127, .external_lex_state = 5}, + [3781] = {.lex_state = 127, .external_lex_state = 5}, + [3782] = {.lex_state = 127, .external_lex_state = 5}, + [3783] = {.lex_state = 127, .external_lex_state = 2}, + [3784] = {.lex_state = 11, .external_lex_state = 2}, + [3785] = {.lex_state = 127, .external_lex_state = 6}, + [3786] = {.lex_state = 127, .external_lex_state = 6}, + [3787] = {.lex_state = 127, .external_lex_state = 2}, + [3788] = {.lex_state = 127, .external_lex_state = 2}, + [3789] = {.lex_state = 127, .external_lex_state = 5}, + [3790] = {.lex_state = 17, .external_lex_state = 7}, + [3791] = {.lex_state = 127, .external_lex_state = 2}, + [3792] = {.lex_state = 127, .external_lex_state = 5}, + [3793] = {.lex_state = 127, .external_lex_state = 5}, + [3794] = {.lex_state = 127, .external_lex_state = 5}, + [3795] = {.lex_state = 17, .external_lex_state = 7}, + [3796] = {.lex_state = 17, .external_lex_state = 7}, + [3797] = {.lex_state = 127, .external_lex_state = 5}, + [3798] = {.lex_state = 127, .external_lex_state = 2}, + [3799] = {.lex_state = 127, .external_lex_state = 5}, + [3800] = {.lex_state = 127, .external_lex_state = 5}, + [3801] = {.lex_state = 127, .external_lex_state = 5}, + [3802] = {.lex_state = 127, .external_lex_state = 5}, + [3803] = {.lex_state = 127, .external_lex_state = 2}, + [3804] = {.lex_state = 127, .external_lex_state = 5}, + [3805] = {.lex_state = 17, .external_lex_state = 7}, + [3806] = {.lex_state = 127, .external_lex_state = 2}, + [3807] = {.lex_state = 127, .external_lex_state = 5}, + [3808] = {.lex_state = 127, .external_lex_state = 5}, + [3809] = {.lex_state = 127, .external_lex_state = 5}, + [3810] = {.lex_state = 127, .external_lex_state = 2}, + [3811] = {.lex_state = 127, .external_lex_state = 5}, + [3812] = {.lex_state = 127, .external_lex_state = 5}, + [3813] = {.lex_state = 127, .external_lex_state = 2}, + [3814] = {.lex_state = 17, .external_lex_state = 7}, + [3815] = {.lex_state = 17, .external_lex_state = 7}, + [3816] = {.lex_state = 17, .external_lex_state = 7}, + [3817] = {.lex_state = 17, .external_lex_state = 7}, + [3818] = {.lex_state = 127, .external_lex_state = 5}, + [3819] = {.lex_state = 127, .external_lex_state = 5}, + [3820] = {.lex_state = 127, .external_lex_state = 5}, + [3821] = {.lex_state = 127, .external_lex_state = 2}, + [3822] = {.lex_state = 127, .external_lex_state = 2}, + [3823] = {.lex_state = 127, .external_lex_state = 2}, + [3824] = {.lex_state = 12, .external_lex_state = 2}, + [3825] = {.lex_state = 20, .external_lex_state = 2}, + [3826] = {.lex_state = 8, .external_lex_state = 2}, + [3827] = {.lex_state = 19, .external_lex_state = 2}, + [3828] = {.lex_state = 127, .external_lex_state = 2}, + [3829] = {.lex_state = 127, .external_lex_state = 2}, + [3830] = {.lex_state = 127, .external_lex_state = 2}, + [3831] = {.lex_state = 127, .external_lex_state = 2}, + [3832] = {.lex_state = 127, .external_lex_state = 6}, + [3833] = {.lex_state = 127, .external_lex_state = 6}, + [3834] = {.lex_state = 127, .external_lex_state = 2}, + [3835] = {.lex_state = 127, .external_lex_state = 6}, + [3836] = {.lex_state = 127, .external_lex_state = 2}, + [3837] = {.lex_state = 17, .external_lex_state = 7}, + [3838] = {.lex_state = 127, .external_lex_state = 2}, + [3839] = {.lex_state = 127, .external_lex_state = 2}, + [3840] = {.lex_state = 127, .external_lex_state = 2}, + [3841] = {.lex_state = 127, .external_lex_state = 2}, + [3842] = {.lex_state = 127, .external_lex_state = 2}, + [3843] = {.lex_state = 17, .external_lex_state = 7}, + [3844] = {.lex_state = 17, .external_lex_state = 7}, + [3845] = {.lex_state = 17, .external_lex_state = 7}, + [3846] = {.lex_state = 17, .external_lex_state = 7}, + [3847] = {.lex_state = 17, .external_lex_state = 7}, + [3848] = {.lex_state = 17, .external_lex_state = 7}, + [3849] = {.lex_state = 127, .external_lex_state = 6}, + [3850] = {.lex_state = 127, .external_lex_state = 2}, + [3851] = {.lex_state = 127, .external_lex_state = 6}, + [3852] = {.lex_state = 127, .external_lex_state = 2}, + [3853] = {.lex_state = 127, .external_lex_state = 2}, + [3854] = {.lex_state = 127, .external_lex_state = 6}, + [3855] = {.lex_state = 17, .external_lex_state = 7}, + [3856] = {.lex_state = 17, .external_lex_state = 7}, + [3857] = {.lex_state = 127, .external_lex_state = 2}, + [3858] = {.lex_state = 127, .external_lex_state = 2}, + [3859] = {.lex_state = 127, .external_lex_state = 6}, + [3860] = {.lex_state = 127, .external_lex_state = 2}, + [3861] = {.lex_state = 12, .external_lex_state = 2}, + [3862] = {.lex_state = 20, .external_lex_state = 2}, + [3863] = {.lex_state = 127, .external_lex_state = 5}, + [3864] = {.lex_state = 127, .external_lex_state = 2}, + [3865] = {.lex_state = 17, .external_lex_state = 7}, + [3866] = {.lex_state = 127, .external_lex_state = 2}, + [3867] = {.lex_state = 127, .external_lex_state = 2}, + [3868] = {.lex_state = 17, .external_lex_state = 7}, + [3869] = {.lex_state = 17, .external_lex_state = 7}, + [3870] = {.lex_state = 17, .external_lex_state = 7}, + [3871] = {.lex_state = 127, .external_lex_state = 2}, + [3872] = {.lex_state = 127, .external_lex_state = 6}, + [3873] = {.lex_state = 127, .external_lex_state = 2}, + [3874] = {.lex_state = 127, .external_lex_state = 2}, + [3875] = {.lex_state = 17, .external_lex_state = 7}, + [3876] = {.lex_state = 127, .external_lex_state = 2}, + [3877] = {.lex_state = 127, .external_lex_state = 2}, + [3878] = {.lex_state = 127, .external_lex_state = 2}, + [3879] = {.lex_state = 127, .external_lex_state = 2}, + [3880] = {.lex_state = 127, .external_lex_state = 2}, + [3881] = {.lex_state = 19, .external_lex_state = 2}, + [3882] = {.lex_state = 127, .external_lex_state = 2}, + [3883] = {.lex_state = 17, .external_lex_state = 8}, + [3884] = {.lex_state = 127, .external_lex_state = 6}, + [3885] = {.lex_state = 127, .external_lex_state = 2}, + [3886] = {.lex_state = 127, .external_lex_state = 2}, + [3887] = {.lex_state = 17, .external_lex_state = 7}, + [3888] = {.lex_state = 19, .external_lex_state = 2}, + [3889] = {.lex_state = 127, .external_lex_state = 2}, + [3890] = {.lex_state = 17, .external_lex_state = 7}, + [3891] = {.lex_state = 127, .external_lex_state = 6}, + [3892] = {.lex_state = 127, .external_lex_state = 2}, + [3893] = {.lex_state = 17, .external_lex_state = 8}, + [3894] = {.lex_state = 127, .external_lex_state = 2}, + [3895] = {.lex_state = 17, .external_lex_state = 8}, + [3896] = {.lex_state = 11, .external_lex_state = 2}, + [3897] = {.lex_state = 127, .external_lex_state = 2}, + [3898] = {.lex_state = 127, .external_lex_state = 2}, + [3899] = {.lex_state = 17, .external_lex_state = 8}, + [3900] = {.lex_state = 12, .external_lex_state = 2}, + [3901] = {.lex_state = 20, .external_lex_state = 2}, + [3902] = {.lex_state = 127, .external_lex_state = 2}, + [3903] = {.lex_state = 127, .external_lex_state = 2}, + [3904] = {.lex_state = 127, .external_lex_state = 6}, + [3905] = {.lex_state = 127, .external_lex_state = 6}, + [3906] = {.lex_state = 127, .external_lex_state = 2}, + [3907] = {.lex_state = 127, .external_lex_state = 2}, + [3908] = {.lex_state = 127, .external_lex_state = 6}, + [3909] = {.lex_state = 127, .external_lex_state = 2}, + [3910] = {.lex_state = 127, .external_lex_state = 6}, + [3911] = {.lex_state = 127, .external_lex_state = 6}, + [3912] = {.lex_state = 19, .external_lex_state = 2}, + [3913] = {.lex_state = 127, .external_lex_state = 2}, + [3914] = {.lex_state = 127, .external_lex_state = 2}, + [3915] = {.lex_state = 127, .external_lex_state = 2}, + [3916] = {.lex_state = 127, .external_lex_state = 2}, + [3917] = {.lex_state = 127, .external_lex_state = 2}, + [3918] = {.lex_state = 127, .external_lex_state = 5}, + [3919] = {.lex_state = 17, .external_lex_state = 7}, + [3920] = {.lex_state = 127, .external_lex_state = 2}, + [3921] = {.lex_state = 127, .external_lex_state = 6}, + [3922] = {.lex_state = 127, .external_lex_state = 6}, + [3923] = {.lex_state = 127, .external_lex_state = 6}, + [3924] = {.lex_state = 127, .external_lex_state = 2}, + [3925] = {.lex_state = 127, .external_lex_state = 5}, + [3926] = {.lex_state = 127, .external_lex_state = 2}, + [3927] = {.lex_state = 127, .external_lex_state = 5}, + [3928] = {.lex_state = 127, .external_lex_state = 2}, + [3929] = {.lex_state = 127, .external_lex_state = 2}, + [3930] = {.lex_state = 127, .external_lex_state = 6}, + [3931] = {.lex_state = 17, .external_lex_state = 7}, + [3932] = {.lex_state = 127, .external_lex_state = 2}, + [3933] = {.lex_state = 127, .external_lex_state = 2}, + [3934] = {.lex_state = 127, .external_lex_state = 2}, + [3935] = {.lex_state = 127, .external_lex_state = 2}, + [3936] = {.lex_state = 127, .external_lex_state = 2}, + [3937] = {.lex_state = 127, .external_lex_state = 5}, + [3938] = {.lex_state = 127, .external_lex_state = 2}, + [3939] = {.lex_state = 127, .external_lex_state = 6}, + [3940] = {.lex_state = 127, .external_lex_state = 2}, + [3941] = {.lex_state = 127, .external_lex_state = 2}, + [3942] = {.lex_state = 127, .external_lex_state = 2}, + [3943] = {.lex_state = 127, .external_lex_state = 6}, + [3944] = {.lex_state = 127, .external_lex_state = 2}, + [3945] = {.lex_state = 127, .external_lex_state = 2}, + [3946] = {.lex_state = 127, .external_lex_state = 2}, + [3947] = {.lex_state = 127, .external_lex_state = 2}, + [3948] = {.lex_state = 17, .external_lex_state = 7}, + [3949] = {.lex_state = 17, .external_lex_state = 7}, + [3950] = {.lex_state = 127, .external_lex_state = 6}, + [3951] = {.lex_state = 127, .external_lex_state = 6}, + [3952] = {.lex_state = 127, .external_lex_state = 2}, + [3953] = {.lex_state = 17, .external_lex_state = 7}, + [3954] = {.lex_state = 127, .external_lex_state = 2}, + [3955] = {.lex_state = 17, .external_lex_state = 7}, + [3956] = {.lex_state = 127, .external_lex_state = 6}, + [3957] = {.lex_state = 127, .external_lex_state = 2}, + [3958] = {.lex_state = 8, .external_lex_state = 2}, + [3959] = {.lex_state = 127, .external_lex_state = 2}, + [3960] = {.lex_state = 127, .external_lex_state = 2}, + [3961] = {.lex_state = 127, .external_lex_state = 2}, + [3962] = {.lex_state = 127, .external_lex_state = 2}, + [3963] = {.lex_state = 127, .external_lex_state = 5}, + [3964] = {.lex_state = 127, .external_lex_state = 6}, + [3965] = {.lex_state = 8, .external_lex_state = 2}, + [3966] = {.lex_state = 127, .external_lex_state = 5}, + [3967] = {.lex_state = 127, .external_lex_state = 5}, + [3968] = {.lex_state = 127, .external_lex_state = 5}, + [3969] = {.lex_state = 127, .external_lex_state = 5}, + [3970] = {.lex_state = 127, .external_lex_state = 5}, + [3971] = {.lex_state = 127, .external_lex_state = 5}, + [3972] = {.lex_state = 127, .external_lex_state = 5}, + [3973] = {.lex_state = 127, .external_lex_state = 5}, + [3974] = {.lex_state = 127, .external_lex_state = 2}, + [3975] = {.lex_state = 127, .external_lex_state = 5}, + [3976] = {.lex_state = 127, .external_lex_state = 5}, + [3977] = {.lex_state = 127, .external_lex_state = 5}, + [3978] = {.lex_state = 127, .external_lex_state = 5}, + [3979] = {.lex_state = 127, .external_lex_state = 5}, + [3980] = {.lex_state = 127, .external_lex_state = 5}, + [3981] = {.lex_state = 127, .external_lex_state = 5}, + [3982] = {.lex_state = 127, .external_lex_state = 2}, + [3983] = {.lex_state = 19, .external_lex_state = 2}, + [3984] = {.lex_state = 127, .external_lex_state = 2}, + [3985] = {.lex_state = 127, .external_lex_state = 2}, + [3986] = {.lex_state = 127, .external_lex_state = 5}, + [3987] = {.lex_state = 127, .external_lex_state = 2}, + [3988] = {.lex_state = 8, .external_lex_state = 2}, + [3989] = {.lex_state = 127, .external_lex_state = 5}, + [3990] = {.lex_state = 127, .external_lex_state = 5}, + [3991] = {.lex_state = 7, .external_lex_state = 2}, + [3992] = {.lex_state = 127, .external_lex_state = 5}, + [3993] = {.lex_state = 127, .external_lex_state = 2}, + [3994] = {.lex_state = 127, .external_lex_state = 2}, + [3995] = {.lex_state = 127, .external_lex_state = 5}, + [3996] = {.lex_state = 127, .external_lex_state = 5}, + [3997] = {.lex_state = 127, .external_lex_state = 2}, + [3998] = {.lex_state = 127, .external_lex_state = 5}, + [3999] = {.lex_state = 127, .external_lex_state = 2}, + [4000] = {.lex_state = 127, .external_lex_state = 5}, + [4001] = {.lex_state = 127, .external_lex_state = 5}, + [4002] = {.lex_state = 127, .external_lex_state = 2}, + [4003] = {.lex_state = 127, .external_lex_state = 5}, + [4004] = {.lex_state = 127, .external_lex_state = 2}, + [4005] = {.lex_state = 127, .external_lex_state = 5}, + [4006] = {.lex_state = 127, .external_lex_state = 5}, + [4007] = {.lex_state = 127, .external_lex_state = 2}, + [4008] = {.lex_state = 127, .external_lex_state = 2}, + [4009] = {.lex_state = 127, .external_lex_state = 2}, + [4010] = {.lex_state = 127, .external_lex_state = 2}, + [4011] = {.lex_state = 127, .external_lex_state = 5}, + [4012] = {.lex_state = 127, .external_lex_state = 2}, + [4013] = {.lex_state = 127, .external_lex_state = 2}, + [4014] = {.lex_state = 127, .external_lex_state = 5}, + [4015] = {.lex_state = 127, .external_lex_state = 5}, + [4016] = {.lex_state = 127, .external_lex_state = 2}, + [4017] = {.lex_state = 127, .external_lex_state = 2}, + [4018] = {.lex_state = 127, .external_lex_state = 5}, + [4019] = {.lex_state = 127, .external_lex_state = 2}, + [4020] = {.lex_state = 127, .external_lex_state = 5}, + [4021] = {.lex_state = 127, .external_lex_state = 2}, + [4022] = {.lex_state = 127, .external_lex_state = 5}, + [4023] = {.lex_state = 127, .external_lex_state = 2}, + [4024] = {.lex_state = 127, .external_lex_state = 2}, + [4025] = {.lex_state = 127, .external_lex_state = 2}, + [4026] = {.lex_state = 127, .external_lex_state = 5}, + [4027] = {.lex_state = 127, .external_lex_state = 5}, + [4028] = {.lex_state = 127, .external_lex_state = 5}, + [4029] = {.lex_state = 127, .external_lex_state = 5}, + [4030] = {.lex_state = 127, .external_lex_state = 5}, + [4031] = {.lex_state = 127, .external_lex_state = 2}, + [4032] = {.lex_state = 17, .external_lex_state = 9}, + [4033] = {.lex_state = 127, .external_lex_state = 5}, + [4034] = {.lex_state = 127, .external_lex_state = 2}, + [4035] = {.lex_state = 127, .external_lex_state = 2}, + [4036] = {.lex_state = 11, .external_lex_state = 2}, + [4037] = {.lex_state = 127, .external_lex_state = 2}, + [4038] = {.lex_state = 127, .external_lex_state = 6}, + [4039] = {.lex_state = 127, .external_lex_state = 5}, + [4040] = {.lex_state = 127, .external_lex_state = 5}, + [4041] = {.lex_state = 127, .external_lex_state = 5}, + [4042] = {.lex_state = 127, .external_lex_state = 2}, + [4043] = {.lex_state = 127, .external_lex_state = 5}, + [4044] = {.lex_state = 127, .external_lex_state = 2}, + [4045] = {.lex_state = 127, .external_lex_state = 2}, + [4046] = {.lex_state = 127, .external_lex_state = 5}, + [4047] = {.lex_state = 127, .external_lex_state = 5}, + [4048] = {.lex_state = 127, .external_lex_state = 2}, + [4049] = {.lex_state = 127, .external_lex_state = 2}, + [4050] = {.lex_state = 17, .external_lex_state = 9}, + [4051] = {.lex_state = 127, .external_lex_state = 5}, + [4052] = {.lex_state = 127, .external_lex_state = 5}, + [4053] = {.lex_state = 127, .external_lex_state = 2}, + [4054] = {.lex_state = 127, .external_lex_state = 5}, + [4055] = {.lex_state = 127, .external_lex_state = 2}, + [4056] = {.lex_state = 127, .external_lex_state = 5}, + [4057] = {.lex_state = 127, .external_lex_state = 2}, + [4058] = {.lex_state = 127, .external_lex_state = 2}, + [4059] = {.lex_state = 127, .external_lex_state = 2}, + [4060] = {.lex_state = 127, .external_lex_state = 5}, + [4061] = {.lex_state = 127, .external_lex_state = 2}, + [4062] = {.lex_state = 127, .external_lex_state = 6}, + [4063] = {.lex_state = 127, .external_lex_state = 2}, + [4064] = {.lex_state = 127, .external_lex_state = 5}, + [4065] = {.lex_state = 127, .external_lex_state = 2}, + [4066] = {.lex_state = 127, .external_lex_state = 5}, + [4067] = {.lex_state = 127, .external_lex_state = 5}, + [4068] = {.lex_state = 127, .external_lex_state = 5}, + [4069] = {.lex_state = 127, .external_lex_state = 5}, + [4070] = {.lex_state = 127, .external_lex_state = 2}, + [4071] = {.lex_state = 127, .external_lex_state = 5}, + [4072] = {.lex_state = 127, .external_lex_state = 5}, + [4073] = {.lex_state = 127, .external_lex_state = 5}, + [4074] = {.lex_state = 127, .external_lex_state = 5}, + [4075] = {.lex_state = 127, .external_lex_state = 5}, + [4076] = {.lex_state = 127, .external_lex_state = 2}, + [4077] = {.lex_state = 17, .external_lex_state = 9}, + [4078] = {.lex_state = 127, .external_lex_state = 5}, + [4079] = {.lex_state = 127, .external_lex_state = 5}, + [4080] = {.lex_state = 127, .external_lex_state = 5}, + [4081] = {.lex_state = 127, .external_lex_state = 2}, + [4082] = {.lex_state = 127, .external_lex_state = 5}, + [4083] = {.lex_state = 127, .external_lex_state = 5}, + [4084] = {.lex_state = 19, .external_lex_state = 2}, + [4085] = {.lex_state = 127, .external_lex_state = 2}, + [4086] = {.lex_state = 19, .external_lex_state = 2}, + [4087] = {.lex_state = 127, .external_lex_state = 2}, + [4088] = {.lex_state = 127, .external_lex_state = 5}, + [4089] = {.lex_state = 127, .external_lex_state = 5}, + [4090] = {.lex_state = 127, .external_lex_state = 5}, + [4091] = {.lex_state = 127, .external_lex_state = 2}, + [4092] = {.lex_state = 127, .external_lex_state = 2}, + [4093] = {.lex_state = 127, .external_lex_state = 5}, + [4094] = {.lex_state = 127, .external_lex_state = 5}, + [4095] = {.lex_state = 127, .external_lex_state = 5}, + [4096] = {.lex_state = 127, .external_lex_state = 5}, + [4097] = {.lex_state = 127, .external_lex_state = 5}, + [4098] = {.lex_state = 17, .external_lex_state = 9}, + [4099] = {.lex_state = 127, .external_lex_state = 5}, + [4100] = {.lex_state = 127, .external_lex_state = 5}, + [4101] = {.lex_state = 127, .external_lex_state = 5}, + [4102] = {.lex_state = 127, .external_lex_state = 5}, + [4103] = {.lex_state = 127, .external_lex_state = 5}, + [4104] = {.lex_state = 127, .external_lex_state = 2}, + [4105] = {.lex_state = 127, .external_lex_state = 5}, + [4106] = {.lex_state = 127, .external_lex_state = 5}, + [4107] = {.lex_state = 127, .external_lex_state = 5}, + [4108] = {.lex_state = 127, .external_lex_state = 5}, + [4109] = {.lex_state = 127, .external_lex_state = 5}, + [4110] = {.lex_state = 127, .external_lex_state = 2}, + [4111] = {.lex_state = 127, .external_lex_state = 5}, + [4112] = {.lex_state = 127, .external_lex_state = 5}, + [4113] = {.lex_state = 127, .external_lex_state = 5}, + [4114] = {.lex_state = 127, .external_lex_state = 5}, + [4115] = {.lex_state = 11, .external_lex_state = 2}, + [4116] = {.lex_state = 127, .external_lex_state = 5}, + [4117] = {.lex_state = 127, .external_lex_state = 5}, + [4118] = {.lex_state = 127, .external_lex_state = 5}, + [4119] = {.lex_state = 127, .external_lex_state = 5}, + [4120] = {.lex_state = 127, .external_lex_state = 5}, + [4121] = {.lex_state = 127, .external_lex_state = 5}, + [4122] = {.lex_state = 127, .external_lex_state = 5}, + [4123] = {.lex_state = 127, .external_lex_state = 5}, + [4124] = {.lex_state = 127, .external_lex_state = 5}, + [4125] = {.lex_state = 127, .external_lex_state = 5}, + [4126] = {.lex_state = 127, .external_lex_state = 5}, + [4127] = {.lex_state = 127, .external_lex_state = 5}, + [4128] = {.lex_state = 127, .external_lex_state = 5}, + [4129] = {.lex_state = 127, .external_lex_state = 5}, + [4130] = {.lex_state = 127, .external_lex_state = 5}, + [4131] = {.lex_state = 127, .external_lex_state = 5}, + [4132] = {.lex_state = 127, .external_lex_state = 5}, + [4133] = {.lex_state = 127, .external_lex_state = 5}, + [4134] = {.lex_state = 127, .external_lex_state = 5}, + [4135] = {.lex_state = 127, .external_lex_state = 2}, + [4136] = {.lex_state = 127, .external_lex_state = 2}, + [4137] = {.lex_state = 127, .external_lex_state = 5}, + [4138] = {.lex_state = 127, .external_lex_state = 5}, + [4139] = {.lex_state = 127, .external_lex_state = 5}, + [4140] = {.lex_state = 127, .external_lex_state = 5}, + [4141] = {.lex_state = 127, .external_lex_state = 5}, + [4142] = {.lex_state = 127, .external_lex_state = 5}, + [4143] = {.lex_state = 127, .external_lex_state = 5}, + [4144] = {.lex_state = 127, .external_lex_state = 5}, + [4145] = {.lex_state = 127, .external_lex_state = 2}, + [4146] = {.lex_state = 127, .external_lex_state = 5}, + [4147] = {.lex_state = 17, .external_lex_state = 9}, + [4148] = {.lex_state = 127, .external_lex_state = 2}, + [4149] = {.lex_state = 127, .external_lex_state = 5}, + [4150] = {.lex_state = 127, .external_lex_state = 2}, + [4151] = {.lex_state = 19, .external_lex_state = 2}, + [4152] = {.lex_state = 127, .external_lex_state = 5}, + [4153] = {.lex_state = 127, .external_lex_state = 5}, + [4154] = {.lex_state = 127, .external_lex_state = 5}, + [4155] = {.lex_state = 127, .external_lex_state = 5}, + [4156] = {.lex_state = 127, .external_lex_state = 2}, + [4157] = {.lex_state = 127, .external_lex_state = 2}, + [4158] = {.lex_state = 127, .external_lex_state = 6}, + [4159] = {.lex_state = 127, .external_lex_state = 5}, + [4160] = {.lex_state = 127, .external_lex_state = 5}, + [4161] = {.lex_state = 127, .external_lex_state = 2}, + [4162] = {.lex_state = 127, .external_lex_state = 5}, + [4163] = {.lex_state = 127, .external_lex_state = 2}, + [4164] = {.lex_state = 127, .external_lex_state = 5}, + [4165] = {.lex_state = 127, .external_lex_state = 5}, + [4166] = {.lex_state = 127, .external_lex_state = 5}, + [4167] = {.lex_state = 127, .external_lex_state = 5}, + [4168] = {.lex_state = 127, .external_lex_state = 5}, + [4169] = {.lex_state = 127, .external_lex_state = 5}, + [4170] = {.lex_state = 127, .external_lex_state = 5}, + [4171] = {.lex_state = 127, .external_lex_state = 5}, + [4172] = {.lex_state = 127, .external_lex_state = 5}, + [4173] = {.lex_state = 127, .external_lex_state = 5}, + [4174] = {.lex_state = 127, .external_lex_state = 5}, + [4175] = {.lex_state = 127, .external_lex_state = 5}, + [4176] = {.lex_state = 127, .external_lex_state = 5}, + [4177] = {.lex_state = 127, .external_lex_state = 5}, + [4178] = {.lex_state = 19, .external_lex_state = 2}, + [4179] = {.lex_state = 127, .external_lex_state = 5}, + [4180] = {.lex_state = 127, .external_lex_state = 5}, + [4181] = {.lex_state = 127, .external_lex_state = 5}, + [4182] = {.lex_state = 127, .external_lex_state = 5}, + [4183] = {.lex_state = 127, .external_lex_state = 5}, + [4184] = {.lex_state = 127, .external_lex_state = 5}, + [4185] = {.lex_state = 127, .external_lex_state = 5}, + [4186] = {.lex_state = 127, .external_lex_state = 5}, + [4187] = {.lex_state = 127, .external_lex_state = 5}, + [4188] = {.lex_state = 127, .external_lex_state = 2}, + [4189] = {.lex_state = 127, .external_lex_state = 5}, + [4190] = {.lex_state = 127, .external_lex_state = 2}, + [4191] = {.lex_state = 127, .external_lex_state = 5}, + [4192] = {.lex_state = 127, .external_lex_state = 5}, + [4193] = {.lex_state = 127, .external_lex_state = 2}, + [4194] = {.lex_state = 127, .external_lex_state = 5}, + [4195] = {.lex_state = 127, .external_lex_state = 5}, + [4196] = {.lex_state = 127, .external_lex_state = 5}, + [4197] = {.lex_state = 127, .external_lex_state = 5}, + [4198] = {.lex_state = 127, .external_lex_state = 5}, + [4199] = {.lex_state = 127, .external_lex_state = 2}, + [4200] = {.lex_state = 127, .external_lex_state = 5}, + [4201] = {.lex_state = 127, .external_lex_state = 5}, + [4202] = {.lex_state = 127, .external_lex_state = 5}, + [4203] = {.lex_state = 127, .external_lex_state = 2}, + [4204] = {.lex_state = 127, .external_lex_state = 2}, + [4205] = {.lex_state = 127, .external_lex_state = 5}, + [4206] = {.lex_state = 127, .external_lex_state = 5}, + [4207] = {.lex_state = 127, .external_lex_state = 5}, + [4208] = {.lex_state = 127, .external_lex_state = 5}, + [4209] = {.lex_state = 127, .external_lex_state = 5}, + [4210] = {.lex_state = 127, .external_lex_state = 5}, + [4211] = {.lex_state = 127, .external_lex_state = 5}, + [4212] = {.lex_state = 19, .external_lex_state = 2}, + [4213] = {.lex_state = 19, .external_lex_state = 2}, + [4214] = {.lex_state = 127, .external_lex_state = 5}, + [4215] = {.lex_state = 127, .external_lex_state = 5}, + [4216] = {.lex_state = 127, .external_lex_state = 5}, + [4217] = {.lex_state = 127, .external_lex_state = 5}, + [4218] = {.lex_state = 127, .external_lex_state = 2}, + [4219] = {.lex_state = 127, .external_lex_state = 5}, + [4220] = {.lex_state = 11, .external_lex_state = 2}, + [4221] = {.lex_state = 127, .external_lex_state = 5}, + [4222] = {.lex_state = 127, .external_lex_state = 5}, + [4223] = {.lex_state = 17, .external_lex_state = 9}, + [4224] = {.lex_state = 127, .external_lex_state = 5}, + [4225] = {.lex_state = 127, .external_lex_state = 2}, + [4226] = {.lex_state = 127, .external_lex_state = 2}, + [4227] = {.lex_state = 127, .external_lex_state = 5}, + [4228] = {.lex_state = 127, .external_lex_state = 5}, + [4229] = {.lex_state = 127, .external_lex_state = 2}, + [4230] = {.lex_state = 127, .external_lex_state = 2}, + [4231] = {.lex_state = 127, .external_lex_state = 6}, + [4232] = {.lex_state = 127, .external_lex_state = 6}, + [4233] = {.lex_state = 127, .external_lex_state = 5}, + [4234] = {.lex_state = 127, .external_lex_state = 2}, + [4235] = {.lex_state = 17, .external_lex_state = 9}, + [4236] = {.lex_state = 127, .external_lex_state = 5}, + [4237] = {.lex_state = 19, .external_lex_state = 2}, + [4238] = {.lex_state = 127, .external_lex_state = 2}, + [4239] = {.lex_state = 127, .external_lex_state = 5}, + [4240] = {.lex_state = 127, .external_lex_state = 6}, + [4241] = {.lex_state = 127, .external_lex_state = 2}, + [4242] = {.lex_state = 127, .external_lex_state = 5}, + [4243] = {.lex_state = 127, .external_lex_state = 2}, + [4244] = {.lex_state = 127, .external_lex_state = 2}, + [4245] = {.lex_state = 127, .external_lex_state = 5}, + [4246] = {.lex_state = 127, .external_lex_state = 5}, + [4247] = {.lex_state = 127, .external_lex_state = 2}, + [4248] = {.lex_state = 127, .external_lex_state = 5}, + [4249] = {.lex_state = 2, .external_lex_state = 2}, + [4250] = {.lex_state = 19, .external_lex_state = 2}, + [4251] = {.lex_state = 19, .external_lex_state = 2}, + [4252] = {.lex_state = 127, .external_lex_state = 5}, + [4253] = {.lex_state = 127, .external_lex_state = 5}, + [4254] = {.lex_state = 127, .external_lex_state = 5}, + [4255] = {.lex_state = 19, .external_lex_state = 2}, + [4256] = {.lex_state = 127, .external_lex_state = 2}, + [4257] = {.lex_state = 127, .external_lex_state = 5}, + [4258] = {.lex_state = 127, .external_lex_state = 5}, + [4259] = {.lex_state = 17, .external_lex_state = 9}, + [4260] = {.lex_state = 127, .external_lex_state = 5}, + [4261] = {.lex_state = 127, .external_lex_state = 5}, + [4262] = {.lex_state = 127, .external_lex_state = 5}, + [4263] = {.lex_state = 127, .external_lex_state = 5}, + [4264] = {.lex_state = 127, .external_lex_state = 2}, + [4265] = {.lex_state = 127, .external_lex_state = 5}, + [4266] = {.lex_state = 127, .external_lex_state = 2}, + [4267] = {.lex_state = 2, .external_lex_state = 2}, + [4268] = {.lex_state = 127, .external_lex_state = 5}, + [4269] = {.lex_state = 19, .external_lex_state = 2}, + [4270] = {.lex_state = 127, .external_lex_state = 2}, + [4271] = {.lex_state = 127, .external_lex_state = 5}, + [4272] = {.lex_state = 127, .external_lex_state = 5}, + [4273] = {.lex_state = 19, .external_lex_state = 2}, + [4274] = {.lex_state = 127, .external_lex_state = 5}, + [4275] = {.lex_state = 127, .external_lex_state = 5}, + [4276] = {.lex_state = 127, .external_lex_state = 5}, + [4277] = {.lex_state = 127, .external_lex_state = 5}, + [4278] = {.lex_state = 127, .external_lex_state = 5}, + [4279] = {.lex_state = 127, .external_lex_state = 5}, + [4280] = {.lex_state = 127, .external_lex_state = 5}, + [4281] = {.lex_state = 127, .external_lex_state = 6}, + [4282] = {.lex_state = 127, .external_lex_state = 5}, + [4283] = {.lex_state = 127, .external_lex_state = 2}, + [4284] = {.lex_state = 127, .external_lex_state = 5}, + [4285] = {.lex_state = 127, .external_lex_state = 5}, + [4286] = {.lex_state = 127, .external_lex_state = 5}, + [4287] = {.lex_state = 127, .external_lex_state = 5}, + [4288] = {.lex_state = 127, .external_lex_state = 5}, + [4289] = {.lex_state = 127, .external_lex_state = 5}, + [4290] = {.lex_state = 17, .external_lex_state = 9}, + [4291] = {.lex_state = 127, .external_lex_state = 5}, + [4292] = {.lex_state = 127, .external_lex_state = 5}, + [4293] = {.lex_state = 127, .external_lex_state = 5}, + [4294] = {.lex_state = 17, .external_lex_state = 9}, + [4295] = {.lex_state = 127, .external_lex_state = 5}, + [4296] = {.lex_state = 127, .external_lex_state = 5}, + [4297] = {.lex_state = 127, .external_lex_state = 5}, + [4298] = {.lex_state = 127, .external_lex_state = 6}, + [4299] = {.lex_state = 127, .external_lex_state = 5}, + [4300] = {.lex_state = 127, .external_lex_state = 2}, + [4301] = {.lex_state = 127, .external_lex_state = 5}, + [4302] = {.lex_state = 127, .external_lex_state = 5}, + [4303] = {.lex_state = 127, .external_lex_state = 2}, + [4304] = {.lex_state = 127, .external_lex_state = 5}, + [4305] = {.lex_state = 127, .external_lex_state = 5}, + [4306] = {.lex_state = 127, .external_lex_state = 5}, + [4307] = {.lex_state = 127, .external_lex_state = 2}, + [4308] = {.lex_state = 127, .external_lex_state = 2}, + [4309] = {.lex_state = 127, .external_lex_state = 2}, + [4310] = {.lex_state = 127, .external_lex_state = 5}, + [4311] = {.lex_state = 127, .external_lex_state = 2}, + [4312] = {.lex_state = 127, .external_lex_state = 2}, + [4313] = {.lex_state = 127, .external_lex_state = 2}, + [4314] = {.lex_state = 127, .external_lex_state = 2}, + [4315] = {.lex_state = 127, .external_lex_state = 2}, + [4316] = {.lex_state = 127, .external_lex_state = 5}, + [4317] = {.lex_state = 127, .external_lex_state = 5}, + [4318] = {.lex_state = 127, .external_lex_state = 2}, + [4319] = {.lex_state = 127, .external_lex_state = 2}, + [4320] = {.lex_state = 127, .external_lex_state = 2}, + [4321] = {.lex_state = 127, .external_lex_state = 5}, + [4322] = {.lex_state = 127, .external_lex_state = 6}, + [4323] = {.lex_state = 127, .external_lex_state = 5}, + [4324] = {.lex_state = 127, .external_lex_state = 2}, + [4325] = {.lex_state = 127, .external_lex_state = 5}, + [4326] = {.lex_state = 127, .external_lex_state = 5}, + [4327] = {.lex_state = 127, .external_lex_state = 5}, + [4328] = {.lex_state = 127, .external_lex_state = 5}, + [4329] = {.lex_state = 127, .external_lex_state = 5}, + [4330] = {.lex_state = 127, .external_lex_state = 5}, + [4331] = {.lex_state = 127, .external_lex_state = 2}, + [4332] = {.lex_state = 127, .external_lex_state = 5}, + [4333] = {.lex_state = 127, .external_lex_state = 5}, + [4334] = {.lex_state = 127, .external_lex_state = 5}, + [4335] = {.lex_state = 127, .external_lex_state = 5}, + [4336] = {.lex_state = 127, .external_lex_state = 2}, + [4337] = {.lex_state = 127, .external_lex_state = 5}, + [4338] = {.lex_state = 127, .external_lex_state = 5}, + [4339] = {.lex_state = 127, .external_lex_state = 5}, + [4340] = {.lex_state = 127, .external_lex_state = 5}, + [4341] = {.lex_state = 127, .external_lex_state = 5}, + [4342] = {.lex_state = 127, .external_lex_state = 6}, + [4343] = {.lex_state = 127, .external_lex_state = 5}, + [4344] = {.lex_state = 127, .external_lex_state = 5}, + [4345] = {.lex_state = 127, .external_lex_state = 5}, + [4346] = {.lex_state = 127, .external_lex_state = 5}, + [4347] = {.lex_state = 127, .external_lex_state = 2}, + [4348] = {.lex_state = 127, .external_lex_state = 5}, + [4349] = {.lex_state = 127, .external_lex_state = 5}, + [4350] = {.lex_state = 127, .external_lex_state = 5}, + [4351] = {.lex_state = 127, .external_lex_state = 5}, + [4352] = {.lex_state = 127, .external_lex_state = 5}, + [4353] = {.lex_state = 127, .external_lex_state = 5}, + [4354] = {.lex_state = 127, .external_lex_state = 5}, + [4355] = {.lex_state = 127, .external_lex_state = 5}, + [4356] = {.lex_state = 127, .external_lex_state = 5}, + [4357] = {.lex_state = 127, .external_lex_state = 5}, + [4358] = {.lex_state = 127, .external_lex_state = 5}, + [4359] = {.lex_state = 127, .external_lex_state = 5}, + [4360] = {.lex_state = 127, .external_lex_state = 5}, + [4361] = {.lex_state = 127, .external_lex_state = 5}, + [4362] = {.lex_state = 127, .external_lex_state = 5}, + [4363] = {.lex_state = 127, .external_lex_state = 5}, + [4364] = {.lex_state = 127, .external_lex_state = 2}, + [4365] = {.lex_state = 127, .external_lex_state = 5}, + [4366] = {.lex_state = 127, .external_lex_state = 5}, + [4367] = {.lex_state = 127, .external_lex_state = 5}, + [4368] = {.lex_state = 127, .external_lex_state = 5}, + [4369] = {.lex_state = 127, .external_lex_state = 5}, + [4370] = {.lex_state = 127, .external_lex_state = 5}, + [4371] = {.lex_state = 127, .external_lex_state = 5}, + [4372] = {.lex_state = 127, .external_lex_state = 5}, + [4373] = {.lex_state = 127, .external_lex_state = 6}, + [4374] = {.lex_state = 127, .external_lex_state = 5}, + [4375] = {.lex_state = 17, .external_lex_state = 9}, + [4376] = {.lex_state = 127, .external_lex_state = 5}, + [4377] = {.lex_state = 19, .external_lex_state = 2}, + [4378] = {.lex_state = 19, .external_lex_state = 2}, + [4379] = {.lex_state = 127, .external_lex_state = 5}, + [4380] = {.lex_state = 127, .external_lex_state = 5}, + [4381] = {.lex_state = 127, .external_lex_state = 5}, + [4382] = {.lex_state = 127, .external_lex_state = 2}, + [4383] = {.lex_state = 127, .external_lex_state = 5}, + [4384] = {.lex_state = 127, .external_lex_state = 5}, + [4385] = {.lex_state = 127, .external_lex_state = 5}, + [4386] = {.lex_state = 127, .external_lex_state = 2}, + [4387] = {.lex_state = 127, .external_lex_state = 6}, + [4388] = {.lex_state = 19, .external_lex_state = 2}, + [4389] = {.lex_state = 127, .external_lex_state = 2}, + [4390] = {.lex_state = 127, .external_lex_state = 5}, + [4391] = {.lex_state = 127, .external_lex_state = 2}, + [4392] = {.lex_state = 19, .external_lex_state = 2}, + [4393] = {.lex_state = 19, .external_lex_state = 2}, + [4394] = {.lex_state = 19, .external_lex_state = 2}, + [4395] = {.lex_state = 127, .external_lex_state = 5}, + [4396] = {.lex_state = 127, .external_lex_state = 5}, + [4397] = {.lex_state = 127, .external_lex_state = 5}, + [4398] = {.lex_state = 127, .external_lex_state = 5}, + [4399] = {.lex_state = 127, .external_lex_state = 5}, + [4400] = {.lex_state = 19, .external_lex_state = 2}, + [4401] = {.lex_state = 19, .external_lex_state = 2}, + [4402] = {.lex_state = 127, .external_lex_state = 5}, + [4403] = {.lex_state = 127, .external_lex_state = 5}, + [4404] = {.lex_state = 127, .external_lex_state = 6}, + [4405] = {.lex_state = 127, .external_lex_state = 5}, + [4406] = {.lex_state = 127, .external_lex_state = 5}, + [4407] = {.lex_state = 127, .external_lex_state = 5}, + [4408] = {.lex_state = 127, .external_lex_state = 5}, + [4409] = {.lex_state = 127, .external_lex_state = 5}, + [4410] = {.lex_state = 11, .external_lex_state = 2}, + [4411] = {.lex_state = 127, .external_lex_state = 5}, + [4412] = {.lex_state = 127, .external_lex_state = 5}, + [4413] = {.lex_state = 127, .external_lex_state = 5}, + [4414] = {.lex_state = 127, .external_lex_state = 5}, + [4415] = {.lex_state = 127, .external_lex_state = 5}, + [4416] = {.lex_state = 127, .external_lex_state = 5}, + [4417] = {.lex_state = 127, .external_lex_state = 2}, + [4418] = {.lex_state = 127, .external_lex_state = 2}, + [4419] = {.lex_state = 127, .external_lex_state = 5}, + [4420] = {.lex_state = 127, .external_lex_state = 5}, + [4421] = {.lex_state = 127, .external_lex_state = 5}, + [4422] = {.lex_state = 127, .external_lex_state = 5}, + [4423] = {.lex_state = 127, .external_lex_state = 5}, + [4424] = {.lex_state = 127, .external_lex_state = 2}, + [4425] = {.lex_state = 127, .external_lex_state = 5}, + [4426] = {.lex_state = 127, .external_lex_state = 5}, + [4427] = {.lex_state = 127, .external_lex_state = 5}, + [4428] = {.lex_state = 127, .external_lex_state = 5}, + [4429] = {.lex_state = 127, .external_lex_state = 2}, + [4430] = {.lex_state = 127, .external_lex_state = 5}, + [4431] = {.lex_state = 127, .external_lex_state = 5}, + [4432] = {.lex_state = 127, .external_lex_state = 5}, + [4433] = {.lex_state = 127, .external_lex_state = 5}, + [4434] = {.lex_state = 127, .external_lex_state = 2}, + [4435] = {.lex_state = 127, .external_lex_state = 2}, + [4436] = {.lex_state = 127, .external_lex_state = 2}, + [4437] = {.lex_state = 127, .external_lex_state = 5}, + [4438] = {.lex_state = 127, .external_lex_state = 5}, + [4439] = {.lex_state = 19, .external_lex_state = 2}, + [4440] = {.lex_state = 127, .external_lex_state = 5}, + [4441] = {.lex_state = 19, .external_lex_state = 2}, + [4442] = {.lex_state = 127, .external_lex_state = 5}, + [4443] = {.lex_state = 127, .external_lex_state = 5}, + [4444] = {.lex_state = 8, .external_lex_state = 2}, + [4445] = {.lex_state = 127, .external_lex_state = 5}, + [4446] = {.lex_state = 127, .external_lex_state = 5}, + [4447] = {.lex_state = 127, .external_lex_state = 2}, + [4448] = {.lex_state = 7, .external_lex_state = 2}, + [4449] = {.lex_state = 127, .external_lex_state = 5}, + [4450] = {.lex_state = 127, .external_lex_state = 5}, + [4451] = {.lex_state = 127, .external_lex_state = 5}, + [4452] = {.lex_state = 127, .external_lex_state = 5}, + [4453] = {.lex_state = 127, .external_lex_state = 5}, + [4454] = {.lex_state = 127, .external_lex_state = 5}, + [4455] = {.lex_state = 127, .external_lex_state = 5}, + [4456] = {.lex_state = 127, .external_lex_state = 5}, + [4457] = {.lex_state = 127, .external_lex_state = 5}, + [4458] = {.lex_state = 127, .external_lex_state = 2}, + [4459] = {.lex_state = 127, .external_lex_state = 5}, + [4460] = {.lex_state = 127, .external_lex_state = 5}, + [4461] = {.lex_state = 127, .external_lex_state = 5}, + [4462] = {.lex_state = 127, .external_lex_state = 5}, + [4463] = {.lex_state = 127, .external_lex_state = 5}, + [4464] = {.lex_state = 127, .external_lex_state = 5}, + [4465] = {.lex_state = 127, .external_lex_state = 2}, + [4466] = {.lex_state = 127, .external_lex_state = 5}, + [4467] = {.lex_state = 127, .external_lex_state = 2}, + [4468] = {.lex_state = 2, .external_lex_state = 2}, + [4469] = {.lex_state = 127, .external_lex_state = 5}, + [4470] = {.lex_state = 127, .external_lex_state = 2}, + [4471] = {.lex_state = 127, .external_lex_state = 2}, + [4472] = {.lex_state = 14, .external_lex_state = 10}, + [4473] = {.lex_state = 127, .external_lex_state = 5}, + [4474] = {.lex_state = 22, .external_lex_state = 10}, + [4475] = {.lex_state = 127, .external_lex_state = 2}, + [4476] = {.lex_state = 127, .external_lex_state = 2}, + [4477] = {.lex_state = 127, .external_lex_state = 2}, + [4478] = {.lex_state = 14, .external_lex_state = 10}, + [4479] = {.lex_state = 127, .external_lex_state = 2}, + [4480] = {.lex_state = 22, .external_lex_state = 10}, + [4481] = {.lex_state = 127, .external_lex_state = 2}, + [4482] = {.lex_state = 127, .external_lex_state = 2}, + [4483] = {.lex_state = 127, .external_lex_state = 2}, + [4484] = {.lex_state = 17, .external_lex_state = 8}, + [4485] = {.lex_state = 127, .external_lex_state = 2}, + [4486] = {.lex_state = 127, .external_lex_state = 5}, + [4487] = {.lex_state = 127, .external_lex_state = 2}, + [4488] = {.lex_state = 22, .external_lex_state = 10}, + [4489] = {.lex_state = 14, .external_lex_state = 10}, + [4490] = {.lex_state = 22, .external_lex_state = 10}, + [4491] = {.lex_state = 127, .external_lex_state = 2}, + [4492] = {.lex_state = 14, .external_lex_state = 10}, + [4493] = {.lex_state = 127, .external_lex_state = 2}, + [4494] = {.lex_state = 7, .external_lex_state = 2}, + [4495] = {.lex_state = 127, .external_lex_state = 2}, + [4496] = {.lex_state = 127, .external_lex_state = 5}, + [4497] = {.lex_state = 127, .external_lex_state = 2}, + [4498] = {.lex_state = 127, .external_lex_state = 2}, + [4499] = {.lex_state = 127, .external_lex_state = 2}, + [4500] = {.lex_state = 127, .external_lex_state = 2}, + [4501] = {.lex_state = 2, .external_lex_state = 2}, + [4502] = {.lex_state = 127, .external_lex_state = 2}, + [4503] = {.lex_state = 127, .external_lex_state = 2}, + [4504] = {.lex_state = 127, .external_lex_state = 2}, + [4505] = {.lex_state = 127, .external_lex_state = 2}, + [4506] = {.lex_state = 127, .external_lex_state = 2}, + [4507] = {.lex_state = 127, .external_lex_state = 2}, + [4508] = {.lex_state = 127, .external_lex_state = 2}, + [4509] = {.lex_state = 22, .external_lex_state = 10}, + [4510] = {.lex_state = 14, .external_lex_state = 10}, + [4511] = {.lex_state = 14, .external_lex_state = 10}, + [4512] = {.lex_state = 127, .external_lex_state = 2}, + [4513] = {.lex_state = 127, .external_lex_state = 2}, + [4514] = {.lex_state = 127, .external_lex_state = 2}, + [4515] = {.lex_state = 14, .external_lex_state = 10}, + [4516] = {.lex_state = 22, .external_lex_state = 10}, + [4517] = {.lex_state = 127, .external_lex_state = 2}, + [4518] = {.lex_state = 127, .external_lex_state = 5}, + [4519] = {.lex_state = 127, .external_lex_state = 2}, + [4520] = {.lex_state = 14, .external_lex_state = 10}, + [4521] = {.lex_state = 127, .external_lex_state = 5}, + [4522] = {.lex_state = 127, .external_lex_state = 5}, + [4523] = {.lex_state = 127, .external_lex_state = 2}, + [4524] = {.lex_state = 22, .external_lex_state = 10}, + [4525] = {.lex_state = 127, .external_lex_state = 2}, + [4526] = {.lex_state = 22, .external_lex_state = 10}, + [4527] = {.lex_state = 127, .external_lex_state = 2}, + [4528] = {.lex_state = 22, .external_lex_state = 10}, + [4529] = {.lex_state = 127, .external_lex_state = 2}, + [4530] = {.lex_state = 127, .external_lex_state = 2}, + [4531] = {.lex_state = 127, .external_lex_state = 2}, + [4532] = {.lex_state = 127, .external_lex_state = 2}, + [4533] = {.lex_state = 127, .external_lex_state = 5}, + [4534] = {.lex_state = 127, .external_lex_state = 5}, + [4535] = {.lex_state = 127, .external_lex_state = 2}, + [4536] = {.lex_state = 127, .external_lex_state = 2}, + [4537] = {.lex_state = 14, .external_lex_state = 10}, + [4538] = {.lex_state = 127, .external_lex_state = 2}, + [4539] = {.lex_state = 127, .external_lex_state = 2}, + [4540] = {.lex_state = 127, .external_lex_state = 2}, + [4541] = {.lex_state = 22, .external_lex_state = 10}, + [4542] = {.lex_state = 127, .external_lex_state = 2}, + [4543] = {.lex_state = 127, .external_lex_state = 2}, + [4544] = {.lex_state = 7, .external_lex_state = 2}, + [4545] = {.lex_state = 127, .external_lex_state = 2}, + [4546] = {.lex_state = 127, .external_lex_state = 2}, + [4547] = {.lex_state = 127, .external_lex_state = 2}, + [4548] = {.lex_state = 127, .external_lex_state = 2}, + [4549] = {.lex_state = 14, .external_lex_state = 10}, + [4550] = {.lex_state = 17, .external_lex_state = 8}, + [4551] = {.lex_state = 127, .external_lex_state = 2}, + [4552] = {.lex_state = 127, .external_lex_state = 2}, + [4553] = {.lex_state = 127, .external_lex_state = 5}, + [4554] = {.lex_state = 127, .external_lex_state = 5}, + [4555] = {.lex_state = 2, .external_lex_state = 2}, + [4556] = {.lex_state = 127, .external_lex_state = 5}, + [4557] = {.lex_state = 127, .external_lex_state = 5}, + [4558] = {.lex_state = 127, .external_lex_state = 5}, + [4559] = {.lex_state = 14, .external_lex_state = 10}, + [4560] = {.lex_state = 127, .external_lex_state = 2}, + [4561] = {.lex_state = 2, .external_lex_state = 2}, + [4562] = {.lex_state = 127, .external_lex_state = 2}, + [4563] = {.lex_state = 127, .external_lex_state = 2}, + [4564] = {.lex_state = 127, .external_lex_state = 2}, + [4565] = {.lex_state = 127, .external_lex_state = 6}, + [4566] = {.lex_state = 127, .external_lex_state = 2}, + [4567] = {.lex_state = 127, .external_lex_state = 2}, + [4568] = {.lex_state = 127, .external_lex_state = 2}, + [4569] = {.lex_state = 127, .external_lex_state = 2}, + [4570] = {.lex_state = 127, .external_lex_state = 2}, + [4571] = {.lex_state = 12, .external_lex_state = 2}, + [4572] = {.lex_state = 127, .external_lex_state = 2}, + [4573] = {.lex_state = 127, .external_lex_state = 2}, + [4574] = {.lex_state = 127, .external_lex_state = 2}, + [4575] = {.lex_state = 127, .external_lex_state = 2}, + [4576] = {.lex_state = 22, .external_lex_state = 10}, + [4577] = {.lex_state = 14, .external_lex_state = 10}, + [4578] = {.lex_state = 22, .external_lex_state = 10}, + [4579] = {.lex_state = 127, .external_lex_state = 2}, + [4580] = {.lex_state = 14, .external_lex_state = 10}, + [4581] = {.lex_state = 22, .external_lex_state = 10}, + [4582] = {.lex_state = 14, .external_lex_state = 10}, + [4583] = {.lex_state = 127, .external_lex_state = 2}, + [4584] = {.lex_state = 127, .external_lex_state = 2}, + [4585] = {.lex_state = 127, .external_lex_state = 2}, + [4586] = {.lex_state = 127, .external_lex_state = 2}, + [4587] = {.lex_state = 22, .external_lex_state = 10}, + [4588] = {.lex_state = 127, .external_lex_state = 2}, + [4589] = {.lex_state = 22, .external_lex_state = 10}, + [4590] = {.lex_state = 127, .external_lex_state = 5}, + [4591] = {.lex_state = 20, .external_lex_state = 2}, + [4592] = {.lex_state = 14, .external_lex_state = 10}, + [4593] = {.lex_state = 127, .external_lex_state = 2}, + [4594] = {.lex_state = 127, .external_lex_state = 2}, + [4595] = {.lex_state = 127, .external_lex_state = 2}, + [4596] = {.lex_state = 127, .external_lex_state = 2}, + [4597] = {.lex_state = 127, .external_lex_state = 2}, + [4598] = {.lex_state = 127, .external_lex_state = 2}, + [4599] = {.lex_state = 127, .external_lex_state = 2}, + [4600] = {.lex_state = 127, .external_lex_state = 2}, + [4601] = {.lex_state = 127, .external_lex_state = 5}, + [4602] = {.lex_state = 127, .external_lex_state = 5}, + [4603] = {.lex_state = 127, .external_lex_state = 2}, + [4604] = {.lex_state = 127, .external_lex_state = 2}, + [4605] = {.lex_state = 127, .external_lex_state = 2}, + [4606] = {.lex_state = 127, .external_lex_state = 2}, + [4607] = {.lex_state = 2, .external_lex_state = 2}, + [4608] = {.lex_state = 127, .external_lex_state = 2}, + [4609] = {.lex_state = 127, .external_lex_state = 2}, + [4610] = {.lex_state = 127, .external_lex_state = 2}, + [4611] = {.lex_state = 127, .external_lex_state = 2}, + [4612] = {.lex_state = 127, .external_lex_state = 2}, + [4613] = {.lex_state = 127, .external_lex_state = 5}, + [4614] = {.lex_state = 127, .external_lex_state = 2}, + [4615] = {.lex_state = 127, .external_lex_state = 5}, + [4616] = {.lex_state = 127, .external_lex_state = 5}, + [4617] = {.lex_state = 127, .external_lex_state = 5}, + [4618] = {.lex_state = 127, .external_lex_state = 5}, + [4619] = {.lex_state = 127, .external_lex_state = 5}, + [4620] = {.lex_state = 127, .external_lex_state = 2}, + [4621] = {.lex_state = 127, .external_lex_state = 5}, + [4622] = {.lex_state = 127, .external_lex_state = 5}, + [4623] = {.lex_state = 127, .external_lex_state = 5}, + [4624] = {.lex_state = 127, .external_lex_state = 5}, + [4625] = {.lex_state = 127, .external_lex_state = 2}, + [4626] = {.lex_state = 127, .external_lex_state = 5}, + [4627] = {.lex_state = 127, .external_lex_state = 5}, + [4628] = {.lex_state = 127, .external_lex_state = 5}, + [4629] = {.lex_state = 127, .external_lex_state = 5}, + [4630] = {.lex_state = 2, .external_lex_state = 2}, + [4631] = {.lex_state = 127, .external_lex_state = 5}, + [4632] = {.lex_state = 127, .external_lex_state = 5}, + [4633] = {.lex_state = 127, .external_lex_state = 5}, + [4634] = {.lex_state = 127, .external_lex_state = 2}, + [4635] = {.lex_state = 2, .external_lex_state = 2}, + [4636] = {.lex_state = 2, .external_lex_state = 2}, + [4637] = {.lex_state = 127, .external_lex_state = 5}, + [4638] = {.lex_state = 127, .external_lex_state = 2}, + [4639] = {.lex_state = 127, .external_lex_state = 2}, + [4640] = {.lex_state = 127, .external_lex_state = 5}, + [4641] = {.lex_state = 127, .external_lex_state = 5}, + [4642] = {.lex_state = 127, .external_lex_state = 5}, + [4643] = {.lex_state = 127, .external_lex_state = 5}, + [4644] = {.lex_state = 127, .external_lex_state = 5}, + [4645] = {.lex_state = 127, .external_lex_state = 5}, + [4646] = {.lex_state = 127, .external_lex_state = 2}, + [4647] = {.lex_state = 127, .external_lex_state = 2}, + [4648] = {.lex_state = 127, .external_lex_state = 5}, + [4649] = {.lex_state = 127, .external_lex_state = 5}, + [4650] = {.lex_state = 127, .external_lex_state = 2}, + [4651] = {.lex_state = 127, .external_lex_state = 5}, + [4652] = {.lex_state = 127, .external_lex_state = 2}, + [4653] = {.lex_state = 127, .external_lex_state = 5}, + [4654] = {.lex_state = 127, .external_lex_state = 2}, + [4655] = {.lex_state = 127, .external_lex_state = 2}, + [4656] = {.lex_state = 127, .external_lex_state = 2}, + [4657] = {.lex_state = 127, .external_lex_state = 5}, + [4658] = {.lex_state = 127, .external_lex_state = 2}, + [4659] = {.lex_state = 127, .external_lex_state = 2}, + [4660] = {.lex_state = 127, .external_lex_state = 5}, + [4661] = {.lex_state = 127, .external_lex_state = 5}, + [4662] = {.lex_state = 127, .external_lex_state = 2}, + [4663] = {.lex_state = 127, .external_lex_state = 2}, + [4664] = {.lex_state = 127, .external_lex_state = 5}, + [4665] = {.lex_state = 127, .external_lex_state = 5}, + [4666] = {.lex_state = 127, .external_lex_state = 5}, + [4667] = {.lex_state = 127, .external_lex_state = 5}, + [4668] = {.lex_state = 127, .external_lex_state = 5}, + [4669] = {.lex_state = 127, .external_lex_state = 5}, + [4670] = {.lex_state = 127, .external_lex_state = 2}, + [4671] = {.lex_state = 127, .external_lex_state = 2}, + [4672] = {.lex_state = 127, .external_lex_state = 5}, + [4673] = {.lex_state = 127, .external_lex_state = 5}, + [4674] = {.lex_state = 127, .external_lex_state = 5}, + [4675] = {.lex_state = 127, .external_lex_state = 5}, + [4676] = {.lex_state = 127, .external_lex_state = 5}, + [4677] = {.lex_state = 127, .external_lex_state = 2}, + [4678] = {.lex_state = 127, .external_lex_state = 2}, + [4679] = {.lex_state = 127, .external_lex_state = 2}, + [4680] = {.lex_state = 127, .external_lex_state = 2}, + [4681] = {.lex_state = 127, .external_lex_state = 5}, + [4682] = {.lex_state = 127, .external_lex_state = 5}, + [4683] = {.lex_state = 127, .external_lex_state = 5}, + [4684] = {.lex_state = 127, .external_lex_state = 5}, + [4685] = {.lex_state = 127, .external_lex_state = 5}, + [4686] = {.lex_state = 127, .external_lex_state = 5}, + [4687] = {.lex_state = 127, .external_lex_state = 5}, + [4688] = {.lex_state = 127, .external_lex_state = 2}, + [4689] = {.lex_state = 127, .external_lex_state = 2}, + [4690] = {.lex_state = 127, .external_lex_state = 2}, + [4691] = {.lex_state = 127, .external_lex_state = 5}, + [4692] = {.lex_state = 127, .external_lex_state = 2}, + [4693] = {.lex_state = 127, .external_lex_state = 5}, + [4694] = {.lex_state = 127, .external_lex_state = 2}, + [4695] = {.lex_state = 127, .external_lex_state = 5}, + [4696] = {.lex_state = 127, .external_lex_state = 2}, + [4697] = {.lex_state = 127, .external_lex_state = 2}, + [4698] = {.lex_state = 127, .external_lex_state = 2}, + [4699] = {.lex_state = 127, .external_lex_state = 2}, + [4700] = {.lex_state = 127, .external_lex_state = 5}, + [4701] = {.lex_state = 127, .external_lex_state = 2}, + [4702] = {.lex_state = 127, .external_lex_state = 5}, + [4703] = {.lex_state = 127, .external_lex_state = 5}, + [4704] = {.lex_state = 127, .external_lex_state = 5}, + [4705] = {.lex_state = 127, .external_lex_state = 5}, + [4706] = {.lex_state = 127, .external_lex_state = 5}, + [4707] = {.lex_state = 127, .external_lex_state = 5}, + [4708] = {.lex_state = 127, .external_lex_state = 5}, + [4709] = {.lex_state = 127, .external_lex_state = 5}, + [4710] = {.lex_state = 127, .external_lex_state = 2}, + [4711] = {.lex_state = 127, .external_lex_state = 2}, + [4712] = {.lex_state = 127, .external_lex_state = 5}, + [4713] = {.lex_state = 127, .external_lex_state = 5}, + [4714] = {.lex_state = 127, .external_lex_state = 2}, + [4715] = {.lex_state = 127, .external_lex_state = 2}, + [4716] = {.lex_state = 127, .external_lex_state = 5}, + [4717] = {.lex_state = 127, .external_lex_state = 5}, + [4718] = {.lex_state = 127, .external_lex_state = 5}, + [4719] = {.lex_state = 127, .external_lex_state = 2}, + [4720] = {.lex_state = 127, .external_lex_state = 5}, + [4721] = {.lex_state = 127, .external_lex_state = 2}, + [4722] = {.lex_state = 127, .external_lex_state = 5}, + [4723] = {.lex_state = 127, .external_lex_state = 5}, + [4724] = {.lex_state = 127, .external_lex_state = 5}, + [4725] = {.lex_state = 127, .external_lex_state = 5}, + [4726] = {.lex_state = 127, .external_lex_state = 5}, + [4727] = {.lex_state = 127, .external_lex_state = 5}, + [4728] = {.lex_state = 127, .external_lex_state = 5}, + [4729] = {.lex_state = 127, .external_lex_state = 5}, + [4730] = {.lex_state = 127, .external_lex_state = 5}, + [4731] = {.lex_state = 127, .external_lex_state = 5}, + [4732] = {.lex_state = 127, .external_lex_state = 2}, + [4733] = {.lex_state = 127, .external_lex_state = 2}, + [4734] = {.lex_state = 127, .external_lex_state = 5}, + [4735] = {.lex_state = 127, .external_lex_state = 5}, + [4736] = {.lex_state = 127, .external_lex_state = 5}, + [4737] = {.lex_state = 127, .external_lex_state = 2}, + [4738] = {.lex_state = 127, .external_lex_state = 5}, + [4739] = {.lex_state = 127, .external_lex_state = 2}, + [4740] = {.lex_state = 127, .external_lex_state = 5}, + [4741] = {.lex_state = 127, .external_lex_state = 5}, + [4742] = {.lex_state = 127, .external_lex_state = 5}, + [4743] = {.lex_state = 127, .external_lex_state = 5}, + [4744] = {.lex_state = 127, .external_lex_state = 5}, + [4745] = {.lex_state = 127, .external_lex_state = 5}, + [4746] = {.lex_state = 127, .external_lex_state = 5}, + [4747] = {.lex_state = 127, .external_lex_state = 5}, + [4748] = {.lex_state = 127, .external_lex_state = 5}, + [4749] = {.lex_state = 127, .external_lex_state = 2}, + [4750] = {.lex_state = 127, .external_lex_state = 5}, + [4751] = {.lex_state = 127, .external_lex_state = 5}, + [4752] = {.lex_state = 127, .external_lex_state = 5}, + [4753] = {.lex_state = 127, .external_lex_state = 5}, + [4754] = {.lex_state = 127, .external_lex_state = 5}, + [4755] = {.lex_state = 127, .external_lex_state = 5}, + [4756] = {.lex_state = 127, .external_lex_state = 2}, + [4757] = {.lex_state = 127, .external_lex_state = 2}, + [4758] = {.lex_state = 127, .external_lex_state = 2}, + [4759] = {.lex_state = 127, .external_lex_state = 2}, + [4760] = {.lex_state = 127, .external_lex_state = 5}, + [4761] = {.lex_state = 127, .external_lex_state = 5}, + [4762] = {.lex_state = 17, .external_lex_state = 9}, + [4763] = {.lex_state = 127, .external_lex_state = 5}, + [4764] = {.lex_state = 127, .external_lex_state = 5}, + [4765] = {.lex_state = 127, .external_lex_state = 5}, + [4766] = {.lex_state = 127, .external_lex_state = 2}, + [4767] = {.lex_state = 127, .external_lex_state = 5}, + [4768] = {.lex_state = 127, .external_lex_state = 2}, + [4769] = {.lex_state = 127, .external_lex_state = 5}, + [4770] = {.lex_state = 127, .external_lex_state = 2}, + [4771] = {.lex_state = 127, .external_lex_state = 2}, + [4772] = {.lex_state = 127, .external_lex_state = 5}, + [4773] = {.lex_state = 127, .external_lex_state = 2}, + [4774] = {.lex_state = 127, .external_lex_state = 5}, + [4775] = {.lex_state = 127, .external_lex_state = 5}, + [4776] = {.lex_state = 127, .external_lex_state = 2}, + [4777] = {.lex_state = 127, .external_lex_state = 2}, + [4778] = {.lex_state = 127, .external_lex_state = 2}, + [4779] = {.lex_state = 2, .external_lex_state = 2}, + [4780] = {.lex_state = 127, .external_lex_state = 2}, + [4781] = {.lex_state = 127, .external_lex_state = 5}, + [4782] = {.lex_state = 127, .external_lex_state = 2}, + [4783] = {.lex_state = 127, .external_lex_state = 2}, + [4784] = {.lex_state = 2, .external_lex_state = 2}, + [4785] = {.lex_state = 127, .external_lex_state = 2}, + [4786] = {.lex_state = 127, .external_lex_state = 5}, + [4787] = {.lex_state = 127, .external_lex_state = 5}, + [4788] = {.lex_state = 2, .external_lex_state = 2}, + [4789] = {.lex_state = 127, .external_lex_state = 5}, + [4790] = {.lex_state = 127, .external_lex_state = 5}, + [4791] = {.lex_state = 2, .external_lex_state = 2}, + [4792] = {.lex_state = 127, .external_lex_state = 5}, + [4793] = {.lex_state = 127, .external_lex_state = 2}, + [4794] = {.lex_state = 127, .external_lex_state = 2}, + [4795] = {.lex_state = 127, .external_lex_state = 2}, + [4796] = {.lex_state = 127, .external_lex_state = 5}, + [4797] = {.lex_state = 127, .external_lex_state = 2}, + [4798] = {.lex_state = 127, .external_lex_state = 5}, + [4799] = {.lex_state = 127, .external_lex_state = 5}, + [4800] = {.lex_state = 127, .external_lex_state = 5}, + [4801] = {.lex_state = 127, .external_lex_state = 5}, + [4802] = {.lex_state = 127, .external_lex_state = 2}, + [4803] = {.lex_state = 127, .external_lex_state = 5}, + [4804] = {.lex_state = 127, .external_lex_state = 2}, + [4805] = {.lex_state = 127, .external_lex_state = 5}, + [4806] = {.lex_state = 127, .external_lex_state = 2}, + [4807] = {.lex_state = 127, .external_lex_state = 5}, + [4808] = {.lex_state = 127, .external_lex_state = 5}, + [4809] = {.lex_state = 127, .external_lex_state = 5}, + [4810] = {.lex_state = 127, .external_lex_state = 5}, + [4811] = {.lex_state = 127, .external_lex_state = 5}, + [4812] = {.lex_state = 127, .external_lex_state = 2}, + [4813] = {.lex_state = 127, .external_lex_state = 5}, + [4814] = {.lex_state = 127, .external_lex_state = 5}, + [4815] = {.lex_state = 127, .external_lex_state = 2}, + [4816] = {.lex_state = 127, .external_lex_state = 2}, + [4817] = {.lex_state = 127, .external_lex_state = 2}, + [4818] = {.lex_state = 127, .external_lex_state = 2}, + [4819] = {.lex_state = 127, .external_lex_state = 5}, + [4820] = {.lex_state = 127, .external_lex_state = 5}, + [4821] = {.lex_state = 127, .external_lex_state = 2}, + [4822] = {.lex_state = 127, .external_lex_state = 5}, + [4823] = {.lex_state = 127, .external_lex_state = 2}, + [4824] = {.lex_state = 127, .external_lex_state = 2}, + [4825] = {.lex_state = 127, .external_lex_state = 5}, + [4826] = {.lex_state = 127, .external_lex_state = 5}, + [4827] = {.lex_state = 127, .external_lex_state = 5}, + [4828] = {.lex_state = 127, .external_lex_state = 5}, + [4829] = {.lex_state = 127, .external_lex_state = 5}, + [4830] = {.lex_state = 127, .external_lex_state = 5}, + [4831] = {.lex_state = 127, .external_lex_state = 5}, + [4832] = {.lex_state = 127, .external_lex_state = 5}, + [4833] = {.lex_state = 127, .external_lex_state = 2}, + [4834] = {.lex_state = 127, .external_lex_state = 2}, + [4835] = {.lex_state = 127, .external_lex_state = 2}, + [4836] = {.lex_state = 127, .external_lex_state = 2}, + [4837] = {.lex_state = 127, .external_lex_state = 2}, + [4838] = {.lex_state = 127, .external_lex_state = 2}, + [4839] = {.lex_state = 127, .external_lex_state = 5}, + [4840] = {.lex_state = 127, .external_lex_state = 2}, + [4841] = {.lex_state = 2, .external_lex_state = 2}, + [4842] = {.lex_state = 127, .external_lex_state = 5}, + [4843] = {.lex_state = 127, .external_lex_state = 5}, + [4844] = {.lex_state = 127, .external_lex_state = 5}, + [4845] = {.lex_state = 127, .external_lex_state = 5}, + [4846] = {.lex_state = 127, .external_lex_state = 5}, + [4847] = {.lex_state = 127, .external_lex_state = 5}, + [4848] = {.lex_state = 127, .external_lex_state = 5}, + [4849] = {.lex_state = 127, .external_lex_state = 5}, + [4850] = {.lex_state = 127, .external_lex_state = 5}, + [4851] = {.lex_state = 127, .external_lex_state = 2}, + [4852] = {.lex_state = 127, .external_lex_state = 5}, + [4853] = {.lex_state = 127, .external_lex_state = 2}, + [4854] = {.lex_state = 127, .external_lex_state = 2}, + [4855] = {.lex_state = 127, .external_lex_state = 2}, + [4856] = {.lex_state = 127, .external_lex_state = 5}, + [4857] = {.lex_state = 127, .external_lex_state = 2}, + [4858] = {.lex_state = 127, .external_lex_state = 2}, + [4859] = {.lex_state = 127, .external_lex_state = 5}, + [4860] = {.lex_state = 127, .external_lex_state = 5}, + [4861] = {.lex_state = 127, .external_lex_state = 5}, + [4862] = {.lex_state = 127, .external_lex_state = 5}, + [4863] = {.lex_state = 127, .external_lex_state = 5}, + [4864] = {.lex_state = 127, .external_lex_state = 5}, + [4865] = {.lex_state = 127, .external_lex_state = 5}, + [4866] = {.lex_state = 127, .external_lex_state = 2}, + [4867] = {.lex_state = 127, .external_lex_state = 5}, + [4868] = {.lex_state = 127, .external_lex_state = 5}, + [4869] = {.lex_state = 127, .external_lex_state = 5}, + [4870] = {.lex_state = 127, .external_lex_state = 5}, + [4871] = {.lex_state = 127, .external_lex_state = 5}, + [4872] = {.lex_state = 127, .external_lex_state = 5}, + [4873] = {.lex_state = 127, .external_lex_state = 5}, + [4874] = {.lex_state = 127, .external_lex_state = 2}, + [4875] = {.lex_state = 127, .external_lex_state = 2}, + [4876] = {.lex_state = 127, .external_lex_state = 5}, + [4877] = {.lex_state = 127, .external_lex_state = 5}, + [4878] = {.lex_state = 127, .external_lex_state = 5}, + [4879] = {.lex_state = 127, .external_lex_state = 5}, + [4880] = {.lex_state = 127, .external_lex_state = 5}, + [4881] = {.lex_state = 127, .external_lex_state = 5}, + [4882] = {.lex_state = 127, .external_lex_state = 5}, + [4883] = {.lex_state = 127, .external_lex_state = 5}, + [4884] = {.lex_state = 127, .external_lex_state = 5}, + [4885] = {.lex_state = 127, .external_lex_state = 5}, + [4886] = {.lex_state = 127, .external_lex_state = 2}, + [4887] = {.lex_state = 127, .external_lex_state = 5}, + [4888] = {.lex_state = 127, .external_lex_state = 2}, + [4889] = {.lex_state = 127, .external_lex_state = 5}, + [4890] = {.lex_state = 127, .external_lex_state = 2}, + [4891] = {.lex_state = 127, .external_lex_state = 5}, + [4892] = {.lex_state = 127, .external_lex_state = 5}, + [4893] = {.lex_state = 127, .external_lex_state = 5}, + [4894] = {.lex_state = 127, .external_lex_state = 5}, + [4895] = {.lex_state = 127, .external_lex_state = 5}, + [4896] = {.lex_state = 127, .external_lex_state = 5}, + [4897] = {.lex_state = 127, .external_lex_state = 5}, + [4898] = {.lex_state = 127, .external_lex_state = 5}, + [4899] = {.lex_state = 127, .external_lex_state = 5}, + [4900] = {.lex_state = 127, .external_lex_state = 5}, + [4901] = {.lex_state = 127, .external_lex_state = 5}, + [4902] = {.lex_state = 127, .external_lex_state = 2}, + [4903] = {.lex_state = 127, .external_lex_state = 5}, + [4904] = {.lex_state = 127, .external_lex_state = 2}, + [4905] = {.lex_state = 127, .external_lex_state = 2}, + [4906] = {.lex_state = 127, .external_lex_state = 2}, + [4907] = {.lex_state = 127, .external_lex_state = 5}, + [4908] = {.lex_state = 127, .external_lex_state = 5}, + [4909] = {.lex_state = 127, .external_lex_state = 5}, + [4910] = {.lex_state = 127, .external_lex_state = 5}, + [4911] = {.lex_state = 127, .external_lex_state = 5}, + [4912] = {.lex_state = 127, .external_lex_state = 5}, + [4913] = {.lex_state = 127, .external_lex_state = 5}, + [4914] = {.lex_state = 127, .external_lex_state = 5}, + [4915] = {.lex_state = 127, .external_lex_state = 2}, + [4916] = {.lex_state = 127, .external_lex_state = 2}, + [4917] = {.lex_state = 127, .external_lex_state = 5}, + [4918] = {.lex_state = 127, .external_lex_state = 2}, + [4919] = {.lex_state = 127, .external_lex_state = 2}, + [4920] = {.lex_state = 127, .external_lex_state = 5}, + [4921] = {.lex_state = 127, .external_lex_state = 5}, + [4922] = {.lex_state = 127, .external_lex_state = 5}, + [4923] = {.lex_state = 127, .external_lex_state = 5}, + [4924] = {.lex_state = 127, .external_lex_state = 5}, + [4925] = {.lex_state = 127, .external_lex_state = 5}, + [4926] = {.lex_state = 127, .external_lex_state = 5}, + [4927] = {.lex_state = 127, .external_lex_state = 5}, + [4928] = {.lex_state = 127, .external_lex_state = 5}, + [4929] = {.lex_state = 127, .external_lex_state = 5}, + [4930] = {.lex_state = 127, .external_lex_state = 5}, + [4931] = {.lex_state = 127, .external_lex_state = 5}, + [4932] = {.lex_state = 127, .external_lex_state = 5}, + [4933] = {.lex_state = 127, .external_lex_state = 2}, + [4934] = {.lex_state = 127, .external_lex_state = 2}, + [4935] = {.lex_state = 127, .external_lex_state = 5}, + [4936] = {.lex_state = 127, .external_lex_state = 2}, + [4937] = {.lex_state = 127, .external_lex_state = 5}, + [4938] = {.lex_state = 127, .external_lex_state = 5}, + [4939] = {.lex_state = 127, .external_lex_state = 5}, + [4940] = {.lex_state = 127, .external_lex_state = 5}, + [4941] = {.lex_state = 127, .external_lex_state = 2}, + [4942] = {.lex_state = 2, .external_lex_state = 2}, + [4943] = {.lex_state = 127, .external_lex_state = 5}, + [4944] = {.lex_state = 127, .external_lex_state = 2}, + [4945] = {.lex_state = 127, .external_lex_state = 2}, + [4946] = {.lex_state = 127, .external_lex_state = 5}, + [4947] = {.lex_state = 127, .external_lex_state = 2}, + [4948] = {.lex_state = 127, .external_lex_state = 5}, + [4949] = {.lex_state = 127, .external_lex_state = 5}, + [4950] = {.lex_state = 127, .external_lex_state = 5}, + [4951] = {.lex_state = 127, .external_lex_state = 5}, + [4952] = {.lex_state = 127, .external_lex_state = 2}, + [4953] = {.lex_state = 127, .external_lex_state = 5}, + [4954] = {.lex_state = 127, .external_lex_state = 5}, + [4955] = {.lex_state = 127, .external_lex_state = 5}, + [4956] = {.lex_state = 2, .external_lex_state = 2}, + [4957] = {.lex_state = 127, .external_lex_state = 5}, + [4958] = {.lex_state = 127, .external_lex_state = 5}, + [4959] = {.lex_state = 127, .external_lex_state = 5}, + [4960] = {.lex_state = 127, .external_lex_state = 5}, + [4961] = {.lex_state = 127, .external_lex_state = 5}, + [4962] = {.lex_state = 127, .external_lex_state = 5}, + [4963] = {.lex_state = 127, .external_lex_state = 2}, + [4964] = {.lex_state = 127, .external_lex_state = 2}, + [4965] = {.lex_state = 127, .external_lex_state = 2}, + [4966] = {.lex_state = 127, .external_lex_state = 2}, + [4967] = {.lex_state = 127, .external_lex_state = 2}, + [4968] = {.lex_state = 127, .external_lex_state = 5}, + [4969] = {.lex_state = 127, .external_lex_state = 5}, + [4970] = {.lex_state = 127, .external_lex_state = 5}, + [4971] = {.lex_state = 127, .external_lex_state = 2}, + [4972] = {.lex_state = 127, .external_lex_state = 5}, + [4973] = {.lex_state = 127, .external_lex_state = 5}, + [4974] = {.lex_state = 127, .external_lex_state = 5}, + [4975] = {.lex_state = 127, .external_lex_state = 2}, + [4976] = {.lex_state = 127, .external_lex_state = 5}, + [4977] = {.lex_state = 127, .external_lex_state = 2}, + [4978] = {.lex_state = 127, .external_lex_state = 2}, + [4979] = {.lex_state = 127, .external_lex_state = 5}, + [4980] = {.lex_state = 127, .external_lex_state = 5}, + [4981] = {.lex_state = 127, .external_lex_state = 2}, + [4982] = {.lex_state = 127, .external_lex_state = 5}, + [4983] = {.lex_state = 127, .external_lex_state = 5}, + [4984] = {.lex_state = 127, .external_lex_state = 5}, + [4985] = {.lex_state = 127, .external_lex_state = 5}, + [4986] = {.lex_state = 2, .external_lex_state = 2}, + [4987] = {.lex_state = 127, .external_lex_state = 5}, + [4988] = {.lex_state = 127, .external_lex_state = 2}, + [4989] = {.lex_state = 127, .external_lex_state = 2}, + [4990] = {.lex_state = 127, .external_lex_state = 2}, + [4991] = {.lex_state = 127, .external_lex_state = 5}, + [4992] = {.lex_state = 127, .external_lex_state = 5}, + [4993] = {.lex_state = 127, .external_lex_state = 5}, + [4994] = {.lex_state = 127, .external_lex_state = 5}, + [4995] = {.lex_state = 127, .external_lex_state = 5}, + [4996] = {.lex_state = 127, .external_lex_state = 5}, + [4997] = {.lex_state = 127, .external_lex_state = 5}, + [4998] = {.lex_state = 2, .external_lex_state = 2}, + [4999] = {.lex_state = 127, .external_lex_state = 5}, + [5000] = {.lex_state = 127, .external_lex_state = 5}, + [5001] = {.lex_state = 127, .external_lex_state = 2}, + [5002] = {.lex_state = 127, .external_lex_state = 2}, + [5003] = {.lex_state = 127, .external_lex_state = 5}, + [5004] = {.lex_state = 127, .external_lex_state = 5}, + [5005] = {.lex_state = 127, .external_lex_state = 2}, + [5006] = {.lex_state = 127, .external_lex_state = 5}, + [5007] = {.lex_state = 127, .external_lex_state = 5}, + [5008] = {.lex_state = 127, .external_lex_state = 5}, + [5009] = {.lex_state = 127, .external_lex_state = 2}, + [5010] = {.lex_state = 127, .external_lex_state = 5}, + [5011] = {.lex_state = 127, .external_lex_state = 5}, + [5012] = {.lex_state = 127, .external_lex_state = 5}, + [5013] = {.lex_state = 127, .external_lex_state = 2}, + [5014] = {.lex_state = 127, .external_lex_state = 5}, + [5015] = {.lex_state = 127, .external_lex_state = 2}, + [5016] = {.lex_state = 127, .external_lex_state = 5}, + [5017] = {.lex_state = 127, .external_lex_state = 5}, + [5018] = {.lex_state = 127, .external_lex_state = 5}, + [5019] = {.lex_state = 127, .external_lex_state = 5}, + [5020] = {.lex_state = 127, .external_lex_state = 5}, + [5021] = {.lex_state = 127, .external_lex_state = 5}, + [5022] = {.lex_state = 127, .external_lex_state = 2}, + [5023] = {.lex_state = 127, .external_lex_state = 5}, + [5024] = {.lex_state = 127, .external_lex_state = 5}, + [5025] = {.lex_state = 127, .external_lex_state = 5}, + [5026] = {.lex_state = 127, .external_lex_state = 5}, + [5027] = {.lex_state = 127, .external_lex_state = 2}, + [5028] = {.lex_state = 127, .external_lex_state = 5}, + [5029] = {.lex_state = 127, .external_lex_state = 5}, + [5030] = {.lex_state = 127, .external_lex_state = 5}, + [5031] = {.lex_state = 127, .external_lex_state = 5}, + [5032] = {.lex_state = 127, .external_lex_state = 5}, + [5033] = {.lex_state = 127, .external_lex_state = 5}, + [5034] = {.lex_state = 127, .external_lex_state = 5}, + [5035] = {.lex_state = 127, .external_lex_state = 5}, + [5036] = {.lex_state = 127, .external_lex_state = 5}, + [5037] = {.lex_state = 127, .external_lex_state = 5}, + [5038] = {.lex_state = 127, .external_lex_state = 5}, + [5039] = {.lex_state = 127, .external_lex_state = 5}, + [5040] = {.lex_state = 127, .external_lex_state = 5}, + [5041] = {.lex_state = 127, .external_lex_state = 5}, + [5042] = {.lex_state = 127, .external_lex_state = 5}, + [5043] = {.lex_state = 127, .external_lex_state = 2}, + [5044] = {.lex_state = 127, .external_lex_state = 5}, + [5045] = {.lex_state = 127, .external_lex_state = 5}, + [5046] = {.lex_state = 127, .external_lex_state = 5}, + [5047] = {.lex_state = 127, .external_lex_state = 5}, + [5048] = {.lex_state = 127, .external_lex_state = 5}, + [5049] = {.lex_state = 127, .external_lex_state = 5}, + [5050] = {.lex_state = 127, .external_lex_state = 5}, + [5051] = {.lex_state = 127, .external_lex_state = 5}, + [5052] = {.lex_state = 127, .external_lex_state = 5}, + [5053] = {.lex_state = 127, .external_lex_state = 5}, + [5054] = {.lex_state = 127, .external_lex_state = 5}, + [5055] = {.lex_state = 127, .external_lex_state = 5}, + [5056] = {.lex_state = 127, .external_lex_state = 5}, + [5057] = {.lex_state = 127, .external_lex_state = 5}, + [5058] = {.lex_state = 127, .external_lex_state = 5}, + [5059] = {.lex_state = 127, .external_lex_state = 5}, + [5060] = {.lex_state = 127, .external_lex_state = 5}, + [5061] = {.lex_state = 127, .external_lex_state = 5}, + [5062] = {.lex_state = 127, .external_lex_state = 2}, + [5063] = {.lex_state = 127, .external_lex_state = 2}, + [5064] = {.lex_state = 127, .external_lex_state = 5}, + [5065] = {.lex_state = 127, .external_lex_state = 5}, + [5066] = {.lex_state = 127, .external_lex_state = 5}, + [5067] = {.lex_state = 127, .external_lex_state = 5}, + [5068] = {.lex_state = 127, .external_lex_state = 5}, + [5069] = {.lex_state = 127, .external_lex_state = 5}, + [5070] = {.lex_state = 127, .external_lex_state = 2}, + [5071] = {.lex_state = 127, .external_lex_state = 2}, + [5072] = {.lex_state = 127, .external_lex_state = 5}, + [5073] = {.lex_state = 127, .external_lex_state = 2}, + [5074] = {.lex_state = 127, .external_lex_state = 5}, + [5075] = {.lex_state = 127, .external_lex_state = 5}, + [5076] = {.lex_state = 127, .external_lex_state = 5}, + [5077] = {.lex_state = 127, .external_lex_state = 5}, + [5078] = {.lex_state = 127, .external_lex_state = 5}, + [5079] = {.lex_state = 127, .external_lex_state = 5}, + [5080] = {.lex_state = 127, .external_lex_state = 5}, + [5081] = {.lex_state = 127, .external_lex_state = 5}, + [5082] = {.lex_state = 127, .external_lex_state = 5}, + [5083] = {.lex_state = 127, .external_lex_state = 5}, + [5084] = {.lex_state = 127, .external_lex_state = 5}, + [5085] = {.lex_state = 127, .external_lex_state = 5}, + [5086] = {.lex_state = 127, .external_lex_state = 5}, + [5087] = {.lex_state = 127, .external_lex_state = 5}, + [5088] = {.lex_state = 127, .external_lex_state = 2}, + [5089] = {.lex_state = 127, .external_lex_state = 5}, + [5090] = {.lex_state = 127, .external_lex_state = 5}, + [5091] = {.lex_state = 127, .external_lex_state = 5}, + [5092] = {.lex_state = 127, .external_lex_state = 2}, + [5093] = {.lex_state = 127, .external_lex_state = 5}, + [5094] = {.lex_state = 127, .external_lex_state = 5}, + [5095] = {.lex_state = 127, .external_lex_state = 5}, + [5096] = {.lex_state = 127, .external_lex_state = 5}, + [5097] = {.lex_state = 127, .external_lex_state = 5}, + [5098] = {.lex_state = 127, .external_lex_state = 2}, + [5099] = {.lex_state = 127, .external_lex_state = 5}, + [5100] = {.lex_state = 127, .external_lex_state = 5}, + [5101] = {.lex_state = 127, .external_lex_state = 5}, + [5102] = {.lex_state = 127, .external_lex_state = 2}, + [5103] = {.lex_state = 127, .external_lex_state = 5}, + [5104] = {.lex_state = 127, .external_lex_state = 2}, + [5105] = {.lex_state = 127, .external_lex_state = 5}, + [5106] = {.lex_state = 127, .external_lex_state = 5}, + [5107] = {.lex_state = 127, .external_lex_state = 5}, + [5108] = {.lex_state = 2, .external_lex_state = 2}, + [5109] = {.lex_state = 127, .external_lex_state = 5}, + [5110] = {.lex_state = 127, .external_lex_state = 5}, + [5111] = {.lex_state = 127, .external_lex_state = 5}, + [5112] = {.lex_state = 127, .external_lex_state = 5}, + [5113] = {.lex_state = 127, .external_lex_state = 5}, + [5114] = {.lex_state = 127, .external_lex_state = 5}, + [5115] = {.lex_state = 127, .external_lex_state = 5}, + [5116] = {.lex_state = 127, .external_lex_state = 2}, + [5117] = {.lex_state = 127, .external_lex_state = 5}, + [5118] = {.lex_state = 127, .external_lex_state = 5}, + [5119] = {.lex_state = 127, .external_lex_state = 5}, + [5120] = {.lex_state = 127, .external_lex_state = 5}, + [5121] = {.lex_state = 127, .external_lex_state = 5}, + [5122] = {.lex_state = 127, .external_lex_state = 5}, + [5123] = {.lex_state = 127, .external_lex_state = 5}, + [5124] = {.lex_state = 127, .external_lex_state = 5}, + [5125] = {.lex_state = 127, .external_lex_state = 5}, + [5126] = {.lex_state = 127, .external_lex_state = 5}, + [5127] = {.lex_state = 127, .external_lex_state = 5}, + [5128] = {.lex_state = 127, .external_lex_state = 5}, + [5129] = {.lex_state = 127, .external_lex_state = 5}, + [5130] = {.lex_state = 127, .external_lex_state = 5}, + [5131] = {.lex_state = 127, .external_lex_state = 5}, + [5132] = {.lex_state = 127, .external_lex_state = 2}, + [5133] = {.lex_state = 127, .external_lex_state = 5}, + [5134] = {.lex_state = 127, .external_lex_state = 5}, + [5135] = {.lex_state = 127, .external_lex_state = 5}, + [5136] = {.lex_state = 127, .external_lex_state = 5}, + [5137] = {.lex_state = 127, .external_lex_state = 5}, + [5138] = {.lex_state = 127, .external_lex_state = 5}, + [5139] = {.lex_state = 127, .external_lex_state = 5}, + [5140] = {.lex_state = 127, .external_lex_state = 5}, + [5141] = {.lex_state = 127, .external_lex_state = 5}, + [5142] = {.lex_state = 127, .external_lex_state = 2}, + [5143] = {.lex_state = 127, .external_lex_state = 5}, + [5144] = {.lex_state = 127, .external_lex_state = 5}, + [5145] = {.lex_state = 127, .external_lex_state = 5}, + [5146] = {.lex_state = 127, .external_lex_state = 5}, + [5147] = {.lex_state = 127, .external_lex_state = 5}, + [5148] = {.lex_state = 127, .external_lex_state = 5}, + [5149] = {.lex_state = 127, .external_lex_state = 2}, + [5150] = {.lex_state = 127, .external_lex_state = 2}, + [5151] = {.lex_state = 127, .external_lex_state = 5}, + [5152] = {.lex_state = 127, .external_lex_state = 5}, + [5153] = {.lex_state = 127, .external_lex_state = 5}, + [5154] = {.lex_state = 127, .external_lex_state = 2}, + [5155] = {.lex_state = 127, .external_lex_state = 2}, + [5156] = {.lex_state = 127, .external_lex_state = 2}, + [5157] = {.lex_state = 127, .external_lex_state = 5}, + [5158] = {.lex_state = 127, .external_lex_state = 2}, + [5159] = {.lex_state = 127, .external_lex_state = 5}, + [5160] = {.lex_state = 127, .external_lex_state = 2}, + [5161] = {.lex_state = 127, .external_lex_state = 5}, + [5162] = {.lex_state = 127, .external_lex_state = 2}, + [5163] = {.lex_state = 127, .external_lex_state = 2}, + [5164] = {.lex_state = 127, .external_lex_state = 2}, + [5165] = {.lex_state = 127, .external_lex_state = 5}, + [5166] = {.lex_state = 127, .external_lex_state = 5}, + [5167] = {.lex_state = 127, .external_lex_state = 5}, + [5168] = {.lex_state = 127, .external_lex_state = 2}, + [5169] = {.lex_state = 127, .external_lex_state = 5}, + [5170] = {.lex_state = 127, .external_lex_state = 2}, + [5171] = {.lex_state = 127, .external_lex_state = 5}, + [5172] = {.lex_state = 127, .external_lex_state = 2}, + [5173] = {.lex_state = 127, .external_lex_state = 5}, + [5174] = {.lex_state = 127, .external_lex_state = 2}, + [5175] = {.lex_state = 127, .external_lex_state = 5}, + [5176] = {.lex_state = 127, .external_lex_state = 5}, + [5177] = {.lex_state = 127, .external_lex_state = 5}, + [5178] = {.lex_state = 127, .external_lex_state = 5}, + [5179] = {.lex_state = 127, .external_lex_state = 5}, + [5180] = {.lex_state = 127, .external_lex_state = 5}, + [5181] = {.lex_state = 127, .external_lex_state = 5}, + [5182] = {.lex_state = 127, .external_lex_state = 2}, + [5183] = {.lex_state = 127, .external_lex_state = 2}, + [5184] = {.lex_state = 127, .external_lex_state = 2}, + [5185] = {.lex_state = 127, .external_lex_state = 5}, + [5186] = {.lex_state = 127, .external_lex_state = 5}, + [5187] = {.lex_state = 127, .external_lex_state = 5}, + [5188] = {.lex_state = 127, .external_lex_state = 5}, + [5189] = {.lex_state = 127, .external_lex_state = 5}, + [5190] = {.lex_state = 127, .external_lex_state = 5}, + [5191] = {.lex_state = 127, .external_lex_state = 5}, + [5192] = {.lex_state = 127, .external_lex_state = 5}, + [5193] = {.lex_state = 127, .external_lex_state = 5}, + [5194] = {.lex_state = 127, .external_lex_state = 5}, + [5195] = {.lex_state = 127, .external_lex_state = 2}, + [5196] = {.lex_state = 127, .external_lex_state = 2}, + [5197] = {.lex_state = 127, .external_lex_state = 5}, + [5198] = {.lex_state = 127, .external_lex_state = 5}, + [5199] = {.lex_state = 127, .external_lex_state = 5}, + [5200] = {.lex_state = 127, .external_lex_state = 2}, + [5201] = {.lex_state = 127, .external_lex_state = 5}, + [5202] = {.lex_state = 127, .external_lex_state = 2}, + [5203] = {.lex_state = 127, .external_lex_state = 5}, + [5204] = {.lex_state = 127, .external_lex_state = 5}, + [5205] = {.lex_state = 127, .external_lex_state = 5}, + [5206] = {.lex_state = 127, .external_lex_state = 5}, + [5207] = {.lex_state = 127, .external_lex_state = 5}, + [5208] = {.lex_state = 127, .external_lex_state = 5}, + [5209] = {.lex_state = 127, .external_lex_state = 5}, + [5210] = {.lex_state = 127, .external_lex_state = 5}, + [5211] = {.lex_state = 127, .external_lex_state = 2}, + [5212] = {.lex_state = 127, .external_lex_state = 5}, + [5213] = {.lex_state = 127, .external_lex_state = 2}, + [5214] = {.lex_state = 127, .external_lex_state = 2}, + [5215] = {.lex_state = 127, .external_lex_state = 2}, + [5216] = {.lex_state = 127, .external_lex_state = 5}, + [5217] = {.lex_state = 127, .external_lex_state = 5}, + [5218] = {.lex_state = 127, .external_lex_state = 5}, + [5219] = {.lex_state = 127, .external_lex_state = 2}, + [5220] = {.lex_state = 127, .external_lex_state = 5}, + [5221] = {.lex_state = 127, .external_lex_state = 2}, + [5222] = {.lex_state = 127, .external_lex_state = 2}, + [5223] = {.lex_state = 127, .external_lex_state = 5}, + [5224] = {.lex_state = 127, .external_lex_state = 2}, + [5225] = {.lex_state = 127, .external_lex_state = 2}, + [5226] = {.lex_state = 127, .external_lex_state = 5}, + [5227] = {.lex_state = 127, .external_lex_state = 2}, + [5228] = {.lex_state = 127, .external_lex_state = 2}, + [5229] = {.lex_state = 127, .external_lex_state = 2}, + [5230] = {.lex_state = 127, .external_lex_state = 2}, + [5231] = {.lex_state = 127, .external_lex_state = 2}, + [5232] = {.lex_state = 127, .external_lex_state = 5}, + [5233] = {.lex_state = 127, .external_lex_state = 5}, + [5234] = {.lex_state = 127, .external_lex_state = 2}, + [5235] = {.lex_state = 127, .external_lex_state = 2}, + [5236] = {.lex_state = 127, .external_lex_state = 2}, + [5237] = {.lex_state = 127, .external_lex_state = 2}, + [5238] = {.lex_state = 127, .external_lex_state = 2}, + [5239] = {.lex_state = 127, .external_lex_state = 2}, + [5240] = {.lex_state = 127, .external_lex_state = 2}, + [5241] = {.lex_state = 127, .external_lex_state = 2}, + [5242] = {.lex_state = 127, .external_lex_state = 5}, + [5243] = {.lex_state = 127, .external_lex_state = 2}, + [5244] = {.lex_state = 127, .external_lex_state = 2}, + [5245] = {.lex_state = 127, .external_lex_state = 2}, + [5246] = {.lex_state = 127, .external_lex_state = 2}, + [5247] = {.lex_state = 127, .external_lex_state = 2}, + [5248] = {.lex_state = 127, .external_lex_state = 2}, + [5249] = {.lex_state = 127, .external_lex_state = 2}, + [5250] = {.lex_state = 127, .external_lex_state = 2}, + [5251] = {.lex_state = 127, .external_lex_state = 2}, + [5252] = {.lex_state = 127, .external_lex_state = 2}, + [5253] = {.lex_state = 127, .external_lex_state = 2}, + [5254] = {.lex_state = 127, .external_lex_state = 2}, + [5255] = {.lex_state = 127, .external_lex_state = 2}, + [5256] = {.lex_state = 127, .external_lex_state = 2}, + [5257] = {.lex_state = 127, .external_lex_state = 2}, + [5258] = {.lex_state = 127, .external_lex_state = 5}, + [5259] = {.lex_state = 127, .external_lex_state = 2}, + [5260] = {.lex_state = 127, .external_lex_state = 2}, + [5261] = {.lex_state = 127, .external_lex_state = 2}, + [5262] = {.lex_state = 127, .external_lex_state = 2}, + [5263] = {.lex_state = 127, .external_lex_state = 2}, + [5264] = {.lex_state = 127, .external_lex_state = 2}, + [5265] = {.lex_state = 127, .external_lex_state = 2}, + [5266] = {.lex_state = 127, .external_lex_state = 2}, + [5267] = {.lex_state = 127, .external_lex_state = 2}, + [5268] = {.lex_state = 127, .external_lex_state = 2}, + [5269] = {.lex_state = 127, .external_lex_state = 2}, + [5270] = {.lex_state = 127, .external_lex_state = 2}, + [5271] = {.lex_state = 127, .external_lex_state = 2}, + [5272] = {.lex_state = 127, .external_lex_state = 5}, + [5273] = {.lex_state = 127, .external_lex_state = 2}, + [5274] = {.lex_state = 127, .external_lex_state = 2}, + [5275] = {.lex_state = 127, .external_lex_state = 2}, + [5276] = {.lex_state = 127, .external_lex_state = 2}, + [5277] = {.lex_state = 127, .external_lex_state = 2}, + [5278] = {.lex_state = 127, .external_lex_state = 2}, + [5279] = {.lex_state = 127, .external_lex_state = 2}, + [5280] = {.lex_state = 127, .external_lex_state = 2}, + [5281] = {.lex_state = 127, .external_lex_state = 5}, + [5282] = {.lex_state = 127, .external_lex_state = 2}, + [5283] = {.lex_state = 127, .external_lex_state = 5}, + [5284] = {.lex_state = 127, .external_lex_state = 2}, + [5285] = {.lex_state = 127, .external_lex_state = 2}, + [5286] = {.lex_state = 127, .external_lex_state = 2}, + [5287] = {.lex_state = 127, .external_lex_state = 2}, + [5288] = {.lex_state = 127, .external_lex_state = 2}, + [5289] = {.lex_state = 127, .external_lex_state = 2}, + [5290] = {.lex_state = 127, .external_lex_state = 2}, + [5291] = {.lex_state = 127, .external_lex_state = 2}, + [5292] = {.lex_state = 127, .external_lex_state = 2}, + [5293] = {.lex_state = 127, .external_lex_state = 2}, + [5294] = {.lex_state = 127, .external_lex_state = 5}, + [5295] = {.lex_state = 127, .external_lex_state = 2}, + [5296] = {.lex_state = 127, .external_lex_state = 2}, + [5297] = {.lex_state = 127, .external_lex_state = 2}, + [5298] = {.lex_state = 127, .external_lex_state = 2}, + [5299] = {.lex_state = 127, .external_lex_state = 2}, + [5300] = {.lex_state = 127, .external_lex_state = 2}, + [5301] = {.lex_state = 127, .external_lex_state = 2}, + [5302] = {.lex_state = 127, .external_lex_state = 2}, + [5303] = {.lex_state = 127, .external_lex_state = 2}, + [5304] = {.lex_state = 127, .external_lex_state = 2}, + [5305] = {.lex_state = 127, .external_lex_state = 2}, + [5306] = {.lex_state = 127, .external_lex_state = 5}, + [5307] = {.lex_state = 127, .external_lex_state = 2}, + [5308] = {.lex_state = 127, .external_lex_state = 5}, + [5309] = {.lex_state = 127, .external_lex_state = 5}, + [5310] = {.lex_state = 127, .external_lex_state = 2}, + [5311] = {.lex_state = 127, .external_lex_state = 2}, + [5312] = {.lex_state = 127, .external_lex_state = 2}, + [5313] = {.lex_state = 127, .external_lex_state = 2}, + [5314] = {.lex_state = 127, .external_lex_state = 2}, + [5315] = {.lex_state = 127, .external_lex_state = 2}, + [5316] = {.lex_state = 127, .external_lex_state = 2}, + [5317] = {.lex_state = 127, .external_lex_state = 2}, + [5318] = {.lex_state = 127, .external_lex_state = 2}, + [5319] = {.lex_state = 127, .external_lex_state = 2}, + [5320] = {.lex_state = 127, .external_lex_state = 2}, + [5321] = {.lex_state = 127, .external_lex_state = 2}, + [5322] = {.lex_state = 127, .external_lex_state = 2}, + [5323] = {.lex_state = 127, .external_lex_state = 2}, + [5324] = {.lex_state = 127, .external_lex_state = 2}, + [5325] = {.lex_state = 127, .external_lex_state = 2}, + [5326] = {.lex_state = 127, .external_lex_state = 2}, + [5327] = {.lex_state = 127, .external_lex_state = 2}, + [5328] = {.lex_state = 127, .external_lex_state = 2}, + [5329] = {.lex_state = 127, .external_lex_state = 2}, + [5330] = {.lex_state = 127, .external_lex_state = 2}, + [5331] = {.lex_state = 127, .external_lex_state = 2}, + [5332] = {.lex_state = 127, .external_lex_state = 2}, + [5333] = {.lex_state = 127, .external_lex_state = 2}, + [5334] = {.lex_state = 127, .external_lex_state = 2}, + [5335] = {.lex_state = 127, .external_lex_state = 2}, + [5336] = {.lex_state = 127, .external_lex_state = 2}, + [5337] = {.lex_state = 127, .external_lex_state = 2}, + [5338] = {.lex_state = 127, .external_lex_state = 2}, + [5339] = {.lex_state = 127, .external_lex_state = 2}, + [5340] = {.lex_state = 127, .external_lex_state = 5}, + [5341] = {.lex_state = 127, .external_lex_state = 2}, + [5342] = {.lex_state = 127, .external_lex_state = 2}, + [5343] = {.lex_state = 127, .external_lex_state = 2}, + [5344] = {.lex_state = 127, .external_lex_state = 2}, + [5345] = {.lex_state = 127, .external_lex_state = 2}, + [5346] = {.lex_state = 127, .external_lex_state = 2}, + [5347] = {.lex_state = 127, .external_lex_state = 2}, + [5348] = {.lex_state = 127, .external_lex_state = 5}, + [5349] = {.lex_state = 127, .external_lex_state = 2}, + [5350] = {.lex_state = 127, .external_lex_state = 2}, + [5351] = {.lex_state = 127, .external_lex_state = 2}, + [5352] = {.lex_state = 127, .external_lex_state = 2}, + [5353] = {.lex_state = 127, .external_lex_state = 2}, + [5354] = {.lex_state = 127, .external_lex_state = 2}, + [5355] = {.lex_state = 127, .external_lex_state = 2}, + [5356] = {.lex_state = 127, .external_lex_state = 2}, + [5357] = {.lex_state = 127, .external_lex_state = 2}, + [5358] = {.lex_state = 127, .external_lex_state = 2}, + [5359] = {.lex_state = 127, .external_lex_state = 2}, + [5360] = {.lex_state = 127, .external_lex_state = 2}, + [5361] = {.lex_state = 127, .external_lex_state = 2}, + [5362] = {.lex_state = 127, .external_lex_state = 2}, + [5363] = {.lex_state = 127, .external_lex_state = 2}, + [5364] = {.lex_state = 127, .external_lex_state = 2}, + [5365] = {.lex_state = 127, .external_lex_state = 2}, + [5366] = {.lex_state = 127, .external_lex_state = 2}, + [5367] = {.lex_state = 127, .external_lex_state = 2}, + [5368] = {.lex_state = 127, .external_lex_state = 5}, + [5369] = {.lex_state = 127, .external_lex_state = 2}, + [5370] = {.lex_state = 127, .external_lex_state = 5}, + [5371] = {.lex_state = 127, .external_lex_state = 5}, + [5372] = {.lex_state = 127, .external_lex_state = 5}, + [5373] = {.lex_state = 127, .external_lex_state = 2}, + [5374] = {.lex_state = 127, .external_lex_state = 2}, + [5375] = {.lex_state = 127, .external_lex_state = 2}, + [5376] = {.lex_state = 127, .external_lex_state = 2}, + [5377] = {.lex_state = 127, .external_lex_state = 5}, + [5378] = {.lex_state = 127, .external_lex_state = 2}, + [5379] = {.lex_state = 127, .external_lex_state = 2}, + [5380] = {.lex_state = 127, .external_lex_state = 2}, + [5381] = {.lex_state = 127, .external_lex_state = 2}, + [5382] = {.lex_state = 127, .external_lex_state = 2}, + [5383] = {.lex_state = 127, .external_lex_state = 2}, + [5384] = {.lex_state = 127, .external_lex_state = 2}, + [5385] = {.lex_state = 127, .external_lex_state = 2}, + [5386] = {.lex_state = 127, .external_lex_state = 2}, + [5387] = {.lex_state = 127, .external_lex_state = 2}, + [5388] = {.lex_state = 127, .external_lex_state = 2}, + [5389] = {.lex_state = 127, .external_lex_state = 2}, + [5390] = {.lex_state = 127, .external_lex_state = 2}, + [5391] = {.lex_state = 127, .external_lex_state = 2}, + [5392] = {.lex_state = 127, .external_lex_state = 2}, + [5393] = {.lex_state = 127, .external_lex_state = 2}, + [5394] = {.lex_state = 127, .external_lex_state = 2}, + [5395] = {.lex_state = 127, .external_lex_state = 2}, + [5396] = {.lex_state = 127, .external_lex_state = 2}, + [5397] = {.lex_state = 127, .external_lex_state = 2}, + [5398] = {.lex_state = 127, .external_lex_state = 2}, + [5399] = {.lex_state = 127, .external_lex_state = 2}, + [5400] = {.lex_state = 127, .external_lex_state = 2}, + [5401] = {.lex_state = 127, .external_lex_state = 2}, + [5402] = {.lex_state = 127, .external_lex_state = 2}, + [5403] = {.lex_state = 127, .external_lex_state = 2}, + [5404] = {.lex_state = 127, .external_lex_state = 2}, + [5405] = {.lex_state = 127, .external_lex_state = 2}, + [5406] = {.lex_state = 127, .external_lex_state = 2}, + [5407] = {.lex_state = 127, .external_lex_state = 2}, + [5408] = {.lex_state = 127, .external_lex_state = 2}, + [5409] = {.lex_state = 127, .external_lex_state = 2}, + [5410] = {.lex_state = 127, .external_lex_state = 2}, + [5411] = {.lex_state = 127, .external_lex_state = 2}, + [5412] = {.lex_state = 127, .external_lex_state = 2}, + [5413] = {.lex_state = 127, .external_lex_state = 2}, + [5414] = {.lex_state = 127, .external_lex_state = 2}, + [5415] = {.lex_state = 127, .external_lex_state = 2}, + [5416] = {.lex_state = 127, .external_lex_state = 2}, + [5417] = {.lex_state = 127, .external_lex_state = 2}, + [5418] = {.lex_state = 127, .external_lex_state = 2}, + [5419] = {.lex_state = 127, .external_lex_state = 2}, + [5420] = {.lex_state = 127, .external_lex_state = 2}, + [5421] = {.lex_state = 127, .external_lex_state = 2}, + [5422] = {.lex_state = 127, .external_lex_state = 2}, + [5423] = {.lex_state = 127, .external_lex_state = 2}, + [5424] = {.lex_state = 127, .external_lex_state = 2}, + [5425] = {.lex_state = 127, .external_lex_state = 2}, + [5426] = {.lex_state = 127, .external_lex_state = 2}, + [5427] = {.lex_state = 127, .external_lex_state = 2}, + [5428] = {.lex_state = 127, .external_lex_state = 5}, + [5429] = {.lex_state = 127, .external_lex_state = 2}, + [5430] = {.lex_state = 127, .external_lex_state = 2}, + [5431] = {.lex_state = 127, .external_lex_state = 2}, + [5432] = {.lex_state = 127, .external_lex_state = 2}, + [5433] = {.lex_state = 127, .external_lex_state = 2}, + [5434] = {.lex_state = 127, .external_lex_state = 2}, + [5435] = {.lex_state = 127, .external_lex_state = 2}, + [5436] = {.lex_state = 127, .external_lex_state = 2}, + [5437] = {.lex_state = 127, .external_lex_state = 5}, + [5438] = {.lex_state = 127, .external_lex_state = 2}, + [5439] = {.lex_state = 127, .external_lex_state = 2}, + [5440] = {.lex_state = 127, .external_lex_state = 2}, + [5441] = {.lex_state = 127, .external_lex_state = 2}, + [5442] = {.lex_state = 127, .external_lex_state = 2}, + [5443] = {.lex_state = 127, .external_lex_state = 2}, + [5444] = {.lex_state = 127, .external_lex_state = 2}, + [5445] = {.lex_state = 127, .external_lex_state = 2}, + [5446] = {.lex_state = 127, .external_lex_state = 2}, + [5447] = {.lex_state = 127, .external_lex_state = 2}, + [5448] = {.lex_state = 127, .external_lex_state = 2}, + [5449] = {.lex_state = 127, .external_lex_state = 2}, + [5450] = {.lex_state = 127, .external_lex_state = 2}, + [5451] = {.lex_state = 127, .external_lex_state = 2}, + [5452] = {.lex_state = 127, .external_lex_state = 2}, + [5453] = {.lex_state = 127, .external_lex_state = 2}, + [5454] = {.lex_state = 127, .external_lex_state = 2}, + [5455] = {.lex_state = 127, .external_lex_state = 2}, + [5456] = {.lex_state = 127, .external_lex_state = 2}, + [5457] = {.lex_state = 127, .external_lex_state = 2}, + [5458] = {.lex_state = 127, .external_lex_state = 2}, + [5459] = {.lex_state = 127, .external_lex_state = 5}, + [5460] = {.lex_state = 127, .external_lex_state = 2}, + [5461] = {.lex_state = 127, .external_lex_state = 2}, + [5462] = {.lex_state = 127, .external_lex_state = 2}, + [5463] = {.lex_state = 127, .external_lex_state = 2}, + [5464] = {.lex_state = 127, .external_lex_state = 2}, + [5465] = {.lex_state = 127, .external_lex_state = 2}, + [5466] = {.lex_state = 11, .external_lex_state = 2}, + [5467] = {.lex_state = 127, .external_lex_state = 2}, + [5468] = {.lex_state = 127, .external_lex_state = 2}, + [5469] = {.lex_state = 127, .external_lex_state = 2}, + [5470] = {.lex_state = 127, .external_lex_state = 2}, + [5471] = {.lex_state = 127, .external_lex_state = 2}, + [5472] = {.lex_state = 127, .external_lex_state = 2}, + [5473] = {.lex_state = 127, .external_lex_state = 2}, + [5474] = {.lex_state = 127, .external_lex_state = 2}, + [5475] = {.lex_state = 127, .external_lex_state = 2}, + [5476] = {.lex_state = 127, .external_lex_state = 2}, + [5477] = {.lex_state = 127, .external_lex_state = 5}, + [5478] = {.lex_state = 127, .external_lex_state = 2}, + [5479] = {.lex_state = 127, .external_lex_state = 2}, + [5480] = {.lex_state = 127, .external_lex_state = 2}, + [5481] = {.lex_state = 127, .external_lex_state = 5}, + [5482] = {.lex_state = 127, .external_lex_state = 2}, + [5483] = {.lex_state = 127, .external_lex_state = 2}, + [5484] = {.lex_state = 127, .external_lex_state = 2}, + [5485] = {.lex_state = 127, .external_lex_state = 2}, + [5486] = {.lex_state = 127, .external_lex_state = 2}, + [5487] = {.lex_state = 127, .external_lex_state = 2}, + [5488] = {.lex_state = 127, .external_lex_state = 2}, + [5489] = {.lex_state = 127, .external_lex_state = 2}, + [5490] = {.lex_state = 127, .external_lex_state = 2}, + [5491] = {.lex_state = 127, .external_lex_state = 2}, + [5492] = {.lex_state = 127, .external_lex_state = 2}, + [5493] = {.lex_state = 127, .external_lex_state = 2}, + [5494] = {.lex_state = 127, .external_lex_state = 2}, + [5495] = {.lex_state = 127, .external_lex_state = 2}, + [5496] = {.lex_state = 127, .external_lex_state = 2}, + [5497] = {.lex_state = 127, .external_lex_state = 2}, + [5498] = {.lex_state = 127, .external_lex_state = 2}, + [5499] = {.lex_state = 127, .external_lex_state = 2}, + [5500] = {.lex_state = 127, .external_lex_state = 2}, + [5501] = {.lex_state = 127, .external_lex_state = 2}, + [5502] = {.lex_state = 127, .external_lex_state = 2}, + [5503] = {.lex_state = 127, .external_lex_state = 2}, + [5504] = {.lex_state = 127, .external_lex_state = 2}, + [5505] = {.lex_state = 127, .external_lex_state = 2}, + [5506] = {.lex_state = 127, .external_lex_state = 2}, + [5507] = {.lex_state = 127, .external_lex_state = 2}, + [5508] = {.lex_state = 127, .external_lex_state = 2}, + [5509] = {.lex_state = 127, .external_lex_state = 2}, + [5510] = {.lex_state = 127, .external_lex_state = 2}, + [5511] = {.lex_state = 127, .external_lex_state = 2}, + [5512] = {.lex_state = 127, .external_lex_state = 2}, + [5513] = {.lex_state = 127, .external_lex_state = 2}, + [5514] = {.lex_state = 127, .external_lex_state = 2}, + [5515] = {.lex_state = 127, .external_lex_state = 2}, + [5516] = {.lex_state = 127, .external_lex_state = 2}, + [5517] = {.lex_state = 127, .external_lex_state = 2}, + [5518] = {.lex_state = 127, .external_lex_state = 2}, + [5519] = {.lex_state = 127, .external_lex_state = 2}, + [5520] = {.lex_state = 127, .external_lex_state = 2}, + [5521] = {.lex_state = 127, .external_lex_state = 2}, + [5522] = {.lex_state = 127, .external_lex_state = 2}, + [5523] = {.lex_state = 127, .external_lex_state = 2}, + [5524] = {.lex_state = 127, .external_lex_state = 2}, + [5525] = {.lex_state = 127, .external_lex_state = 2}, + [5526] = {.lex_state = 127, .external_lex_state = 2}, + [5527] = {.lex_state = 127, .external_lex_state = 2}, + [5528] = {.lex_state = 127, .external_lex_state = 2}, + [5529] = {.lex_state = 127, .external_lex_state = 2}, + [5530] = {.lex_state = 127, .external_lex_state = 2}, + [5531] = {.lex_state = 127, .external_lex_state = 2}, + [5532] = {.lex_state = 127, .external_lex_state = 2}, + [5533] = {.lex_state = 127, .external_lex_state = 2}, + [5534] = {.lex_state = 127, .external_lex_state = 2}, + [5535] = {.lex_state = 127, .external_lex_state = 2}, + [5536] = {.lex_state = 127, .external_lex_state = 2}, + [5537] = {.lex_state = 127, .external_lex_state = 2}, + [5538] = {.lex_state = 127, .external_lex_state = 2}, + [5539] = {.lex_state = 127, .external_lex_state = 5}, + [5540] = {.lex_state = 127, .external_lex_state = 2}, + [5541] = {.lex_state = 127, .external_lex_state = 2}, + [5542] = {.lex_state = 127, .external_lex_state = 2}, + [5543] = {.lex_state = 127, .external_lex_state = 2}, + [5544] = {.lex_state = 127, .external_lex_state = 2}, + [5545] = {.lex_state = 127, .external_lex_state = 2}, + [5546] = {.lex_state = 127, .external_lex_state = 5}, + [5547] = {.lex_state = 127, .external_lex_state = 2}, + [5548] = {.lex_state = 127, .external_lex_state = 2}, + [5549] = {.lex_state = 127, .external_lex_state = 2}, + [5550] = {.lex_state = 127, .external_lex_state = 2}, + [5551] = {.lex_state = 127, .external_lex_state = 2}, + [5552] = {.lex_state = 127, .external_lex_state = 2}, + [5553] = {.lex_state = 127, .external_lex_state = 2}, + [5554] = {.lex_state = 127, .external_lex_state = 2}, + [5555] = {.lex_state = 127, .external_lex_state = 2}, + [5556] = {.lex_state = 127, .external_lex_state = 2}, + [5557] = {.lex_state = 127, .external_lex_state = 2}, + [5558] = {.lex_state = 127, .external_lex_state = 2}, + [5559] = {.lex_state = 127, .external_lex_state = 2}, + [5560] = {.lex_state = 127, .external_lex_state = 2}, + [5561] = {.lex_state = 127, .external_lex_state = 2}, + [5562] = {.lex_state = 127, .external_lex_state = 2}, + [5563] = {.lex_state = 127, .external_lex_state = 2}, + [5564] = {.lex_state = 127, .external_lex_state = 2}, + [5565] = {.lex_state = 127, .external_lex_state = 5}, + [5566] = {.lex_state = 127, .external_lex_state = 2}, + [5567] = {.lex_state = 127, .external_lex_state = 2}, + [5568] = {.lex_state = 127, .external_lex_state = 2}, + [5569] = {.lex_state = 127, .external_lex_state = 2}, + [5570] = {.lex_state = 127, .external_lex_state = 2}, + [5571] = {.lex_state = 127, .external_lex_state = 5}, + [5572] = {.lex_state = 127, .external_lex_state = 2}, + [5573] = {.lex_state = 127, .external_lex_state = 2}, + [5574] = {.lex_state = 127, .external_lex_state = 2}, + [5575] = {.lex_state = 127, .external_lex_state = 2}, + [5576] = {.lex_state = 127, .external_lex_state = 2}, + [5577] = {.lex_state = 127, .external_lex_state = 2}, + [5578] = {.lex_state = 127, .external_lex_state = 2}, + [5579] = {.lex_state = 127, .external_lex_state = 2}, + [5580] = {.lex_state = 127, .external_lex_state = 2}, + [5581] = {.lex_state = 127, .external_lex_state = 2}, + [5582] = {.lex_state = 127, .external_lex_state = 2}, + [5583] = {.lex_state = 127, .external_lex_state = 2}, + [5584] = {.lex_state = 127, .external_lex_state = 2}, + [5585] = {.lex_state = 127, .external_lex_state = 2}, + [5586] = {.lex_state = 127, .external_lex_state = 2}, + [5587] = {.lex_state = 127, .external_lex_state = 2}, + [5588] = {.lex_state = 127, .external_lex_state = 2}, + [5589] = {.lex_state = 127, .external_lex_state = 2}, + [5590] = {.lex_state = 127, .external_lex_state = 2}, + [5591] = {.lex_state = 127, .external_lex_state = 2}, + [5592] = {.lex_state = 127, .external_lex_state = 2}, + [5593] = {.lex_state = 127, .external_lex_state = 2}, + [5594] = {.lex_state = 127, .external_lex_state = 2}, + [5595] = {.lex_state = 127, .external_lex_state = 2}, + [5596] = {.lex_state = 127, .external_lex_state = 2}, + [5597] = {.lex_state = 127, .external_lex_state = 2}, + [5598] = {.lex_state = 32, .external_lex_state = 2}, + [5599] = {.lex_state = 127, .external_lex_state = 2}, + [5600] = {.lex_state = 127, .external_lex_state = 2}, + [5601] = {.lex_state = 127, .external_lex_state = 2}, + [5602] = {.lex_state = 127, .external_lex_state = 2}, + [5603] = {.lex_state = 127, .external_lex_state = 2}, + [5604] = {.lex_state = 127, .external_lex_state = 2}, + [5605] = {.lex_state = 127, .external_lex_state = 2}, + [5606] = {.lex_state = 127, .external_lex_state = 2}, + [5607] = {.lex_state = 127, .external_lex_state = 2}, + [5608] = {.lex_state = 127, .external_lex_state = 2}, + [5609] = {.lex_state = 1, .external_lex_state = 11}, + [5610] = {.lex_state = 127, .external_lex_state = 2}, + [5611] = {.lex_state = 127, .external_lex_state = 2}, + [5612] = {.lex_state = 127, .external_lex_state = 2}, + [5613] = {.lex_state = 127, .external_lex_state = 2}, + [5614] = {.lex_state = 127, .external_lex_state = 2}, + [5615] = {.lex_state = 127, .external_lex_state = 2}, + [5616] = {.lex_state = 127, .external_lex_state = 2}, + [5617] = {.lex_state = 127, .external_lex_state = 2}, + [5618] = {.lex_state = 127, .external_lex_state = 2}, + [5619] = {.lex_state = 127, .external_lex_state = 2}, + [5620] = {.lex_state = 127, .external_lex_state = 2}, + [5621] = {.lex_state = 127, .external_lex_state = 2}, + [5622] = {.lex_state = 127, .external_lex_state = 2}, + [5623] = {.lex_state = 127, .external_lex_state = 2}, + [5624] = {.lex_state = 127, .external_lex_state = 2}, + [5625] = {.lex_state = 127, .external_lex_state = 2}, + [5626] = {.lex_state = 127, .external_lex_state = 2}, + [5627] = {.lex_state = 127, .external_lex_state = 2}, + [5628] = {.lex_state = 127, .external_lex_state = 2}, + [5629] = {.lex_state = 127, .external_lex_state = 2}, + [5630] = {.lex_state = 127, .external_lex_state = 2}, + [5631] = {.lex_state = 127, .external_lex_state = 2}, + [5632] = {.lex_state = 127, .external_lex_state = 2}, + [5633] = {.lex_state = 127, .external_lex_state = 2}, + [5634] = {.lex_state = 127, .external_lex_state = 2}, + [5635] = {.lex_state = 1, .external_lex_state = 11}, + [5636] = {.lex_state = 127, .external_lex_state = 2}, + [5637] = {.lex_state = 127, .external_lex_state = 2}, + [5638] = {.lex_state = 127, .external_lex_state = 2}, + [5639] = {.lex_state = 127, .external_lex_state = 2}, + [5640] = {.lex_state = 127, .external_lex_state = 2}, + [5641] = {.lex_state = 127, .external_lex_state = 2}, + [5642] = {.lex_state = 127, .external_lex_state = 2}, + [5643] = {.lex_state = 127, .external_lex_state = 2}, + [5644] = {.lex_state = 127, .external_lex_state = 2}, + [5645] = {.lex_state = 127, .external_lex_state = 2}, + [5646] = {.lex_state = 127, .external_lex_state = 2}, + [5647] = {.lex_state = 127, .external_lex_state = 2}, + [5648] = {.lex_state = 127, .external_lex_state = 2}, + [5649] = {.lex_state = 127, .external_lex_state = 2}, + [5650] = {.lex_state = 127, .external_lex_state = 2}, + [5651] = {.lex_state = 127, .external_lex_state = 2}, + [5652] = {.lex_state = 127, .external_lex_state = 2}, + [5653] = {.lex_state = 127, .external_lex_state = 2}, + [5654] = {.lex_state = 127, .external_lex_state = 2}, + [5655] = {.lex_state = 127, .external_lex_state = 2}, + [5656] = {.lex_state = 127, .external_lex_state = 2}, + [5657] = {.lex_state = 127, .external_lex_state = 2}, + [5658] = {.lex_state = 127, .external_lex_state = 2}, + [5659] = {.lex_state = 127, .external_lex_state = 2}, + [5660] = {.lex_state = 127, .external_lex_state = 2}, + [5661] = {.lex_state = 127, .external_lex_state = 2}, + [5662] = {.lex_state = 127, .external_lex_state = 2}, + [5663] = {.lex_state = 127, .external_lex_state = 2}, + [5664] = {.lex_state = 127, .external_lex_state = 2}, + [5665] = {.lex_state = 127, .external_lex_state = 2}, + [5666] = {.lex_state = 127, .external_lex_state = 2}, + [5667] = {.lex_state = 127, .external_lex_state = 2}, + [5668] = {.lex_state = 127, .external_lex_state = 2}, + [5669] = {.lex_state = 127, .external_lex_state = 2}, + [5670] = {.lex_state = 127, .external_lex_state = 2}, + [5671] = {.lex_state = 127, .external_lex_state = 2}, + [5672] = {.lex_state = 127, .external_lex_state = 2}, + [5673] = {.lex_state = 127, .external_lex_state = 2}, + [5674] = {.lex_state = 127, .external_lex_state = 2}, + [5675] = {.lex_state = 127, .external_lex_state = 2}, + [5676] = {.lex_state = 127, .external_lex_state = 2}, + [5677] = {.lex_state = 127, .external_lex_state = 2}, + [5678] = {.lex_state = 127, .external_lex_state = 2}, + [5679] = {.lex_state = 127, .external_lex_state = 2}, + [5680] = {.lex_state = 127, .external_lex_state = 2}, + [5681] = {.lex_state = 127, .external_lex_state = 2}, + [5682] = {.lex_state = 127, .external_lex_state = 2}, + [5683] = {.lex_state = 127, .external_lex_state = 2}, + [5684] = {.lex_state = 127, .external_lex_state = 2}, + [5685] = {.lex_state = 127, .external_lex_state = 2}, + [5686] = {.lex_state = 127, .external_lex_state = 2}, + [5687] = {.lex_state = 127, .external_lex_state = 2}, + [5688] = {.lex_state = 127, .external_lex_state = 2}, + [5689] = {.lex_state = 127, .external_lex_state = 2}, + [5690] = {.lex_state = 127, .external_lex_state = 2}, + [5691] = {.lex_state = 127, .external_lex_state = 2}, + [5692] = {.lex_state = 127, .external_lex_state = 2}, + [5693] = {.lex_state = 127, .external_lex_state = 2}, + [5694] = {.lex_state = 127, .external_lex_state = 2}, + [5695] = {.lex_state = 127, .external_lex_state = 2}, + [5696] = {.lex_state = 127, .external_lex_state = 2}, + [5697] = {.lex_state = 127, .external_lex_state = 2}, + [5698] = {.lex_state = 127, .external_lex_state = 2}, + [5699] = {.lex_state = 127, .external_lex_state = 2}, + [5700] = {.lex_state = 127, .external_lex_state = 2}, + [5701] = {.lex_state = 127, .external_lex_state = 2}, + [5702] = {.lex_state = 127, .external_lex_state = 2}, + [5703] = {.lex_state = 127, .external_lex_state = 2}, + [5704] = {.lex_state = 127, .external_lex_state = 2}, + [5705] = {.lex_state = 127, .external_lex_state = 2}, + [5706] = {.lex_state = 127, .external_lex_state = 2}, + [5707] = {.lex_state = 127, .external_lex_state = 2}, + [5708] = {.lex_state = 127, .external_lex_state = 2}, + [5709] = {.lex_state = 127, .external_lex_state = 2}, + [5710] = {.lex_state = 127, .external_lex_state = 2}, + [5711] = {.lex_state = 127, .external_lex_state = 2}, + [5712] = {.lex_state = 127, .external_lex_state = 2}, + [5713] = {.lex_state = 127, .external_lex_state = 2}, + [5714] = {.lex_state = 127, .external_lex_state = 2}, + [5715] = {.lex_state = 127, .external_lex_state = 2}, + [5716] = {.lex_state = 127, .external_lex_state = 2}, + [5717] = {.lex_state = 127, .external_lex_state = 2}, + [5718] = {.lex_state = 127, .external_lex_state = 2}, + [5719] = {.lex_state = 127, .external_lex_state = 2}, + [5720] = {.lex_state = 127, .external_lex_state = 2}, + [5721] = {.lex_state = 127, .external_lex_state = 2}, + [5722] = {.lex_state = 127, .external_lex_state = 2}, + [5723] = {.lex_state = 127, .external_lex_state = 2}, + [5724] = {.lex_state = 127, .external_lex_state = 2}, + [5725] = {.lex_state = 127, .external_lex_state = 2}, + [5726] = {.lex_state = 127, .external_lex_state = 2}, + [5727] = {.lex_state = 127, .external_lex_state = 2}, + [5728] = {.lex_state = 127, .external_lex_state = 2}, + [5729] = {.lex_state = 127, .external_lex_state = 2}, + [5730] = {.lex_state = 127, .external_lex_state = 2}, + [5731] = {.lex_state = 127, .external_lex_state = 2}, + [5732] = {.lex_state = 127, .external_lex_state = 2}, + [5733] = {.lex_state = 127, .external_lex_state = 2}, + [5734] = {.lex_state = 127, .external_lex_state = 2}, + [5735] = {.lex_state = 127, .external_lex_state = 2}, + [5736] = {.lex_state = 127, .external_lex_state = 2}, + [5737] = {.lex_state = 127, .external_lex_state = 2}, + [5738] = {.lex_state = 127, .external_lex_state = 2}, + [5739] = {.lex_state = 127, .external_lex_state = 2}, + [5740] = {.lex_state = 127, .external_lex_state = 2}, + [5741] = {.lex_state = 127, .external_lex_state = 2}, + [5742] = {.lex_state = 127, .external_lex_state = 2}, + [5743] = {.lex_state = 127, .external_lex_state = 2}, + [5744] = {.lex_state = 127, .external_lex_state = 2}, + [5745] = {.lex_state = 127, .external_lex_state = 2}, + [5746] = {.lex_state = 127, .external_lex_state = 2}, + [5747] = {.lex_state = 127, .external_lex_state = 2}, + [5748] = {.lex_state = 127, .external_lex_state = 2}, + [5749] = {.lex_state = 127, .external_lex_state = 2}, + [5750] = {.lex_state = 127, .external_lex_state = 2}, + [5751] = {.lex_state = 127, .external_lex_state = 2}, + [5752] = {.lex_state = 127, .external_lex_state = 2}, + [5753] = {.lex_state = 127, .external_lex_state = 2}, + [5754] = {.lex_state = 127, .external_lex_state = 2}, + [5755] = {.lex_state = 127, .external_lex_state = 2}, + [5756] = {.lex_state = 127, .external_lex_state = 2}, + [5757] = {.lex_state = 127, .external_lex_state = 2}, + [5758] = {.lex_state = 127, .external_lex_state = 2}, + [5759] = {.lex_state = 127, .external_lex_state = 2}, + [5760] = {.lex_state = 127, .external_lex_state = 2}, + [5761] = {.lex_state = 127, .external_lex_state = 2}, + [5762] = {.lex_state = 127, .external_lex_state = 2}, + [5763] = {.lex_state = 127, .external_lex_state = 2}, + [5764] = {.lex_state = 127, .external_lex_state = 2}, + [5765] = {.lex_state = 127, .external_lex_state = 2}, + [5766] = {.lex_state = 127, .external_lex_state = 2}, + [5767] = {.lex_state = 127, .external_lex_state = 2}, + [5768] = {.lex_state = 127, .external_lex_state = 2}, + [5769] = {.lex_state = 127, .external_lex_state = 2}, + [5770] = {.lex_state = 127, .external_lex_state = 2}, + [5771] = {.lex_state = 127, .external_lex_state = 2}, + [5772] = {.lex_state = 127, .external_lex_state = 2}, + [5773] = {.lex_state = 127, .external_lex_state = 2}, + [5774] = {.lex_state = 127, .external_lex_state = 2}, + [5775] = {.lex_state = 127, .external_lex_state = 2}, + [5776] = {.lex_state = 127, .external_lex_state = 2}, + [5777] = {.lex_state = 127, .external_lex_state = 2}, + [5778] = {.lex_state = 127, .external_lex_state = 2}, + [5779] = {.lex_state = 127, .external_lex_state = 2}, + [5780] = {.lex_state = 127, .external_lex_state = 2}, + [5781] = {.lex_state = 127, .external_lex_state = 2}, + [5782] = {.lex_state = 127, .external_lex_state = 2}, + [5783] = {.lex_state = 127, .external_lex_state = 2}, + [5784] = {.lex_state = 127, .external_lex_state = 2}, + [5785] = {.lex_state = 127, .external_lex_state = 2}, + [5786] = {.lex_state = 127, .external_lex_state = 2}, + [5787] = {.lex_state = 127, .external_lex_state = 2}, + [5788] = {.lex_state = 127, .external_lex_state = 2}, + [5789] = {.lex_state = 127, .external_lex_state = 2}, + [5790] = {.lex_state = 127, .external_lex_state = 2}, + [5791] = {.lex_state = 127, .external_lex_state = 2}, + [5792] = {.lex_state = 127, .external_lex_state = 2}, + [5793] = {.lex_state = 127, .external_lex_state = 2}, + [5794] = {.lex_state = 127, .external_lex_state = 2}, + [5795] = {.lex_state = 127, .external_lex_state = 2}, + [5796] = {.lex_state = 127, .external_lex_state = 2}, + [5797] = {.lex_state = 127, .external_lex_state = 2}, + [5798] = {.lex_state = 127, .external_lex_state = 2}, + [5799] = {.lex_state = 127, .external_lex_state = 2}, + [5800] = {.lex_state = 127, .external_lex_state = 2}, + [5801] = {.lex_state = 127, .external_lex_state = 2}, + [5802] = {.lex_state = 127, .external_lex_state = 2}, + [5803] = {.lex_state = 127, .external_lex_state = 2}, + [5804] = {.lex_state = 127, .external_lex_state = 2}, + [5805] = {.lex_state = 127, .external_lex_state = 2}, + [5806] = {.lex_state = 127, .external_lex_state = 2}, + [5807] = {.lex_state = 127, .external_lex_state = 2}, + [5808] = {.lex_state = 127, .external_lex_state = 2}, + [5809] = {.lex_state = 127, .external_lex_state = 2}, + [5810] = {.lex_state = 127, .external_lex_state = 2}, + [5811] = {.lex_state = 127, .external_lex_state = 2}, + [5812] = {.lex_state = 127, .external_lex_state = 2}, + [5813] = {.lex_state = 127, .external_lex_state = 2}, + [5814] = {.lex_state = 127, .external_lex_state = 2}, + [5815] = {.lex_state = 127, .external_lex_state = 2}, + [5816] = {.lex_state = 127, .external_lex_state = 2}, + [5817] = {.lex_state = 127, .external_lex_state = 2}, + [5818] = {.lex_state = 127, .external_lex_state = 2}, + [5819] = {.lex_state = 127, .external_lex_state = 2}, + [5820] = {.lex_state = 127, .external_lex_state = 2}, + [5821] = {.lex_state = 127, .external_lex_state = 2}, + [5822] = {.lex_state = 127, .external_lex_state = 2}, + [5823] = {.lex_state = 127, .external_lex_state = 2}, + [5824] = {.lex_state = 127, .external_lex_state = 2}, + [5825] = {.lex_state = 127, .external_lex_state = 2}, + [5826] = {.lex_state = 1, .external_lex_state = 11}, + [5827] = {.lex_state = 127, .external_lex_state = 2}, + [5828] = {.lex_state = 127, .external_lex_state = 2}, + [5829] = {.lex_state = 127, .external_lex_state = 2}, + [5830] = {.lex_state = 1, .external_lex_state = 11}, + [5831] = {.lex_state = 127, .external_lex_state = 2}, + [5832] = {.lex_state = 127, .external_lex_state = 2}, + [5833] = {.lex_state = 127, .external_lex_state = 2}, + [5834] = {.lex_state = 127, .external_lex_state = 2}, + [5835] = {.lex_state = 127, .external_lex_state = 2}, + [5836] = {.lex_state = 127, .external_lex_state = 2}, + [5837] = {.lex_state = 127, .external_lex_state = 2}, + [5838] = {.lex_state = 32, .external_lex_state = 2}, + [5839] = {.lex_state = 127, .external_lex_state = 2}, + [5840] = {.lex_state = 127, .external_lex_state = 2}, + [5841] = {.lex_state = 127, .external_lex_state = 2}, + [5842] = {.lex_state = 127, .external_lex_state = 2}, + [5843] = {.lex_state = 127, .external_lex_state = 2}, + [5844] = {.lex_state = 127, .external_lex_state = 2}, + [5845] = {.lex_state = 127, .external_lex_state = 2}, + [5846] = {.lex_state = 127, .external_lex_state = 2}, + [5847] = {.lex_state = 127, .external_lex_state = 2}, + [5848] = {.lex_state = 127, .external_lex_state = 2}, + [5849] = {.lex_state = 127, .external_lex_state = 2}, + [5850] = {.lex_state = 127, .external_lex_state = 2}, + [5851] = {.lex_state = 127, .external_lex_state = 2}, + [5852] = {.lex_state = 127, .external_lex_state = 2}, + [5853] = {.lex_state = 127, .external_lex_state = 2}, + [5854] = {.lex_state = 127, .external_lex_state = 2}, + [5855] = {.lex_state = 127, .external_lex_state = 2}, + [5856] = {.lex_state = 127, .external_lex_state = 2}, + [5857] = {.lex_state = 127, .external_lex_state = 2}, + [5858] = {.lex_state = 127, .external_lex_state = 2}, + [5859] = {.lex_state = 127, .external_lex_state = 2}, + [5860] = {.lex_state = 127, .external_lex_state = 2}, + [5861] = {.lex_state = 127, .external_lex_state = 2}, + [5862] = {.lex_state = 127, .external_lex_state = 2}, + [5863] = {.lex_state = 127, .external_lex_state = 2}, + [5864] = {.lex_state = 127, .external_lex_state = 2}, + [5865] = {.lex_state = 127, .external_lex_state = 2}, + [5866] = {.lex_state = 127, .external_lex_state = 2}, + [5867] = {.lex_state = 127, .external_lex_state = 2}, + [5868] = {.lex_state = 127, .external_lex_state = 2}, + [5869] = {.lex_state = 127, .external_lex_state = 2}, + [5870] = {.lex_state = 127, .external_lex_state = 2}, + [5871] = {.lex_state = 127, .external_lex_state = 2}, + [5872] = {.lex_state = 127, .external_lex_state = 2}, + [5873] = {.lex_state = 127, .external_lex_state = 2}, + [5874] = {.lex_state = 127, .external_lex_state = 2}, + [5875] = {.lex_state = 127, .external_lex_state = 2}, + [5876] = {.lex_state = 127, .external_lex_state = 2}, + [5877] = {.lex_state = 127, .external_lex_state = 2}, + [5878] = {.lex_state = 127, .external_lex_state = 2}, + [5879] = {.lex_state = 127, .external_lex_state = 2}, + [5880] = {.lex_state = 127, .external_lex_state = 2}, + [5881] = {.lex_state = 127, .external_lex_state = 2}, + [5882] = {.lex_state = 127, .external_lex_state = 2}, + [5883] = {.lex_state = 127, .external_lex_state = 2}, + [5884] = {.lex_state = 127, .external_lex_state = 2}, + [5885] = {.lex_state = 127, .external_lex_state = 2}, + [5886] = {.lex_state = 127, .external_lex_state = 2}, + [5887] = {.lex_state = 127, .external_lex_state = 2}, + [5888] = {.lex_state = 127, .external_lex_state = 2}, + [5889] = {.lex_state = 127, .external_lex_state = 2}, + [5890] = {.lex_state = 127, .external_lex_state = 2}, + [5891] = {.lex_state = 127, .external_lex_state = 2}, + [5892] = {.lex_state = 127, .external_lex_state = 2}, + [5893] = {.lex_state = 127, .external_lex_state = 2}, + [5894] = {.lex_state = 127, .external_lex_state = 2}, + [5895] = {.lex_state = 32, .external_lex_state = 2}, + [5896] = {.lex_state = 127, .external_lex_state = 2}, + [5897] = {.lex_state = 127, .external_lex_state = 2}, + [5898] = {.lex_state = 127, .external_lex_state = 2}, + [5899] = {.lex_state = 127, .external_lex_state = 2}, + [5900] = {.lex_state = 127, .external_lex_state = 2}, + [5901] = {.lex_state = 127, .external_lex_state = 2}, + [5902] = {.lex_state = 127, .external_lex_state = 2}, + [5903] = {.lex_state = 127, .external_lex_state = 2}, + [5904] = {.lex_state = 127, .external_lex_state = 2}, + [5905] = {.lex_state = 127, .external_lex_state = 2}, + [5906] = {.lex_state = 127, .external_lex_state = 2}, + [5907] = {.lex_state = 127, .external_lex_state = 2}, + [5908] = {.lex_state = 127, .external_lex_state = 2}, + [5909] = {.lex_state = 127, .external_lex_state = 2}, + [5910] = {.lex_state = 32, .external_lex_state = 2}, + [5911] = {.lex_state = 127, .external_lex_state = 2}, + [5912] = {.lex_state = 127, .external_lex_state = 2}, + [5913] = {.lex_state = 127, .external_lex_state = 2}, + [5914] = {.lex_state = 127, .external_lex_state = 2}, + [5915] = {.lex_state = 127, .external_lex_state = 2}, + [5916] = {.lex_state = 32, .external_lex_state = 2}, + [5917] = {.lex_state = 127, .external_lex_state = 2}, + [5918] = {.lex_state = 127, .external_lex_state = 2}, + [5919] = {.lex_state = 127, .external_lex_state = 2}, + [5920] = {.lex_state = 127, .external_lex_state = 2}, + [5921] = {.lex_state = 127, .external_lex_state = 2}, + [5922] = {.lex_state = 127, .external_lex_state = 2}, + [5923] = {.lex_state = 127, .external_lex_state = 2}, + [5924] = {.lex_state = 127, .external_lex_state = 2}, + [5925] = {.lex_state = 127, .external_lex_state = 2}, + [5926] = {.lex_state = 127, .external_lex_state = 2}, + [5927] = {.lex_state = 127, .external_lex_state = 2}, + [5928] = {.lex_state = 127, .external_lex_state = 2}, + [5929] = {.lex_state = 127, .external_lex_state = 2}, + [5930] = {.lex_state = 127, .external_lex_state = 2}, + [5931] = {.lex_state = 127, .external_lex_state = 2}, + [5932] = {.lex_state = 127, .external_lex_state = 2}, + [5933] = {.lex_state = 127, .external_lex_state = 2}, + [5934] = {.lex_state = 127, .external_lex_state = 2}, + [5935] = {.lex_state = 127, .external_lex_state = 2}, + [5936] = {.lex_state = 127, .external_lex_state = 2}, + [5937] = {.lex_state = 127, .external_lex_state = 2}, + [5938] = {.lex_state = 127, .external_lex_state = 2}, + [5939] = {.lex_state = 127, .external_lex_state = 2}, + [5940] = {.lex_state = 127, .external_lex_state = 2}, + [5941] = {.lex_state = 127, .external_lex_state = 2}, + [5942] = {.lex_state = 127, .external_lex_state = 2}, + [5943] = {.lex_state = 127, .external_lex_state = 2}, + [5944] = {.lex_state = 127, .external_lex_state = 2}, + [5945] = {.lex_state = 127, .external_lex_state = 2}, + [5946] = {.lex_state = 127, .external_lex_state = 2}, + [5947] = {.lex_state = 127, .external_lex_state = 2}, + [5948] = {.lex_state = 127, .external_lex_state = 2}, + [5949] = {.lex_state = 127, .external_lex_state = 2}, + [5950] = {.lex_state = 127, .external_lex_state = 2}, + [5951] = {.lex_state = 127, .external_lex_state = 2}, + [5952] = {.lex_state = 127, .external_lex_state = 2}, + [5953] = {.lex_state = 127, .external_lex_state = 2}, + [5954] = {.lex_state = 127, .external_lex_state = 2}, + [5955] = {.lex_state = 127, .external_lex_state = 2}, + [5956] = {.lex_state = 127, .external_lex_state = 2}, + [5957] = {.lex_state = 127, .external_lex_state = 2}, + [5958] = {.lex_state = 127, .external_lex_state = 2}, + [5959] = {.lex_state = 127, .external_lex_state = 2}, + [5960] = {.lex_state = 127, .external_lex_state = 2}, + [5961] = {.lex_state = 127, .external_lex_state = 2}, + [5962] = {.lex_state = 127, .external_lex_state = 2}, + [5963] = {.lex_state = 127, .external_lex_state = 2}, + [5964] = {.lex_state = 127, .external_lex_state = 2}, + [5965] = {.lex_state = 127, .external_lex_state = 2}, + [5966] = {.lex_state = 127, .external_lex_state = 2}, + [5967] = {.lex_state = 127, .external_lex_state = 2}, + [5968] = {.lex_state = 127, .external_lex_state = 2}, + [5969] = {.lex_state = 127, .external_lex_state = 2}, + [5970] = {.lex_state = 127, .external_lex_state = 2}, + [5971] = {.lex_state = 127, .external_lex_state = 2}, + [5972] = {.lex_state = 127, .external_lex_state = 2}, + [5973] = {.lex_state = 127, .external_lex_state = 2}, + [5974] = {.lex_state = 127, .external_lex_state = 2}, + [5975] = {.lex_state = 127, .external_lex_state = 2}, + [5976] = {.lex_state = 127, .external_lex_state = 2}, + [5977] = {.lex_state = 127, .external_lex_state = 2}, + [5978] = {.lex_state = 127, .external_lex_state = 2}, + [5979] = {.lex_state = 127, .external_lex_state = 2}, + [5980] = {.lex_state = 127, .external_lex_state = 2}, + [5981] = {.lex_state = 127, .external_lex_state = 2}, + [5982] = {.lex_state = 127, .external_lex_state = 2}, + [5983] = {.lex_state = 127, .external_lex_state = 2}, + [5984] = {.lex_state = 127, .external_lex_state = 2}, + [5985] = {.lex_state = 127, .external_lex_state = 2}, + [5986] = {.lex_state = 127, .external_lex_state = 2}, + [5987] = {.lex_state = 127, .external_lex_state = 2}, + [5988] = {.lex_state = 1, .external_lex_state = 11}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [STATE(0)] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [sym_hash_bang_line] = ACTIONS(1), + [anon_sym_export] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_namespace] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_typeof] = ACTIONS(1), + [anon_sym_import] = ACTIONS(1), + [anon_sym_from] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), + [anon_sym_assert] = ACTIONS(1), + [anon_sym_var] = ACTIONS(1), + [anon_sym_let] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_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), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_debugger] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_throw] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_catch] = ACTIONS(1), + [anon_sym_finally] = ACTIONS(1), + [anon_sym_yield] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_LT_SLASH] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_AMP2] = ACTIONS(1), + [anon_sym_class] = ACTIONS(1), + [anon_sym_async] = ACTIONS(1), + [anon_sym_function] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), + [anon_sym_QMARK_DOT] = ACTIONS(1), + [anon_sym_new] = ACTIONS(1), + [anon_sym_using] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_GT_GT_GT] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_AMP3] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_QMARK_QMARK] = ACTIONS(1), + [anon_sym_instanceof] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_void] = ACTIONS(1), + [anon_sym_delete] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), + [anon_sym_SLASH2] = ACTIONS(1), + [sym_number] = ACTIONS(1), + [sym_private_property_identifier] = ACTIONS(1), + [anon_sym_target] = ACTIONS(1), + [anon_sym_meta] = ACTIONS(1), + [sym_this] = ACTIONS(1), + [sym_super] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [sym_null] = ACTIONS(1), + [sym_undefined] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_readonly] = ACTIONS(1), + [anon_sym_get] = ACTIONS(1), + [anon_sym_set] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_declare] = ACTIONS(1), + [anon_sym_public] = ACTIONS(1), + [anon_sym_private] = ACTIONS(1), + [anon_sym_protected] = ACTIONS(1), + [anon_sym_override] = ACTIONS(1), + [anon_sym_module] = ACTIONS(1), + [anon_sym_any] = ACTIONS(1), + [anon_sym_number] = ACTIONS(1), + [anon_sym_boolean] = ACTIONS(1), + [anon_sym_string] = ACTIONS(1), + [anon_sym_symbol] = ACTIONS(1), + [anon_sym_object] = ACTIONS(1), + [anon_sym_abstract] = ACTIONS(1), + [anon_sym_accessor] = ACTIONS(1), + [anon_sym_satisfies] = ACTIONS(1), + [anon_sym_require] = ACTIONS(1), + [anon_sym_extends] = ACTIONS(1), + [anon_sym_implements] = ACTIONS(1), + [anon_sym_global] = ACTIONS(1), + [anon_sym_interface] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_DASH_QMARK_COLON] = ACTIONS(1), + [anon_sym_PLUS_QMARK_COLON] = ACTIONS(1), + [anon_sym_asserts] = ACTIONS(1), + [anon_sym_infer] = ACTIONS(1), + [anon_sym_is] = ACTIONS(1), + [anon_sym_keyof] = ACTIONS(1), + [anon_sym_unique] = ACTIONS(1), + [anon_sym_unknown] = ACTIONS(1), + [anon_sym_never] = ACTIONS(1), + [anon_sym_LBRACE_PIPE] = ACTIONS(1), + [anon_sym_PIPE_RBRACE] = ACTIONS(1), + [sym__automatic_semicolon] = ACTIONS(1), + [sym__template_chars] = ACTIONS(1), + [sym__ternary_qmark] = ACTIONS(1), + [sym_html_comment] = ACTIONS(5), + [sym_jsx_text] = ACTIONS(1), + [sym__function_signature_automatic_semicolon] = ACTIONS(1), + [sym___error_recovery] = ACTIONS(1), + }, + [STATE(1)] = { + [sym_program] = STATE(5919), + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(3882), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [sym_hash_bang_line] = ACTIONS(11), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(2)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(193), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(201), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(3)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(193), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(201), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(4)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5590), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5590), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5590), + [sym_spread_element] = STATE(4638), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2240), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4638), + [sym_pair] = STATE(4638), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3668), + [sym_computed_property_name] = STATE(3668), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_accessibility_modifier] = STATE(2720), + [sym_override_modifier] = STATE(2744), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3882), + [aux_sym_object_repeat1] = STATE(4694), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(239), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(241), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(79), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(5)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5590), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5590), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5590), + [sym_spread_element] = STATE(4836), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2240), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3668), + [sym_computed_property_name] = STATE(3668), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_accessibility_modifier] = STATE(2720), + [sym_override_modifier] = STATE(2744), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3882), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(271), + [anon_sym_export] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(275), + [anon_sym_namespace] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(279), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(281), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(283), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(285), + [anon_sym_using] = ACTIONS(79), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(287), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_get] = ACTIONS(291), + [anon_sym_set] = ACTIONS(291), + [anon_sym_declare] = ACTIONS(293), + [anon_sym_public] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_override] = ACTIONS(297), + [anon_sym_module] = ACTIONS(299), + [anon_sym_any] = ACTIONS(301), + [anon_sym_number] = ACTIONS(301), + [anon_sym_boolean] = ACTIONS(301), + [anon_sym_string] = ACTIONS(301), + [anon_sym_symbol] = ACTIONS(301), + [anon_sym_object] = ACTIONS(301), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(6)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5590), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5590), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5590), + [sym_spread_element] = STATE(4638), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2240), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4638), + [sym_pair] = STATE(4638), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3668), + [sym_computed_property_name] = STATE(3668), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_accessibility_modifier] = STATE(2720), + [sym_override_modifier] = STATE(2744), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(3882), + [aux_sym_object_repeat1] = STATE(4694), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(241), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(79), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(7)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5590), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5590), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5590), + [sym_spread_element] = STATE(4836), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2240), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3668), + [sym_computed_property_name] = STATE(3668), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_accessibility_modifier] = STATE(2720), + [sym_override_modifier] = STATE(2744), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3882), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(305), + [anon_sym_export] = ACTIONS(307), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(309), + [anon_sym_namespace] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(279), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(313), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(315), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(317), + [anon_sym_using] = ACTIONS(79), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(319), + [anon_sym_readonly] = ACTIONS(321), + [anon_sym_get] = ACTIONS(323), + [anon_sym_set] = ACTIONS(323), + [anon_sym_declare] = ACTIONS(325), + [anon_sym_public] = ACTIONS(327), + [anon_sym_private] = ACTIONS(327), + [anon_sym_protected] = ACTIONS(327), + [anon_sym_override] = ACTIONS(329), + [anon_sym_module] = ACTIONS(331), + [anon_sym_any] = ACTIONS(333), + [anon_sym_number] = ACTIONS(333), + [anon_sym_boolean] = ACTIONS(333), + [anon_sym_string] = ACTIONS(333), + [anon_sym_symbol] = ACTIONS(333), + [anon_sym_object] = ACTIONS(333), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(8)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5590), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5590), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5590), + [sym_spread_element] = STATE(4638), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2240), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4638), + [sym_pair] = STATE(4638), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3668), + [sym_computed_property_name] = STATE(3668), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_accessibility_modifier] = STATE(2720), + [sym_override_modifier] = STATE(2744), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3882), + [aux_sym_object_repeat1] = STATE(4694), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(227), + [anon_sym_export] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_type] = ACTIONS(233), + [anon_sym_namespace] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(241), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(245), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(247), + [anon_sym_using] = ACTIONS(79), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(251), + [sym_private_property_identifier] = ACTIONS(253), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(255), + [anon_sym_readonly] = ACTIONS(257), + [anon_sym_get] = ACTIONS(259), + [anon_sym_set] = ACTIONS(259), + [anon_sym_declare] = ACTIONS(261), + [anon_sym_public] = ACTIONS(263), + [anon_sym_private] = ACTIONS(263), + [anon_sym_protected] = ACTIONS(263), + [anon_sym_override] = ACTIONS(265), + [anon_sym_module] = ACTIONS(267), + [anon_sym_any] = ACTIONS(269), + [anon_sym_number] = ACTIONS(269), + [anon_sym_boolean] = ACTIONS(269), + [anon_sym_string] = ACTIONS(269), + [anon_sym_symbol] = ACTIONS(269), + [anon_sym_object] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(9)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [anon_sym_export] = ACTIONS(342), + [anon_sym_default] = ACTIONS(345), + [anon_sym_type] = ACTIONS(347), + [anon_sym_namespace] = ACTIONS(350), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_typeof] = ACTIONS(356), + [anon_sym_import] = ACTIONS(359), + [anon_sym_with] = ACTIONS(362), + [anon_sym_var] = ACTIONS(365), + [anon_sym_let] = ACTIONS(368), + [anon_sym_const] = ACTIONS(371), + [anon_sym_BANG] = ACTIONS(374), + [anon_sym_if] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(380), + [anon_sym_for] = ACTIONS(383), + [anon_sym_LPAREN] = ACTIONS(386), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_await] = ACTIONS(392), + [anon_sym_while] = ACTIONS(395), + [anon_sym_do] = ACTIONS(398), + [anon_sym_try] = ACTIONS(401), + [anon_sym_break] = ACTIONS(404), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_debugger] = ACTIONS(410), + [anon_sym_return] = ACTIONS(413), + [anon_sym_throw] = ACTIONS(416), + [anon_sym_case] = ACTIONS(345), + [anon_sym_yield] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(422), + [anon_sym_DQUOTE] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(428), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(434), + [anon_sym_function] = ACTIONS(437), + [anon_sym_new] = ACTIONS(440), + [anon_sym_using] = ACTIONS(443), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_SLASH] = ACTIONS(446), + [anon_sym_LT] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(374), + [anon_sym_void] = ACTIONS(356), + [anon_sym_delete] = ACTIONS(356), + [anon_sym_PLUS_PLUS] = ACTIONS(452), + [anon_sym_DASH_DASH] = ACTIONS(452), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(455), + [sym_number] = ACTIONS(458), + [sym_private_property_identifier] = ACTIONS(461), + [sym_this] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_true] = ACTIONS(464), + [sym_false] = ACTIONS(464), + [sym_null] = ACTIONS(464), + [sym_undefined] = ACTIONS(467), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_static] = ACTIONS(473), + [anon_sym_readonly] = ACTIONS(473), + [anon_sym_get] = ACTIONS(473), + [anon_sym_set] = ACTIONS(473), + [anon_sym_declare] = ACTIONS(476), + [anon_sym_public] = ACTIONS(473), + [anon_sym_private] = ACTIONS(473), + [anon_sym_protected] = ACTIONS(473), + [anon_sym_override] = ACTIONS(473), + [anon_sym_module] = ACTIONS(479), + [anon_sym_any] = ACTIONS(473), + [anon_sym_number] = ACTIONS(473), + [anon_sym_boolean] = ACTIONS(473), + [anon_sym_string] = ACTIONS(473), + [anon_sym_symbol] = ACTIONS(473), + [anon_sym_object] = ACTIONS(473), + [anon_sym_abstract] = ACTIONS(482), + [anon_sym_interface] = ACTIONS(485), + [anon_sym_enum] = ACTIONS(488), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(10)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(491), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_case] = ACTIONS(491), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(11)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(495), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_case] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(12)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(499), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(501), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_case] = ACTIONS(499), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(13)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(503), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_case] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(14)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(15)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [ts_builtin_sym_end] = ACTIONS(509), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(16)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [ts_builtin_sym_end] = ACTIONS(511), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(17)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(3882), + [ts_builtin_sym_end] = ACTIONS(511), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(18)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(14), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(513), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(19)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(20)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(517), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(21)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(519), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(22)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(521), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(23)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(24)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(25)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(26)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(25), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(27)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(531), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(28)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(30), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(29)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(27), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(535), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(30)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(31)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(32)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(5870), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(33)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(812), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(34)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(760), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(35)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(36)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(37)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(830), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(38)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(888), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(39)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(838), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(40)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(839), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(41)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(840), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(42)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(844), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(43)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(783), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(44)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(902), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(45)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(869), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(46)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(4795), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(47)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(888), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(48)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(902), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(49)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(863), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(50)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(51)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(901), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(52)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(812), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(53)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(54)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(55)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(830), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(56)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(838), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(57)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(839), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(58)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(840), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(59)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(844), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(607), + [anon_sym_type] = ACTIONS(609), + [anon_sym_namespace] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(617), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(623), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(627), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(631), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(633), + [anon_sym_readonly] = ACTIONS(633), + [anon_sym_get] = ACTIONS(633), + [anon_sym_set] = ACTIONS(633), + [anon_sym_declare] = ACTIONS(635), + [anon_sym_public] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_protected] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_module] = ACTIONS(637), + [anon_sym_any] = ACTIONS(633), + [anon_sym_number] = ACTIONS(633), + [anon_sym_boolean] = ACTIONS(633), + [anon_sym_string] = ACTIONS(633), + [anon_sym_symbol] = ACTIONS(633), + [anon_sym_object] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(60)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(783), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(61)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(62)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(5168), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(63)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(863), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(64)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(65)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(673), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(66)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2125), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4875), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4967), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(67)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2125), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4875), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4967), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(677), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(68)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(69)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(70)] = { + [sym_import] = STATE(3641), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4309), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(4019), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5214), + [sym_optional_tuple_parameter] = STATE(5214), + [sym_optional_type] = STATE(5214), + [sym_rest_type] = STATE(5214), + [sym__tuple_type_member] = STATE(5214), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5556), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(539), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(565), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(569), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(593), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(597), + [anon_sym_number] = ACTIONS(597), + [anon_sym_boolean] = ACTIONS(597), + [anon_sym_string] = ACTIONS(597), + [anon_sym_symbol] = ACTIONS(597), + [anon_sym_object] = ACTIONS(597), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(71)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(901), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(72)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(783), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(73)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(869), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(74)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(888), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(75)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(902), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(76)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(863), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(77)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(901), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(78)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(812), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(79)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(80)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(81)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(830), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(82)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(838), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(83)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(839), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(84)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(840), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(85)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(844), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(639), + [anon_sym_export] = ACTIONS(641), + [anon_sym_type] = ACTIONS(643), + [anon_sym_namespace] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(647), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(651), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(655), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(657), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(659), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(661), + [anon_sym_readonly] = ACTIONS(661), + [anon_sym_get] = ACTIONS(661), + [anon_sym_set] = ACTIONS(661), + [anon_sym_declare] = ACTIONS(663), + [anon_sym_public] = ACTIONS(661), + [anon_sym_private] = ACTIONS(661), + [anon_sym_protected] = ACTIONS(661), + [anon_sym_override] = ACTIONS(661), + [anon_sym_module] = ACTIONS(665), + [anon_sym_any] = ACTIONS(661), + [anon_sym_number] = ACTIONS(661), + [anon_sym_boolean] = ACTIONS(661), + [anon_sym_string] = ACTIONS(661), + [anon_sym_symbol] = ACTIONS(661), + [anon_sym_object] = ACTIONS(661), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(86)] = { + [sym_export_statement] = STATE(915), + [sym_declaration] = STATE(915), + [sym_import] = STATE(3720), + [sym_import_statement] = STATE(915), + [sym_statement] = STATE(869), + [sym_expression_statement] = STATE(915), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_statement_block] = STATE(915), + [sym_if_statement] = STATE(915), + [sym_switch_statement] = STATE(915), + [sym_for_statement] = STATE(915), + [sym_for_in_statement] = STATE(915), + [sym_while_statement] = STATE(915), + [sym_do_statement] = STATE(915), + [sym_try_statement] = STATE(915), + [sym_with_statement] = STATE(915), + [sym_break_statement] = STATE(915), + [sym_continue_statement] = STATE(915), + [sym_debugger_statement] = STATE(915), + [sym_return_statement] = STATE(915), + [sym_throw_statement] = STATE(915), + [sym_empty_statement] = STATE(915), + [sym_labeled_statement] = STATE(915), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1897), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5340), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3882), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_if] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_try] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_debugger] = ACTIONS(57), + [anon_sym_return] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(99), + [anon_sym_readonly] = ACTIONS(99), + [anon_sym_get] = ACTIONS(99), + [anon_sym_set] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_public] = ACTIONS(99), + [anon_sym_private] = ACTIONS(99), + [anon_sym_protected] = ACTIONS(99), + [anon_sym_override] = ACTIONS(99), + [anon_sym_module] = ACTIONS(103), + [anon_sym_any] = ACTIONS(99), + [anon_sym_number] = ACTIONS(99), + [anon_sym_boolean] = ACTIONS(99), + [anon_sym_string] = ACTIONS(99), + [anon_sym_symbol] = ACTIONS(99), + [anon_sym_object] = ACTIONS(99), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(87)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(88)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(89)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(90)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5832), + [sym_string] = STATE(2324), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4513), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(744), + [sym_number] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_undefined] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_override] = ACTIONS(760), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(762), + [anon_sym_number] = ACTIONS(762), + [anon_sym_boolean] = ACTIONS(762), + [anon_sym_string] = ACTIONS(762), + [anon_sym_symbol] = ACTIONS(762), + [anon_sym_object] = ACTIONS(762), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(91)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5832), + [sym_string] = STATE(2324), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4508), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(744), + [sym_number] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_undefined] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_override] = ACTIONS(760), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(762), + [anon_sym_number] = ACTIONS(762), + [anon_sym_boolean] = ACTIONS(762), + [anon_sym_string] = ACTIONS(762), + [anon_sym_symbol] = ACTIONS(762), + [anon_sym_object] = ACTIONS(762), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(92)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(93)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(3974), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(790), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(94)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4035), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(792), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(95)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4247), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(96)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4300), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(796), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(97)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5869), + [sym_string] = STATE(2324), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4513), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(726), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(736), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(744), + [sym_number] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(748), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_undefined] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(754), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_override] = ACTIONS(760), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(762), + [anon_sym_number] = ACTIONS(762), + [anon_sym_boolean] = ACTIONS(762), + [anon_sym_string] = ACTIONS(762), + [anon_sym_symbol] = ACTIONS(762), + [anon_sym_object] = ACTIONS(762), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(98)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(99)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4467), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(100)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4234), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_SLASH] = ACTIONS(173), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(184), + [anon_sym_DASH_DASH] = ACTIONS(184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(800), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(101)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(102)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(103)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4514), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(848), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(104)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(105)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4508), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(848), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(106)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4540), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(848), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(107)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4543), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(848), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(108)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(109)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(110)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(111)] = { + [sym_import] = STATE(3574), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4513), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(111), + [anon_sym_export] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(128), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(848), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(205), + [anon_sym_number] = ACTIONS(205), + [anon_sym_boolean] = ACTIONS(205), + [anon_sym_string] = ACTIONS(205), + [anon_sym_symbol] = ACTIONS(205), + [anon_sym_object] = ACTIONS(205), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(112)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(113)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(114)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(115)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(858), + [anon_sym_export] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(860), + [anon_sym_EQ] = ACTIONS(862), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(860), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(866), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(870), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(860), + [anon_sym_readonly] = ACTIONS(860), + [anon_sym_get] = ACTIONS(860), + [anon_sym_set] = ACTIONS(860), + [anon_sym_declare] = ACTIONS(860), + [anon_sym_public] = ACTIONS(860), + [anon_sym_private] = ACTIONS(860), + [anon_sym_protected] = ACTIONS(860), + [anon_sym_override] = ACTIONS(860), + [anon_sym_module] = ACTIONS(860), + [anon_sym_any] = ACTIONS(860), + [anon_sym_number] = ACTIONS(860), + [anon_sym_boolean] = ACTIONS(860), + [anon_sym_string] = ACTIONS(860), + [anon_sym_symbol] = ACTIONS(860), + [anon_sym_object] = ACTIONS(860), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(116)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(117)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(858), + [anon_sym_export] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(860), + [anon_sym_EQ] = ACTIONS(862), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(860), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(866), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(870), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(860), + [anon_sym_readonly] = ACTIONS(860), + [anon_sym_get] = ACTIONS(860), + [anon_sym_set] = ACTIONS(860), + [anon_sym_declare] = ACTIONS(860), + [anon_sym_public] = ACTIONS(860), + [anon_sym_private] = ACTIONS(860), + [anon_sym_protected] = ACTIONS(860), + [anon_sym_override] = ACTIONS(860), + [anon_sym_module] = ACTIONS(860), + [anon_sym_any] = ACTIONS(860), + [anon_sym_number] = ACTIONS(860), + [anon_sym_boolean] = ACTIONS(860), + [anon_sym_string] = ACTIONS(860), + [anon_sym_symbol] = ACTIONS(860), + [anon_sym_object] = ACTIONS(860), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(118)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(119)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(120)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(121)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(122)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(687), + [anon_sym_export] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(689), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(708), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(714), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(689), + [anon_sym_readonly] = ACTIONS(689), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(689), + [anon_sym_declare] = ACTIONS(689), + [anon_sym_public] = ACTIONS(689), + [anon_sym_private] = ACTIONS(689), + [anon_sym_protected] = ACTIONS(689), + [anon_sym_override] = ACTIONS(689), + [anon_sym_module] = ACTIONS(689), + [anon_sym_any] = ACTIONS(689), + [anon_sym_number] = ACTIONS(689), + [anon_sym_boolean] = ACTIONS(689), + [anon_sym_string] = ACTIONS(689), + [anon_sym_symbol] = ACTIONS(689), + [anon_sym_object] = ACTIONS(689), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(123)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(124)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(881), + [anon_sym_of] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(125)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(126)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(127)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(128)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(905), + [anon_sym_export] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(913), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(917), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(907), + [anon_sym_readonly] = ACTIONS(907), + [anon_sym_get] = ACTIONS(907), + [anon_sym_set] = ACTIONS(907), + [anon_sym_declare] = ACTIONS(907), + [anon_sym_public] = ACTIONS(907), + [anon_sym_private] = ACTIONS(907), + [anon_sym_protected] = ACTIONS(907), + [anon_sym_override] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_any] = ACTIONS(907), + [anon_sym_number] = ACTIONS(907), + [anon_sym_boolean] = ACTIONS(907), + [anon_sym_string] = ACTIONS(907), + [anon_sym_symbol] = ACTIONS(907), + [anon_sym_object] = ACTIONS(907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(129)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(927), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(931), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + [anon_sym_object] = ACTIONS(921), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(130)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4318), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5559), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(131)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(132)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(927), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(931), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(921), + [anon_sym_readonly] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [anon_sym_declare] = ACTIONS(921), + [anon_sym_public] = ACTIONS(921), + [anon_sym_private] = ACTIONS(921), + [anon_sym_protected] = ACTIONS(921), + [anon_sym_override] = ACTIONS(921), + [anon_sym_module] = ACTIONS(921), + [anon_sym_any] = ACTIONS(921), + [anon_sym_number] = ACTIONS(921), + [anon_sym_boolean] = ACTIONS(921), + [anon_sym_string] = ACTIONS(921), + [anon_sym_symbol] = ACTIONS(921), + [anon_sym_object] = ACTIONS(921), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(133)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4311), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5472), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(804), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(808), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(804), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(818), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(820), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(804), + [anon_sym_readonly] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [anon_sym_declare] = ACTIONS(804), + [anon_sym_public] = ACTIONS(804), + [anon_sym_private] = ACTIONS(804), + [anon_sym_protected] = ACTIONS(804), + [anon_sym_override] = ACTIONS(804), + [anon_sym_module] = ACTIONS(804), + [anon_sym_any] = ACTIONS(804), + [anon_sym_number] = ACTIONS(804), + [anon_sym_boolean] = ACTIONS(804), + [anon_sym_string] = ACTIONS(804), + [anon_sym_symbol] = ACTIONS(804), + [anon_sym_object] = ACTIONS(804), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(134)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(135)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(937), + [anon_sym_export] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(949), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(939), + [anon_sym_readonly] = ACTIONS(939), + [anon_sym_get] = ACTIONS(939), + [anon_sym_set] = ACTIONS(939), + [anon_sym_declare] = ACTIONS(939), + [anon_sym_public] = ACTIONS(939), + [anon_sym_private] = ACTIONS(939), + [anon_sym_protected] = ACTIONS(939), + [anon_sym_override] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_any] = ACTIONS(939), + [anon_sym_number] = ACTIONS(939), + [anon_sym_boolean] = ACTIONS(939), + [anon_sym_string] = ACTIONS(939), + [anon_sym_symbol] = ACTIONS(939), + [anon_sym_object] = ACTIONS(939), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(136)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1316), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(1627), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(2614), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1316), + [sym_subscript_expression] = STATE(1316), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1316), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(937), + [anon_sym_export] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(949), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(939), + [anon_sym_readonly] = ACTIONS(939), + [anon_sym_get] = ACTIONS(939), + [anon_sym_set] = ACTIONS(939), + [anon_sym_declare] = ACTIONS(939), + [anon_sym_public] = ACTIONS(939), + [anon_sym_private] = ACTIONS(939), + [anon_sym_protected] = ACTIONS(939), + [anon_sym_override] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_any] = ACTIONS(939), + [anon_sym_number] = ACTIONS(939), + [anon_sym_boolean] = ACTIONS(939), + [anon_sym_string] = ACTIONS(939), + [anon_sym_symbol] = ACTIONS(939), + [anon_sym_object] = ACTIONS(939), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(137)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(905), + [anon_sym_export] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(913), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(917), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(907), + [anon_sym_readonly] = ACTIONS(907), + [anon_sym_get] = ACTIONS(907), + [anon_sym_set] = ACTIONS(907), + [anon_sym_declare] = ACTIONS(907), + [anon_sym_public] = ACTIONS(907), + [anon_sym_private] = ACTIONS(907), + [anon_sym_protected] = ACTIONS(907), + [anon_sym_override] = ACTIONS(907), + [anon_sym_module] = ACTIONS(907), + [anon_sym_any] = ACTIONS(907), + [anon_sym_number] = ACTIONS(907), + [anon_sym_boolean] = ACTIONS(907), + [anon_sym_string] = ACTIONS(907), + [anon_sym_symbol] = ACTIONS(907), + [anon_sym_object] = ACTIONS(907), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(138)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(704), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(139)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(140)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(141)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(142)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(951), + [anon_sym_export] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(959), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(963), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(953), + [anon_sym_readonly] = ACTIONS(953), + [anon_sym_get] = ACTIONS(953), + [anon_sym_set] = ACTIONS(953), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(953), + [anon_sym_private] = ACTIONS(953), + [anon_sym_protected] = ACTIONS(953), + [anon_sym_override] = ACTIONS(953), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(953), + [anon_sym_number] = ACTIONS(953), + [anon_sym_boolean] = ACTIONS(953), + [anon_sym_string] = ACTIONS(953), + [anon_sym_symbol] = ACTIONS(953), + [anon_sym_object] = ACTIONS(953), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(143)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(144)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(951), + [anon_sym_export] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(959), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(963), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(953), + [anon_sym_readonly] = ACTIONS(953), + [anon_sym_get] = ACTIONS(953), + [anon_sym_set] = ACTIONS(953), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(953), + [anon_sym_private] = ACTIONS(953), + [anon_sym_protected] = ACTIONS(953), + [anon_sym_override] = ACTIONS(953), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(953), + [anon_sym_number] = ACTIONS(953), + [anon_sym_boolean] = ACTIONS(953), + [anon_sym_string] = ACTIONS(953), + [anon_sym_symbol] = ACTIONS(953), + [anon_sym_object] = ACTIONS(953), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(145)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(146)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(881), + [anon_sym_of] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(147)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(886), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(888), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(901), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(888), + [anon_sym_readonly] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [anon_sym_declare] = ACTIONS(888), + [anon_sym_public] = ACTIONS(888), + [anon_sym_private] = ACTIONS(888), + [anon_sym_protected] = ACTIONS(888), + [anon_sym_override] = ACTIONS(888), + [anon_sym_module] = ACTIONS(888), + [anon_sym_any] = ACTIONS(888), + [anon_sym_number] = ACTIONS(888), + [anon_sym_boolean] = ACTIONS(888), + [anon_sym_string] = ACTIONS(888), + [anon_sym_symbol] = ACTIONS(888), + [anon_sym_object] = ACTIONS(888), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(148)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(149)] = { + [sym_import] = STATE(3718), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(5380), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5979), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1918), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4266), + [sym_pattern] = STATE(5009), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3267), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5429), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(967), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_typeof] = ACTIONS(973), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(981), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(989), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(991), + [sym_number] = ACTIONS(993), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(995), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(997), + [sym_false] = ACTIONS(997), + [sym_null] = ACTIONS(997), + [sym_undefined] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(1001), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(1005), + [anon_sym_number] = ACTIONS(1005), + [anon_sym_boolean] = ACTIONS(1005), + [anon_sym_string] = ACTIONS(1005), + [anon_sym_symbol] = ACTIONS(1005), + [anon_sym_object] = ACTIONS(1005), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(150)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(151)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(152)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4031), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5527), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(153)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(154)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1025), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(155)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(156)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(157)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(158)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(159)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(160)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1459), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(828), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(120), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(161)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2176), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5583), + [sym_string] = STATE(2324), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4888), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(4055), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(4597), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1037), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_typeof] = ACTIONS(730), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1049), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(744), + [sym_number] = ACTIONS(746), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1051), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_null] = ACTIONS(750), + [sym_undefined] = ACTIONS(1053), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1055), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1057), + [anon_sym_number] = ACTIONS(1057), + [anon_sym_boolean] = ACTIONS(1057), + [anon_sym_string] = ACTIONS(1057), + [anon_sym_symbol] = ACTIONS(1057), + [anon_sym_object] = ACTIONS(1057), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(162)] = { + [sym_import] = STATE(3724), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2115), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2008), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_typeof] = ACTIONS(1067), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1079), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1085), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1099), + [sym_false] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1105), + [anon_sym_number] = ACTIONS(1105), + [anon_sym_boolean] = ACTIONS(1105), + [anon_sym_string] = ACTIONS(1105), + [anon_sym_symbol] = ACTIONS(1105), + [anon_sym_object] = ACTIONS(1105), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(163)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(4429), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(4429), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1333), + [sym_subscript_expression] = STATE(1333), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(4429), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2082), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1333), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3984), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1107), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1115), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1117), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(187), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(589), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1121), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1123), + [anon_sym_number] = ACTIONS(1123), + [anon_sym_boolean] = ACTIONS(1123), + [anon_sym_string] = ACTIONS(1123), + [anon_sym_symbol] = ACTIONS(1123), + [anon_sym_object] = ACTIONS(1123), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(164)] = { + [sym_import] = STATE(3694), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2047), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1125), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_typeof] = ACTIONS(1133), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1141), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(1145), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1147), + [sym_number] = ACTIONS(1149), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1151), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [sym_null] = ACTIONS(1153), + [sym_undefined] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1159), + [anon_sym_number] = ACTIONS(1159), + [anon_sym_boolean] = ACTIONS(1159), + [anon_sym_string] = ACTIONS(1159), + [anon_sym_symbol] = ACTIONS(1159), + [anon_sym_object] = ACTIONS(1159), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(165)] = { + [sym_import] = STATE(3694), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1757), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2047), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1161), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1131), + [anon_sym_typeof] = ACTIONS(1167), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1177), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1183), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1147), + [sym_number] = ACTIONS(1149), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(1151), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1153), + [sym_false] = ACTIONS(1153), + [sym_null] = ACTIONS(1153), + [sym_undefined] = ACTIONS(1191), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1195), + [anon_sym_number] = ACTIONS(1195), + [anon_sym_boolean] = ACTIONS(1195), + [anon_sym_string] = ACTIONS(1195), + [anon_sym_symbol] = ACTIONS(1195), + [anon_sym_object] = ACTIONS(1195), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(166)] = { + [sym_import] = STATE(3741), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2191), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2404), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1197), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1203), + [anon_sym_typeof] = ACTIONS(1205), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1217), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1223), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1229), + [sym_number] = ACTIONS(1231), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(1235), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_null] = ACTIONS(1237), + [sym_undefined] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1241), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1243), + [anon_sym_number] = ACTIONS(1243), + [anon_sym_boolean] = ACTIONS(1243), + [anon_sym_string] = ACTIONS(1243), + [anon_sym_symbol] = ACTIONS(1243), + [anon_sym_object] = ACTIONS(1243), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(167)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1634), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1645), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1245), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_typeof] = ACTIONS(1249), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1049), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(581), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1255), + [sym_number] = ACTIONS(1257), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1259), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1261), + [sym_false] = ACTIONS(1261), + [sym_null] = ACTIONS(1261), + [sym_undefined] = ACTIONS(1263), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1055), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1265), + [anon_sym_number] = ACTIONS(1265), + [anon_sym_boolean] = ACTIONS(1265), + [anon_sym_string] = ACTIONS(1265), + [anon_sym_symbol] = ACTIONS(1265), + [anon_sym_object] = ACTIONS(1265), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(168)] = { + [sym_import] = STATE(3589), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2008), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1267), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_typeof] = ACTIONS(1273), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1283), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1289), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1099), + [sym_false] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1297), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1299), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(169)] = { + [sym_import] = STATE(3724), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2557), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2008), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1303), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_typeof] = ACTIONS(1307), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1309), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1099), + [sym_false] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1313), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(1317), + [anon_sym_number] = ACTIONS(1317), + [anon_sym_boolean] = ACTIONS(1317), + [anon_sym_string] = ACTIONS(1317), + [anon_sym_symbol] = ACTIONS(1317), + [anon_sym_object] = ACTIONS(1317), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(170)] = { + [sym_import] = STATE(3724), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3636), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3636), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1413), + [sym_subscript_expression] = STATE(1413), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3636), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2542), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1413), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3984), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1319), + [anon_sym_export] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1321), + [anon_sym_namespace] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_typeof] = ACTIONS(1327), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1331), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1333), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1337), + [sym_number] = ACTIONS(1339), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1341), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1343), + [sym_false] = ACTIONS(1343), + [sym_null] = ACTIONS(1343), + [sym_undefined] = ACTIONS(1345), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_readonly] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(1321), + [anon_sym_set] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1321), + [anon_sym_public] = ACTIONS(1321), + [anon_sym_private] = ACTIONS(1321), + [anon_sym_protected] = ACTIONS(1321), + [anon_sym_override] = ACTIONS(1321), + [anon_sym_module] = ACTIONS(1321), + [anon_sym_any] = ACTIONS(1349), + [anon_sym_number] = ACTIONS(1349), + [anon_sym_boolean] = ACTIONS(1349), + [anon_sym_string] = ACTIONS(1349), + [anon_sym_symbol] = ACTIONS(1349), + [anon_sym_object] = ACTIONS(1349), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(171)] = { + [sym_import] = STATE(3724), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(2008), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1351), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_typeof] = ACTIONS(1357), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1367), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1091), + [sym_number] = ACTIONS(1093), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1099), + [sym_false] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1381), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1383), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_number] = ACTIONS(1385), + [anon_sym_boolean] = ACTIONS(1385), + [anon_sym_string] = ACTIONS(1385), + [anon_sym_symbol] = ACTIONS(1385), + [anon_sym_object] = ACTIONS(1385), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(172)] = { + [sym_import] = STATE(3721), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1998), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_nested_identifier] = STATE(5918), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1645), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(4016), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5425), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_typeof] = ACTIONS(1393), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1403), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1255), + [sym_number] = ACTIONS(1257), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(1259), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(1261), + [sym_false] = ACTIONS(1261), + [sym_null] = ACTIONS(1261), + [sym_undefined] = ACTIONS(1417), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1419), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_number] = ACTIONS(1421), + [anon_sym_boolean] = ACTIONS(1421), + [anon_sym_string] = ACTIONS(1421), + [anon_sym_symbol] = ACTIONS(1421), + [anon_sym_object] = ACTIONS(1421), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(173)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1720), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(555), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_COLON] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP3] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(174)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1836), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(45), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP3] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1429), + [sym__ternary_qmark] = ACTIONS(1429), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(175)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1799), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_of] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP3] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1429), + [sym__ternary_qmark] = ACTIONS(1429), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(176)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2054), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP3] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_satisfies] = ACTIONS(1427), + [anon_sym_implements] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(177)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2101), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_COLON] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP3] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(178)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2230), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP3] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1429), + [sym__ternary_qmark] = ACTIONS(1429), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(179)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP3] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(180)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_of] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP3] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(181)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2507), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_type] = ACTIONS(828), + [anon_sym_as] = ACTIONS(1427), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_in] = ACTIONS(1427), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_GT] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(1429), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP_AMP] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1427), + [anon_sym_GT_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_AMP3] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1429), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1429), + [anon_sym_QMARK_QMARK] = ACTIONS(1429), + [anon_sym_instanceof] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_satisfies] = ACTIONS(1427), + [sym__ternary_qmark] = ACTIONS(1429), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(182)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(183)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(862), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(184)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(185)] = { + [sym_declaration] = STATE(4295), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(4060), + [sym_lexical_declaration] = STATE(4060), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2409), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(4060), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(4060), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(4060), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(4060), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(4060), + [sym_abstract_class_declaration] = STATE(4060), + [sym_module] = STATE(4060), + [sym_internal_module] = STATE(2381), + [sym_import_alias] = STATE(4060), + [sym_interface_declaration] = STATE(4060), + [sym_enum_declaration] = STATE(4060), + [sym_type_alias_declaration] = STATE(4060), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4145), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1527), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1537), + [anon_sym_function] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1541), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_interface] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1549), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(186)] = { + [sym_declaration] = STATE(889), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(187)] = { + [sym_declaration] = STATE(4165), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(4060), + [sym_lexical_declaration] = STATE(4060), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2410), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(4060), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(4060), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(4060), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(4060), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(4060), + [sym_abstract_class_declaration] = STATE(4060), + [sym_module] = STATE(4060), + [sym_internal_module] = STATE(2381), + [sym_import_alias] = STATE(4060), + [sym_interface_declaration] = STATE(4060), + [sym_enum_declaration] = STATE(4060), + [sym_type_alias_declaration] = STATE(4060), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4145), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1527), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(1535), + [anon_sym_async] = ACTIONS(1537), + [anon_sym_function] = ACTIONS(1539), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1541), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(1545), + [anon_sym_interface] = ACTIONS(1547), + [anon_sym_enum] = ACTIONS(1549), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(188)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(189)] = { + [sym_declaration] = STATE(889), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4012), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1567), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(190)] = { + [sym_declaration] = STATE(826), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(240), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4012), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1567), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(191)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(192)] = { + [sym_declaration] = STATE(889), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1567), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(193)] = { + [sym_declaration] = STATE(826), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1559), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(194)] = { + [sym_declaration] = STATE(826), + [sym_import] = STATE(3720), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_class_declaration] = STATE(887), + [sym_function_expression] = STATE(2292), + [sym_function_declaration] = STATE(887), + [sym_generator_function] = STATE(2292), + [sym_generator_function_declaration] = STATE(887), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_function_signature] = STATE(887), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(2419), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(3993), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1551), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_function] = ACTIONS(629), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1567), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_abstract] = ACTIONS(105), + [anon_sym_interface] = ACTIONS(107), + [anon_sym_enum] = ACTIONS(109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(195)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3652), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(1573), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(196)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(197)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(198)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3213), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(199)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(200)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(201)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(202)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(203)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(167), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_void] = ACTIONS(215), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(203), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(204)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1841), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5869), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1621), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(1625), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_override] = ACTIONS(760), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(205)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1770), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5832), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1621), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(1625), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(758), + [anon_sym_private] = ACTIONS(758), + [anon_sym_protected] = ACTIONS(758), + [anon_sym_override] = ACTIONS(760), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(206)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(4851), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(4851), + [sym_optional_parameter] = STATE(4851), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1627), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(207)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1635), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(208)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(209)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5158), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5158), + [sym_optional_parameter] = STATE(5158), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(210)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1641), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(211)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5001), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5001), + [sym_optional_parameter] = STATE(5001), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(212)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1643), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(213)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1645), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(214)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1647), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(215)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(216)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(217)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym__formal_parameter] = STATE(5238), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4063), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(311), + [sym_required_parameter] = STATE(5238), + [sym_optional_parameter] = STATE(5238), + [sym__parameter_name] = STATE(3710), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1631), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(218)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_RBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(219)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(220)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(221)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2073), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4855), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4857), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(222)] = { + [sym_statement_block] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_QMARK_DOT] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1667), + [anon_sym_GT_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_AMP3] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_QMARK_QMARK] = ACTIONS(1665), + [anon_sym_instanceof] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_satisfies] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym__automatic_semicolon] = ACTIONS(1665), + [sym__ternary_qmark] = ACTIONS(1665), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(223)] = { + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1673), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_EQ] = ACTIONS(1677), + [anon_sym_as] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_COMMA] = ACTIONS(1679), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_typeof] = ACTIONS(1673), + [anon_sym_import] = ACTIONS(1673), + [anon_sym_with] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_await] = ACTIONS(1673), + [anon_sym_in] = ACTIONS(1675), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_debugger] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_throw] = ACTIONS(1673), + [anon_sym_case] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1675), + [anon_sym_DOT] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_class] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_function] = ACTIONS(1673), + [anon_sym_QMARK_DOT] = ACTIONS(1679), + [anon_sym_new] = ACTIONS(1673), + [anon_sym_using] = ACTIONS(1673), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_PIPE_PIPE] = ACTIONS(1679), + [anon_sym_GT_GT] = ACTIONS(1675), + [anon_sym_GT_GT_GT] = ACTIONS(1679), + [anon_sym_LT_LT] = ACTIONS(1679), + [anon_sym_AMP3] = ACTIONS(1675), + [anon_sym_CARET] = ACTIONS(1679), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_STAR_STAR] = ACTIONS(1679), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_EQ_EQ] = ACTIONS(1675), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1679), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_QMARK_QMARK] = ACTIONS(1679), + [anon_sym_instanceof] = ACTIONS(1675), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_delete] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [sym_private_property_identifier] = ACTIONS(1671), + [sym_this] = ACTIONS(1673), + [sym_super] = ACTIONS(1673), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [sym_null] = ACTIONS(1673), + [sym_undefined] = ACTIONS(1673), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_get] = ACTIONS(1673), + [anon_sym_set] = ACTIONS(1673), + [anon_sym_declare] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1673), + [anon_sym_private] = ACTIONS(1673), + [anon_sym_protected] = ACTIONS(1673), + [anon_sym_override] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_number] = ACTIONS(1673), + [anon_sym_boolean] = ACTIONS(1673), + [anon_sym_string] = ACTIONS(1673), + [anon_sym_symbol] = ACTIONS(1673), + [anon_sym_object] = ACTIONS(1673), + [anon_sym_abstract] = ACTIONS(1673), + [anon_sym_satisfies] = ACTIONS(1675), + [anon_sym_interface] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [sym__automatic_semicolon] = ACTIONS(1681), + [sym__ternary_qmark] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(224)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2141), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4875), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4967), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(225)] = { + [sym_statement_block] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_QMARK_DOT] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1667), + [anon_sym_GT_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_AMP3] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_QMARK_QMARK] = ACTIONS(1665), + [anon_sym_instanceof] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_satisfies] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym__automatic_semicolon] = ACTIONS(1665), + [sym__ternary_qmark] = ACTIONS(1665), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(226)] = { + [sym_statement_block] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_as] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_COMMA] = ACTIONS(1665), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_GT] = ACTIONS(1667), + [anon_sym_DOT] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_QMARK_DOT] = ACTIONS(1665), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_AMP_AMP] = ACTIONS(1665), + [anon_sym_PIPE_PIPE] = ACTIONS(1665), + [anon_sym_GT_GT] = ACTIONS(1667), + [anon_sym_GT_GT_GT] = ACTIONS(1665), + [anon_sym_LT_LT] = ACTIONS(1665), + [anon_sym_AMP3] = ACTIONS(1667), + [anon_sym_CARET] = ACTIONS(1665), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_STAR_STAR] = ACTIONS(1665), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1665), + [anon_sym_EQ_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1665), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1665), + [anon_sym_GT_EQ] = ACTIONS(1665), + [anon_sym_QMARK_QMARK] = ACTIONS(1665), + [anon_sym_instanceof] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_satisfies] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym__automatic_semicolon] = ACTIONS(1665), + [sym__ternary_qmark] = ACTIONS(1665), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(227)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2125), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4875), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4967), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(228)] = { + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_as] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_COMMA] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_typeof] = ACTIONS(1691), + [anon_sym_import] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1691), + [anon_sym_var] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_else] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_switch] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_debugger] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_throw] = ACTIONS(1691), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_yield] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_DOT] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_class] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(1691), + [anon_sym_QMARK_DOT] = ACTIONS(1689), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_using] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1689), + [anon_sym_PIPE_PIPE] = ACTIONS(1689), + [anon_sym_GT_GT] = ACTIONS(1691), + [anon_sym_GT_GT_GT] = ACTIONS(1689), + [anon_sym_LT_LT] = ACTIONS(1689), + [anon_sym_AMP3] = ACTIONS(1691), + [anon_sym_CARET] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_PERCENT] = ACTIONS(1689), + [anon_sym_STAR_STAR] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1689), + [anon_sym_EQ_EQ] = ACTIONS(1691), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1689), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1689), + [anon_sym_GT_EQ] = ACTIONS(1689), + [anon_sym_QMARK_QMARK] = ACTIONS(1689), + [anon_sym_instanceof] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_void] = ACTIONS(1691), + [anon_sym_delete] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1689), + [sym_number] = ACTIONS(1689), + [sym_private_property_identifier] = ACTIONS(1689), + [sym_this] = ACTIONS(1691), + [sym_super] = ACTIONS(1691), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [sym_null] = ACTIONS(1691), + [sym_undefined] = ACTIONS(1691), + [anon_sym_AT] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [anon_sym_abstract] = ACTIONS(1691), + [anon_sym_satisfies] = ACTIONS(1691), + [anon_sym_interface] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [sym__automatic_semicolon] = ACTIONS(1689), + [sym__ternary_qmark] = ACTIONS(1689), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(229)] = { + [ts_builtin_sym_end] = ACTIONS(1693), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_as] = ACTIONS(1697), + [anon_sym_namespace] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_COMMA] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym_import] = ACTIONS(1695), + [anon_sym_with] = ACTIONS(1695), + [anon_sym_var] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_else] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_switch] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_await] = ACTIONS(1695), + [anon_sym_in] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_do] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_debugger] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_throw] = ACTIONS(1695), + [anon_sym_case] = ACTIONS(1695), + [anon_sym_yield] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_GT] = ACTIONS(1697), + [anon_sym_DOT] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_class] = ACTIONS(1695), + [anon_sym_async] = ACTIONS(1695), + [anon_sym_function] = ACTIONS(1695), + [anon_sym_QMARK_DOT] = ACTIONS(1699), + [anon_sym_new] = ACTIONS(1695), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_GT_GT] = ACTIONS(1697), + [anon_sym_GT_GT_GT] = ACTIONS(1699), + [anon_sym_LT_LT] = ACTIONS(1699), + [anon_sym_AMP3] = ACTIONS(1697), + [anon_sym_CARET] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1695), + [anon_sym_PERCENT] = ACTIONS(1699), + [anon_sym_STAR_STAR] = ACTIONS(1699), + [anon_sym_LT] = ACTIONS(1695), + [anon_sym_LT_EQ] = ACTIONS(1699), + [anon_sym_EQ_EQ] = ACTIONS(1697), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1697), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1699), + [anon_sym_GT_EQ] = ACTIONS(1699), + [anon_sym_QMARK_QMARK] = ACTIONS(1699), + [anon_sym_instanceof] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(1693), + [anon_sym_void] = ACTIONS(1695), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1693), + [sym_number] = ACTIONS(1693), + [sym_private_property_identifier] = ACTIONS(1693), + [sym_this] = ACTIONS(1695), + [sym_super] = ACTIONS(1695), + [sym_true] = ACTIONS(1695), + [sym_false] = ACTIONS(1695), + [sym_null] = ACTIONS(1695), + [sym_undefined] = ACTIONS(1695), + [anon_sym_AT] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_readonly] = ACTIONS(1695), + [anon_sym_get] = ACTIONS(1695), + [anon_sym_set] = ACTIONS(1695), + [anon_sym_declare] = ACTIONS(1695), + [anon_sym_public] = ACTIONS(1695), + [anon_sym_private] = ACTIONS(1695), + [anon_sym_protected] = ACTIONS(1695), + [anon_sym_override] = ACTIONS(1695), + [anon_sym_module] = ACTIONS(1695), + [anon_sym_any] = ACTIONS(1695), + [anon_sym_number] = ACTIONS(1695), + [anon_sym_boolean] = ACTIONS(1695), + [anon_sym_string] = ACTIONS(1695), + [anon_sym_symbol] = ACTIONS(1695), + [anon_sym_object] = ACTIONS(1695), + [anon_sym_abstract] = ACTIONS(1695), + [anon_sym_satisfies] = ACTIONS(1697), + [anon_sym_interface] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [sym__automatic_semicolon] = ACTIONS(1701), + [sym__ternary_qmark] = ACTIONS(1699), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(230)] = { + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_namespace] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_typeof] = ACTIONS(1705), + [anon_sym_import] = ACTIONS(1705), + [anon_sym_with] = ACTIONS(1705), + [anon_sym_var] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_switch] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_debugger] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_throw] = ACTIONS(1705), + [anon_sym_case] = ACTIONS(1705), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_GT] = ACTIONS(1705), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), + [anon_sym_class] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_function] = ACTIONS(1705), + [anon_sym_QMARK_DOT] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_using] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1703), + [anon_sym_PIPE_PIPE] = ACTIONS(1703), + [anon_sym_GT_GT] = ACTIONS(1705), + [anon_sym_GT_GT_GT] = ACTIONS(1703), + [anon_sym_LT_LT] = ACTIONS(1703), + [anon_sym_AMP3] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_SLASH] = ACTIONS(1705), + [anon_sym_PERCENT] = ACTIONS(1703), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_LT] = ACTIONS(1705), + [anon_sym_LT_EQ] = ACTIONS(1703), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1703), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1703), + [anon_sym_GT_EQ] = ACTIONS(1703), + [anon_sym_QMARK_QMARK] = ACTIONS(1703), + [anon_sym_instanceof] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1703), + [anon_sym_void] = ACTIONS(1705), + [anon_sym_delete] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1703), + [sym_number] = ACTIONS(1703), + [sym_private_property_identifier] = ACTIONS(1703), + [sym_this] = ACTIONS(1705), + [sym_super] = ACTIONS(1705), + [sym_true] = ACTIONS(1705), + [sym_false] = ACTIONS(1705), + [sym_null] = ACTIONS(1705), + [sym_undefined] = ACTIONS(1705), + [anon_sym_AT] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_readonly] = ACTIONS(1705), + [anon_sym_get] = ACTIONS(1705), + [anon_sym_set] = ACTIONS(1705), + [anon_sym_declare] = ACTIONS(1705), + [anon_sym_public] = ACTIONS(1705), + [anon_sym_private] = ACTIONS(1705), + [anon_sym_protected] = ACTIONS(1705), + [anon_sym_override] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_any] = ACTIONS(1705), + [anon_sym_number] = ACTIONS(1705), + [anon_sym_boolean] = ACTIONS(1705), + [anon_sym_string] = ACTIONS(1705), + [anon_sym_symbol] = ACTIONS(1705), + [anon_sym_object] = ACTIONS(1705), + [anon_sym_abstract] = ACTIONS(1705), + [anon_sym_satisfies] = ACTIONS(1705), + [anon_sym_interface] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [sym__automatic_semicolon] = ACTIONS(1703), + [sym__ternary_qmark] = ACTIONS(1703), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(231)] = { + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1709), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_default] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_namespace] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_typeof] = ACTIONS(1709), + [anon_sym_import] = ACTIONS(1709), + [anon_sym_with] = ACTIONS(1709), + [anon_sym_var] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_switch] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1709), + [anon_sym_in] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_debugger] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_throw] = ACTIONS(1709), + [anon_sym_case] = ACTIONS(1709), + [anon_sym_yield] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1707), + [anon_sym_SQUOTE] = ACTIONS(1707), + [anon_sym_class] = ACTIONS(1709), + [anon_sym_async] = ACTIONS(1709), + [anon_sym_function] = ACTIONS(1709), + [anon_sym_QMARK_DOT] = ACTIONS(1707), + [anon_sym_new] = ACTIONS(1709), + [anon_sym_using] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(1709), + [anon_sym_GT_GT_GT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1707), + [anon_sym_AMP3] = ACTIONS(1709), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_PERCENT] = ACTIONS(1707), + [anon_sym_STAR_STAR] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1709), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_EQ_EQ] = ACTIONS(1709), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_QMARK_QMARK] = ACTIONS(1707), + [anon_sym_instanceof] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_void] = ACTIONS(1709), + [anon_sym_delete] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1707), + [sym_number] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(1709), + [sym_super] = ACTIONS(1709), + [sym_true] = ACTIONS(1709), + [sym_false] = ACTIONS(1709), + [sym_null] = ACTIONS(1709), + [sym_undefined] = ACTIONS(1709), + [anon_sym_AT] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1709), + [anon_sym_readonly] = ACTIONS(1709), + [anon_sym_get] = ACTIONS(1709), + [anon_sym_set] = ACTIONS(1709), + [anon_sym_declare] = ACTIONS(1709), + [anon_sym_public] = ACTIONS(1709), + [anon_sym_private] = ACTIONS(1709), + [anon_sym_protected] = ACTIONS(1709), + [anon_sym_override] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_any] = ACTIONS(1709), + [anon_sym_number] = ACTIONS(1709), + [anon_sym_boolean] = ACTIONS(1709), + [anon_sym_string] = ACTIONS(1709), + [anon_sym_symbol] = ACTIONS(1709), + [anon_sym_object] = ACTIONS(1709), + [anon_sym_abstract] = ACTIONS(1709), + [anon_sym_satisfies] = ACTIONS(1709), + [anon_sym_interface] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [sym__automatic_semicolon] = ACTIONS(1707), + [sym__ternary_qmark] = ACTIONS(1707), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(232)] = { + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1673), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_as] = ACTIONS(1673), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_COMMA] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_typeof] = ACTIONS(1673), + [anon_sym_import] = ACTIONS(1673), + [anon_sym_with] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1673), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_await] = ACTIONS(1673), + [anon_sym_in] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_debugger] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_throw] = ACTIONS(1673), + [anon_sym_case] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_DOT] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_class] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_function] = ACTIONS(1673), + [anon_sym_QMARK_DOT] = ACTIONS(1671), + [anon_sym_new] = ACTIONS(1673), + [anon_sym_using] = ACTIONS(1673), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_PIPE_PIPE] = ACTIONS(1671), + [anon_sym_GT_GT] = ACTIONS(1673), + [anon_sym_GT_GT_GT] = ACTIONS(1671), + [anon_sym_LT_LT] = ACTIONS(1671), + [anon_sym_AMP3] = ACTIONS(1673), + [anon_sym_CARET] = ACTIONS(1671), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_PERCENT] = ACTIONS(1671), + [anon_sym_STAR_STAR] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(1673), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_EQ_EQ] = ACTIONS(1673), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ] = ACTIONS(1673), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(1671), + [anon_sym_QMARK_QMARK] = ACTIONS(1671), + [anon_sym_instanceof] = ACTIONS(1673), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_delete] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [sym_private_property_identifier] = ACTIONS(1671), + [sym_this] = ACTIONS(1673), + [sym_super] = ACTIONS(1673), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [sym_null] = ACTIONS(1673), + [sym_undefined] = ACTIONS(1673), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_get] = ACTIONS(1673), + [anon_sym_set] = ACTIONS(1673), + [anon_sym_declare] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1673), + [anon_sym_private] = ACTIONS(1673), + [anon_sym_protected] = ACTIONS(1673), + [anon_sym_override] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_number] = ACTIONS(1673), + [anon_sym_boolean] = ACTIONS(1673), + [anon_sym_string] = ACTIONS(1673), + [anon_sym_symbol] = ACTIONS(1673), + [anon_sym_object] = ACTIONS(1673), + [anon_sym_abstract] = ACTIONS(1673), + [anon_sym_satisfies] = ACTIONS(1673), + [anon_sym_interface] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [sym__automatic_semicolon] = ACTIONS(1711), + [sym__ternary_qmark] = ACTIONS(1671), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(233)] = { + [ts_builtin_sym_end] = ACTIONS(1713), + [sym_identifier] = ACTIONS(1715), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_type] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_namespace] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_typeof] = ACTIONS(1715), + [anon_sym_import] = ACTIONS(1715), + [anon_sym_with] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_await] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1717), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_debugger] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_throw] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1715), + [anon_sym_yield] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1713), + [anon_sym_SQUOTE] = ACTIONS(1713), + [anon_sym_class] = ACTIONS(1715), + [anon_sym_async] = ACTIONS(1715), + [anon_sym_function] = ACTIONS(1715), + [anon_sym_QMARK_DOT] = ACTIONS(1719), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_using] = ACTIONS(1715), + [anon_sym_AMP_AMP] = ACTIONS(1719), + [anon_sym_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_GT_GT] = ACTIONS(1717), + [anon_sym_GT_GT_GT] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(1719), + [anon_sym_AMP3] = ACTIONS(1717), + [anon_sym_CARET] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1719), + [anon_sym_STAR_STAR] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_LT_EQ] = ACTIONS(1719), + [anon_sym_EQ_EQ] = ACTIONS(1717), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1719), + [anon_sym_BANG_EQ] = ACTIONS(1717), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1719), + [anon_sym_GT_EQ] = ACTIONS(1719), + [anon_sym_QMARK_QMARK] = ACTIONS(1719), + [anon_sym_instanceof] = ACTIONS(1717), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1715), + [anon_sym_delete] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1713), + [sym_number] = ACTIONS(1713), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(1715), + [sym_super] = ACTIONS(1715), + [sym_true] = ACTIONS(1715), + [sym_false] = ACTIONS(1715), + [sym_null] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1715), + [anon_sym_AT] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1715), + [anon_sym_readonly] = ACTIONS(1715), + [anon_sym_get] = ACTIONS(1715), + [anon_sym_set] = ACTIONS(1715), + [anon_sym_declare] = ACTIONS(1715), + [anon_sym_public] = ACTIONS(1715), + [anon_sym_private] = ACTIONS(1715), + [anon_sym_protected] = ACTIONS(1715), + [anon_sym_override] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_any] = ACTIONS(1715), + [anon_sym_number] = ACTIONS(1715), + [anon_sym_boolean] = ACTIONS(1715), + [anon_sym_string] = ACTIONS(1715), + [anon_sym_symbol] = ACTIONS(1715), + [anon_sym_object] = ACTIONS(1715), + [anon_sym_abstract] = ACTIONS(1715), + [anon_sym_satisfies] = ACTIONS(1717), + [anon_sym_interface] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1715), + [sym__automatic_semicolon] = ACTIONS(1721), + [sym__ternary_qmark] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(234)] = { + [ts_builtin_sym_end] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1725), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1725), + [anon_sym_default] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_as] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_COMMA] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_typeof] = ACTIONS(1725), + [anon_sym_import] = ACTIONS(1725), + [anon_sym_with] = ACTIONS(1725), + [anon_sym_var] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_else] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_switch] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1725), + [anon_sym_in] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_try] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_debugger] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_throw] = ACTIONS(1725), + [anon_sym_case] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_class] = ACTIONS(1725), + [anon_sym_async] = ACTIONS(1725), + [anon_sym_function] = ACTIONS(1725), + [anon_sym_QMARK_DOT] = ACTIONS(1723), + [anon_sym_new] = ACTIONS(1725), + [anon_sym_using] = ACTIONS(1725), + [anon_sym_AMP_AMP] = ACTIONS(1723), + [anon_sym_PIPE_PIPE] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1725), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_AMP3] = ACTIONS(1725), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_STAR_STAR] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1723), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1723), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1723), + [anon_sym_QMARK_QMARK] = ACTIONS(1723), + [anon_sym_instanceof] = ACTIONS(1725), + [anon_sym_TILDE] = ACTIONS(1723), + [anon_sym_void] = ACTIONS(1725), + [anon_sym_delete] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1723), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1723), + [sym_number] = ACTIONS(1723), + [sym_private_property_identifier] = ACTIONS(1723), + [sym_this] = ACTIONS(1725), + [sym_super] = ACTIONS(1725), + [sym_true] = ACTIONS(1725), + [sym_false] = ACTIONS(1725), + [sym_null] = ACTIONS(1725), + [sym_undefined] = ACTIONS(1725), + [anon_sym_AT] = ACTIONS(1723), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_abstract] = ACTIONS(1725), + [anon_sym_satisfies] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [sym__automatic_semicolon] = ACTIONS(1723), + [sym__ternary_qmark] = ACTIONS(1723), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(235)] = { + [ts_builtin_sym_end] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1729), + [anon_sym_export] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1731), + [anon_sym_default] = ACTIONS(1729), + [anon_sym_type] = ACTIONS(1729), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_namespace] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_typeof] = ACTIONS(1729), + [anon_sym_import] = ACTIONS(1729), + [anon_sym_with] = ACTIONS(1729), + [anon_sym_var] = ACTIONS(1729), + [anon_sym_let] = ACTIONS(1729), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1729), + [anon_sym_else] = ACTIONS(1729), + [anon_sym_if] = ACTIONS(1729), + [anon_sym_switch] = ACTIONS(1729), + [anon_sym_for] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_await] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1729), + [anon_sym_do] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1729), + [anon_sym_break] = ACTIONS(1729), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_debugger] = ACTIONS(1729), + [anon_sym_return] = ACTIONS(1729), + [anon_sym_throw] = ACTIONS(1729), + [anon_sym_case] = ACTIONS(1729), + [anon_sym_yield] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1731), + [anon_sym_DOT] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1727), + [anon_sym_SQUOTE] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1729), + [anon_sym_async] = ACTIONS(1729), + [anon_sym_function] = ACTIONS(1729), + [anon_sym_QMARK_DOT] = ACTIONS(1733), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_using] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_GT_GT] = ACTIONS(1731), + [anon_sym_GT_GT_GT] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1733), + [anon_sym_AMP3] = ACTIONS(1731), + [anon_sym_CARET] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_SLASH] = ACTIONS(1729), + [anon_sym_PERCENT] = ACTIONS(1733), + [anon_sym_STAR_STAR] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_LT_EQ] = ACTIONS(1733), + [anon_sym_EQ_EQ] = ACTIONS(1731), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1733), + [anon_sym_BANG_EQ] = ACTIONS(1731), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1733), + [anon_sym_GT_EQ] = ACTIONS(1733), + [anon_sym_QMARK_QMARK] = ACTIONS(1733), + [anon_sym_instanceof] = ACTIONS(1731), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_void] = ACTIONS(1729), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1727), + [sym_number] = ACTIONS(1727), + [sym_private_property_identifier] = ACTIONS(1727), + [sym_this] = ACTIONS(1729), + [sym_super] = ACTIONS(1729), + [sym_true] = ACTIONS(1729), + [sym_false] = ACTIONS(1729), + [sym_null] = ACTIONS(1729), + [sym_undefined] = ACTIONS(1729), + [anon_sym_AT] = ACTIONS(1727), + [anon_sym_static] = ACTIONS(1729), + [anon_sym_readonly] = ACTIONS(1729), + [anon_sym_get] = ACTIONS(1729), + [anon_sym_set] = ACTIONS(1729), + [anon_sym_declare] = ACTIONS(1729), + [anon_sym_public] = ACTIONS(1729), + [anon_sym_private] = ACTIONS(1729), + [anon_sym_protected] = ACTIONS(1729), + [anon_sym_override] = ACTIONS(1729), + [anon_sym_module] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1729), + [anon_sym_number] = ACTIONS(1729), + [anon_sym_boolean] = ACTIONS(1729), + [anon_sym_string] = ACTIONS(1729), + [anon_sym_symbol] = ACTIONS(1729), + [anon_sym_object] = ACTIONS(1729), + [anon_sym_abstract] = ACTIONS(1729), + [anon_sym_satisfies] = ACTIONS(1731), + [anon_sym_interface] = ACTIONS(1729), + [anon_sym_enum] = ACTIONS(1729), + [sym__automatic_semicolon] = ACTIONS(1735), + [sym__ternary_qmark] = ACTIONS(1733), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(236)] = { + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1741), + [anon_sym_default] = ACTIONS(1739), + [anon_sym_type] = ACTIONS(1739), + [anon_sym_as] = ACTIONS(1741), + [anon_sym_namespace] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_COMMA] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_typeof] = ACTIONS(1739), + [anon_sym_import] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [anon_sym_var] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_switch] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_await] = ACTIONS(1739), + [anon_sym_in] = ACTIONS(1741), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_debugger] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_throw] = ACTIONS(1739), + [anon_sym_case] = ACTIONS(1739), + [anon_sym_yield] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_GT] = ACTIONS(1741), + [anon_sym_DOT] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_function] = ACTIONS(1739), + [anon_sym_QMARK_DOT] = ACTIONS(1743), + [anon_sym_new] = ACTIONS(1739), + [anon_sym_using] = ACTIONS(1739), + [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PIPE_PIPE] = ACTIONS(1743), + [anon_sym_GT_GT] = ACTIONS(1741), + [anon_sym_GT_GT_GT] = ACTIONS(1743), + [anon_sym_LT_LT] = ACTIONS(1743), + [anon_sym_AMP3] = ACTIONS(1741), + [anon_sym_CARET] = ACTIONS(1743), + [anon_sym_PIPE] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_SLASH] = ACTIONS(1739), + [anon_sym_PERCENT] = ACTIONS(1743), + [anon_sym_STAR_STAR] = ACTIONS(1743), + [anon_sym_LT] = ACTIONS(1739), + [anon_sym_LT_EQ] = ACTIONS(1743), + [anon_sym_EQ_EQ] = ACTIONS(1741), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1743), + [anon_sym_BANG_EQ] = ACTIONS(1741), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1743), + [anon_sym_GT_EQ] = ACTIONS(1743), + [anon_sym_QMARK_QMARK] = ACTIONS(1743), + [anon_sym_instanceof] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_void] = ACTIONS(1739), + [anon_sym_delete] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1737), + [sym_number] = ACTIONS(1737), + [sym_private_property_identifier] = ACTIONS(1737), + [sym_this] = ACTIONS(1739), + [sym_super] = ACTIONS(1739), + [sym_true] = ACTIONS(1739), + [sym_false] = ACTIONS(1739), + [sym_null] = ACTIONS(1739), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(1737), + [anon_sym_static] = ACTIONS(1739), + [anon_sym_readonly] = ACTIONS(1739), + [anon_sym_get] = ACTIONS(1739), + [anon_sym_set] = ACTIONS(1739), + [anon_sym_declare] = ACTIONS(1739), + [anon_sym_public] = ACTIONS(1739), + [anon_sym_private] = ACTIONS(1739), + [anon_sym_protected] = ACTIONS(1739), + [anon_sym_override] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_any] = ACTIONS(1739), + [anon_sym_number] = ACTIONS(1739), + [anon_sym_boolean] = ACTIONS(1739), + [anon_sym_string] = ACTIONS(1739), + [anon_sym_symbol] = ACTIONS(1739), + [anon_sym_object] = ACTIONS(1739), + [anon_sym_abstract] = ACTIONS(1739), + [anon_sym_satisfies] = ACTIONS(1741), + [anon_sym_interface] = ACTIONS(1739), + [anon_sym_enum] = ACTIONS(1739), + [sym__automatic_semicolon] = ACTIONS(1745), + [sym__ternary_qmark] = ACTIONS(1743), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(237)] = { + [ts_builtin_sym_end] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1751), + [anon_sym_namespace] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_COMMA] = ACTIONS(1753), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_typeof] = ACTIONS(1749), + [anon_sym_import] = ACTIONS(1749), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_var] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_switch] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_in] = ACTIONS(1751), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_debugger] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_throw] = ACTIONS(1749), + [anon_sym_case] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_GT] = ACTIONS(1751), + [anon_sym_DOT] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1747), + [anon_sym_class] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_function] = ACTIONS(1749), + [anon_sym_QMARK_DOT] = ACTIONS(1753), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_using] = ACTIONS(1749), + [anon_sym_AMP_AMP] = ACTIONS(1753), + [anon_sym_PIPE_PIPE] = ACTIONS(1753), + [anon_sym_GT_GT] = ACTIONS(1751), + [anon_sym_GT_GT_GT] = ACTIONS(1753), + [anon_sym_LT_LT] = ACTIONS(1753), + [anon_sym_AMP3] = ACTIONS(1751), + [anon_sym_CARET] = ACTIONS(1753), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_PLUS] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_SLASH] = ACTIONS(1749), + [anon_sym_PERCENT] = ACTIONS(1753), + [anon_sym_STAR_STAR] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1749), + [anon_sym_LT_EQ] = ACTIONS(1753), + [anon_sym_EQ_EQ] = ACTIONS(1751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ] = ACTIONS(1751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1753), + [anon_sym_GT_EQ] = ACTIONS(1753), + [anon_sym_QMARK_QMARK] = ACTIONS(1753), + [anon_sym_instanceof] = ACTIONS(1751), + [anon_sym_TILDE] = ACTIONS(1747), + [anon_sym_void] = ACTIONS(1749), + [anon_sym_delete] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [sym_private_property_identifier] = ACTIONS(1747), + [sym_this] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), + [sym_null] = ACTIONS(1749), + [sym_undefined] = ACTIONS(1749), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_static] = ACTIONS(1749), + [anon_sym_readonly] = ACTIONS(1749), + [anon_sym_get] = ACTIONS(1749), + [anon_sym_set] = ACTIONS(1749), + [anon_sym_declare] = ACTIONS(1749), + [anon_sym_public] = ACTIONS(1749), + [anon_sym_private] = ACTIONS(1749), + [anon_sym_protected] = ACTIONS(1749), + [anon_sym_override] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_any] = ACTIONS(1749), + [anon_sym_number] = ACTIONS(1749), + [anon_sym_boolean] = ACTIONS(1749), + [anon_sym_string] = ACTIONS(1749), + [anon_sym_symbol] = ACTIONS(1749), + [anon_sym_object] = ACTIONS(1749), + [anon_sym_abstract] = ACTIONS(1749), + [anon_sym_satisfies] = ACTIONS(1751), + [anon_sym_interface] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [sym__automatic_semicolon] = ACTIONS(1755), + [sym__ternary_qmark] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(238)] = { + [ts_builtin_sym_end] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_as] = ACTIONS(1761), + [anon_sym_namespace] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_typeof] = ACTIONS(1759), + [anon_sym_import] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + [anon_sym_var] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1759), + [anon_sym_else] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_switch] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1759), + [anon_sym_in] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_debugger] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_throw] = ACTIONS(1759), + [anon_sym_case] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_class] = ACTIONS(1759), + [anon_sym_async] = ACTIONS(1759), + [anon_sym_function] = ACTIONS(1759), + [anon_sym_QMARK_DOT] = ACTIONS(1763), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_using] = ACTIONS(1759), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1761), + [anon_sym_GT_GT_GT] = ACTIONS(1763), + [anon_sym_LT_LT] = ACTIONS(1763), + [anon_sym_AMP3] = ACTIONS(1761), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_SLASH] = ACTIONS(1759), + [anon_sym_PERCENT] = ACTIONS(1763), + [anon_sym_STAR_STAR] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1759), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1761), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1761), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_QMARK_QMARK] = ACTIONS(1763), + [anon_sym_instanceof] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_void] = ACTIONS(1759), + [anon_sym_delete] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1757), + [sym_number] = ACTIONS(1757), + [sym_private_property_identifier] = ACTIONS(1757), + [sym_this] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_null] = ACTIONS(1759), + [sym_undefined] = ACTIONS(1759), + [anon_sym_AT] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1759), + [anon_sym_satisfies] = ACTIONS(1761), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(1765), + [sym__ternary_qmark] = ACTIONS(1763), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(239)] = { + [ts_builtin_sym_end] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_type] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_namespace] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_COMMA] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_typeof] = ACTIONS(1769), + [anon_sym_import] = ACTIONS(1769), + [anon_sym_with] = ACTIONS(1769), + [anon_sym_var] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_switch] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_debugger] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1769), + [anon_sym_case] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_class] = ACTIONS(1769), + [anon_sym_async] = ACTIONS(1769), + [anon_sym_function] = ACTIONS(1769), + [anon_sym_QMARK_DOT] = ACTIONS(1767), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1769), + [anon_sym_AMP_AMP] = ACTIONS(1767), + [anon_sym_PIPE_PIPE] = ACTIONS(1767), + [anon_sym_GT_GT] = ACTIONS(1769), + [anon_sym_GT_GT_GT] = ACTIONS(1767), + [anon_sym_LT_LT] = ACTIONS(1767), + [anon_sym_AMP3] = ACTIONS(1769), + [anon_sym_CARET] = ACTIONS(1767), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1767), + [anon_sym_STAR_STAR] = ACTIONS(1767), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_QMARK_QMARK] = ACTIONS(1767), + [anon_sym_instanceof] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_void] = ACTIONS(1769), + [anon_sym_delete] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1767), + [sym_number] = ACTIONS(1767), + [sym_private_property_identifier] = ACTIONS(1767), + [sym_this] = ACTIONS(1769), + [sym_super] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_null] = ACTIONS(1769), + [sym_undefined] = ACTIONS(1769), + [anon_sym_AT] = ACTIONS(1767), + [anon_sym_static] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_get] = ACTIONS(1769), + [anon_sym_set] = ACTIONS(1769), + [anon_sym_declare] = ACTIONS(1769), + [anon_sym_public] = ACTIONS(1769), + [anon_sym_private] = ACTIONS(1769), + [anon_sym_protected] = ACTIONS(1769), + [anon_sym_override] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_any] = ACTIONS(1769), + [anon_sym_number] = ACTIONS(1769), + [anon_sym_boolean] = ACTIONS(1769), + [anon_sym_string] = ACTIONS(1769), + [anon_sym_symbol] = ACTIONS(1769), + [anon_sym_object] = ACTIONS(1769), + [anon_sym_abstract] = ACTIONS(1769), + [anon_sym_satisfies] = ACTIONS(1769), + [anon_sym_interface] = ACTIONS(1769), + [anon_sym_enum] = ACTIONS(1769), + [sym__automatic_semicolon] = ACTIONS(1767), + [sym__ternary_qmark] = ACTIONS(1767), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(240)] = { + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1773), + [anon_sym_STAR] = ACTIONS(1775), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_as] = ACTIONS(1775), + [anon_sym_namespace] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_typeof] = ACTIONS(1773), + [anon_sym_import] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + [anon_sym_var] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_else] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1773), + [anon_sym_in] = ACTIONS(1775), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_debugger] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_throw] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_class] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1773), + [anon_sym_function] = ACTIONS(1773), + [anon_sym_QMARK_DOT] = ACTIONS(1777), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_using] = ACTIONS(1773), + [anon_sym_AMP_AMP] = ACTIONS(1777), + [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [anon_sym_GT_GT] = ACTIONS(1775), + [anon_sym_GT_GT_GT] = ACTIONS(1777), + [anon_sym_LT_LT] = ACTIONS(1777), + [anon_sym_AMP3] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_SLASH] = ACTIONS(1773), + [anon_sym_PERCENT] = ACTIONS(1777), + [anon_sym_STAR_STAR] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1773), + [anon_sym_LT_EQ] = ACTIONS(1777), + [anon_sym_EQ_EQ] = ACTIONS(1775), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1777), + [anon_sym_BANG_EQ] = ACTIONS(1775), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1777), + [anon_sym_GT_EQ] = ACTIONS(1777), + [anon_sym_QMARK_QMARK] = ACTIONS(1777), + [anon_sym_instanceof] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_void] = ACTIONS(1773), + [anon_sym_delete] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1771), + [sym_number] = ACTIONS(1771), + [sym_private_property_identifier] = ACTIONS(1771), + [sym_this] = ACTIONS(1773), + [sym_super] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_null] = ACTIONS(1773), + [sym_undefined] = ACTIONS(1773), + [anon_sym_AT] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_readonly] = ACTIONS(1773), + [anon_sym_get] = ACTIONS(1773), + [anon_sym_set] = ACTIONS(1773), + [anon_sym_declare] = ACTIONS(1773), + [anon_sym_public] = ACTIONS(1773), + [anon_sym_private] = ACTIONS(1773), + [anon_sym_protected] = ACTIONS(1773), + [anon_sym_override] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_any] = ACTIONS(1773), + [anon_sym_number] = ACTIONS(1773), + [anon_sym_boolean] = ACTIONS(1773), + [anon_sym_string] = ACTIONS(1773), + [anon_sym_symbol] = ACTIONS(1773), + [anon_sym_object] = ACTIONS(1773), + [anon_sym_abstract] = ACTIONS(1773), + [anon_sym_satisfies] = ACTIONS(1775), + [anon_sym_interface] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [sym__automatic_semicolon] = ACTIONS(1777), + [sym__ternary_qmark] = ACTIONS(1777), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(241)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_as] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_in] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_QMARK_DOT] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_AMP_AMP] = ACTIONS(1779), + [anon_sym_PIPE_PIPE] = ACTIONS(1779), + [anon_sym_GT_GT] = ACTIONS(1781), + [anon_sym_GT_GT_GT] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(1779), + [anon_sym_AMP3] = ACTIONS(1781), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_PERCENT] = ACTIONS(1779), + [anon_sym_STAR_STAR] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1779), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1779), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1779), + [anon_sym_QMARK_QMARK] = ACTIONS(1779), + [anon_sym_instanceof] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_satisfies] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym__automatic_semicolon] = ACTIONS(1783), + [sym__ternary_qmark] = ACTIONS(1779), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(242)] = { + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_as] = ACTIONS(1787), + [anon_sym_namespace] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_typeof] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_with] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_await] = ACTIONS(1787), + [anon_sym_in] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_debugger] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_QMARK_DOT] = ACTIONS(1785), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_AMP3] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_STAR_STAR] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1787), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1785), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_instanceof] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_void] = ACTIONS(1787), + [anon_sym_delete] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1785), + [sym_number] = ACTIONS(1785), + [sym_private_property_identifier] = ACTIONS(1785), + [sym_this] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_null] = ACTIONS(1787), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_readonly] = ACTIONS(1787), + [anon_sym_get] = ACTIONS(1787), + [anon_sym_set] = ACTIONS(1787), + [anon_sym_declare] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_protected] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_module] = ACTIONS(1787), + [anon_sym_any] = ACTIONS(1787), + [anon_sym_number] = ACTIONS(1787), + [anon_sym_boolean] = ACTIONS(1787), + [anon_sym_string] = ACTIONS(1787), + [anon_sym_symbol] = ACTIONS(1787), + [anon_sym_object] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_satisfies] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [sym__automatic_semicolon] = ACTIONS(1785), + [sym__ternary_qmark] = ACTIONS(1785), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(243)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [anon_sym_extends] = ACTIONS(1657), + [anon_sym_PIPE_RBRACE] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1655), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(244)] = { + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_DOT] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_GT_GT] = ACTIONS(1791), + [anon_sym_GT_GT_GT] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(1789), + [anon_sym_AMP3] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1789), + [anon_sym_STAR_STAR] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_QMARK_QMARK] = ACTIONS(1789), + [anon_sym_instanceof] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_satisfies] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [sym__automatic_semicolon] = ACTIONS(1789), + [sym__ternary_qmark] = ACTIONS(1789), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(245)] = { + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_as] = ACTIONS(1795), + [anon_sym_namespace] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_typeof] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_var] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_else] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_in] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_debugger] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_case] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_GT] = ACTIONS(1795), + [anon_sym_DOT] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(1795), + [anon_sym_QMARK_DOT] = ACTIONS(1793), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_AMP_AMP] = ACTIONS(1793), + [anon_sym_PIPE_PIPE] = ACTIONS(1793), + [anon_sym_GT_GT] = ACTIONS(1795), + [anon_sym_GT_GT_GT] = ACTIONS(1793), + [anon_sym_LT_LT] = ACTIONS(1793), + [anon_sym_AMP3] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_PERCENT] = ACTIONS(1793), + [anon_sym_STAR_STAR] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_LT_EQ] = ACTIONS(1793), + [anon_sym_EQ_EQ] = ACTIONS(1795), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1793), + [anon_sym_BANG_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1793), + [anon_sym_GT_EQ] = ACTIONS(1793), + [anon_sym_QMARK_QMARK] = ACTIONS(1793), + [anon_sym_instanceof] = ACTIONS(1795), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_void] = ACTIONS(1795), + [anon_sym_delete] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_number] = ACTIONS(1793), + [sym_private_property_identifier] = ACTIONS(1793), + [sym_this] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_null] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_readonly] = ACTIONS(1795), + [anon_sym_get] = ACTIONS(1795), + [anon_sym_set] = ACTIONS(1795), + [anon_sym_declare] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_private] = ACTIONS(1795), + [anon_sym_protected] = ACTIONS(1795), + [anon_sym_override] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_any] = ACTIONS(1795), + [anon_sym_number] = ACTIONS(1795), + [anon_sym_boolean] = ACTIONS(1795), + [anon_sym_string] = ACTIONS(1795), + [anon_sym_symbol] = ACTIONS(1795), + [anon_sym_object] = ACTIONS(1795), + [anon_sym_abstract] = ACTIONS(1795), + [anon_sym_satisfies] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [sym__automatic_semicolon] = ACTIONS(1793), + [sym__ternary_qmark] = ACTIONS(1793), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(246)] = { + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_as] = ACTIONS(1799), + [anon_sym_namespace] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1799), + [anon_sym_import] = ACTIONS(1799), + [anon_sym_with] = ACTIONS(1799), + [anon_sym_var] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_await] = ACTIONS(1799), + [anon_sym_in] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_debugger] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1799), + [anon_sym_case] = ACTIONS(1799), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_function] = ACTIONS(1799), + [anon_sym_QMARK_DOT] = ACTIONS(1797), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_using] = ACTIONS(1799), + [anon_sym_AMP_AMP] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1797), + [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT_GT] = ACTIONS(1797), + [anon_sym_LT_LT] = ACTIONS(1797), + [anon_sym_AMP3] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1797), + [anon_sym_STAR_STAR] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_LT_EQ] = ACTIONS(1797), + [anon_sym_EQ_EQ] = ACTIONS(1799), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1797), + [anon_sym_BANG_EQ] = ACTIONS(1799), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1797), + [anon_sym_GT_EQ] = ACTIONS(1797), + [anon_sym_QMARK_QMARK] = ACTIONS(1797), + [anon_sym_instanceof] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_void] = ACTIONS(1799), + [anon_sym_delete] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1797), + [sym_number] = ACTIONS(1797), + [sym_private_property_identifier] = ACTIONS(1797), + [sym_this] = ACTIONS(1799), + [sym_super] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_null] = ACTIONS(1799), + [sym_undefined] = ACTIONS(1799), + [anon_sym_AT] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_readonly] = ACTIONS(1799), + [anon_sym_get] = ACTIONS(1799), + [anon_sym_set] = ACTIONS(1799), + [anon_sym_declare] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_private] = ACTIONS(1799), + [anon_sym_protected] = ACTIONS(1799), + [anon_sym_override] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_any] = ACTIONS(1799), + [anon_sym_number] = ACTIONS(1799), + [anon_sym_boolean] = ACTIONS(1799), + [anon_sym_string] = ACTIONS(1799), + [anon_sym_symbol] = ACTIONS(1799), + [anon_sym_object] = ACTIONS(1799), + [anon_sym_abstract] = ACTIONS(1799), + [anon_sym_satisfies] = ACTIONS(1799), + [anon_sym_interface] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [sym__automatic_semicolon] = ACTIONS(1797), + [sym__ternary_qmark] = ACTIONS(1797), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(247)] = { + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_namespace] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_typeof] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_with] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_else] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_switch] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_in] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_debugger] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1803), + [anon_sym_case] = ACTIONS(1803), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_DOT] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_class] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_function] = ACTIONS(1803), + [anon_sym_QMARK_DOT] = ACTIONS(1807), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1803), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_GT_GT] = ACTIONS(1805), + [anon_sym_GT_GT_GT] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1807), + [anon_sym_AMP3] = ACTIONS(1805), + [anon_sym_CARET] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_PERCENT] = ACTIONS(1807), + [anon_sym_STAR_STAR] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_EQ_EQ] = ACTIONS(1805), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1805), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_QMARK_QMARK] = ACTIONS(1807), + [anon_sym_instanceof] = ACTIONS(1805), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_void] = ACTIONS(1803), + [anon_sym_delete] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1801), + [sym_number] = ACTIONS(1801), + [sym_private_property_identifier] = ACTIONS(1801), + [sym_this] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_null] = ACTIONS(1803), + [sym_undefined] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_readonly] = ACTIONS(1803), + [anon_sym_get] = ACTIONS(1803), + [anon_sym_set] = ACTIONS(1803), + [anon_sym_declare] = ACTIONS(1803), + [anon_sym_public] = ACTIONS(1803), + [anon_sym_private] = ACTIONS(1803), + [anon_sym_protected] = ACTIONS(1803), + [anon_sym_override] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_any] = ACTIONS(1803), + [anon_sym_number] = ACTIONS(1803), + [anon_sym_boolean] = ACTIONS(1803), + [anon_sym_string] = ACTIONS(1803), + [anon_sym_symbol] = ACTIONS(1803), + [anon_sym_object] = ACTIONS(1803), + [anon_sym_abstract] = ACTIONS(1803), + [anon_sym_satisfies] = ACTIONS(1805), + [anon_sym_interface] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [sym__automatic_semicolon] = ACTIONS(1809), + [sym__ternary_qmark] = ACTIONS(1807), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(248)] = { + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_default] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_as] = ACTIONS(1815), + [anon_sym_namespace] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_typeof] = ACTIONS(1813), + [anon_sym_import] = ACTIONS(1813), + [anon_sym_with] = ACTIONS(1813), + [anon_sym_var] = ACTIONS(1813), + [anon_sym_let] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_else] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_switch] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_await] = ACTIONS(1813), + [anon_sym_in] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_do] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_debugger] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_throw] = ACTIONS(1813), + [anon_sym_case] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_GT] = ACTIONS(1815), + [anon_sym_DOT] = ACTIONS(1815), + [anon_sym_DQUOTE] = ACTIONS(1811), + [anon_sym_SQUOTE] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1813), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_function] = ACTIONS(1813), + [anon_sym_QMARK_DOT] = ACTIONS(1817), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_using] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1817), + [anon_sym_PIPE_PIPE] = ACTIONS(1817), + [anon_sym_GT_GT] = ACTIONS(1815), + [anon_sym_GT_GT_GT] = ACTIONS(1817), + [anon_sym_LT_LT] = ACTIONS(1817), + [anon_sym_AMP3] = ACTIONS(1815), + [anon_sym_CARET] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_PERCENT] = ACTIONS(1817), + [anon_sym_STAR_STAR] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_LT_EQ] = ACTIONS(1817), + [anon_sym_EQ_EQ] = ACTIONS(1815), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1817), + [anon_sym_BANG_EQ] = ACTIONS(1815), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), + [anon_sym_GT_EQ] = ACTIONS(1817), + [anon_sym_QMARK_QMARK] = ACTIONS(1817), + [anon_sym_instanceof] = ACTIONS(1815), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_void] = ACTIONS(1813), + [anon_sym_delete] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1811), + [sym_number] = ACTIONS(1811), + [sym_private_property_identifier] = ACTIONS(1811), + [sym_this] = ACTIONS(1813), + [sym_super] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_null] = ACTIONS(1813), + [sym_undefined] = ACTIONS(1813), + [anon_sym_AT] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1813), + [anon_sym_readonly] = ACTIONS(1813), + [anon_sym_get] = ACTIONS(1813), + [anon_sym_set] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1813), + [anon_sym_public] = ACTIONS(1813), + [anon_sym_private] = ACTIONS(1813), + [anon_sym_protected] = ACTIONS(1813), + [anon_sym_override] = ACTIONS(1813), + [anon_sym_module] = ACTIONS(1813), + [anon_sym_any] = ACTIONS(1813), + [anon_sym_number] = ACTIONS(1813), + [anon_sym_boolean] = ACTIONS(1813), + [anon_sym_string] = ACTIONS(1813), + [anon_sym_symbol] = ACTIONS(1813), + [anon_sym_object] = ACTIONS(1813), + [anon_sym_abstract] = ACTIONS(1813), + [anon_sym_satisfies] = ACTIONS(1815), + [anon_sym_interface] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [sym__automatic_semicolon] = ACTIONS(1819), + [sym__ternary_qmark] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(249)] = { + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_as] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_COMMA] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_typeof] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_with] = ACTIONS(1823), + [anon_sym_var] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_switch] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_in] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_debugger] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_throw] = ACTIONS(1823), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1825), + [anon_sym_DOT] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_QMARK_DOT] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1825), + [anon_sym_GT_GT_GT] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_AMP3] = ACTIONS(1825), + [anon_sym_CARET] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1827), + [anon_sym_STAR_STAR] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1825), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), + [anon_sym_BANG_EQ] = ACTIONS(1825), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), + [anon_sym_GT_EQ] = ACTIONS(1827), + [anon_sym_QMARK_QMARK] = ACTIONS(1827), + [anon_sym_instanceof] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_void] = ACTIONS(1823), + [anon_sym_delete] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1821), + [sym_number] = ACTIONS(1821), + [sym_private_property_identifier] = ACTIONS(1821), + [sym_this] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_true] = ACTIONS(1823), + [sym_false] = ACTIONS(1823), + [sym_null] = ACTIONS(1823), + [sym_undefined] = ACTIONS(1823), + [anon_sym_AT] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_readonly] = ACTIONS(1823), + [anon_sym_get] = ACTIONS(1823), + [anon_sym_set] = ACTIONS(1823), + [anon_sym_declare] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_private] = ACTIONS(1823), + [anon_sym_protected] = ACTIONS(1823), + [anon_sym_override] = ACTIONS(1823), + [anon_sym_module] = ACTIONS(1823), + [anon_sym_any] = ACTIONS(1823), + [anon_sym_number] = ACTIONS(1823), + [anon_sym_boolean] = ACTIONS(1823), + [anon_sym_string] = ACTIONS(1823), + [anon_sym_symbol] = ACTIONS(1823), + [anon_sym_object] = ACTIONS(1823), + [anon_sym_abstract] = ACTIONS(1823), + [anon_sym_satisfies] = ACTIONS(1825), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1829), + [sym__ternary_qmark] = ACTIONS(1827), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(250)] = { + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1835), + [anon_sym_namespace] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_typeof] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1833), + [anon_sym_with] = ACTIONS(1833), + [anon_sym_var] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_in] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_debugger] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_case] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_GT] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1833), + [anon_sym_QMARK_DOT] = ACTIONS(1837), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1837), + [anon_sym_PIPE_PIPE] = ACTIONS(1837), + [anon_sym_GT_GT] = ACTIONS(1835), + [anon_sym_GT_GT_GT] = ACTIONS(1837), + [anon_sym_LT_LT] = ACTIONS(1837), + [anon_sym_AMP3] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1833), + [anon_sym_PERCENT] = ACTIONS(1837), + [anon_sym_STAR_STAR] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_LT_EQ] = ACTIONS(1837), + [anon_sym_EQ_EQ] = ACTIONS(1835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1837), + [anon_sym_BANG_EQ] = ACTIONS(1835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1837), + [anon_sym_GT_EQ] = ACTIONS(1837), + [anon_sym_QMARK_QMARK] = ACTIONS(1837), + [anon_sym_instanceof] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1833), + [anon_sym_delete] = ACTIONS(1833), + [anon_sym_PLUS_PLUS] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_number] = ACTIONS(1831), + [sym_private_property_identifier] = ACTIONS(1831), + [sym_this] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_null] = ACTIONS(1833), + [sym_undefined] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1833), + [anon_sym_get] = ACTIONS(1833), + [anon_sym_set] = ACTIONS(1833), + [anon_sym_declare] = ACTIONS(1833), + [anon_sym_public] = ACTIONS(1833), + [anon_sym_private] = ACTIONS(1833), + [anon_sym_protected] = ACTIONS(1833), + [anon_sym_override] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_any] = ACTIONS(1833), + [anon_sym_number] = ACTIONS(1833), + [anon_sym_boolean] = ACTIONS(1833), + [anon_sym_string] = ACTIONS(1833), + [anon_sym_symbol] = ACTIONS(1833), + [anon_sym_object] = ACTIONS(1833), + [anon_sym_abstract] = ACTIONS(1833), + [anon_sym_satisfies] = ACTIONS(1835), + [anon_sym_interface] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [sym__automatic_semicolon] = ACTIONS(1839), + [sym__ternary_qmark] = ACTIONS(1837), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(251)] = { + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1845), + [anon_sym_namespace] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_typeof] = ACTIONS(1843), + [anon_sym_import] = ACTIONS(1843), + [anon_sym_with] = ACTIONS(1843), + [anon_sym_var] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_switch] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_await] = ACTIONS(1843), + [anon_sym_in] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_throw] = ACTIONS(1843), + [anon_sym_case] = ACTIONS(1843), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1845), + [anon_sym_DOT] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_class] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_QMARK_DOT] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_using] = ACTIONS(1843), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1845), + [anon_sym_GT_GT_GT] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_AMP3] = ACTIONS(1845), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1847), + [anon_sym_STAR_STAR] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_EQ_EQ] = ACTIONS(1845), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ] = ACTIONS(1845), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_QMARK_QMARK] = ACTIONS(1847), + [anon_sym_instanceof] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1841), + [anon_sym_void] = ACTIONS(1843), + [anon_sym_delete] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1841), + [sym_number] = ACTIONS(1841), + [sym_private_property_identifier] = ACTIONS(1841), + [sym_this] = ACTIONS(1843), + [sym_super] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_null] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_readonly] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_declare] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_protected] = ACTIONS(1843), + [anon_sym_override] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_any] = ACTIONS(1843), + [anon_sym_number] = ACTIONS(1843), + [anon_sym_boolean] = ACTIONS(1843), + [anon_sym_string] = ACTIONS(1843), + [anon_sym_symbol] = ACTIONS(1843), + [anon_sym_object] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_satisfies] = ACTIONS(1845), + [anon_sym_interface] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [sym__automatic_semicolon] = ACTIONS(1849), + [sym__ternary_qmark] = ACTIONS(1847), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(252)] = { + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_as] = ACTIONS(1855), + [anon_sym_namespace] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_typeof] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1853), + [anon_sym_with] = ACTIONS(1853), + [anon_sym_var] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_in] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_debugger] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_case] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_function] = ACTIONS(1853), + [anon_sym_QMARK_DOT] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1853), + [anon_sym_AMP_AMP] = ACTIONS(1857), + [anon_sym_PIPE_PIPE] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1857), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_AMP3] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1857), + [anon_sym_STAR_STAR] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_LT_EQ] = ACTIONS(1857), + [anon_sym_EQ_EQ] = ACTIONS(1855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1857), + [anon_sym_BANG_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1857), + [anon_sym_QMARK_QMARK] = ACTIONS(1857), + [anon_sym_instanceof] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_void] = ACTIONS(1853), + [anon_sym_delete] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym_number] = ACTIONS(1851), + [sym_private_property_identifier] = ACTIONS(1851), + [sym_this] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_null] = ACTIONS(1853), + [sym_undefined] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), + [anon_sym_object] = ACTIONS(1853), + [anon_sym_abstract] = ACTIONS(1853), + [anon_sym_satisfies] = ACTIONS(1855), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [sym__automatic_semicolon] = ACTIONS(1859), + [sym__ternary_qmark] = ACTIONS(1857), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(253)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5183), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5183), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5183), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_mapped_type_clause] = STATE(5912), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1861), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_namespace] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1875), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1877), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1879), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(1863), + [anon_sym_get] = ACTIONS(1863), + [anon_sym_set] = ACTIONS(1863), + [anon_sym_declare] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_protected] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_any] = ACTIONS(1863), + [anon_sym_number] = ACTIONS(1863), + [anon_sym_boolean] = ACTIONS(1863), + [anon_sym_string] = ACTIONS(1863), + [anon_sym_symbol] = ACTIONS(1863), + [anon_sym_object] = ACTIONS(1863), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(254)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_as] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_in] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_GT] = ACTIONS(1781), + [anon_sym_DOT] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_QMARK_DOT] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_AMP_AMP] = ACTIONS(1779), + [anon_sym_PIPE_PIPE] = ACTIONS(1779), + [anon_sym_GT_GT] = ACTIONS(1781), + [anon_sym_GT_GT_GT] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(1779), + [anon_sym_AMP3] = ACTIONS(1781), + [anon_sym_CARET] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_PERCENT] = ACTIONS(1779), + [anon_sym_STAR_STAR] = ACTIONS(1779), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1779), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1779), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1779), + [anon_sym_QMARK_QMARK] = ACTIONS(1779), + [anon_sym_instanceof] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_satisfies] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym__automatic_semicolon] = ACTIONS(1779), + [sym__ternary_qmark] = ACTIONS(1779), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(255)] = { + [sym_import] = STATE(3552), + [sym_variable_declaration] = STATE(312), + [sym_lexical_declaration] = STATE(312), + [sym_empty_statement] = STATE(312), + [sym_parenthesized_expression] = STATE(1347), + [sym_expression] = STATE(2348), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5163), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5163), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1347), + [sym_subscript_expression] = STATE(1347), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5163), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5980), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1347), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_namespace] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_get] = ACTIONS(1883), + [anon_sym_set] = ACTIONS(1883), + [anon_sym_declare] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_protected] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_any] = ACTIONS(1883), + [anon_sym_number] = ACTIONS(1883), + [anon_sym_boolean] = ACTIONS(1883), + [anon_sym_string] = ACTIONS(1883), + [anon_sym_symbol] = ACTIONS(1883), + [anon_sym_object] = ACTIONS(1883), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(256)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(5532), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4711), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4756), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(257)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_RBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(258)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2545), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5183), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5183), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1374), + [sym_subscript_expression] = STATE(1374), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5183), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(1906), + [anon_sym_export] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1908), + [anon_sym_namespace] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1912), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1914), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1879), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_readonly] = ACTIONS(1908), + [anon_sym_get] = ACTIONS(1908), + [anon_sym_set] = ACTIONS(1908), + [anon_sym_declare] = ACTIONS(1908), + [anon_sym_public] = ACTIONS(1908), + [anon_sym_private] = ACTIONS(1908), + [anon_sym_protected] = ACTIONS(1908), + [anon_sym_override] = ACTIONS(1908), + [anon_sym_module] = ACTIONS(1908), + [anon_sym_any] = ACTIONS(1908), + [anon_sym_number] = ACTIONS(1908), + [anon_sym_boolean] = ACTIONS(1908), + [anon_sym_string] = ACTIONS(1908), + [anon_sym_symbol] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1908), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(259)] = { + [sym_import] = STATE(3552), + [sym_variable_declaration] = STATE(308), + [sym_lexical_declaration] = STATE(308), + [sym_empty_statement] = STATE(308), + [sym_parenthesized_expression] = STATE(1347), + [sym_expression] = STATE(2334), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5163), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5163), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1347), + [sym_subscript_expression] = STATE(1347), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5163), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5951), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1347), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_namespace] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_get] = ACTIONS(1883), + [anon_sym_set] = ACTIONS(1883), + [anon_sym_declare] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_protected] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_any] = ACTIONS(1883), + [anon_sym_number] = ACTIONS(1883), + [anon_sym_boolean] = ACTIONS(1883), + [anon_sym_string] = ACTIONS(1883), + [anon_sym_symbol] = ACTIONS(1883), + [anon_sym_object] = ACTIONS(1883), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(260)] = { + [sym_import] = STATE(3552), + [sym_variable_declaration] = STATE(307), + [sym_lexical_declaration] = STATE(307), + [sym_empty_statement] = STATE(307), + [sym_parenthesized_expression] = STATE(1347), + [sym_expression] = STATE(2294), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5163), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5163), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1347), + [sym_subscript_expression] = STATE(1347), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5163), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5846), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1347), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_namespace] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1897), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_readonly] = ACTIONS(1883), + [anon_sym_get] = ACTIONS(1883), + [anon_sym_set] = ACTIONS(1883), + [anon_sym_declare] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_protected] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_any] = ACTIONS(1883), + [anon_sym_number] = ACTIONS(1883), + [anon_sym_boolean] = ACTIONS(1883), + [anon_sym_string] = ACTIONS(1883), + [anon_sym_symbol] = ACTIONS(1883), + [anon_sym_object] = ACTIONS(1883), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(261)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(5532), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4711), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4756), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(262)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_assignment_pattern] = STATE(4840), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4519), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_pattern_repeat1] = STATE(4975), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(263)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_assignment_pattern] = STATE(4854), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4471), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_pattern_repeat1] = STATE(4858), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(1920), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(264)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(5532), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_spread_element] = STATE(4711), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4756), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_RBRACK] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(265)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_assignment_pattern] = STATE(5532), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4756), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_COMMA] = ACTIONS(1926), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_RBRACK] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(266)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2253), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4981), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(5005), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(267)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(268)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(269)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2180), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4646), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4647), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1934), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(270)] = { + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1936), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_function] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_using] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_void] = ACTIONS(1936), + [anon_sym_delete] = ACTIONS(1936), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [sym_this] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_null] = ACTIONS(1936), + [sym_undefined] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [anon_sym_object] = ACTIONS(1936), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(271)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2128), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(5195), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(5196), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(272)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2066), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4714), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4715), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(273)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(274)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2139), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4732), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4733), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(275)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(276)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4087), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_accessibility_modifier] = STATE(300), + [sym_override_modifier] = STATE(315), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(1946), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1948), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1950), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(277)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2192), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4608), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4945), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(278)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(279)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(280)] = { + [sym_identifier] = ACTIONS(1954), + [anon_sym_export] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_typeof] = ACTIONS(1954), + [anon_sym_import] = ACTIONS(1954), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_await] = ACTIONS(1954), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_yield] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_class] = ACTIONS(1954), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_function] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_using] = ACTIONS(1954), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1956), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_SLASH] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1956), + [anon_sym_void] = ACTIONS(1954), + [anon_sym_delete] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1956), + [anon_sym_DASH_DASH] = ACTIONS(1956), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1956), + [sym_number] = ACTIONS(1956), + [sym_private_property_identifier] = ACTIONS(1956), + [sym_this] = ACTIONS(1954), + [sym_super] = ACTIONS(1954), + [sym_true] = ACTIONS(1954), + [sym_false] = ACTIONS(1954), + [sym_null] = ACTIONS(1954), + [sym_undefined] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_readonly] = ACTIONS(1954), + [anon_sym_get] = ACTIONS(1954), + [anon_sym_set] = ACTIONS(1954), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(1954), + [anon_sym_public] = ACTIONS(1954), + [anon_sym_private] = ACTIONS(1954), + [anon_sym_protected] = ACTIONS(1954), + [anon_sym_override] = ACTIONS(1954), + [anon_sym_module] = ACTIONS(1954), + [anon_sym_any] = ACTIONS(1954), + [anon_sym_number] = ACTIONS(1954), + [anon_sym_boolean] = ACTIONS(1954), + [anon_sym_string] = ACTIONS(1954), + [anon_sym_symbol] = ACTIONS(1954), + [anon_sym_object] = ACTIONS(1954), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(281)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4711), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1958), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_RBRACK] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(282)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2342), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(4679), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [aux_sym_array_repeat1] = STATE(4680), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(1960), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(283)] = { + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1936), + [anon_sym_import] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_function] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_using] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_void] = ACTIONS(1936), + [anon_sym_delete] = ACTIONS(1936), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1938), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [sym_this] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_null] = ACTIONS(1936), + [sym_undefined] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [anon_sym_object] = ACTIONS(1936), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(284)] = { + [sym_identifier] = ACTIONS(1954), + [anon_sym_export] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_typeof] = ACTIONS(1954), + [anon_sym_import] = ACTIONS(1954), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_await] = ACTIONS(1954), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_yield] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_class] = ACTIONS(1954), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_function] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_using] = ACTIONS(1954), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1956), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_SLASH] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_TILDE] = ACTIONS(1956), + [anon_sym_void] = ACTIONS(1954), + [anon_sym_delete] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1956), + [anon_sym_DASH_DASH] = ACTIONS(1956), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1956), + [sym_number] = ACTIONS(1956), + [sym_private_property_identifier] = ACTIONS(1956), + [sym_this] = ACTIONS(1954), + [sym_super] = ACTIONS(1954), + [sym_true] = ACTIONS(1954), + [sym_false] = ACTIONS(1954), + [sym_null] = ACTIONS(1954), + [sym_undefined] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_readonly] = ACTIONS(1954), + [anon_sym_get] = ACTIONS(1954), + [anon_sym_set] = ACTIONS(1954), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(1954), + [anon_sym_public] = ACTIONS(1954), + [anon_sym_private] = ACTIONS(1954), + [anon_sym_protected] = ACTIONS(1954), + [anon_sym_override] = ACTIONS(1954), + [anon_sym_module] = ACTIONS(1954), + [anon_sym_any] = ACTIONS(1954), + [anon_sym_number] = ACTIONS(1954), + [anon_sym_boolean] = ACTIONS(1954), + [anon_sym_string] = ACTIONS(1954), + [anon_sym_symbol] = ACTIONS(1954), + [anon_sym_object] = ACTIONS(1954), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(285)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_COMMA] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_AMP3] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [anon_sym_extends] = ACTIONS(1657), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(286)] = { + [sym_import] = STATE(3659), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1962), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1964), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(287)] = { + [sym_import] = STATE(3659), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1966), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(288)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_override_modifier] = STATE(306), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(289)] = { + [sym_import] = STATE(3757), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1972), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1964), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(290)] = { + [sym_import] = STATE(3659), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1974), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(291)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3603), + [sym_assignment_pattern] = STATE(5380), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3603), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3603), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(5009), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1274), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1617), + [anon_sym_export] = ACTIONS(541), + [anon_sym_type] = ACTIONS(541), + [anon_sym_namespace] = ACTIONS(545), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(563), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1619), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(541), + [anon_sym_readonly] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [anon_sym_declare] = ACTIONS(541), + [anon_sym_public] = ACTIONS(541), + [anon_sym_private] = ACTIONS(541), + [anon_sym_protected] = ACTIONS(541), + [anon_sym_override] = ACTIONS(541), + [anon_sym_module] = ACTIONS(541), + [anon_sym_any] = ACTIONS(541), + [anon_sym_number] = ACTIONS(541), + [anon_sym_boolean] = ACTIONS(541), + [anon_sym_string] = ACTIONS(541), + [anon_sym_symbol] = ACTIONS(541), + [anon_sym_object] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(292)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2249), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(5907), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5907), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(293)] = { + [sym_import] = STATE(3659), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1980), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(1982), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(294)] = { + [sym_import] = STATE(3751), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1984), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(295)] = { + [sym_import] = STATE(3757), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1986), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(296)] = { + [sym_import] = STATE(3757), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(297)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2281), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_spread_element] = STATE(5712), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5712), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(298)] = { + [sym_import] = STATE(3647), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1992), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(1994), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(299)] = { + [sym_import] = STATE(3592), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2887), + [sym__type_query_subscript_expression] = STATE(2888), + [sym__type_query_call_expression] = STATE(3082), + [sym__type_query_instantiation_expression] = STATE(3205), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1996), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1998), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(300)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4053), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_override_modifier] = STATE(316), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2000), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2002), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(852), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(301)] = { + [sym_import] = STATE(3757), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2004), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(1982), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(302)] = { + [sym_import] = STATE(3690), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(2006), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(1994), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(303)] = { + [sym_import] = STATE(3647), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(2008), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1994), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(304)] = { + [sym_import] = STATE(3659), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym__type_query_member_expression] = STATE(2830), + [sym__type_query_subscript_expression] = STATE(2831), + [sym__type_query_call_expression] = STATE(2872), + [sym__type_query_instantiation_expression] = STATE(2987), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2010), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(1968), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(305)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_assignment_pattern] = STATE(5380), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(5009), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(113), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(306)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(3974), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(790), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2012), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(307)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(323), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2081), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5976), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(308)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(327), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2169), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5674), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(309)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(326), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2171), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5692), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(310)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1931), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5565), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym__automatic_semicolon] = ACTIONS(2014), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(311)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4161), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(312)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(319), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2308), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5908), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(313)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(318), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2298), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5690), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(314)] = { + [sym_import] = STATE(3552), + [sym_empty_statement] = STATE(321), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2310), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5911), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_SEMI] = ACTIONS(43), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(315)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4058), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2016), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(316)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1262), + [sym_subscript_expression] = STATE(1262), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_pattern] = STATE(4243), + [sym_rest_pattern] = STATE(3616), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(122), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(774), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(2020), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(786), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(113), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(113), + [anon_sym_set] = ACTIONS(113), + [anon_sym_declare] = ACTIONS(113), + [anon_sym_public] = ACTIONS(113), + [anon_sym_private] = ACTIONS(113), + [anon_sym_protected] = ACTIONS(113), + [anon_sym_override] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_any] = ACTIONS(113), + [anon_sym_number] = ACTIONS(113), + [anon_sym_boolean] = ACTIONS(113), + [anon_sym_string] = ACTIONS(113), + [anon_sym_symbol] = ACTIONS(113), + [anon_sym_object] = ACTIONS(113), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(317)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2293), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5963), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(318)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2317), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5606), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(319)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2283), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5858), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(320)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2286), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5862), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(321)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2287), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5864), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2032), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(322)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2289), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5867), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(323)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2234), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5602), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(324)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2268), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5809), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2038), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(325)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2229), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5734), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(326)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2269), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5812), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2042), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(327)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2241), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5761), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2044), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(328)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1414), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5062), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5062), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1414), + [sym_subscript_expression] = STATE(1414), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5062), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1414), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2046), + [anon_sym_export] = ACTIONS(2048), + [anon_sym_type] = ACTIONS(2048), + [anon_sym_namespace] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_var] = ACTIONS(2052), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2058), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2060), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_readonly] = ACTIONS(2048), + [anon_sym_get] = ACTIONS(2048), + [anon_sym_set] = ACTIONS(2048), + [anon_sym_declare] = ACTIONS(2048), + [anon_sym_public] = ACTIONS(2048), + [anon_sym_private] = ACTIONS(2048), + [anon_sym_protected] = ACTIONS(2048), + [anon_sym_override] = ACTIONS(2048), + [anon_sym_module] = ACTIONS(2048), + [anon_sym_any] = ACTIONS(2048), + [anon_sym_number] = ACTIONS(2048), + [anon_sym_boolean] = ACTIONS(2048), + [anon_sym_string] = ACTIONS(2048), + [anon_sym_symbol] = ACTIONS(2048), + [anon_sym_object] = ACTIONS(2048), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(329)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2299), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5844), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(2064), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(330)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2071), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1823), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(331)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_mapped_type_clause] = STATE(5834), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2068), + [anon_sym_export] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_namespace] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2074), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2076), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_readonly] = ACTIONS(2070), + [anon_sym_get] = ACTIONS(2070), + [anon_sym_set] = ACTIONS(2070), + [anon_sym_declare] = ACTIONS(2070), + [anon_sym_public] = ACTIONS(2070), + [anon_sym_private] = ACTIONS(2070), + [anon_sym_protected] = ACTIONS(2070), + [anon_sym_override] = ACTIONS(2070), + [anon_sym_module] = ACTIONS(2070), + [anon_sym_any] = ACTIONS(2070), + [anon_sym_number] = ACTIONS(2070), + [anon_sym_boolean] = ACTIONS(2070), + [anon_sym_string] = ACTIONS(2070), + [anon_sym_symbol] = ACTIONS(2070), + [anon_sym_object] = ACTIONS(2070), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(332)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2219), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym__extends_clause_single] = STATE(5116), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(333)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1777), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5822), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(334)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2204), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5802), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(335)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1838), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(336)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2270), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5646), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(337)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2271), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5648), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(338)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2277), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5651), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(339)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2278), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5656), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(340)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2291), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5664), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(341)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1951), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_sequence_expression] = STATE(5281), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(342)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2146), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(343)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1771), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5811), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(344)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2069), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2190), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(345)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2196), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5765), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(346)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2071), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2250), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(347)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2239), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2260), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(348)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2072), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2261), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(349)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2201), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2262), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(350)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2267), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5766), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(351)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1616), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(352)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(353)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(354)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(355)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(356)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(357)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(358)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_mapped_type_clause] = STATE(5912), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2082), + [anon_sym_export] = ACTIONS(2084), + [anon_sym_type] = ACTIONS(2084), + [anon_sym_namespace] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2088), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2090), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_readonly] = ACTIONS(2084), + [anon_sym_get] = ACTIONS(2084), + [anon_sym_set] = ACTIONS(2084), + [anon_sym_declare] = ACTIONS(2084), + [anon_sym_public] = ACTIONS(2084), + [anon_sym_private] = ACTIONS(2084), + [anon_sym_protected] = ACTIONS(2084), + [anon_sym_override] = ACTIONS(2084), + [anon_sym_module] = ACTIONS(2084), + [anon_sym_any] = ACTIONS(2084), + [anon_sym_number] = ACTIONS(2084), + [anon_sym_boolean] = ACTIONS(2084), + [anon_sym_string] = ACTIONS(2084), + [anon_sym_symbol] = ACTIONS(2084), + [anon_sym_object] = ACTIONS(2084), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(359)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1788), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(360)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2069), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1846), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(361)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2071), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1807), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(362)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2239), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(363)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2072), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1822), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(364)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2201), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1824), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(365)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2239), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1784), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(366)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2072), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1759), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(367)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1633), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(368)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2280), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(369)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2085), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(370)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2157), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5900), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(371)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2185), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(372)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2193), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(373)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2199), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(374)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(375)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2422), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(376)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(377)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(378)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(379)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(380)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2201), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1767), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(381)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1653), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(382)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(383)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(384)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(385)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2466), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(386)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2467), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(387)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(388)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1663), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(389)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1666), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(390)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1610), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(391)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2219), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym__extends_clause_single] = STATE(4566), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(392)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1615), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1993), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(393)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1632), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1997), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(394)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2011), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(395)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1662), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2013), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(396)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1665), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2014), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(397)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1667), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2015), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(398)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2176), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5583), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(399)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2300), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5698), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(400)] = { + [sym_import] = STATE(3720), + [sym_statement_block] = STATE(2069), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1774), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(401)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2129), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5861), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(402)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2068), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5964), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(403)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2150), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_sequence_expression] = STATE(5856), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(404)] = { + [sym_import] = STATE(3552), + [sym_statement_block] = STATE(1652), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2182), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(405)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1802), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(406)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2092), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(407)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(408)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1806), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(409)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1819), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(410)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2094), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(411)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1828), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(412)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(3636), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(3636), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1261), + [sym_subscript_expression] = STATE(1261), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(3636), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1261), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2096), + [anon_sym_export] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_namespace] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(1629), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2102), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2104), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_readonly] = ACTIONS(2098), + [anon_sym_get] = ACTIONS(2098), + [anon_sym_set] = ACTIONS(2098), + [anon_sym_declare] = ACTIONS(2098), + [anon_sym_public] = ACTIONS(2098), + [anon_sym_private] = ACTIONS(2098), + [anon_sym_protected] = ACTIONS(2098), + [anon_sym_override] = ACTIONS(2098), + [anon_sym_module] = ACTIONS(2098), + [anon_sym_any] = ACTIONS(2098), + [anon_sym_number] = ACTIONS(2098), + [anon_sym_boolean] = ACTIONS(2098), + [anon_sym_string] = ACTIONS(2098), + [anon_sym_symbol] = ACTIONS(2098), + [anon_sym_object] = ACTIONS(2098), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(413)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1843), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(414)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(415)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1426), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5890), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5890), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1426), + [sym_subscript_expression] = STATE(1426), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5890), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1426), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2108), + [anon_sym_export] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_namespace] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2114), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_readonly] = ACTIONS(2110), + [anon_sym_get] = ACTIONS(2110), + [anon_sym_set] = ACTIONS(2110), + [anon_sym_declare] = ACTIONS(2110), + [anon_sym_public] = ACTIONS(2110), + [anon_sym_private] = ACTIONS(2110), + [anon_sym_protected] = ACTIONS(2110), + [anon_sym_override] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_any] = ACTIONS(2110), + [anon_sym_number] = ACTIONS(2110), + [anon_sym_boolean] = ACTIONS(2110), + [anon_sym_string] = ACTIONS(2110), + [anon_sym_symbol] = ACTIONS(2110), + [anon_sym_object] = ACTIONS(2110), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(416)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1805), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(417)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2147), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(418)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1966), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(419)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2163), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(420)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2189), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(421)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1854), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(422)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2191), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(423)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(424)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2195), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(425)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2197), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(426)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2198), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(427)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2203), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(428)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2205), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(429)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2206), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(430)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2354), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(431)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2220), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(432)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2221), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(433)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2247), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(434)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2248), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(435)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2251), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(436)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(437)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(4429), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(4429), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1333), + [sym_subscript_expression] = STATE(1333), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(4429), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1333), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2120), + [anon_sym_export] = ACTIONS(1109), + [anon_sym_type] = ACTIONS(1109), + [anon_sym_namespace] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1115), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2122), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2124), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1109), + [anon_sym_readonly] = ACTIONS(1109), + [anon_sym_get] = ACTIONS(1109), + [anon_sym_set] = ACTIONS(1109), + [anon_sym_declare] = ACTIONS(1109), + [anon_sym_public] = ACTIONS(1109), + [anon_sym_private] = ACTIONS(1109), + [anon_sym_protected] = ACTIONS(1109), + [anon_sym_override] = ACTIONS(1109), + [anon_sym_module] = ACTIONS(1109), + [anon_sym_any] = ACTIONS(1109), + [anon_sym_number] = ACTIONS(1109), + [anon_sym_boolean] = ACTIONS(1109), + [anon_sym_string] = ACTIONS(1109), + [anon_sym_symbol] = ACTIONS(1109), + [anon_sym_object] = ACTIONS(1109), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(438)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(439)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(2284), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(440)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1853), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(441)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2263), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(442)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(443)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(444)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(445)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1847), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(446)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2290), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(447)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1723), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(448)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1781), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(449)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1617), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(450)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2508), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(451)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(452)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2554), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(453)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(454)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2557), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(455)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2560), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(456)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(457)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(458)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2480), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(459)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(460)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(461)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(462)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(463)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(464)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(465)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2487), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(466)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1782), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(467)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2489), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(468)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(469)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(470)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(471)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2160), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(472)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(473)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(474)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(475)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1431), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5853), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5853), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1431), + [sym_subscript_expression] = STATE(1431), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5853), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1431), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2130), + [anon_sym_export] = ACTIONS(2132), + [anon_sym_type] = ACTIONS(2132), + [anon_sym_namespace] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2136), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2138), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2140), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_readonly] = ACTIONS(2132), + [anon_sym_get] = ACTIONS(2132), + [anon_sym_set] = ACTIONS(2132), + [anon_sym_declare] = ACTIONS(2132), + [anon_sym_public] = ACTIONS(2132), + [anon_sym_private] = ACTIONS(2132), + [anon_sym_protected] = ACTIONS(2132), + [anon_sym_override] = ACTIONS(2132), + [anon_sym_module] = ACTIONS(2132), + [anon_sym_any] = ACTIONS(2132), + [anon_sym_number] = ACTIONS(2132), + [anon_sym_boolean] = ACTIONS(2132), + [anon_sym_string] = ACTIONS(2132), + [anon_sym_symbol] = ACTIONS(2132), + [anon_sym_object] = ACTIONS(2132), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(476)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1791), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(477)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1817), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(478)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1820), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(479)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1845), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(480)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1757), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(481)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(482)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1758), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(483)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1761), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(484)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1762), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(485)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1763), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(486)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1764), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(487)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1765), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(488)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1766), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(489)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1768), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(490)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1769), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(491)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1789), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(492)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1790), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(493)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(494)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1811), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(495)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1207), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5710), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5710), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1207), + [sym_subscript_expression] = STATE(1207), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5710), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(828), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(840), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(842), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(828), + [anon_sym_readonly] = ACTIONS(828), + [anon_sym_get] = ACTIONS(828), + [anon_sym_set] = ACTIONS(828), + [anon_sym_declare] = ACTIONS(828), + [anon_sym_public] = ACTIONS(828), + [anon_sym_private] = ACTIONS(828), + [anon_sym_protected] = ACTIONS(828), + [anon_sym_override] = ACTIONS(828), + [anon_sym_module] = ACTIONS(828), + [anon_sym_any] = ACTIONS(828), + [anon_sym_number] = ACTIONS(828), + [anon_sym_boolean] = ACTIONS(828), + [anon_sym_string] = ACTIONS(828), + [anon_sym_symbol] = ACTIONS(828), + [anon_sym_object] = ACTIONS(828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(496)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(497)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1827), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(498)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1835), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(499)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1620), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(500)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(501)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1631), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(502)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1839), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(503)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2475), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(504)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1864), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(505)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2285), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(506)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1634), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(507)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2076), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(508)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2078), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(509)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2115), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(510)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2143), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(511)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2148), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(512)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2149), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(513)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2151), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(514)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2153), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(515)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2155), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(516)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2158), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(517)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2172), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(518)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2173), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(519)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2175), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(520)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2181), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(521)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2183), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(522)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2545), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(523)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2200), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(524)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2208), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(525)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1636), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(526)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1741), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(527)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(528)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1637), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(529)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1638), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(530)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2209), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(531)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1639), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(532)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2094), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(533)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2097), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(534)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1640), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(535)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1641), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(536)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1428), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5977), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5977), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1428), + [sym_subscript_expression] = STATE(1428), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5977), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1428), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2144), + [anon_sym_export] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_namespace] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2150), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2154), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_readonly] = ACTIONS(2146), + [anon_sym_get] = ACTIONS(2146), + [anon_sym_set] = ACTIONS(2146), + [anon_sym_declare] = ACTIONS(2146), + [anon_sym_public] = ACTIONS(2146), + [anon_sym_private] = ACTIONS(2146), + [anon_sym_protected] = ACTIONS(2146), + [anon_sym_override] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_any] = ACTIONS(2146), + [anon_sym_number] = ACTIONS(2146), + [anon_sym_boolean] = ACTIONS(2146), + [anon_sym_string] = ACTIONS(2146), + [anon_sym_symbol] = ACTIONS(2146), + [anon_sym_object] = ACTIONS(2146), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(537)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(538)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1642), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(539)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2477), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(540)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2420), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(541)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2421), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(542)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(543)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2424), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(544)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(545)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2426), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(546)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2427), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(547)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2428), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(548)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2429), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(549)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2430), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(550)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(551)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2432), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(552)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2433), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(553)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2434), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(554)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2436), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(555)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1986), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(556)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1756), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(557)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(558)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(559)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1643), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(560)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1644), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(561)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(562)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1647), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(563)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(564)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1648), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(565)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(566)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2444), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(567)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1425), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5800), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5800), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1425), + [sym_subscript_expression] = STATE(1425), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5800), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1425), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2156), + [anon_sym_export] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2158), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2162), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2164), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_readonly] = ACTIONS(2158), + [anon_sym_get] = ACTIONS(2158), + [anon_sym_set] = ACTIONS(2158), + [anon_sym_declare] = ACTIONS(2158), + [anon_sym_public] = ACTIONS(2158), + [anon_sym_private] = ACTIONS(2158), + [anon_sym_protected] = ACTIONS(2158), + [anon_sym_override] = ACTIONS(2158), + [anon_sym_module] = ACTIONS(2158), + [anon_sym_any] = ACTIONS(2158), + [anon_sym_number] = ACTIONS(2158), + [anon_sym_boolean] = ACTIONS(2158), + [anon_sym_string] = ACTIONS(2158), + [anon_sym_symbol] = ACTIONS(2158), + [anon_sym_object] = ACTIONS(2158), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(568)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(569)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1654), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(570)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(571)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2449), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(572)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2450), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(573)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(574)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2453), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(575)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(576)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2455), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(577)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(578)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(579)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2458), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(580)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2459), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(581)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2460), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(582)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(583)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2462), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(584)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(585)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(586)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2465), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(587)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1427), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5585), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5585), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1427), + [sym_subscript_expression] = STATE(1427), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5585), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1427), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2168), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2176), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_readonly] = ACTIONS(2170), + [anon_sym_get] = ACTIONS(2170), + [anon_sym_set] = ACTIONS(2170), + [anon_sym_declare] = ACTIONS(2170), + [anon_sym_public] = ACTIONS(2170), + [anon_sym_private] = ACTIONS(2170), + [anon_sym_protected] = ACTIONS(2170), + [anon_sym_override] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_any] = ACTIONS(2170), + [anon_sym_number] = ACTIONS(2170), + [anon_sym_boolean] = ACTIONS(2170), + [anon_sym_string] = ACTIONS(2170), + [anon_sym_symbol] = ACTIONS(2170), + [anon_sym_object] = ACTIONS(2170), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(588)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(589)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(590)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(591)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(592)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(593)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(594)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1787), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(595)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(596)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1878), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(597)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(598)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1402), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5932), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5932), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5939), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2982), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5932), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1483), + [anon_sym_export] = ACTIONS(1353), + [anon_sym_type] = ACTIONS(1353), + [anon_sym_namespace] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1353), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1361), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1365), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1375), + [anon_sym_delete] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1379), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1489), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_readonly] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1353), + [anon_sym_set] = ACTIONS(1353), + [anon_sym_declare] = ACTIONS(1353), + [anon_sym_public] = ACTIONS(1353), + [anon_sym_private] = ACTIONS(1353), + [anon_sym_protected] = ACTIONS(1353), + [anon_sym_override] = ACTIONS(1353), + [anon_sym_module] = ACTIONS(1353), + [anon_sym_any] = ACTIONS(1353), + [anon_sym_number] = ACTIONS(1353), + [anon_sym_boolean] = ACTIONS(1353), + [anon_sym_string] = ACTIONS(1353), + [anon_sym_symbol] = ACTIONS(1353), + [anon_sym_object] = ACTIONS(1353), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(599)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1860), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(600)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1424), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5967), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5967), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1424), + [sym_subscript_expression] = STATE(1424), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5967), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1424), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2180), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2190), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_readonly] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_object] = ACTIONS(2182), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(601)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(602)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1862), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(603)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1795), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(604)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1670), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(605)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1671), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(606)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(607)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2227), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(608)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1369), + [sym_expression] = STATE(2233), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5599), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5599), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5597), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1369), + [sym_subscript_expression] = STATE(1369), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2984), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1467), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1215), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1233), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(609)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1980), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(610)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(611)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(612)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2055), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(613)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1994), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(614)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1995), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(615)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1996), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(616)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1998), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(617)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(1999), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(618)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2000), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(619)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2001), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(620)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2002), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(621)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2003), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(622)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2004), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(623)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2005), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(624)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2006), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(625)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2007), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(626)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2009), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(627)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2010), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(628)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2012), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(629)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2092), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(630)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(2255), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(631)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2016), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(632)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2017), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(633)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1693), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(634)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(2128), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(635)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1851), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(636)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2019), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(637)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2052), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(638)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1343), + [sym_expression] = STATE(2053), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5876), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5876), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5783), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1343), + [sym_subscript_expression] = STATE(1343), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2986), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5876), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1343), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1451), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1401), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1411), + [anon_sym_delete] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1415), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(639)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1813), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(640)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2385), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(641)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(2386), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(642)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(643)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5801), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5801), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5801), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1429), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2192), + [anon_sym_export] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2194), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2202), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_readonly] = ACTIONS(2194), + [anon_sym_get] = ACTIONS(2194), + [anon_sym_set] = ACTIONS(2194), + [anon_sym_declare] = ACTIONS(2194), + [anon_sym_public] = ACTIONS(2194), + [anon_sym_private] = ACTIONS(2194), + [anon_sym_protected] = ACTIONS(2194), + [anon_sym_override] = ACTIONS(2194), + [anon_sym_module] = ACTIONS(2194), + [anon_sym_any] = ACTIONS(2194), + [anon_sym_number] = ACTIONS(2194), + [anon_sym_boolean] = ACTIONS(2194), + [anon_sym_string] = ACTIONS(2194), + [anon_sym_symbol] = ACTIONS(2194), + [anon_sym_object] = ACTIONS(2194), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(644)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2534), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(645)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1717), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(646)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1254), + [sym_expression] = STATE(1718), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5842), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5842), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5707), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2914), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5842), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1423), + [anon_sym_export] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1039), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(583), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(555), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1431), + [anon_sym_using] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(553), + [anon_sym_void] = ACTIONS(583), + [anon_sym_delete] = ACTIONS(583), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(587), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1039), + [anon_sym_readonly] = ACTIONS(1039), + [anon_sym_get] = ACTIONS(1039), + [anon_sym_set] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [anon_sym_public] = ACTIONS(1039), + [anon_sym_private] = ACTIONS(1039), + [anon_sym_protected] = ACTIONS(1039), + [anon_sym_override] = ACTIONS(1039), + [anon_sym_module] = ACTIONS(1039), + [anon_sym_any] = ACTIONS(1039), + [anon_sym_number] = ACTIONS(1039), + [anon_sym_boolean] = ACTIONS(1039), + [anon_sym_string] = ACTIONS(1039), + [anon_sym_symbol] = ACTIONS(1039), + [anon_sym_object] = ACTIONS(1039), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(647)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1797), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(648)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1798), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(649)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(1796), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(650)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1342), + [sym_expression] = STATE(2154), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5614), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5614), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5612), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2973), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5614), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1435), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_type] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(45), + [anon_sym_yield] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1439), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1127), + [anon_sym_readonly] = ACTIONS(1127), + [anon_sym_get] = ACTIONS(1127), + [anon_sym_set] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [anon_sym_public] = ACTIONS(1127), + [anon_sym_private] = ACTIONS(1127), + [anon_sym_protected] = ACTIONS(1127), + [anon_sym_override] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_any] = ACTIONS(1127), + [anon_sym_number] = ACTIONS(1127), + [anon_sym_boolean] = ACTIONS(1127), + [anon_sym_string] = ACTIONS(1127), + [anon_sym_symbol] = ACTIONS(1127), + [anon_sym_object] = ACTIONS(1127), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(651)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2109), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(652)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1421), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5921), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5921), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5771), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1421), + [sym_subscript_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2977), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5921), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1421), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1269), + [anon_sym_type] = ACTIONS(1269), + [anon_sym_namespace] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1291), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1281), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1479), + [anon_sym_using] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1275), + [anon_sym_void] = ACTIONS(1291), + [anon_sym_delete] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1295), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1269), + [anon_sym_readonly] = ACTIONS(1269), + [anon_sym_get] = ACTIONS(1269), + [anon_sym_set] = ACTIONS(1269), + [anon_sym_declare] = ACTIONS(1269), + [anon_sym_public] = ACTIONS(1269), + [anon_sym_private] = ACTIONS(1269), + [anon_sym_protected] = ACTIONS(1269), + [anon_sym_override] = ACTIONS(1269), + [anon_sym_module] = ACTIONS(1269), + [anon_sym_any] = ACTIONS(1269), + [anon_sym_number] = ACTIONS(1269), + [anon_sym_boolean] = ACTIONS(1269), + [anon_sym_string] = ACTIONS(1269), + [anon_sym_symbol] = ACTIONS(1269), + [anon_sym_object] = ACTIONS(1269), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(653)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1430), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5625), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1430), + [sym_subscript_expression] = STATE(1430), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1430), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_namespace] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2210), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2214), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_readonly] = ACTIONS(2206), + [anon_sym_get] = ACTIONS(2206), + [anon_sym_set] = ACTIONS(2206), + [anon_sym_declare] = ACTIONS(2206), + [anon_sym_public] = ACTIONS(2206), + [anon_sym_private] = ACTIONS(2206), + [anon_sym_protected] = ACTIONS(2206), + [anon_sym_override] = ACTIONS(2206), + [anon_sym_module] = ACTIONS(2206), + [anon_sym_any] = ACTIONS(2206), + [anon_sym_number] = ACTIONS(2206), + [anon_sym_boolean] = ACTIONS(2206), + [anon_sym_string] = ACTIONS(2206), + [anon_sym_symbol] = ACTIONS(2206), + [anon_sym_object] = ACTIONS(2206), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(654)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(655)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1432), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5702), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1432), + [sym_subscript_expression] = STATE(1432), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2936), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1432), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(2216), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2218), + [anon_sym_namespace] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(182), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(178), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(2224), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(178), + [anon_sym_void] = ACTIONS(182), + [anon_sym_delete] = ACTIONS(182), + [anon_sym_PLUS_PLUS] = ACTIONS(716), + [anon_sym_DASH_DASH] = ACTIONS(716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(191), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_readonly] = ACTIONS(2218), + [anon_sym_get] = ACTIONS(2218), + [anon_sym_set] = ACTIONS(2218), + [anon_sym_declare] = ACTIONS(2218), + [anon_sym_public] = ACTIONS(2218), + [anon_sym_private] = ACTIONS(2218), + [anon_sym_protected] = ACTIONS(2218), + [anon_sym_override] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_any] = ACTIONS(2218), + [anon_sym_number] = ACTIONS(2218), + [anon_sym_boolean] = ACTIONS(2218), + [anon_sym_string] = ACTIONS(2218), + [anon_sym_symbol] = ACTIONS(2218), + [anon_sym_object] = ACTIONS(2218), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(656)] = { + [sym_import] = STATE(3552), + [sym_parenthesized_expression] = STATE(1376), + [sym_expression] = STATE(2558), + [sym_primary_expression] = STATE(1482), + [sym_yield_expression] = STATE(1716), + [sym_object] = STATE(1715), + [sym_object_pattern] = STATE(5785), + [sym_array] = STATE(1715), + [sym_array_pattern] = STATE(5785), + [sym_jsx_element] = STATE(1716), + [sym_jsx_opening_element] = STATE(3057), + [sym_jsx_self_closing_element] = STATE(1716), + [sym_class] = STATE(1715), + [sym_function_expression] = STATE(1715), + [sym_generator_function] = STATE(1715), + [sym_arrow_function] = STATE(1715), + [sym__call_signature] = STATE(5917), + [sym_call_expression] = STATE(1715), + [sym_new_expression] = STATE(1572), + [sym_await_expression] = STATE(1716), + [sym_member_expression] = STATE(1376), + [sym_subscript_expression] = STATE(1376), + [sym_assignment_expression] = STATE(1716), + [sym__augmented_assignment_lhs] = STATE(2948), + [sym_augmented_assignment_expression] = STATE(1716), + [sym__destructuring_pattern] = STATE(5785), + [sym_ternary_expression] = STATE(1716), + [sym_binary_expression] = STATE(1716), + [sym_unary_expression] = STATE(1716), + [sym_update_expression] = STATE(1716), + [sym_string] = STATE(1715), + [sym_template_string] = STATE(1715), + [sym_regex] = STATE(1715), + [sym_meta_property] = STATE(1715), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1376), + [sym_as_expression] = STATE(1716), + [sym_satisfies_expression] = STATE(1716), + [sym_instantiation_expression] = STATE(1716), + [sym_internal_module] = STATE(1716), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4562), + [sym_identifier] = ACTIONS(1459), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1063), + [anon_sym_LBRACE] = ACTIONS(810), + [anon_sym_typeof] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1463), + [anon_sym_using] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_delete] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(822), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(1095), + [sym_this] = ACTIONS(195), + [sym_super] = ACTIONS(195), + [sym_true] = ACTIONS(195), + [sym_false] = ACTIONS(195), + [sym_null] = ACTIONS(195), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_override] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_object] = ACTIONS(1061), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(657)] = { + [sym_import] = STATE(3720), + [sym_parenthesized_expression] = STATE(1341), + [sym_expression] = STATE(1800), + [sym_primary_expression] = STATE(1834), + [sym_yield_expression] = STATE(2254), + [sym_object] = STATE(2292), + [sym_object_pattern] = STATE(5886), + [sym_array] = STATE(2292), + [sym_array_pattern] = STATE(5886), + [sym_jsx_element] = STATE(2254), + [sym_jsx_opening_element] = STATE(3065), + [sym_jsx_self_closing_element] = STATE(2254), + [sym_class] = STATE(2292), + [sym_function_expression] = STATE(2292), + [sym_generator_function] = STATE(2292), + [sym_arrow_function] = STATE(2292), + [sym__call_signature] = STATE(5884), + [sym_call_expression] = STATE(2292), + [sym_new_expression] = STATE(1956), + [sym_await_expression] = STATE(2254), + [sym_member_expression] = STATE(1341), + [sym_subscript_expression] = STATE(1341), + [sym_assignment_expression] = STATE(2254), + [sym__augmented_assignment_lhs] = STATE(2991), + [sym_augmented_assignment_expression] = STATE(2254), + [sym__destructuring_pattern] = STATE(5886), + [sym_ternary_expression] = STATE(2254), + [sym_binary_expression] = STATE(2254), + [sym_unary_expression] = STATE(2254), + [sym_update_expression] = STATE(2254), + [sym_string] = STATE(2292), + [sym_template_string] = STATE(2292), + [sym_regex] = STATE(2292), + [sym_meta_property] = STATE(2292), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3954), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(2254), + [sym_satisfies_expression] = STATE(2254), + [sym_instantiation_expression] = STATE(2254), + [sym_internal_module] = STATE(2254), + [sym_type_parameters] = STATE(5509), + [aux_sym_export_statement_repeat1] = STATE(4527), + [sym_identifier] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1163), + [anon_sym_type] = ACTIONS(1163), + [anon_sym_namespace] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(695), + [anon_sym_typeof] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(1175), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1185), + [anon_sym_delete] = ACTIONS(1185), + [anon_sym_PLUS_PLUS] = ACTIONS(1187), + [anon_sym_DASH_DASH] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1189), + [sym_this] = ACTIONS(93), + [sym_super] = ACTIONS(93), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(1163), + [anon_sym_get] = ACTIONS(1163), + [anon_sym_set] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [anon_sym_public] = ACTIONS(1163), + [anon_sym_private] = ACTIONS(1163), + [anon_sym_protected] = ACTIONS(1163), + [anon_sym_override] = ACTIONS(1163), + [anon_sym_module] = ACTIONS(1163), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(658)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(659)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(660)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(661)] = { + [sym__call_signature] = STATE(5850), + [sym_string] = STATE(3874), + [sym_formal_parameters] = STATE(3954), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_type_parameters] = STATE(5509), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2274), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_readonly] = ACTIONS(2274), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2274), + [anon_sym_public] = ACTIONS(2274), + [anon_sym_private] = ACTIONS(2274), + [anon_sym_protected] = ACTIONS(2274), + [anon_sym_override] = ACTIONS(2274), + [anon_sym_module] = ACTIONS(2274), + [anon_sym_any] = ACTIONS(2274), + [anon_sym_number] = ACTIONS(2274), + [anon_sym_boolean] = ACTIONS(2274), + [anon_sym_string] = ACTIONS(2274), + [anon_sym_symbol] = ACTIONS(2274), + [anon_sym_object] = ACTIONS(2274), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(662)] = { + [sym__call_signature] = STATE(5850), + [sym_string] = STATE(3874), + [sym_formal_parameters] = STATE(3954), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_type_parameters] = STATE(5509), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2274), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_readonly] = ACTIONS(2274), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2274), + [anon_sym_public] = ACTIONS(2274), + [anon_sym_private] = ACTIONS(2274), + [anon_sym_protected] = ACTIONS(2274), + [anon_sym_override] = ACTIONS(2274), + [anon_sym_module] = ACTIONS(2274), + [anon_sym_any] = ACTIONS(2274), + [anon_sym_number] = ACTIONS(2274), + [anon_sym_boolean] = ACTIONS(2274), + [anon_sym_string] = ACTIONS(2274), + [anon_sym_symbol] = ACTIONS(2274), + [anon_sym_object] = ACTIONS(2274), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(663)] = { + [sym__call_signature] = STATE(5850), + [sym_string] = STATE(3874), + [sym_formal_parameters] = STATE(3954), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_type_parameters] = STATE(5509), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2274), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2274), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_readonly] = ACTIONS(2274), + [anon_sym_get] = ACTIONS(2294), + [anon_sym_set] = ACTIONS(2294), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2274), + [anon_sym_public] = ACTIONS(2274), + [anon_sym_private] = ACTIONS(2274), + [anon_sym_protected] = ACTIONS(2274), + [anon_sym_override] = ACTIONS(2274), + [anon_sym_module] = ACTIONS(2274), + [anon_sym_any] = ACTIONS(2274), + [anon_sym_number] = ACTIONS(2274), + [anon_sym_boolean] = ACTIONS(2274), + [anon_sym_string] = ACTIONS(2274), + [anon_sym_symbol] = ACTIONS(2274), + [anon_sym_object] = ACTIONS(2274), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(664)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(665)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(666)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(667)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2306), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(668)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2312), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(669)] = { + [sym_namespace_export] = STATE(5379), + [sym_export_clause] = STATE(4496), + [sym_declaration] = STATE(860), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(670)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_override_modifier] = STATE(2763), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(671)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_override_modifier] = STATE(2763), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(672)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [sym_override_modifier] = STATE(2763), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(673)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(674)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(675)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(676)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(677)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2320), + [anon_sym_set] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(678)] = { + [sym_string] = STATE(3874), + [sym__property_name] = STATE(3874), + [sym_computed_property_name] = STATE(3874), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(2314), + [anon_sym_export] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2314), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_readonly] = ACTIONS(2314), + [anon_sym_get] = ACTIONS(2314), + [anon_sym_set] = ACTIONS(2314), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_public] = ACTIONS(2314), + [anon_sym_private] = ACTIONS(2314), + [anon_sym_protected] = ACTIONS(2314), + [anon_sym_override] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2314), + [anon_sym_any] = ACTIONS(2314), + [anon_sym_number] = ACTIONS(2314), + [anon_sym_boolean] = ACTIONS(2314), + [anon_sym_string] = ACTIONS(2314), + [anon_sym_symbol] = ACTIONS(2314), + [anon_sym_object] = ACTIONS(2314), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(679)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(680)] = { + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1709), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_default] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1709), + [anon_sym_namespace] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_typeof] = ACTIONS(1709), + [anon_sym_import] = ACTIONS(1709), + [anon_sym_from] = ACTIONS(1709), + [anon_sym_with] = ACTIONS(1709), + [anon_sym_var] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_switch] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_debugger] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_throw] = ACTIONS(1709), + [anon_sym_COLON] = ACTIONS(1707), + [anon_sym_case] = ACTIONS(1709), + [anon_sym_yield] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_RBRACK] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [anon_sym_SQUOTE] = ACTIONS(1707), + [anon_sym_class] = ACTIONS(1709), + [anon_sym_async] = ACTIONS(1709), + [anon_sym_function] = ACTIONS(1709), + [anon_sym_EQ_GT] = ACTIONS(1707), + [anon_sym_new] = ACTIONS(1709), + [anon_sym_using] = ACTIONS(1709), + [anon_sym_AMP3] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_SLASH] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_void] = ACTIONS(1709), + [anon_sym_delete] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1707), + [sym_number] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(1709), + [sym_super] = ACTIONS(1709), + [sym_true] = ACTIONS(1709), + [sym_false] = ACTIONS(1709), + [sym_null] = ACTIONS(1709), + [sym_undefined] = ACTIONS(1709), + [anon_sym_AT] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1709), + [anon_sym_readonly] = ACTIONS(1709), + [anon_sym_get] = ACTIONS(1709), + [anon_sym_set] = ACTIONS(1709), + [anon_sym_QMARK] = ACTIONS(1707), + [anon_sym_declare] = ACTIONS(1709), + [anon_sym_public] = ACTIONS(1709), + [anon_sym_private] = ACTIONS(1709), + [anon_sym_protected] = ACTIONS(1709), + [anon_sym_override] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_any] = ACTIONS(1709), + [anon_sym_number] = ACTIONS(1709), + [anon_sym_boolean] = ACTIONS(1709), + [anon_sym_string] = ACTIONS(1709), + [anon_sym_symbol] = ACTIONS(1709), + [anon_sym_object] = ACTIONS(1709), + [anon_sym_abstract] = ACTIONS(1709), + [anon_sym_extends] = ACTIONS(1709), + [anon_sym_interface] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(681)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(682)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2324), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(683)] = { + [ts_builtin_sym_end] = ACTIONS(1723), + [sym_identifier] = ACTIONS(1725), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_default] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_EQ] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_COMMA] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_typeof] = ACTIONS(1725), + [anon_sym_import] = ACTIONS(1725), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_with] = ACTIONS(1725), + [anon_sym_var] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_else] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_switch] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_await] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_try] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_debugger] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_throw] = ACTIONS(1725), + [anon_sym_COLON] = ACTIONS(1723), + [anon_sym_case] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_RBRACK] = ACTIONS(1723), + [anon_sym_GT] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_class] = ACTIONS(1725), + [anon_sym_async] = ACTIONS(1725), + [anon_sym_function] = ACTIONS(1725), + [anon_sym_EQ_GT] = ACTIONS(1723), + [anon_sym_new] = ACTIONS(1725), + [anon_sym_using] = ACTIONS(1725), + [anon_sym_AMP3] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_SLASH] = ACTIONS(1725), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_TILDE] = ACTIONS(1723), + [anon_sym_void] = ACTIONS(1725), + [anon_sym_delete] = ACTIONS(1725), + [anon_sym_PLUS_PLUS] = ACTIONS(1723), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1723), + [sym_number] = ACTIONS(1723), + [sym_private_property_identifier] = ACTIONS(1723), + [sym_this] = ACTIONS(1725), + [sym_super] = ACTIONS(1725), + [sym_true] = ACTIONS(1725), + [sym_false] = ACTIONS(1725), + [sym_null] = ACTIONS(1725), + [sym_undefined] = ACTIONS(1725), + [anon_sym_AT] = ACTIONS(1723), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_QMARK] = ACTIONS(1723), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_abstract] = ACTIONS(1725), + [anon_sym_extends] = ACTIONS(1725), + [anon_sym_interface] = ACTIONS(1725), + [anon_sym_enum] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(684)] = { + [ts_builtin_sym_end] = ACTIONS(2326), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_EQ] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2326), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_COLON] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2326), + [anon_sym_RBRACK] = ACTIONS(2326), + [anon_sym_GT] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2326), + [anon_sym_SQUOTE] = ACTIONS(2326), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_EQ_GT] = ACTIONS(2326), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_AMP3] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2326), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2326), + [anon_sym_TILDE] = ACTIONS(2326), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2326), + [anon_sym_DASH_DASH] = ACTIONS(2326), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2326), + [sym_number] = ACTIONS(2326), + [sym_private_property_identifier] = ACTIONS(2326), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2326), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_QMARK] = ACTIONS(2326), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_extends] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(685)] = { + [ts_builtin_sym_end] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_EQ] = ACTIONS(2332), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_COMMA] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_RPAREN] = ACTIONS(2330), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_COLON] = ACTIONS(2330), + [anon_sym_case] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2330), + [anon_sym_RBRACK] = ACTIONS(2330), + [anon_sym_GT] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_EQ_GT] = ACTIONS(2330), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_AMP3] = ACTIONS(2330), + [anon_sym_PIPE] = ACTIONS(2330), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2330), + [sym_number] = ACTIONS(2330), + [sym_private_property_identifier] = ACTIONS(2330), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2330), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_QMARK] = ACTIONS(2330), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_extends] = ACTIONS(2332), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(686)] = { + [ts_builtin_sym_end] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2336), + [anon_sym_export] = ACTIONS(2336), + [anon_sym_default] = ACTIONS(2336), + [anon_sym_type] = ACTIONS(2336), + [anon_sym_EQ] = ACTIONS(2336), + [anon_sym_namespace] = ACTIONS(2336), + [anon_sym_LBRACE] = ACTIONS(2334), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_typeof] = ACTIONS(2336), + [anon_sym_import] = ACTIONS(2336), + [anon_sym_with] = ACTIONS(2336), + [anon_sym_var] = ACTIONS(2336), + [anon_sym_let] = ACTIONS(2336), + [anon_sym_const] = ACTIONS(2336), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2336), + [anon_sym_if] = ACTIONS(2336), + [anon_sym_switch] = ACTIONS(2336), + [anon_sym_for] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_await] = ACTIONS(2336), + [anon_sym_while] = ACTIONS(2336), + [anon_sym_do] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2336), + [anon_sym_continue] = ACTIONS(2336), + [anon_sym_debugger] = ACTIONS(2336), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_throw] = ACTIONS(2336), + [anon_sym_COLON] = ACTIONS(2334), + [anon_sym_case] = ACTIONS(2336), + [anon_sym_yield] = ACTIONS(2336), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_RBRACK] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [anon_sym_SQUOTE] = ACTIONS(2334), + [anon_sym_class] = ACTIONS(2336), + [anon_sym_async] = ACTIONS(2336), + [anon_sym_function] = ACTIONS(2336), + [anon_sym_EQ_GT] = ACTIONS(2334), + [anon_sym_new] = ACTIONS(2336), + [anon_sym_using] = ACTIONS(2336), + [anon_sym_AMP3] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2336), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_SLASH] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_TILDE] = ACTIONS(2334), + [anon_sym_void] = ACTIONS(2336), + [anon_sym_delete] = ACTIONS(2336), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2334), + [sym_number] = ACTIONS(2334), + [sym_private_property_identifier] = ACTIONS(2334), + [sym_this] = ACTIONS(2336), + [sym_super] = ACTIONS(2336), + [sym_true] = ACTIONS(2336), + [sym_false] = ACTIONS(2336), + [sym_null] = ACTIONS(2336), + [sym_undefined] = ACTIONS(2336), + [anon_sym_AT] = ACTIONS(2334), + [anon_sym_static] = ACTIONS(2336), + [anon_sym_readonly] = ACTIONS(2336), + [anon_sym_get] = ACTIONS(2336), + [anon_sym_set] = ACTIONS(2336), + [anon_sym_QMARK] = ACTIONS(2334), + [anon_sym_declare] = ACTIONS(2336), + [anon_sym_public] = ACTIONS(2336), + [anon_sym_private] = ACTIONS(2336), + [anon_sym_protected] = ACTIONS(2336), + [anon_sym_override] = ACTIONS(2336), + [anon_sym_module] = ACTIONS(2336), + [anon_sym_any] = ACTIONS(2336), + [anon_sym_number] = ACTIONS(2336), + [anon_sym_boolean] = ACTIONS(2336), + [anon_sym_string] = ACTIONS(2336), + [anon_sym_symbol] = ACTIONS(2336), + [anon_sym_object] = ACTIONS(2336), + [anon_sym_abstract] = ACTIONS(2336), + [anon_sym_extends] = ACTIONS(2336), + [anon_sym_interface] = ACTIONS(2336), + [anon_sym_enum] = ACTIONS(2336), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(687)] = { + [ts_builtin_sym_end] = ACTIONS(2338), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_EQ] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_SEMI] = ACTIONS(2338), + [anon_sym_RPAREN] = ACTIONS(2338), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_COLON] = ACTIONS(2338), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2338), + [anon_sym_RBRACK] = ACTIONS(2338), + [anon_sym_GT] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [anon_sym_SQUOTE] = ACTIONS(2338), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_EQ_GT] = ACTIONS(2338), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_AMP3] = ACTIONS(2338), + [anon_sym_PIPE] = ACTIONS(2338), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2338), + [anon_sym_TILDE] = ACTIONS(2338), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2338), + [anon_sym_DASH_DASH] = ACTIONS(2338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2338), + [sym_number] = ACTIONS(2338), + [sym_private_property_identifier] = ACTIONS(2338), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2338), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_QMARK] = ACTIONS(2338), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_extends] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(688)] = { + [ts_builtin_sym_end] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2344), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2344), + [anon_sym_type] = ACTIONS(2344), + [anon_sym_EQ] = ACTIONS(2344), + [anon_sym_namespace] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2342), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_typeof] = ACTIONS(2344), + [anon_sym_import] = ACTIONS(2344), + [anon_sym_with] = ACTIONS(2344), + [anon_sym_var] = ACTIONS(2344), + [anon_sym_let] = ACTIONS(2344), + [anon_sym_const] = ACTIONS(2344), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2344), + [anon_sym_if] = ACTIONS(2344), + [anon_sym_switch] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_RPAREN] = ACTIONS(2342), + [anon_sym_await] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_do] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2344), + [anon_sym_break] = ACTIONS(2344), + [anon_sym_continue] = ACTIONS(2344), + [anon_sym_debugger] = ACTIONS(2344), + [anon_sym_return] = ACTIONS(2344), + [anon_sym_throw] = ACTIONS(2344), + [anon_sym_COLON] = ACTIONS(2342), + [anon_sym_case] = ACTIONS(2344), + [anon_sym_yield] = ACTIONS(2344), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_RBRACK] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [anon_sym_SQUOTE] = ACTIONS(2342), + [anon_sym_class] = ACTIONS(2344), + [anon_sym_async] = ACTIONS(2344), + [anon_sym_function] = ACTIONS(2344), + [anon_sym_EQ_GT] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2344), + [anon_sym_using] = ACTIONS(2344), + [anon_sym_AMP3] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2344), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_SLASH] = ACTIONS(2344), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_void] = ACTIONS(2344), + [anon_sym_delete] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2342), + [sym_number] = ACTIONS(2342), + [sym_private_property_identifier] = ACTIONS(2342), + [sym_this] = ACTIONS(2344), + [sym_super] = ACTIONS(2344), + [sym_true] = ACTIONS(2344), + [sym_false] = ACTIONS(2344), + [sym_null] = ACTIONS(2344), + [sym_undefined] = ACTIONS(2344), + [anon_sym_AT] = ACTIONS(2342), + [anon_sym_static] = ACTIONS(2344), + [anon_sym_readonly] = ACTIONS(2344), + [anon_sym_get] = ACTIONS(2344), + [anon_sym_set] = ACTIONS(2344), + [anon_sym_QMARK] = ACTIONS(2342), + [anon_sym_declare] = ACTIONS(2344), + [anon_sym_public] = ACTIONS(2344), + [anon_sym_private] = ACTIONS(2344), + [anon_sym_protected] = ACTIONS(2344), + [anon_sym_override] = ACTIONS(2344), + [anon_sym_module] = ACTIONS(2344), + [anon_sym_any] = ACTIONS(2344), + [anon_sym_number] = ACTIONS(2344), + [anon_sym_boolean] = ACTIONS(2344), + [anon_sym_string] = ACTIONS(2344), + [anon_sym_symbol] = ACTIONS(2344), + [anon_sym_object] = ACTIONS(2344), + [anon_sym_abstract] = ACTIONS(2344), + [anon_sym_extends] = ACTIONS(2344), + [anon_sym_interface] = ACTIONS(2344), + [anon_sym_enum] = ACTIONS(2344), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(689)] = { + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(1954), + [anon_sym_export] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1956), + [sym_private_property_identifier] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_readonly] = ACTIONS(1954), + [anon_sym_get] = ACTIONS(1954), + [anon_sym_set] = ACTIONS(1954), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1954), + [anon_sym_public] = ACTIONS(1954), + [anon_sym_private] = ACTIONS(1954), + [anon_sym_protected] = ACTIONS(1954), + [anon_sym_override] = ACTIONS(1954), + [anon_sym_module] = ACTIONS(1954), + [anon_sym_any] = ACTIONS(1954), + [anon_sym_number] = ACTIONS(1954), + [anon_sym_boolean] = ACTIONS(1954), + [anon_sym_string] = ACTIONS(1954), + [anon_sym_symbol] = ACTIONS(1954), + [anon_sym_object] = ACTIONS(1954), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(690)] = { + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [anon_sym_object] = ACTIONS(1936), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(691)] = { + [sym_declaration] = STATE(4194), + [sym_variable_declaration] = STATE(4060), + [sym_lexical_declaration] = STATE(4060), + [sym_class_declaration] = STATE(4060), + [sym_function_declaration] = STATE(4060), + [sym_generator_function_declaration] = STATE(4060), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(4060), + [sym_ambient_declaration] = STATE(4060), + [sym_abstract_class_declaration] = STATE(4060), + [sym_module] = STATE(4060), + [sym_internal_module] = STATE(4073), + [sym_import_alias] = STATE(4060), + [sym_interface_declaration] = STATE(4060), + [sym_enum_declaration] = STATE(4060), + [sym_type_alias_declaration] = STATE(4060), + [aux_sym_export_statement_repeat1] = STATE(4283), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2346), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2350), + [anon_sym_var] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2362), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2364), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2374), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(692)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2238), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2262), + [anon_sym_module] = ACTIONS(2298), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(693)] = { + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [anon_sym_object] = ACTIONS(1936), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(694)] = { + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1936), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1936), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1938), + [sym_private_property_identifier] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1936), + [anon_sym_set] = ACTIONS(1936), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1936), + [anon_sym_public] = ACTIONS(1936), + [anon_sym_private] = ACTIONS(1936), + [anon_sym_protected] = ACTIONS(1936), + [anon_sym_override] = ACTIONS(1936), + [anon_sym_module] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1936), + [anon_sym_number] = ACTIONS(1936), + [anon_sym_boolean] = ACTIONS(1936), + [anon_sym_string] = ACTIONS(1936), + [anon_sym_symbol] = ACTIONS(1936), + [anon_sym_object] = ACTIONS(1936), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(695)] = { + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(1954), + [anon_sym_export] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1956), + [sym_private_property_identifier] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_readonly] = ACTIONS(1954), + [anon_sym_get] = ACTIONS(1954), + [anon_sym_set] = ACTIONS(1954), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1954), + [anon_sym_public] = ACTIONS(1954), + [anon_sym_private] = ACTIONS(1954), + [anon_sym_protected] = ACTIONS(1954), + [anon_sym_override] = ACTIONS(1954), + [anon_sym_module] = ACTIONS(1954), + [anon_sym_any] = ACTIONS(1954), + [anon_sym_number] = ACTIONS(1954), + [anon_sym_boolean] = ACTIONS(1954), + [anon_sym_string] = ACTIONS(1954), + [anon_sym_symbol] = ACTIONS(1954), + [anon_sym_object] = ACTIONS(1954), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(696)] = { + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(1954), + [anon_sym_export] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1954), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1956), + [sym_private_property_identifier] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_readonly] = ACTIONS(1954), + [anon_sym_get] = ACTIONS(1954), + [anon_sym_set] = ACTIONS(1954), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_declare] = ACTIONS(1954), + [anon_sym_public] = ACTIONS(1954), + [anon_sym_private] = ACTIONS(1954), + [anon_sym_protected] = ACTIONS(1954), + [anon_sym_override] = ACTIONS(1954), + [anon_sym_module] = ACTIONS(1954), + [anon_sym_any] = ACTIONS(1954), + [anon_sym_number] = ACTIONS(1954), + [anon_sym_boolean] = ACTIONS(1954), + [anon_sym_string] = ACTIONS(1954), + [anon_sym_symbol] = ACTIONS(1954), + [anon_sym_object] = ACTIONS(1954), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(697)] = { + [sym_declaration] = STATE(864), + [sym_variable_declaration] = STATE(887), + [sym_lexical_declaration] = STATE(887), + [sym_class_declaration] = STATE(887), + [sym_function_declaration] = STATE(887), + [sym_generator_function_declaration] = STATE(887), + [sym_decorator] = STATE(1282), + [sym_function_signature] = STATE(887), + [sym_ambient_declaration] = STATE(887), + [sym_abstract_class_declaration] = STATE(887), + [sym_module] = STATE(887), + [sym_internal_module] = STATE(877), + [sym_import_alias] = STATE(887), + [sym_interface_declaration] = STATE(887), + [sym_enum_declaration] = STATE(887), + [sym_type_alias_declaration] = STATE(887), + [aux_sym_export_statement_repeat1] = STATE(4008), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2306), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2257), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2324), + [anon_sym_abstract] = ACTIONS(2266), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2270), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(698)] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(699)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(700)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(701)] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(702)] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(703)] = { + [sym__call_signature] = STATE(5892), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(862), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2394), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_readonly] = ACTIONS(2394), + [anon_sym_get] = ACTIONS(2394), + [anon_sym_set] = ACTIONS(2394), + [anon_sym_declare] = ACTIONS(2394), + [anon_sym_public] = ACTIONS(2394), + [anon_sym_private] = ACTIONS(2394), + [anon_sym_protected] = ACTIONS(2394), + [anon_sym_override] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_any] = ACTIONS(2394), + [anon_sym_number] = ACTIONS(2394), + [anon_sym_boolean] = ACTIONS(2394), + [anon_sym_string] = ACTIONS(2394), + [anon_sym_symbol] = ACTIONS(2394), + [anon_sym_object] = ACTIONS(2394), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(704)] = { + [sym__call_signature] = STATE(5850), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(705)] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(706)] = { + [sym__call_signature] = STATE(5850), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(707)] = { + [sym__call_signature] = STATE(5850), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(708)] = { + [sym__call_signature] = STATE(5850), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(709)] = { + [sym__call_signature] = STATE(5892), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2392), + [anon_sym_export] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2394), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2394), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_readonly] = ACTIONS(2394), + [anon_sym_get] = ACTIONS(2394), + [anon_sym_set] = ACTIONS(2394), + [anon_sym_declare] = ACTIONS(2394), + [anon_sym_public] = ACTIONS(2394), + [anon_sym_private] = ACTIONS(2394), + [anon_sym_protected] = ACTIONS(2394), + [anon_sym_override] = ACTIONS(2394), + [anon_sym_module] = ACTIONS(2394), + [anon_sym_any] = ACTIONS(2394), + [anon_sym_number] = ACTIONS(2394), + [anon_sym_boolean] = ACTIONS(2394), + [anon_sym_string] = ACTIONS(2394), + [anon_sym_symbol] = ACTIONS(2394), + [anon_sym_object] = ACTIONS(2394), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(710)] = { + [sym__call_signature] = STATE(5850), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2398), + [anon_sym_export] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_readonly] = ACTIONS(2400), + [anon_sym_get] = ACTIONS(2400), + [anon_sym_set] = ACTIONS(2400), + [anon_sym_declare] = ACTIONS(2400), + [anon_sym_public] = ACTIONS(2400), + [anon_sym_private] = ACTIONS(2400), + [anon_sym_protected] = ACTIONS(2400), + [anon_sym_override] = ACTIONS(2400), + [anon_sym_module] = ACTIONS(2400), + [anon_sym_any] = ACTIONS(2400), + [anon_sym_number] = ACTIONS(2400), + [anon_sym_boolean] = ACTIONS(2400), + [anon_sym_string] = ACTIONS(2400), + [anon_sym_symbol] = ACTIONS(2400), + [anon_sym_object] = ACTIONS(2400), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(711)] = { + [sym__call_signature] = STATE(5793), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_readonly] = ACTIONS(2406), + [anon_sym_get] = ACTIONS(2406), + [anon_sym_set] = ACTIONS(2406), + [anon_sym_declare] = ACTIONS(2406), + [anon_sym_public] = ACTIONS(2406), + [anon_sym_private] = ACTIONS(2406), + [anon_sym_protected] = ACTIONS(2406), + [anon_sym_override] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_any] = ACTIONS(2406), + [anon_sym_number] = ACTIONS(2406), + [anon_sym_boolean] = ACTIONS(2406), + [anon_sym_string] = ACTIONS(2406), + [anon_sym_symbol] = ACTIONS(2406), + [anon_sym_object] = ACTIONS(2406), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(712)] = { + [sym__call_signature] = STATE(5860), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2378), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(881), + [anon_sym_of] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2378), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2378), + [anon_sym_readonly] = ACTIONS(2378), + [anon_sym_get] = ACTIONS(2378), + [anon_sym_set] = ACTIONS(2378), + [anon_sym_declare] = ACTIONS(2378), + [anon_sym_public] = ACTIONS(2378), + [anon_sym_private] = ACTIONS(2378), + [anon_sym_protected] = ACTIONS(2378), + [anon_sym_override] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_any] = ACTIONS(2378), + [anon_sym_number] = ACTIONS(2378), + [anon_sym_boolean] = ACTIONS(2378), + [anon_sym_string] = ACTIONS(2378), + [anon_sym_symbol] = ACTIONS(2378), + [anon_sym_object] = ACTIONS(2378), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(713)] = { + [sym__call_signature] = STATE(5793), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_readonly] = ACTIONS(2406), + [anon_sym_get] = ACTIONS(2406), + [anon_sym_set] = ACTIONS(2406), + [anon_sym_declare] = ACTIONS(2406), + [anon_sym_public] = ACTIONS(2406), + [anon_sym_private] = ACTIONS(2406), + [anon_sym_protected] = ACTIONS(2406), + [anon_sym_override] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_any] = ACTIONS(2406), + [anon_sym_number] = ACTIONS(2406), + [anon_sym_boolean] = ACTIONS(2406), + [anon_sym_string] = ACTIONS(2406), + [anon_sym_symbol] = ACTIONS(2406), + [anon_sym_object] = ACTIONS(2406), + [anon_sym_satisfies] = ACTIONS(120), + [anon_sym_implements] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(714)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(715)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(716)] = { + [sym_catch_clause] = STATE(744), + [sym_finally_clause] = STATE(904), + [ts_builtin_sym_end] = ACTIONS(2412), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2412), + [anon_sym_typeof] = ACTIONS(2414), + [anon_sym_import] = ACTIONS(2414), + [anon_sym_with] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_await] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_debugger] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_throw] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2414), + [anon_sym_catch] = ACTIONS(2416), + [anon_sym_finally] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_class] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2412), + [anon_sym_void] = ACTIONS(2414), + [anon_sym_delete] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2412), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2412), + [sym_number] = ACTIONS(2412), + [sym_private_property_identifier] = ACTIONS(2412), + [sym_this] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_undefined] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_abstract] = ACTIONS(2414), + [anon_sym_interface] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(717)] = { + [sym__call_signature] = STATE(5616), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(718)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(719)] = { + [sym__call_signature] = STATE(5937), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(909), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2426), + [anon_sym_readonly] = ACTIONS(2426), + [anon_sym_get] = ACTIONS(2426), + [anon_sym_set] = ACTIONS(2426), + [anon_sym_declare] = ACTIONS(2426), + [anon_sym_public] = ACTIONS(2426), + [anon_sym_private] = ACTIONS(2426), + [anon_sym_protected] = ACTIONS(2426), + [anon_sym_override] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_any] = ACTIONS(2426), + [anon_sym_number] = ACTIONS(2426), + [anon_sym_boolean] = ACTIONS(2426), + [anon_sym_string] = ACTIONS(2426), + [anon_sym_symbol] = ACTIONS(2426), + [anon_sym_object] = ACTIONS(2426), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(720)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_catch] = ACTIONS(1781), + [anon_sym_finally] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym__automatic_semicolon] = ACTIONS(2428), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(721)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(722)] = { + [sym__call_signature] = STATE(5616), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(723)] = { + [sym__call_signature] = STATE(5616), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(724)] = { + [sym__call_signature] = STATE(5616), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2286), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(725)] = { + [sym__call_signature] = STATE(5616), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2420), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(947), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(726)] = { + [sym__call_signature] = STATE(5937), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2424), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2426), + [anon_sym_readonly] = ACTIONS(2426), + [anon_sym_get] = ACTIONS(2426), + [anon_sym_set] = ACTIONS(2426), + [anon_sym_declare] = ACTIONS(2426), + [anon_sym_public] = ACTIONS(2426), + [anon_sym_private] = ACTIONS(2426), + [anon_sym_protected] = ACTIONS(2426), + [anon_sym_override] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_any] = ACTIONS(2426), + [anon_sym_number] = ACTIONS(2426), + [anon_sym_boolean] = ACTIONS(2426), + [anon_sym_string] = ACTIONS(2426), + [anon_sym_symbol] = ACTIONS(2426), + [anon_sym_object] = ACTIONS(2426), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(727)] = { + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1673), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_COMMA] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_typeof] = ACTIONS(1673), + [anon_sym_import] = ACTIONS(1673), + [anon_sym_with] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_await] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_debugger] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_throw] = ACTIONS(1673), + [anon_sym_case] = ACTIONS(1673), + [anon_sym_catch] = ACTIONS(1673), + [anon_sym_finally] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_class] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_function] = ACTIONS(1673), + [anon_sym_new] = ACTIONS(1673), + [anon_sym_using] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_delete] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [sym_private_property_identifier] = ACTIONS(1671), + [sym_this] = ACTIONS(1673), + [sym_super] = ACTIONS(1673), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [sym_null] = ACTIONS(1673), + [sym_undefined] = ACTIONS(1673), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_get] = ACTIONS(1673), + [anon_sym_set] = ACTIONS(1673), + [anon_sym_declare] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1673), + [anon_sym_private] = ACTIONS(1673), + [anon_sym_protected] = ACTIONS(1673), + [anon_sym_override] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_number] = ACTIONS(1673), + [anon_sym_boolean] = ACTIONS(1673), + [anon_sym_string] = ACTIONS(1673), + [anon_sym_symbol] = ACTIONS(1673), + [anon_sym_object] = ACTIONS(1673), + [anon_sym_abstract] = ACTIONS(1673), + [anon_sym_interface] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [sym__automatic_semicolon] = ACTIONS(1681), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(728)] = { + [sym__call_signature] = STATE(5955), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(955), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2434), + [anon_sym_readonly] = ACTIONS(2434), + [anon_sym_get] = ACTIONS(2434), + [anon_sym_set] = ACTIONS(2434), + [anon_sym_declare] = ACTIONS(2434), + [anon_sym_public] = ACTIONS(2434), + [anon_sym_private] = ACTIONS(2434), + [anon_sym_protected] = ACTIONS(2434), + [anon_sym_override] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_any] = ACTIONS(2434), + [anon_sym_number] = ACTIONS(2434), + [anon_sym_boolean] = ACTIONS(2434), + [anon_sym_string] = ACTIONS(2434), + [anon_sym_symbol] = ACTIONS(2434), + [anon_sym_object] = ACTIONS(2434), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(729)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(730)] = { + [sym__call_signature] = STATE(5777), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2408), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(731)] = { + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_catch] = ACTIONS(1791), + [anon_sym_finally] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(732)] = { + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_namespace] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_typeof] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_with] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_await] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_debugger] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_void] = ACTIONS(1787), + [anon_sym_delete] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1785), + [sym_number] = ACTIONS(1785), + [sym_private_property_identifier] = ACTIONS(1785), + [sym_this] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_null] = ACTIONS(1787), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_readonly] = ACTIONS(1787), + [anon_sym_get] = ACTIONS(1787), + [anon_sym_set] = ACTIONS(1787), + [anon_sym_declare] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_protected] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_module] = ACTIONS(1787), + [anon_sym_any] = ACTIONS(1787), + [anon_sym_number] = ACTIONS(1787), + [anon_sym_boolean] = ACTIONS(1787), + [anon_sym_string] = ACTIONS(1787), + [anon_sym_symbol] = ACTIONS(1787), + [anon_sym_object] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_PIPE_RBRACE] = ACTIONS(1785), + [sym__automatic_semicolon] = ACTIONS(1785), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(733)] = { + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_namespace] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_typeof] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_var] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_debugger] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_case] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(1795), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_void] = ACTIONS(1795), + [anon_sym_delete] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_number] = ACTIONS(1793), + [sym_private_property_identifier] = ACTIONS(1793), + [sym_this] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_null] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_readonly] = ACTIONS(1795), + [anon_sym_get] = ACTIONS(1795), + [anon_sym_set] = ACTIONS(1795), + [anon_sym_declare] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_private] = ACTIONS(1795), + [anon_sym_protected] = ACTIONS(1795), + [anon_sym_override] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_any] = ACTIONS(1795), + [anon_sym_number] = ACTIONS(1795), + [anon_sym_boolean] = ACTIONS(1795), + [anon_sym_string] = ACTIONS(1795), + [anon_sym_symbol] = ACTIONS(1795), + [anon_sym_object] = ACTIONS(1795), + [anon_sym_abstract] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [anon_sym_PIPE_RBRACE] = ACTIONS(1793), + [sym__automatic_semicolon] = ACTIONS(1793), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(734)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_catch] = ACTIONS(1781), + [anon_sym_finally] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(735)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_PIPE_RBRACE] = ACTIONS(1779), + [sym__automatic_semicolon] = ACTIONS(1779), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(736)] = { + [sym__call_signature] = STATE(5955), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2434), + [anon_sym_readonly] = ACTIONS(2434), + [anon_sym_get] = ACTIONS(2434), + [anon_sym_set] = ACTIONS(2434), + [anon_sym_declare] = ACTIONS(2434), + [anon_sym_public] = ACTIONS(2434), + [anon_sym_private] = ACTIONS(2434), + [anon_sym_protected] = ACTIONS(2434), + [anon_sym_override] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_any] = ACTIONS(2434), + [anon_sym_number] = ACTIONS(2434), + [anon_sym_boolean] = ACTIONS(2434), + [anon_sym_string] = ACTIONS(2434), + [anon_sym_symbol] = ACTIONS(2434), + [anon_sym_object] = ACTIONS(2434), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(737)] = { + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_identifier] = ACTIONS(1673), + [anon_sym_export] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_type] = ACTIONS(1673), + [anon_sym_namespace] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1671), + [anon_sym_COMMA] = ACTIONS(1671), + [anon_sym_RBRACE] = ACTIONS(1671), + [anon_sym_typeof] = ACTIONS(1673), + [anon_sym_import] = ACTIONS(1673), + [anon_sym_with] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_let] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_else] = ACTIONS(1673), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_await] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_try] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_debugger] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_throw] = ACTIONS(1673), + [anon_sym_case] = ACTIONS(1673), + [anon_sym_yield] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_class] = ACTIONS(1673), + [anon_sym_async] = ACTIONS(1673), + [anon_sym_function] = ACTIONS(1673), + [anon_sym_new] = ACTIONS(1673), + [anon_sym_using] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_SLASH] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_delete] = ACTIONS(1673), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_number] = ACTIONS(1671), + [sym_private_property_identifier] = ACTIONS(1671), + [sym_this] = ACTIONS(1673), + [sym_super] = ACTIONS(1673), + [sym_true] = ACTIONS(1673), + [sym_false] = ACTIONS(1673), + [sym_null] = ACTIONS(1673), + [sym_undefined] = ACTIONS(1673), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_get] = ACTIONS(1673), + [anon_sym_set] = ACTIONS(1673), + [anon_sym_declare] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1673), + [anon_sym_private] = ACTIONS(1673), + [anon_sym_protected] = ACTIONS(1673), + [anon_sym_override] = ACTIONS(1673), + [anon_sym_module] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_number] = ACTIONS(1673), + [anon_sym_boolean] = ACTIONS(1673), + [anon_sym_string] = ACTIONS(1673), + [anon_sym_symbol] = ACTIONS(1673), + [anon_sym_object] = ACTIONS(1673), + [anon_sym_abstract] = ACTIONS(1673), + [anon_sym_interface] = ACTIONS(1673), + [anon_sym_enum] = ACTIONS(1673), + [anon_sym_PIPE_RBRACE] = ACTIONS(1671), + [sym__automatic_semicolon] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(738)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(881), + [anon_sym_of] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(739)] = { + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_PIPE_RBRACE] = ACTIONS(1789), + [sym__automatic_semicolon] = ACTIONS(1789), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(740)] = { + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [anon_sym_PIPE_RBRACE] = ACTIONS(1779), + [sym__automatic_semicolon] = ACTIONS(2438), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(741)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(742)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(743)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(744)] = { + [sym_finally_clause] = STATE(871), + [ts_builtin_sym_end] = ACTIONS(2440), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2442), + [anon_sym_import] = ACTIONS(2442), + [anon_sym_with] = ACTIONS(2442), + [anon_sym_var] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_switch] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_await] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_debugger] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_throw] = ACTIONS(2442), + [anon_sym_case] = ACTIONS(2442), + [anon_sym_finally] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_using] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2440), + [anon_sym_void] = ACTIONS(2442), + [anon_sym_delete] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_number] = ACTIONS(2440), + [sym_private_property_identifier] = ACTIONS(2440), + [sym_this] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_true] = ACTIONS(2442), + [sym_false] = ACTIONS(2442), + [sym_null] = ACTIONS(2442), + [sym_undefined] = ACTIONS(2442), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2442), + [anon_sym_readonly] = ACTIONS(2442), + [anon_sym_get] = ACTIONS(2442), + [anon_sym_set] = ACTIONS(2442), + [anon_sym_declare] = ACTIONS(2442), + [anon_sym_public] = ACTIONS(2442), + [anon_sym_private] = ACTIONS(2442), + [anon_sym_protected] = ACTIONS(2442), + [anon_sym_override] = ACTIONS(2442), + [anon_sym_module] = ACTIONS(2442), + [anon_sym_any] = ACTIONS(2442), + [anon_sym_number] = ACTIONS(2442), + [anon_sym_boolean] = ACTIONS(2442), + [anon_sym_string] = ACTIONS(2442), + [anon_sym_symbol] = ACTIONS(2442), + [anon_sym_object] = ACTIONS(2442), + [anon_sym_abstract] = ACTIONS(2442), + [anon_sym_interface] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(745)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1025), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(746)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(747)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(748)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(749)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(750)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(751)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(752)] = { + [sym_statement_block] = STATE(867), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(2446), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(753)] = { + [sym__call_signature] = STATE(5663), + [sym_formal_parameters] = STATE(3954), + [sym_type_parameters] = STATE(5509), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_as] = ACTIONS(120), + [anon_sym_namespace] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_function] = ACTIONS(2383), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2390), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_readonly] = ACTIONS(2390), + [anon_sym_get] = ACTIONS(2390), + [anon_sym_set] = ACTIONS(2390), + [anon_sym_declare] = ACTIONS(2390), + [anon_sym_public] = ACTIONS(2390), + [anon_sym_private] = ACTIONS(2390), + [anon_sym_protected] = ACTIONS(2390), + [anon_sym_override] = ACTIONS(2390), + [anon_sym_module] = ACTIONS(2390), + [anon_sym_any] = ACTIONS(2390), + [anon_sym_number] = ACTIONS(2390), + [anon_sym_boolean] = ACTIONS(2390), + [anon_sym_string] = ACTIONS(2390), + [anon_sym_symbol] = ACTIONS(2390), + [anon_sym_object] = ACTIONS(2390), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(754)] = { + [sym_statement_block] = STATE(867), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(755)] = { + [ts_builtin_sym_end] = ACTIONS(2450), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_with] = ACTIONS(2452), + [anon_sym_var] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_switch] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_await] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_do] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_debugger] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_throw] = ACTIONS(2452), + [anon_sym_case] = ACTIONS(2452), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_using] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_void] = ACTIONS(2452), + [anon_sym_delete] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [sym_this] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_true] = ACTIONS(2452), + [sym_false] = ACTIONS(2452), + [sym_null] = ACTIONS(2452), + [sym_undefined] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_object] = ACTIONS(2452), + [anon_sym_abstract] = ACTIONS(2452), + [anon_sym_interface] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), + [sym__automatic_semicolon] = ACTIONS(2454), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(756)] = { + [ts_builtin_sym_end] = ACTIONS(2456), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(757)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4688), + [sym_optional_tuple_parameter] = STATE(4688), + [sym_optional_type] = STATE(4688), + [sym_rest_type] = STATE(4688), + [sym__tuple_type_member] = STATE(4688), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(758)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4866), + [sym_optional_tuple_parameter] = STATE(4866), + [sym_optional_type] = STATE(4866), + [sym_rest_type] = STATE(4866), + [sym__tuple_type_member] = STATE(4866), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2472), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(759)] = { + [sym_statement_block] = STATE(867), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1667), + [anon_sym_export] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1667), + [anon_sym_type] = ACTIONS(1667), + [anon_sym_namespace] = ACTIONS(1667), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_typeof] = ACTIONS(1667), + [anon_sym_import] = ACTIONS(1667), + [anon_sym_with] = ACTIONS(1667), + [anon_sym_var] = ACTIONS(1667), + [anon_sym_let] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_else] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1667), + [anon_sym_for] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1667), + [anon_sym_while] = ACTIONS(1667), + [anon_sym_do] = ACTIONS(1667), + [anon_sym_try] = ACTIONS(1667), + [anon_sym_break] = ACTIONS(1667), + [anon_sym_continue] = ACTIONS(1667), + [anon_sym_debugger] = ACTIONS(1667), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_throw] = ACTIONS(1667), + [anon_sym_case] = ACTIONS(1667), + [anon_sym_yield] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1665), + [anon_sym_DQUOTE] = ACTIONS(1665), + [anon_sym_SQUOTE] = ACTIONS(1665), + [anon_sym_class] = ACTIONS(1667), + [anon_sym_async] = ACTIONS(1667), + [anon_sym_function] = ACTIONS(1667), + [anon_sym_new] = ACTIONS(1667), + [anon_sym_using] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1667), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_LT] = ACTIONS(1665), + [anon_sym_TILDE] = ACTIONS(1665), + [anon_sym_void] = ACTIONS(1667), + [anon_sym_delete] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1665), + [anon_sym_DASH_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1667), + [anon_sym_AT] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1667), + [anon_sym_readonly] = ACTIONS(1667), + [anon_sym_get] = ACTIONS(1667), + [anon_sym_set] = ACTIONS(1667), + [anon_sym_declare] = ACTIONS(1667), + [anon_sym_public] = ACTIONS(1667), + [anon_sym_private] = ACTIONS(1667), + [anon_sym_protected] = ACTIONS(1667), + [anon_sym_override] = ACTIONS(1667), + [anon_sym_module] = ACTIONS(1667), + [anon_sym_any] = ACTIONS(1667), + [anon_sym_number] = ACTIONS(1667), + [anon_sym_boolean] = ACTIONS(1667), + [anon_sym_string] = ACTIONS(1667), + [anon_sym_symbol] = ACTIONS(1667), + [anon_sym_object] = ACTIONS(1667), + [anon_sym_abstract] = ACTIONS(1667), + [anon_sym_interface] = ACTIONS(1667), + [anon_sym_enum] = ACTIONS(1667), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(760)] = { + [sym_else_clause] = STATE(861), + [ts_builtin_sym_end] = ACTIONS(2476), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2476), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2476), + [sym_number] = ACTIONS(2476), + [sym_private_property_identifier] = ACTIONS(2476), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(761)] = { + [ts_builtin_sym_end] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_namespace] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_typeof] = ACTIONS(1749), + [anon_sym_import] = ACTIONS(1749), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_var] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_switch] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_debugger] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_throw] = ACTIONS(1749), + [anon_sym_case] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1747), + [anon_sym_class] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_function] = ACTIONS(1749), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_using] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_SLASH] = ACTIONS(1749), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1747), + [anon_sym_void] = ACTIONS(1749), + [anon_sym_delete] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [sym_private_property_identifier] = ACTIONS(1747), + [sym_this] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), + [sym_null] = ACTIONS(1749), + [sym_undefined] = ACTIONS(1749), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_static] = ACTIONS(1749), + [anon_sym_readonly] = ACTIONS(1749), + [anon_sym_get] = ACTIONS(1749), + [anon_sym_set] = ACTIONS(1749), + [anon_sym_declare] = ACTIONS(1749), + [anon_sym_public] = ACTIONS(1749), + [anon_sym_private] = ACTIONS(1749), + [anon_sym_protected] = ACTIONS(1749), + [anon_sym_override] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_any] = ACTIONS(1749), + [anon_sym_number] = ACTIONS(1749), + [anon_sym_boolean] = ACTIONS(1749), + [anon_sym_string] = ACTIONS(1749), + [anon_sym_symbol] = ACTIONS(1749), + [anon_sym_object] = ACTIONS(1749), + [anon_sym_abstract] = ACTIONS(1749), + [anon_sym_interface] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [sym__automatic_semicolon] = ACTIONS(1755), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(762)] = { + [ts_builtin_sym_end] = ACTIONS(1713), + [sym_identifier] = ACTIONS(1715), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_type] = ACTIONS(1715), + [anon_sym_namespace] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_typeof] = ACTIONS(1715), + [anon_sym_import] = ACTIONS(1715), + [anon_sym_with] = ACTIONS(1715), + [anon_sym_var] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_switch] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_await] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_debugger] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_throw] = ACTIONS(1715), + [anon_sym_case] = ACTIONS(1715), + [anon_sym_yield] = ACTIONS(1715), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_DQUOTE] = ACTIONS(1713), + [anon_sym_SQUOTE] = ACTIONS(1713), + [anon_sym_class] = ACTIONS(1715), + [anon_sym_async] = ACTIONS(1715), + [anon_sym_function] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_using] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1715), + [anon_sym_delete] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1713), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1713), + [sym_number] = ACTIONS(1713), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(1715), + [sym_super] = ACTIONS(1715), + [sym_true] = ACTIONS(1715), + [sym_false] = ACTIONS(1715), + [sym_null] = ACTIONS(1715), + [sym_undefined] = ACTIONS(1715), + [anon_sym_AT] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1715), + [anon_sym_readonly] = ACTIONS(1715), + [anon_sym_get] = ACTIONS(1715), + [anon_sym_set] = ACTIONS(1715), + [anon_sym_declare] = ACTIONS(1715), + [anon_sym_public] = ACTIONS(1715), + [anon_sym_private] = ACTIONS(1715), + [anon_sym_protected] = ACTIONS(1715), + [anon_sym_override] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_any] = ACTIONS(1715), + [anon_sym_number] = ACTIONS(1715), + [anon_sym_boolean] = ACTIONS(1715), + [anon_sym_string] = ACTIONS(1715), + [anon_sym_symbol] = ACTIONS(1715), + [anon_sym_object] = ACTIONS(1715), + [anon_sym_abstract] = ACTIONS(1715), + [anon_sym_interface] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1715), + [sym__automatic_semicolon] = ACTIONS(1721), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(763)] = { + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_typeof] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_with] = ACTIONS(1823), + [anon_sym_var] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_switch] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_debugger] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_throw] = ACTIONS(1823), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1821), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_void] = ACTIONS(1823), + [anon_sym_delete] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1821), + [sym_number] = ACTIONS(1821), + [sym_private_property_identifier] = ACTIONS(1821), + [sym_this] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_true] = ACTIONS(1823), + [sym_false] = ACTIONS(1823), + [sym_null] = ACTIONS(1823), + [sym_undefined] = ACTIONS(1823), + [anon_sym_AT] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_readonly] = ACTIONS(1823), + [anon_sym_get] = ACTIONS(1823), + [anon_sym_set] = ACTIONS(1823), + [anon_sym_declare] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_private] = ACTIONS(1823), + [anon_sym_protected] = ACTIONS(1823), + [anon_sym_override] = ACTIONS(1823), + [anon_sym_module] = ACTIONS(1823), + [anon_sym_any] = ACTIONS(1823), + [anon_sym_number] = ACTIONS(1823), + [anon_sym_boolean] = ACTIONS(1823), + [anon_sym_string] = ACTIONS(1823), + [anon_sym_symbol] = ACTIONS(1823), + [anon_sym_object] = ACTIONS(1823), + [anon_sym_abstract] = ACTIONS(1823), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1829), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(764)] = { + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_typeof] = ACTIONS(1853), + [anon_sym_import] = ACTIONS(1853), + [anon_sym_with] = ACTIONS(1853), + [anon_sym_var] = ACTIONS(1853), + [anon_sym_let] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1851), + [anon_sym_await] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1853), + [anon_sym_do] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_debugger] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_throw] = ACTIONS(1853), + [anon_sym_case] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1853), + [anon_sym_async] = ACTIONS(1853), + [anon_sym_function] = ACTIONS(1853), + [anon_sym_new] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_void] = ACTIONS(1853), + [anon_sym_delete] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1851), + [sym_number] = ACTIONS(1851), + [sym_private_property_identifier] = ACTIONS(1851), + [sym_this] = ACTIONS(1853), + [sym_super] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_null] = ACTIONS(1853), + [sym_undefined] = ACTIONS(1853), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1853), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1853), + [anon_sym_set] = ACTIONS(1853), + [anon_sym_declare] = ACTIONS(1853), + [anon_sym_public] = ACTIONS(1853), + [anon_sym_private] = ACTIONS(1853), + [anon_sym_protected] = ACTIONS(1853), + [anon_sym_override] = ACTIONS(1853), + [anon_sym_module] = ACTIONS(1853), + [anon_sym_any] = ACTIONS(1853), + [anon_sym_number] = ACTIONS(1853), + [anon_sym_boolean] = ACTIONS(1853), + [anon_sym_string] = ACTIONS(1853), + [anon_sym_symbol] = ACTIONS(1853), + [anon_sym_object] = ACTIONS(1853), + [anon_sym_abstract] = ACTIONS(1853), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [sym__automatic_semicolon] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(765)] = { + [ts_builtin_sym_end] = ACTIONS(1767), + [sym_identifier] = ACTIONS(1769), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_type] = ACTIONS(1769), + [anon_sym_namespace] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1767), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_typeof] = ACTIONS(1769), + [anon_sym_import] = ACTIONS(1769), + [anon_sym_with] = ACTIONS(1769), + [anon_sym_var] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_switch] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_await] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_debugger] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_throw] = ACTIONS(1769), + [anon_sym_case] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1767), + [anon_sym_DOT] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1767), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_class] = ACTIONS(1769), + [anon_sym_async] = ACTIONS(1769), + [anon_sym_function] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1769), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1767), + [anon_sym_void] = ACTIONS(1769), + [anon_sym_delete] = ACTIONS(1769), + [anon_sym_PLUS_PLUS] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1767), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1767), + [sym_number] = ACTIONS(1767), + [sym_private_property_identifier] = ACTIONS(1767), + [sym_this] = ACTIONS(1769), + [sym_super] = ACTIONS(1769), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_null] = ACTIONS(1769), + [sym_undefined] = ACTIONS(1769), + [anon_sym_AT] = ACTIONS(1767), + [anon_sym_static] = ACTIONS(1769), + [anon_sym_readonly] = ACTIONS(1769), + [anon_sym_get] = ACTIONS(1769), + [anon_sym_set] = ACTIONS(1769), + [anon_sym_declare] = ACTIONS(1769), + [anon_sym_public] = ACTIONS(1769), + [anon_sym_private] = ACTIONS(1769), + [anon_sym_protected] = ACTIONS(1769), + [anon_sym_override] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_any] = ACTIONS(1769), + [anon_sym_number] = ACTIONS(1769), + [anon_sym_boolean] = ACTIONS(1769), + [anon_sym_string] = ACTIONS(1769), + [anon_sym_symbol] = ACTIONS(1769), + [anon_sym_object] = ACTIONS(1769), + [anon_sym_abstract] = ACTIONS(1769), + [anon_sym_interface] = ACTIONS(1769), + [anon_sym_enum] = ACTIONS(1769), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(766)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5214), + [sym_optional_tuple_parameter] = STATE(5214), + [sym_optional_type] = STATE(5214), + [sym_rest_type] = STATE(5214), + [sym__tuple_type_member] = STATE(5214), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(767)] = { + [ts_builtin_sym_end] = ACTIONS(2486), + [sym_identifier] = ACTIONS(2488), + [anon_sym_export] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2488), + [anon_sym_type] = ACTIONS(2488), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_typeof] = ACTIONS(2488), + [anon_sym_import] = ACTIONS(2488), + [anon_sym_with] = ACTIONS(2488), + [anon_sym_var] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_switch] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_await] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_do] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_debugger] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_throw] = ACTIONS(2488), + [anon_sym_case] = ACTIONS(2488), + [anon_sym_finally] = ACTIONS(2488), + [anon_sym_yield] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_class] = ACTIONS(2488), + [anon_sym_async] = ACTIONS(2488), + [anon_sym_function] = ACTIONS(2488), + [anon_sym_new] = ACTIONS(2488), + [anon_sym_using] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_SLASH] = ACTIONS(2488), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_TILDE] = ACTIONS(2486), + [anon_sym_void] = ACTIONS(2488), + [anon_sym_delete] = ACTIONS(2488), + [anon_sym_PLUS_PLUS] = ACTIONS(2486), + [anon_sym_DASH_DASH] = ACTIONS(2486), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2486), + [sym_number] = ACTIONS(2486), + [sym_private_property_identifier] = ACTIONS(2486), + [sym_this] = ACTIONS(2488), + [sym_super] = ACTIONS(2488), + [sym_true] = ACTIONS(2488), + [sym_false] = ACTIONS(2488), + [sym_null] = ACTIONS(2488), + [sym_undefined] = ACTIONS(2488), + [anon_sym_AT] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_readonly] = ACTIONS(2488), + [anon_sym_get] = ACTIONS(2488), + [anon_sym_set] = ACTIONS(2488), + [anon_sym_declare] = ACTIONS(2488), + [anon_sym_public] = ACTIONS(2488), + [anon_sym_private] = ACTIONS(2488), + [anon_sym_protected] = ACTIONS(2488), + [anon_sym_override] = ACTIONS(2488), + [anon_sym_module] = ACTIONS(2488), + [anon_sym_any] = ACTIONS(2488), + [anon_sym_number] = ACTIONS(2488), + [anon_sym_boolean] = ACTIONS(2488), + [anon_sym_string] = ACTIONS(2488), + [anon_sym_symbol] = ACTIONS(2488), + [anon_sym_object] = ACTIONS(2488), + [anon_sym_abstract] = ACTIONS(2488), + [anon_sym_interface] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(768)] = { + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_default] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_namespace] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_typeof] = ACTIONS(1843), + [anon_sym_import] = ACTIONS(1843), + [anon_sym_with] = ACTIONS(1843), + [anon_sym_var] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_switch] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_await] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_debugger] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_throw] = ACTIONS(1843), + [anon_sym_case] = ACTIONS(1843), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_class] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_function] = ACTIONS(1843), + [anon_sym_new] = ACTIONS(1843), + [anon_sym_using] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_TILDE] = ACTIONS(1841), + [anon_sym_void] = ACTIONS(1843), + [anon_sym_delete] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1841), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1841), + [sym_number] = ACTIONS(1841), + [sym_private_property_identifier] = ACTIONS(1841), + [sym_this] = ACTIONS(1843), + [sym_super] = ACTIONS(1843), + [sym_true] = ACTIONS(1843), + [sym_false] = ACTIONS(1843), + [sym_null] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_readonly] = ACTIONS(1843), + [anon_sym_get] = ACTIONS(1843), + [anon_sym_set] = ACTIONS(1843), + [anon_sym_declare] = ACTIONS(1843), + [anon_sym_public] = ACTIONS(1843), + [anon_sym_private] = ACTIONS(1843), + [anon_sym_protected] = ACTIONS(1843), + [anon_sym_override] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_any] = ACTIONS(1843), + [anon_sym_number] = ACTIONS(1843), + [anon_sym_boolean] = ACTIONS(1843), + [anon_sym_string] = ACTIONS(1843), + [anon_sym_symbol] = ACTIONS(1843), + [anon_sym_object] = ACTIONS(1843), + [anon_sym_abstract] = ACTIONS(1843), + [anon_sym_interface] = ACTIONS(1843), + [anon_sym_enum] = ACTIONS(1843), + [sym__automatic_semicolon] = ACTIONS(1849), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(769)] = { + [ts_builtin_sym_end] = ACTIONS(2490), + [sym_identifier] = ACTIONS(2492), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_namespace] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_typeof] = ACTIONS(2492), + [anon_sym_import] = ACTIONS(2492), + [anon_sym_with] = ACTIONS(2492), + [anon_sym_var] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_switch] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_RPAREN] = ACTIONS(2490), + [anon_sym_await] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_do] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_debugger] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_throw] = ACTIONS(2492), + [anon_sym_case] = ACTIONS(2492), + [anon_sym_yield] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2492), + [anon_sym_async] = ACTIONS(2492), + [anon_sym_function] = ACTIONS(2492), + [anon_sym_new] = ACTIONS(2492), + [anon_sym_using] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_SLASH] = ACTIONS(2492), + [anon_sym_LT] = ACTIONS(2490), + [anon_sym_TILDE] = ACTIONS(2490), + [anon_sym_void] = ACTIONS(2492), + [anon_sym_delete] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2490), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2490), + [sym_number] = ACTIONS(2490), + [sym_private_property_identifier] = ACTIONS(2490), + [sym_this] = ACTIONS(2492), + [sym_super] = ACTIONS(2492), + [sym_true] = ACTIONS(2492), + [sym_false] = ACTIONS(2492), + [sym_null] = ACTIONS(2492), + [sym_undefined] = ACTIONS(2492), + [anon_sym_AT] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_readonly] = ACTIONS(2492), + [anon_sym_get] = ACTIONS(2492), + [anon_sym_set] = ACTIONS(2492), + [anon_sym_declare] = ACTIONS(2492), + [anon_sym_public] = ACTIONS(2492), + [anon_sym_private] = ACTIONS(2492), + [anon_sym_protected] = ACTIONS(2492), + [anon_sym_override] = ACTIONS(2492), + [anon_sym_module] = ACTIONS(2492), + [anon_sym_any] = ACTIONS(2492), + [anon_sym_number] = ACTIONS(2492), + [anon_sym_boolean] = ACTIONS(2492), + [anon_sym_string] = ACTIONS(2492), + [anon_sym_symbol] = ACTIONS(2492), + [anon_sym_object] = ACTIONS(2492), + [anon_sym_abstract] = ACTIONS(2492), + [anon_sym_interface] = ACTIONS(2492), + [anon_sym_enum] = ACTIONS(2492), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(770)] = { + [ts_builtin_sym_end] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1757), + [anon_sym_typeof] = ACTIONS(1759), + [anon_sym_import] = ACTIONS(1759), + [anon_sym_with] = ACTIONS(1759), + [anon_sym_var] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_else] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_switch] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_await] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_debugger] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_throw] = ACTIONS(1759), + [anon_sym_case] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_class] = ACTIONS(1759), + [anon_sym_async] = ACTIONS(1759), + [anon_sym_function] = ACTIONS(1759), + [anon_sym_new] = ACTIONS(1759), + [anon_sym_using] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_SLASH] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_void] = ACTIONS(1759), + [anon_sym_delete] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1757), + [sym_number] = ACTIONS(1757), + [sym_private_property_identifier] = ACTIONS(1757), + [sym_this] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_null] = ACTIONS(1759), + [sym_undefined] = ACTIONS(1759), + [anon_sym_AT] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(1759), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(1765), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(771)] = { + [ts_builtin_sym_end] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2496), + [anon_sym_export] = ACTIONS(2496), + [anon_sym_default] = ACTIONS(2496), + [anon_sym_type] = ACTIONS(2496), + [anon_sym_namespace] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_typeof] = ACTIONS(2496), + [anon_sym_import] = ACTIONS(2496), + [anon_sym_with] = ACTIONS(2496), + [anon_sym_var] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_switch] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_await] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_debugger] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_throw] = ACTIONS(2496), + [anon_sym_case] = ACTIONS(2496), + [anon_sym_finally] = ACTIONS(2496), + [anon_sym_yield] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2494), + [anon_sym_class] = ACTIONS(2496), + [anon_sym_async] = ACTIONS(2496), + [anon_sym_function] = ACTIONS(2496), + [anon_sym_new] = ACTIONS(2496), + [anon_sym_using] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_SLASH] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(2494), + [anon_sym_TILDE] = ACTIONS(2494), + [anon_sym_void] = ACTIONS(2496), + [anon_sym_delete] = ACTIONS(2496), + [anon_sym_PLUS_PLUS] = ACTIONS(2494), + [anon_sym_DASH_DASH] = ACTIONS(2494), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2494), + [sym_number] = ACTIONS(2494), + [sym_private_property_identifier] = ACTIONS(2494), + [sym_this] = ACTIONS(2496), + [sym_super] = ACTIONS(2496), + [sym_true] = ACTIONS(2496), + [sym_false] = ACTIONS(2496), + [sym_null] = ACTIONS(2496), + [sym_undefined] = ACTIONS(2496), + [anon_sym_AT] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_readonly] = ACTIONS(2496), + [anon_sym_get] = ACTIONS(2496), + [anon_sym_set] = ACTIONS(2496), + [anon_sym_declare] = ACTIONS(2496), + [anon_sym_public] = ACTIONS(2496), + [anon_sym_private] = ACTIONS(2496), + [anon_sym_protected] = ACTIONS(2496), + [anon_sym_override] = ACTIONS(2496), + [anon_sym_module] = ACTIONS(2496), + [anon_sym_any] = ACTIONS(2496), + [anon_sym_number] = ACTIONS(2496), + [anon_sym_boolean] = ACTIONS(2496), + [anon_sym_string] = ACTIONS(2496), + [anon_sym_symbol] = ACTIONS(2496), + [anon_sym_object] = ACTIONS(2496), + [anon_sym_abstract] = ACTIONS(2496), + [anon_sym_interface] = ACTIONS(2496), + [anon_sym_enum] = ACTIONS(2496), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(772)] = { + [ts_builtin_sym_end] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(1813), + [anon_sym_type] = ACTIONS(1813), + [anon_sym_namespace] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_typeof] = ACTIONS(1813), + [anon_sym_import] = ACTIONS(1813), + [anon_sym_with] = ACTIONS(1813), + [anon_sym_var] = ACTIONS(1813), + [anon_sym_let] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_else] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_switch] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_await] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_do] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_debugger] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_throw] = ACTIONS(1813), + [anon_sym_case] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1811), + [anon_sym_SQUOTE] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1813), + [anon_sym_async] = ACTIONS(1813), + [anon_sym_function] = ACTIONS(1813), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_using] = ACTIONS(1813), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_SLASH] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_void] = ACTIONS(1813), + [anon_sym_delete] = ACTIONS(1813), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1811), + [sym_number] = ACTIONS(1811), + [sym_private_property_identifier] = ACTIONS(1811), + [sym_this] = ACTIONS(1813), + [sym_super] = ACTIONS(1813), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_null] = ACTIONS(1813), + [sym_undefined] = ACTIONS(1813), + [anon_sym_AT] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1813), + [anon_sym_readonly] = ACTIONS(1813), + [anon_sym_get] = ACTIONS(1813), + [anon_sym_set] = ACTIONS(1813), + [anon_sym_declare] = ACTIONS(1813), + [anon_sym_public] = ACTIONS(1813), + [anon_sym_private] = ACTIONS(1813), + [anon_sym_protected] = ACTIONS(1813), + [anon_sym_override] = ACTIONS(1813), + [anon_sym_module] = ACTIONS(1813), + [anon_sym_any] = ACTIONS(1813), + [anon_sym_number] = ACTIONS(1813), + [anon_sym_boolean] = ACTIONS(1813), + [anon_sym_string] = ACTIONS(1813), + [anon_sym_symbol] = ACTIONS(1813), + [anon_sym_object] = ACTIONS(1813), + [anon_sym_abstract] = ACTIONS(1813), + [anon_sym_interface] = ACTIONS(1813), + [anon_sym_enum] = ACTIONS(1813), + [sym__automatic_semicolon] = ACTIONS(1819), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(773)] = { + [ts_builtin_sym_end] = ACTIONS(1693), + [sym_identifier] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(1695), + [anon_sym_default] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1695), + [anon_sym_namespace] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_typeof] = ACTIONS(1695), + [anon_sym_import] = ACTIONS(1695), + [anon_sym_with] = ACTIONS(1695), + [anon_sym_var] = ACTIONS(1695), + [anon_sym_let] = ACTIONS(1695), + [anon_sym_const] = ACTIONS(1695), + [anon_sym_BANG] = ACTIONS(1693), + [anon_sym_else] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1695), + [anon_sym_switch] = ACTIONS(1695), + [anon_sym_for] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_await] = ACTIONS(1695), + [anon_sym_while] = ACTIONS(1695), + [anon_sym_do] = ACTIONS(1695), + [anon_sym_try] = ACTIONS(1695), + [anon_sym_break] = ACTIONS(1695), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_debugger] = ACTIONS(1695), + [anon_sym_return] = ACTIONS(1695), + [anon_sym_throw] = ACTIONS(1695), + [anon_sym_case] = ACTIONS(1695), + [anon_sym_yield] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [anon_sym_SQUOTE] = ACTIONS(1693), + [anon_sym_class] = ACTIONS(1695), + [anon_sym_async] = ACTIONS(1695), + [anon_sym_function] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1695), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1695), + [anon_sym_LT] = ACTIONS(1693), + [anon_sym_TILDE] = ACTIONS(1693), + [anon_sym_void] = ACTIONS(1695), + [anon_sym_delete] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1693), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1693), + [sym_number] = ACTIONS(1693), + [sym_private_property_identifier] = ACTIONS(1693), + [sym_this] = ACTIONS(1695), + [sym_super] = ACTIONS(1695), + [sym_true] = ACTIONS(1695), + [sym_false] = ACTIONS(1695), + [sym_null] = ACTIONS(1695), + [sym_undefined] = ACTIONS(1695), + [anon_sym_AT] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1695), + [anon_sym_readonly] = ACTIONS(1695), + [anon_sym_get] = ACTIONS(1695), + [anon_sym_set] = ACTIONS(1695), + [anon_sym_declare] = ACTIONS(1695), + [anon_sym_public] = ACTIONS(1695), + [anon_sym_private] = ACTIONS(1695), + [anon_sym_protected] = ACTIONS(1695), + [anon_sym_override] = ACTIONS(1695), + [anon_sym_module] = ACTIONS(1695), + [anon_sym_any] = ACTIONS(1695), + [anon_sym_number] = ACTIONS(1695), + [anon_sym_boolean] = ACTIONS(1695), + [anon_sym_string] = ACTIONS(1695), + [anon_sym_symbol] = ACTIONS(1695), + [anon_sym_object] = ACTIONS(1695), + [anon_sym_abstract] = ACTIONS(1695), + [anon_sym_interface] = ACTIONS(1695), + [anon_sym_enum] = ACTIONS(1695), + [sym__automatic_semicolon] = ACTIONS(1701), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(774)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4654), + [sym_optional_tuple_parameter] = STATE(4654), + [sym_optional_type] = STATE(4654), + [sym_rest_type] = STATE(4654), + [sym__tuple_type_member] = STATE(4654), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(775)] = { + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1739), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_default] = ACTIONS(1739), + [anon_sym_type] = ACTIONS(1739), + [anon_sym_namespace] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_RBRACE] = ACTIONS(1737), + [anon_sym_typeof] = ACTIONS(1739), + [anon_sym_import] = ACTIONS(1739), + [anon_sym_with] = ACTIONS(1739), + [anon_sym_var] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_else] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_switch] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_await] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_debugger] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_throw] = ACTIONS(1739), + [anon_sym_case] = ACTIONS(1739), + [anon_sym_yield] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1737), + [anon_sym_SQUOTE] = ACTIONS(1737), + [anon_sym_class] = ACTIONS(1739), + [anon_sym_async] = ACTIONS(1739), + [anon_sym_function] = ACTIONS(1739), + [anon_sym_new] = ACTIONS(1739), + [anon_sym_using] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_SLASH] = ACTIONS(1739), + [anon_sym_LT] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1737), + [anon_sym_void] = ACTIONS(1739), + [anon_sym_delete] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1737), + [sym_number] = ACTIONS(1737), + [sym_private_property_identifier] = ACTIONS(1737), + [sym_this] = ACTIONS(1739), + [sym_super] = ACTIONS(1739), + [sym_true] = ACTIONS(1739), + [sym_false] = ACTIONS(1739), + [sym_null] = ACTIONS(1739), + [sym_undefined] = ACTIONS(1739), + [anon_sym_AT] = ACTIONS(1737), + [anon_sym_static] = ACTIONS(1739), + [anon_sym_readonly] = ACTIONS(1739), + [anon_sym_get] = ACTIONS(1739), + [anon_sym_set] = ACTIONS(1739), + [anon_sym_declare] = ACTIONS(1739), + [anon_sym_public] = ACTIONS(1739), + [anon_sym_private] = ACTIONS(1739), + [anon_sym_protected] = ACTIONS(1739), + [anon_sym_override] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_any] = ACTIONS(1739), + [anon_sym_number] = ACTIONS(1739), + [anon_sym_boolean] = ACTIONS(1739), + [anon_sym_string] = ACTIONS(1739), + [anon_sym_symbol] = ACTIONS(1739), + [anon_sym_object] = ACTIONS(1739), + [anon_sym_abstract] = ACTIONS(1739), + [anon_sym_interface] = ACTIONS(1739), + [anon_sym_enum] = ACTIONS(1739), + [sym__automatic_semicolon] = ACTIONS(1745), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(776)] = { + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_namespace] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_typeof] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_with] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_else] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_switch] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_await] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_debugger] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1803), + [anon_sym_case] = ACTIONS(1803), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1801), + [anon_sym_class] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_function] = ACTIONS(1803), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_void] = ACTIONS(1803), + [anon_sym_delete] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1801), + [sym_number] = ACTIONS(1801), + [sym_private_property_identifier] = ACTIONS(1801), + [sym_this] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_null] = ACTIONS(1803), + [sym_undefined] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_readonly] = ACTIONS(1803), + [anon_sym_get] = ACTIONS(1803), + [anon_sym_set] = ACTIONS(1803), + [anon_sym_declare] = ACTIONS(1803), + [anon_sym_public] = ACTIONS(1803), + [anon_sym_private] = ACTIONS(1803), + [anon_sym_protected] = ACTIONS(1803), + [anon_sym_override] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_any] = ACTIONS(1803), + [anon_sym_number] = ACTIONS(1803), + [anon_sym_boolean] = ACTIONS(1803), + [anon_sym_string] = ACTIONS(1803), + [anon_sym_symbol] = ACTIONS(1803), + [anon_sym_object] = ACTIONS(1803), + [anon_sym_abstract] = ACTIONS(1803), + [anon_sym_interface] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [sym__automatic_semicolon] = ACTIONS(1809), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(777)] = { + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_namespace] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_typeof] = ACTIONS(1799), + [anon_sym_import] = ACTIONS(1799), + [anon_sym_with] = ACTIONS(1799), + [anon_sym_var] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_await] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_debugger] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1799), + [anon_sym_case] = ACTIONS(1799), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_function] = ACTIONS(1799), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_using] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_void] = ACTIONS(1799), + [anon_sym_delete] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1797), + [sym_number] = ACTIONS(1797), + [sym_private_property_identifier] = ACTIONS(1797), + [sym_this] = ACTIONS(1799), + [sym_super] = ACTIONS(1799), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_null] = ACTIONS(1799), + [sym_undefined] = ACTIONS(1799), + [anon_sym_AT] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_readonly] = ACTIONS(1799), + [anon_sym_get] = ACTIONS(1799), + [anon_sym_set] = ACTIONS(1799), + [anon_sym_declare] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_private] = ACTIONS(1799), + [anon_sym_protected] = ACTIONS(1799), + [anon_sym_override] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_any] = ACTIONS(1799), + [anon_sym_number] = ACTIONS(1799), + [anon_sym_boolean] = ACTIONS(1799), + [anon_sym_string] = ACTIONS(1799), + [anon_sym_symbol] = ACTIONS(1799), + [anon_sym_object] = ACTIONS(1799), + [anon_sym_abstract] = ACTIONS(1799), + [anon_sym_interface] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(778)] = { + [ts_builtin_sym_end] = ACTIONS(2502), + [sym_identifier] = ACTIONS(2504), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_default] = ACTIONS(2504), + [anon_sym_type] = ACTIONS(2504), + [anon_sym_namespace] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(2504), + [anon_sym_import] = ACTIONS(2504), + [anon_sym_with] = ACTIONS(2504), + [anon_sym_var] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_else] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_switch] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_await] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_debugger] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_throw] = ACTIONS(2504), + [anon_sym_case] = ACTIONS(2504), + [anon_sym_yield] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2502), + [anon_sym_class] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_function] = ACTIONS(2504), + [anon_sym_new] = ACTIONS(2504), + [anon_sym_using] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_TILDE] = ACTIONS(2502), + [anon_sym_void] = ACTIONS(2504), + [anon_sym_delete] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2502), + [sym_number] = ACTIONS(2502), + [sym_private_property_identifier] = ACTIONS(2502), + [sym_this] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_true] = ACTIONS(2504), + [sym_false] = ACTIONS(2504), + [sym_null] = ACTIONS(2504), + [sym_undefined] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2502), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_readonly] = ACTIONS(2504), + [anon_sym_get] = ACTIONS(2504), + [anon_sym_set] = ACTIONS(2504), + [anon_sym_declare] = ACTIONS(2504), + [anon_sym_public] = ACTIONS(2504), + [anon_sym_private] = ACTIONS(2504), + [anon_sym_protected] = ACTIONS(2504), + [anon_sym_override] = ACTIONS(2504), + [anon_sym_module] = ACTIONS(2504), + [anon_sym_any] = ACTIONS(2504), + [anon_sym_number] = ACTIONS(2504), + [anon_sym_boolean] = ACTIONS(2504), + [anon_sym_string] = ACTIONS(2504), + [anon_sym_symbol] = ACTIONS(2504), + [anon_sym_object] = ACTIONS(2504), + [anon_sym_abstract] = ACTIONS(2504), + [anon_sym_interface] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [sym__automatic_semicolon] = ACTIONS(2502), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(779)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(4977), + [sym_optional_tuple_parameter] = STATE(4977), + [sym_optional_type] = STATE(4977), + [sym_rest_type] = STATE(4977), + [sym__tuple_type_member] = STATE(4977), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(2506), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(780)] = { + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_namespace] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_typeof] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1833), + [anon_sym_with] = ACTIONS(1833), + [anon_sym_var] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_debugger] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_case] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1833), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1833), + [anon_sym_delete] = ACTIONS(1833), + [anon_sym_PLUS_PLUS] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_number] = ACTIONS(1831), + [sym_private_property_identifier] = ACTIONS(1831), + [sym_this] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_null] = ACTIONS(1833), + [sym_undefined] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1833), + [anon_sym_get] = ACTIONS(1833), + [anon_sym_set] = ACTIONS(1833), + [anon_sym_declare] = ACTIONS(1833), + [anon_sym_public] = ACTIONS(1833), + [anon_sym_private] = ACTIONS(1833), + [anon_sym_protected] = ACTIONS(1833), + [anon_sym_override] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_any] = ACTIONS(1833), + [anon_sym_number] = ACTIONS(1833), + [anon_sym_boolean] = ACTIONS(1833), + [anon_sym_string] = ACTIONS(1833), + [anon_sym_symbol] = ACTIONS(1833), + [anon_sym_object] = ACTIONS(1833), + [anon_sym_abstract] = ACTIONS(1833), + [anon_sym_interface] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [sym__automatic_semicolon] = ACTIONS(1839), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(781)] = { + [ts_builtin_sym_end] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1729), + [anon_sym_export] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1729), + [anon_sym_type] = ACTIONS(1729), + [anon_sym_namespace] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_typeof] = ACTIONS(1729), + [anon_sym_import] = ACTIONS(1729), + [anon_sym_with] = ACTIONS(1729), + [anon_sym_var] = ACTIONS(1729), + [anon_sym_let] = ACTIONS(1729), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1729), + [anon_sym_if] = ACTIONS(1729), + [anon_sym_switch] = ACTIONS(1729), + [anon_sym_for] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_await] = ACTIONS(1729), + [anon_sym_while] = ACTIONS(1729), + [anon_sym_do] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1729), + [anon_sym_break] = ACTIONS(1729), + [anon_sym_continue] = ACTIONS(1729), + [anon_sym_debugger] = ACTIONS(1729), + [anon_sym_return] = ACTIONS(1729), + [anon_sym_throw] = ACTIONS(1729), + [anon_sym_case] = ACTIONS(1729), + [anon_sym_yield] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [anon_sym_SQUOTE] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1729), + [anon_sym_async] = ACTIONS(1729), + [anon_sym_function] = ACTIONS(1729), + [anon_sym_new] = ACTIONS(1729), + [anon_sym_using] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1729), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_SLASH] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_TILDE] = ACTIONS(1727), + [anon_sym_void] = ACTIONS(1729), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1727), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1727), + [sym_number] = ACTIONS(1727), + [sym_private_property_identifier] = ACTIONS(1727), + [sym_this] = ACTIONS(1729), + [sym_super] = ACTIONS(1729), + [sym_true] = ACTIONS(1729), + [sym_false] = ACTIONS(1729), + [sym_null] = ACTIONS(1729), + [sym_undefined] = ACTIONS(1729), + [anon_sym_AT] = ACTIONS(1727), + [anon_sym_static] = ACTIONS(1729), + [anon_sym_readonly] = ACTIONS(1729), + [anon_sym_get] = ACTIONS(1729), + [anon_sym_set] = ACTIONS(1729), + [anon_sym_declare] = ACTIONS(1729), + [anon_sym_public] = ACTIONS(1729), + [anon_sym_private] = ACTIONS(1729), + [anon_sym_protected] = ACTIONS(1729), + [anon_sym_override] = ACTIONS(1729), + [anon_sym_module] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1729), + [anon_sym_number] = ACTIONS(1729), + [anon_sym_boolean] = ACTIONS(1729), + [anon_sym_string] = ACTIONS(1729), + [anon_sym_symbol] = ACTIONS(1729), + [anon_sym_object] = ACTIONS(1729), + [anon_sym_abstract] = ACTIONS(1729), + [anon_sym_interface] = ACTIONS(1729), + [anon_sym_enum] = ACTIONS(1729), + [sym__automatic_semicolon] = ACTIONS(1735), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(782)] = { + [ts_builtin_sym_end] = ACTIONS(2510), + [sym_identifier] = ACTIONS(2512), + [anon_sym_export] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_type] = ACTIONS(2512), + [anon_sym_namespace] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_typeof] = ACTIONS(2512), + [anon_sym_import] = ACTIONS(2512), + [anon_sym_with] = ACTIONS(2512), + [anon_sym_var] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_else] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_switch] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2510), + [anon_sym_await] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_do] = ACTIONS(2512), + [anon_sym_try] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_debugger] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_throw] = ACTIONS(2512), + [anon_sym_case] = ACTIONS(2512), + [anon_sym_finally] = ACTIONS(2512), + [anon_sym_yield] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_class] = ACTIONS(2512), + [anon_sym_async] = ACTIONS(2512), + [anon_sym_function] = ACTIONS(2512), + [anon_sym_new] = ACTIONS(2512), + [anon_sym_using] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2512), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_SLASH] = ACTIONS(2512), + [anon_sym_LT] = ACTIONS(2510), + [anon_sym_TILDE] = ACTIONS(2510), + [anon_sym_void] = ACTIONS(2512), + [anon_sym_delete] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2510), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2510), + [sym_number] = ACTIONS(2510), + [sym_private_property_identifier] = ACTIONS(2510), + [sym_this] = ACTIONS(2512), + [sym_super] = ACTIONS(2512), + [sym_true] = ACTIONS(2512), + [sym_false] = ACTIONS(2512), + [sym_null] = ACTIONS(2512), + [sym_undefined] = ACTIONS(2512), + [anon_sym_AT] = ACTIONS(2510), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_readonly] = ACTIONS(2512), + [anon_sym_get] = ACTIONS(2512), + [anon_sym_set] = ACTIONS(2512), + [anon_sym_declare] = ACTIONS(2512), + [anon_sym_public] = ACTIONS(2512), + [anon_sym_private] = ACTIONS(2512), + [anon_sym_protected] = ACTIONS(2512), + [anon_sym_override] = ACTIONS(2512), + [anon_sym_module] = ACTIONS(2512), + [anon_sym_any] = ACTIONS(2512), + [anon_sym_number] = ACTIONS(2512), + [anon_sym_boolean] = ACTIONS(2512), + [anon_sym_string] = ACTIONS(2512), + [anon_sym_symbol] = ACTIONS(2512), + [anon_sym_object] = ACTIONS(2512), + [anon_sym_abstract] = ACTIONS(2512), + [anon_sym_interface] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(783)] = { + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2516), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(2516), + [anon_sym_with] = ACTIONS(2516), + [anon_sym_var] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_await] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_debugger] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_class] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_using] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_void] = ACTIONS(2516), + [anon_sym_delete] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2514), + [sym_number] = ACTIONS(2514), + [sym_private_property_identifier] = ACTIONS(2514), + [sym_this] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [sym_null] = ACTIONS(2516), + [sym_undefined] = ACTIONS(2516), + [anon_sym_AT] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), + [anon_sym_object] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_interface] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(784)] = { + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2520), + [anon_sym_export] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_type] = ACTIONS(2520), + [anon_sym_namespace] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_typeof] = ACTIONS(2520), + [anon_sym_import] = ACTIONS(2520), + [anon_sym_with] = ACTIONS(2520), + [anon_sym_var] = ACTIONS(2520), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_await] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_try] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_debugger] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_throw] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_class] = ACTIONS(2520), + [anon_sym_async] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2520), + [anon_sym_using] = ACTIONS(2520), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_SLASH] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_void] = ACTIONS(2520), + [anon_sym_delete] = ACTIONS(2520), + [anon_sym_PLUS_PLUS] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2518), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2518), + [sym_number] = ACTIONS(2518), + [sym_private_property_identifier] = ACTIONS(2518), + [sym_this] = ACTIONS(2520), + [sym_super] = ACTIONS(2520), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [sym_null] = ACTIONS(2520), + [sym_undefined] = ACTIONS(2520), + [anon_sym_AT] = ACTIONS(2518), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_readonly] = ACTIONS(2520), + [anon_sym_get] = ACTIONS(2520), + [anon_sym_set] = ACTIONS(2520), + [anon_sym_declare] = ACTIONS(2520), + [anon_sym_public] = ACTIONS(2520), + [anon_sym_private] = ACTIONS(2520), + [anon_sym_protected] = ACTIONS(2520), + [anon_sym_override] = ACTIONS(2520), + [anon_sym_module] = ACTIONS(2520), + [anon_sym_any] = ACTIONS(2520), + [anon_sym_number] = ACTIONS(2520), + [anon_sym_boolean] = ACTIONS(2520), + [anon_sym_string] = ACTIONS(2520), + [anon_sym_symbol] = ACTIONS(2520), + [anon_sym_object] = ACTIONS(2520), + [anon_sym_abstract] = ACTIONS(2520), + [anon_sym_interface] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(785)] = { + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2524), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_namespace] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_import] = ACTIONS(2524), + [anon_sym_with] = ACTIONS(2524), + [anon_sym_var] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_await] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_debugger] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_class] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_using] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_void] = ACTIONS(2524), + [anon_sym_delete] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2522), + [sym_number] = ACTIONS(2522), + [sym_private_property_identifier] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [sym_null] = ACTIONS(2524), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_readonly] = ACTIONS(2524), + [anon_sym_get] = ACTIONS(2524), + [anon_sym_set] = ACTIONS(2524), + [anon_sym_declare] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_protected] = ACTIONS(2524), + [anon_sym_override] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_any] = ACTIONS(2524), + [anon_sym_number] = ACTIONS(2524), + [anon_sym_boolean] = ACTIONS(2524), + [anon_sym_string] = ACTIONS(2524), + [anon_sym_symbol] = ACTIONS(2524), + [anon_sym_object] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_interface] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(786)] = { + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2524), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_namespace] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_import] = ACTIONS(2524), + [anon_sym_with] = ACTIONS(2524), + [anon_sym_var] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_await] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_debugger] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_class] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_using] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_void] = ACTIONS(2524), + [anon_sym_delete] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2522), + [sym_number] = ACTIONS(2522), + [sym_private_property_identifier] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [sym_null] = ACTIONS(2524), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_readonly] = ACTIONS(2524), + [anon_sym_get] = ACTIONS(2524), + [anon_sym_set] = ACTIONS(2524), + [anon_sym_declare] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_protected] = ACTIONS(2524), + [anon_sym_override] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_any] = ACTIONS(2524), + [anon_sym_number] = ACTIONS(2524), + [anon_sym_boolean] = ACTIONS(2524), + [anon_sym_string] = ACTIONS(2524), + [anon_sym_symbol] = ACTIONS(2524), + [anon_sym_object] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_interface] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(787)] = { + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2524), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_namespace] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_typeof] = ACTIONS(2524), + [anon_sym_import] = ACTIONS(2524), + [anon_sym_with] = ACTIONS(2524), + [anon_sym_var] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_switch] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_await] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_debugger] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_throw] = ACTIONS(2524), + [anon_sym_case] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_class] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_function] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_using] = ACTIONS(2524), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_SLASH] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_void] = ACTIONS(2524), + [anon_sym_delete] = ACTIONS(2524), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2522), + [sym_number] = ACTIONS(2522), + [sym_private_property_identifier] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_true] = ACTIONS(2524), + [sym_false] = ACTIONS(2524), + [sym_null] = ACTIONS(2524), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_readonly] = ACTIONS(2524), + [anon_sym_get] = ACTIONS(2524), + [anon_sym_set] = ACTIONS(2524), + [anon_sym_declare] = ACTIONS(2524), + [anon_sym_public] = ACTIONS(2524), + [anon_sym_private] = ACTIONS(2524), + [anon_sym_protected] = ACTIONS(2524), + [anon_sym_override] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_any] = ACTIONS(2524), + [anon_sym_number] = ACTIONS(2524), + [anon_sym_boolean] = ACTIONS(2524), + [anon_sym_string] = ACTIONS(2524), + [anon_sym_symbol] = ACTIONS(2524), + [anon_sym_object] = ACTIONS(2524), + [anon_sym_abstract] = ACTIONS(2524), + [anon_sym_interface] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(788)] = { + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_identifier] = ACTIONS(2528), + [anon_sym_export] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_type] = ACTIONS(2528), + [anon_sym_namespace] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_typeof] = ACTIONS(2528), + [anon_sym_import] = ACTIONS(2528), + [anon_sym_with] = ACTIONS(2528), + [anon_sym_var] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_else] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_switch] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_await] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_do] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_debugger] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_throw] = ACTIONS(2528), + [anon_sym_case] = ACTIONS(2528), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_DQUOTE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_class] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(2528), + [anon_sym_function] = ACTIONS(2528), + [anon_sym_new] = ACTIONS(2528), + [anon_sym_using] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_SLASH] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2526), + [anon_sym_void] = ACTIONS(2528), + [anon_sym_delete] = ACTIONS(2528), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2526), + [sym_number] = ACTIONS(2526), + [sym_private_property_identifier] = ACTIONS(2526), + [sym_this] = ACTIONS(2528), + [sym_super] = ACTIONS(2528), + [sym_true] = ACTIONS(2528), + [sym_false] = ACTIONS(2528), + [sym_null] = ACTIONS(2528), + [sym_undefined] = ACTIONS(2528), + [anon_sym_AT] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_readonly] = ACTIONS(2528), + [anon_sym_get] = ACTIONS(2528), + [anon_sym_set] = ACTIONS(2528), + [anon_sym_declare] = ACTIONS(2528), + [anon_sym_public] = ACTIONS(2528), + [anon_sym_private] = ACTIONS(2528), + [anon_sym_protected] = ACTIONS(2528), + [anon_sym_override] = ACTIONS(2528), + [anon_sym_module] = ACTIONS(2528), + [anon_sym_any] = ACTIONS(2528), + [anon_sym_number] = ACTIONS(2528), + [anon_sym_boolean] = ACTIONS(2528), + [anon_sym_string] = ACTIONS(2528), + [anon_sym_symbol] = ACTIONS(2528), + [anon_sym_object] = ACTIONS(2528), + [anon_sym_abstract] = ACTIONS(2528), + [anon_sym_interface] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(789)] = { + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2532), + [anon_sym_export] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2532), + [anon_sym_namespace] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_typeof] = ACTIONS(2532), + [anon_sym_import] = ACTIONS(2532), + [anon_sym_with] = ACTIONS(2532), + [anon_sym_var] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_else] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_switch] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_await] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_do] = ACTIONS(2532), + [anon_sym_try] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_debugger] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_throw] = ACTIONS(2532), + [anon_sym_case] = ACTIONS(2532), + [anon_sym_yield] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_DQUOTE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_class] = ACTIONS(2532), + [anon_sym_async] = ACTIONS(2532), + [anon_sym_function] = ACTIONS(2532), + [anon_sym_new] = ACTIONS(2532), + [anon_sym_using] = ACTIONS(2532), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_SLASH] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2530), + [anon_sym_void] = ACTIONS(2532), + [anon_sym_delete] = ACTIONS(2532), + [anon_sym_PLUS_PLUS] = ACTIONS(2530), + [anon_sym_DASH_DASH] = ACTIONS(2530), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2530), + [sym_number] = ACTIONS(2530), + [sym_private_property_identifier] = ACTIONS(2530), + [sym_this] = ACTIONS(2532), + [sym_super] = ACTIONS(2532), + [sym_true] = ACTIONS(2532), + [sym_false] = ACTIONS(2532), + [sym_null] = ACTIONS(2532), + [sym_undefined] = ACTIONS(2532), + [anon_sym_AT] = ACTIONS(2530), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_readonly] = ACTIONS(2532), + [anon_sym_get] = ACTIONS(2532), + [anon_sym_set] = ACTIONS(2532), + [anon_sym_declare] = ACTIONS(2532), + [anon_sym_public] = ACTIONS(2532), + [anon_sym_private] = ACTIONS(2532), + [anon_sym_protected] = ACTIONS(2532), + [anon_sym_override] = ACTIONS(2532), + [anon_sym_module] = ACTIONS(2532), + [anon_sym_any] = ACTIONS(2532), + [anon_sym_number] = ACTIONS(2532), + [anon_sym_boolean] = ACTIONS(2532), + [anon_sym_string] = ACTIONS(2532), + [anon_sym_symbol] = ACTIONS(2532), + [anon_sym_object] = ACTIONS(2532), + [anon_sym_abstract] = ACTIONS(2532), + [anon_sym_interface] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(790)] = { + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2536), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_typeof] = ACTIONS(2536), + [anon_sym_import] = ACTIONS(2536), + [anon_sym_with] = ACTIONS(2536), + [anon_sym_var] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_else] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_switch] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_await] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_do] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_debugger] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_case] = ACTIONS(2536), + [anon_sym_yield] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_class] = ACTIONS(2536), + [anon_sym_async] = ACTIONS(2536), + [anon_sym_function] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_using] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_void] = ACTIONS(2536), + [anon_sym_delete] = ACTIONS(2536), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2534), + [sym_number] = ACTIONS(2534), + [sym_private_property_identifier] = ACTIONS(2534), + [sym_this] = ACTIONS(2536), + [sym_super] = ACTIONS(2536), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [sym_null] = ACTIONS(2536), + [sym_undefined] = ACTIONS(2536), + [anon_sym_AT] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_readonly] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_protected] = ACTIONS(2536), + [anon_sym_override] = ACTIONS(2536), + [anon_sym_module] = ACTIONS(2536), + [anon_sym_any] = ACTIONS(2536), + [anon_sym_number] = ACTIONS(2536), + [anon_sym_boolean] = ACTIONS(2536), + [anon_sym_string] = ACTIONS(2536), + [anon_sym_symbol] = ACTIONS(2536), + [anon_sym_object] = ACTIONS(2536), + [anon_sym_abstract] = ACTIONS(2536), + [anon_sym_interface] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(791)] = { + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2540), + [anon_sym_export] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_type] = ACTIONS(2540), + [anon_sym_namespace] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_typeof] = ACTIONS(2540), + [anon_sym_import] = ACTIONS(2540), + [anon_sym_with] = ACTIONS(2540), + [anon_sym_var] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_else] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_switch] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_await] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_do] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_debugger] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_throw] = ACTIONS(2540), + [anon_sym_case] = ACTIONS(2540), + [anon_sym_yield] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_class] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(2540), + [anon_sym_function] = ACTIONS(2540), + [anon_sym_new] = ACTIONS(2540), + [anon_sym_using] = ACTIONS(2540), + [anon_sym_PLUS] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_SLASH] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(2538), + [anon_sym_void] = ACTIONS(2540), + [anon_sym_delete] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2538), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2538), + [sym_number] = ACTIONS(2538), + [sym_private_property_identifier] = ACTIONS(2538), + [sym_this] = ACTIONS(2540), + [sym_super] = ACTIONS(2540), + [sym_true] = ACTIONS(2540), + [sym_false] = ACTIONS(2540), + [sym_null] = ACTIONS(2540), + [sym_undefined] = ACTIONS(2540), + [anon_sym_AT] = ACTIONS(2538), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_readonly] = ACTIONS(2540), + [anon_sym_get] = ACTIONS(2540), + [anon_sym_set] = ACTIONS(2540), + [anon_sym_declare] = ACTIONS(2540), + [anon_sym_public] = ACTIONS(2540), + [anon_sym_private] = ACTIONS(2540), + [anon_sym_protected] = ACTIONS(2540), + [anon_sym_override] = ACTIONS(2540), + [anon_sym_module] = ACTIONS(2540), + [anon_sym_any] = ACTIONS(2540), + [anon_sym_number] = ACTIONS(2540), + [anon_sym_boolean] = ACTIONS(2540), + [anon_sym_string] = ACTIONS(2540), + [anon_sym_symbol] = ACTIONS(2540), + [anon_sym_object] = ACTIONS(2540), + [anon_sym_abstract] = ACTIONS(2540), + [anon_sym_interface] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(792)] = { + [ts_builtin_sym_end] = ACTIONS(2542), + [sym_identifier] = ACTIONS(2544), + [anon_sym_export] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_namespace] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_typeof] = ACTIONS(2544), + [anon_sym_import] = ACTIONS(2544), + [anon_sym_with] = ACTIONS(2544), + [anon_sym_var] = ACTIONS(2544), + [anon_sym_let] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_switch] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_await] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_do] = ACTIONS(2544), + [anon_sym_try] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_debugger] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_throw] = ACTIONS(2544), + [anon_sym_case] = ACTIONS(2544), + [anon_sym_yield] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_DQUOTE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2544), + [anon_sym_async] = ACTIONS(2544), + [anon_sym_function] = ACTIONS(2544), + [anon_sym_new] = ACTIONS(2544), + [anon_sym_using] = ACTIONS(2544), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(2542), + [anon_sym_TILDE] = ACTIONS(2542), + [anon_sym_void] = ACTIONS(2544), + [anon_sym_delete] = ACTIONS(2544), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2542), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2542), + [sym_number] = ACTIONS(2542), + [sym_private_property_identifier] = ACTIONS(2542), + [sym_this] = ACTIONS(2544), + [sym_super] = ACTIONS(2544), + [sym_true] = ACTIONS(2544), + [sym_false] = ACTIONS(2544), + [sym_null] = ACTIONS(2544), + [sym_undefined] = ACTIONS(2544), + [anon_sym_AT] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_readonly] = ACTIONS(2544), + [anon_sym_get] = ACTIONS(2544), + [anon_sym_set] = ACTIONS(2544), + [anon_sym_declare] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_protected] = ACTIONS(2544), + [anon_sym_override] = ACTIONS(2544), + [anon_sym_module] = ACTIONS(2544), + [anon_sym_any] = ACTIONS(2544), + [anon_sym_number] = ACTIONS(2544), + [anon_sym_boolean] = ACTIONS(2544), + [anon_sym_string] = ACTIONS(2544), + [anon_sym_symbol] = ACTIONS(2544), + [anon_sym_object] = ACTIONS(2544), + [anon_sym_abstract] = ACTIONS(2544), + [anon_sym_interface] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(793)] = { + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2548), + [anon_sym_export] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_type] = ACTIONS(2548), + [anon_sym_namespace] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_typeof] = ACTIONS(2548), + [anon_sym_import] = ACTIONS(2548), + [anon_sym_with] = ACTIONS(2548), + [anon_sym_var] = ACTIONS(2548), + [anon_sym_let] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_else] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_switch] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_await] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_do] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_debugger] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_throw] = ACTIONS(2548), + [anon_sym_case] = ACTIONS(2548), + [anon_sym_yield] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DQUOTE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_class] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2548), + [anon_sym_function] = ACTIONS(2548), + [anon_sym_new] = ACTIONS(2548), + [anon_sym_using] = ACTIONS(2548), + [anon_sym_PLUS] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_SLASH] = ACTIONS(2548), + [anon_sym_LT] = ACTIONS(2546), + [anon_sym_TILDE] = ACTIONS(2546), + [anon_sym_void] = ACTIONS(2548), + [anon_sym_delete] = ACTIONS(2548), + [anon_sym_PLUS_PLUS] = ACTIONS(2546), + [anon_sym_DASH_DASH] = ACTIONS(2546), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2546), + [sym_number] = ACTIONS(2546), + [sym_private_property_identifier] = ACTIONS(2546), + [sym_this] = ACTIONS(2548), + [sym_super] = ACTIONS(2548), + [sym_true] = ACTIONS(2548), + [sym_false] = ACTIONS(2548), + [sym_null] = ACTIONS(2548), + [sym_undefined] = ACTIONS(2548), + [anon_sym_AT] = ACTIONS(2546), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_readonly] = ACTIONS(2548), + [anon_sym_get] = ACTIONS(2548), + [anon_sym_set] = ACTIONS(2548), + [anon_sym_declare] = ACTIONS(2548), + [anon_sym_public] = ACTIONS(2548), + [anon_sym_private] = ACTIONS(2548), + [anon_sym_protected] = ACTIONS(2548), + [anon_sym_override] = ACTIONS(2548), + [anon_sym_module] = ACTIONS(2548), + [anon_sym_any] = ACTIONS(2548), + [anon_sym_number] = ACTIONS(2548), + [anon_sym_boolean] = ACTIONS(2548), + [anon_sym_string] = ACTIONS(2548), + [anon_sym_symbol] = ACTIONS(2548), + [anon_sym_object] = ACTIONS(2548), + [anon_sym_abstract] = ACTIONS(2548), + [anon_sym_interface] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(794)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2550), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(795)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(796)] = { + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2556), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_namespace] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_typeof] = ACTIONS(2556), + [anon_sym_import] = ACTIONS(2556), + [anon_sym_with] = ACTIONS(2556), + [anon_sym_var] = ACTIONS(2556), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_await] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_try] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_debugger] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_throw] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_yield] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_class] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(2556), + [anon_sym_new] = ACTIONS(2556), + [anon_sym_using] = ACTIONS(2556), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_SLASH] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_TILDE] = ACTIONS(2554), + [anon_sym_void] = ACTIONS(2556), + [anon_sym_delete] = ACTIONS(2556), + [anon_sym_PLUS_PLUS] = ACTIONS(2554), + [anon_sym_DASH_DASH] = ACTIONS(2554), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2554), + [sym_number] = ACTIONS(2554), + [sym_private_property_identifier] = ACTIONS(2554), + [sym_this] = ACTIONS(2556), + [sym_super] = ACTIONS(2556), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [sym_null] = ACTIONS(2556), + [sym_undefined] = ACTIONS(2556), + [anon_sym_AT] = ACTIONS(2554), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_readonly] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_declare] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_protected] = ACTIONS(2556), + [anon_sym_override] = ACTIONS(2556), + [anon_sym_module] = ACTIONS(2556), + [anon_sym_any] = ACTIONS(2556), + [anon_sym_number] = ACTIONS(2556), + [anon_sym_boolean] = ACTIONS(2556), + [anon_sym_string] = ACTIONS(2556), + [anon_sym_symbol] = ACTIONS(2556), + [anon_sym_object] = ACTIONS(2556), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_interface] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(797)] = { + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_export] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_namespace] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_import] = ACTIONS(2560), + [anon_sym_with] = ACTIONS(2560), + [anon_sym_var] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_await] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_debugger] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_throw] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_class] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(2560), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_using] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_void] = ACTIONS(2560), + [anon_sym_delete] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2558), + [sym_number] = ACTIONS(2558), + [sym_private_property_identifier] = ACTIONS(2558), + [sym_this] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [sym_null] = ACTIONS(2560), + [sym_undefined] = ACTIONS(2560), + [anon_sym_AT] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_readonly] = ACTIONS(2560), + [anon_sym_get] = ACTIONS(2560), + [anon_sym_set] = ACTIONS(2560), + [anon_sym_declare] = ACTIONS(2560), + [anon_sym_public] = ACTIONS(2560), + [anon_sym_private] = ACTIONS(2560), + [anon_sym_protected] = ACTIONS(2560), + [anon_sym_override] = ACTIONS(2560), + [anon_sym_module] = ACTIONS(2560), + [anon_sym_any] = ACTIONS(2560), + [anon_sym_number] = ACTIONS(2560), + [anon_sym_boolean] = ACTIONS(2560), + [anon_sym_string] = ACTIONS(2560), + [anon_sym_symbol] = ACTIONS(2560), + [anon_sym_object] = ACTIONS(2560), + [anon_sym_abstract] = ACTIONS(2560), + [anon_sym_interface] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(798)] = { + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_export] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_namespace] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_typeof] = ACTIONS(2560), + [anon_sym_import] = ACTIONS(2560), + [anon_sym_with] = ACTIONS(2560), + [anon_sym_var] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_else] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_switch] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_await] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_do] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_debugger] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_throw] = ACTIONS(2560), + [anon_sym_case] = ACTIONS(2560), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_DQUOTE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_class] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(2560), + [anon_sym_new] = ACTIONS(2560), + [anon_sym_using] = ACTIONS(2560), + [anon_sym_PLUS] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_SLASH] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_void] = ACTIONS(2560), + [anon_sym_delete] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2558), + [sym_number] = ACTIONS(2558), + [sym_private_property_identifier] = ACTIONS(2558), + [sym_this] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_true] = ACTIONS(2560), + [sym_false] = ACTIONS(2560), + [sym_null] = ACTIONS(2560), + [sym_undefined] = ACTIONS(2560), + [anon_sym_AT] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_readonly] = ACTIONS(2560), + [anon_sym_get] = ACTIONS(2560), + [anon_sym_set] = ACTIONS(2560), + [anon_sym_declare] = ACTIONS(2560), + [anon_sym_public] = ACTIONS(2560), + [anon_sym_private] = ACTIONS(2560), + [anon_sym_protected] = ACTIONS(2560), + [anon_sym_override] = ACTIONS(2560), + [anon_sym_module] = ACTIONS(2560), + [anon_sym_any] = ACTIONS(2560), + [anon_sym_number] = ACTIONS(2560), + [anon_sym_boolean] = ACTIONS(2560), + [anon_sym_string] = ACTIONS(2560), + [anon_sym_symbol] = ACTIONS(2560), + [anon_sym_object] = ACTIONS(2560), + [anon_sym_abstract] = ACTIONS(2560), + [anon_sym_interface] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(799)] = { + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2564), + [anon_sym_export] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_namespace] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_typeof] = ACTIONS(2564), + [anon_sym_import] = ACTIONS(2564), + [anon_sym_with] = ACTIONS(2564), + [anon_sym_var] = ACTIONS(2564), + [anon_sym_let] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_else] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_switch] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_await] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_do] = ACTIONS(2564), + [anon_sym_try] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_debugger] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_throw] = ACTIONS(2564), + [anon_sym_case] = ACTIONS(2564), + [anon_sym_yield] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_class] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(2564), + [anon_sym_function] = ACTIONS(2564), + [anon_sym_new] = ACTIONS(2564), + [anon_sym_using] = ACTIONS(2564), + [anon_sym_PLUS] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_SLASH] = ACTIONS(2564), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_void] = ACTIONS(2564), + [anon_sym_delete] = ACTIONS(2564), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2562), + [sym_number] = ACTIONS(2562), + [sym_private_property_identifier] = ACTIONS(2562), + [sym_this] = ACTIONS(2564), + [sym_super] = ACTIONS(2564), + [sym_true] = ACTIONS(2564), + [sym_false] = ACTIONS(2564), + [sym_null] = ACTIONS(2564), + [sym_undefined] = ACTIONS(2564), + [anon_sym_AT] = ACTIONS(2562), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_readonly] = ACTIONS(2564), + [anon_sym_get] = ACTIONS(2564), + [anon_sym_set] = ACTIONS(2564), + [anon_sym_declare] = ACTIONS(2564), + [anon_sym_public] = ACTIONS(2564), + [anon_sym_private] = ACTIONS(2564), + [anon_sym_protected] = ACTIONS(2564), + [anon_sym_override] = ACTIONS(2564), + [anon_sym_module] = ACTIONS(2564), + [anon_sym_any] = ACTIONS(2564), + [anon_sym_number] = ACTIONS(2564), + [anon_sym_boolean] = ACTIONS(2564), + [anon_sym_string] = ACTIONS(2564), + [anon_sym_symbol] = ACTIONS(2564), + [anon_sym_object] = ACTIONS(2564), + [anon_sym_abstract] = ACTIONS(2564), + [anon_sym_interface] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(800)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2566), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(801)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(802)] = { + [ts_builtin_sym_end] = ACTIONS(2570), + [sym_identifier] = ACTIONS(2572), + [anon_sym_export] = ACTIONS(2572), + [anon_sym_default] = ACTIONS(2572), + [anon_sym_type] = ACTIONS(2572), + [anon_sym_namespace] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_typeof] = ACTIONS(2572), + [anon_sym_import] = ACTIONS(2572), + [anon_sym_with] = ACTIONS(2572), + [anon_sym_var] = ACTIONS(2572), + [anon_sym_let] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_else] = ACTIONS(2572), + [anon_sym_if] = ACTIONS(2572), + [anon_sym_switch] = ACTIONS(2572), + [anon_sym_for] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_await] = ACTIONS(2572), + [anon_sym_while] = ACTIONS(2572), + [anon_sym_do] = ACTIONS(2572), + [anon_sym_try] = ACTIONS(2572), + [anon_sym_break] = ACTIONS(2572), + [anon_sym_continue] = ACTIONS(2572), + [anon_sym_debugger] = ACTIONS(2572), + [anon_sym_return] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2572), + [anon_sym_case] = ACTIONS(2572), + [anon_sym_yield] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(2570), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_async] = ACTIONS(2572), + [anon_sym_function] = ACTIONS(2572), + [anon_sym_new] = ACTIONS(2572), + [anon_sym_using] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(2572), + [anon_sym_delete] = ACTIONS(2572), + [anon_sym_PLUS_PLUS] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2570), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2570), + [sym_number] = ACTIONS(2570), + [sym_private_property_identifier] = ACTIONS(2570), + [sym_this] = ACTIONS(2572), + [sym_super] = ACTIONS(2572), + [sym_true] = ACTIONS(2572), + [sym_false] = ACTIONS(2572), + [sym_null] = ACTIONS(2572), + [sym_undefined] = ACTIONS(2572), + [anon_sym_AT] = ACTIONS(2570), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_readonly] = ACTIONS(2572), + [anon_sym_get] = ACTIONS(2572), + [anon_sym_set] = ACTIONS(2572), + [anon_sym_declare] = ACTIONS(2572), + [anon_sym_public] = ACTIONS(2572), + [anon_sym_private] = ACTIONS(2572), + [anon_sym_protected] = ACTIONS(2572), + [anon_sym_override] = ACTIONS(2572), + [anon_sym_module] = ACTIONS(2572), + [anon_sym_any] = ACTIONS(2572), + [anon_sym_number] = ACTIONS(2572), + [anon_sym_boolean] = ACTIONS(2572), + [anon_sym_string] = ACTIONS(2572), + [anon_sym_symbol] = ACTIONS(2572), + [anon_sym_object] = ACTIONS(2572), + [anon_sym_abstract] = ACTIONS(2572), + [anon_sym_interface] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(803)] = { + [ts_builtin_sym_end] = ACTIONS(2574), + [sym_identifier] = ACTIONS(2576), + [anon_sym_export] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_type] = ACTIONS(2576), + [anon_sym_namespace] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_typeof] = ACTIONS(2576), + [anon_sym_import] = ACTIONS(2576), + [anon_sym_with] = ACTIONS(2576), + [anon_sym_var] = ACTIONS(2576), + [anon_sym_let] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_else] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_switch] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_await] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_do] = ACTIONS(2576), + [anon_sym_try] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_debugger] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_throw] = ACTIONS(2576), + [anon_sym_case] = ACTIONS(2576), + [anon_sym_yield] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_class] = ACTIONS(2576), + [anon_sym_async] = ACTIONS(2576), + [anon_sym_function] = ACTIONS(2576), + [anon_sym_new] = ACTIONS(2576), + [anon_sym_using] = ACTIONS(2576), + [anon_sym_PLUS] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_SLASH] = ACTIONS(2576), + [anon_sym_LT] = ACTIONS(2574), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_void] = ACTIONS(2576), + [anon_sym_delete] = ACTIONS(2576), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2574), + [sym_number] = ACTIONS(2574), + [sym_private_property_identifier] = ACTIONS(2574), + [sym_this] = ACTIONS(2576), + [sym_super] = ACTIONS(2576), + [sym_true] = ACTIONS(2576), + [sym_false] = ACTIONS(2576), + [sym_null] = ACTIONS(2576), + [sym_undefined] = ACTIONS(2576), + [anon_sym_AT] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2576), + [anon_sym_readonly] = ACTIONS(2576), + [anon_sym_get] = ACTIONS(2576), + [anon_sym_set] = ACTIONS(2576), + [anon_sym_declare] = ACTIONS(2576), + [anon_sym_public] = ACTIONS(2576), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_protected] = ACTIONS(2576), + [anon_sym_override] = ACTIONS(2576), + [anon_sym_module] = ACTIONS(2576), + [anon_sym_any] = ACTIONS(2576), + [anon_sym_number] = ACTIONS(2576), + [anon_sym_boolean] = ACTIONS(2576), + [anon_sym_string] = ACTIONS(2576), + [anon_sym_symbol] = ACTIONS(2576), + [anon_sym_object] = ACTIONS(2576), + [anon_sym_abstract] = ACTIONS(2576), + [anon_sym_interface] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(804)] = { + [ts_builtin_sym_end] = ACTIONS(2578), + [sym_identifier] = ACTIONS(2580), + [anon_sym_export] = ACTIONS(2580), + [anon_sym_default] = ACTIONS(2580), + [anon_sym_type] = ACTIONS(2580), + [anon_sym_namespace] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_typeof] = ACTIONS(2580), + [anon_sym_import] = ACTIONS(2580), + [anon_sym_with] = ACTIONS(2580), + [anon_sym_var] = ACTIONS(2580), + [anon_sym_let] = ACTIONS(2580), + [anon_sym_const] = ACTIONS(2580), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_else] = ACTIONS(2580), + [anon_sym_if] = ACTIONS(2580), + [anon_sym_switch] = ACTIONS(2580), + [anon_sym_for] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_await] = ACTIONS(2580), + [anon_sym_while] = ACTIONS(2580), + [anon_sym_do] = ACTIONS(2580), + [anon_sym_try] = ACTIONS(2580), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_continue] = ACTIONS(2580), + [anon_sym_debugger] = ACTIONS(2580), + [anon_sym_return] = ACTIONS(2580), + [anon_sym_throw] = ACTIONS(2580), + [anon_sym_case] = ACTIONS(2580), + [anon_sym_yield] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym_DQUOTE] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_async] = ACTIONS(2580), + [anon_sym_function] = ACTIONS(2580), + [anon_sym_new] = ACTIONS(2580), + [anon_sym_using] = ACTIONS(2580), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_LT] = ACTIONS(2578), + [anon_sym_TILDE] = ACTIONS(2578), + [anon_sym_void] = ACTIONS(2580), + [anon_sym_delete] = ACTIONS(2580), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_DASH_DASH] = ACTIONS(2578), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2578), + [sym_number] = ACTIONS(2578), + [sym_private_property_identifier] = ACTIONS(2578), + [sym_this] = ACTIONS(2580), + [sym_super] = ACTIONS(2580), + [sym_true] = ACTIONS(2580), + [sym_false] = ACTIONS(2580), + [sym_null] = ACTIONS(2580), + [sym_undefined] = ACTIONS(2580), + [anon_sym_AT] = ACTIONS(2578), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_readonly] = ACTIONS(2580), + [anon_sym_get] = ACTIONS(2580), + [anon_sym_set] = ACTIONS(2580), + [anon_sym_declare] = ACTIONS(2580), + [anon_sym_public] = ACTIONS(2580), + [anon_sym_private] = ACTIONS(2580), + [anon_sym_protected] = ACTIONS(2580), + [anon_sym_override] = ACTIONS(2580), + [anon_sym_module] = ACTIONS(2580), + [anon_sym_any] = ACTIONS(2580), + [anon_sym_number] = ACTIONS(2580), + [anon_sym_boolean] = ACTIONS(2580), + [anon_sym_string] = ACTIONS(2580), + [anon_sym_symbol] = ACTIONS(2580), + [anon_sym_object] = ACTIONS(2580), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_interface] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2580), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(805)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2582), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(806)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2584), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(807)] = { + [ts_builtin_sym_end] = ACTIONS(2586), + [sym_identifier] = ACTIONS(2588), + [anon_sym_export] = ACTIONS(2588), + [anon_sym_default] = ACTIONS(2588), + [anon_sym_type] = ACTIONS(2588), + [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_typeof] = ACTIONS(2588), + [anon_sym_import] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + [anon_sym_var] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_const] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2586), + [anon_sym_else] = ACTIONS(2588), + [anon_sym_if] = ACTIONS(2588), + [anon_sym_switch] = ACTIONS(2588), + [anon_sym_for] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_await] = ACTIONS(2588), + [anon_sym_while] = ACTIONS(2588), + [anon_sym_do] = ACTIONS(2588), + [anon_sym_try] = ACTIONS(2588), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_debugger] = ACTIONS(2588), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_throw] = ACTIONS(2588), + [anon_sym_case] = ACTIONS(2588), + [anon_sym_yield] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_DQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2588), + [anon_sym_async] = ACTIONS(2588), + [anon_sym_function] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_using] = ACTIONS(2588), + [anon_sym_PLUS] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_SLASH] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_TILDE] = ACTIONS(2586), + [anon_sym_void] = ACTIONS(2588), + [anon_sym_delete] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2586), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2586), + [sym_number] = ACTIONS(2586), + [sym_private_property_identifier] = ACTIONS(2586), + [sym_this] = ACTIONS(2588), + [sym_super] = ACTIONS(2588), + [sym_true] = ACTIONS(2588), + [sym_false] = ACTIONS(2588), + [sym_null] = ACTIONS(2588), + [sym_undefined] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_readonly] = ACTIONS(2588), + [anon_sym_get] = ACTIONS(2588), + [anon_sym_set] = ACTIONS(2588), + [anon_sym_declare] = ACTIONS(2588), + [anon_sym_public] = ACTIONS(2588), + [anon_sym_private] = ACTIONS(2588), + [anon_sym_protected] = ACTIONS(2588), + [anon_sym_override] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_any] = ACTIONS(2588), + [anon_sym_number] = ACTIONS(2588), + [anon_sym_boolean] = ACTIONS(2588), + [anon_sym_string] = ACTIONS(2588), + [anon_sym_symbol] = ACTIONS(2588), + [anon_sym_object] = ACTIONS(2588), + [anon_sym_abstract] = ACTIONS(2588), + [anon_sym_interface] = ACTIONS(2588), + [anon_sym_enum] = ACTIONS(2588), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(808)] = { + [ts_builtin_sym_end] = ACTIONS(2586), + [sym_identifier] = ACTIONS(2588), + [anon_sym_export] = ACTIONS(2588), + [anon_sym_default] = ACTIONS(2588), + [anon_sym_type] = ACTIONS(2588), + [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_typeof] = ACTIONS(2588), + [anon_sym_import] = ACTIONS(2588), + [anon_sym_with] = ACTIONS(2588), + [anon_sym_var] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_const] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2586), + [anon_sym_else] = ACTIONS(2588), + [anon_sym_if] = ACTIONS(2588), + [anon_sym_switch] = ACTIONS(2588), + [anon_sym_for] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_await] = ACTIONS(2588), + [anon_sym_while] = ACTIONS(2588), + [anon_sym_do] = ACTIONS(2588), + [anon_sym_try] = ACTIONS(2588), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_debugger] = ACTIONS(2588), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_throw] = ACTIONS(2588), + [anon_sym_case] = ACTIONS(2588), + [anon_sym_yield] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_DQUOTE] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_class] = ACTIONS(2588), + [anon_sym_async] = ACTIONS(2588), + [anon_sym_function] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2588), + [anon_sym_using] = ACTIONS(2588), + [anon_sym_PLUS] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_SLASH] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_TILDE] = ACTIONS(2586), + [anon_sym_void] = ACTIONS(2588), + [anon_sym_delete] = ACTIONS(2588), + [anon_sym_PLUS_PLUS] = ACTIONS(2586), + [anon_sym_DASH_DASH] = ACTIONS(2586), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2586), + [sym_number] = ACTIONS(2586), + [sym_private_property_identifier] = ACTIONS(2586), + [sym_this] = ACTIONS(2588), + [sym_super] = ACTIONS(2588), + [sym_true] = ACTIONS(2588), + [sym_false] = ACTIONS(2588), + [sym_null] = ACTIONS(2588), + [sym_undefined] = ACTIONS(2588), + [anon_sym_AT] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_readonly] = ACTIONS(2588), + [anon_sym_get] = ACTIONS(2588), + [anon_sym_set] = ACTIONS(2588), + [anon_sym_declare] = ACTIONS(2588), + [anon_sym_public] = ACTIONS(2588), + [anon_sym_private] = ACTIONS(2588), + [anon_sym_protected] = ACTIONS(2588), + [anon_sym_override] = ACTIONS(2588), + [anon_sym_module] = ACTIONS(2588), + [anon_sym_any] = ACTIONS(2588), + [anon_sym_number] = ACTIONS(2588), + [anon_sym_boolean] = ACTIONS(2588), + [anon_sym_string] = ACTIONS(2588), + [anon_sym_symbol] = ACTIONS(2588), + [anon_sym_object] = ACTIONS(2588), + [anon_sym_abstract] = ACTIONS(2588), + [anon_sym_interface] = ACTIONS(2588), + [anon_sym_enum] = ACTIONS(2588), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(809)] = { + [ts_builtin_sym_end] = ACTIONS(2590), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2592), + [anon_sym_default] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_namespace] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_typeof] = ACTIONS(2592), + [anon_sym_import] = ACTIONS(2592), + [anon_sym_with] = ACTIONS(2592), + [anon_sym_var] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), + [anon_sym_const] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_else] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_switch] = ACTIONS(2592), + [anon_sym_for] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_await] = ACTIONS(2592), + [anon_sym_while] = ACTIONS(2592), + [anon_sym_do] = ACTIONS(2592), + [anon_sym_try] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_debugger] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_throw] = ACTIONS(2592), + [anon_sym_case] = ACTIONS(2592), + [anon_sym_yield] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_DQUOTE] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_class] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_function] = ACTIONS(2592), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_using] = ACTIONS(2592), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_void] = ACTIONS(2592), + [anon_sym_delete] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2590), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_number] = ACTIONS(2590), + [sym_private_property_identifier] = ACTIONS(2590), + [sym_this] = ACTIONS(2592), + [sym_super] = ACTIONS(2592), + [sym_true] = ACTIONS(2592), + [sym_false] = ACTIONS(2592), + [sym_null] = ACTIONS(2592), + [sym_undefined] = ACTIONS(2592), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_readonly] = ACTIONS(2592), + [anon_sym_get] = ACTIONS(2592), + [anon_sym_set] = ACTIONS(2592), + [anon_sym_declare] = ACTIONS(2592), + [anon_sym_public] = ACTIONS(2592), + [anon_sym_private] = ACTIONS(2592), + [anon_sym_protected] = ACTIONS(2592), + [anon_sym_override] = ACTIONS(2592), + [anon_sym_module] = ACTIONS(2592), + [anon_sym_any] = ACTIONS(2592), + [anon_sym_number] = ACTIONS(2592), + [anon_sym_boolean] = ACTIONS(2592), + [anon_sym_string] = ACTIONS(2592), + [anon_sym_symbol] = ACTIONS(2592), + [anon_sym_object] = ACTIONS(2592), + [anon_sym_abstract] = ACTIONS(2592), + [anon_sym_interface] = ACTIONS(2592), + [anon_sym_enum] = ACTIONS(2592), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(810)] = { + [ts_builtin_sym_end] = ACTIONS(2594), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_default] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_namespace] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_RBRACE] = ACTIONS(2594), + [anon_sym_typeof] = ACTIONS(2596), + [anon_sym_import] = ACTIONS(2596), + [anon_sym_with] = ACTIONS(2596), + [anon_sym_var] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), + [anon_sym_const] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2594), + [anon_sym_else] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_switch] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_await] = ACTIONS(2596), + [anon_sym_while] = ACTIONS(2596), + [anon_sym_do] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_debugger] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_throw] = ACTIONS(2596), + [anon_sym_case] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2594), + [anon_sym_class] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2596), + [anon_sym_new] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_TILDE] = ACTIONS(2594), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_delete] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2594), + [anon_sym_DASH_DASH] = ACTIONS(2594), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2594), + [sym_number] = ACTIONS(2594), + [sym_private_property_identifier] = ACTIONS(2594), + [sym_this] = ACTIONS(2596), + [sym_super] = ACTIONS(2596), + [sym_true] = ACTIONS(2596), + [sym_false] = ACTIONS(2596), + [sym_null] = ACTIONS(2596), + [sym_undefined] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2594), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_abstract] = ACTIONS(2596), + [anon_sym_interface] = ACTIONS(2596), + [anon_sym_enum] = ACTIONS(2596), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(811)] = { + [ts_builtin_sym_end] = ACTIONS(2598), + [sym_identifier] = ACTIONS(2600), + [anon_sym_export] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2600), + [anon_sym_type] = ACTIONS(2600), + [anon_sym_namespace] = ACTIONS(2600), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_typeof] = ACTIONS(2600), + [anon_sym_import] = ACTIONS(2600), + [anon_sym_with] = ACTIONS(2600), + [anon_sym_var] = ACTIONS(2600), + [anon_sym_let] = ACTIONS(2600), + [anon_sym_const] = ACTIONS(2600), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_else] = ACTIONS(2600), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_switch] = ACTIONS(2600), + [anon_sym_for] = ACTIONS(2600), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_await] = ACTIONS(2600), + [anon_sym_while] = ACTIONS(2600), + [anon_sym_do] = ACTIONS(2600), + [anon_sym_try] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2600), + [anon_sym_debugger] = ACTIONS(2600), + [anon_sym_return] = ACTIONS(2600), + [anon_sym_throw] = ACTIONS(2600), + [anon_sym_case] = ACTIONS(2600), + [anon_sym_yield] = ACTIONS(2600), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_DQUOTE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2598), + [anon_sym_class] = ACTIONS(2600), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(2600), + [anon_sym_new] = ACTIONS(2600), + [anon_sym_using] = ACTIONS(2600), + [anon_sym_PLUS] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2600), + [anon_sym_SLASH] = ACTIONS(2600), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_TILDE] = ACTIONS(2598), + [anon_sym_void] = ACTIONS(2600), + [anon_sym_delete] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2598), + [anon_sym_DASH_DASH] = ACTIONS(2598), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2598), + [sym_number] = ACTIONS(2598), + [sym_private_property_identifier] = ACTIONS(2598), + [sym_this] = ACTIONS(2600), + [sym_super] = ACTIONS(2600), + [sym_true] = ACTIONS(2600), + [sym_false] = ACTIONS(2600), + [sym_null] = ACTIONS(2600), + [sym_undefined] = ACTIONS(2600), + [anon_sym_AT] = ACTIONS(2598), + [anon_sym_static] = ACTIONS(2600), + [anon_sym_readonly] = ACTIONS(2600), + [anon_sym_get] = ACTIONS(2600), + [anon_sym_set] = ACTIONS(2600), + [anon_sym_declare] = ACTIONS(2600), + [anon_sym_public] = ACTIONS(2600), + [anon_sym_private] = ACTIONS(2600), + [anon_sym_protected] = ACTIONS(2600), + [anon_sym_override] = ACTIONS(2600), + [anon_sym_module] = ACTIONS(2600), + [anon_sym_any] = ACTIONS(2600), + [anon_sym_number] = ACTIONS(2600), + [anon_sym_boolean] = ACTIONS(2600), + [anon_sym_string] = ACTIONS(2600), + [anon_sym_symbol] = ACTIONS(2600), + [anon_sym_object] = ACTIONS(2600), + [anon_sym_abstract] = ACTIONS(2600), + [anon_sym_interface] = ACTIONS(2600), + [anon_sym_enum] = ACTIONS(2600), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(812)] = { + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2604), + [anon_sym_export] = ACTIONS(2604), + [anon_sym_default] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_namespace] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_typeof] = ACTIONS(2604), + [anon_sym_import] = ACTIONS(2604), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_var] = ACTIONS(2604), + [anon_sym_let] = ACTIONS(2604), + [anon_sym_const] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_else] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_switch] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_await] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_do] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_debugger] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_throw] = ACTIONS(2604), + [anon_sym_case] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2604), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_DQUOTE] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2602), + [anon_sym_class] = ACTIONS(2604), + [anon_sym_async] = ACTIONS(2604), + [anon_sym_function] = ACTIONS(2604), + [anon_sym_new] = ACTIONS(2604), + [anon_sym_using] = ACTIONS(2604), + [anon_sym_PLUS] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2604), + [anon_sym_SLASH] = ACTIONS(2604), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_TILDE] = ACTIONS(2602), + [anon_sym_void] = ACTIONS(2604), + [anon_sym_delete] = ACTIONS(2604), + [anon_sym_PLUS_PLUS] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2602), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2602), + [sym_number] = ACTIONS(2602), + [sym_private_property_identifier] = ACTIONS(2602), + [sym_this] = ACTIONS(2604), + [sym_super] = ACTIONS(2604), + [sym_true] = ACTIONS(2604), + [sym_false] = ACTIONS(2604), + [sym_null] = ACTIONS(2604), + [sym_undefined] = ACTIONS(2604), + [anon_sym_AT] = ACTIONS(2602), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_readonly] = ACTIONS(2604), + [anon_sym_get] = ACTIONS(2604), + [anon_sym_set] = ACTIONS(2604), + [anon_sym_declare] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_protected] = ACTIONS(2604), + [anon_sym_override] = ACTIONS(2604), + [anon_sym_module] = ACTIONS(2604), + [anon_sym_any] = ACTIONS(2604), + [anon_sym_number] = ACTIONS(2604), + [anon_sym_boolean] = ACTIONS(2604), + [anon_sym_string] = ACTIONS(2604), + [anon_sym_symbol] = ACTIONS(2604), + [anon_sym_object] = ACTIONS(2604), + [anon_sym_abstract] = ACTIONS(2604), + [anon_sym_interface] = ACTIONS(2604), + [anon_sym_enum] = ACTIONS(2604), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(813)] = { + [ts_builtin_sym_end] = ACTIONS(2606), + [sym_identifier] = ACTIONS(2608), + [anon_sym_export] = ACTIONS(2608), + [anon_sym_default] = ACTIONS(2608), + [anon_sym_type] = ACTIONS(2608), + [anon_sym_namespace] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(2608), + [anon_sym_import] = ACTIONS(2608), + [anon_sym_with] = ACTIONS(2608), + [anon_sym_var] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2608), + [anon_sym_const] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_else] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_switch] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2606), + [anon_sym_SEMI] = ACTIONS(2606), + [anon_sym_await] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_do] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2608), + [anon_sym_break] = ACTIONS(2608), + [anon_sym_continue] = ACTIONS(2608), + [anon_sym_debugger] = ACTIONS(2608), + [anon_sym_return] = ACTIONS(2608), + [anon_sym_throw] = ACTIONS(2608), + [anon_sym_case] = ACTIONS(2608), + [anon_sym_yield] = ACTIONS(2608), + [anon_sym_LBRACK] = ACTIONS(2606), + [anon_sym_DQUOTE] = ACTIONS(2606), + [anon_sym_SQUOTE] = ACTIONS(2606), + [anon_sym_class] = ACTIONS(2608), + [anon_sym_async] = ACTIONS(2608), + [anon_sym_function] = ACTIONS(2608), + [anon_sym_new] = ACTIONS(2608), + [anon_sym_using] = ACTIONS(2608), + [anon_sym_PLUS] = ACTIONS(2608), + [anon_sym_DASH] = ACTIONS(2608), + [anon_sym_SLASH] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_TILDE] = ACTIONS(2606), + [anon_sym_void] = ACTIONS(2608), + [anon_sym_delete] = ACTIONS(2608), + [anon_sym_PLUS_PLUS] = ACTIONS(2606), + [anon_sym_DASH_DASH] = ACTIONS(2606), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2606), + [sym_number] = ACTIONS(2606), + [sym_private_property_identifier] = ACTIONS(2606), + [sym_this] = ACTIONS(2608), + [sym_super] = ACTIONS(2608), + [sym_true] = ACTIONS(2608), + [sym_false] = ACTIONS(2608), + [sym_null] = ACTIONS(2608), + [sym_undefined] = ACTIONS(2608), + [anon_sym_AT] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2608), + [anon_sym_readonly] = ACTIONS(2608), + [anon_sym_get] = ACTIONS(2608), + [anon_sym_set] = ACTIONS(2608), + [anon_sym_declare] = ACTIONS(2608), + [anon_sym_public] = ACTIONS(2608), + [anon_sym_private] = ACTIONS(2608), + [anon_sym_protected] = ACTIONS(2608), + [anon_sym_override] = ACTIONS(2608), + [anon_sym_module] = ACTIONS(2608), + [anon_sym_any] = ACTIONS(2608), + [anon_sym_number] = ACTIONS(2608), + [anon_sym_boolean] = ACTIONS(2608), + [anon_sym_string] = ACTIONS(2608), + [anon_sym_symbol] = ACTIONS(2608), + [anon_sym_object] = ACTIONS(2608), + [anon_sym_abstract] = ACTIONS(2608), + [anon_sym_interface] = ACTIONS(2608), + [anon_sym_enum] = ACTIONS(2608), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(814)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2610), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(815)] = { + [ts_builtin_sym_end] = ACTIONS(2612), + [sym_identifier] = ACTIONS(2614), + [anon_sym_export] = ACTIONS(2614), + [anon_sym_default] = ACTIONS(2614), + [anon_sym_type] = ACTIONS(2614), + [anon_sym_namespace] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(2612), + [anon_sym_RBRACE] = ACTIONS(2612), + [anon_sym_typeof] = ACTIONS(2614), + [anon_sym_import] = ACTIONS(2614), + [anon_sym_with] = ACTIONS(2614), + [anon_sym_var] = ACTIONS(2614), + [anon_sym_let] = ACTIONS(2614), + [anon_sym_const] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_else] = ACTIONS(2614), + [anon_sym_if] = ACTIONS(2614), + [anon_sym_switch] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2614), + [anon_sym_LPAREN] = ACTIONS(2612), + [anon_sym_SEMI] = ACTIONS(2612), + [anon_sym_await] = ACTIONS(2614), + [anon_sym_while] = ACTIONS(2614), + [anon_sym_do] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2614), + [anon_sym_break] = ACTIONS(2614), + [anon_sym_continue] = ACTIONS(2614), + [anon_sym_debugger] = ACTIONS(2614), + [anon_sym_return] = ACTIONS(2614), + [anon_sym_throw] = ACTIONS(2614), + [anon_sym_case] = ACTIONS(2614), + [anon_sym_yield] = ACTIONS(2614), + [anon_sym_LBRACK] = ACTIONS(2612), + [anon_sym_DQUOTE] = ACTIONS(2612), + [anon_sym_SQUOTE] = ACTIONS(2612), + [anon_sym_class] = ACTIONS(2614), + [anon_sym_async] = ACTIONS(2614), + [anon_sym_function] = ACTIONS(2614), + [anon_sym_new] = ACTIONS(2614), + [anon_sym_using] = ACTIONS(2614), + [anon_sym_PLUS] = ACTIONS(2614), + [anon_sym_DASH] = ACTIONS(2614), + [anon_sym_SLASH] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2612), + [anon_sym_TILDE] = ACTIONS(2612), + [anon_sym_void] = ACTIONS(2614), + [anon_sym_delete] = ACTIONS(2614), + [anon_sym_PLUS_PLUS] = ACTIONS(2612), + [anon_sym_DASH_DASH] = ACTIONS(2612), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2612), + [sym_number] = ACTIONS(2612), + [sym_private_property_identifier] = ACTIONS(2612), + [sym_this] = ACTIONS(2614), + [sym_super] = ACTIONS(2614), + [sym_true] = ACTIONS(2614), + [sym_false] = ACTIONS(2614), + [sym_null] = ACTIONS(2614), + [sym_undefined] = ACTIONS(2614), + [anon_sym_AT] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2614), + [anon_sym_readonly] = ACTIONS(2614), + [anon_sym_get] = ACTIONS(2614), + [anon_sym_set] = ACTIONS(2614), + [anon_sym_declare] = ACTIONS(2614), + [anon_sym_public] = ACTIONS(2614), + [anon_sym_private] = ACTIONS(2614), + [anon_sym_protected] = ACTIONS(2614), + [anon_sym_override] = ACTIONS(2614), + [anon_sym_module] = ACTIONS(2614), + [anon_sym_any] = ACTIONS(2614), + [anon_sym_number] = ACTIONS(2614), + [anon_sym_boolean] = ACTIONS(2614), + [anon_sym_string] = ACTIONS(2614), + [anon_sym_symbol] = ACTIONS(2614), + [anon_sym_object] = ACTIONS(2614), + [anon_sym_abstract] = ACTIONS(2614), + [anon_sym_interface] = ACTIONS(2614), + [anon_sym_enum] = ACTIONS(2614), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(816)] = { + [ts_builtin_sym_end] = ACTIONS(2616), + [sym_identifier] = ACTIONS(2618), + [anon_sym_export] = ACTIONS(2618), + [anon_sym_default] = ACTIONS(2618), + [anon_sym_type] = ACTIONS(2618), + [anon_sym_namespace] = ACTIONS(2618), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_typeof] = ACTIONS(2618), + [anon_sym_import] = ACTIONS(2618), + [anon_sym_with] = ACTIONS(2618), + [anon_sym_var] = ACTIONS(2618), + [anon_sym_let] = ACTIONS(2618), + [anon_sym_const] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_else] = ACTIONS(2618), + [anon_sym_if] = ACTIONS(2618), + [anon_sym_switch] = ACTIONS(2618), + [anon_sym_for] = ACTIONS(2618), + [anon_sym_LPAREN] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2616), + [anon_sym_await] = ACTIONS(2618), + [anon_sym_while] = ACTIONS(2618), + [anon_sym_do] = ACTIONS(2618), + [anon_sym_try] = ACTIONS(2618), + [anon_sym_break] = ACTIONS(2618), + [anon_sym_continue] = ACTIONS(2618), + [anon_sym_debugger] = ACTIONS(2618), + [anon_sym_return] = ACTIONS(2618), + [anon_sym_throw] = ACTIONS(2618), + [anon_sym_case] = ACTIONS(2618), + [anon_sym_yield] = ACTIONS(2618), + [anon_sym_LBRACK] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(2616), + [anon_sym_SQUOTE] = ACTIONS(2616), + [anon_sym_class] = ACTIONS(2618), + [anon_sym_async] = ACTIONS(2618), + [anon_sym_function] = ACTIONS(2618), + [anon_sym_new] = ACTIONS(2618), + [anon_sym_using] = ACTIONS(2618), + [anon_sym_PLUS] = ACTIONS(2618), + [anon_sym_DASH] = ACTIONS(2618), + [anon_sym_SLASH] = ACTIONS(2618), + [anon_sym_LT] = ACTIONS(2616), + [anon_sym_TILDE] = ACTIONS(2616), + [anon_sym_void] = ACTIONS(2618), + [anon_sym_delete] = ACTIONS(2618), + [anon_sym_PLUS_PLUS] = ACTIONS(2616), + [anon_sym_DASH_DASH] = ACTIONS(2616), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2616), + [sym_number] = ACTIONS(2616), + [sym_private_property_identifier] = ACTIONS(2616), + [sym_this] = ACTIONS(2618), + [sym_super] = ACTIONS(2618), + [sym_true] = ACTIONS(2618), + [sym_false] = ACTIONS(2618), + [sym_null] = ACTIONS(2618), + [sym_undefined] = ACTIONS(2618), + [anon_sym_AT] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2618), + [anon_sym_readonly] = ACTIONS(2618), + [anon_sym_get] = ACTIONS(2618), + [anon_sym_set] = ACTIONS(2618), + [anon_sym_declare] = ACTIONS(2618), + [anon_sym_public] = ACTIONS(2618), + [anon_sym_private] = ACTIONS(2618), + [anon_sym_protected] = ACTIONS(2618), + [anon_sym_override] = ACTIONS(2618), + [anon_sym_module] = ACTIONS(2618), + [anon_sym_any] = ACTIONS(2618), + [anon_sym_number] = ACTIONS(2618), + [anon_sym_boolean] = ACTIONS(2618), + [anon_sym_string] = ACTIONS(2618), + [anon_sym_symbol] = ACTIONS(2618), + [anon_sym_object] = ACTIONS(2618), + [anon_sym_abstract] = ACTIONS(2618), + [anon_sym_interface] = ACTIONS(2618), + [anon_sym_enum] = ACTIONS(2618), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(817)] = { + [ts_builtin_sym_end] = ACTIONS(2620), + [sym_identifier] = ACTIONS(2622), + [anon_sym_export] = ACTIONS(2622), + [anon_sym_default] = ACTIONS(2622), + [anon_sym_type] = ACTIONS(2622), + [anon_sym_namespace] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_typeof] = ACTIONS(2622), + [anon_sym_import] = ACTIONS(2622), + [anon_sym_with] = ACTIONS(2622), + [anon_sym_var] = ACTIONS(2622), + [anon_sym_let] = ACTIONS(2622), + [anon_sym_const] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_else] = ACTIONS(2622), + [anon_sym_if] = ACTIONS(2622), + [anon_sym_switch] = ACTIONS(2622), + [anon_sym_for] = ACTIONS(2622), + [anon_sym_LPAREN] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_await] = ACTIONS(2622), + [anon_sym_while] = ACTIONS(2622), + [anon_sym_do] = ACTIONS(2622), + [anon_sym_try] = ACTIONS(2622), + [anon_sym_break] = ACTIONS(2622), + [anon_sym_continue] = ACTIONS(2622), + [anon_sym_debugger] = ACTIONS(2622), + [anon_sym_return] = ACTIONS(2622), + [anon_sym_throw] = ACTIONS(2622), + [anon_sym_case] = ACTIONS(2622), + [anon_sym_yield] = ACTIONS(2622), + [anon_sym_LBRACK] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2620), + [anon_sym_SQUOTE] = ACTIONS(2620), + [anon_sym_class] = ACTIONS(2622), + [anon_sym_async] = ACTIONS(2622), + [anon_sym_function] = ACTIONS(2622), + [anon_sym_new] = ACTIONS(2622), + [anon_sym_using] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_SLASH] = ACTIONS(2622), + [anon_sym_LT] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_void] = ACTIONS(2622), + [anon_sym_delete] = ACTIONS(2622), + [anon_sym_PLUS_PLUS] = ACTIONS(2620), + [anon_sym_DASH_DASH] = ACTIONS(2620), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2620), + [sym_number] = ACTIONS(2620), + [sym_private_property_identifier] = ACTIONS(2620), + [sym_this] = ACTIONS(2622), + [sym_super] = ACTIONS(2622), + [sym_true] = ACTIONS(2622), + [sym_false] = ACTIONS(2622), + [sym_null] = ACTIONS(2622), + [sym_undefined] = ACTIONS(2622), + [anon_sym_AT] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2622), + [anon_sym_readonly] = ACTIONS(2622), + [anon_sym_get] = ACTIONS(2622), + [anon_sym_set] = ACTIONS(2622), + [anon_sym_declare] = ACTIONS(2622), + [anon_sym_public] = ACTIONS(2622), + [anon_sym_private] = ACTIONS(2622), + [anon_sym_protected] = ACTIONS(2622), + [anon_sym_override] = ACTIONS(2622), + [anon_sym_module] = ACTIONS(2622), + [anon_sym_any] = ACTIONS(2622), + [anon_sym_number] = ACTIONS(2622), + [anon_sym_boolean] = ACTIONS(2622), + [anon_sym_string] = ACTIONS(2622), + [anon_sym_symbol] = ACTIONS(2622), + [anon_sym_object] = ACTIONS(2622), + [anon_sym_abstract] = ACTIONS(2622), + [anon_sym_interface] = ACTIONS(2622), + [anon_sym_enum] = ACTIONS(2622), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(818)] = { + [ts_builtin_sym_end] = ACTIONS(2624), + [sym_identifier] = ACTIONS(2626), + [anon_sym_export] = ACTIONS(2626), + [anon_sym_default] = ACTIONS(2626), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_typeof] = ACTIONS(2626), + [anon_sym_import] = ACTIONS(2626), + [anon_sym_with] = ACTIONS(2626), + [anon_sym_var] = ACTIONS(2626), + [anon_sym_let] = ACTIONS(2626), + [anon_sym_const] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_else] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_switch] = ACTIONS(2626), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2624), + [anon_sym_await] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_do] = ACTIONS(2626), + [anon_sym_try] = ACTIONS(2626), + [anon_sym_break] = ACTIONS(2626), + [anon_sym_continue] = ACTIONS(2626), + [anon_sym_debugger] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_throw] = ACTIONS(2626), + [anon_sym_case] = ACTIONS(2626), + [anon_sym_yield] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(2624), + [anon_sym_SQUOTE] = ACTIONS(2624), + [anon_sym_class] = ACTIONS(2626), + [anon_sym_async] = ACTIONS(2626), + [anon_sym_function] = ACTIONS(2626), + [anon_sym_new] = ACTIONS(2626), + [anon_sym_using] = ACTIONS(2626), + [anon_sym_PLUS] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2626), + [anon_sym_SLASH] = ACTIONS(2626), + [anon_sym_LT] = ACTIONS(2624), + [anon_sym_TILDE] = ACTIONS(2624), + [anon_sym_void] = ACTIONS(2626), + [anon_sym_delete] = ACTIONS(2626), + [anon_sym_PLUS_PLUS] = ACTIONS(2624), + [anon_sym_DASH_DASH] = ACTIONS(2624), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2624), + [sym_number] = ACTIONS(2624), + [sym_private_property_identifier] = ACTIONS(2624), + [sym_this] = ACTIONS(2626), + [sym_super] = ACTIONS(2626), + [sym_true] = ACTIONS(2626), + [sym_false] = ACTIONS(2626), + [sym_null] = ACTIONS(2626), + [sym_undefined] = ACTIONS(2626), + [anon_sym_AT] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_readonly] = ACTIONS(2626), + [anon_sym_get] = ACTIONS(2626), + [anon_sym_set] = ACTIONS(2626), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_override] = ACTIONS(2626), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), + [anon_sym_object] = ACTIONS(2626), + [anon_sym_abstract] = ACTIONS(2626), + [anon_sym_interface] = ACTIONS(2626), + [anon_sym_enum] = ACTIONS(2626), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(819)] = { + [ts_builtin_sym_end] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2630), + [anon_sym_export] = ACTIONS(2630), + [anon_sym_default] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2630), + [anon_sym_namespace] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_typeof] = ACTIONS(2630), + [anon_sym_import] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2630), + [anon_sym_var] = ACTIONS(2630), + [anon_sym_let] = ACTIONS(2630), + [anon_sym_const] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2628), + [anon_sym_else] = ACTIONS(2630), + [anon_sym_if] = ACTIONS(2630), + [anon_sym_switch] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2630), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_await] = ACTIONS(2630), + [anon_sym_while] = ACTIONS(2630), + [anon_sym_do] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2630), + [anon_sym_break] = ACTIONS(2630), + [anon_sym_continue] = ACTIONS(2630), + [anon_sym_debugger] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2630), + [anon_sym_throw] = ACTIONS(2630), + [anon_sym_case] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2630), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_SQUOTE] = ACTIONS(2628), + [anon_sym_class] = ACTIONS(2630), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2630), + [anon_sym_using] = ACTIONS(2630), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_SLASH] = ACTIONS(2630), + [anon_sym_LT] = ACTIONS(2628), + [anon_sym_TILDE] = ACTIONS(2628), + [anon_sym_void] = ACTIONS(2630), + [anon_sym_delete] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2628), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2628), + [sym_number] = ACTIONS(2628), + [sym_private_property_identifier] = ACTIONS(2628), + [sym_this] = ACTIONS(2630), + [sym_super] = ACTIONS(2630), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [sym_null] = ACTIONS(2630), + [sym_undefined] = ACTIONS(2630), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2630), + [anon_sym_readonly] = ACTIONS(2630), + [anon_sym_get] = ACTIONS(2630), + [anon_sym_set] = ACTIONS(2630), + [anon_sym_declare] = ACTIONS(2630), + [anon_sym_public] = ACTIONS(2630), + [anon_sym_private] = ACTIONS(2630), + [anon_sym_protected] = ACTIONS(2630), + [anon_sym_override] = ACTIONS(2630), + [anon_sym_module] = ACTIONS(2630), + [anon_sym_any] = ACTIONS(2630), + [anon_sym_number] = ACTIONS(2630), + [anon_sym_boolean] = ACTIONS(2630), + [anon_sym_string] = ACTIONS(2630), + [anon_sym_symbol] = ACTIONS(2630), + [anon_sym_object] = ACTIONS(2630), + [anon_sym_abstract] = ACTIONS(2630), + [anon_sym_interface] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2630), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(820)] = { + [ts_builtin_sym_end] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2634), + [anon_sym_export] = ACTIONS(2634), + [anon_sym_default] = ACTIONS(2634), + [anon_sym_type] = ACTIONS(2634), + [anon_sym_namespace] = ACTIONS(2634), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_RBRACE] = ACTIONS(2632), + [anon_sym_typeof] = ACTIONS(2634), + [anon_sym_import] = ACTIONS(2634), + [anon_sym_with] = ACTIONS(2634), + [anon_sym_var] = ACTIONS(2634), + [anon_sym_let] = ACTIONS(2634), + [anon_sym_const] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2632), + [anon_sym_else] = ACTIONS(2634), + [anon_sym_if] = ACTIONS(2634), + [anon_sym_switch] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2634), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_SEMI] = ACTIONS(2632), + [anon_sym_await] = ACTIONS(2634), + [anon_sym_while] = ACTIONS(2634), + [anon_sym_do] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2634), + [anon_sym_break] = ACTIONS(2634), + [anon_sym_continue] = ACTIONS(2634), + [anon_sym_debugger] = ACTIONS(2634), + [anon_sym_return] = ACTIONS(2634), + [anon_sym_throw] = ACTIONS(2634), + [anon_sym_case] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2634), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_SQUOTE] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_async] = ACTIONS(2634), + [anon_sym_function] = ACTIONS(2634), + [anon_sym_new] = ACTIONS(2634), + [anon_sym_using] = ACTIONS(2634), + [anon_sym_PLUS] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2634), + [anon_sym_SLASH] = ACTIONS(2634), + [anon_sym_LT] = ACTIONS(2632), + [anon_sym_TILDE] = ACTIONS(2632), + [anon_sym_void] = ACTIONS(2634), + [anon_sym_delete] = ACTIONS(2634), + [anon_sym_PLUS_PLUS] = ACTIONS(2632), + [anon_sym_DASH_DASH] = ACTIONS(2632), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2632), + [sym_number] = ACTIONS(2632), + [sym_private_property_identifier] = ACTIONS(2632), + [sym_this] = ACTIONS(2634), + [sym_super] = ACTIONS(2634), + [sym_true] = ACTIONS(2634), + [sym_false] = ACTIONS(2634), + [sym_null] = ACTIONS(2634), + [sym_undefined] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(2632), + [anon_sym_static] = ACTIONS(2634), + [anon_sym_readonly] = ACTIONS(2634), + [anon_sym_get] = ACTIONS(2634), + [anon_sym_set] = ACTIONS(2634), + [anon_sym_declare] = ACTIONS(2634), + [anon_sym_public] = ACTIONS(2634), + [anon_sym_private] = ACTIONS(2634), + [anon_sym_protected] = ACTIONS(2634), + [anon_sym_override] = ACTIONS(2634), + [anon_sym_module] = ACTIONS(2634), + [anon_sym_any] = ACTIONS(2634), + [anon_sym_number] = ACTIONS(2634), + [anon_sym_boolean] = ACTIONS(2634), + [anon_sym_string] = ACTIONS(2634), + [anon_sym_symbol] = ACTIONS(2634), + [anon_sym_object] = ACTIONS(2634), + [anon_sym_abstract] = ACTIONS(2634), + [anon_sym_interface] = ACTIONS(2634), + [anon_sym_enum] = ACTIONS(2634), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(821)] = { + [ts_builtin_sym_end] = ACTIONS(2636), + [sym_identifier] = ACTIONS(2638), + [anon_sym_export] = ACTIONS(2638), + [anon_sym_default] = ACTIONS(2638), + [anon_sym_type] = ACTIONS(2638), + [anon_sym_namespace] = ACTIONS(2638), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_typeof] = ACTIONS(2638), + [anon_sym_import] = ACTIONS(2638), + [anon_sym_with] = ACTIONS(2638), + [anon_sym_var] = ACTIONS(2638), + [anon_sym_let] = ACTIONS(2638), + [anon_sym_const] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_else] = ACTIONS(2638), + [anon_sym_if] = ACTIONS(2638), + [anon_sym_switch] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2638), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_SEMI] = ACTIONS(2636), + [anon_sym_await] = ACTIONS(2638), + [anon_sym_while] = ACTIONS(2638), + [anon_sym_do] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2638), + [anon_sym_break] = ACTIONS(2638), + [anon_sym_continue] = ACTIONS(2638), + [anon_sym_debugger] = ACTIONS(2638), + [anon_sym_return] = ACTIONS(2638), + [anon_sym_throw] = ACTIONS(2638), + [anon_sym_case] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2638), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_SQUOTE] = ACTIONS(2636), + [anon_sym_class] = ACTIONS(2638), + [anon_sym_async] = ACTIONS(2638), + [anon_sym_function] = ACTIONS(2638), + [anon_sym_new] = ACTIONS(2638), + [anon_sym_using] = ACTIONS(2638), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_SLASH] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2636), + [anon_sym_TILDE] = ACTIONS(2636), + [anon_sym_void] = ACTIONS(2638), + [anon_sym_delete] = ACTIONS(2638), + [anon_sym_PLUS_PLUS] = ACTIONS(2636), + [anon_sym_DASH_DASH] = ACTIONS(2636), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2636), + [sym_number] = ACTIONS(2636), + [sym_private_property_identifier] = ACTIONS(2636), + [sym_this] = ACTIONS(2638), + [sym_super] = ACTIONS(2638), + [sym_true] = ACTIONS(2638), + [sym_false] = ACTIONS(2638), + [sym_null] = ACTIONS(2638), + [sym_undefined] = ACTIONS(2638), + [anon_sym_AT] = ACTIONS(2636), + [anon_sym_static] = ACTIONS(2638), + [anon_sym_readonly] = ACTIONS(2638), + [anon_sym_get] = ACTIONS(2638), + [anon_sym_set] = ACTIONS(2638), + [anon_sym_declare] = ACTIONS(2638), + [anon_sym_public] = ACTIONS(2638), + [anon_sym_private] = ACTIONS(2638), + [anon_sym_protected] = ACTIONS(2638), + [anon_sym_override] = ACTIONS(2638), + [anon_sym_module] = ACTIONS(2638), + [anon_sym_any] = ACTIONS(2638), + [anon_sym_number] = ACTIONS(2638), + [anon_sym_boolean] = ACTIONS(2638), + [anon_sym_string] = ACTIONS(2638), + [anon_sym_symbol] = ACTIONS(2638), + [anon_sym_object] = ACTIONS(2638), + [anon_sym_abstract] = ACTIONS(2638), + [anon_sym_interface] = ACTIONS(2638), + [anon_sym_enum] = ACTIONS(2638), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(822)] = { + [ts_builtin_sym_end] = ACTIONS(2640), + [sym_identifier] = ACTIONS(2642), + [anon_sym_export] = ACTIONS(2642), + [anon_sym_default] = ACTIONS(2642), + [anon_sym_type] = ACTIONS(2642), + [anon_sym_namespace] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_typeof] = ACTIONS(2642), + [anon_sym_import] = ACTIONS(2642), + [anon_sym_with] = ACTIONS(2642), + [anon_sym_var] = ACTIONS(2642), + [anon_sym_let] = ACTIONS(2642), + [anon_sym_const] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_else] = ACTIONS(2642), + [anon_sym_if] = ACTIONS(2642), + [anon_sym_switch] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2642), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_await] = ACTIONS(2642), + [anon_sym_while] = ACTIONS(2642), + [anon_sym_do] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2642), + [anon_sym_break] = ACTIONS(2642), + [anon_sym_continue] = ACTIONS(2642), + [anon_sym_debugger] = ACTIONS(2642), + [anon_sym_return] = ACTIONS(2642), + [anon_sym_throw] = ACTIONS(2642), + [anon_sym_case] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2642), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_SQUOTE] = ACTIONS(2640), + [anon_sym_class] = ACTIONS(2642), + [anon_sym_async] = ACTIONS(2642), + [anon_sym_function] = ACTIONS(2642), + [anon_sym_new] = ACTIONS(2642), + [anon_sym_using] = ACTIONS(2642), + [anon_sym_PLUS] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2642), + [anon_sym_SLASH] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_TILDE] = ACTIONS(2640), + [anon_sym_void] = ACTIONS(2642), + [anon_sym_delete] = ACTIONS(2642), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2640), + [sym_number] = ACTIONS(2640), + [sym_private_property_identifier] = ACTIONS(2640), + [sym_this] = ACTIONS(2642), + [sym_super] = ACTIONS(2642), + [sym_true] = ACTIONS(2642), + [sym_false] = ACTIONS(2642), + [sym_null] = ACTIONS(2642), + [sym_undefined] = ACTIONS(2642), + [anon_sym_AT] = ACTIONS(2640), + [anon_sym_static] = ACTIONS(2642), + [anon_sym_readonly] = ACTIONS(2642), + [anon_sym_get] = ACTIONS(2642), + [anon_sym_set] = ACTIONS(2642), + [anon_sym_declare] = ACTIONS(2642), + [anon_sym_public] = ACTIONS(2642), + [anon_sym_private] = ACTIONS(2642), + [anon_sym_protected] = ACTIONS(2642), + [anon_sym_override] = ACTIONS(2642), + [anon_sym_module] = ACTIONS(2642), + [anon_sym_any] = ACTIONS(2642), + [anon_sym_number] = ACTIONS(2642), + [anon_sym_boolean] = ACTIONS(2642), + [anon_sym_string] = ACTIONS(2642), + [anon_sym_symbol] = ACTIONS(2642), + [anon_sym_object] = ACTIONS(2642), + [anon_sym_abstract] = ACTIONS(2642), + [anon_sym_interface] = ACTIONS(2642), + [anon_sym_enum] = ACTIONS(2642), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(823)] = { + [ts_builtin_sym_end] = ACTIONS(2644), + [sym_identifier] = ACTIONS(2646), + [anon_sym_export] = ACTIONS(2646), + [anon_sym_default] = ACTIONS(2646), + [anon_sym_type] = ACTIONS(2646), + [anon_sym_namespace] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_typeof] = ACTIONS(2646), + [anon_sym_import] = ACTIONS(2646), + [anon_sym_with] = ACTIONS(2646), + [anon_sym_var] = ACTIONS(2646), + [anon_sym_let] = ACTIONS(2646), + [anon_sym_const] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_else] = ACTIONS(2646), + [anon_sym_if] = ACTIONS(2646), + [anon_sym_switch] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2646), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_await] = ACTIONS(2646), + [anon_sym_while] = ACTIONS(2646), + [anon_sym_do] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2646), + [anon_sym_break] = ACTIONS(2646), + [anon_sym_continue] = ACTIONS(2646), + [anon_sym_debugger] = ACTIONS(2646), + [anon_sym_return] = ACTIONS(2646), + [anon_sym_throw] = ACTIONS(2646), + [anon_sym_case] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2646), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [anon_sym_class] = ACTIONS(2646), + [anon_sym_async] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_using] = ACTIONS(2646), + [anon_sym_PLUS] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2646), + [anon_sym_SLASH] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_TILDE] = ACTIONS(2644), + [anon_sym_void] = ACTIONS(2646), + [anon_sym_delete] = ACTIONS(2646), + [anon_sym_PLUS_PLUS] = ACTIONS(2644), + [anon_sym_DASH_DASH] = ACTIONS(2644), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2644), + [sym_number] = ACTIONS(2644), + [sym_private_property_identifier] = ACTIONS(2644), + [sym_this] = ACTIONS(2646), + [sym_super] = ACTIONS(2646), + [sym_true] = ACTIONS(2646), + [sym_false] = ACTIONS(2646), + [sym_null] = ACTIONS(2646), + [sym_undefined] = ACTIONS(2646), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2646), + [anon_sym_readonly] = ACTIONS(2646), + [anon_sym_get] = ACTIONS(2646), + [anon_sym_set] = ACTIONS(2646), + [anon_sym_declare] = ACTIONS(2646), + [anon_sym_public] = ACTIONS(2646), + [anon_sym_private] = ACTIONS(2646), + [anon_sym_protected] = ACTIONS(2646), + [anon_sym_override] = ACTIONS(2646), + [anon_sym_module] = ACTIONS(2646), + [anon_sym_any] = ACTIONS(2646), + [anon_sym_number] = ACTIONS(2646), + [anon_sym_boolean] = ACTIONS(2646), + [anon_sym_string] = ACTIONS(2646), + [anon_sym_symbol] = ACTIONS(2646), + [anon_sym_object] = ACTIONS(2646), + [anon_sym_abstract] = ACTIONS(2646), + [anon_sym_interface] = ACTIONS(2646), + [anon_sym_enum] = ACTIONS(2646), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(824)] = { + [ts_builtin_sym_end] = ACTIONS(2648), + [sym_identifier] = ACTIONS(2650), + [anon_sym_export] = ACTIONS(2650), + [anon_sym_default] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_namespace] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_typeof] = ACTIONS(2650), + [anon_sym_import] = ACTIONS(2650), + [anon_sym_with] = ACTIONS(2650), + [anon_sym_var] = ACTIONS(2650), + [anon_sym_let] = ACTIONS(2650), + [anon_sym_const] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(2648), + [anon_sym_else] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_switch] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_await] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_do] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_debugger] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2650), + [anon_sym_case] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_DQUOTE] = ACTIONS(2648), + [anon_sym_SQUOTE] = ACTIONS(2648), + [anon_sym_class] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_function] = ACTIONS(2650), + [anon_sym_new] = ACTIONS(2650), + [anon_sym_using] = ACTIONS(2650), + [anon_sym_PLUS] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2650), + [anon_sym_SLASH] = ACTIONS(2650), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_TILDE] = ACTIONS(2648), + [anon_sym_void] = ACTIONS(2650), + [anon_sym_delete] = ACTIONS(2650), + [anon_sym_PLUS_PLUS] = ACTIONS(2648), + [anon_sym_DASH_DASH] = ACTIONS(2648), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2648), + [sym_number] = ACTIONS(2648), + [sym_private_property_identifier] = ACTIONS(2648), + [sym_this] = ACTIONS(2650), + [sym_super] = ACTIONS(2650), + [sym_true] = ACTIONS(2650), + [sym_false] = ACTIONS(2650), + [sym_null] = ACTIONS(2650), + [sym_undefined] = ACTIONS(2650), + [anon_sym_AT] = ACTIONS(2648), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_get] = ACTIONS(2650), + [anon_sym_set] = ACTIONS(2650), + [anon_sym_declare] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_protected] = ACTIONS(2650), + [anon_sym_override] = ACTIONS(2650), + [anon_sym_module] = ACTIONS(2650), + [anon_sym_any] = ACTIONS(2650), + [anon_sym_number] = ACTIONS(2650), + [anon_sym_boolean] = ACTIONS(2650), + [anon_sym_string] = ACTIONS(2650), + [anon_sym_symbol] = ACTIONS(2650), + [anon_sym_object] = ACTIONS(2650), + [anon_sym_abstract] = ACTIONS(2650), + [anon_sym_interface] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(825)] = { + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2654), + [anon_sym_export] = ACTIONS(2654), + [anon_sym_default] = ACTIONS(2654), + [anon_sym_type] = ACTIONS(2654), + [anon_sym_namespace] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_typeof] = ACTIONS(2654), + [anon_sym_import] = ACTIONS(2654), + [anon_sym_with] = ACTIONS(2654), + [anon_sym_var] = ACTIONS(2654), + [anon_sym_let] = ACTIONS(2654), + [anon_sym_const] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_else] = ACTIONS(2654), + [anon_sym_if] = ACTIONS(2654), + [anon_sym_switch] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2654), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_await] = ACTIONS(2654), + [anon_sym_while] = ACTIONS(2654), + [anon_sym_do] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2654), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2654), + [anon_sym_debugger] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2654), + [anon_sym_throw] = ACTIONS(2654), + [anon_sym_case] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2654), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_class] = ACTIONS(2654), + [anon_sym_async] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(2654), + [anon_sym_new] = ACTIONS(2654), + [anon_sym_using] = ACTIONS(2654), + [anon_sym_PLUS] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2654), + [anon_sym_SLASH] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_TILDE] = ACTIONS(2652), + [anon_sym_void] = ACTIONS(2654), + [anon_sym_delete] = ACTIONS(2654), + [anon_sym_PLUS_PLUS] = ACTIONS(2652), + [anon_sym_DASH_DASH] = ACTIONS(2652), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2652), + [sym_number] = ACTIONS(2652), + [sym_private_property_identifier] = ACTIONS(2652), + [sym_this] = ACTIONS(2654), + [sym_super] = ACTIONS(2654), + [sym_true] = ACTIONS(2654), + [sym_false] = ACTIONS(2654), + [sym_null] = ACTIONS(2654), + [sym_undefined] = ACTIONS(2654), + [anon_sym_AT] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_readonly] = ACTIONS(2654), + [anon_sym_get] = ACTIONS(2654), + [anon_sym_set] = ACTIONS(2654), + [anon_sym_declare] = ACTIONS(2654), + [anon_sym_public] = ACTIONS(2654), + [anon_sym_private] = ACTIONS(2654), + [anon_sym_protected] = ACTIONS(2654), + [anon_sym_override] = ACTIONS(2654), + [anon_sym_module] = ACTIONS(2654), + [anon_sym_any] = ACTIONS(2654), + [anon_sym_number] = ACTIONS(2654), + [anon_sym_boolean] = ACTIONS(2654), + [anon_sym_string] = ACTIONS(2654), + [anon_sym_symbol] = ACTIONS(2654), + [anon_sym_object] = ACTIONS(2654), + [anon_sym_abstract] = ACTIONS(2654), + [anon_sym_interface] = ACTIONS(2654), + [anon_sym_enum] = ACTIONS(2654), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(826)] = { + [ts_builtin_sym_end] = ACTIONS(2656), + [sym_identifier] = ACTIONS(2658), + [anon_sym_export] = ACTIONS(2658), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_namespace] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_typeof] = ACTIONS(2658), + [anon_sym_import] = ACTIONS(2658), + [anon_sym_with] = ACTIONS(2658), + [anon_sym_var] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_const] = ACTIONS(2658), + [anon_sym_BANG] = ACTIONS(2656), + [anon_sym_else] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_switch] = ACTIONS(2658), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_LPAREN] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_await] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_do] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [anon_sym_break] = ACTIONS(2658), + [anon_sym_continue] = ACTIONS(2658), + [anon_sym_debugger] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_throw] = ACTIONS(2658), + [anon_sym_case] = ACTIONS(2658), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2656), + [anon_sym_class] = ACTIONS(2658), + [anon_sym_async] = ACTIONS(2658), + [anon_sym_function] = ACTIONS(2658), + [anon_sym_new] = ACTIONS(2658), + [anon_sym_using] = ACTIONS(2658), + [anon_sym_PLUS] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2658), + [anon_sym_SLASH] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_TILDE] = ACTIONS(2656), + [anon_sym_void] = ACTIONS(2658), + [anon_sym_delete] = ACTIONS(2658), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2656), + [sym_number] = ACTIONS(2656), + [sym_private_property_identifier] = ACTIONS(2656), + [sym_this] = ACTIONS(2658), + [sym_super] = ACTIONS(2658), + [sym_true] = ACTIONS(2658), + [sym_false] = ACTIONS(2658), + [sym_null] = ACTIONS(2658), + [sym_undefined] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_readonly] = ACTIONS(2658), + [anon_sym_get] = ACTIONS(2658), + [anon_sym_set] = ACTIONS(2658), + [anon_sym_declare] = ACTIONS(2658), + [anon_sym_public] = ACTIONS(2658), + [anon_sym_private] = ACTIONS(2658), + [anon_sym_protected] = ACTIONS(2658), + [anon_sym_override] = ACTIONS(2658), + [anon_sym_module] = ACTIONS(2658), + [anon_sym_any] = ACTIONS(2658), + [anon_sym_number] = ACTIONS(2658), + [anon_sym_boolean] = ACTIONS(2658), + [anon_sym_string] = ACTIONS(2658), + [anon_sym_symbol] = ACTIONS(2658), + [anon_sym_object] = ACTIONS(2658), + [anon_sym_abstract] = ACTIONS(2658), + [anon_sym_interface] = ACTIONS(2658), + [anon_sym_enum] = ACTIONS(2658), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(827)] = { + [ts_builtin_sym_end] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2662), + [anon_sym_export] = ACTIONS(2662), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2662), + [anon_sym_namespace] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2660), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_typeof] = ACTIONS(2662), + [anon_sym_import] = ACTIONS(2662), + [anon_sym_with] = ACTIONS(2662), + [anon_sym_var] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_const] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2660), + [anon_sym_else] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_switch] = ACTIONS(2662), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2660), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_await] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_do] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [anon_sym_break] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2662), + [anon_sym_debugger] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_throw] = ACTIONS(2662), + [anon_sym_case] = ACTIONS(2662), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_LBRACK] = ACTIONS(2660), + [anon_sym_DQUOTE] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), + [anon_sym_class] = ACTIONS(2662), + [anon_sym_async] = ACTIONS(2662), + [anon_sym_function] = ACTIONS(2662), + [anon_sym_new] = ACTIONS(2662), + [anon_sym_using] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2662), + [anon_sym_SLASH] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_TILDE] = ACTIONS(2660), + [anon_sym_void] = ACTIONS(2662), + [anon_sym_delete] = ACTIONS(2662), + [anon_sym_PLUS_PLUS] = ACTIONS(2660), + [anon_sym_DASH_DASH] = ACTIONS(2660), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2660), + [sym_number] = ACTIONS(2660), + [sym_private_property_identifier] = ACTIONS(2660), + [sym_this] = ACTIONS(2662), + [sym_super] = ACTIONS(2662), + [sym_true] = ACTIONS(2662), + [sym_false] = ACTIONS(2662), + [sym_null] = ACTIONS(2662), + [sym_undefined] = ACTIONS(2662), + [anon_sym_AT] = ACTIONS(2660), + [anon_sym_static] = ACTIONS(2662), + [anon_sym_readonly] = ACTIONS(2662), + [anon_sym_get] = ACTIONS(2662), + [anon_sym_set] = ACTIONS(2662), + [anon_sym_declare] = ACTIONS(2662), + [anon_sym_public] = ACTIONS(2662), + [anon_sym_private] = ACTIONS(2662), + [anon_sym_protected] = ACTIONS(2662), + [anon_sym_override] = ACTIONS(2662), + [anon_sym_module] = ACTIONS(2662), + [anon_sym_any] = ACTIONS(2662), + [anon_sym_number] = ACTIONS(2662), + [anon_sym_boolean] = ACTIONS(2662), + [anon_sym_string] = ACTIONS(2662), + [anon_sym_symbol] = ACTIONS(2662), + [anon_sym_object] = ACTIONS(2662), + [anon_sym_abstract] = ACTIONS(2662), + [anon_sym_interface] = ACTIONS(2662), + [anon_sym_enum] = ACTIONS(2662), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(828)] = { + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_export] = ACTIONS(2666), + [anon_sym_default] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_namespace] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_typeof] = ACTIONS(2666), + [anon_sym_import] = ACTIONS(2666), + [anon_sym_with] = ACTIONS(2666), + [anon_sym_var] = ACTIONS(2666), + [anon_sym_let] = ACTIONS(2666), + [anon_sym_const] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_else] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_switch] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_await] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_do] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_debugger] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_throw] = ACTIONS(2666), + [anon_sym_case] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_class] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_function] = ACTIONS(2666), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_using] = ACTIONS(2666), + [anon_sym_PLUS] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2666), + [anon_sym_SLASH] = ACTIONS(2666), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_void] = ACTIONS(2666), + [anon_sym_delete] = ACTIONS(2666), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2664), + [sym_number] = ACTIONS(2664), + [sym_private_property_identifier] = ACTIONS(2664), + [sym_this] = ACTIONS(2666), + [sym_super] = ACTIONS(2666), + [sym_true] = ACTIONS(2666), + [sym_false] = ACTIONS(2666), + [sym_null] = ACTIONS(2666), + [sym_undefined] = ACTIONS(2666), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_get] = ACTIONS(2666), + [anon_sym_set] = ACTIONS(2666), + [anon_sym_declare] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_private] = ACTIONS(2666), + [anon_sym_protected] = ACTIONS(2666), + [anon_sym_override] = ACTIONS(2666), + [anon_sym_module] = ACTIONS(2666), + [anon_sym_any] = ACTIONS(2666), + [anon_sym_number] = ACTIONS(2666), + [anon_sym_boolean] = ACTIONS(2666), + [anon_sym_string] = ACTIONS(2666), + [anon_sym_symbol] = ACTIONS(2666), + [anon_sym_object] = ACTIONS(2666), + [anon_sym_abstract] = ACTIONS(2666), + [anon_sym_interface] = ACTIONS(2666), + [anon_sym_enum] = ACTIONS(2666), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(829)] = { + [ts_builtin_sym_end] = ACTIONS(2668), + [sym_identifier] = ACTIONS(2670), + [anon_sym_export] = ACTIONS(2670), + [anon_sym_default] = ACTIONS(2670), + [anon_sym_type] = ACTIONS(2670), + [anon_sym_namespace] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_RBRACE] = ACTIONS(2668), + [anon_sym_typeof] = ACTIONS(2670), + [anon_sym_import] = ACTIONS(2670), + [anon_sym_with] = ACTIONS(2670), + [anon_sym_var] = ACTIONS(2670), + [anon_sym_let] = ACTIONS(2670), + [anon_sym_const] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_else] = ACTIONS(2670), + [anon_sym_if] = ACTIONS(2670), + [anon_sym_switch] = ACTIONS(2670), + [anon_sym_for] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_await] = ACTIONS(2670), + [anon_sym_while] = ACTIONS(2670), + [anon_sym_do] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2670), + [anon_sym_continue] = ACTIONS(2670), + [anon_sym_debugger] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2670), + [anon_sym_throw] = ACTIONS(2670), + [anon_sym_case] = ACTIONS(2670), + [anon_sym_yield] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2668), + [anon_sym_SQUOTE] = ACTIONS(2668), + [anon_sym_class] = ACTIONS(2670), + [anon_sym_async] = ACTIONS(2670), + [anon_sym_function] = ACTIONS(2670), + [anon_sym_new] = ACTIONS(2670), + [anon_sym_using] = ACTIONS(2670), + [anon_sym_PLUS] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_TILDE] = ACTIONS(2668), + [anon_sym_void] = ACTIONS(2670), + [anon_sym_delete] = ACTIONS(2670), + [anon_sym_PLUS_PLUS] = ACTIONS(2668), + [anon_sym_DASH_DASH] = ACTIONS(2668), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2668), + [sym_number] = ACTIONS(2668), + [sym_private_property_identifier] = ACTIONS(2668), + [sym_this] = ACTIONS(2670), + [sym_super] = ACTIONS(2670), + [sym_true] = ACTIONS(2670), + [sym_false] = ACTIONS(2670), + [sym_null] = ACTIONS(2670), + [sym_undefined] = ACTIONS(2670), + [anon_sym_AT] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2670), + [anon_sym_readonly] = ACTIONS(2670), + [anon_sym_get] = ACTIONS(2670), + [anon_sym_set] = ACTIONS(2670), + [anon_sym_declare] = ACTIONS(2670), + [anon_sym_public] = ACTIONS(2670), + [anon_sym_private] = ACTIONS(2670), + [anon_sym_protected] = ACTIONS(2670), + [anon_sym_override] = ACTIONS(2670), + [anon_sym_module] = ACTIONS(2670), + [anon_sym_any] = ACTIONS(2670), + [anon_sym_number] = ACTIONS(2670), + [anon_sym_boolean] = ACTIONS(2670), + [anon_sym_string] = ACTIONS(2670), + [anon_sym_symbol] = ACTIONS(2670), + [anon_sym_object] = ACTIONS(2670), + [anon_sym_abstract] = ACTIONS(2670), + [anon_sym_interface] = ACTIONS(2670), + [anon_sym_enum] = ACTIONS(2670), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(830)] = { + [ts_builtin_sym_end] = ACTIONS(2672), + [sym_identifier] = ACTIONS(2674), + [anon_sym_export] = ACTIONS(2674), + [anon_sym_default] = ACTIONS(2674), + [anon_sym_type] = ACTIONS(2674), + [anon_sym_namespace] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_typeof] = ACTIONS(2674), + [anon_sym_import] = ACTIONS(2674), + [anon_sym_with] = ACTIONS(2674), + [anon_sym_var] = ACTIONS(2674), + [anon_sym_let] = ACTIONS(2674), + [anon_sym_const] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_else] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2674), + [anon_sym_switch] = ACTIONS(2674), + [anon_sym_for] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2672), + [anon_sym_SEMI] = ACTIONS(2672), + [anon_sym_await] = ACTIONS(2674), + [anon_sym_while] = ACTIONS(2674), + [anon_sym_do] = ACTIONS(2674), + [anon_sym_try] = ACTIONS(2674), + [anon_sym_break] = ACTIONS(2674), + [anon_sym_continue] = ACTIONS(2674), + [anon_sym_debugger] = ACTIONS(2674), + [anon_sym_return] = ACTIONS(2674), + [anon_sym_throw] = ACTIONS(2674), + [anon_sym_case] = ACTIONS(2674), + [anon_sym_yield] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_SQUOTE] = ACTIONS(2672), + [anon_sym_class] = ACTIONS(2674), + [anon_sym_async] = ACTIONS(2674), + [anon_sym_function] = ACTIONS(2674), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_using] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2674), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_TILDE] = ACTIONS(2672), + [anon_sym_void] = ACTIONS(2674), + [anon_sym_delete] = ACTIONS(2674), + [anon_sym_PLUS_PLUS] = ACTIONS(2672), + [anon_sym_DASH_DASH] = ACTIONS(2672), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2672), + [sym_number] = ACTIONS(2672), + [sym_private_property_identifier] = ACTIONS(2672), + [sym_this] = ACTIONS(2674), + [sym_super] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [sym_null] = ACTIONS(2674), + [sym_undefined] = ACTIONS(2674), + [anon_sym_AT] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(2674), + [anon_sym_readonly] = ACTIONS(2674), + [anon_sym_get] = ACTIONS(2674), + [anon_sym_set] = ACTIONS(2674), + [anon_sym_declare] = ACTIONS(2674), + [anon_sym_public] = ACTIONS(2674), + [anon_sym_private] = ACTIONS(2674), + [anon_sym_protected] = ACTIONS(2674), + [anon_sym_override] = ACTIONS(2674), + [anon_sym_module] = ACTIONS(2674), + [anon_sym_any] = ACTIONS(2674), + [anon_sym_number] = ACTIONS(2674), + [anon_sym_boolean] = ACTIONS(2674), + [anon_sym_string] = ACTIONS(2674), + [anon_sym_symbol] = ACTIONS(2674), + [anon_sym_object] = ACTIONS(2674), + [anon_sym_abstract] = ACTIONS(2674), + [anon_sym_interface] = ACTIONS(2674), + [anon_sym_enum] = ACTIONS(2674), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(831)] = { + [ts_builtin_sym_end] = ACTIONS(2676), + [sym_identifier] = ACTIONS(2678), + [anon_sym_export] = ACTIONS(2678), + [anon_sym_default] = ACTIONS(2678), + [anon_sym_type] = ACTIONS(2678), + [anon_sym_namespace] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(2676), + [anon_sym_typeof] = ACTIONS(2678), + [anon_sym_import] = ACTIONS(2678), + [anon_sym_with] = ACTIONS(2678), + [anon_sym_var] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2678), + [anon_sym_const] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_else] = ACTIONS(2678), + [anon_sym_if] = ACTIONS(2678), + [anon_sym_switch] = ACTIONS(2678), + [anon_sym_for] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_await] = ACTIONS(2678), + [anon_sym_while] = ACTIONS(2678), + [anon_sym_do] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2678), + [anon_sym_break] = ACTIONS(2678), + [anon_sym_continue] = ACTIONS(2678), + [anon_sym_debugger] = ACTIONS(2678), + [anon_sym_return] = ACTIONS(2678), + [anon_sym_throw] = ACTIONS(2678), + [anon_sym_case] = ACTIONS(2678), + [anon_sym_yield] = ACTIONS(2678), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(2676), + [anon_sym_SQUOTE] = ACTIONS(2676), + [anon_sym_class] = ACTIONS(2678), + [anon_sym_async] = ACTIONS(2678), + [anon_sym_function] = ACTIONS(2678), + [anon_sym_new] = ACTIONS(2678), + [anon_sym_using] = ACTIONS(2678), + [anon_sym_PLUS] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2678), + [anon_sym_SLASH] = ACTIONS(2678), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_TILDE] = ACTIONS(2676), + [anon_sym_void] = ACTIONS(2678), + [anon_sym_delete] = ACTIONS(2678), + [anon_sym_PLUS_PLUS] = ACTIONS(2676), + [anon_sym_DASH_DASH] = ACTIONS(2676), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2676), + [sym_number] = ACTIONS(2676), + [sym_private_property_identifier] = ACTIONS(2676), + [sym_this] = ACTIONS(2678), + [sym_super] = ACTIONS(2678), + [sym_true] = ACTIONS(2678), + [sym_false] = ACTIONS(2678), + [sym_null] = ACTIONS(2678), + [sym_undefined] = ACTIONS(2678), + [anon_sym_AT] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2678), + [anon_sym_readonly] = ACTIONS(2678), + [anon_sym_get] = ACTIONS(2678), + [anon_sym_set] = ACTIONS(2678), + [anon_sym_declare] = ACTIONS(2678), + [anon_sym_public] = ACTIONS(2678), + [anon_sym_private] = ACTIONS(2678), + [anon_sym_protected] = ACTIONS(2678), + [anon_sym_override] = ACTIONS(2678), + [anon_sym_module] = ACTIONS(2678), + [anon_sym_any] = ACTIONS(2678), + [anon_sym_number] = ACTIONS(2678), + [anon_sym_boolean] = ACTIONS(2678), + [anon_sym_string] = ACTIONS(2678), + [anon_sym_symbol] = ACTIONS(2678), + [anon_sym_object] = ACTIONS(2678), + [anon_sym_abstract] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2678), + [anon_sym_enum] = ACTIONS(2678), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(832)] = { + [ts_builtin_sym_end] = ACTIONS(2680), + [sym_identifier] = ACTIONS(2682), + [anon_sym_export] = ACTIONS(2682), + [anon_sym_default] = ACTIONS(2682), + [anon_sym_type] = ACTIONS(2682), + [anon_sym_namespace] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_typeof] = ACTIONS(2682), + [anon_sym_import] = ACTIONS(2682), + [anon_sym_with] = ACTIONS(2682), + [anon_sym_var] = ACTIONS(2682), + [anon_sym_let] = ACTIONS(2682), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_else] = ACTIONS(2682), + [anon_sym_if] = ACTIONS(2682), + [anon_sym_switch] = ACTIONS(2682), + [anon_sym_for] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_await] = ACTIONS(2682), + [anon_sym_while] = ACTIONS(2682), + [anon_sym_do] = ACTIONS(2682), + [anon_sym_try] = ACTIONS(2682), + [anon_sym_break] = ACTIONS(2682), + [anon_sym_continue] = ACTIONS(2682), + [anon_sym_debugger] = ACTIONS(2682), + [anon_sym_return] = ACTIONS(2682), + [anon_sym_throw] = ACTIONS(2682), + [anon_sym_case] = ACTIONS(2682), + [anon_sym_yield] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(2680), + [anon_sym_SQUOTE] = ACTIONS(2680), + [anon_sym_class] = ACTIONS(2682), + [anon_sym_async] = ACTIONS(2682), + [anon_sym_function] = ACTIONS(2682), + [anon_sym_new] = ACTIONS(2682), + [anon_sym_using] = ACTIONS(2682), + [anon_sym_PLUS] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2682), + [anon_sym_SLASH] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_TILDE] = ACTIONS(2680), + [anon_sym_void] = ACTIONS(2682), + [anon_sym_delete] = ACTIONS(2682), + [anon_sym_PLUS_PLUS] = ACTIONS(2680), + [anon_sym_DASH_DASH] = ACTIONS(2680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2680), + [sym_number] = ACTIONS(2680), + [sym_private_property_identifier] = ACTIONS(2680), + [sym_this] = ACTIONS(2682), + [sym_super] = ACTIONS(2682), + [sym_true] = ACTIONS(2682), + [sym_false] = ACTIONS(2682), + [sym_null] = ACTIONS(2682), + [sym_undefined] = ACTIONS(2682), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2682), + [anon_sym_readonly] = ACTIONS(2682), + [anon_sym_get] = ACTIONS(2682), + [anon_sym_set] = ACTIONS(2682), + [anon_sym_declare] = ACTIONS(2682), + [anon_sym_public] = ACTIONS(2682), + [anon_sym_private] = ACTIONS(2682), + [anon_sym_protected] = ACTIONS(2682), + [anon_sym_override] = ACTIONS(2682), + [anon_sym_module] = ACTIONS(2682), + [anon_sym_any] = ACTIONS(2682), + [anon_sym_number] = ACTIONS(2682), + [anon_sym_boolean] = ACTIONS(2682), + [anon_sym_string] = ACTIONS(2682), + [anon_sym_symbol] = ACTIONS(2682), + [anon_sym_object] = ACTIONS(2682), + [anon_sym_abstract] = ACTIONS(2682), + [anon_sym_interface] = ACTIONS(2682), + [anon_sym_enum] = ACTIONS(2682), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(833)] = { + [ts_builtin_sym_end] = ACTIONS(2684), + [sym_identifier] = ACTIONS(2686), + [anon_sym_export] = ACTIONS(2686), + [anon_sym_default] = ACTIONS(2686), + [anon_sym_type] = ACTIONS(2686), + [anon_sym_namespace] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_RBRACE] = ACTIONS(2684), + [anon_sym_typeof] = ACTIONS(2686), + [anon_sym_import] = ACTIONS(2686), + [anon_sym_with] = ACTIONS(2686), + [anon_sym_var] = ACTIONS(2686), + [anon_sym_let] = ACTIONS(2686), + [anon_sym_const] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_else] = ACTIONS(2686), + [anon_sym_if] = ACTIONS(2686), + [anon_sym_switch] = ACTIONS(2686), + [anon_sym_for] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_await] = ACTIONS(2686), + [anon_sym_while] = ACTIONS(2686), + [anon_sym_do] = ACTIONS(2686), + [anon_sym_try] = ACTIONS(2686), + [anon_sym_break] = ACTIONS(2686), + [anon_sym_continue] = ACTIONS(2686), + [anon_sym_debugger] = ACTIONS(2686), + [anon_sym_return] = ACTIONS(2686), + [anon_sym_throw] = ACTIONS(2686), + [anon_sym_case] = ACTIONS(2686), + [anon_sym_yield] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2684), + [anon_sym_SQUOTE] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2686), + [anon_sym_async] = ACTIONS(2686), + [anon_sym_function] = ACTIONS(2686), + [anon_sym_new] = ACTIONS(2686), + [anon_sym_using] = ACTIONS(2686), + [anon_sym_PLUS] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_SLASH] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_TILDE] = ACTIONS(2684), + [anon_sym_void] = ACTIONS(2686), + [anon_sym_delete] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2684), + [sym_number] = ACTIONS(2684), + [sym_private_property_identifier] = ACTIONS(2684), + [sym_this] = ACTIONS(2686), + [sym_super] = ACTIONS(2686), + [sym_true] = ACTIONS(2686), + [sym_false] = ACTIONS(2686), + [sym_null] = ACTIONS(2686), + [sym_undefined] = ACTIONS(2686), + [anon_sym_AT] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2686), + [anon_sym_readonly] = ACTIONS(2686), + [anon_sym_get] = ACTIONS(2686), + [anon_sym_set] = ACTIONS(2686), + [anon_sym_declare] = ACTIONS(2686), + [anon_sym_public] = ACTIONS(2686), + [anon_sym_private] = ACTIONS(2686), + [anon_sym_protected] = ACTIONS(2686), + [anon_sym_override] = ACTIONS(2686), + [anon_sym_module] = ACTIONS(2686), + [anon_sym_any] = ACTIONS(2686), + [anon_sym_number] = ACTIONS(2686), + [anon_sym_boolean] = ACTIONS(2686), + [anon_sym_string] = ACTIONS(2686), + [anon_sym_symbol] = ACTIONS(2686), + [anon_sym_object] = ACTIONS(2686), + [anon_sym_abstract] = ACTIONS(2686), + [anon_sym_interface] = ACTIONS(2686), + [anon_sym_enum] = ACTIONS(2686), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(834)] = { + [ts_builtin_sym_end] = ACTIONS(2688), + [sym_identifier] = ACTIONS(2690), + [anon_sym_export] = ACTIONS(2690), + [anon_sym_default] = ACTIONS(2690), + [anon_sym_type] = ACTIONS(2690), + [anon_sym_namespace] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_RBRACE] = ACTIONS(2688), + [anon_sym_typeof] = ACTIONS(2690), + [anon_sym_import] = ACTIONS(2690), + [anon_sym_with] = ACTIONS(2690), + [anon_sym_var] = ACTIONS(2690), + [anon_sym_let] = ACTIONS(2690), + [anon_sym_const] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_else] = ACTIONS(2690), + [anon_sym_if] = ACTIONS(2690), + [anon_sym_switch] = ACTIONS(2690), + [anon_sym_for] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_await] = ACTIONS(2690), + [anon_sym_while] = ACTIONS(2690), + [anon_sym_do] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_debugger] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2690), + [anon_sym_throw] = ACTIONS(2690), + [anon_sym_case] = ACTIONS(2690), + [anon_sym_yield] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2688), + [anon_sym_SQUOTE] = ACTIONS(2688), + [anon_sym_class] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2690), + [anon_sym_function] = ACTIONS(2690), + [anon_sym_new] = ACTIONS(2690), + [anon_sym_using] = ACTIONS(2690), + [anon_sym_PLUS] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2690), + [anon_sym_SLASH] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_TILDE] = ACTIONS(2688), + [anon_sym_void] = ACTIONS(2690), + [anon_sym_delete] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2688), + [anon_sym_DASH_DASH] = ACTIONS(2688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2688), + [sym_number] = ACTIONS(2688), + [sym_private_property_identifier] = ACTIONS(2688), + [sym_this] = ACTIONS(2690), + [sym_super] = ACTIONS(2690), + [sym_true] = ACTIONS(2690), + [sym_false] = ACTIONS(2690), + [sym_null] = ACTIONS(2690), + [sym_undefined] = ACTIONS(2690), + [anon_sym_AT] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2690), + [anon_sym_readonly] = ACTIONS(2690), + [anon_sym_get] = ACTIONS(2690), + [anon_sym_set] = ACTIONS(2690), + [anon_sym_declare] = ACTIONS(2690), + [anon_sym_public] = ACTIONS(2690), + [anon_sym_private] = ACTIONS(2690), + [anon_sym_protected] = ACTIONS(2690), + [anon_sym_override] = ACTIONS(2690), + [anon_sym_module] = ACTIONS(2690), + [anon_sym_any] = ACTIONS(2690), + [anon_sym_number] = ACTIONS(2690), + [anon_sym_boolean] = ACTIONS(2690), + [anon_sym_string] = ACTIONS(2690), + [anon_sym_symbol] = ACTIONS(2690), + [anon_sym_object] = ACTIONS(2690), + [anon_sym_abstract] = ACTIONS(2690), + [anon_sym_interface] = ACTIONS(2690), + [anon_sym_enum] = ACTIONS(2690), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(835)] = { + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2694), + [anon_sym_default] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_namespace] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(2694), + [anon_sym_import] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2694), + [anon_sym_var] = ACTIONS(2694), + [anon_sym_let] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_else] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_switch] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_await] = ACTIONS(2694), + [anon_sym_while] = ACTIONS(2694), + [anon_sym_do] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_debugger] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_throw] = ACTIONS(2694), + [anon_sym_case] = ACTIONS(2694), + [anon_sym_yield] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_DQUOTE] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2692), + [anon_sym_class] = ACTIONS(2694), + [anon_sym_async] = ACTIONS(2694), + [anon_sym_function] = ACTIONS(2694), + [anon_sym_new] = ACTIONS(2694), + [anon_sym_using] = ACTIONS(2694), + [anon_sym_PLUS] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_SLASH] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2692), + [anon_sym_void] = ACTIONS(2694), + [anon_sym_delete] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2692), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2692), + [sym_number] = ACTIONS(2692), + [sym_private_property_identifier] = ACTIONS(2692), + [sym_this] = ACTIONS(2694), + [sym_super] = ACTIONS(2694), + [sym_true] = ACTIONS(2694), + [sym_false] = ACTIONS(2694), + [sym_null] = ACTIONS(2694), + [sym_undefined] = ACTIONS(2694), + [anon_sym_AT] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2694), + [anon_sym_readonly] = ACTIONS(2694), + [anon_sym_get] = ACTIONS(2694), + [anon_sym_set] = ACTIONS(2694), + [anon_sym_declare] = ACTIONS(2694), + [anon_sym_public] = ACTIONS(2694), + [anon_sym_private] = ACTIONS(2694), + [anon_sym_protected] = ACTIONS(2694), + [anon_sym_override] = ACTIONS(2694), + [anon_sym_module] = ACTIONS(2694), + [anon_sym_any] = ACTIONS(2694), + [anon_sym_number] = ACTIONS(2694), + [anon_sym_boolean] = ACTIONS(2694), + [anon_sym_string] = ACTIONS(2694), + [anon_sym_symbol] = ACTIONS(2694), + [anon_sym_object] = ACTIONS(2694), + [anon_sym_abstract] = ACTIONS(2694), + [anon_sym_interface] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(836)] = { + [ts_builtin_sym_end] = ACTIONS(2696), + [sym_identifier] = ACTIONS(2698), + [anon_sym_export] = ACTIONS(2698), + [anon_sym_default] = ACTIONS(2698), + [anon_sym_type] = ACTIONS(2698), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_RBRACE] = ACTIONS(2696), + [anon_sym_typeof] = ACTIONS(2698), + [anon_sym_import] = ACTIONS(2698), + [anon_sym_with] = ACTIONS(2698), + [anon_sym_var] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2698), + [anon_sym_const] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_else] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(2698), + [anon_sym_switch] = ACTIONS(2698), + [anon_sym_for] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_await] = ACTIONS(2698), + [anon_sym_while] = ACTIONS(2698), + [anon_sym_do] = ACTIONS(2698), + [anon_sym_try] = ACTIONS(2698), + [anon_sym_break] = ACTIONS(2698), + [anon_sym_continue] = ACTIONS(2698), + [anon_sym_debugger] = ACTIONS(2698), + [anon_sym_return] = ACTIONS(2698), + [anon_sym_throw] = ACTIONS(2698), + [anon_sym_case] = ACTIONS(2698), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(2696), + [anon_sym_SQUOTE] = ACTIONS(2696), + [anon_sym_class] = ACTIONS(2698), + [anon_sym_async] = ACTIONS(2698), + [anon_sym_function] = ACTIONS(2698), + [anon_sym_new] = ACTIONS(2698), + [anon_sym_using] = ACTIONS(2698), + [anon_sym_PLUS] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2698), + [anon_sym_SLASH] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_TILDE] = ACTIONS(2696), + [anon_sym_void] = ACTIONS(2698), + [anon_sym_delete] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2696), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2696), + [sym_number] = ACTIONS(2696), + [sym_private_property_identifier] = ACTIONS(2696), + [sym_this] = ACTIONS(2698), + [sym_super] = ACTIONS(2698), + [sym_true] = ACTIONS(2698), + [sym_false] = ACTIONS(2698), + [sym_null] = ACTIONS(2698), + [sym_undefined] = ACTIONS(2698), + [anon_sym_AT] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2698), + [anon_sym_readonly] = ACTIONS(2698), + [anon_sym_get] = ACTIONS(2698), + [anon_sym_set] = ACTIONS(2698), + [anon_sym_declare] = ACTIONS(2698), + [anon_sym_public] = ACTIONS(2698), + [anon_sym_private] = ACTIONS(2698), + [anon_sym_protected] = ACTIONS(2698), + [anon_sym_override] = ACTIONS(2698), + [anon_sym_module] = ACTIONS(2698), + [anon_sym_any] = ACTIONS(2698), + [anon_sym_number] = ACTIONS(2698), + [anon_sym_boolean] = ACTIONS(2698), + [anon_sym_string] = ACTIONS(2698), + [anon_sym_symbol] = ACTIONS(2698), + [anon_sym_object] = ACTIONS(2698), + [anon_sym_abstract] = ACTIONS(2698), + [anon_sym_interface] = ACTIONS(2698), + [anon_sym_enum] = ACTIONS(2698), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(837)] = { + [ts_builtin_sym_end] = ACTIONS(2700), + [sym_identifier] = ACTIONS(2702), + [anon_sym_export] = ACTIONS(2702), + [anon_sym_default] = ACTIONS(2702), + [anon_sym_type] = ACTIONS(2702), + [anon_sym_namespace] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_typeof] = ACTIONS(2702), + [anon_sym_import] = ACTIONS(2702), + [anon_sym_with] = ACTIONS(2702), + [anon_sym_var] = ACTIONS(2702), + [anon_sym_let] = ACTIONS(2702), + [anon_sym_const] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_else] = ACTIONS(2702), + [anon_sym_if] = ACTIONS(2702), + [anon_sym_switch] = ACTIONS(2702), + [anon_sym_for] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_await] = ACTIONS(2702), + [anon_sym_while] = ACTIONS(2702), + [anon_sym_do] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2702), + [anon_sym_continue] = ACTIONS(2702), + [anon_sym_debugger] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2702), + [anon_sym_throw] = ACTIONS(2702), + [anon_sym_case] = ACTIONS(2702), + [anon_sym_yield] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2700), + [anon_sym_SQUOTE] = ACTIONS(2700), + [anon_sym_class] = ACTIONS(2702), + [anon_sym_async] = ACTIONS(2702), + [anon_sym_function] = ACTIONS(2702), + [anon_sym_new] = ACTIONS(2702), + [anon_sym_using] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_TILDE] = ACTIONS(2700), + [anon_sym_void] = ACTIONS(2702), + [anon_sym_delete] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2700), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2700), + [sym_number] = ACTIONS(2700), + [sym_private_property_identifier] = ACTIONS(2700), + [sym_this] = ACTIONS(2702), + [sym_super] = ACTIONS(2702), + [sym_true] = ACTIONS(2702), + [sym_false] = ACTIONS(2702), + [sym_null] = ACTIONS(2702), + [sym_undefined] = ACTIONS(2702), + [anon_sym_AT] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2702), + [anon_sym_readonly] = ACTIONS(2702), + [anon_sym_get] = ACTIONS(2702), + [anon_sym_set] = ACTIONS(2702), + [anon_sym_declare] = ACTIONS(2702), + [anon_sym_public] = ACTIONS(2702), + [anon_sym_private] = ACTIONS(2702), + [anon_sym_protected] = ACTIONS(2702), + [anon_sym_override] = ACTIONS(2702), + [anon_sym_module] = ACTIONS(2702), + [anon_sym_any] = ACTIONS(2702), + [anon_sym_number] = ACTIONS(2702), + [anon_sym_boolean] = ACTIONS(2702), + [anon_sym_string] = ACTIONS(2702), + [anon_sym_symbol] = ACTIONS(2702), + [anon_sym_object] = ACTIONS(2702), + [anon_sym_abstract] = ACTIONS(2702), + [anon_sym_interface] = ACTIONS(2702), + [anon_sym_enum] = ACTIONS(2702), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(838)] = { + [ts_builtin_sym_end] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2706), + [anon_sym_export] = ACTIONS(2706), + [anon_sym_default] = ACTIONS(2706), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_namespace] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2704), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_typeof] = ACTIONS(2706), + [anon_sym_import] = ACTIONS(2706), + [anon_sym_with] = ACTIONS(2706), + [anon_sym_var] = ACTIONS(2706), + [anon_sym_let] = ACTIONS(2706), + [anon_sym_const] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2706), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(2706), + [anon_sym_for] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2704), + [anon_sym_await] = ACTIONS(2706), + [anon_sym_while] = ACTIONS(2706), + [anon_sym_do] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2706), + [anon_sym_break] = ACTIONS(2706), + [anon_sym_continue] = ACTIONS(2706), + [anon_sym_debugger] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2706), + [anon_sym_throw] = ACTIONS(2706), + [anon_sym_case] = ACTIONS(2706), + [anon_sym_yield] = ACTIONS(2706), + [anon_sym_LBRACK] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(2704), + [anon_sym_SQUOTE] = ACTIONS(2704), + [anon_sym_class] = ACTIONS(2706), + [anon_sym_async] = ACTIONS(2706), + [anon_sym_function] = ACTIONS(2706), + [anon_sym_new] = ACTIONS(2706), + [anon_sym_using] = ACTIONS(2706), + [anon_sym_PLUS] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_SLASH] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_TILDE] = ACTIONS(2704), + [anon_sym_void] = ACTIONS(2706), + [anon_sym_delete] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2704), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2704), + [sym_number] = ACTIONS(2704), + [sym_private_property_identifier] = ACTIONS(2704), + [sym_this] = ACTIONS(2706), + [sym_super] = ACTIONS(2706), + [sym_true] = ACTIONS(2706), + [sym_false] = ACTIONS(2706), + [sym_null] = ACTIONS(2706), + [sym_undefined] = ACTIONS(2706), + [anon_sym_AT] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2706), + [anon_sym_readonly] = ACTIONS(2706), + [anon_sym_get] = ACTIONS(2706), + [anon_sym_set] = ACTIONS(2706), + [anon_sym_declare] = ACTIONS(2706), + [anon_sym_public] = ACTIONS(2706), + [anon_sym_private] = ACTIONS(2706), + [anon_sym_protected] = ACTIONS(2706), + [anon_sym_override] = ACTIONS(2706), + [anon_sym_module] = ACTIONS(2706), + [anon_sym_any] = ACTIONS(2706), + [anon_sym_number] = ACTIONS(2706), + [anon_sym_boolean] = ACTIONS(2706), + [anon_sym_string] = ACTIONS(2706), + [anon_sym_symbol] = ACTIONS(2706), + [anon_sym_object] = ACTIONS(2706), + [anon_sym_abstract] = ACTIONS(2706), + [anon_sym_interface] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2706), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(839)] = { + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2710), + [anon_sym_export] = ACTIONS(2710), + [anon_sym_default] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_namespace] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_typeof] = ACTIONS(2710), + [anon_sym_import] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2710), + [anon_sym_var] = ACTIONS(2710), + [anon_sym_let] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_switch] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_SEMI] = ACTIONS(2708), + [anon_sym_await] = ACTIONS(2710), + [anon_sym_while] = ACTIONS(2710), + [anon_sym_do] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_debugger] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_throw] = ACTIONS(2710), + [anon_sym_case] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_SQUOTE] = ACTIONS(2708), + [anon_sym_class] = ACTIONS(2710), + [anon_sym_async] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2710), + [anon_sym_using] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_TILDE] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(2710), + [anon_sym_delete] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2708), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2708), + [sym_number] = ACTIONS(2708), + [sym_private_property_identifier] = ACTIONS(2708), + [sym_this] = ACTIONS(2710), + [sym_super] = ACTIONS(2710), + [sym_true] = ACTIONS(2710), + [sym_false] = ACTIONS(2710), + [sym_null] = ACTIONS(2710), + [sym_undefined] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2710), + [anon_sym_readonly] = ACTIONS(2710), + [anon_sym_get] = ACTIONS(2710), + [anon_sym_set] = ACTIONS(2710), + [anon_sym_declare] = ACTIONS(2710), + [anon_sym_public] = ACTIONS(2710), + [anon_sym_private] = ACTIONS(2710), + [anon_sym_protected] = ACTIONS(2710), + [anon_sym_override] = ACTIONS(2710), + [anon_sym_module] = ACTIONS(2710), + [anon_sym_any] = ACTIONS(2710), + [anon_sym_number] = ACTIONS(2710), + [anon_sym_boolean] = ACTIONS(2710), + [anon_sym_string] = ACTIONS(2710), + [anon_sym_symbol] = ACTIONS(2710), + [anon_sym_object] = ACTIONS(2710), + [anon_sym_abstract] = ACTIONS(2710), + [anon_sym_interface] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(840)] = { + [ts_builtin_sym_end] = ACTIONS(2712), + [sym_identifier] = ACTIONS(2714), + [anon_sym_export] = ACTIONS(2714), + [anon_sym_default] = ACTIONS(2714), + [anon_sym_type] = ACTIONS(2714), + [anon_sym_namespace] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2712), + [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_typeof] = ACTIONS(2714), + [anon_sym_import] = ACTIONS(2714), + [anon_sym_with] = ACTIONS(2714), + [anon_sym_var] = ACTIONS(2714), + [anon_sym_let] = ACTIONS(2714), + [anon_sym_const] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_else] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_switch] = ACTIONS(2714), + [anon_sym_for] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_await] = ACTIONS(2714), + [anon_sym_while] = ACTIONS(2714), + [anon_sym_do] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2714), + [anon_sym_debugger] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_throw] = ACTIONS(2714), + [anon_sym_case] = ACTIONS(2714), + [anon_sym_yield] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_SQUOTE] = ACTIONS(2712), + [anon_sym_class] = ACTIONS(2714), + [anon_sym_async] = ACTIONS(2714), + [anon_sym_function] = ACTIONS(2714), + [anon_sym_new] = ACTIONS(2714), + [anon_sym_using] = ACTIONS(2714), + [anon_sym_PLUS] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_SLASH] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_TILDE] = ACTIONS(2712), + [anon_sym_void] = ACTIONS(2714), + [anon_sym_delete] = ACTIONS(2714), + [anon_sym_PLUS_PLUS] = ACTIONS(2712), + [anon_sym_DASH_DASH] = ACTIONS(2712), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2712), + [sym_number] = ACTIONS(2712), + [sym_private_property_identifier] = ACTIONS(2712), + [sym_this] = ACTIONS(2714), + [sym_super] = ACTIONS(2714), + [sym_true] = ACTIONS(2714), + [sym_false] = ACTIONS(2714), + [sym_null] = ACTIONS(2714), + [sym_undefined] = ACTIONS(2714), + [anon_sym_AT] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2714), + [anon_sym_readonly] = ACTIONS(2714), + [anon_sym_get] = ACTIONS(2714), + [anon_sym_set] = ACTIONS(2714), + [anon_sym_declare] = ACTIONS(2714), + [anon_sym_public] = ACTIONS(2714), + [anon_sym_private] = ACTIONS(2714), + [anon_sym_protected] = ACTIONS(2714), + [anon_sym_override] = ACTIONS(2714), + [anon_sym_module] = ACTIONS(2714), + [anon_sym_any] = ACTIONS(2714), + [anon_sym_number] = ACTIONS(2714), + [anon_sym_boolean] = ACTIONS(2714), + [anon_sym_string] = ACTIONS(2714), + [anon_sym_symbol] = ACTIONS(2714), + [anon_sym_object] = ACTIONS(2714), + [anon_sym_abstract] = ACTIONS(2714), + [anon_sym_interface] = ACTIONS(2714), + [anon_sym_enum] = ACTIONS(2714), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(841)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(842)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(843)] = { + [ts_builtin_sym_end] = ACTIONS(2720), + [sym_identifier] = ACTIONS(2722), + [anon_sym_export] = ACTIONS(2722), + [anon_sym_default] = ACTIONS(2722), + [anon_sym_type] = ACTIONS(2722), + [anon_sym_namespace] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2720), + [anon_sym_RBRACE] = ACTIONS(2720), + [anon_sym_typeof] = ACTIONS(2722), + [anon_sym_import] = ACTIONS(2722), + [anon_sym_with] = ACTIONS(2722), + [anon_sym_var] = ACTIONS(2722), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_const] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2720), + [anon_sym_else] = ACTIONS(2722), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_switch] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2720), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_await] = ACTIONS(2722), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2722), + [anon_sym_break] = ACTIONS(2722), + [anon_sym_continue] = ACTIONS(2722), + [anon_sym_debugger] = ACTIONS(2722), + [anon_sym_return] = ACTIONS(2722), + [anon_sym_throw] = ACTIONS(2722), + [anon_sym_case] = ACTIONS(2722), + [anon_sym_yield] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_class] = ACTIONS(2722), + [anon_sym_async] = ACTIONS(2722), + [anon_sym_function] = ACTIONS(2722), + [anon_sym_new] = ACTIONS(2722), + [anon_sym_using] = ACTIONS(2722), + [anon_sym_PLUS] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2722), + [anon_sym_SLASH] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_TILDE] = ACTIONS(2720), + [anon_sym_void] = ACTIONS(2722), + [anon_sym_delete] = ACTIONS(2722), + [anon_sym_PLUS_PLUS] = ACTIONS(2720), + [anon_sym_DASH_DASH] = ACTIONS(2720), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2720), + [sym_number] = ACTIONS(2720), + [sym_private_property_identifier] = ACTIONS(2720), + [sym_this] = ACTIONS(2722), + [sym_super] = ACTIONS(2722), + [sym_true] = ACTIONS(2722), + [sym_false] = ACTIONS(2722), + [sym_null] = ACTIONS(2722), + [sym_undefined] = ACTIONS(2722), + [anon_sym_AT] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2722), + [anon_sym_readonly] = ACTIONS(2722), + [anon_sym_get] = ACTIONS(2722), + [anon_sym_set] = ACTIONS(2722), + [anon_sym_declare] = ACTIONS(2722), + [anon_sym_public] = ACTIONS(2722), + [anon_sym_private] = ACTIONS(2722), + [anon_sym_protected] = ACTIONS(2722), + [anon_sym_override] = ACTIONS(2722), + [anon_sym_module] = ACTIONS(2722), + [anon_sym_any] = ACTIONS(2722), + [anon_sym_number] = ACTIONS(2722), + [anon_sym_boolean] = ACTIONS(2722), + [anon_sym_string] = ACTIONS(2722), + [anon_sym_symbol] = ACTIONS(2722), + [anon_sym_object] = ACTIONS(2722), + [anon_sym_abstract] = ACTIONS(2722), + [anon_sym_interface] = ACTIONS(2722), + [anon_sym_enum] = ACTIONS(2722), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(844)] = { + [ts_builtin_sym_end] = ACTIONS(2724), + [sym_identifier] = ACTIONS(2726), + [anon_sym_export] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_namespace] = ACTIONS(2726), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(2726), + [anon_sym_import] = ACTIONS(2726), + [anon_sym_with] = ACTIONS(2726), + [anon_sym_var] = ACTIONS(2726), + [anon_sym_let] = ACTIONS(2726), + [anon_sym_const] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_else] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_switch] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_await] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_do] = ACTIONS(2726), + [anon_sym_try] = ACTIONS(2726), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_debugger] = ACTIONS(2726), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_throw] = ACTIONS(2726), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [anon_sym_SQUOTE] = ACTIONS(2724), + [anon_sym_class] = ACTIONS(2726), + [anon_sym_async] = ACTIONS(2726), + [anon_sym_function] = ACTIONS(2726), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_using] = ACTIONS(2726), + [anon_sym_PLUS] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(2726), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_TILDE] = ACTIONS(2724), + [anon_sym_void] = ACTIONS(2726), + [anon_sym_delete] = ACTIONS(2726), + [anon_sym_PLUS_PLUS] = ACTIONS(2724), + [anon_sym_DASH_DASH] = ACTIONS(2724), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2724), + [sym_number] = ACTIONS(2724), + [sym_private_property_identifier] = ACTIONS(2724), + [sym_this] = ACTIONS(2726), + [sym_super] = ACTIONS(2726), + [sym_true] = ACTIONS(2726), + [sym_false] = ACTIONS(2726), + [sym_null] = ACTIONS(2726), + [sym_undefined] = ACTIONS(2726), + [anon_sym_AT] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2726), + [anon_sym_readonly] = ACTIONS(2726), + [anon_sym_get] = ACTIONS(2726), + [anon_sym_set] = ACTIONS(2726), + [anon_sym_declare] = ACTIONS(2726), + [anon_sym_public] = ACTIONS(2726), + [anon_sym_private] = ACTIONS(2726), + [anon_sym_protected] = ACTIONS(2726), + [anon_sym_override] = ACTIONS(2726), + [anon_sym_module] = ACTIONS(2726), + [anon_sym_any] = ACTIONS(2726), + [anon_sym_number] = ACTIONS(2726), + [anon_sym_boolean] = ACTIONS(2726), + [anon_sym_string] = ACTIONS(2726), + [anon_sym_symbol] = ACTIONS(2726), + [anon_sym_object] = ACTIONS(2726), + [anon_sym_abstract] = ACTIONS(2726), + [anon_sym_interface] = ACTIONS(2726), + [anon_sym_enum] = ACTIONS(2726), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(845)] = { + [ts_builtin_sym_end] = ACTIONS(2728), + [sym_identifier] = ACTIONS(2730), + [anon_sym_export] = ACTIONS(2730), + [anon_sym_default] = ACTIONS(2730), + [anon_sym_type] = ACTIONS(2730), + [anon_sym_namespace] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(2730), + [anon_sym_import] = ACTIONS(2730), + [anon_sym_with] = ACTIONS(2730), + [anon_sym_var] = ACTIONS(2730), + [anon_sym_let] = ACTIONS(2730), + [anon_sym_const] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_else] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_switch] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_await] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_do] = ACTIONS(2730), + [anon_sym_try] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_debugger] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_throw] = ACTIONS(2730), + [anon_sym_case] = ACTIONS(2730), + [anon_sym_yield] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(2728), + [anon_sym_SQUOTE] = ACTIONS(2728), + [anon_sym_class] = ACTIONS(2730), + [anon_sym_async] = ACTIONS(2730), + [anon_sym_function] = ACTIONS(2730), + [anon_sym_new] = ACTIONS(2730), + [anon_sym_using] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_TILDE] = ACTIONS(2728), + [anon_sym_void] = ACTIONS(2730), + [anon_sym_delete] = ACTIONS(2730), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2728), + [sym_number] = ACTIONS(2728), + [sym_private_property_identifier] = ACTIONS(2728), + [sym_this] = ACTIONS(2730), + [sym_super] = ACTIONS(2730), + [sym_true] = ACTIONS(2730), + [sym_false] = ACTIONS(2730), + [sym_null] = ACTIONS(2730), + [sym_undefined] = ACTIONS(2730), + [anon_sym_AT] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_readonly] = ACTIONS(2730), + [anon_sym_get] = ACTIONS(2730), + [anon_sym_set] = ACTIONS(2730), + [anon_sym_declare] = ACTIONS(2730), + [anon_sym_public] = ACTIONS(2730), + [anon_sym_private] = ACTIONS(2730), + [anon_sym_protected] = ACTIONS(2730), + [anon_sym_override] = ACTIONS(2730), + [anon_sym_module] = ACTIONS(2730), + [anon_sym_any] = ACTIONS(2730), + [anon_sym_number] = ACTIONS(2730), + [anon_sym_boolean] = ACTIONS(2730), + [anon_sym_string] = ACTIONS(2730), + [anon_sym_symbol] = ACTIONS(2730), + [anon_sym_object] = ACTIONS(2730), + [anon_sym_abstract] = ACTIONS(2730), + [anon_sym_interface] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(846)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(847)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(848)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(849)] = { + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_namespace] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(2718), + [anon_sym_import] = ACTIONS(2718), + [anon_sym_with] = ACTIONS(2718), + [anon_sym_var] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_else] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_do] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_debugger] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_throw] = ACTIONS(2718), + [anon_sym_case] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_class] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(2718), + [anon_sym_new] = ACTIONS(2718), + [anon_sym_using] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_TILDE] = ACTIONS(2716), + [anon_sym_void] = ACTIONS(2718), + [anon_sym_delete] = ACTIONS(2718), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2716), + [sym_number] = ACTIONS(2716), + [sym_private_property_identifier] = ACTIONS(2716), + [sym_this] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_true] = ACTIONS(2718), + [sym_false] = ACTIONS(2718), + [sym_null] = ACTIONS(2718), + [sym_undefined] = ACTIONS(2718), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_readonly] = ACTIONS(2718), + [anon_sym_get] = ACTIONS(2718), + [anon_sym_set] = ACTIONS(2718), + [anon_sym_declare] = ACTIONS(2718), + [anon_sym_public] = ACTIONS(2718), + [anon_sym_private] = ACTIONS(2718), + [anon_sym_protected] = ACTIONS(2718), + [anon_sym_override] = ACTIONS(2718), + [anon_sym_module] = ACTIONS(2718), + [anon_sym_any] = ACTIONS(2718), + [anon_sym_number] = ACTIONS(2718), + [anon_sym_boolean] = ACTIONS(2718), + [anon_sym_string] = ACTIONS(2718), + [anon_sym_symbol] = ACTIONS(2718), + [anon_sym_object] = ACTIONS(2718), + [anon_sym_abstract] = ACTIONS(2718), + [anon_sym_interface] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(850)] = { + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_namespace] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_typeof] = ACTIONS(1705), + [anon_sym_import] = ACTIONS(1705), + [anon_sym_with] = ACTIONS(1705), + [anon_sym_var] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_switch] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_debugger] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_throw] = ACTIONS(1705), + [anon_sym_case] = ACTIONS(1705), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), + [anon_sym_class] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_function] = ACTIONS(1705), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_using] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_SLASH] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_TILDE] = ACTIONS(1703), + [anon_sym_void] = ACTIONS(1705), + [anon_sym_delete] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1703), + [sym_number] = ACTIONS(1703), + [sym_private_property_identifier] = ACTIONS(1703), + [sym_this] = ACTIONS(1705), + [sym_super] = ACTIONS(1705), + [sym_true] = ACTIONS(1705), + [sym_false] = ACTIONS(1705), + [sym_null] = ACTIONS(1705), + [sym_undefined] = ACTIONS(1705), + [anon_sym_AT] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_readonly] = ACTIONS(1705), + [anon_sym_get] = ACTIONS(1705), + [anon_sym_set] = ACTIONS(1705), + [anon_sym_declare] = ACTIONS(1705), + [anon_sym_public] = ACTIONS(1705), + [anon_sym_private] = ACTIONS(1705), + [anon_sym_protected] = ACTIONS(1705), + [anon_sym_override] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_any] = ACTIONS(1705), + [anon_sym_number] = ACTIONS(1705), + [anon_sym_boolean] = ACTIONS(1705), + [anon_sym_string] = ACTIONS(1705), + [anon_sym_symbol] = ACTIONS(1705), + [anon_sym_object] = ACTIONS(1705), + [anon_sym_abstract] = ACTIONS(1705), + [anon_sym_interface] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(851)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(852)] = { + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_export] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_namespace] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_typeof] = ACTIONS(2736), + [anon_sym_import] = ACTIONS(2736), + [anon_sym_with] = ACTIONS(2736), + [anon_sym_var] = ACTIONS(2736), + [anon_sym_let] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_await] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_debugger] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_throw] = ACTIONS(2736), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_yield] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_class] = ACTIONS(2736), + [anon_sym_async] = ACTIONS(2736), + [anon_sym_function] = ACTIONS(2736), + [anon_sym_new] = ACTIONS(2736), + [anon_sym_using] = ACTIONS(2736), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_void] = ACTIONS(2736), + [anon_sym_delete] = ACTIONS(2736), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2734), + [sym_number] = ACTIONS(2734), + [sym_private_property_identifier] = ACTIONS(2734), + [sym_this] = ACTIONS(2736), + [sym_super] = ACTIONS(2736), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_null] = ACTIONS(2736), + [sym_undefined] = ACTIONS(2736), + [anon_sym_AT] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_readonly] = ACTIONS(2736), + [anon_sym_get] = ACTIONS(2736), + [anon_sym_set] = ACTIONS(2736), + [anon_sym_declare] = ACTIONS(2736), + [anon_sym_public] = ACTIONS(2736), + [anon_sym_private] = ACTIONS(2736), + [anon_sym_protected] = ACTIONS(2736), + [anon_sym_override] = ACTIONS(2736), + [anon_sym_module] = ACTIONS(2736), + [anon_sym_any] = ACTIONS(2736), + [anon_sym_number] = ACTIONS(2736), + [anon_sym_boolean] = ACTIONS(2736), + [anon_sym_string] = ACTIONS(2736), + [anon_sym_symbol] = ACTIONS(2736), + [anon_sym_object] = ACTIONS(2736), + [anon_sym_abstract] = ACTIONS(2736), + [anon_sym_interface] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(853)] = { + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_namespace] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_typeof] = ACTIONS(2740), + [anon_sym_import] = ACTIONS(2740), + [anon_sym_with] = ACTIONS(2740), + [anon_sym_var] = ACTIONS(2740), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_else] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_switch] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_await] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_do] = ACTIONS(2740), + [anon_sym_try] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_debugger] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_throw] = ACTIONS(2740), + [anon_sym_case] = ACTIONS(2740), + [anon_sym_yield] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_DQUOTE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_class] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(2740), + [anon_sym_function] = ACTIONS(2740), + [anon_sym_new] = ACTIONS(2740), + [anon_sym_using] = ACTIONS(2740), + [anon_sym_PLUS] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2738), + [anon_sym_TILDE] = ACTIONS(2738), + [anon_sym_void] = ACTIONS(2740), + [anon_sym_delete] = ACTIONS(2740), + [anon_sym_PLUS_PLUS] = ACTIONS(2738), + [anon_sym_DASH_DASH] = ACTIONS(2738), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2738), + [sym_number] = ACTIONS(2738), + [sym_private_property_identifier] = ACTIONS(2738), + [sym_this] = ACTIONS(2740), + [sym_super] = ACTIONS(2740), + [sym_true] = ACTIONS(2740), + [sym_false] = ACTIONS(2740), + [sym_null] = ACTIONS(2740), + [sym_undefined] = ACTIONS(2740), + [anon_sym_AT] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_readonly] = ACTIONS(2740), + [anon_sym_get] = ACTIONS(2740), + [anon_sym_set] = ACTIONS(2740), + [anon_sym_declare] = ACTIONS(2740), + [anon_sym_public] = ACTIONS(2740), + [anon_sym_private] = ACTIONS(2740), + [anon_sym_protected] = ACTIONS(2740), + [anon_sym_override] = ACTIONS(2740), + [anon_sym_module] = ACTIONS(2740), + [anon_sym_any] = ACTIONS(2740), + [anon_sym_number] = ACTIONS(2740), + [anon_sym_boolean] = ACTIONS(2740), + [anon_sym_string] = ACTIONS(2740), + [anon_sym_symbol] = ACTIONS(2740), + [anon_sym_object] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2740), + [anon_sym_interface] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(854)] = { + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_void] = ACTIONS(2744), + [anon_sym_delete] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2742), + [sym_number] = ACTIONS(2742), + [sym_private_property_identifier] = ACTIONS(2742), + [sym_this] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_null] = ACTIONS(2744), + [sym_undefined] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_object] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(855)] = { + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_typeof] = ACTIONS(2744), + [anon_sym_import] = ACTIONS(2744), + [anon_sym_with] = ACTIONS(2744), + [anon_sym_var] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_switch] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_await] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_do] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_debugger] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_throw] = ACTIONS(2744), + [anon_sym_case] = ACTIONS(2744), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_class] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_function] = ACTIONS(2744), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_using] = ACTIONS(2744), + [anon_sym_PLUS] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_SLASH] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_TILDE] = ACTIONS(2742), + [anon_sym_void] = ACTIONS(2744), + [anon_sym_delete] = ACTIONS(2744), + [anon_sym_PLUS_PLUS] = ACTIONS(2742), + [anon_sym_DASH_DASH] = ACTIONS(2742), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2742), + [sym_number] = ACTIONS(2742), + [sym_private_property_identifier] = ACTIONS(2742), + [sym_this] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_true] = ACTIONS(2744), + [sym_false] = ACTIONS(2744), + [sym_null] = ACTIONS(2744), + [sym_undefined] = ACTIONS(2744), + [anon_sym_AT] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_override] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + [anon_sym_object] = ACTIONS(2744), + [anon_sym_abstract] = ACTIONS(2744), + [anon_sym_interface] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(856)] = { + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_export] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_namespace] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_typeof] = ACTIONS(2748), + [anon_sym_import] = ACTIONS(2748), + [anon_sym_with] = ACTIONS(2748), + [anon_sym_var] = ACTIONS(2748), + [anon_sym_let] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_else] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_switch] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_await] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_do] = ACTIONS(2748), + [anon_sym_try] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_debugger] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_throw] = ACTIONS(2748), + [anon_sym_case] = ACTIONS(2748), + [anon_sym_yield] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_class] = ACTIONS(2748), + [anon_sym_async] = ACTIONS(2748), + [anon_sym_function] = ACTIONS(2748), + [anon_sym_new] = ACTIONS(2748), + [anon_sym_using] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_SLASH] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2746), + [anon_sym_TILDE] = ACTIONS(2746), + [anon_sym_void] = ACTIONS(2748), + [anon_sym_delete] = ACTIONS(2748), + [anon_sym_PLUS_PLUS] = ACTIONS(2746), + [anon_sym_DASH_DASH] = ACTIONS(2746), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2746), + [sym_number] = ACTIONS(2746), + [sym_private_property_identifier] = ACTIONS(2746), + [sym_this] = ACTIONS(2748), + [sym_super] = ACTIONS(2748), + [sym_true] = ACTIONS(2748), + [sym_false] = ACTIONS(2748), + [sym_null] = ACTIONS(2748), + [sym_undefined] = ACTIONS(2748), + [anon_sym_AT] = ACTIONS(2746), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_readonly] = ACTIONS(2748), + [anon_sym_get] = ACTIONS(2748), + [anon_sym_set] = ACTIONS(2748), + [anon_sym_declare] = ACTIONS(2748), + [anon_sym_public] = ACTIONS(2748), + [anon_sym_private] = ACTIONS(2748), + [anon_sym_protected] = ACTIONS(2748), + [anon_sym_override] = ACTIONS(2748), + [anon_sym_module] = ACTIONS(2748), + [anon_sym_any] = ACTIONS(2748), + [anon_sym_number] = ACTIONS(2748), + [anon_sym_boolean] = ACTIONS(2748), + [anon_sym_string] = ACTIONS(2748), + [anon_sym_symbol] = ACTIONS(2748), + [anon_sym_object] = ACTIONS(2748), + [anon_sym_abstract] = ACTIONS(2748), + [anon_sym_interface] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(857)] = { + [ts_builtin_sym_end] = ACTIONS(2750), + [sym_identifier] = ACTIONS(2752), + [anon_sym_export] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_type] = ACTIONS(2752), + [anon_sym_namespace] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_typeof] = ACTIONS(2752), + [anon_sym_import] = ACTIONS(2752), + [anon_sym_with] = ACTIONS(2752), + [anon_sym_var] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_else] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_await] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_do] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_debugger] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_throw] = ACTIONS(2752), + [anon_sym_case] = ACTIONS(2752), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_DQUOTE] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(2750), + [anon_sym_class] = ACTIONS(2752), + [anon_sym_async] = ACTIONS(2752), + [anon_sym_function] = ACTIONS(2752), + [anon_sym_new] = ACTIONS(2752), + [anon_sym_using] = ACTIONS(2752), + [anon_sym_PLUS] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_SLASH] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_TILDE] = ACTIONS(2750), + [anon_sym_void] = ACTIONS(2752), + [anon_sym_delete] = ACTIONS(2752), + [anon_sym_PLUS_PLUS] = ACTIONS(2750), + [anon_sym_DASH_DASH] = ACTIONS(2750), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2750), + [sym_number] = ACTIONS(2750), + [sym_private_property_identifier] = ACTIONS(2750), + [sym_this] = ACTIONS(2752), + [sym_super] = ACTIONS(2752), + [sym_true] = ACTIONS(2752), + [sym_false] = ACTIONS(2752), + [sym_null] = ACTIONS(2752), + [sym_undefined] = ACTIONS(2752), + [anon_sym_AT] = ACTIONS(2750), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_readonly] = ACTIONS(2752), + [anon_sym_get] = ACTIONS(2752), + [anon_sym_set] = ACTIONS(2752), + [anon_sym_declare] = ACTIONS(2752), + [anon_sym_public] = ACTIONS(2752), + [anon_sym_private] = ACTIONS(2752), + [anon_sym_protected] = ACTIONS(2752), + [anon_sym_override] = ACTIONS(2752), + [anon_sym_module] = ACTIONS(2752), + [anon_sym_any] = ACTIONS(2752), + [anon_sym_number] = ACTIONS(2752), + [anon_sym_boolean] = ACTIONS(2752), + [anon_sym_string] = ACTIONS(2752), + [anon_sym_symbol] = ACTIONS(2752), + [anon_sym_object] = ACTIONS(2752), + [anon_sym_abstract] = ACTIONS(2752), + [anon_sym_interface] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(858)] = { + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2756), + [anon_sym_export] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_type] = ACTIONS(2756), + [anon_sym_namespace] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(2756), + [anon_sym_import] = ACTIONS(2756), + [anon_sym_with] = ACTIONS(2756), + [anon_sym_var] = ACTIONS(2756), + [anon_sym_let] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_else] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_switch] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_await] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_do] = ACTIONS(2756), + [anon_sym_try] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_debugger] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_throw] = ACTIONS(2756), + [anon_sym_case] = ACTIONS(2756), + [anon_sym_yield] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_DQUOTE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_class] = ACTIONS(2756), + [anon_sym_async] = ACTIONS(2756), + [anon_sym_function] = ACTIONS(2756), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_using] = ACTIONS(2756), + [anon_sym_PLUS] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_SLASH] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_TILDE] = ACTIONS(2754), + [anon_sym_void] = ACTIONS(2756), + [anon_sym_delete] = ACTIONS(2756), + [anon_sym_PLUS_PLUS] = ACTIONS(2754), + [anon_sym_DASH_DASH] = ACTIONS(2754), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2754), + [sym_number] = ACTIONS(2754), + [sym_private_property_identifier] = ACTIONS(2754), + [sym_this] = ACTIONS(2756), + [sym_super] = ACTIONS(2756), + [sym_true] = ACTIONS(2756), + [sym_false] = ACTIONS(2756), + [sym_null] = ACTIONS(2756), + [sym_undefined] = ACTIONS(2756), + [anon_sym_AT] = ACTIONS(2754), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_readonly] = ACTIONS(2756), + [anon_sym_get] = ACTIONS(2756), + [anon_sym_set] = ACTIONS(2756), + [anon_sym_declare] = ACTIONS(2756), + [anon_sym_public] = ACTIONS(2756), + [anon_sym_private] = ACTIONS(2756), + [anon_sym_protected] = ACTIONS(2756), + [anon_sym_override] = ACTIONS(2756), + [anon_sym_module] = ACTIONS(2756), + [anon_sym_any] = ACTIONS(2756), + [anon_sym_number] = ACTIONS(2756), + [anon_sym_boolean] = ACTIONS(2756), + [anon_sym_string] = ACTIONS(2756), + [anon_sym_symbol] = ACTIONS(2756), + [anon_sym_object] = ACTIONS(2756), + [anon_sym_abstract] = ACTIONS(2756), + [anon_sym_interface] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(859)] = { + [ts_builtin_sym_end] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2760), + [anon_sym_export] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_type] = ACTIONS(2760), + [anon_sym_namespace] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(2760), + [anon_sym_import] = ACTIONS(2760), + [anon_sym_with] = ACTIONS(2760), + [anon_sym_var] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_else] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_switch] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_await] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_do] = ACTIONS(2760), + [anon_sym_try] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_debugger] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_throw] = ACTIONS(2760), + [anon_sym_case] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_DQUOTE] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2758), + [anon_sym_class] = ACTIONS(2760), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_function] = ACTIONS(2760), + [anon_sym_new] = ACTIONS(2760), + [anon_sym_using] = ACTIONS(2760), + [anon_sym_PLUS] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_SLASH] = ACTIONS(2760), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_TILDE] = ACTIONS(2758), + [anon_sym_void] = ACTIONS(2760), + [anon_sym_delete] = ACTIONS(2760), + [anon_sym_PLUS_PLUS] = ACTIONS(2758), + [anon_sym_DASH_DASH] = ACTIONS(2758), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2758), + [sym_number] = ACTIONS(2758), + [sym_private_property_identifier] = ACTIONS(2758), + [sym_this] = ACTIONS(2760), + [sym_super] = ACTIONS(2760), + [sym_true] = ACTIONS(2760), + [sym_false] = ACTIONS(2760), + [sym_null] = ACTIONS(2760), + [sym_undefined] = ACTIONS(2760), + [anon_sym_AT] = ACTIONS(2758), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_readonly] = ACTIONS(2760), + [anon_sym_get] = ACTIONS(2760), + [anon_sym_set] = ACTIONS(2760), + [anon_sym_declare] = ACTIONS(2760), + [anon_sym_public] = ACTIONS(2760), + [anon_sym_private] = ACTIONS(2760), + [anon_sym_protected] = ACTIONS(2760), + [anon_sym_override] = ACTIONS(2760), + [anon_sym_module] = ACTIONS(2760), + [anon_sym_any] = ACTIONS(2760), + [anon_sym_number] = ACTIONS(2760), + [anon_sym_boolean] = ACTIONS(2760), + [anon_sym_string] = ACTIONS(2760), + [anon_sym_symbol] = ACTIONS(2760), + [anon_sym_object] = ACTIONS(2760), + [anon_sym_abstract] = ACTIONS(2760), + [anon_sym_interface] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(860)] = { + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_export] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_namespace] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_typeof] = ACTIONS(2764), + [anon_sym_import] = ACTIONS(2764), + [anon_sym_with] = ACTIONS(2764), + [anon_sym_var] = ACTIONS(2764), + [anon_sym_let] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_else] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_switch] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_await] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2764), + [anon_sym_try] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_debugger] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_throw] = ACTIONS(2764), + [anon_sym_case] = ACTIONS(2764), + [anon_sym_yield] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_DQUOTE] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_class] = ACTIONS(2764), + [anon_sym_async] = ACTIONS(2764), + [anon_sym_function] = ACTIONS(2764), + [anon_sym_new] = ACTIONS(2764), + [anon_sym_using] = ACTIONS(2764), + [anon_sym_PLUS] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_SLASH] = ACTIONS(2764), + [anon_sym_LT] = ACTIONS(2762), + [anon_sym_TILDE] = ACTIONS(2762), + [anon_sym_void] = ACTIONS(2764), + [anon_sym_delete] = ACTIONS(2764), + [anon_sym_PLUS_PLUS] = ACTIONS(2762), + [anon_sym_DASH_DASH] = ACTIONS(2762), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2762), + [sym_number] = ACTIONS(2762), + [sym_private_property_identifier] = ACTIONS(2762), + [sym_this] = ACTIONS(2764), + [sym_super] = ACTIONS(2764), + [sym_true] = ACTIONS(2764), + [sym_false] = ACTIONS(2764), + [sym_null] = ACTIONS(2764), + [sym_undefined] = ACTIONS(2764), + [anon_sym_AT] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_readonly] = ACTIONS(2764), + [anon_sym_get] = ACTIONS(2764), + [anon_sym_set] = ACTIONS(2764), + [anon_sym_declare] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2764), + [anon_sym_private] = ACTIONS(2764), + [anon_sym_protected] = ACTIONS(2764), + [anon_sym_override] = ACTIONS(2764), + [anon_sym_module] = ACTIONS(2764), + [anon_sym_any] = ACTIONS(2764), + [anon_sym_number] = ACTIONS(2764), + [anon_sym_boolean] = ACTIONS(2764), + [anon_sym_string] = ACTIONS(2764), + [anon_sym_symbol] = ACTIONS(2764), + [anon_sym_object] = ACTIONS(2764), + [anon_sym_abstract] = ACTIONS(2764), + [anon_sym_interface] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(861)] = { + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_identifier] = ACTIONS(2768), + [anon_sym_export] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_namespace] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_typeof] = ACTIONS(2768), + [anon_sym_import] = ACTIONS(2768), + [anon_sym_with] = ACTIONS(2768), + [anon_sym_var] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_else] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_switch] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_await] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_do] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_debugger] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_throw] = ACTIONS(2768), + [anon_sym_case] = ACTIONS(2768), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2766), + [anon_sym_class] = ACTIONS(2768), + [anon_sym_async] = ACTIONS(2768), + [anon_sym_function] = ACTIONS(2768), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_using] = ACTIONS(2768), + [anon_sym_PLUS] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_SLASH] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2766), + [anon_sym_TILDE] = ACTIONS(2766), + [anon_sym_void] = ACTIONS(2768), + [anon_sym_delete] = ACTIONS(2768), + [anon_sym_PLUS_PLUS] = ACTIONS(2766), + [anon_sym_DASH_DASH] = ACTIONS(2766), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2766), + [sym_number] = ACTIONS(2766), + [sym_private_property_identifier] = ACTIONS(2766), + [sym_this] = ACTIONS(2768), + [sym_super] = ACTIONS(2768), + [sym_true] = ACTIONS(2768), + [sym_false] = ACTIONS(2768), + [sym_null] = ACTIONS(2768), + [sym_undefined] = ACTIONS(2768), + [anon_sym_AT] = ACTIONS(2766), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_readonly] = ACTIONS(2768), + [anon_sym_get] = ACTIONS(2768), + [anon_sym_set] = ACTIONS(2768), + [anon_sym_declare] = ACTIONS(2768), + [anon_sym_public] = ACTIONS(2768), + [anon_sym_private] = ACTIONS(2768), + [anon_sym_protected] = ACTIONS(2768), + [anon_sym_override] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_any] = ACTIONS(2768), + [anon_sym_number] = ACTIONS(2768), + [anon_sym_boolean] = ACTIONS(2768), + [anon_sym_string] = ACTIONS(2768), + [anon_sym_symbol] = ACTIONS(2768), + [anon_sym_object] = ACTIONS(2768), + [anon_sym_abstract] = ACTIONS(2768), + [anon_sym_interface] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(862)] = { + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2772), + [anon_sym_export] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_type] = ACTIONS(2772), + [anon_sym_namespace] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_typeof] = ACTIONS(2772), + [anon_sym_import] = ACTIONS(2772), + [anon_sym_with] = ACTIONS(2772), + [anon_sym_var] = ACTIONS(2772), + [anon_sym_let] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_else] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym_await] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_do] = ACTIONS(2772), + [anon_sym_try] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_debugger] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_throw] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2772), + [anon_sym_yield] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2770), + [anon_sym_class] = ACTIONS(2772), + [anon_sym_async] = ACTIONS(2772), + [anon_sym_function] = ACTIONS(2772), + [anon_sym_new] = ACTIONS(2772), + [anon_sym_using] = ACTIONS(2772), + [anon_sym_PLUS] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_SLASH] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_TILDE] = ACTIONS(2770), + [anon_sym_void] = ACTIONS(2772), + [anon_sym_delete] = ACTIONS(2772), + [anon_sym_PLUS_PLUS] = ACTIONS(2770), + [anon_sym_DASH_DASH] = ACTIONS(2770), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2770), + [sym_number] = ACTIONS(2770), + [sym_private_property_identifier] = ACTIONS(2770), + [sym_this] = ACTIONS(2772), + [sym_super] = ACTIONS(2772), + [sym_true] = ACTIONS(2772), + [sym_false] = ACTIONS(2772), + [sym_null] = ACTIONS(2772), + [sym_undefined] = ACTIONS(2772), + [anon_sym_AT] = ACTIONS(2770), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_readonly] = ACTIONS(2772), + [anon_sym_get] = ACTIONS(2772), + [anon_sym_set] = ACTIONS(2772), + [anon_sym_declare] = ACTIONS(2772), + [anon_sym_public] = ACTIONS(2772), + [anon_sym_private] = ACTIONS(2772), + [anon_sym_protected] = ACTIONS(2772), + [anon_sym_override] = ACTIONS(2772), + [anon_sym_module] = ACTIONS(2772), + [anon_sym_any] = ACTIONS(2772), + [anon_sym_number] = ACTIONS(2772), + [anon_sym_boolean] = ACTIONS(2772), + [anon_sym_string] = ACTIONS(2772), + [anon_sym_symbol] = ACTIONS(2772), + [anon_sym_object] = ACTIONS(2772), + [anon_sym_abstract] = ACTIONS(2772), + [anon_sym_interface] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(863)] = { + [ts_builtin_sym_end] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2776), + [anon_sym_export] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_type] = ACTIONS(2776), + [anon_sym_namespace] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(2776), + [anon_sym_import] = ACTIONS(2776), + [anon_sym_with] = ACTIONS(2776), + [anon_sym_var] = ACTIONS(2776), + [anon_sym_let] = ACTIONS(2776), + [anon_sym_const] = ACTIONS(2776), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_else] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_switch] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_await] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_do] = ACTIONS(2776), + [anon_sym_try] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_debugger] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_throw] = ACTIONS(2776), + [anon_sym_case] = ACTIONS(2776), + [anon_sym_yield] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_DQUOTE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_class] = ACTIONS(2776), + [anon_sym_async] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(2776), + [anon_sym_new] = ACTIONS(2776), + [anon_sym_using] = ACTIONS(2776), + [anon_sym_PLUS] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_SLASH] = ACTIONS(2776), + [anon_sym_LT] = ACTIONS(2774), + [anon_sym_TILDE] = ACTIONS(2774), + [anon_sym_void] = ACTIONS(2776), + [anon_sym_delete] = ACTIONS(2776), + [anon_sym_PLUS_PLUS] = ACTIONS(2774), + [anon_sym_DASH_DASH] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2774), + [sym_number] = ACTIONS(2774), + [sym_private_property_identifier] = ACTIONS(2774), + [sym_this] = ACTIONS(2776), + [sym_super] = ACTIONS(2776), + [sym_true] = ACTIONS(2776), + [sym_false] = ACTIONS(2776), + [sym_null] = ACTIONS(2776), + [sym_undefined] = ACTIONS(2776), + [anon_sym_AT] = ACTIONS(2774), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_readonly] = ACTIONS(2776), + [anon_sym_get] = ACTIONS(2776), + [anon_sym_set] = ACTIONS(2776), + [anon_sym_declare] = ACTIONS(2776), + [anon_sym_public] = ACTIONS(2776), + [anon_sym_private] = ACTIONS(2776), + [anon_sym_protected] = ACTIONS(2776), + [anon_sym_override] = ACTIONS(2776), + [anon_sym_module] = ACTIONS(2776), + [anon_sym_any] = ACTIONS(2776), + [anon_sym_number] = ACTIONS(2776), + [anon_sym_boolean] = ACTIONS(2776), + [anon_sym_string] = ACTIONS(2776), + [anon_sym_symbol] = ACTIONS(2776), + [anon_sym_object] = ACTIONS(2776), + [anon_sym_abstract] = ACTIONS(2776), + [anon_sym_interface] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(864)] = { + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_type] = ACTIONS(2780), + [anon_sym_namespace] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_typeof] = ACTIONS(2780), + [anon_sym_import] = ACTIONS(2780), + [anon_sym_with] = ACTIONS(2780), + [anon_sym_var] = ACTIONS(2780), + [anon_sym_let] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_else] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_switch] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_await] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_do] = ACTIONS(2780), + [anon_sym_try] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_debugger] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_throw] = ACTIONS(2780), + [anon_sym_case] = ACTIONS(2780), + [anon_sym_yield] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_class] = ACTIONS(2780), + [anon_sym_async] = ACTIONS(2780), + [anon_sym_function] = ACTIONS(2780), + [anon_sym_new] = ACTIONS(2780), + [anon_sym_using] = ACTIONS(2780), + [anon_sym_PLUS] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_SLASH] = ACTIONS(2780), + [anon_sym_LT] = ACTIONS(2778), + [anon_sym_TILDE] = ACTIONS(2778), + [anon_sym_void] = ACTIONS(2780), + [anon_sym_delete] = ACTIONS(2780), + [anon_sym_PLUS_PLUS] = ACTIONS(2778), + [anon_sym_DASH_DASH] = ACTIONS(2778), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2778), + [sym_number] = ACTIONS(2778), + [sym_private_property_identifier] = ACTIONS(2778), + [sym_this] = ACTIONS(2780), + [sym_super] = ACTIONS(2780), + [sym_true] = ACTIONS(2780), + [sym_false] = ACTIONS(2780), + [sym_null] = ACTIONS(2780), + [sym_undefined] = ACTIONS(2780), + [anon_sym_AT] = ACTIONS(2778), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_readonly] = ACTIONS(2780), + [anon_sym_get] = ACTIONS(2780), + [anon_sym_set] = ACTIONS(2780), + [anon_sym_declare] = ACTIONS(2780), + [anon_sym_public] = ACTIONS(2780), + [anon_sym_private] = ACTIONS(2780), + [anon_sym_protected] = ACTIONS(2780), + [anon_sym_override] = ACTIONS(2780), + [anon_sym_module] = ACTIONS(2780), + [anon_sym_any] = ACTIONS(2780), + [anon_sym_number] = ACTIONS(2780), + [anon_sym_boolean] = ACTIONS(2780), + [anon_sym_string] = ACTIONS(2780), + [anon_sym_symbol] = ACTIONS(2780), + [anon_sym_object] = ACTIONS(2780), + [anon_sym_abstract] = ACTIONS(2780), + [anon_sym_interface] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(865)] = { + [ts_builtin_sym_end] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2784), + [anon_sym_export] = ACTIONS(2784), + [anon_sym_default] = ACTIONS(2784), + [anon_sym_type] = ACTIONS(2784), + [anon_sym_namespace] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2782), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_typeof] = ACTIONS(2784), + [anon_sym_import] = ACTIONS(2784), + [anon_sym_with] = ACTIONS(2784), + [anon_sym_var] = ACTIONS(2784), + [anon_sym_let] = ACTIONS(2784), + [anon_sym_const] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2782), + [anon_sym_else] = ACTIONS(2784), + [anon_sym_if] = ACTIONS(2784), + [anon_sym_switch] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2782), + [anon_sym_await] = ACTIONS(2784), + [anon_sym_while] = ACTIONS(2784), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_try] = ACTIONS(2784), + [anon_sym_break] = ACTIONS(2784), + [anon_sym_continue] = ACTIONS(2784), + [anon_sym_debugger] = ACTIONS(2784), + [anon_sym_return] = ACTIONS(2784), + [anon_sym_throw] = ACTIONS(2784), + [anon_sym_case] = ACTIONS(2784), + [anon_sym_yield] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2782), + [anon_sym_DQUOTE] = ACTIONS(2782), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_class] = ACTIONS(2784), + [anon_sym_async] = ACTIONS(2784), + [anon_sym_function] = ACTIONS(2784), + [anon_sym_new] = ACTIONS(2784), + [anon_sym_using] = ACTIONS(2784), + [anon_sym_PLUS] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_SLASH] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_TILDE] = ACTIONS(2782), + [anon_sym_void] = ACTIONS(2784), + [anon_sym_delete] = ACTIONS(2784), + [anon_sym_PLUS_PLUS] = ACTIONS(2782), + [anon_sym_DASH_DASH] = ACTIONS(2782), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2782), + [sym_number] = ACTIONS(2782), + [sym_private_property_identifier] = ACTIONS(2782), + [sym_this] = ACTIONS(2784), + [sym_super] = ACTIONS(2784), + [sym_true] = ACTIONS(2784), + [sym_false] = ACTIONS(2784), + [sym_null] = ACTIONS(2784), + [sym_undefined] = ACTIONS(2784), + [anon_sym_AT] = ACTIONS(2782), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_readonly] = ACTIONS(2784), + [anon_sym_get] = ACTIONS(2784), + [anon_sym_set] = ACTIONS(2784), + [anon_sym_declare] = ACTIONS(2784), + [anon_sym_public] = ACTIONS(2784), + [anon_sym_private] = ACTIONS(2784), + [anon_sym_protected] = ACTIONS(2784), + [anon_sym_override] = ACTIONS(2784), + [anon_sym_module] = ACTIONS(2784), + [anon_sym_any] = ACTIONS(2784), + [anon_sym_number] = ACTIONS(2784), + [anon_sym_boolean] = ACTIONS(2784), + [anon_sym_string] = ACTIONS(2784), + [anon_sym_symbol] = ACTIONS(2784), + [anon_sym_object] = ACTIONS(2784), + [anon_sym_abstract] = ACTIONS(2784), + [anon_sym_interface] = ACTIONS(2784), + [anon_sym_enum] = ACTIONS(2784), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(866)] = { + [ts_builtin_sym_end] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2788), + [anon_sym_export] = ACTIONS(2788), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_namespace] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2786), + [anon_sym_RBRACE] = ACTIONS(2786), + [anon_sym_typeof] = ACTIONS(2788), + [anon_sym_import] = ACTIONS(2788), + [anon_sym_with] = ACTIONS(2788), + [anon_sym_var] = ACTIONS(2788), + [anon_sym_let] = ACTIONS(2788), + [anon_sym_const] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2786), + [anon_sym_else] = ACTIONS(2788), + [anon_sym_if] = ACTIONS(2788), + [anon_sym_switch] = ACTIONS(2788), + [anon_sym_for] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_await] = ACTIONS(2788), + [anon_sym_while] = ACTIONS(2788), + [anon_sym_do] = ACTIONS(2788), + [anon_sym_try] = ACTIONS(2788), + [anon_sym_break] = ACTIONS(2788), + [anon_sym_continue] = ACTIONS(2788), + [anon_sym_debugger] = ACTIONS(2788), + [anon_sym_return] = ACTIONS(2788), + [anon_sym_throw] = ACTIONS(2788), + [anon_sym_case] = ACTIONS(2788), + [anon_sym_yield] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2786), + [anon_sym_DQUOTE] = ACTIONS(2786), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_class] = ACTIONS(2788), + [anon_sym_async] = ACTIONS(2788), + [anon_sym_function] = ACTIONS(2788), + [anon_sym_new] = ACTIONS(2788), + [anon_sym_using] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2788), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2786), + [anon_sym_TILDE] = ACTIONS(2786), + [anon_sym_void] = ACTIONS(2788), + [anon_sym_delete] = ACTIONS(2788), + [anon_sym_PLUS_PLUS] = ACTIONS(2786), + [anon_sym_DASH_DASH] = ACTIONS(2786), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2786), + [sym_number] = ACTIONS(2786), + [sym_private_property_identifier] = ACTIONS(2786), + [sym_this] = ACTIONS(2788), + [sym_super] = ACTIONS(2788), + [sym_true] = ACTIONS(2788), + [sym_false] = ACTIONS(2788), + [sym_null] = ACTIONS(2788), + [sym_undefined] = ACTIONS(2788), + [anon_sym_AT] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_get] = ACTIONS(2788), + [anon_sym_set] = ACTIONS(2788), + [anon_sym_declare] = ACTIONS(2788), + [anon_sym_public] = ACTIONS(2788), + [anon_sym_private] = ACTIONS(2788), + [anon_sym_protected] = ACTIONS(2788), + [anon_sym_override] = ACTIONS(2788), + [anon_sym_module] = ACTIONS(2788), + [anon_sym_any] = ACTIONS(2788), + [anon_sym_number] = ACTIONS(2788), + [anon_sym_boolean] = ACTIONS(2788), + [anon_sym_string] = ACTIONS(2788), + [anon_sym_symbol] = ACTIONS(2788), + [anon_sym_object] = ACTIONS(2788), + [anon_sym_abstract] = ACTIONS(2788), + [anon_sym_interface] = ACTIONS(2788), + [anon_sym_enum] = ACTIONS(2788), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(867)] = { + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_identifier] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1691), + [anon_sym_namespace] = ACTIONS(1691), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_typeof] = ACTIONS(1691), + [anon_sym_import] = ACTIONS(1691), + [anon_sym_with] = ACTIONS(1691), + [anon_sym_var] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1691), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1691), + [anon_sym_switch] = ACTIONS(1691), + [anon_sym_for] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_while] = ACTIONS(1691), + [anon_sym_do] = ACTIONS(1691), + [anon_sym_try] = ACTIONS(1691), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1691), + [anon_sym_debugger] = ACTIONS(1691), + [anon_sym_return] = ACTIONS(1691), + [anon_sym_throw] = ACTIONS(1691), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_yield] = ACTIONS(1691), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [anon_sym_SQUOTE] = ACTIONS(1689), + [anon_sym_class] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(1691), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_using] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1691), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_void] = ACTIONS(1691), + [anon_sym_delete] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1689), + [sym_number] = ACTIONS(1689), + [sym_private_property_identifier] = ACTIONS(1689), + [sym_this] = ACTIONS(1691), + [sym_super] = ACTIONS(1691), + [sym_true] = ACTIONS(1691), + [sym_false] = ACTIONS(1691), + [sym_null] = ACTIONS(1691), + [sym_undefined] = ACTIONS(1691), + [anon_sym_AT] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1691), + [anon_sym_readonly] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1691), + [anon_sym_set] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1691), + [anon_sym_public] = ACTIONS(1691), + [anon_sym_private] = ACTIONS(1691), + [anon_sym_protected] = ACTIONS(1691), + [anon_sym_override] = ACTIONS(1691), + [anon_sym_module] = ACTIONS(1691), + [anon_sym_any] = ACTIONS(1691), + [anon_sym_number] = ACTIONS(1691), + [anon_sym_boolean] = ACTIONS(1691), + [anon_sym_string] = ACTIONS(1691), + [anon_sym_symbol] = ACTIONS(1691), + [anon_sym_object] = ACTIONS(1691), + [anon_sym_abstract] = ACTIONS(1691), + [anon_sym_interface] = ACTIONS(1691), + [anon_sym_enum] = ACTIONS(1691), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(868)] = { + [ts_builtin_sym_end] = ACTIONS(2790), + [sym_identifier] = ACTIONS(2792), + [anon_sym_export] = ACTIONS(2792), + [anon_sym_default] = ACTIONS(2792), + [anon_sym_type] = ACTIONS(2792), + [anon_sym_namespace] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_RBRACE] = ACTIONS(2790), + [anon_sym_typeof] = ACTIONS(2792), + [anon_sym_import] = ACTIONS(2792), + [anon_sym_with] = ACTIONS(2792), + [anon_sym_var] = ACTIONS(2792), + [anon_sym_let] = ACTIONS(2792), + [anon_sym_const] = ACTIONS(2792), + [anon_sym_BANG] = ACTIONS(2790), + [anon_sym_else] = ACTIONS(2792), + [anon_sym_if] = ACTIONS(2792), + [anon_sym_switch] = ACTIONS(2792), + [anon_sym_for] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_await] = ACTIONS(2792), + [anon_sym_while] = ACTIONS(2792), + [anon_sym_do] = ACTIONS(2792), + [anon_sym_try] = ACTIONS(2792), + [anon_sym_break] = ACTIONS(2792), + [anon_sym_continue] = ACTIONS(2792), + [anon_sym_debugger] = ACTIONS(2792), + [anon_sym_return] = ACTIONS(2792), + [anon_sym_throw] = ACTIONS(2792), + [anon_sym_case] = ACTIONS(2792), + [anon_sym_yield] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [anon_sym_SQUOTE] = ACTIONS(2790), + [anon_sym_class] = ACTIONS(2792), + [anon_sym_async] = ACTIONS(2792), + [anon_sym_function] = ACTIONS(2792), + [anon_sym_new] = ACTIONS(2792), + [anon_sym_using] = ACTIONS(2792), + [anon_sym_PLUS] = ACTIONS(2792), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_SLASH] = ACTIONS(2792), + [anon_sym_LT] = ACTIONS(2790), + [anon_sym_TILDE] = ACTIONS(2790), + [anon_sym_void] = ACTIONS(2792), + [anon_sym_delete] = ACTIONS(2792), + [anon_sym_PLUS_PLUS] = ACTIONS(2790), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2790), + [sym_number] = ACTIONS(2790), + [sym_private_property_identifier] = ACTIONS(2790), + [sym_this] = ACTIONS(2792), + [sym_super] = ACTIONS(2792), + [sym_true] = ACTIONS(2792), + [sym_false] = ACTIONS(2792), + [sym_null] = ACTIONS(2792), + [sym_undefined] = ACTIONS(2792), + [anon_sym_AT] = ACTIONS(2790), + [anon_sym_static] = ACTIONS(2792), + [anon_sym_readonly] = ACTIONS(2792), + [anon_sym_get] = ACTIONS(2792), + [anon_sym_set] = ACTIONS(2792), + [anon_sym_declare] = ACTIONS(2792), + [anon_sym_public] = ACTIONS(2792), + [anon_sym_private] = ACTIONS(2792), + [anon_sym_protected] = ACTIONS(2792), + [anon_sym_override] = ACTIONS(2792), + [anon_sym_module] = ACTIONS(2792), + [anon_sym_any] = ACTIONS(2792), + [anon_sym_number] = ACTIONS(2792), + [anon_sym_boolean] = ACTIONS(2792), + [anon_sym_string] = ACTIONS(2792), + [anon_sym_symbol] = ACTIONS(2792), + [anon_sym_object] = ACTIONS(2792), + [anon_sym_abstract] = ACTIONS(2792), + [anon_sym_interface] = ACTIONS(2792), + [anon_sym_enum] = ACTIONS(2792), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(869)] = { + [ts_builtin_sym_end] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2796), + [anon_sym_export] = ACTIONS(2796), + [anon_sym_default] = ACTIONS(2796), + [anon_sym_type] = ACTIONS(2796), + [anon_sym_namespace] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2794), + [anon_sym_RBRACE] = ACTIONS(2794), + [anon_sym_typeof] = ACTIONS(2796), + [anon_sym_import] = ACTIONS(2796), + [anon_sym_with] = ACTIONS(2796), + [anon_sym_var] = ACTIONS(2796), + [anon_sym_let] = ACTIONS(2796), + [anon_sym_const] = ACTIONS(2796), + [anon_sym_BANG] = ACTIONS(2794), + [anon_sym_else] = ACTIONS(2796), + [anon_sym_if] = ACTIONS(2796), + [anon_sym_switch] = ACTIONS(2796), + [anon_sym_for] = ACTIONS(2796), + [anon_sym_LPAREN] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_await] = ACTIONS(2796), + [anon_sym_while] = ACTIONS(2796), + [anon_sym_do] = ACTIONS(2796), + [anon_sym_try] = ACTIONS(2796), + [anon_sym_break] = ACTIONS(2796), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_debugger] = ACTIONS(2796), + [anon_sym_return] = ACTIONS(2796), + [anon_sym_throw] = ACTIONS(2796), + [anon_sym_case] = ACTIONS(2796), + [anon_sym_yield] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2794), + [anon_sym_DQUOTE] = ACTIONS(2794), + [anon_sym_SQUOTE] = ACTIONS(2794), + [anon_sym_class] = ACTIONS(2796), + [anon_sym_async] = ACTIONS(2796), + [anon_sym_function] = ACTIONS(2796), + [anon_sym_new] = ACTIONS(2796), + [anon_sym_using] = ACTIONS(2796), + [anon_sym_PLUS] = ACTIONS(2796), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_SLASH] = ACTIONS(2796), + [anon_sym_LT] = ACTIONS(2794), + [anon_sym_TILDE] = ACTIONS(2794), + [anon_sym_void] = ACTIONS(2796), + [anon_sym_delete] = ACTIONS(2796), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2794), + [sym_number] = ACTIONS(2794), + [sym_private_property_identifier] = ACTIONS(2794), + [sym_this] = ACTIONS(2796), + [sym_super] = ACTIONS(2796), + [sym_true] = ACTIONS(2796), + [sym_false] = ACTIONS(2796), + [sym_null] = ACTIONS(2796), + [sym_undefined] = ACTIONS(2796), + [anon_sym_AT] = ACTIONS(2794), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_readonly] = ACTIONS(2796), + [anon_sym_get] = ACTIONS(2796), + [anon_sym_set] = ACTIONS(2796), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_public] = ACTIONS(2796), + [anon_sym_private] = ACTIONS(2796), + [anon_sym_protected] = ACTIONS(2796), + [anon_sym_override] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2796), + [anon_sym_any] = ACTIONS(2796), + [anon_sym_number] = ACTIONS(2796), + [anon_sym_boolean] = ACTIONS(2796), + [anon_sym_string] = ACTIONS(2796), + [anon_sym_symbol] = ACTIONS(2796), + [anon_sym_object] = ACTIONS(2796), + [anon_sym_abstract] = ACTIONS(2796), + [anon_sym_interface] = ACTIONS(2796), + [anon_sym_enum] = ACTIONS(2796), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(870)] = { + [ts_builtin_sym_end] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2800), + [anon_sym_export] = ACTIONS(2800), + [anon_sym_default] = ACTIONS(2800), + [anon_sym_type] = ACTIONS(2800), + [anon_sym_namespace] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2798), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_typeof] = ACTIONS(2800), + [anon_sym_import] = ACTIONS(2800), + [anon_sym_with] = ACTIONS(2800), + [anon_sym_var] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2800), + [anon_sym_const] = ACTIONS(2800), + [anon_sym_BANG] = ACTIONS(2798), + [anon_sym_else] = ACTIONS(2800), + [anon_sym_if] = ACTIONS(2800), + [anon_sym_switch] = ACTIONS(2800), + [anon_sym_for] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_await] = ACTIONS(2800), + [anon_sym_while] = ACTIONS(2800), + [anon_sym_do] = ACTIONS(2800), + [anon_sym_try] = ACTIONS(2800), + [anon_sym_break] = ACTIONS(2800), + [anon_sym_continue] = ACTIONS(2800), + [anon_sym_debugger] = ACTIONS(2800), + [anon_sym_return] = ACTIONS(2800), + [anon_sym_throw] = ACTIONS(2800), + [anon_sym_case] = ACTIONS(2800), + [anon_sym_yield] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2798), + [anon_sym_DQUOTE] = ACTIONS(2798), + [anon_sym_SQUOTE] = ACTIONS(2798), + [anon_sym_class] = ACTIONS(2800), + [anon_sym_async] = ACTIONS(2800), + [anon_sym_function] = ACTIONS(2800), + [anon_sym_new] = ACTIONS(2800), + [anon_sym_using] = ACTIONS(2800), + [anon_sym_PLUS] = ACTIONS(2800), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_SLASH] = ACTIONS(2800), + [anon_sym_LT] = ACTIONS(2798), + [anon_sym_TILDE] = ACTIONS(2798), + [anon_sym_void] = ACTIONS(2800), + [anon_sym_delete] = ACTIONS(2800), + [anon_sym_PLUS_PLUS] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2798), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2798), + [sym_number] = ACTIONS(2798), + [sym_private_property_identifier] = ACTIONS(2798), + [sym_this] = ACTIONS(2800), + [sym_super] = ACTIONS(2800), + [sym_true] = ACTIONS(2800), + [sym_false] = ACTIONS(2800), + [sym_null] = ACTIONS(2800), + [sym_undefined] = ACTIONS(2800), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_static] = ACTIONS(2800), + [anon_sym_readonly] = ACTIONS(2800), + [anon_sym_get] = ACTIONS(2800), + [anon_sym_set] = ACTIONS(2800), + [anon_sym_declare] = ACTIONS(2800), + [anon_sym_public] = ACTIONS(2800), + [anon_sym_private] = ACTIONS(2800), + [anon_sym_protected] = ACTIONS(2800), + [anon_sym_override] = ACTIONS(2800), + [anon_sym_module] = ACTIONS(2800), + [anon_sym_any] = ACTIONS(2800), + [anon_sym_number] = ACTIONS(2800), + [anon_sym_boolean] = ACTIONS(2800), + [anon_sym_string] = ACTIONS(2800), + [anon_sym_symbol] = ACTIONS(2800), + [anon_sym_object] = ACTIONS(2800), + [anon_sym_abstract] = ACTIONS(2800), + [anon_sym_interface] = ACTIONS(2800), + [anon_sym_enum] = ACTIONS(2800), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(871)] = { + [ts_builtin_sym_end] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2804), + [anon_sym_export] = ACTIONS(2804), + [anon_sym_default] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_typeof] = ACTIONS(2804), + [anon_sym_import] = ACTIONS(2804), + [anon_sym_with] = ACTIONS(2804), + [anon_sym_var] = ACTIONS(2804), + [anon_sym_let] = ACTIONS(2804), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_BANG] = ACTIONS(2802), + [anon_sym_else] = ACTIONS(2804), + [anon_sym_if] = ACTIONS(2804), + [anon_sym_switch] = ACTIONS(2804), + [anon_sym_for] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_await] = ACTIONS(2804), + [anon_sym_while] = ACTIONS(2804), + [anon_sym_do] = ACTIONS(2804), + [anon_sym_try] = ACTIONS(2804), + [anon_sym_break] = ACTIONS(2804), + [anon_sym_continue] = ACTIONS(2804), + [anon_sym_debugger] = ACTIONS(2804), + [anon_sym_return] = ACTIONS(2804), + [anon_sym_throw] = ACTIONS(2804), + [anon_sym_case] = ACTIONS(2804), + [anon_sym_yield] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(2802), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_class] = ACTIONS(2804), + [anon_sym_async] = ACTIONS(2804), + [anon_sym_function] = ACTIONS(2804), + [anon_sym_new] = ACTIONS(2804), + [anon_sym_using] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_SLASH] = ACTIONS(2804), + [anon_sym_LT] = ACTIONS(2802), + [anon_sym_TILDE] = ACTIONS(2802), + [anon_sym_void] = ACTIONS(2804), + [anon_sym_delete] = ACTIONS(2804), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2802), + [sym_number] = ACTIONS(2802), + [sym_private_property_identifier] = ACTIONS(2802), + [sym_this] = ACTIONS(2804), + [sym_super] = ACTIONS(2804), + [sym_true] = ACTIONS(2804), + [sym_false] = ACTIONS(2804), + [sym_null] = ACTIONS(2804), + [sym_undefined] = ACTIONS(2804), + [anon_sym_AT] = ACTIONS(2802), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_readonly] = ACTIONS(2804), + [anon_sym_get] = ACTIONS(2804), + [anon_sym_set] = ACTIONS(2804), + [anon_sym_declare] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_protected] = ACTIONS(2804), + [anon_sym_override] = ACTIONS(2804), + [anon_sym_module] = ACTIONS(2804), + [anon_sym_any] = ACTIONS(2804), + [anon_sym_number] = ACTIONS(2804), + [anon_sym_boolean] = ACTIONS(2804), + [anon_sym_string] = ACTIONS(2804), + [anon_sym_symbol] = ACTIONS(2804), + [anon_sym_object] = ACTIONS(2804), + [anon_sym_abstract] = ACTIONS(2804), + [anon_sym_interface] = ACTIONS(2804), + [anon_sym_enum] = ACTIONS(2804), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(872)] = { + [ts_builtin_sym_end] = ACTIONS(2806), + [sym_identifier] = ACTIONS(2808), + [anon_sym_export] = ACTIONS(2808), + [anon_sym_default] = ACTIONS(2808), + [anon_sym_type] = ACTIONS(2808), + [anon_sym_namespace] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2806), + [anon_sym_RBRACE] = ACTIONS(2806), + [anon_sym_typeof] = ACTIONS(2808), + [anon_sym_import] = ACTIONS(2808), + [anon_sym_with] = ACTIONS(2808), + [anon_sym_var] = ACTIONS(2808), + [anon_sym_let] = ACTIONS(2808), + [anon_sym_const] = ACTIONS(2808), + [anon_sym_BANG] = ACTIONS(2806), + [anon_sym_else] = ACTIONS(2808), + [anon_sym_if] = ACTIONS(2808), + [anon_sym_switch] = ACTIONS(2808), + [anon_sym_for] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2806), + [anon_sym_await] = ACTIONS(2808), + [anon_sym_while] = ACTIONS(2808), + [anon_sym_do] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2808), + [anon_sym_break] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2808), + [anon_sym_debugger] = ACTIONS(2808), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_throw] = ACTIONS(2808), + [anon_sym_case] = ACTIONS(2808), + [anon_sym_yield] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2806), + [anon_sym_DQUOTE] = ACTIONS(2806), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_async] = ACTIONS(2808), + [anon_sym_function] = ACTIONS(2808), + [anon_sym_new] = ACTIONS(2808), + [anon_sym_using] = ACTIONS(2808), + [anon_sym_PLUS] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_SLASH] = ACTIONS(2808), + [anon_sym_LT] = ACTIONS(2806), + [anon_sym_TILDE] = ACTIONS(2806), + [anon_sym_void] = ACTIONS(2808), + [anon_sym_delete] = ACTIONS(2808), + [anon_sym_PLUS_PLUS] = ACTIONS(2806), + [anon_sym_DASH_DASH] = ACTIONS(2806), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2806), + [sym_number] = ACTIONS(2806), + [sym_private_property_identifier] = ACTIONS(2806), + [sym_this] = ACTIONS(2808), + [sym_super] = ACTIONS(2808), + [sym_true] = ACTIONS(2808), + [sym_false] = ACTIONS(2808), + [sym_null] = ACTIONS(2808), + [sym_undefined] = ACTIONS(2808), + [anon_sym_AT] = ACTIONS(2806), + [anon_sym_static] = ACTIONS(2808), + [anon_sym_readonly] = ACTIONS(2808), + [anon_sym_get] = ACTIONS(2808), + [anon_sym_set] = ACTIONS(2808), + [anon_sym_declare] = ACTIONS(2808), + [anon_sym_public] = ACTIONS(2808), + [anon_sym_private] = ACTIONS(2808), + [anon_sym_protected] = ACTIONS(2808), + [anon_sym_override] = ACTIONS(2808), + [anon_sym_module] = ACTIONS(2808), + [anon_sym_any] = ACTIONS(2808), + [anon_sym_number] = ACTIONS(2808), + [anon_sym_boolean] = ACTIONS(2808), + [anon_sym_string] = ACTIONS(2808), + [anon_sym_symbol] = ACTIONS(2808), + [anon_sym_object] = ACTIONS(2808), + [anon_sym_abstract] = ACTIONS(2808), + [anon_sym_interface] = ACTIONS(2808), + [anon_sym_enum] = ACTIONS(2808), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(873)] = { + [ts_builtin_sym_end] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2812), + [anon_sym_export] = ACTIONS(2812), + [anon_sym_default] = ACTIONS(2812), + [anon_sym_type] = ACTIONS(2812), + [anon_sym_namespace] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2810), + [anon_sym_RBRACE] = ACTIONS(2810), + [anon_sym_typeof] = ACTIONS(2812), + [anon_sym_import] = ACTIONS(2812), + [anon_sym_with] = ACTIONS(2812), + [anon_sym_var] = ACTIONS(2812), + [anon_sym_let] = ACTIONS(2812), + [anon_sym_const] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2810), + [anon_sym_else] = ACTIONS(2812), + [anon_sym_if] = ACTIONS(2812), + [anon_sym_switch] = ACTIONS(2812), + [anon_sym_for] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2810), + [anon_sym_await] = ACTIONS(2812), + [anon_sym_while] = ACTIONS(2812), + [anon_sym_do] = ACTIONS(2812), + [anon_sym_try] = ACTIONS(2812), + [anon_sym_break] = ACTIONS(2812), + [anon_sym_continue] = ACTIONS(2812), + [anon_sym_debugger] = ACTIONS(2812), + [anon_sym_return] = ACTIONS(2812), + [anon_sym_throw] = ACTIONS(2812), + [anon_sym_case] = ACTIONS(2812), + [anon_sym_yield] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2810), + [anon_sym_DQUOTE] = ACTIONS(2810), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_class] = ACTIONS(2812), + [anon_sym_async] = ACTIONS(2812), + [anon_sym_function] = ACTIONS(2812), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_using] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_SLASH] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_TILDE] = ACTIONS(2810), + [anon_sym_void] = ACTIONS(2812), + [anon_sym_delete] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2810), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2810), + [sym_number] = ACTIONS(2810), + [sym_private_property_identifier] = ACTIONS(2810), + [sym_this] = ACTIONS(2812), + [sym_super] = ACTIONS(2812), + [sym_true] = ACTIONS(2812), + [sym_false] = ACTIONS(2812), + [sym_null] = ACTIONS(2812), + [sym_undefined] = ACTIONS(2812), + [anon_sym_AT] = ACTIONS(2810), + [anon_sym_static] = ACTIONS(2812), + [anon_sym_readonly] = ACTIONS(2812), + [anon_sym_get] = ACTIONS(2812), + [anon_sym_set] = ACTIONS(2812), + [anon_sym_declare] = ACTIONS(2812), + [anon_sym_public] = ACTIONS(2812), + [anon_sym_private] = ACTIONS(2812), + [anon_sym_protected] = ACTIONS(2812), + [anon_sym_override] = ACTIONS(2812), + [anon_sym_module] = ACTIONS(2812), + [anon_sym_any] = ACTIONS(2812), + [anon_sym_number] = ACTIONS(2812), + [anon_sym_boolean] = ACTIONS(2812), + [anon_sym_string] = ACTIONS(2812), + [anon_sym_symbol] = ACTIONS(2812), + [anon_sym_object] = ACTIONS(2812), + [anon_sym_abstract] = ACTIONS(2812), + [anon_sym_interface] = ACTIONS(2812), + [anon_sym_enum] = ACTIONS(2812), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(874)] = { + [ts_builtin_sym_end] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2816), + [anon_sym_export] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2816), + [anon_sym_type] = ACTIONS(2816), + [anon_sym_namespace] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2814), + [anon_sym_RBRACE] = ACTIONS(2814), + [anon_sym_typeof] = ACTIONS(2816), + [anon_sym_import] = ACTIONS(2816), + [anon_sym_with] = ACTIONS(2816), + [anon_sym_var] = ACTIONS(2816), + [anon_sym_let] = ACTIONS(2816), + [anon_sym_const] = ACTIONS(2816), + [anon_sym_BANG] = ACTIONS(2814), + [anon_sym_else] = ACTIONS(2816), + [anon_sym_if] = ACTIONS(2816), + [anon_sym_switch] = ACTIONS(2816), + [anon_sym_for] = ACTIONS(2816), + [anon_sym_LPAREN] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2814), + [anon_sym_await] = ACTIONS(2816), + [anon_sym_while] = ACTIONS(2816), + [anon_sym_do] = ACTIONS(2816), + [anon_sym_try] = ACTIONS(2816), + [anon_sym_break] = ACTIONS(2816), + [anon_sym_continue] = ACTIONS(2816), + [anon_sym_debugger] = ACTIONS(2816), + [anon_sym_return] = ACTIONS(2816), + [anon_sym_throw] = ACTIONS(2816), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_yield] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2814), + [anon_sym_DQUOTE] = ACTIONS(2814), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_class] = ACTIONS(2816), + [anon_sym_async] = ACTIONS(2816), + [anon_sym_function] = ACTIONS(2816), + [anon_sym_new] = ACTIONS(2816), + [anon_sym_using] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2816), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_SLASH] = ACTIONS(2816), + [anon_sym_LT] = ACTIONS(2814), + [anon_sym_TILDE] = ACTIONS(2814), + [anon_sym_void] = ACTIONS(2816), + [anon_sym_delete] = ACTIONS(2816), + [anon_sym_PLUS_PLUS] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2814), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2814), + [sym_number] = ACTIONS(2814), + [sym_private_property_identifier] = ACTIONS(2814), + [sym_this] = ACTIONS(2816), + [sym_super] = ACTIONS(2816), + [sym_true] = ACTIONS(2816), + [sym_false] = ACTIONS(2816), + [sym_null] = ACTIONS(2816), + [sym_undefined] = ACTIONS(2816), + [anon_sym_AT] = ACTIONS(2814), + [anon_sym_static] = ACTIONS(2816), + [anon_sym_readonly] = ACTIONS(2816), + [anon_sym_get] = ACTIONS(2816), + [anon_sym_set] = ACTIONS(2816), + [anon_sym_declare] = ACTIONS(2816), + [anon_sym_public] = ACTIONS(2816), + [anon_sym_private] = ACTIONS(2816), + [anon_sym_protected] = ACTIONS(2816), + [anon_sym_override] = ACTIONS(2816), + [anon_sym_module] = ACTIONS(2816), + [anon_sym_any] = ACTIONS(2816), + [anon_sym_number] = ACTIONS(2816), + [anon_sym_boolean] = ACTIONS(2816), + [anon_sym_string] = ACTIONS(2816), + [anon_sym_symbol] = ACTIONS(2816), + [anon_sym_object] = ACTIONS(2816), + [anon_sym_abstract] = ACTIONS(2816), + [anon_sym_interface] = ACTIONS(2816), + [anon_sym_enum] = ACTIONS(2816), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(875)] = { + [ts_builtin_sym_end] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2820), + [anon_sym_export] = ACTIONS(2820), + [anon_sym_default] = ACTIONS(2820), + [anon_sym_type] = ACTIONS(2820), + [anon_sym_namespace] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2818), + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_typeof] = ACTIONS(2820), + [anon_sym_import] = ACTIONS(2820), + [anon_sym_with] = ACTIONS(2820), + [anon_sym_var] = ACTIONS(2820), + [anon_sym_let] = ACTIONS(2820), + [anon_sym_const] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2818), + [anon_sym_else] = ACTIONS(2820), + [anon_sym_if] = ACTIONS(2820), + [anon_sym_switch] = ACTIONS(2820), + [anon_sym_for] = ACTIONS(2820), + [anon_sym_LPAREN] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2818), + [anon_sym_await] = ACTIONS(2820), + [anon_sym_while] = ACTIONS(2820), + [anon_sym_do] = ACTIONS(2820), + [anon_sym_try] = ACTIONS(2820), + [anon_sym_break] = ACTIONS(2820), + [anon_sym_continue] = ACTIONS(2820), + [anon_sym_debugger] = ACTIONS(2820), + [anon_sym_return] = ACTIONS(2820), + [anon_sym_throw] = ACTIONS(2820), + [anon_sym_case] = ACTIONS(2820), + [anon_sym_yield] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(2818), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_class] = ACTIONS(2820), + [anon_sym_async] = ACTIONS(2820), + [anon_sym_function] = ACTIONS(2820), + [anon_sym_new] = ACTIONS(2820), + [anon_sym_using] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2818), + [anon_sym_TILDE] = ACTIONS(2818), + [anon_sym_void] = ACTIONS(2820), + [anon_sym_delete] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2818), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2818), + [sym_number] = ACTIONS(2818), + [sym_private_property_identifier] = ACTIONS(2818), + [sym_this] = ACTIONS(2820), + [sym_super] = ACTIONS(2820), + [sym_true] = ACTIONS(2820), + [sym_false] = ACTIONS(2820), + [sym_null] = ACTIONS(2820), + [sym_undefined] = ACTIONS(2820), + [anon_sym_AT] = ACTIONS(2818), + [anon_sym_static] = ACTIONS(2820), + [anon_sym_readonly] = ACTIONS(2820), + [anon_sym_get] = ACTIONS(2820), + [anon_sym_set] = ACTIONS(2820), + [anon_sym_declare] = ACTIONS(2820), + [anon_sym_public] = ACTIONS(2820), + [anon_sym_private] = ACTIONS(2820), + [anon_sym_protected] = ACTIONS(2820), + [anon_sym_override] = ACTIONS(2820), + [anon_sym_module] = ACTIONS(2820), + [anon_sym_any] = ACTIONS(2820), + [anon_sym_number] = ACTIONS(2820), + [anon_sym_boolean] = ACTIONS(2820), + [anon_sym_string] = ACTIONS(2820), + [anon_sym_symbol] = ACTIONS(2820), + [anon_sym_object] = ACTIONS(2820), + [anon_sym_abstract] = ACTIONS(2820), + [anon_sym_interface] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2820), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(876)] = { + [ts_builtin_sym_end] = ACTIONS(2822), + [sym_identifier] = ACTIONS(2824), + [anon_sym_export] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2824), + [anon_sym_type] = ACTIONS(2824), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2822), + [anon_sym_RBRACE] = ACTIONS(2822), + [anon_sym_typeof] = ACTIONS(2824), + [anon_sym_import] = ACTIONS(2824), + [anon_sym_with] = ACTIONS(2824), + [anon_sym_var] = ACTIONS(2824), + [anon_sym_let] = ACTIONS(2824), + [anon_sym_const] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2822), + [anon_sym_else] = ACTIONS(2824), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_switch] = ACTIONS(2824), + [anon_sym_for] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2822), + [anon_sym_await] = ACTIONS(2824), + [anon_sym_while] = ACTIONS(2824), + [anon_sym_do] = ACTIONS(2824), + [anon_sym_try] = ACTIONS(2824), + [anon_sym_break] = ACTIONS(2824), + [anon_sym_continue] = ACTIONS(2824), + [anon_sym_debugger] = ACTIONS(2824), + [anon_sym_return] = ACTIONS(2824), + [anon_sym_throw] = ACTIONS(2824), + [anon_sym_case] = ACTIONS(2824), + [anon_sym_yield] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2822), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_class] = ACTIONS(2824), + [anon_sym_async] = ACTIONS(2824), + [anon_sym_function] = ACTIONS(2824), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(2824), + [anon_sym_PLUS] = ACTIONS(2824), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_SLASH] = ACTIONS(2824), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_TILDE] = ACTIONS(2822), + [anon_sym_void] = ACTIONS(2824), + [anon_sym_delete] = ACTIONS(2824), + [anon_sym_PLUS_PLUS] = ACTIONS(2822), + [anon_sym_DASH_DASH] = ACTIONS(2822), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2822), + [sym_number] = ACTIONS(2822), + [sym_private_property_identifier] = ACTIONS(2822), + [sym_this] = ACTIONS(2824), + [sym_super] = ACTIONS(2824), + [sym_true] = ACTIONS(2824), + [sym_false] = ACTIONS(2824), + [sym_null] = ACTIONS(2824), + [sym_undefined] = ACTIONS(2824), + [anon_sym_AT] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_readonly] = ACTIONS(2824), + [anon_sym_get] = ACTIONS(2824), + [anon_sym_set] = ACTIONS(2824), + [anon_sym_declare] = ACTIONS(2824), + [anon_sym_public] = ACTIONS(2824), + [anon_sym_private] = ACTIONS(2824), + [anon_sym_protected] = ACTIONS(2824), + [anon_sym_override] = ACTIONS(2824), + [anon_sym_module] = ACTIONS(2824), + [anon_sym_any] = ACTIONS(2824), + [anon_sym_number] = ACTIONS(2824), + [anon_sym_boolean] = ACTIONS(2824), + [anon_sym_string] = ACTIONS(2824), + [anon_sym_symbol] = ACTIONS(2824), + [anon_sym_object] = ACTIONS(2824), + [anon_sym_abstract] = ACTIONS(2824), + [anon_sym_interface] = ACTIONS(2824), + [anon_sym_enum] = ACTIONS(2824), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(877)] = { + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_namespace] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_typeof] = ACTIONS(1773), + [anon_sym_import] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + [anon_sym_var] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_debugger] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_throw] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_class] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1773), + [anon_sym_function] = ACTIONS(1773), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_using] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_SLASH] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_void] = ACTIONS(1773), + [anon_sym_delete] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1771), + [sym_number] = ACTIONS(1771), + [sym_private_property_identifier] = ACTIONS(1771), + [sym_this] = ACTIONS(1773), + [sym_super] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_null] = ACTIONS(1773), + [sym_undefined] = ACTIONS(1773), + [anon_sym_AT] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_readonly] = ACTIONS(1773), + [anon_sym_get] = ACTIONS(1773), + [anon_sym_set] = ACTIONS(1773), + [anon_sym_declare] = ACTIONS(1773), + [anon_sym_public] = ACTIONS(1773), + [anon_sym_private] = ACTIONS(1773), + [anon_sym_protected] = ACTIONS(1773), + [anon_sym_override] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_any] = ACTIONS(1773), + [anon_sym_number] = ACTIONS(1773), + [anon_sym_boolean] = ACTIONS(1773), + [anon_sym_string] = ACTIONS(1773), + [anon_sym_symbol] = ACTIONS(1773), + [anon_sym_object] = ACTIONS(1773), + [anon_sym_abstract] = ACTIONS(1773), + [anon_sym_interface] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(878)] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(879)] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(880)] = { + [ts_builtin_sym_end] = ACTIONS(2826), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2828), + [anon_sym_default] = ACTIONS(2828), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_namespace] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2826), + [anon_sym_RBRACE] = ACTIONS(2826), + [anon_sym_typeof] = ACTIONS(2828), + [anon_sym_import] = ACTIONS(2828), + [anon_sym_with] = ACTIONS(2828), + [anon_sym_var] = ACTIONS(2828), + [anon_sym_let] = ACTIONS(2828), + [anon_sym_const] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2826), + [anon_sym_else] = ACTIONS(2828), + [anon_sym_if] = ACTIONS(2828), + [anon_sym_switch] = ACTIONS(2828), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2826), + [anon_sym_await] = ACTIONS(2828), + [anon_sym_while] = ACTIONS(2828), + [anon_sym_do] = ACTIONS(2828), + [anon_sym_try] = ACTIONS(2828), + [anon_sym_break] = ACTIONS(2828), + [anon_sym_continue] = ACTIONS(2828), + [anon_sym_debugger] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2828), + [anon_sym_throw] = ACTIONS(2828), + [anon_sym_case] = ACTIONS(2828), + [anon_sym_yield] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2826), + [anon_sym_DQUOTE] = ACTIONS(2826), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_class] = ACTIONS(2828), + [anon_sym_async] = ACTIONS(2828), + [anon_sym_function] = ACTIONS(2828), + [anon_sym_new] = ACTIONS(2828), + [anon_sym_using] = ACTIONS(2828), + [anon_sym_PLUS] = ACTIONS(2828), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_SLASH] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2826), + [anon_sym_void] = ACTIONS(2828), + [anon_sym_delete] = ACTIONS(2828), + [anon_sym_PLUS_PLUS] = ACTIONS(2826), + [anon_sym_DASH_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2826), + [sym_number] = ACTIONS(2826), + [sym_private_property_identifier] = ACTIONS(2826), + [sym_this] = ACTIONS(2828), + [sym_super] = ACTIONS(2828), + [sym_true] = ACTIONS(2828), + [sym_false] = ACTIONS(2828), + [sym_null] = ACTIONS(2828), + [sym_undefined] = ACTIONS(2828), + [anon_sym_AT] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2828), + [anon_sym_readonly] = ACTIONS(2828), + [anon_sym_get] = ACTIONS(2828), + [anon_sym_set] = ACTIONS(2828), + [anon_sym_declare] = ACTIONS(2828), + [anon_sym_public] = ACTIONS(2828), + [anon_sym_private] = ACTIONS(2828), + [anon_sym_protected] = ACTIONS(2828), + [anon_sym_override] = ACTIONS(2828), + [anon_sym_module] = ACTIONS(2828), + [anon_sym_any] = ACTIONS(2828), + [anon_sym_number] = ACTIONS(2828), + [anon_sym_boolean] = ACTIONS(2828), + [anon_sym_string] = ACTIONS(2828), + [anon_sym_symbol] = ACTIONS(2828), + [anon_sym_object] = ACTIONS(2828), + [anon_sym_abstract] = ACTIONS(2828), + [anon_sym_interface] = ACTIONS(2828), + [anon_sym_enum] = ACTIONS(2828), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(881)] = { + [ts_builtin_sym_end] = ACTIONS(2830), + [sym_identifier] = ACTIONS(2832), + [anon_sym_export] = ACTIONS(2832), + [anon_sym_default] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2832), + [anon_sym_namespace] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2830), + [anon_sym_RBRACE] = ACTIONS(2830), + [anon_sym_typeof] = ACTIONS(2832), + [anon_sym_import] = ACTIONS(2832), + [anon_sym_with] = ACTIONS(2832), + [anon_sym_var] = ACTIONS(2832), + [anon_sym_let] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2830), + [anon_sym_else] = ACTIONS(2832), + [anon_sym_if] = ACTIONS(2832), + [anon_sym_switch] = ACTIONS(2832), + [anon_sym_for] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_await] = ACTIONS(2832), + [anon_sym_while] = ACTIONS(2832), + [anon_sym_do] = ACTIONS(2832), + [anon_sym_try] = ACTIONS(2832), + [anon_sym_break] = ACTIONS(2832), + [anon_sym_continue] = ACTIONS(2832), + [anon_sym_debugger] = ACTIONS(2832), + [anon_sym_return] = ACTIONS(2832), + [anon_sym_throw] = ACTIONS(2832), + [anon_sym_case] = ACTIONS(2832), + [anon_sym_yield] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2830), + [anon_sym_DQUOTE] = ACTIONS(2830), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_class] = ACTIONS(2832), + [anon_sym_async] = ACTIONS(2832), + [anon_sym_function] = ACTIONS(2832), + [anon_sym_new] = ACTIONS(2832), + [anon_sym_using] = ACTIONS(2832), + [anon_sym_PLUS] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_SLASH] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_TILDE] = ACTIONS(2830), + [anon_sym_void] = ACTIONS(2832), + [anon_sym_delete] = ACTIONS(2832), + [anon_sym_PLUS_PLUS] = ACTIONS(2830), + [anon_sym_DASH_DASH] = ACTIONS(2830), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2830), + [sym_number] = ACTIONS(2830), + [sym_private_property_identifier] = ACTIONS(2830), + [sym_this] = ACTIONS(2832), + [sym_super] = ACTIONS(2832), + [sym_true] = ACTIONS(2832), + [sym_false] = ACTIONS(2832), + [sym_null] = ACTIONS(2832), + [sym_undefined] = ACTIONS(2832), + [anon_sym_AT] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2832), + [anon_sym_readonly] = ACTIONS(2832), + [anon_sym_get] = ACTIONS(2832), + [anon_sym_set] = ACTIONS(2832), + [anon_sym_declare] = ACTIONS(2832), + [anon_sym_public] = ACTIONS(2832), + [anon_sym_private] = ACTIONS(2832), + [anon_sym_protected] = ACTIONS(2832), + [anon_sym_override] = ACTIONS(2832), + [anon_sym_module] = ACTIONS(2832), + [anon_sym_any] = ACTIONS(2832), + [anon_sym_number] = ACTIONS(2832), + [anon_sym_boolean] = ACTIONS(2832), + [anon_sym_string] = ACTIONS(2832), + [anon_sym_symbol] = ACTIONS(2832), + [anon_sym_object] = ACTIONS(2832), + [anon_sym_abstract] = ACTIONS(2832), + [anon_sym_interface] = ACTIONS(2832), + [anon_sym_enum] = ACTIONS(2832), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(882)] = { + [ts_builtin_sym_end] = ACTIONS(2834), + [sym_identifier] = ACTIONS(2836), + [anon_sym_export] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2836), + [anon_sym_type] = ACTIONS(2836), + [anon_sym_namespace] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2834), + [anon_sym_RBRACE] = ACTIONS(2834), + [anon_sym_typeof] = ACTIONS(2836), + [anon_sym_import] = ACTIONS(2836), + [anon_sym_with] = ACTIONS(2836), + [anon_sym_var] = ACTIONS(2836), + [anon_sym_let] = ACTIONS(2836), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2834), + [anon_sym_else] = ACTIONS(2836), + [anon_sym_if] = ACTIONS(2836), + [anon_sym_switch] = ACTIONS(2836), + [anon_sym_for] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2834), + [anon_sym_await] = ACTIONS(2836), + [anon_sym_while] = ACTIONS(2836), + [anon_sym_do] = ACTIONS(2836), + [anon_sym_try] = ACTIONS(2836), + [anon_sym_break] = ACTIONS(2836), + [anon_sym_continue] = ACTIONS(2836), + [anon_sym_debugger] = ACTIONS(2836), + [anon_sym_return] = ACTIONS(2836), + [anon_sym_throw] = ACTIONS(2836), + [anon_sym_case] = ACTIONS(2836), + [anon_sym_yield] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(2834), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_class] = ACTIONS(2836), + [anon_sym_async] = ACTIONS(2836), + [anon_sym_function] = ACTIONS(2836), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_using] = ACTIONS(2836), + [anon_sym_PLUS] = ACTIONS(2836), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_SLASH] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2834), + [anon_sym_TILDE] = ACTIONS(2834), + [anon_sym_void] = ACTIONS(2836), + [anon_sym_delete] = ACTIONS(2836), + [anon_sym_PLUS_PLUS] = ACTIONS(2834), + [anon_sym_DASH_DASH] = ACTIONS(2834), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2834), + [sym_number] = ACTIONS(2834), + [sym_private_property_identifier] = ACTIONS(2834), + [sym_this] = ACTIONS(2836), + [sym_super] = ACTIONS(2836), + [sym_true] = ACTIONS(2836), + [sym_false] = ACTIONS(2836), + [sym_null] = ACTIONS(2836), + [sym_undefined] = ACTIONS(2836), + [anon_sym_AT] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_readonly] = ACTIONS(2836), + [anon_sym_get] = ACTIONS(2836), + [anon_sym_set] = ACTIONS(2836), + [anon_sym_declare] = ACTIONS(2836), + [anon_sym_public] = ACTIONS(2836), + [anon_sym_private] = ACTIONS(2836), + [anon_sym_protected] = ACTIONS(2836), + [anon_sym_override] = ACTIONS(2836), + [anon_sym_module] = ACTIONS(2836), + [anon_sym_any] = ACTIONS(2836), + [anon_sym_number] = ACTIONS(2836), + [anon_sym_boolean] = ACTIONS(2836), + [anon_sym_string] = ACTIONS(2836), + [anon_sym_symbol] = ACTIONS(2836), + [anon_sym_object] = ACTIONS(2836), + [anon_sym_abstract] = ACTIONS(2836), + [anon_sym_interface] = ACTIONS(2836), + [anon_sym_enum] = ACTIONS(2836), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(883)] = { + [ts_builtin_sym_end] = ACTIONS(2838), + [sym_identifier] = ACTIONS(2840), + [anon_sym_export] = ACTIONS(2840), + [anon_sym_default] = ACTIONS(2840), + [anon_sym_type] = ACTIONS(2840), + [anon_sym_namespace] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2838), + [anon_sym_typeof] = ACTIONS(2840), + [anon_sym_import] = ACTIONS(2840), + [anon_sym_with] = ACTIONS(2840), + [anon_sym_var] = ACTIONS(2840), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2838), + [anon_sym_else] = ACTIONS(2840), + [anon_sym_if] = ACTIONS(2840), + [anon_sym_switch] = ACTIONS(2840), + [anon_sym_for] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2838), + [anon_sym_await] = ACTIONS(2840), + [anon_sym_while] = ACTIONS(2840), + [anon_sym_do] = ACTIONS(2840), + [anon_sym_try] = ACTIONS(2840), + [anon_sym_break] = ACTIONS(2840), + [anon_sym_continue] = ACTIONS(2840), + [anon_sym_debugger] = ACTIONS(2840), + [anon_sym_return] = ACTIONS(2840), + [anon_sym_throw] = ACTIONS(2840), + [anon_sym_case] = ACTIONS(2840), + [anon_sym_yield] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2838), + [anon_sym_DQUOTE] = ACTIONS(2838), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_class] = ACTIONS(2840), + [anon_sym_async] = ACTIONS(2840), + [anon_sym_function] = ACTIONS(2840), + [anon_sym_new] = ACTIONS(2840), + [anon_sym_using] = ACTIONS(2840), + [anon_sym_PLUS] = ACTIONS(2840), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_SLASH] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2838), + [anon_sym_TILDE] = ACTIONS(2838), + [anon_sym_void] = ACTIONS(2840), + [anon_sym_delete] = ACTIONS(2840), + [anon_sym_PLUS_PLUS] = ACTIONS(2838), + [anon_sym_DASH_DASH] = ACTIONS(2838), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2838), + [sym_number] = ACTIONS(2838), + [sym_private_property_identifier] = ACTIONS(2838), + [sym_this] = ACTIONS(2840), + [sym_super] = ACTIONS(2840), + [sym_true] = ACTIONS(2840), + [sym_false] = ACTIONS(2840), + [sym_null] = ACTIONS(2840), + [sym_undefined] = ACTIONS(2840), + [anon_sym_AT] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2840), + [anon_sym_readonly] = ACTIONS(2840), + [anon_sym_get] = ACTIONS(2840), + [anon_sym_set] = ACTIONS(2840), + [anon_sym_declare] = ACTIONS(2840), + [anon_sym_public] = ACTIONS(2840), + [anon_sym_private] = ACTIONS(2840), + [anon_sym_protected] = ACTIONS(2840), + [anon_sym_override] = ACTIONS(2840), + [anon_sym_module] = ACTIONS(2840), + [anon_sym_any] = ACTIONS(2840), + [anon_sym_number] = ACTIONS(2840), + [anon_sym_boolean] = ACTIONS(2840), + [anon_sym_string] = ACTIONS(2840), + [anon_sym_symbol] = ACTIONS(2840), + [anon_sym_object] = ACTIONS(2840), + [anon_sym_abstract] = ACTIONS(2840), + [anon_sym_interface] = ACTIONS(2840), + [anon_sym_enum] = ACTIONS(2840), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(884)] = { + [ts_builtin_sym_end] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2844), + [anon_sym_export] = ACTIONS(2844), + [anon_sym_default] = ACTIONS(2844), + [anon_sym_type] = ACTIONS(2844), + [anon_sym_namespace] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2842), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_typeof] = ACTIONS(2844), + [anon_sym_import] = ACTIONS(2844), + [anon_sym_with] = ACTIONS(2844), + [anon_sym_var] = ACTIONS(2844), + [anon_sym_let] = ACTIONS(2844), + [anon_sym_const] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2842), + [anon_sym_else] = ACTIONS(2844), + [anon_sym_if] = ACTIONS(2844), + [anon_sym_switch] = ACTIONS(2844), + [anon_sym_for] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2842), + [anon_sym_await] = ACTIONS(2844), + [anon_sym_while] = ACTIONS(2844), + [anon_sym_do] = ACTIONS(2844), + [anon_sym_try] = ACTIONS(2844), + [anon_sym_break] = ACTIONS(2844), + [anon_sym_continue] = ACTIONS(2844), + [anon_sym_debugger] = ACTIONS(2844), + [anon_sym_return] = ACTIONS(2844), + [anon_sym_throw] = ACTIONS(2844), + [anon_sym_case] = ACTIONS(2844), + [anon_sym_yield] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2842), + [anon_sym_DQUOTE] = ACTIONS(2842), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_class] = ACTIONS(2844), + [anon_sym_async] = ACTIONS(2844), + [anon_sym_function] = ACTIONS(2844), + [anon_sym_new] = ACTIONS(2844), + [anon_sym_using] = ACTIONS(2844), + [anon_sym_PLUS] = ACTIONS(2844), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_SLASH] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_TILDE] = ACTIONS(2842), + [anon_sym_void] = ACTIONS(2844), + [anon_sym_delete] = ACTIONS(2844), + [anon_sym_PLUS_PLUS] = ACTIONS(2842), + [anon_sym_DASH_DASH] = ACTIONS(2842), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2842), + [sym_number] = ACTIONS(2842), + [sym_private_property_identifier] = ACTIONS(2842), + [sym_this] = ACTIONS(2844), + [sym_super] = ACTIONS(2844), + [sym_true] = ACTIONS(2844), + [sym_false] = ACTIONS(2844), + [sym_null] = ACTIONS(2844), + [sym_undefined] = ACTIONS(2844), + [anon_sym_AT] = ACTIONS(2842), + [anon_sym_static] = ACTIONS(2844), + [anon_sym_readonly] = ACTIONS(2844), + [anon_sym_get] = ACTIONS(2844), + [anon_sym_set] = ACTIONS(2844), + [anon_sym_declare] = ACTIONS(2844), + [anon_sym_public] = ACTIONS(2844), + [anon_sym_private] = ACTIONS(2844), + [anon_sym_protected] = ACTIONS(2844), + [anon_sym_override] = ACTIONS(2844), + [anon_sym_module] = ACTIONS(2844), + [anon_sym_any] = ACTIONS(2844), + [anon_sym_number] = ACTIONS(2844), + [anon_sym_boolean] = ACTIONS(2844), + [anon_sym_string] = ACTIONS(2844), + [anon_sym_symbol] = ACTIONS(2844), + [anon_sym_object] = ACTIONS(2844), + [anon_sym_abstract] = ACTIONS(2844), + [anon_sym_interface] = ACTIONS(2844), + [anon_sym_enum] = ACTIONS(2844), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(885)] = { + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_namespace] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_typeof] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_with] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_await] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_debugger] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1785), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_void] = ACTIONS(1787), + [anon_sym_delete] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1785), + [sym_number] = ACTIONS(1785), + [sym_private_property_identifier] = ACTIONS(1785), + [sym_this] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_true] = ACTIONS(1787), + [sym_false] = ACTIONS(1787), + [sym_null] = ACTIONS(1787), + [sym_undefined] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1785), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_readonly] = ACTIONS(1787), + [anon_sym_get] = ACTIONS(1787), + [anon_sym_set] = ACTIONS(1787), + [anon_sym_declare] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_protected] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_module] = ACTIONS(1787), + [anon_sym_any] = ACTIONS(1787), + [anon_sym_number] = ACTIONS(1787), + [anon_sym_boolean] = ACTIONS(1787), + [anon_sym_string] = ACTIONS(1787), + [anon_sym_symbol] = ACTIONS(1787), + [anon_sym_object] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(886)] = { + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_namespace] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_typeof] = ACTIONS(1795), + [anon_sym_import] = ACTIONS(1795), + [anon_sym_with] = ACTIONS(1795), + [anon_sym_var] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_switch] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_await] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_debugger] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_throw] = ACTIONS(1795), + [anon_sym_case] = ACTIONS(1795), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1793), + [anon_sym_class] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_function] = ACTIONS(1795), + [anon_sym_new] = ACTIONS(1795), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_TILDE] = ACTIONS(1793), + [anon_sym_void] = ACTIONS(1795), + [anon_sym_delete] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1793), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_number] = ACTIONS(1793), + [sym_private_property_identifier] = ACTIONS(1793), + [sym_this] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_true] = ACTIONS(1795), + [sym_false] = ACTIONS(1795), + [sym_null] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_readonly] = ACTIONS(1795), + [anon_sym_get] = ACTIONS(1795), + [anon_sym_set] = ACTIONS(1795), + [anon_sym_declare] = ACTIONS(1795), + [anon_sym_public] = ACTIONS(1795), + [anon_sym_private] = ACTIONS(1795), + [anon_sym_protected] = ACTIONS(1795), + [anon_sym_override] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_any] = ACTIONS(1795), + [anon_sym_number] = ACTIONS(1795), + [anon_sym_boolean] = ACTIONS(1795), + [anon_sym_string] = ACTIONS(1795), + [anon_sym_symbol] = ACTIONS(1795), + [anon_sym_object] = ACTIONS(1795), + [anon_sym_abstract] = ACTIONS(1795), + [anon_sym_interface] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(887)] = { + [ts_builtin_sym_end] = ACTIONS(1771), + [sym_identifier] = ACTIONS(1773), + [anon_sym_export] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1773), + [anon_sym_type] = ACTIONS(1773), + [anon_sym_namespace] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_typeof] = ACTIONS(1773), + [anon_sym_import] = ACTIONS(1773), + [anon_sym_with] = ACTIONS(1773), + [anon_sym_var] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_await] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_debugger] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_throw] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_class] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1773), + [anon_sym_function] = ACTIONS(1773), + [anon_sym_new] = ACTIONS(1773), + [anon_sym_using] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_SLASH] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1771), + [anon_sym_void] = ACTIONS(1773), + [anon_sym_delete] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1771), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1771), + [sym_number] = ACTIONS(1771), + [sym_private_property_identifier] = ACTIONS(1771), + [sym_this] = ACTIONS(1773), + [sym_super] = ACTIONS(1773), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_null] = ACTIONS(1773), + [sym_undefined] = ACTIONS(1773), + [anon_sym_AT] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1773), + [anon_sym_readonly] = ACTIONS(1773), + [anon_sym_get] = ACTIONS(1773), + [anon_sym_set] = ACTIONS(1773), + [anon_sym_declare] = ACTIONS(1773), + [anon_sym_public] = ACTIONS(1773), + [anon_sym_private] = ACTIONS(1773), + [anon_sym_protected] = ACTIONS(1773), + [anon_sym_override] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_any] = ACTIONS(1773), + [anon_sym_number] = ACTIONS(1773), + [anon_sym_boolean] = ACTIONS(1773), + [anon_sym_string] = ACTIONS(1773), + [anon_sym_symbol] = ACTIONS(1773), + [anon_sym_object] = ACTIONS(1773), + [anon_sym_abstract] = ACTIONS(1773), + [anon_sym_interface] = ACTIONS(1773), + [anon_sym_enum] = ACTIONS(1773), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(888)] = { + [ts_builtin_sym_end] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2848), + [anon_sym_export] = ACTIONS(2848), + [anon_sym_default] = ACTIONS(2848), + [anon_sym_type] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2846), + [anon_sym_typeof] = ACTIONS(2848), + [anon_sym_import] = ACTIONS(2848), + [anon_sym_with] = ACTIONS(2848), + [anon_sym_var] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_const] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(2846), + [anon_sym_else] = ACTIONS(2848), + [anon_sym_if] = ACTIONS(2848), + [anon_sym_switch] = ACTIONS(2848), + [anon_sym_for] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_await] = ACTIONS(2848), + [anon_sym_while] = ACTIONS(2848), + [anon_sym_do] = ACTIONS(2848), + [anon_sym_try] = ACTIONS(2848), + [anon_sym_break] = ACTIONS(2848), + [anon_sym_continue] = ACTIONS(2848), + [anon_sym_debugger] = ACTIONS(2848), + [anon_sym_return] = ACTIONS(2848), + [anon_sym_throw] = ACTIONS(2848), + [anon_sym_case] = ACTIONS(2848), + [anon_sym_yield] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2846), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_class] = ACTIONS(2848), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2848), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2848), + [anon_sym_PLUS] = ACTIONS(2848), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_SLASH] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2846), + [anon_sym_TILDE] = ACTIONS(2846), + [anon_sym_void] = ACTIONS(2848), + [anon_sym_delete] = ACTIONS(2848), + [anon_sym_PLUS_PLUS] = ACTIONS(2846), + [anon_sym_DASH_DASH] = ACTIONS(2846), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2846), + [sym_number] = ACTIONS(2846), + [sym_private_property_identifier] = ACTIONS(2846), + [sym_this] = ACTIONS(2848), + [sym_super] = ACTIONS(2848), + [sym_true] = ACTIONS(2848), + [sym_false] = ACTIONS(2848), + [sym_null] = ACTIONS(2848), + [sym_undefined] = ACTIONS(2848), + [anon_sym_AT] = ACTIONS(2846), + [anon_sym_static] = ACTIONS(2848), + [anon_sym_readonly] = ACTIONS(2848), + [anon_sym_get] = ACTIONS(2848), + [anon_sym_set] = ACTIONS(2848), + [anon_sym_declare] = ACTIONS(2848), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_protected] = ACTIONS(2848), + [anon_sym_override] = ACTIONS(2848), + [anon_sym_module] = ACTIONS(2848), + [anon_sym_any] = ACTIONS(2848), + [anon_sym_number] = ACTIONS(2848), + [anon_sym_boolean] = ACTIONS(2848), + [anon_sym_string] = ACTIONS(2848), + [anon_sym_symbol] = ACTIONS(2848), + [anon_sym_object] = ACTIONS(2848), + [anon_sym_abstract] = ACTIONS(2848), + [anon_sym_interface] = ACTIONS(2848), + [anon_sym_enum] = ACTIONS(2848), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(889)] = { + [ts_builtin_sym_end] = ACTIONS(2850), + [sym_identifier] = ACTIONS(2852), + [anon_sym_export] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_type] = ACTIONS(2852), + [anon_sym_namespace] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2850), + [anon_sym_RBRACE] = ACTIONS(2850), + [anon_sym_typeof] = ACTIONS(2852), + [anon_sym_import] = ACTIONS(2852), + [anon_sym_with] = ACTIONS(2852), + [anon_sym_var] = ACTIONS(2852), + [anon_sym_let] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_BANG] = ACTIONS(2850), + [anon_sym_else] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_await] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_try] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_debugger] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_throw] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_yield] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2850), + [anon_sym_DQUOTE] = ACTIONS(2850), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_class] = ACTIONS(2852), + [anon_sym_async] = ACTIONS(2852), + [anon_sym_function] = ACTIONS(2852), + [anon_sym_new] = ACTIONS(2852), + [anon_sym_using] = ACTIONS(2852), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_SLASH] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2850), + [anon_sym_TILDE] = ACTIONS(2850), + [anon_sym_void] = ACTIONS(2852), + [anon_sym_delete] = ACTIONS(2852), + [anon_sym_PLUS_PLUS] = ACTIONS(2850), + [anon_sym_DASH_DASH] = ACTIONS(2850), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2850), + [sym_number] = ACTIONS(2850), + [sym_private_property_identifier] = ACTIONS(2850), + [sym_this] = ACTIONS(2852), + [sym_super] = ACTIONS(2852), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [sym_null] = ACTIONS(2852), + [sym_undefined] = ACTIONS(2852), + [anon_sym_AT] = ACTIONS(2850), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_readonly] = ACTIONS(2852), + [anon_sym_get] = ACTIONS(2852), + [anon_sym_set] = ACTIONS(2852), + [anon_sym_declare] = ACTIONS(2852), + [anon_sym_public] = ACTIONS(2852), + [anon_sym_private] = ACTIONS(2852), + [anon_sym_protected] = ACTIONS(2852), + [anon_sym_override] = ACTIONS(2852), + [anon_sym_module] = ACTIONS(2852), + [anon_sym_any] = ACTIONS(2852), + [anon_sym_number] = ACTIONS(2852), + [anon_sym_boolean] = ACTIONS(2852), + [anon_sym_string] = ACTIONS(2852), + [anon_sym_symbol] = ACTIONS(2852), + [anon_sym_object] = ACTIONS(2852), + [anon_sym_abstract] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(890)] = { + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2856), + [anon_sym_export] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_type] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_typeof] = ACTIONS(2856), + [anon_sym_import] = ACTIONS(2856), + [anon_sym_with] = ACTIONS(2856), + [anon_sym_var] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_await] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_debugger] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_async] = ACTIONS(2856), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_SLASH] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_void] = ACTIONS(2856), + [anon_sym_delete] = ACTIONS(2856), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2854), + [sym_number] = ACTIONS(2854), + [sym_private_property_identifier] = ACTIONS(2854), + [sym_this] = ACTIONS(2856), + [sym_super] = ACTIONS(2856), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [sym_null] = ACTIONS(2856), + [sym_undefined] = ACTIONS(2856), + [anon_sym_AT] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_readonly] = ACTIONS(2856), + [anon_sym_get] = ACTIONS(2856), + [anon_sym_set] = ACTIONS(2856), + [anon_sym_declare] = ACTIONS(2856), + [anon_sym_public] = ACTIONS(2856), + [anon_sym_private] = ACTIONS(2856), + [anon_sym_protected] = ACTIONS(2856), + [anon_sym_override] = ACTIONS(2856), + [anon_sym_module] = ACTIONS(2856), + [anon_sym_any] = ACTIONS(2856), + [anon_sym_number] = ACTIONS(2856), + [anon_sym_boolean] = ACTIONS(2856), + [anon_sym_string] = ACTIONS(2856), + [anon_sym_symbol] = ACTIONS(2856), + [anon_sym_object] = ACTIONS(2856), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_interface] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(891)] = { + [ts_builtin_sym_end] = ACTIONS(2854), + [sym_identifier] = ACTIONS(2856), + [anon_sym_export] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_type] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_typeof] = ACTIONS(2856), + [anon_sym_import] = ACTIONS(2856), + [anon_sym_with] = ACTIONS(2856), + [anon_sym_var] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_else] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_await] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_try] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_debugger] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_throw] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_yield] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_class] = ACTIONS(2856), + [anon_sym_async] = ACTIONS(2856), + [anon_sym_function] = ACTIONS(2856), + [anon_sym_new] = ACTIONS(2856), + [anon_sym_using] = ACTIONS(2856), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_SLASH] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_void] = ACTIONS(2856), + [anon_sym_delete] = ACTIONS(2856), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2854), + [sym_number] = ACTIONS(2854), + [sym_private_property_identifier] = ACTIONS(2854), + [sym_this] = ACTIONS(2856), + [sym_super] = ACTIONS(2856), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [sym_null] = ACTIONS(2856), + [sym_undefined] = ACTIONS(2856), + [anon_sym_AT] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_readonly] = ACTIONS(2856), + [anon_sym_get] = ACTIONS(2856), + [anon_sym_set] = ACTIONS(2856), + [anon_sym_declare] = ACTIONS(2856), + [anon_sym_public] = ACTIONS(2856), + [anon_sym_private] = ACTIONS(2856), + [anon_sym_protected] = ACTIONS(2856), + [anon_sym_override] = ACTIONS(2856), + [anon_sym_module] = ACTIONS(2856), + [anon_sym_any] = ACTIONS(2856), + [anon_sym_number] = ACTIONS(2856), + [anon_sym_boolean] = ACTIONS(2856), + [anon_sym_string] = ACTIONS(2856), + [anon_sym_symbol] = ACTIONS(2856), + [anon_sym_object] = ACTIONS(2856), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_interface] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(892)] = { + [ts_builtin_sym_end] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2860), + [anon_sym_export] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_type] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_typeof] = ACTIONS(2860), + [anon_sym_import] = ACTIONS(2860), + [anon_sym_with] = ACTIONS(2860), + [anon_sym_var] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_else] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_await] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_try] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_debugger] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_throw] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_yield] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_class] = ACTIONS(2860), + [anon_sym_async] = ACTIONS(2860), + [anon_sym_function] = ACTIONS(2860), + [anon_sym_new] = ACTIONS(2860), + [anon_sym_using] = ACTIONS(2860), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_SLASH] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_void] = ACTIONS(2860), + [anon_sym_delete] = ACTIONS(2860), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2858), + [sym_number] = ACTIONS(2858), + [sym_private_property_identifier] = ACTIONS(2858), + [sym_this] = ACTIONS(2860), + [sym_super] = ACTIONS(2860), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [sym_null] = ACTIONS(2860), + [sym_undefined] = ACTIONS(2860), + [anon_sym_AT] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_readonly] = ACTIONS(2860), + [anon_sym_get] = ACTIONS(2860), + [anon_sym_set] = ACTIONS(2860), + [anon_sym_declare] = ACTIONS(2860), + [anon_sym_public] = ACTIONS(2860), + [anon_sym_private] = ACTIONS(2860), + [anon_sym_protected] = ACTIONS(2860), + [anon_sym_override] = ACTIONS(2860), + [anon_sym_module] = ACTIONS(2860), + [anon_sym_any] = ACTIONS(2860), + [anon_sym_number] = ACTIONS(2860), + [anon_sym_boolean] = ACTIONS(2860), + [anon_sym_string] = ACTIONS(2860), + [anon_sym_symbol] = ACTIONS(2860), + [anon_sym_object] = ACTIONS(2860), + [anon_sym_abstract] = ACTIONS(2860), + [anon_sym_interface] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(893)] = { + [ts_builtin_sym_end] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2864), + [anon_sym_export] = ACTIONS(2864), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_type] = ACTIONS(2864), + [anon_sym_namespace] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_typeof] = ACTIONS(2864), + [anon_sym_import] = ACTIONS(2864), + [anon_sym_with] = ACTIONS(2864), + [anon_sym_var] = ACTIONS(2864), + [anon_sym_let] = ACTIONS(2864), + [anon_sym_const] = ACTIONS(2864), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_else] = ACTIONS(2864), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2864), + [anon_sym_for] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_await] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2864), + [anon_sym_do] = ACTIONS(2864), + [anon_sym_try] = ACTIONS(2864), + [anon_sym_break] = ACTIONS(2864), + [anon_sym_continue] = ACTIONS(2864), + [anon_sym_debugger] = ACTIONS(2864), + [anon_sym_return] = ACTIONS(2864), + [anon_sym_throw] = ACTIONS(2864), + [anon_sym_case] = ACTIONS(2864), + [anon_sym_yield] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_async] = ACTIONS(2864), + [anon_sym_function] = ACTIONS(2864), + [anon_sym_new] = ACTIONS(2864), + [anon_sym_using] = ACTIONS(2864), + [anon_sym_PLUS] = ACTIONS(2864), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_SLASH] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_void] = ACTIONS(2864), + [anon_sym_delete] = ACTIONS(2864), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2862), + [sym_number] = ACTIONS(2862), + [sym_private_property_identifier] = ACTIONS(2862), + [sym_this] = ACTIONS(2864), + [sym_super] = ACTIONS(2864), + [sym_true] = ACTIONS(2864), + [sym_false] = ACTIONS(2864), + [sym_null] = ACTIONS(2864), + [sym_undefined] = ACTIONS(2864), + [anon_sym_AT] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2864), + [anon_sym_readonly] = ACTIONS(2864), + [anon_sym_get] = ACTIONS(2864), + [anon_sym_set] = ACTIONS(2864), + [anon_sym_declare] = ACTIONS(2864), + [anon_sym_public] = ACTIONS(2864), + [anon_sym_private] = ACTIONS(2864), + [anon_sym_protected] = ACTIONS(2864), + [anon_sym_override] = ACTIONS(2864), + [anon_sym_module] = ACTIONS(2864), + [anon_sym_any] = ACTIONS(2864), + [anon_sym_number] = ACTIONS(2864), + [anon_sym_boolean] = ACTIONS(2864), + [anon_sym_string] = ACTIONS(2864), + [anon_sym_symbol] = ACTIONS(2864), + [anon_sym_object] = ACTIONS(2864), + [anon_sym_abstract] = ACTIONS(2864), + [anon_sym_interface] = ACTIONS(2864), + [anon_sym_enum] = ACTIONS(2864), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(894)] = { + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2868), + [anon_sym_export] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_import] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_var] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_await] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_debugger] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_async] = ACTIONS(2868), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_void] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2866), + [sym_number] = ACTIONS(2866), + [sym_private_property_identifier] = ACTIONS(2866), + [sym_this] = ACTIONS(2868), + [sym_super] = ACTIONS(2868), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [sym_null] = ACTIONS(2868), + [sym_undefined] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_readonly] = ACTIONS(2868), + [anon_sym_get] = ACTIONS(2868), + [anon_sym_set] = ACTIONS(2868), + [anon_sym_declare] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_protected] = ACTIONS(2868), + [anon_sym_override] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2868), + [anon_sym_any] = ACTIONS(2868), + [anon_sym_number] = ACTIONS(2868), + [anon_sym_boolean] = ACTIONS(2868), + [anon_sym_string] = ACTIONS(2868), + [anon_sym_symbol] = ACTIONS(2868), + [anon_sym_object] = ACTIONS(2868), + [anon_sym_abstract] = ACTIONS(2868), + [anon_sym_interface] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(895)] = { + [ts_builtin_sym_end] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2868), + [anon_sym_export] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2866), + [anon_sym_RBRACE] = ACTIONS(2866), + [anon_sym_typeof] = ACTIONS(2868), + [anon_sym_import] = ACTIONS(2868), + [anon_sym_with] = ACTIONS(2868), + [anon_sym_var] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2866), + [anon_sym_else] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_await] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_try] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_debugger] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_throw] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_yield] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2866), + [anon_sym_DQUOTE] = ACTIONS(2866), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_class] = ACTIONS(2868), + [anon_sym_async] = ACTIONS(2868), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_new] = ACTIONS(2868), + [anon_sym_using] = ACTIONS(2868), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_SLASH] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2866), + [anon_sym_TILDE] = ACTIONS(2866), + [anon_sym_void] = ACTIONS(2868), + [anon_sym_delete] = ACTIONS(2868), + [anon_sym_PLUS_PLUS] = ACTIONS(2866), + [anon_sym_DASH_DASH] = ACTIONS(2866), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2866), + [sym_number] = ACTIONS(2866), + [sym_private_property_identifier] = ACTIONS(2866), + [sym_this] = ACTIONS(2868), + [sym_super] = ACTIONS(2868), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [sym_null] = ACTIONS(2868), + [sym_undefined] = ACTIONS(2868), + [anon_sym_AT] = ACTIONS(2866), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_readonly] = ACTIONS(2868), + [anon_sym_get] = ACTIONS(2868), + [anon_sym_set] = ACTIONS(2868), + [anon_sym_declare] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_protected] = ACTIONS(2868), + [anon_sym_override] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2868), + [anon_sym_any] = ACTIONS(2868), + [anon_sym_number] = ACTIONS(2868), + [anon_sym_boolean] = ACTIONS(2868), + [anon_sym_string] = ACTIONS(2868), + [anon_sym_symbol] = ACTIONS(2868), + [anon_sym_object] = ACTIONS(2868), + [anon_sym_abstract] = ACTIONS(2868), + [anon_sym_interface] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(896)] = { + [ts_builtin_sym_end] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2872), + [anon_sym_export] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_type] = ACTIONS(2872), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_typeof] = ACTIONS(2872), + [anon_sym_import] = ACTIONS(2872), + [anon_sym_with] = ACTIONS(2872), + [anon_sym_var] = ACTIONS(2872), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_else] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_await] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_try] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_debugger] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_throw] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_yield] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_class] = ACTIONS(2872), + [anon_sym_async] = ACTIONS(2872), + [anon_sym_function] = ACTIONS(2872), + [anon_sym_new] = ACTIONS(2872), + [anon_sym_using] = ACTIONS(2872), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_SLASH] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_void] = ACTIONS(2872), + [anon_sym_delete] = ACTIONS(2872), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2870), + [sym_number] = ACTIONS(2870), + [sym_private_property_identifier] = ACTIONS(2870), + [sym_this] = ACTIONS(2872), + [sym_super] = ACTIONS(2872), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [sym_null] = ACTIONS(2872), + [sym_undefined] = ACTIONS(2872), + [anon_sym_AT] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_readonly] = ACTIONS(2872), + [anon_sym_get] = ACTIONS(2872), + [anon_sym_set] = ACTIONS(2872), + [anon_sym_declare] = ACTIONS(2872), + [anon_sym_public] = ACTIONS(2872), + [anon_sym_private] = ACTIONS(2872), + [anon_sym_protected] = ACTIONS(2872), + [anon_sym_override] = ACTIONS(2872), + [anon_sym_module] = ACTIONS(2872), + [anon_sym_any] = ACTIONS(2872), + [anon_sym_number] = ACTIONS(2872), + [anon_sym_boolean] = ACTIONS(2872), + [anon_sym_string] = ACTIONS(2872), + [anon_sym_symbol] = ACTIONS(2872), + [anon_sym_object] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2872), + [anon_sym_interface] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(897)] = { + [ts_builtin_sym_end] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2876), + [anon_sym_export] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_type] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_typeof] = ACTIONS(2876), + [anon_sym_import] = ACTIONS(2876), + [anon_sym_with] = ACTIONS(2876), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_else] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_await] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_try] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_debugger] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_throw] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_yield] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_class] = ACTIONS(2876), + [anon_sym_async] = ACTIONS(2876), + [anon_sym_function] = ACTIONS(2876), + [anon_sym_new] = ACTIONS(2876), + [anon_sym_using] = ACTIONS(2876), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_SLASH] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_void] = ACTIONS(2876), + [anon_sym_delete] = ACTIONS(2876), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2874), + [sym_number] = ACTIONS(2874), + [sym_private_property_identifier] = ACTIONS(2874), + [sym_this] = ACTIONS(2876), + [sym_super] = ACTIONS(2876), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [sym_null] = ACTIONS(2876), + [sym_undefined] = ACTIONS(2876), + [anon_sym_AT] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_readonly] = ACTIONS(2876), + [anon_sym_get] = ACTIONS(2876), + [anon_sym_set] = ACTIONS(2876), + [anon_sym_declare] = ACTIONS(2876), + [anon_sym_public] = ACTIONS(2876), + [anon_sym_private] = ACTIONS(2876), + [anon_sym_protected] = ACTIONS(2876), + [anon_sym_override] = ACTIONS(2876), + [anon_sym_module] = ACTIONS(2876), + [anon_sym_any] = ACTIONS(2876), + [anon_sym_number] = ACTIONS(2876), + [anon_sym_boolean] = ACTIONS(2876), + [anon_sym_string] = ACTIONS(2876), + [anon_sym_symbol] = ACTIONS(2876), + [anon_sym_object] = ACTIONS(2876), + [anon_sym_abstract] = ACTIONS(2876), + [anon_sym_interface] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(898)] = { + [ts_builtin_sym_end] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2880), + [anon_sym_export] = ACTIONS(2880), + [anon_sym_default] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_typeof] = ACTIONS(2880), + [anon_sym_import] = ACTIONS(2880), + [anon_sym_with] = ACTIONS(2880), + [anon_sym_var] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_else] = ACTIONS(2880), + [anon_sym_if] = ACTIONS(2880), + [anon_sym_switch] = ACTIONS(2880), + [anon_sym_for] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_await] = ACTIONS(2880), + [anon_sym_while] = ACTIONS(2880), + [anon_sym_do] = ACTIONS(2880), + [anon_sym_try] = ACTIONS(2880), + [anon_sym_break] = ACTIONS(2880), + [anon_sym_continue] = ACTIONS(2880), + [anon_sym_debugger] = ACTIONS(2880), + [anon_sym_return] = ACTIONS(2880), + [anon_sym_throw] = ACTIONS(2880), + [anon_sym_case] = ACTIONS(2880), + [anon_sym_yield] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_class] = ACTIONS(2880), + [anon_sym_async] = ACTIONS(2880), + [anon_sym_function] = ACTIONS(2880), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(2880), + [anon_sym_PLUS] = ACTIONS(2880), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_SLASH] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_void] = ACTIONS(2880), + [anon_sym_delete] = ACTIONS(2880), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2878), + [sym_number] = ACTIONS(2878), + [sym_private_property_identifier] = ACTIONS(2878), + [sym_this] = ACTIONS(2880), + [sym_super] = ACTIONS(2880), + [sym_true] = ACTIONS(2880), + [sym_false] = ACTIONS(2880), + [sym_null] = ACTIONS(2880), + [sym_undefined] = ACTIONS(2880), + [anon_sym_AT] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2880), + [anon_sym_get] = ACTIONS(2880), + [anon_sym_set] = ACTIONS(2880), + [anon_sym_declare] = ACTIONS(2880), + [anon_sym_public] = ACTIONS(2880), + [anon_sym_private] = ACTIONS(2880), + [anon_sym_protected] = ACTIONS(2880), + [anon_sym_override] = ACTIONS(2880), + [anon_sym_module] = ACTIONS(2880), + [anon_sym_any] = ACTIONS(2880), + [anon_sym_number] = ACTIONS(2880), + [anon_sym_boolean] = ACTIONS(2880), + [anon_sym_string] = ACTIONS(2880), + [anon_sym_symbol] = ACTIONS(2880), + [anon_sym_object] = ACTIONS(2880), + [anon_sym_abstract] = ACTIONS(2880), + [anon_sym_interface] = ACTIONS(2880), + [anon_sym_enum] = ACTIONS(2880), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(899)] = { + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_export] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_typeof] = ACTIONS(2884), + [anon_sym_import] = ACTIONS(2884), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_var] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_await] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_debugger] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2884), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_void] = ACTIONS(2884), + [anon_sym_delete] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2882), + [sym_number] = ACTIONS(2882), + [sym_private_property_identifier] = ACTIONS(2882), + [sym_this] = ACTIONS(2884), + [sym_super] = ACTIONS(2884), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [sym_null] = ACTIONS(2884), + [sym_undefined] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_readonly] = ACTIONS(2884), + [anon_sym_get] = ACTIONS(2884), + [anon_sym_set] = ACTIONS(2884), + [anon_sym_declare] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_protected] = ACTIONS(2884), + [anon_sym_override] = ACTIONS(2884), + [anon_sym_module] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2884), + [anon_sym_number] = ACTIONS(2884), + [anon_sym_boolean] = ACTIONS(2884), + [anon_sym_string] = ACTIONS(2884), + [anon_sym_symbol] = ACTIONS(2884), + [anon_sym_object] = ACTIONS(2884), + [anon_sym_abstract] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(900)] = { + [ts_builtin_sym_end] = ACTIONS(2882), + [sym_identifier] = ACTIONS(2884), + [anon_sym_export] = ACTIONS(2884), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_type] = ACTIONS(2884), + [anon_sym_namespace] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2882), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_typeof] = ACTIONS(2884), + [anon_sym_import] = ACTIONS(2884), + [anon_sym_with] = ACTIONS(2884), + [anon_sym_var] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2882), + [anon_sym_else] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_switch] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_await] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_do] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_break] = ACTIONS(2884), + [anon_sym_continue] = ACTIONS(2884), + [anon_sym_debugger] = ACTIONS(2884), + [anon_sym_return] = ACTIONS(2884), + [anon_sym_throw] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2884), + [anon_sym_yield] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(2882), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2884), + [anon_sym_function] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2884), + [anon_sym_using] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2884), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2882), + [anon_sym_void] = ACTIONS(2884), + [anon_sym_delete] = ACTIONS(2884), + [anon_sym_PLUS_PLUS] = ACTIONS(2882), + [anon_sym_DASH_DASH] = ACTIONS(2882), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2882), + [sym_number] = ACTIONS(2882), + [sym_private_property_identifier] = ACTIONS(2882), + [sym_this] = ACTIONS(2884), + [sym_super] = ACTIONS(2884), + [sym_true] = ACTIONS(2884), + [sym_false] = ACTIONS(2884), + [sym_null] = ACTIONS(2884), + [sym_undefined] = ACTIONS(2884), + [anon_sym_AT] = ACTIONS(2882), + [anon_sym_static] = ACTIONS(2884), + [anon_sym_readonly] = ACTIONS(2884), + [anon_sym_get] = ACTIONS(2884), + [anon_sym_set] = ACTIONS(2884), + [anon_sym_declare] = ACTIONS(2884), + [anon_sym_public] = ACTIONS(2884), + [anon_sym_private] = ACTIONS(2884), + [anon_sym_protected] = ACTIONS(2884), + [anon_sym_override] = ACTIONS(2884), + [anon_sym_module] = ACTIONS(2884), + [anon_sym_any] = ACTIONS(2884), + [anon_sym_number] = ACTIONS(2884), + [anon_sym_boolean] = ACTIONS(2884), + [anon_sym_string] = ACTIONS(2884), + [anon_sym_symbol] = ACTIONS(2884), + [anon_sym_object] = ACTIONS(2884), + [anon_sym_abstract] = ACTIONS(2884), + [anon_sym_interface] = ACTIONS(2884), + [anon_sym_enum] = ACTIONS(2884), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(901)] = { + [ts_builtin_sym_end] = ACTIONS(2886), + [sym_identifier] = ACTIONS(2888), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_default] = ACTIONS(2888), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2886), + [anon_sym_RBRACE] = ACTIONS(2886), + [anon_sym_typeof] = ACTIONS(2888), + [anon_sym_import] = ACTIONS(2888), + [anon_sym_with] = ACTIONS(2888), + [anon_sym_var] = ACTIONS(2888), + [anon_sym_let] = ACTIONS(2888), + [anon_sym_const] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2886), + [anon_sym_else] = ACTIONS(2888), + [anon_sym_if] = ACTIONS(2888), + [anon_sym_switch] = ACTIONS(2888), + [anon_sym_for] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_await] = ACTIONS(2888), + [anon_sym_while] = ACTIONS(2888), + [anon_sym_do] = ACTIONS(2888), + [anon_sym_try] = ACTIONS(2888), + [anon_sym_break] = ACTIONS(2888), + [anon_sym_continue] = ACTIONS(2888), + [anon_sym_debugger] = ACTIONS(2888), + [anon_sym_return] = ACTIONS(2888), + [anon_sym_throw] = ACTIONS(2888), + [anon_sym_case] = ACTIONS(2888), + [anon_sym_yield] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(2886), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_class] = ACTIONS(2888), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_new] = ACTIONS(2888), + [anon_sym_using] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2888), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_SLASH] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2886), + [anon_sym_void] = ACTIONS(2888), + [anon_sym_delete] = ACTIONS(2888), + [anon_sym_PLUS_PLUS] = ACTIONS(2886), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2886), + [sym_number] = ACTIONS(2886), + [sym_private_property_identifier] = ACTIONS(2886), + [sym_this] = ACTIONS(2888), + [sym_super] = ACTIONS(2888), + [sym_true] = ACTIONS(2888), + [sym_false] = ACTIONS(2888), + [sym_null] = ACTIONS(2888), + [sym_undefined] = ACTIONS(2888), + [anon_sym_AT] = ACTIONS(2886), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_readonly] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2888), + [anon_sym_set] = ACTIONS(2888), + [anon_sym_declare] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_protected] = ACTIONS(2888), + [anon_sym_override] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_any] = ACTIONS(2888), + [anon_sym_number] = ACTIONS(2888), + [anon_sym_boolean] = ACTIONS(2888), + [anon_sym_string] = ACTIONS(2888), + [anon_sym_symbol] = ACTIONS(2888), + [anon_sym_object] = ACTIONS(2888), + [anon_sym_abstract] = ACTIONS(2888), + [anon_sym_interface] = ACTIONS(2888), + [anon_sym_enum] = ACTIONS(2888), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(902)] = { + [ts_builtin_sym_end] = ACTIONS(2890), + [sym_identifier] = ACTIONS(2892), + [anon_sym_export] = ACTIONS(2892), + [anon_sym_default] = ACTIONS(2892), + [anon_sym_type] = ACTIONS(2892), + [anon_sym_namespace] = ACTIONS(2892), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_RBRACE] = ACTIONS(2890), + [anon_sym_typeof] = ACTIONS(2892), + [anon_sym_import] = ACTIONS(2892), + [anon_sym_with] = ACTIONS(2892), + [anon_sym_var] = ACTIONS(2892), + [anon_sym_let] = ACTIONS(2892), + [anon_sym_const] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2890), + [anon_sym_else] = ACTIONS(2892), + [anon_sym_if] = ACTIONS(2892), + [anon_sym_switch] = ACTIONS(2892), + [anon_sym_for] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2890), + [anon_sym_await] = ACTIONS(2892), + [anon_sym_while] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_try] = ACTIONS(2892), + [anon_sym_break] = ACTIONS(2892), + [anon_sym_continue] = ACTIONS(2892), + [anon_sym_debugger] = ACTIONS(2892), + [anon_sym_return] = ACTIONS(2892), + [anon_sym_throw] = ACTIONS(2892), + [anon_sym_case] = ACTIONS(2892), + [anon_sym_yield] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2890), + [anon_sym_DQUOTE] = ACTIONS(2890), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_class] = ACTIONS(2892), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_function] = ACTIONS(2892), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_using] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2890), + [anon_sym_void] = ACTIONS(2892), + [anon_sym_delete] = ACTIONS(2892), + [anon_sym_PLUS_PLUS] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(2890), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2890), + [sym_number] = ACTIONS(2890), + [sym_private_property_identifier] = ACTIONS(2890), + [sym_this] = ACTIONS(2892), + [sym_super] = ACTIONS(2892), + [sym_true] = ACTIONS(2892), + [sym_false] = ACTIONS(2892), + [sym_null] = ACTIONS(2892), + [sym_undefined] = ACTIONS(2892), + [anon_sym_AT] = ACTIONS(2890), + [anon_sym_static] = ACTIONS(2892), + [anon_sym_readonly] = ACTIONS(2892), + [anon_sym_get] = ACTIONS(2892), + [anon_sym_set] = ACTIONS(2892), + [anon_sym_declare] = ACTIONS(2892), + [anon_sym_public] = ACTIONS(2892), + [anon_sym_private] = ACTIONS(2892), + [anon_sym_protected] = ACTIONS(2892), + [anon_sym_override] = ACTIONS(2892), + [anon_sym_module] = ACTIONS(2892), + [anon_sym_any] = ACTIONS(2892), + [anon_sym_number] = ACTIONS(2892), + [anon_sym_boolean] = ACTIONS(2892), + [anon_sym_string] = ACTIONS(2892), + [anon_sym_symbol] = ACTIONS(2892), + [anon_sym_object] = ACTIONS(2892), + [anon_sym_abstract] = ACTIONS(2892), + [anon_sym_interface] = ACTIONS(2892), + [anon_sym_enum] = ACTIONS(2892), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(903)] = { + [ts_builtin_sym_end] = ACTIONS(2894), + [sym_identifier] = ACTIONS(2896), + [anon_sym_export] = ACTIONS(2896), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_type] = ACTIONS(2896), + [anon_sym_namespace] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(2894), + [anon_sym_RBRACE] = ACTIONS(2894), + [anon_sym_typeof] = ACTIONS(2896), + [anon_sym_import] = ACTIONS(2896), + [anon_sym_with] = ACTIONS(2896), + [anon_sym_var] = ACTIONS(2896), + [anon_sym_let] = ACTIONS(2896), + [anon_sym_const] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2894), + [anon_sym_else] = ACTIONS(2896), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_switch] = ACTIONS(2896), + [anon_sym_for] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(2894), + [anon_sym_await] = ACTIONS(2896), + [anon_sym_while] = ACTIONS(2896), + [anon_sym_do] = ACTIONS(2896), + [anon_sym_try] = ACTIONS(2896), + [anon_sym_break] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2896), + [anon_sym_debugger] = ACTIONS(2896), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_throw] = ACTIONS(2896), + [anon_sym_case] = ACTIONS(2896), + [anon_sym_yield] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2894), + [anon_sym_DQUOTE] = ACTIONS(2894), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_class] = ACTIONS(2896), + [anon_sym_async] = ACTIONS(2896), + [anon_sym_function] = ACTIONS(2896), + [anon_sym_new] = ACTIONS(2896), + [anon_sym_using] = ACTIONS(2896), + [anon_sym_PLUS] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_SLASH] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_TILDE] = ACTIONS(2894), + [anon_sym_void] = ACTIONS(2896), + [anon_sym_delete] = ACTIONS(2896), + [anon_sym_PLUS_PLUS] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2894), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2894), + [sym_number] = ACTIONS(2894), + [sym_private_property_identifier] = ACTIONS(2894), + [sym_this] = ACTIONS(2896), + [sym_super] = ACTIONS(2896), + [sym_true] = ACTIONS(2896), + [sym_false] = ACTIONS(2896), + [sym_null] = ACTIONS(2896), + [sym_undefined] = ACTIONS(2896), + [anon_sym_AT] = ACTIONS(2894), + [anon_sym_static] = ACTIONS(2896), + [anon_sym_readonly] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2896), + [anon_sym_set] = ACTIONS(2896), + [anon_sym_declare] = ACTIONS(2896), + [anon_sym_public] = ACTIONS(2896), + [anon_sym_private] = ACTIONS(2896), + [anon_sym_protected] = ACTIONS(2896), + [anon_sym_override] = ACTIONS(2896), + [anon_sym_module] = ACTIONS(2896), + [anon_sym_any] = ACTIONS(2896), + [anon_sym_number] = ACTIONS(2896), + [anon_sym_boolean] = ACTIONS(2896), + [anon_sym_string] = ACTIONS(2896), + [anon_sym_symbol] = ACTIONS(2896), + [anon_sym_object] = ACTIONS(2896), + [anon_sym_abstract] = ACTIONS(2896), + [anon_sym_interface] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2896), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(904)] = { + [ts_builtin_sym_end] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2900), + [anon_sym_export] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_typeof] = ACTIONS(2900), + [anon_sym_import] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2900), + [anon_sym_var] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_await] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_debugger] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_case] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_using] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_SLASH] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_TILDE] = ACTIONS(2898), + [anon_sym_void] = ACTIONS(2900), + [anon_sym_delete] = ACTIONS(2900), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2898), + [sym_number] = ACTIONS(2898), + [sym_private_property_identifier] = ACTIONS(2898), + [sym_this] = ACTIONS(2900), + [sym_super] = ACTIONS(2900), + [sym_true] = ACTIONS(2900), + [sym_false] = ACTIONS(2900), + [sym_null] = ACTIONS(2900), + [sym_undefined] = ACTIONS(2900), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_readonly] = ACTIONS(2900), + [anon_sym_get] = ACTIONS(2900), + [anon_sym_set] = ACTIONS(2900), + [anon_sym_declare] = ACTIONS(2900), + [anon_sym_public] = ACTIONS(2900), + [anon_sym_private] = ACTIONS(2900), + [anon_sym_protected] = ACTIONS(2900), + [anon_sym_override] = ACTIONS(2900), + [anon_sym_module] = ACTIONS(2900), + [anon_sym_any] = ACTIONS(2900), + [anon_sym_number] = ACTIONS(2900), + [anon_sym_boolean] = ACTIONS(2900), + [anon_sym_string] = ACTIONS(2900), + [anon_sym_symbol] = ACTIONS(2900), + [anon_sym_object] = ACTIONS(2900), + [anon_sym_abstract] = ACTIONS(2900), + [anon_sym_interface] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(905)] = { + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2904), + [anon_sym_export] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_type] = ACTIONS(2904), + [anon_sym_namespace] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_typeof] = ACTIONS(2904), + [anon_sym_import] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2904), + [anon_sym_var] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_await] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_debugger] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_case] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_class] = ACTIONS(2904), + [anon_sym_async] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_using] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_void] = ACTIONS(2904), + [anon_sym_delete] = ACTIONS(2904), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2902), + [sym_number] = ACTIONS(2902), + [sym_private_property_identifier] = ACTIONS(2902), + [sym_this] = ACTIONS(2904), + [sym_super] = ACTIONS(2904), + [sym_true] = ACTIONS(2904), + [sym_false] = ACTIONS(2904), + [sym_null] = ACTIONS(2904), + [sym_undefined] = ACTIONS(2904), + [anon_sym_AT] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_readonly] = ACTIONS(2904), + [anon_sym_get] = ACTIONS(2904), + [anon_sym_set] = ACTIONS(2904), + [anon_sym_declare] = ACTIONS(2904), + [anon_sym_public] = ACTIONS(2904), + [anon_sym_private] = ACTIONS(2904), + [anon_sym_protected] = ACTIONS(2904), + [anon_sym_override] = ACTIONS(2904), + [anon_sym_module] = ACTIONS(2904), + [anon_sym_any] = ACTIONS(2904), + [anon_sym_number] = ACTIONS(2904), + [anon_sym_boolean] = ACTIONS(2904), + [anon_sym_string] = ACTIONS(2904), + [anon_sym_symbol] = ACTIONS(2904), + [anon_sym_object] = ACTIONS(2904), + [anon_sym_abstract] = ACTIONS(2904), + [anon_sym_interface] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(906)] = { + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2908), + [anon_sym_export] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_type] = ACTIONS(2908), + [anon_sym_namespace] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_typeof] = ACTIONS(2908), + [anon_sym_import] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2908), + [anon_sym_var] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_await] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_debugger] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_class] = ACTIONS(2908), + [anon_sym_async] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_using] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_SLASH] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_void] = ACTIONS(2908), + [anon_sym_delete] = ACTIONS(2908), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2906), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [sym_this] = ACTIONS(2908), + [sym_super] = ACTIONS(2908), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [sym_null] = ACTIONS(2908), + [sym_undefined] = ACTIONS(2908), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_readonly] = ACTIONS(2908), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2908), + [anon_sym_public] = ACTIONS(2908), + [anon_sym_private] = ACTIONS(2908), + [anon_sym_protected] = ACTIONS(2908), + [anon_sym_override] = ACTIONS(2908), + [anon_sym_module] = ACTIONS(2908), + [anon_sym_any] = ACTIONS(2908), + [anon_sym_number] = ACTIONS(2908), + [anon_sym_boolean] = ACTIONS(2908), + [anon_sym_string] = ACTIONS(2908), + [anon_sym_symbol] = ACTIONS(2908), + [anon_sym_object] = ACTIONS(2908), + [anon_sym_abstract] = ACTIONS(2908), + [anon_sym_interface] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(907)] = { + [ts_builtin_sym_end] = ACTIONS(2910), + [sym_identifier] = ACTIONS(2912), + [anon_sym_export] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_typeof] = ACTIONS(2912), + [anon_sym_import] = ACTIONS(2912), + [anon_sym_with] = ACTIONS(2912), + [anon_sym_var] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_const] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_else] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_await] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_debugger] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_throw] = ACTIONS(2912), + [anon_sym_case] = ACTIONS(2912), + [anon_sym_yield] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_class] = ACTIONS(2912), + [anon_sym_async] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_using] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_SLASH] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_void] = ACTIONS(2912), + [anon_sym_delete] = ACTIONS(2912), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2910), + [sym_number] = ACTIONS(2910), + [sym_private_property_identifier] = ACTIONS(2910), + [sym_this] = ACTIONS(2912), + [sym_super] = ACTIONS(2912), + [sym_true] = ACTIONS(2912), + [sym_false] = ACTIONS(2912), + [sym_null] = ACTIONS(2912), + [sym_undefined] = ACTIONS(2912), + [anon_sym_AT] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_readonly] = ACTIONS(2912), + [anon_sym_get] = ACTIONS(2912), + [anon_sym_set] = ACTIONS(2912), + [anon_sym_declare] = ACTIONS(2912), + [anon_sym_public] = ACTIONS(2912), + [anon_sym_private] = ACTIONS(2912), + [anon_sym_protected] = ACTIONS(2912), + [anon_sym_override] = ACTIONS(2912), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_any] = ACTIONS(2912), + [anon_sym_number] = ACTIONS(2912), + [anon_sym_boolean] = ACTIONS(2912), + [anon_sym_string] = ACTIONS(2912), + [anon_sym_symbol] = ACTIONS(2912), + [anon_sym_object] = ACTIONS(2912), + [anon_sym_abstract] = ACTIONS(2912), + [anon_sym_interface] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2912), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(908)] = { + [ts_builtin_sym_end] = ACTIONS(2914), + [sym_identifier] = ACTIONS(2916), + [anon_sym_export] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_type] = ACTIONS(2916), + [anon_sym_namespace] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym_typeof] = ACTIONS(2916), + [anon_sym_import] = ACTIONS(2916), + [anon_sym_with] = ACTIONS(2916), + [anon_sym_var] = ACTIONS(2916), + [anon_sym_let] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_await] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_debugger] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_yield] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_class] = ACTIONS(2916), + [anon_sym_async] = ACTIONS(2916), + [anon_sym_function] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_SLASH] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_void] = ACTIONS(2916), + [anon_sym_delete] = ACTIONS(2916), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2914), + [sym_number] = ACTIONS(2914), + [sym_private_property_identifier] = ACTIONS(2914), + [sym_this] = ACTIONS(2916), + [sym_super] = ACTIONS(2916), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [sym_null] = ACTIONS(2916), + [sym_undefined] = ACTIONS(2916), + [anon_sym_AT] = ACTIONS(2914), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_readonly] = ACTIONS(2916), + [anon_sym_get] = ACTIONS(2916), + [anon_sym_set] = ACTIONS(2916), + [anon_sym_declare] = ACTIONS(2916), + [anon_sym_public] = ACTIONS(2916), + [anon_sym_private] = ACTIONS(2916), + [anon_sym_protected] = ACTIONS(2916), + [anon_sym_override] = ACTIONS(2916), + [anon_sym_module] = ACTIONS(2916), + [anon_sym_any] = ACTIONS(2916), + [anon_sym_number] = ACTIONS(2916), + [anon_sym_boolean] = ACTIONS(2916), + [anon_sym_string] = ACTIONS(2916), + [anon_sym_symbol] = ACTIONS(2916), + [anon_sym_object] = ACTIONS(2916), + [anon_sym_abstract] = ACTIONS(2916), + [anon_sym_interface] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(909)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(910)] = { + [ts_builtin_sym_end] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2922), + [anon_sym_export] = ACTIONS(2922), + [anon_sym_default] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_namespace] = ACTIONS(2922), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_RBRACE] = ACTIONS(2920), + [anon_sym_typeof] = ACTIONS(2922), + [anon_sym_import] = ACTIONS(2922), + [anon_sym_with] = ACTIONS(2922), + [anon_sym_var] = ACTIONS(2922), + [anon_sym_let] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2920), + [anon_sym_else] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_switch] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_await] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_do] = ACTIONS(2922), + [anon_sym_try] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_debugger] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_throw] = ACTIONS(2922), + [anon_sym_case] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2922), + [anon_sym_async] = ACTIONS(2922), + [anon_sym_function] = ACTIONS(2922), + [anon_sym_new] = ACTIONS(2922), + [anon_sym_using] = ACTIONS(2922), + [anon_sym_PLUS] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2922), + [anon_sym_SLASH] = ACTIONS(2922), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_TILDE] = ACTIONS(2920), + [anon_sym_void] = ACTIONS(2922), + [anon_sym_delete] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2920), + [sym_number] = ACTIONS(2920), + [sym_private_property_identifier] = ACTIONS(2920), + [sym_this] = ACTIONS(2922), + [sym_super] = ACTIONS(2922), + [sym_true] = ACTIONS(2922), + [sym_false] = ACTIONS(2922), + [sym_null] = ACTIONS(2922), + [sym_undefined] = ACTIONS(2922), + [anon_sym_AT] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_readonly] = ACTIONS(2922), + [anon_sym_get] = ACTIONS(2922), + [anon_sym_set] = ACTIONS(2922), + [anon_sym_declare] = ACTIONS(2922), + [anon_sym_public] = ACTIONS(2922), + [anon_sym_private] = ACTIONS(2922), + [anon_sym_protected] = ACTIONS(2922), + [anon_sym_override] = ACTIONS(2922), + [anon_sym_module] = ACTIONS(2922), + [anon_sym_any] = ACTIONS(2922), + [anon_sym_number] = ACTIONS(2922), + [anon_sym_boolean] = ACTIONS(2922), + [anon_sym_string] = ACTIONS(2922), + [anon_sym_symbol] = ACTIONS(2922), + [anon_sym_object] = ACTIONS(2922), + [anon_sym_abstract] = ACTIONS(2922), + [anon_sym_interface] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(911)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(2924), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(912)] = { + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2928), + [anon_sym_export] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_type] = ACTIONS(2928), + [anon_sym_namespace] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_typeof] = ACTIONS(2928), + [anon_sym_import] = ACTIONS(2928), + [anon_sym_with] = ACTIONS(2928), + [anon_sym_var] = ACTIONS(2928), + [anon_sym_let] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_else] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_LPAREN] = ACTIONS(2926), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_await] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_debugger] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_yield] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_class] = ACTIONS(2928), + [anon_sym_async] = ACTIONS(2928), + [anon_sym_function] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_using] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_SLASH] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_void] = ACTIONS(2928), + [anon_sym_delete] = ACTIONS(2928), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2926), + [sym_number] = ACTIONS(2926), + [sym_private_property_identifier] = ACTIONS(2926), + [sym_this] = ACTIONS(2928), + [sym_super] = ACTIONS(2928), + [sym_true] = ACTIONS(2928), + [sym_false] = ACTIONS(2928), + [sym_null] = ACTIONS(2928), + [sym_undefined] = ACTIONS(2928), + [anon_sym_AT] = ACTIONS(2926), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_readonly] = ACTIONS(2928), + [anon_sym_get] = ACTIONS(2928), + [anon_sym_set] = ACTIONS(2928), + [anon_sym_declare] = ACTIONS(2928), + [anon_sym_public] = ACTIONS(2928), + [anon_sym_private] = ACTIONS(2928), + [anon_sym_protected] = ACTIONS(2928), + [anon_sym_override] = ACTIONS(2928), + [anon_sym_module] = ACTIONS(2928), + [anon_sym_any] = ACTIONS(2928), + [anon_sym_number] = ACTIONS(2928), + [anon_sym_boolean] = ACTIONS(2928), + [anon_sym_string] = ACTIONS(2928), + [anon_sym_symbol] = ACTIONS(2928), + [anon_sym_object] = ACTIONS(2928), + [anon_sym_abstract] = ACTIONS(2928), + [anon_sym_interface] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(913)] = { + [ts_builtin_sym_end] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2932), + [anon_sym_export] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_type] = ACTIONS(2932), + [anon_sym_namespace] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_typeof] = ACTIONS(2932), + [anon_sym_import] = ACTIONS(2932), + [anon_sym_with] = ACTIONS(2932), + [anon_sym_var] = ACTIONS(2932), + [anon_sym_let] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_else] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_await] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_debugger] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_case] = ACTIONS(2932), + [anon_sym_yield] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_class] = ACTIONS(2932), + [anon_sym_async] = ACTIONS(2932), + [anon_sym_function] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_using] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_SLASH] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_void] = ACTIONS(2932), + [anon_sym_delete] = ACTIONS(2932), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2930), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [sym_this] = ACTIONS(2932), + [sym_super] = ACTIONS(2932), + [sym_true] = ACTIONS(2932), + [sym_false] = ACTIONS(2932), + [sym_null] = ACTIONS(2932), + [sym_undefined] = ACTIONS(2932), + [anon_sym_AT] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_readonly] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(2932), + [anon_sym_set] = ACTIONS(2932), + [anon_sym_declare] = ACTIONS(2932), + [anon_sym_public] = ACTIONS(2932), + [anon_sym_private] = ACTIONS(2932), + [anon_sym_protected] = ACTIONS(2932), + [anon_sym_override] = ACTIONS(2932), + [anon_sym_module] = ACTIONS(2932), + [anon_sym_any] = ACTIONS(2932), + [anon_sym_number] = ACTIONS(2932), + [anon_sym_boolean] = ACTIONS(2932), + [anon_sym_string] = ACTIONS(2932), + [anon_sym_symbol] = ACTIONS(2932), + [anon_sym_object] = ACTIONS(2932), + [anon_sym_abstract] = ACTIONS(2932), + [anon_sym_interface] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(914)] = { + [ts_builtin_sym_end] = ACTIONS(2934), + [sym_identifier] = ACTIONS(2936), + [anon_sym_export] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_type] = ACTIONS(2936), + [anon_sym_namespace] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_typeof] = ACTIONS(2936), + [anon_sym_import] = ACTIONS(2936), + [anon_sym_with] = ACTIONS(2936), + [anon_sym_var] = ACTIONS(2936), + [anon_sym_let] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_await] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_debugger] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_yield] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_class] = ACTIONS(2936), + [anon_sym_async] = ACTIONS(2936), + [anon_sym_function] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_using] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_SLASH] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_void] = ACTIONS(2936), + [anon_sym_delete] = ACTIONS(2936), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2934), + [sym_number] = ACTIONS(2934), + [sym_private_property_identifier] = ACTIONS(2934), + [sym_this] = ACTIONS(2936), + [sym_super] = ACTIONS(2936), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [sym_null] = ACTIONS(2936), + [sym_undefined] = ACTIONS(2936), + [anon_sym_AT] = ACTIONS(2934), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_readonly] = ACTIONS(2936), + [anon_sym_get] = ACTIONS(2936), + [anon_sym_set] = ACTIONS(2936), + [anon_sym_declare] = ACTIONS(2936), + [anon_sym_public] = ACTIONS(2936), + [anon_sym_private] = ACTIONS(2936), + [anon_sym_protected] = ACTIONS(2936), + [anon_sym_override] = ACTIONS(2936), + [anon_sym_module] = ACTIONS(2936), + [anon_sym_any] = ACTIONS(2936), + [anon_sym_number] = ACTIONS(2936), + [anon_sym_boolean] = ACTIONS(2936), + [anon_sym_string] = ACTIONS(2936), + [anon_sym_symbol] = ACTIONS(2936), + [anon_sym_object] = ACTIONS(2936), + [anon_sym_abstract] = ACTIONS(2936), + [anon_sym_interface] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(915)] = { + [ts_builtin_sym_end] = ACTIONS(2938), + [sym_identifier] = ACTIONS(2940), + [anon_sym_export] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_type] = ACTIONS(2940), + [anon_sym_namespace] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_typeof] = ACTIONS(2940), + [anon_sym_import] = ACTIONS(2940), + [anon_sym_with] = ACTIONS(2940), + [anon_sym_var] = ACTIONS(2940), + [anon_sym_let] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_else] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2938), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_await] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_debugger] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_case] = ACTIONS(2940), + [anon_sym_yield] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_class] = ACTIONS(2940), + [anon_sym_async] = ACTIONS(2940), + [anon_sym_function] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_using] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_SLASH] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_void] = ACTIONS(2940), + [anon_sym_delete] = ACTIONS(2940), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2938), + [sym_number] = ACTIONS(2938), + [sym_private_property_identifier] = ACTIONS(2938), + [sym_this] = ACTIONS(2940), + [sym_super] = ACTIONS(2940), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [sym_null] = ACTIONS(2940), + [sym_undefined] = ACTIONS(2940), + [anon_sym_AT] = ACTIONS(2938), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_readonly] = ACTIONS(2940), + [anon_sym_get] = ACTIONS(2940), + [anon_sym_set] = ACTIONS(2940), + [anon_sym_declare] = ACTIONS(2940), + [anon_sym_public] = ACTIONS(2940), + [anon_sym_private] = ACTIONS(2940), + [anon_sym_protected] = ACTIONS(2940), + [anon_sym_override] = ACTIONS(2940), + [anon_sym_module] = ACTIONS(2940), + [anon_sym_any] = ACTIONS(2940), + [anon_sym_number] = ACTIONS(2940), + [anon_sym_boolean] = ACTIONS(2940), + [anon_sym_string] = ACTIONS(2940), + [anon_sym_symbol] = ACTIONS(2940), + [anon_sym_object] = ACTIONS(2940), + [anon_sym_abstract] = ACTIONS(2940), + [anon_sym_interface] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(916)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_rest_pattern] = STATE(5519), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3879), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2466), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(917)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2923), + [sym_type] = STATE(3112), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2923), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2944), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(2946), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(918)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2908), + [sym_type] = STATE(3054), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2908), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2944), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(2946), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(919)] = { + [sym_identifier] = ACTIONS(2948), + [anon_sym_export] = ACTIONS(2948), + [anon_sym_type] = ACTIONS(2948), + [anon_sym_namespace] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_typeof] = ACTIONS(2948), + [anon_sym_import] = ACTIONS(2948), + [anon_sym_with] = ACTIONS(2948), + [anon_sym_var] = ACTIONS(2948), + [anon_sym_let] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_LPAREN] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_await] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_debugger] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_yield] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_class] = ACTIONS(2948), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_function] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_SLASH] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_void] = ACTIONS(2948), + [anon_sym_delete] = ACTIONS(2948), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2950), + [sym_number] = ACTIONS(2950), + [sym_private_property_identifier] = ACTIONS(2950), + [sym_this] = ACTIONS(2948), + [sym_super] = ACTIONS(2948), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [sym_null] = ACTIONS(2948), + [sym_undefined] = ACTIONS(2948), + [anon_sym_AT] = ACTIONS(2950), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_readonly] = ACTIONS(2948), + [anon_sym_get] = ACTIONS(2948), + [anon_sym_set] = ACTIONS(2948), + [anon_sym_declare] = ACTIONS(2948), + [anon_sym_public] = ACTIONS(2948), + [anon_sym_private] = ACTIONS(2948), + [anon_sym_protected] = ACTIONS(2948), + [anon_sym_override] = ACTIONS(2948), + [anon_sym_module] = ACTIONS(2948), + [anon_sym_any] = ACTIONS(2948), + [anon_sym_number] = ACTIONS(2948), + [anon_sym_boolean] = ACTIONS(2948), + [anon_sym_string] = ACTIONS(2948), + [anon_sym_symbol] = ACTIONS(2948), + [anon_sym_object] = ACTIONS(2948), + [anon_sym_abstract] = ACTIONS(2948), + [anon_sym_interface] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(920)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_asserts] = STATE(3228), + [sym_type] = STATE(3229), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_predicate] = STATE(3228), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3136), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(2956), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_asserts] = ACTIONS(2958), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(921)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_asserts] = STATE(3239), + [sym_type] = STATE(3240), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_predicate] = STATE(3239), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3136), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(2956), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_asserts] = ACTIONS(2958), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(922)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_asserts] = STATE(3818), + [sym_type] = STATE(3267), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_predicate] = STATE(3819), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3136), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(2956), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_asserts] = ACTIONS(2958), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(923)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_asserts] = STATE(1569), + [sym_type] = STATE(1570), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_predicate] = STATE(1569), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1471), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_asserts] = ACTIONS(2998), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(924)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_asserts] = STATE(1602), + [sym_type] = STATE(1551), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_predicate] = STATE(1602), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1471), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(2988), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_asserts] = ACTIONS(2998), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(925)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_asserts] = STATE(3310), + [sym_type] = STATE(3311), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_predicate] = STATE(3310), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3260), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3040), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_asserts] = ACTIONS(3050), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(926)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_asserts] = STATE(3322), + [sym_type] = STATE(3323), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_predicate] = STATE(3322), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3260), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3040), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_asserts] = ACTIONS(3050), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(927)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(928)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2908), + [sym_type] = STATE(3537), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2908), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3519), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3066), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_asserts] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(929)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(930)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(931)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(932)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(933)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2923), + [sym_type] = STATE(3560), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2923), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3519), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3066), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_asserts] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(934)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(935)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(936)] = { + [sym_identifier] = ACTIONS(3060), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(3062), + [anon_sym_typeof] = ACTIONS(3060), + [anon_sym_import] = ACTIONS(3060), + [anon_sym_with] = ACTIONS(3060), + [anon_sym_var] = ACTIONS(3060), + [anon_sym_let] = ACTIONS(3060), + [anon_sym_const] = ACTIONS(3060), + [anon_sym_BANG] = ACTIONS(3062), + [anon_sym_if] = ACTIONS(3060), + [anon_sym_switch] = ACTIONS(3060), + [anon_sym_for] = ACTIONS(3060), + [anon_sym_LPAREN] = ACTIONS(3062), + [anon_sym_SEMI] = ACTIONS(3062), + [anon_sym_await] = ACTIONS(3060), + [anon_sym_while] = ACTIONS(3060), + [anon_sym_do] = ACTIONS(3060), + [anon_sym_try] = ACTIONS(3060), + [anon_sym_break] = ACTIONS(3060), + [anon_sym_continue] = ACTIONS(3060), + [anon_sym_debugger] = ACTIONS(3060), + [anon_sym_return] = ACTIONS(3060), + [anon_sym_throw] = ACTIONS(3060), + [anon_sym_yield] = ACTIONS(3060), + [anon_sym_LBRACK] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(3062), + [anon_sym_SQUOTE] = ACTIONS(3062), + [anon_sym_class] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3060), + [anon_sym_new] = ACTIONS(3060), + [anon_sym_using] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3060), + [anon_sym_DASH] = ACTIONS(3060), + [anon_sym_SLASH] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(3062), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_void] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3060), + [anon_sym_PLUS_PLUS] = ACTIONS(3062), + [anon_sym_DASH_DASH] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3062), + [sym_number] = ACTIONS(3062), + [sym_private_property_identifier] = ACTIONS(3062), + [sym_this] = ACTIONS(3060), + [sym_super] = ACTIONS(3060), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [sym_null] = ACTIONS(3060), + [sym_undefined] = ACTIONS(3060), + [anon_sym_AT] = ACTIONS(3062), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_override] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_object] = ACTIONS(3060), + [anon_sym_abstract] = ACTIONS(3060), + [anon_sym_interface] = ACTIONS(3060), + [anon_sym_enum] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(937)] = { + [sym_identifier] = ACTIONS(3070), + [anon_sym_export] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_namespace] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3070), + [anon_sym_import] = ACTIONS(3070), + [anon_sym_with] = ACTIONS(3070), + [anon_sym_var] = ACTIONS(3070), + [anon_sym_let] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_switch] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_await] = ACTIONS(3070), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_debugger] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3072), + [anon_sym_DQUOTE] = ACTIONS(3072), + [anon_sym_SQUOTE] = ACTIONS(3072), + [anon_sym_class] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3070), + [anon_sym_using] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3072), + [anon_sym_TILDE] = ACTIONS(3072), + [anon_sym_void] = ACTIONS(3070), + [anon_sym_delete] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3072), + [anon_sym_DASH_DASH] = ACTIONS(3072), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3072), + [sym_number] = ACTIONS(3072), + [sym_private_property_identifier] = ACTIONS(3072), + [sym_this] = ACTIONS(3070), + [sym_super] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_null] = ACTIONS(3070), + [sym_undefined] = ACTIONS(3070), + [anon_sym_AT] = ACTIONS(3072), + [anon_sym_static] = ACTIONS(3070), + [anon_sym_readonly] = ACTIONS(3070), + [anon_sym_get] = ACTIONS(3070), + [anon_sym_set] = ACTIONS(3070), + [anon_sym_declare] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_module] = ACTIONS(3070), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(938)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_asserts] = STATE(4373), + [sym_type] = STATE(3500), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_predicate] = STATE(4387), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3260), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3040), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_asserts] = ACTIONS(3050), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(939)] = { + [sym_identifier] = ACTIONS(2504), + [anon_sym_export] = ACTIONS(2504), + [anon_sym_type] = ACTIONS(2504), + [anon_sym_namespace] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(2504), + [anon_sym_import] = ACTIONS(2504), + [anon_sym_with] = ACTIONS(2504), + [anon_sym_var] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_switch] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_await] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_debugger] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_throw] = ACTIONS(2504), + [anon_sym_yield] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2502), + [anon_sym_class] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_function] = ACTIONS(2504), + [anon_sym_new] = ACTIONS(2504), + [anon_sym_using] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_SLASH] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_TILDE] = ACTIONS(2502), + [anon_sym_void] = ACTIONS(2504), + [anon_sym_delete] = ACTIONS(2504), + [anon_sym_PLUS_PLUS] = ACTIONS(2502), + [anon_sym_DASH_DASH] = ACTIONS(2502), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2502), + [sym_number] = ACTIONS(2502), + [sym_private_property_identifier] = ACTIONS(2502), + [sym_this] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_true] = ACTIONS(2504), + [sym_false] = ACTIONS(2504), + [sym_null] = ACTIONS(2504), + [sym_undefined] = ACTIONS(2504), + [anon_sym_AT] = ACTIONS(2502), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_readonly] = ACTIONS(2504), + [anon_sym_get] = ACTIONS(2504), + [anon_sym_set] = ACTIONS(2504), + [anon_sym_declare] = ACTIONS(2504), + [anon_sym_public] = ACTIONS(2504), + [anon_sym_private] = ACTIONS(2504), + [anon_sym_protected] = ACTIONS(2504), + [anon_sym_override] = ACTIONS(2504), + [anon_sym_module] = ACTIONS(2504), + [anon_sym_any] = ACTIONS(2504), + [anon_sym_number] = ACTIONS(2504), + [anon_sym_boolean] = ACTIONS(2504), + [anon_sym_string] = ACTIONS(2504), + [anon_sym_symbol] = ACTIONS(2504), + [anon_sym_object] = ACTIONS(2504), + [anon_sym_abstract] = ACTIONS(2504), + [anon_sym_interface] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(940)] = { + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3074), + [anon_sym_type] = ACTIONS(3074), + [anon_sym_namespace] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3076), + [anon_sym_typeof] = ACTIONS(3074), + [anon_sym_import] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3074), + [anon_sym_var] = ACTIONS(3074), + [anon_sym_let] = ACTIONS(3074), + [anon_sym_const] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_switch] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_await] = ACTIONS(3074), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_do] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_debugger] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3076), + [anon_sym_class] = ACTIONS(3074), + [anon_sym_async] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3076), + [anon_sym_void] = ACTIONS(3074), + [anon_sym_delete] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(3076), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3076), + [sym_number] = ACTIONS(3076), + [sym_private_property_identifier] = ACTIONS(3076), + [sym_this] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3076), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_declare] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_module] = ACTIONS(3074), + [anon_sym_any] = ACTIONS(3074), + [anon_sym_number] = ACTIONS(3074), + [anon_sym_boolean] = ACTIONS(3074), + [anon_sym_string] = ACTIONS(3074), + [anon_sym_symbol] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_interface] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(941)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2908), + [sym_type] = STATE(3928), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2908), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3094), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_asserts] = ACTIONS(3102), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(942)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(5341), + [sym_type] = STATE(3415), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(5343), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3008), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(2942), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(2944), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_asserts] = ACTIONS(2946), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(943)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_asserts] = STATE(2923), + [sym_type] = STATE(3941), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_predicate] = STATE(2923), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(3717), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3078), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(3094), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_asserts] = ACTIONS(3102), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(944)] = { + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_override] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_any] = ACTIONS(2458), + [anon_sym_number] = ACTIONS(2458), + [anon_sym_boolean] = ACTIONS(2458), + [anon_sym_string] = ACTIONS(2458), + [anon_sym_symbol] = ACTIONS(2458), + [anon_sym_object] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(945)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_asserts] = STATE(1885), + [sym_type] = STATE(1886), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_predicate] = STATE(1885), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1786), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3138), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_asserts] = ACTIONS(3148), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(946)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_asserts] = STATE(1917), + [sym_type] = STATE(1919), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_predicate] = STATE(1917), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1786), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3110), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3138), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_asserts] = ACTIONS(3148), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(947)] = { + [sym_identifier] = ACTIONS(3158), + [anon_sym_export] = ACTIONS(3158), + [anon_sym_type] = ACTIONS(3158), + [anon_sym_namespace] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_typeof] = ACTIONS(3158), + [anon_sym_import] = ACTIONS(3158), + [anon_sym_with] = ACTIONS(3158), + [anon_sym_var] = ACTIONS(3158), + [anon_sym_let] = ACTIONS(3158), + [anon_sym_const] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_switch] = ACTIONS(3158), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_await] = ACTIONS(3158), + [anon_sym_while] = ACTIONS(3158), + [anon_sym_do] = ACTIONS(3158), + [anon_sym_try] = ACTIONS(3158), + [anon_sym_break] = ACTIONS(3158), + [anon_sym_continue] = ACTIONS(3158), + [anon_sym_debugger] = ACTIONS(3158), + [anon_sym_return] = ACTIONS(3158), + [anon_sym_throw] = ACTIONS(3158), + [anon_sym_yield] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3158), + [anon_sym_async] = ACTIONS(3158), + [anon_sym_function] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3158), + [anon_sym_using] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_void] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3160), + [sym_number] = ACTIONS(3160), + [sym_private_property_identifier] = ACTIONS(3160), + [sym_this] = ACTIONS(3158), + [sym_super] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_null] = ACTIONS(3158), + [sym_undefined] = ACTIONS(3158), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3158), + [anon_sym_readonly] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3158), + [anon_sym_set] = ACTIONS(3158), + [anon_sym_declare] = ACTIONS(3158), + [anon_sym_public] = ACTIONS(3158), + [anon_sym_private] = ACTIONS(3158), + [anon_sym_protected] = ACTIONS(3158), + [anon_sym_override] = ACTIONS(3158), + [anon_sym_module] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(3158), + [anon_sym_number] = ACTIONS(3158), + [anon_sym_boolean] = ACTIONS(3158), + [anon_sym_string] = ACTIONS(3158), + [anon_sym_symbol] = ACTIONS(3158), + [anon_sym_object] = ACTIONS(3158), + [anon_sym_abstract] = ACTIONS(3158), + [anon_sym_interface] = ACTIONS(3158), + [anon_sym_enum] = ACTIONS(3158), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(948)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(949)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3164), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(950)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4529), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(951)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(952)] = { + [sym_identifier] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_EQ] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_let] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_RPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3170), + [anon_sym_COLON] = ACTIONS(3172), + [anon_sym_yield] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_RBRACK] = ACTIONS(3172), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_async] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_EQ_GT] = ACTIONS(3172), + [anon_sym_QMARK_DOT] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3172), + [anon_sym_AMP3] = ACTIONS(3172), + [anon_sym_PIPE] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_private_property_identifier] = ACTIONS(3172), + [sym_this] = ACTIONS(3170), + [sym_super] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_undefined] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_readonly] = ACTIONS(3170), + [anon_sym_get] = ACTIONS(3170), + [anon_sym_set] = ACTIONS(3170), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_declare] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_any] = ACTIONS(3170), + [anon_sym_number] = ACTIONS(3170), + [anon_sym_boolean] = ACTIONS(3170), + [anon_sym_string] = ACTIONS(3170), + [anon_sym_symbol] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_extends] = ACTIONS(3170), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(953)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(954)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(955)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(956)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4493), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(957)] = { + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_COLON] = ACTIONS(3184), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_EQ_GT] = ACTIONS(3184), + [anon_sym_QMARK_DOT] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3184), + [anon_sym_AMP3] = ACTIONS(3184), + [anon_sym_PIPE] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_private_property_identifier] = ACTIONS(3184), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_extends] = ACTIONS(3182), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(958)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(959)] = { + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym_RPAREN] = ACTIONS(3190), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_COLON] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3190), + [anon_sym_RBRACK] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3190), + [anon_sym_SQUOTE] = ACTIONS(3190), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_EQ_GT] = ACTIONS(3190), + [anon_sym_QMARK_DOT] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3190), + [anon_sym_AMP3] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3190), + [sym_number] = ACTIONS(3190), + [sym_private_property_identifier] = ACTIONS(3190), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3190), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_extends] = ACTIONS(3188), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(960)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4593), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(961)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(962)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(963)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3926), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [sym_jsx_identifier] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(964)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(965)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(966)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(967)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(968)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(969)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4499), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(970)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4500), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(971)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1892), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(972)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4477), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(973)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3973), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(974)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2899), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(975)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2976), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(976)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4545), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(977)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3776), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(978)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4303), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(979)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3906), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(980)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3926), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(981)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4888), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2997), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(982)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3947), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(983)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(2021), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(984)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(2022), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(985)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(2027), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(986)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4978), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2028), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(987)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4978), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2035), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(988)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1505), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(989)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3267), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(990)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1506), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(991)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4552), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(992)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3834), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(993)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2989), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(994)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1891), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(995)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(996)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3404), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(997)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3406), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(998)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1914), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(999)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1915), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1000)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(4284), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1001)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1936), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1002)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1937), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1003)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1948), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1004)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1950), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1005)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4888), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(4055), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(4597), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1006)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3787), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1007)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4507), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1008)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3810), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1009)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2909), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1010)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3053), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1011)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4585), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1012)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(4078), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1013)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3207), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1014)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3208), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1015)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3213), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1016)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(5215), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(3214), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1017)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(5215), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(3216), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1018)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4596), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1019)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4598), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1020)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4599), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1021)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3108), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1022)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3230), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1023)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3231), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1024)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1982), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1025)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1983), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1026)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3236), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1027)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3237), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1028)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2975), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1029)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3245), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1030)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3798), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1031)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3246), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1032)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3249), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1033)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4536), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1034)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3250), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1035)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3986), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1036)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1539), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1037)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1540), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1038)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1546), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1039)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4656), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(1547), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1040)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4656), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(1549), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1041)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3115), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1042)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1577), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1043)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1580), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1044)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1606), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1045)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1608), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1046)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1523), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1047)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1524), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1048)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1589), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1049)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1590), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1050)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(1979), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1051)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(4326), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1052)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3342), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1053)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3343), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1054)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3346), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1055)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3107), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1056)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4689), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(3354), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1057)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3806), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1058)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3335), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1059)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3813), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1060)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3338), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1061)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3318), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1062)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3320), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1063)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2909), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1064)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3334), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1065)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3336), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1066)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3348), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1067)] = { + [sym_import] = STATE(4677), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5587), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(3157), + [sym__type_query_call_expression_in_type_annotation] = STATE(3287), + [sym_type] = STATE(3352), + [sym_constructor_type] = STATE(3314), + [sym_primary_type] = STATE(3315), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(3314), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5356), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(3314), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(3314), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_infer] = ACTIONS(3052), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1068)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3538), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1069)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2989), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1070)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3651), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1071)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3652), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1072)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(5073), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2995), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1073)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(5073), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2997), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1074)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4579), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1075)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3060), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1076)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3061), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1077)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3539), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1078)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3541), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1079)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4888), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2995), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1080)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1081)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3554), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1082)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(4376), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1083)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1488), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1084)] = { + [sym_import] = STATE(4639), + [sym_nested_identifier] = STATE(5653), + [sym_string] = STATE(1520), + [sym_formal_parameters] = STATE(5741), + [sym_nested_type_identifier] = STATE(1477), + [sym__type_query_member_expression_in_type_annotation] = STATE(1475), + [sym__type_query_call_expression_in_type_annotation] = STATE(1526), + [sym_type] = STATE(1491), + [sym_constructor_type] = STATE(1527), + [sym_primary_type] = STATE(1528), + [sym_template_literal_type] = STATE(1518), + [sym_infer_type] = STATE(1527), + [sym_conditional_type] = STATE(1518), + [sym_generic_type] = STATE(1518), + [sym_type_query] = STATE(1518), + [sym_index_type_query] = STATE(1518), + [sym_lookup_type] = STATE(1518), + [sym_literal_type] = STATE(1518), + [sym__number] = STATE(1529), + [sym_existential_type] = STATE(1518), + [sym_flow_maybe_type] = STATE(1518), + [sym_parenthesized_type] = STATE(1518), + [sym_predefined_type] = STATE(1518), + [sym_object_type] = STATE(1518), + [sym_type_parameters] = STATE(5325), + [sym_array_type] = STATE(1518), + [sym_tuple_type] = STATE(1518), + [sym_readonly_type] = STATE(1527), + [sym_union_type] = STATE(1518), + [sym_intersection_type] = STATE(1518), + [sym_function_type] = STATE(1527), + [sym_identifier] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_typeof] = ACTIONS(2966), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2972), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_new] = ACTIONS(2974), + [anon_sym_AMP3] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2984), + [sym_number] = ACTIONS(2986), + [sym_this] = ACTIONS(3222), + [sym_true] = ACTIONS(2990), + [sym_false] = ACTIONS(2990), + [sym_null] = ACTIONS(2990), + [sym_undefined] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2982), + [anon_sym_number] = ACTIONS(2982), + [anon_sym_boolean] = ACTIONS(2982), + [anon_sym_string] = ACTIONS(2982), + [anon_sym_symbol] = ACTIONS(2982), + [anon_sym_object] = ACTIONS(2982), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_infer] = ACTIONS(3000), + [anon_sym_keyof] = ACTIONS(3002), + [anon_sym_unique] = ACTIONS(3004), + [anon_sym_unknown] = ACTIONS(2982), + [anon_sym_never] = ACTIONS(2982), + [anon_sym_LBRACE_PIPE] = ACTIONS(3006), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1085)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2899), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1086)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2976), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1087)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4504), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1088)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2975), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1089)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3415), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1090)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3572), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1091)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2989), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1092)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3840), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1093)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3841), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1094)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4821), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2995), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1095)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4821), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2997), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1096)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4542), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1097)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2909), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1098)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3929), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1099)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4314), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1100)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3933), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1101)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3934), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1102)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4547), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1103)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2921), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1104)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3940), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1105)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3103), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1106)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3520), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1107)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2899), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1108)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2976), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1109)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1110)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(2975), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1111)] = { + [sym_import] = STATE(4934), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5579), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3376), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(3946), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5434), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [anon_sym_new] = ACTIONS(3088), + [anon_sym_AMP3] = ACTIONS(3090), + [anon_sym_PIPE] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_QMARK] = ACTIONS(3098), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_infer] = ACTIONS(3104), + [anon_sym_keyof] = ACTIONS(3106), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(3108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1112)] = { + [sym_import] = STATE(4933), + [sym_nested_identifier] = STATE(5987), + [sym_string] = STATE(1921), + [sym_formal_parameters] = STATE(5957), + [sym_nested_type_identifier] = STATE(1852), + [sym__type_query_member_expression_in_type_annotation] = STATE(1808), + [sym__type_query_call_expression_in_type_annotation] = STATE(1958), + [sym_type] = STATE(2056), + [sym_constructor_type] = STATE(1964), + [sym_primary_type] = STATE(1970), + [sym_template_literal_type] = STATE(1896), + [sym_infer_type] = STATE(1964), + [sym_conditional_type] = STATE(1896), + [sym_generic_type] = STATE(1896), + [sym_type_query] = STATE(1896), + [sym_index_type_query] = STATE(1896), + [sym_lookup_type] = STATE(1896), + [sym_literal_type] = STATE(1896), + [sym__number] = STATE(1972), + [sym_existential_type] = STATE(1896), + [sym_flow_maybe_type] = STATE(1896), + [sym_parenthesized_type] = STATE(1896), + [sym_predefined_type] = STATE(1896), + [sym_object_type] = STATE(1896), + [sym_type_parameters] = STATE(5402), + [sym_array_type] = STATE(1896), + [sym_tuple_type] = STATE(1896), + [sym_readonly_type] = STATE(1964), + [sym_union_type] = STATE(1896), + [sym_intersection_type] = STATE(1896), + [sym_function_type] = STATE(1964), + [sym_identifier] = ACTIONS(3216), + [anon_sym_STAR] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3122), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3124), + [anon_sym_AMP3] = ACTIONS(3126), + [anon_sym_PIPE] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3218), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_infer] = ACTIONS(3150), + [anon_sym_keyof] = ACTIONS(3152), + [anon_sym_unique] = ACTIONS(3154), + [anon_sym_unknown] = ACTIONS(3132), + [anon_sym_never] = ACTIONS(3132), + [anon_sym_LBRACE_PIPE] = ACTIONS(3156), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1113)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4560), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1114)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4570), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1115)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3497), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1116)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4470), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(756), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(211), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1117)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3256), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1118)] = { + [sym_import] = STATE(5182), + [sym_nested_identifier] = STATE(5979), + [sym_string] = STATE(3192), + [sym_formal_parameters] = STATE(5887), + [sym_nested_type_identifier] = STATE(3071), + [sym__type_query_member_expression_in_type_annotation] = STATE(3020), + [sym__type_query_call_expression_in_type_annotation] = STATE(3144), + [sym_type] = STATE(3257), + [sym_constructor_type] = STATE(3196), + [sym_primary_type] = STATE(3197), + [sym_template_literal_type] = STATE(3191), + [sym_infer_type] = STATE(3196), + [sym_conditional_type] = STATE(3191), + [sym_generic_type] = STATE(3191), + [sym_type_query] = STATE(3191), + [sym_index_type_query] = STATE(3191), + [sym_lookup_type] = STATE(3191), + [sym_literal_type] = STATE(3191), + [sym__number] = STATE(3199), + [sym_existential_type] = STATE(3191), + [sym_flow_maybe_type] = STATE(3191), + [sym_parenthesized_type] = STATE(3191), + [sym_predefined_type] = STATE(3191), + [sym_object_type] = STATE(3191), + [sym_type_parameters] = STATE(5269), + [sym_array_type] = STATE(3191), + [sym_tuple_type] = STATE(3191), + [sym_readonly_type] = STATE(3196), + [sym_union_type] = STATE(3191), + [sym_intersection_type] = STATE(3191), + [sym_function_type] = STATE(3196), + [sym_identifier] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1587), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_new] = ACTIONS(1597), + [anon_sym_AMP3] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_number] = ACTIONS(1607), + [sym_this] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_undefined] = ACTIONS(1611), + [anon_sym_readonly] = ACTIONS(1613), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_any] = ACTIONS(1015), + [anon_sym_number] = ACTIONS(1015), + [anon_sym_boolean] = ACTIONS(1015), + [anon_sym_string] = ACTIONS(1015), + [anon_sym_symbol] = ACTIONS(1015), + [anon_sym_object] = ACTIONS(1015), + [anon_sym_abstract] = ACTIONS(1007), + [anon_sym_infer] = ACTIONS(1009), + [anon_sym_keyof] = ACTIONS(1011), + [anon_sym_unique] = ACTIONS(1013), + [anon_sym_unknown] = ACTIONS(1015), + [anon_sym_never] = ACTIONS(1015), + [anon_sym_LBRACE_PIPE] = ACTIONS(1017), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1119)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4564), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1120)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4569), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1121)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4574), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1122)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4586), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1123)] = { + [sym_import] = STATE(4797), + [sym_nested_identifier] = STATE(5918), + [sym_string] = STATE(2996), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(2886), + [sym__type_query_member_expression_in_type_annotation] = STATE(3291), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4605), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(2912), + [sym_template_literal_type] = STATE(2992), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(2992), + [sym_generic_type] = STATE(2992), + [sym_type_query] = STATE(2992), + [sym_index_type_query] = STATE(2992), + [sym_lookup_type] = STATE(2992), + [sym_literal_type] = STATE(2992), + [sym__number] = STATE(2913), + [sym_existential_type] = STATE(2992), + [sym_flow_maybe_type] = STATE(2992), + [sym_parenthesized_type] = STATE(2992), + [sym_predefined_type] = STATE(2992), + [sym_object_type] = STATE(2992), + [sym_type_parameters] = STATE(5555), + [sym_array_type] = STATE(2992), + [sym_tuple_type] = STATE(2992), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(2992), + [sym_intersection_type] = STATE(2992), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(132), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_new] = ACTIONS(1571), + [anon_sym_AMP3] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_number] = ACTIONS(1517), + [sym_this] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_undefined] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1577), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_any] = ACTIONS(215), + [anon_sym_number] = ACTIONS(215), + [anon_sym_boolean] = ACTIONS(215), + [anon_sym_string] = ACTIONS(215), + [anon_sym_symbol] = ACTIONS(215), + [anon_sym_object] = ACTIONS(215), + [anon_sym_abstract] = ACTIONS(599), + [anon_sym_infer] = ACTIONS(601), + [anon_sym_keyof] = ACTIONS(603), + [anon_sym_unique] = ACTIONS(213), + [anon_sym_unknown] = ACTIONS(215), + [anon_sym_never] = ACTIONS(215), + [anon_sym_LBRACE_PIPE] = ACTIONS(217), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1124)] = { + [sym_import] = STATE(5184), + [sym_nested_identifier] = STATE(5975), + [sym_string] = STATE(3295), + [sym_formal_parameters] = STATE(5946), + [sym_nested_type_identifier] = STATE(3211), + [sym__type_query_member_expression_in_type_annotation] = STATE(2890), + [sym__type_query_call_expression_in_type_annotation] = STATE(2891), + [sym_type] = STATE(4689), + [sym_constructor_type] = STATE(2911), + [sym_primary_type] = STATE(3347), + [sym_template_literal_type] = STATE(3470), + [sym_infer_type] = STATE(2911), + [sym_conditional_type] = STATE(3470), + [sym_generic_type] = STATE(3470), + [sym_type_query] = STATE(3470), + [sym_index_type_query] = STATE(3470), + [sym_lookup_type] = STATE(3470), + [sym_literal_type] = STATE(3470), + [sym__number] = STATE(3316), + [sym_existential_type] = STATE(3470), + [sym_flow_maybe_type] = STATE(3470), + [sym_parenthesized_type] = STATE(3470), + [sym_predefined_type] = STATE(3470), + [sym_object_type] = STATE(3470), + [sym_type_parameters] = STATE(5247), + [sym_array_type] = STATE(3470), + [sym_tuple_type] = STATE(3470), + [sym_readonly_type] = STATE(2911), + [sym_union_type] = STATE(3470), + [sym_intersection_type] = STATE(3470), + [sym_function_type] = STATE(2911), + [sym_identifier] = ACTIONS(3224), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_LBRACE] = ACTIONS(3012), + [anon_sym_typeof] = ACTIONS(3014), + [anon_sym_import] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_DQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(1509), + [anon_sym_AMP3] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3036), + [sym_number] = ACTIONS(3038), + [sym_this] = ACTIONS(3226), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_undefined] = ACTIONS(3042), + [anon_sym_readonly] = ACTIONS(1523), + [anon_sym_QMARK] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(207), + [anon_sym_infer] = ACTIONS(209), + [anon_sym_keyof] = ACTIONS(3054), + [anon_sym_unique] = ACTIONS(3056), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1125)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4638), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4638), + [sym_pair] = STATE(4638), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4694), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1126)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1127)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1128)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1129)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1130)] = { + [sym_export_statement] = STATE(3778), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3778), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3778), + [sym_property_signature] = STATE(3778), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3778), + [sym_index_signature] = STATE(3778), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3338), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1131)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1132)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3352), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3358), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1133)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1134)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1135)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4638), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4638), + [sym_pair] = STATE(4638), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4694), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1136)] = { + [sym_export_statement] = STATE(3863), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(4634), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(4836), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(4634), + [sym_method_definition] = STATE(4836), + [sym_pair] = STATE(4836), + [sym_pair_pattern] = STATE(4634), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3863), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3863), + [sym_property_signature] = STATE(3863), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3863), + [sym_index_signature] = STATE(3863), + [aux_sym_export_statement_repeat1] = STATE(4506), + [aux_sym_object_repeat1] = STATE(4837), + [aux_sym_object_pattern_repeat1] = STATE(4815), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_PIPE_RBRACE] = ACTIONS(3270), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1137)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1138)] = { + [sym_nested_identifier] = STATE(225), + [sym_string] = STATE(222), + [sym__module] = STATE(230), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1139)] = { + [sym_nested_identifier] = STATE(225), + [sym_string] = STATE(222), + [sym__module] = STATE(230), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1140)] = { + [sym_nested_identifier] = STATE(225), + [sym_string] = STATE(222), + [sym__module] = STATE(230), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1141)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1142)] = { + [sym_nested_identifier] = STATE(752), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1143)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [aux_sym_object_repeat1] = STATE(4947), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1144)] = { + [sym_nested_identifier] = STATE(752), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1145)] = { + [sym_nested_identifier] = STATE(752), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4964), + [sym_identifier] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(691), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(720), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1146)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(219), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(222), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(222), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(222), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1147)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1148)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1149)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(788), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1150)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(844), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1151)] = { + [sym_export_statement] = STATE(3770), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(5479), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(5493), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(5479), + [sym_method_definition] = STATE(5493), + [sym_pair] = STATE(5493), + [sym_pair_pattern] = STATE(5479), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3770), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3770), + [sym_property_signature] = STATE(3770), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3770), + [sym_index_signature] = STATE(3770), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3397), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3384), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_protected] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_any] = ACTIONS(3384), + [anon_sym_number] = ACTIONS(3384), + [anon_sym_boolean] = ACTIONS(3384), + [anon_sym_string] = ACTIONS(3384), + [anon_sym_symbol] = ACTIONS(3384), + [anon_sym_object] = ACTIONS(3384), + [anon_sym_abstract] = ACTIONS(3268), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1152)] = { + [sym_export_statement] = STATE(3780), + [sym_object_pattern] = STATE(5778), + [sym_object_assignment_pattern] = STATE(5479), + [sym_array_pattern] = STATE(5778), + [sym__call_signature] = STATE(4088), + [sym__destructuring_pattern] = STATE(5778), + [sym_spread_element] = STATE(5493), + [sym_string] = STATE(3055), + [sym_decorator] = STATE(1282), + [sym_formal_parameters] = STATE(3274), + [sym_rest_pattern] = STATE(5479), + [sym_method_definition] = STATE(5493), + [sym_pair] = STATE(5493), + [sym_pair_pattern] = STATE(5479), + [sym__property_name] = STATE(3055), + [sym_computed_property_name] = STATE(3055), + [sym_method_signature] = STATE(3780), + [sym_accessibility_modifier] = STATE(2729), + [sym_override_modifier] = STATE(2748), + [sym_call_signature] = STATE(3780), + [sym_property_signature] = STATE(3780), + [sym_type_parameters] = STATE(5499), + [sym_construct_signature] = STATE(3780), + [sym_index_signature] = STATE(3780), + [aux_sym_export_statement_repeat1] = STATE(4506), + [sym_identifier] = ACTIONS(3384), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_let] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(1593), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3256), + [sym_private_property_identifier] = ACTIONS(3256), + [anon_sym_AT] = ACTIONS(97), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3397), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3384), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_protected] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_module] = ACTIONS(3384), + [anon_sym_any] = ACTIONS(3384), + [anon_sym_number] = ACTIONS(3384), + [anon_sym_boolean] = ACTIONS(3384), + [anon_sym_string] = ACTIONS(3384), + [anon_sym_symbol] = ACTIONS(3384), + [anon_sym_object] = ACTIONS(3384), + [anon_sym_abstract] = ACTIONS(3268), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1153)] = { + [sym_nested_identifier] = STATE(4482), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [sym_identifier] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1154)] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1542), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1155)] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1542), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1156)] = { + [sym_nested_identifier] = STATE(752), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [sym_identifier] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1157)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1158)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(806), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(878), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(225), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1159)] = { + [sym_nested_identifier] = STATE(225), + [sym_string] = STATE(222), + [sym__module] = STATE(230), + [sym_identifier] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1160)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1161)] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1542), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(862), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1162)] = { + [sym_nested_identifier] = STATE(752), + [sym_string] = STATE(759), + [sym__module] = STATE(865), + [sym_identifier] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1505), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1163)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1164)] = { + [sym_variable_declarator] = STATE(4473), + [sym_object_pattern] = STATE(3716), + [sym_array_pattern] = STATE(3716), + [sym__destructuring_pattern] = STATE(3716), + [sym_identifier] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_COLON] = ACTIONS(856), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1165)] = { + [sym_nested_identifier] = STATE(1509), + [sym_string] = STATE(1510), + [sym__module] = STATE(1708), + [sym_identifier] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(830), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_of] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_EQ_GT] = ACTIONS(868), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(1166)] = { + [sym_nested_identifier] = STATE(1538), + [sym_string] = STATE(1542), + [sym__module] = STATE(1738), + [sym_identifier] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_as] = ACTIONS(120), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(120), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(120), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(712), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(120), + [anon_sym_PIPE_PIPE] = ACTIONS(120), + [anon_sym_GT_GT] = ACTIONS(120), + [anon_sym_GT_GT_GT] = ACTIONS(120), + [anon_sym_LT_LT] = ACTIONS(120), + [anon_sym_AMP3] = ACTIONS(120), + [anon_sym_CARET] = ACTIONS(120), + [anon_sym_PIPE] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_PERCENT] = ACTIONS(120), + [anon_sym_STAR_STAR] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(120), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(120), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_QMARK_QMARK] = ACTIONS(120), + [anon_sym_instanceof] = ACTIONS(120), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(120), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 14, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(881), 1, + anon_sym_in, + ACTIONS(884), 1, + anon_sym_of, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [93] = 14, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + ACTIONS(3409), 1, + sym_identifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [186] = 13, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(881), 1, + anon_sym_in, + ACTIONS(884), 1, + anon_sym_of, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + sym_identifier, + STATE(4473), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3378), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 13, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [277] = 14, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + ACTIONS(3409), 1, + sym_identifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [370] = 4, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3413), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3415), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [443] = 14, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [536] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3443), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [607] = 15, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, + anon_sym_EQ, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [702] = 4, + ACTIONS(3449), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3445), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3447), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [775] = 14, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + ACTIONS(3409), 1, + sym_identifier, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [868] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(923), 1, + anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + [957] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3451), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3453), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1028] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3445), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3447), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1099] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3455), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3457), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1170] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + [1259] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3413), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3415), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1330] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3459), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3461), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1401] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3463), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3465), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1472] = 12, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3380), 1, + sym_identifier, + STATE(752), 1, + sym_nested_identifier, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [1560] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2458), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2456), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1630] = 13, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(3467), 1, + anon_sym_EQ, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3474), 1, + anon_sym_LT, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + 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, + [1720] = 13, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(3467), 1, + anon_sym_EQ, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3474), 1, + anon_sym_LT, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + 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, + [1810] = 13, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(3467), 1, + anon_sym_EQ, + ACTIONS(3469), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3474), 1, + anon_sym_LT, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + 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, + [1900] = 13, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [1990] = 13, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + 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, + [2080] = 11, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + STATE(4602), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [2166] = 12, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3477), 1, + sym_identifier, + STATE(3494), 1, + sym_nested_identifier, + STATE(3565), 1, + sym_string, + STATE(4195), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [2254] = 13, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + 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, + [2344] = 12, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3374), 1, + sym_identifier, + ACTIONS(3376), 1, + anon_sym_DQUOTE, + ACTIONS(3378), 1, + anon_sym_SQUOTE, + STATE(222), 1, + sym_string, + STATE(225), 1, + sym_nested_identifier, + STATE(230), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [2432] = 12, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3405), 1, + sym_identifier, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, + STATE(4482), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [2520] = 14, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, + anon_sym_EQ, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [2612] = 14, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(3481), 1, + anon_sym_DOT, + ACTIONS(3483), 1, + anon_sym_QMARK_DOT, + ACTIONS(3485), 1, + anon_sym_LT, + STATE(3101), 1, + sym_arguments, + STATE(3220), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3425), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3423), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [2704] = 12, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3487), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3423), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2792] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [2880] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [2968] = 12, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3407), 1, + sym_identifier, + STATE(1538), 1, + sym_nested_identifier, + STATE(1542), 1, + sym_string, + STATE(1738), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [3056] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2504), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2502), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [3126] = 11, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + STATE(4473), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [3212] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(909), 1, + anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [3300] = 13, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(935), 1, + anon_sym_COLON, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [3390] = 5, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3423), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [3464] = 13, + ACTIONS(691), 1, + anon_sym_EQ, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(701), 1, + anon_sym_COLON, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(720), 1, + anon_sym_QMARK, + ACTIONS(2250), 1, + anon_sym_LPAREN, + ACTIONS(2259), 1, + anon_sym_LT, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + 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, + [3554] = 14, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(881), 1, + anon_sym_in, + ACTIONS(884), 1, + anon_sym_of, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [3645] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [3732] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [3823] = 9, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(1655), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3507), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(157), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3904] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(955), 1, + anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [3991] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [4078] = 13, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(836), 1, + anon_sym_COLON, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [4167] = 14, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3425), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4258] = 8, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_DOT, + ACTIONS(3519), 1, + anon_sym_LT, + STATE(1273), 1, + sym_arguments, + STATE(5286), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3515), 13, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3513), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [4337] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3521), 1, + anon_sym_EQ, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4428] = 16, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3532), 1, + anon_sym_QMARK, + STATE(2994), 1, + sym_type_arguments, + STATE(5530), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3490), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3526), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4523] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [4610] = 13, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_DOT, + ACTIONS(3538), 1, + anon_sym_LT, + STATE(3212), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3490), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3526), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3499), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4699] = 8, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3541), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4777] = 15, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3526), 1, + anon_sym_RPAREN, + ACTIONS(3544), 1, + anon_sym_QMARK, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3490), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3541), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4869] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1025), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [4955] = 8, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(788), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(126), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5033] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3546), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5123] = 6, + ACTIONS(3554), 1, + anon_sym_AT, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3552), 14, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3550), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [5197] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1021), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [5283] = 8, + ACTIONS(219), 1, + anon_sym_EQ, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(788), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(222), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5361] = 15, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, + anon_sym_EQ, + ACTIONS(3562), 1, + anon_sym_RPAREN, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3490), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3560), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5453] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1027), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [5539] = 12, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3487), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5625] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [5711] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(157), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [5785] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1019), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [5871] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5961] = 9, + ACTIONS(219), 1, + anon_sym_EQ, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1655), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6041] = 8, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, + anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6119] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1033), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [6205] = 12, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(881), 1, + anon_sym_in, + ACTIONS(884), 1, + anon_sym_of, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3571), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4943), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 11, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [6291] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1031), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [6377] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1023), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [6463] = 6, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3423), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6537] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3576), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6627] = 6, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(157), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6701] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1035), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [6787] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3582), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3580), 43, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [6855] = 14, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3425), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3423), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6945] = 12, + ACTIONS(145), 1, + anon_sym_DQUOTE, + ACTIONS(147), 1, + anon_sym_SQUOTE, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1029), 1, + anon_sym_EQ, + ACTIONS(3382), 1, + sym_identifier, + STATE(1509), 1, + sym_nested_identifier, + STATE(1510), 1, + sym_string, + STATE(1708), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [7031] = 6, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3423), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7105] = 12, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3521), 1, + anon_sym_EQ, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3487), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7191] = 8, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(844), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(836), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7269] = 8, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3586), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3584), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7347] = 5, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3423), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7418] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3590), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3588), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [7485] = 12, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3546), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7570] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3445), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3447), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7639] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7728] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3425), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3423), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7817] = 14, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3584), 1, + anon_sym_COLON, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3490), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3596), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7906] = 7, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3584), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7981] = 7, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8056] = 9, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(1655), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3507), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8135] = 9, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(868), 1, + anon_sym_EQ_GT, + ACTIONS(1655), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3507), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8214] = 4, + ACTIONS(3449), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3445), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3447), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8283] = 12, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3576), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8368] = 8, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [8445] = 11, + ACTIONS(219), 1, + anon_sym_EQ, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(788), 1, + anon_sym_QMARK, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(222), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1655), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8528] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3413), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3415), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8597] = 8, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(856), 1, + anon_sym_COLON, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [8674] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3413), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3415), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8743] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3445), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3447), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8812] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3602), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3600), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [8879] = 7, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3541), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8954] = 8, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(874), 1, + anon_sym_COLON, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [9031] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3604), 1, + anon_sym_EQ, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9120] = 7, + ACTIONS(3554), 1, + anon_sym_AT, + ACTIONS(3608), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3552), 14, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3550), 40, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [9195] = 13, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3584), 1, + anon_sym_COLON, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3490), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3499), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9282] = 11, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(788), 1, + anon_sym_QMARK, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(126), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1655), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9365] = 4, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3413), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3415), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [9434] = 12, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3487), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9519] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3613), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3611), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [9585] = 8, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(836), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(878), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9661] = 12, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3499), 1, + anon_sym_extends, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3487), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3490), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9745] = 9, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1655), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9823] = 6, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(868), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9895] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9983] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3413), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3415), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10049] = 7, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10123] = 7, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(876), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10197] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3459), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3461), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10263] = 7, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(874), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10337] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3515), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3513), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [10403] = 7, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(856), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10477] = 9, + ACTIONS(923), 1, + anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(1655), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3507), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10555] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10627] = 6, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(3505), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10699] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2504), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2502), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10765] = 7, + ACTIONS(874), 1, + anon_sym_COLON, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10839] = 11, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(836), 1, + anon_sym_COLON, + ACTIONS(1655), 1, + anon_sym_extends, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3615), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10921] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2458), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2456), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10987] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3445), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3447), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11053] = 6, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(854), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11125] = 6, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11197] = 12, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11281] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3455), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3457), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11347] = 12, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3604), 1, + anon_sym_EQ, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11431] = 9, + ACTIONS(909), 1, + anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1655), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11509] = 6, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11581] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3621), 15, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3619), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [11647] = 7, + ACTIONS(856), 1, + anon_sym_COLON, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11721] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(868), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11793] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3441), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3443), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11859] = 10, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(836), 1, + anon_sym_COLON, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1655), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11939] = 10, + ACTIONS(219), 1, + anon_sym_EQ, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(1657), 1, + anon_sym_QMARK, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1655), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12019] = 5, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12089] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3463), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3465), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12155] = 6, + ACTIONS(712), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12227] = 14, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(3439), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3425), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3423), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12315] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3451), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3453), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12381] = 6, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12452] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3413), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3415), 32, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12519] = 9, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, + anon_sym_EQ, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12596] = 9, + ACTIONS(955), 1, + anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1655), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12673] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3569), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12744] = 6, + ACTIONS(923), 1, + anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12815] = 8, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12890] = 6, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(929), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12961] = 10, + ACTIONS(3541), 1, + anon_sym_RBRACK, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(3631), 1, + anon_sym_in, + ACTIONS(3633), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13040] = 7, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3433), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3635), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13113] = 9, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(1655), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3507), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(3510), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13190] = 8, + ACTIONS(225), 1, + anon_sym_EQ_GT, + ACTIONS(806), 1, + anon_sym_EQ, + ACTIONS(881), 1, + anon_sym_in, + ACTIONS(3638), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13265] = 7, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3635), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13338] = 5, + ACTIONS(3417), 1, + anon_sym_extends, + ACTIONS(3640), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3413), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3415), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13407] = 7, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3642), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [13480] = 5, + ACTIONS(3449), 1, + anon_sym_extends, + ACTIONS(3644), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3445), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3447), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13549] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3445), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3447), 32, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13616] = 7, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(3409), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [13689] = 9, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1655), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13766] = 12, + ACTIONS(3487), 1, + anon_sym_LBRACK, + ACTIONS(3493), 1, + anon_sym_DOT, + ACTIONS(3496), 1, + anon_sym_LT, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3490), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3423), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13849] = 5, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13918] = 5, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13987] = 5, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [14055] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3413), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3415), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [14121] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3445), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3447), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [14187] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3652), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3654), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3918), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14307] = 7, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [14379] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3336), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3338), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3778), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14499] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3674), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3676), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3789), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14619] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3678), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3680), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3799), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14739] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3682), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3684), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3808), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [14859] = 7, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(935), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [14931] = 6, + ACTIONS(941), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15001] = 8, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + ACTIONS(3631), 1, + anon_sym_in, + ACTIONS(3686), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15075] = 6, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(947), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15145] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15215] = 8, + ACTIONS(126), 1, + anon_sym_COMMA, + ACTIONS(222), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, + anon_sym_EQ, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15289] = 6, + ACTIONS(909), 1, + anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15359] = 8, + ACTIONS(3541), 1, + anon_sym_RBRACK, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15433] = 31, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3246), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3270), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3863), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [15553] = 9, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(3507), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1655), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3510), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15629] = 6, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(915), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15699] = 6, + ACTIONS(3576), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15769] = 7, + ACTIONS(895), 1, + anon_sym_COLON, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15841] = 8, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + ACTIONS(3631), 1, + anon_sym_in, + ACTIONS(3633), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15915] = 6, + ACTIONS(3546), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15985] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3548), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16055] = 8, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(881), 1, + anon_sym_in, + ACTIONS(3638), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16128] = 5, + ACTIONS(3576), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16195] = 6, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(903), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16264] = 7, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(836), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16335] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16404] = 8, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16477] = 7, + ACTIONS(3541), 1, + anon_sym_RBRACK, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16548] = 6, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(899), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16617] = 5, + ACTIONS(3546), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16684] = 6, + ACTIONS(955), 1, + anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16753] = 6, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16822] = 6, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16891] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3594), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16960] = 6, + ACTIONS(3604), 1, + anon_sym_EQ, + ACTIONS(3606), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17029] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3688), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17097] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17213] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3692), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17329] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3694), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17445] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3696), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17561] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3698), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17677] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3700), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17793] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3702), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17909] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3704), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18025] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3706), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18141] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3708), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18257] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1023), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18325] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3710), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18441] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3712), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18557] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1029), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18625] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3714), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18693] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3716), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18761] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(830), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18829] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1035), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18897] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3718), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18965] = 5, + ACTIONS(3604), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19031] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3720), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19099] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1019), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19167] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3722), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19235] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1027), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19303] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3724), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19371] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3726), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19487] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3728), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19603] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3730), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19719] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1031), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19787] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3732), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19855] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19923] = 7, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19993] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3734), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20109] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1025), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20177] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1033), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20245] = 6, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(3736), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20313] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3738), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20429] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3565), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20497] = 5, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3423), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20563] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3740), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20679] = 6, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(1021), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(120), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20747] = 5, + ACTIONS(3724), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20812] = 5, + ACTIONS(3722), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20877] = 5, + ACTIONS(3720), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20942] = 5, + ACTIONS(3716), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21007] = 5, + ACTIONS(3718), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21072] = 5, + ACTIONS(3688), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21137] = 5, + ACTIONS(3732), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21202] = 5, + ACTIONS(3714), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21267] = 5, + ACTIONS(3736), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3423), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3419), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP3, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21332] = 29, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3800), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21444] = 29, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3925), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21556] = 29, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3809), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21668] = 29, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21780] = 29, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3792), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21892] = 29, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3780), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22004] = 29, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_abstract, + ACTIONS(3648), 1, + anon_sym_export, + ACTIONS(3650), 1, + anon_sym_STAR, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3658), 1, + anon_sym_async, + ACTIONS(3660), 1, + anon_sym_new, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3672), 1, + anon_sym_override, + STATE(1282), 1, + sym_decorator, + STATE(2739), 1, + sym_accessibility_modifier, + STATE(2765), 1, + sym_override_modifier, + STATE(3274), 1, + sym_formal_parameters, + STATE(4088), 1, + sym__call_signature, + STATE(4506), 1, + aux_sym_export_statement_repeat1, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3662), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3099), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3770), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3646), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22116] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3744), 1, + anon_sym_RBRACE, + ACTIONS(3746), 1, + anon_sym_SEMI, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1450), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22227] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3746), 1, + anon_sym_SEMI, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3766), 1, + anon_sym_RBRACE, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1450), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22338] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3746), 1, + anon_sym_SEMI, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3768), 1, + anon_sym_RBRACE, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1450), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22449] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, + anon_sym_STAR, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3776), 1, + anon_sym_EQ, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(3788), 1, + anon_sym_module, + STATE(1282), 1, + sym_decorator, + STATE(4069), 1, + sym_declaration, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, + sym_export_clause, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5311), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [22568] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, + anon_sym_STAR, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3776), 1, + anon_sym_EQ, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_module, + ACTIONS(3790), 1, + anon_sym_RBRACE, + STATE(1282), 1, + sym_decorator, + STATE(4069), 1, + sym_declaration, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, + sym_export_clause, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5311), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [22687] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3746), 1, + anon_sym_SEMI, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3793), 1, + anon_sym_RBRACE, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1450), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22798] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, + anon_sym_STAR, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3776), 1, + anon_sym_EQ, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_module, + ACTIONS(3795), 1, + anon_sym_RBRACE, + STATE(1282), 1, + sym_decorator, + STATE(4069), 1, + sym_declaration, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, + sym_export_clause, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5311), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [22917] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3798), 1, + anon_sym_RBRACE, + ACTIONS(3800), 1, + anon_sym_SEMI, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1441), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23028] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3802), 1, + anon_sym_RBRACE, + ACTIONS(3804), 1, + anon_sym_SEMI, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1440), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23139] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3806), 1, + anon_sym_RBRACE, + ACTIONS(3808), 1, + anon_sym_SEMI, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1452), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23250] = 29, + ACTIONS(3813), 1, + anon_sym_STAR, + ACTIONS(3816), 1, + anon_sym_RBRACE, + ACTIONS(3818), 1, + anon_sym_SEMI, + ACTIONS(3821), 1, + anon_sym_LBRACK, + ACTIONS(3824), 1, + anon_sym_DQUOTE, + ACTIONS(3827), 1, + anon_sym_SQUOTE, + ACTIONS(3830), 1, + anon_sym_async, + ACTIONS(3839), 1, + anon_sym_AT, + ACTIONS(3842), 1, + anon_sym_static, + ACTIONS(3845), 1, + anon_sym_readonly, + ACTIONS(3851), 1, + anon_sym_declare, + ACTIONS(3857), 1, + anon_sym_override, + ACTIONS(3860), 1, + anon_sym_abstract, + ACTIONS(3863), 1, + anon_sym_accessor, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3833), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3836), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3848), 2, + anon_sym_get, + anon_sym_set, + STATE(1450), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3854), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3810), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23361] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3866), 1, + anon_sym_RBRACE, + ACTIONS(3868), 1, + anon_sym_SEMI, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1442), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23472] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3746), 1, + anon_sym_SEMI, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3870), 1, + anon_sym_RBRACE, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1450), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23583] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, + anon_sym_STAR, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3776), 1, + anon_sym_EQ, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_module, + ACTIONS(3872), 1, + anon_sym_RBRACE, + STATE(1282), 1, + sym_decorator, + STATE(4069), 1, + sym_declaration, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, + sym_export_clause, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5311), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [23702] = 33, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, + anon_sym_STAR, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3776), 1, + anon_sym_EQ, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_module, + ACTIONS(3875), 1, + anon_sym_RBRACE, + STATE(1282), 1, + sym_decorator, + STATE(4069), 1, + sym_declaration, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, + sym_export_clause, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5311), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [23821] = 29, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3742), 1, + anon_sym_STAR, + ACTIONS(3748), 1, + anon_sym_async, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(3754), 1, + anon_sym_static, + ACTIONS(3756), 1, + anon_sym_readonly, + ACTIONS(3760), 1, + anon_sym_declare, + ACTIONS(3762), 1, + anon_sym_abstract, + ACTIONS(3764), 1, + anon_sym_accessor, + ACTIONS(3878), 1, + anon_sym_RBRACE, + ACTIONS(3880), 1, + anon_sym_SEMI, + STATE(2390), 1, + aux_sym_export_statement_repeat1, + STATE(2636), 1, + sym_method_definition, + STATE(2682), 1, + sym_accessibility_modifier, + STATE(2754), 1, + sym_override_modifier, + STATE(2756), 1, + sym_decorator, + STATE(4565), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3750), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3758), 2, + anon_sym_get, + anon_sym_set, + STATE(1445), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3004), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4959), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23932] = 25, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3884), 1, + anon_sym_RBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(3888), 1, + anon_sym_async, + ACTIONS(3892), 1, + anon_sym_static, + ACTIONS(3894), 1, + anon_sym_readonly, + ACTIONS(3900), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(4837), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3896), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3898), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3882), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24034] = 25, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(3904), 1, + anon_sym_RBRACE, + ACTIONS(3906), 1, + anon_sym_async, + ACTIONS(3908), 1, + anon_sym_static, + ACTIONS(3910), 1, + anon_sym_readonly, + ACTIONS(3916), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(4837), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3912), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3914), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3902), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24136] = 25, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(3920), 1, + anon_sym_RBRACE, + ACTIONS(3922), 1, + anon_sym_async, + ACTIONS(3924), 1, + anon_sym_static, + ACTIONS(3926), 1, + anon_sym_readonly, + ACTIONS(3932), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(4837), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3928), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3930), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3918), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24238] = 13, + ACTIONS(822), 1, + anon_sym_BQUOTE, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3944), 1, + anon_sym_QMARK_DOT, + ACTIONS(3946), 1, + anon_sym_LT, + STATE(1587), 1, + sym_type_arguments, + STATE(1613), 1, + sym_template_string, + STATE(1626), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3934), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3936), 27, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [24316] = 25, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(3950), 1, + anon_sym_RBRACE, + ACTIONS(3952), 1, + anon_sym_async, + ACTIONS(3954), 1, + anon_sym_static, + ACTIONS(3956), 1, + anon_sym_readonly, + ACTIONS(3962), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(4837), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3958), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3960), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3948), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24418] = 25, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(3966), 1, + anon_sym_RBRACE, + ACTIONS(3968), 1, + anon_sym_async, + ACTIONS(3970), 1, + anon_sym_static, + ACTIONS(3972), 1, + anon_sym_readonly, + ACTIONS(3978), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + STATE(4837), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3974), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3976), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4836), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3964), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24520] = 25, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(3982), 1, + anon_sym_RBRACE, + ACTIONS(3984), 1, + anon_sym_async, + ACTIONS(3986), 1, + anon_sym_static, + ACTIONS(3988), 1, + anon_sym_readonly, + ACTIONS(3994), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(4694), 1, + aux_sym_object_repeat1, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3990), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3992), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(4638), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(3980), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24622] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(3996), 1, + anon_sym_DOT, + STATE(1555), 1, + sym_arguments, + STATE(1556), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3425), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [24689] = 30, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, + anon_sym_STAR, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3776), 1, + anon_sym_EQ, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3788), 1, + anon_sym_module, + STATE(1282), 1, + sym_decorator, + STATE(4069), 1, + sym_declaration, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, + sym_export_clause, + STATE(5311), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [24800] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(4006), 1, + anon_sym_DOT, + STATE(1559), 1, + sym_arguments, + STATE(1560), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4004), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [24867] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(4012), 1, + anon_sym_DOT, + STATE(1557), 1, + sym_arguments, + STATE(1558), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4008), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4010), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [24934] = 29, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3770), 1, + anon_sym_STAR, + ACTIONS(3772), 1, + anon_sym_default, + ACTIONS(3774), 1, + anon_sym_type, + ACTIONS(3778), 1, + anon_sym_as, + ACTIONS(3788), 1, + anon_sym_module, + ACTIONS(4014), 1, + anon_sym_EQ, + STATE(1282), 1, + sym_decorator, + STATE(4069), 1, + sym_declaration, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4522), 1, + sym_export_clause, + STATE(5311), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [25043] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1709), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(1707), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [25100] = 7, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(4018), 1, + anon_sym_DOT, + ACTIONS(4020), 1, + anon_sym_is, + STATE(1545), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4016), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3499), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [25165] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1725), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(1723), 34, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [25222] = 4, + ACTIONS(4026), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4022), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4024), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [25280] = 6, + ACTIONS(3946), 1, + anon_sym_LT, + ACTIONS(4018), 1, + anon_sym_DOT, + STATE(1545), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4016), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3499), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [25342] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1725), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(1723), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [25398] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1709), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(1707), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [25454] = 6, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4032), 1, + anon_sym_DOT, + STATE(1553), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4028), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4030), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [25516] = 5, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4034), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1673), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1671), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [25576] = 5, + ACTIONS(3946), 1, + anon_sym_LT, + STATE(1552), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4022), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4024), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [25636] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1657), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1655), 34, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + anon_sym_is, + [25692] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3182), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(3184), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [25748] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3170), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(3172), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [25804] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4036), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4038), 34, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + anon_sym_is, + [25860] = 9, + ACTIONS(822), 1, + anon_sym_BQUOTE, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3944), 1, + anon_sym_QMARK_DOT, + STATE(1613), 1, + sym_template_string, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [25928] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3188), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(3190), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [25984] = 4, + ACTIONS(4020), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4040), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4042), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26042] = 4, + ACTIONS(4020), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4044), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4046), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26100] = 22, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(249), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(4050), 1, + anon_sym_async, + ACTIONS(4052), 1, + anon_sym_static, + ACTIONS(4054), 1, + anon_sym_readonly, + ACTIONS(4060), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3388), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3890), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4056), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4058), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3668), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5479), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5493), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(4048), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [26194] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4062), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4064), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26249] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4066), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4068), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [26310] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4076), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4078), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26365] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4082), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26420] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4084), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4086), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [26481] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4082), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26536] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1635), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4088), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4090), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [26595] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4082), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26650] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4092), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4094), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26705] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4098), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26760] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4098), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26815] = 7, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(2338), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4100), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4103), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1675), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [26878] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4106), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4108), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [26933] = 7, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [26996] = 7, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4122), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4116), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4119), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4110), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [27059] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4124), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4126), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [27118] = 5, + ACTIONS(4132), 1, + anon_sym_QMARK, + ACTIONS(4134), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [27177] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4044), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4046), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [27232] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4136), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4138), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [27293] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4140), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4142), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [27354] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4144), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4146), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [27409] = 6, + ACTIONS(4148), 1, + anon_sym_LBRACE, + ACTIONS(4150), 1, + anon_sym_DOT, + STATE(1709), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1667), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1665), 30, + sym__ternary_qmark, + anon_sym_as, + 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [27470] = 6, + ACTIONS(4148), 1, + anon_sym_LBRACE, + ACTIONS(4152), 1, + anon_sym_DOT, + STATE(1709), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1667), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1665), 30, + sym__ternary_qmark, + anon_sym_as, + 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [27531] = 5, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1709), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1667), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1665), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [27590] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4098), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [27645] = 4, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [27702] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4154), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4156), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [27757] = 4, + ACTIONS(4034), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1673), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1671), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [27814] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4154), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4156), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [27869] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4154), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4156), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [27924] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4158), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4160), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [27979] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4022), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4024), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28034] = 5, + ACTIONS(4162), 1, + anon_sym_QMARK, + ACTIONS(4164), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [28093] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4166), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4168), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28148] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4170), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4172), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28203] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4040), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4042), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28258] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4174), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4176), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28313] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4178), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4180), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28368] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2332), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2330), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28423] = 4, + ACTIONS(4186), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4182), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4184), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28480] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4188), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4190), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28535] = 4, + ACTIONS(4192), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4188), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4190), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28592] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4194), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4196), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28647] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2340), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2338), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28702] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4198), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4200), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28757] = 4, + ACTIONS(3996), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3425), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28814] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4204), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28869] = 6, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(4208), 1, + anon_sym_DOT, + STATE(1740), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1667), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1665), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [28930] = 4, + ACTIONS(4214), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4210), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4212), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [28987] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4216), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4218), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29042] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4220), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4122), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29097] = 6, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(4222), 1, + anon_sym_DOT, + STATE(1740), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1667), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1665), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [29158] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4224), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4226), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29213] = 4, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4228), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4230), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29270] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4126), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4124), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29325] = 5, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(1740), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1667), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1665), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [29384] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4204), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29439] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4232), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4234), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29494] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4236), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4238), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29549] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4240), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4242), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [29610] = 6, + ACTIONS(4190), 1, + anon_sym_extends, + ACTIONS(4192), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4188), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4244), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4246), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [29671] = 4, + ACTIONS(4252), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4248), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4250), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [29728] = 4, + ACTIONS(4192), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4254), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4256), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29785] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4204), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29840] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4258), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4260), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [29901] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4262), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4264), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29956] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4266), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4268), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30011] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2344), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2342), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30066] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4162), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4164), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30121] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4270), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4272), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30176] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4274), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4276), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30231] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4278), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4280), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30286] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4282), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4284), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30341] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4286), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4288), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30396] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4290), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4292), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30451] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4294), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4296), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30506] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4298), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4300), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30561] = 4, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4302), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4304), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30618] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3640), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3417), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30673] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3644), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3449), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30728] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4311), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30783] = 4, + ACTIONS(4313), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4302), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4304), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30840] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4316), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4318), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [30895] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4316), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4318), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [30956] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4311), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31011] = 5, + ACTIONS(822), 1, + anon_sym_BQUOTE, + STATE(1613), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [31070] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4320), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4322), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31125] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4324), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4326), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31180] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4328), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4330), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31235] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4332), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4334), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31290] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4336), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4338), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31345] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4311), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31400] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4340), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4342), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31455] = 4, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4344), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4346), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31512] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4348), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4350), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31567] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4340), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4342), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31622] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4340), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4342), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31677] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2328), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2326), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31732] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4352), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4354), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31787] = 4, + ACTIONS(4356), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1781), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1779), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [31844] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1669), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4358), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4360), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [31903] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4362), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4364), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [31958] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4366), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4368), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32013] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4370), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4372), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [32074] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2336), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2334), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32129] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4374), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4376), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32184] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4378), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4380), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32239] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4382), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4384), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32294] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4378), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4380), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32349] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4382), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4384), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32404] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4386), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4388), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32459] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4390), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4392), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32514] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4386), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4388), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32569] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4390), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4392), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32624] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4394), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4396), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32679] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4258), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4260), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32734] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4394), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4396), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32789] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4062), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4064), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32844] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4398), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4400), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32899] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4402), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4404), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32954] = 4, + ACTIONS(4024), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4066), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4068), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33011] = 6, + ACTIONS(4070), 1, + anon_sym_AMP3, + ACTIONS(4072), 1, + anon_sym_PIPE, + ACTIONS(4074), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4406), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4408), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33072] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4132), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4134), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [33127] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4414), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [33237] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33291] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4458), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4460), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33345] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33399] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4462), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4464), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33453] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4466), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4468), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33507] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4468), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [33617] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4470), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [33727] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4472), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4474), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33781] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4476), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4478), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33835] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4480), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [33945] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4482), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4484), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33999] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1787), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1785), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34053] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4486), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4488), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34107] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4490), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4492), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34161] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4496), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34215] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4498), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4500), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34269] = 13, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_QMARK_DOT, + ACTIONS(4510), 1, + anon_sym_LT, + STATE(1981), 1, + sym_type_arguments, + STATE(2145), 1, + sym_arguments, + STATE(2194), 1, + sym_template_string, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3934), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3936), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [34343] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4512), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4514), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34397] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4516), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4518), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34451] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4520), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4522), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34505] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4524), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [34615] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4526), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4528), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34669] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4528), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [34779] = 18, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [34863] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4534), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4536), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34917] = 13, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4538), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 22, + sym__ternary_qmark, + anon_sym_as, + 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, + 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, + anon_sym_satisfies, + [34991] = 25, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4532), 1, + anon_sym_BANG, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 13, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_satisfies, + [35089] = 26, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4532), 1, + anon_sym_BANG, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [35189] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4538), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 21, + sym__ternary_qmark, + anon_sym_as, + 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, + 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, + anon_sym_satisfies, + [35269] = 22, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4530), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [35361] = 23, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [35455] = 24, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 13, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_satisfies, + [35551] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4538), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 21, + sym__ternary_qmark, + anon_sym_as, + 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, + 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, + anon_sym_satisfies, + [35629] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4538), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 20, + 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, + 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, + [35709] = 6, + ACTIONS(4168), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [35769] = 6, + ACTIONS(4042), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4547), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4550), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [35829] = 20, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [35917] = 27, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4532), 1, + anon_sym_BANG, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [36019] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4555), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36073] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4557), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4559), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36127] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4561), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4563), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36181] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4565), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4567), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36235] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4567), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [36345] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4569), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [36455] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4571), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4573), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36509] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4575), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4577), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36563] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4579), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36617] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1697), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1699), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36671] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4583), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4585), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36725] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1795), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1793), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36779] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4587), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4589), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36833] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4591), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4593), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [36887] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4593), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [36997] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4595), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37051] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4599), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4601), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37105] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4601), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [37215] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4603), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4414), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37269] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4605), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4607), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37323] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4611), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37377] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4613), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [37487] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4615), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [37597] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4617), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4619), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37651] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4623), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37705] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4625), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4627), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37759] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4623), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37813] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4629), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4631), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37867] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4633), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4635), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37921] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4623), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37975] = 19, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [38061] = 6, + ACTIONS(4234), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4655), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4658), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4651), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38121] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4661), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4663), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38175] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4665), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4667), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38229] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4669), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4671), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38283] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4673), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4675), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38337] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4677), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4679), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38391] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1825), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1827), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38445] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1835), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1837), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38499] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1855), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1857), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38553] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1741), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1743), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38607] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4681), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4683), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38661] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4685), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4687), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38715] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4689), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4691), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38769] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4693), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [38879] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4695), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4697), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38933] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1845), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38987] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1717), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1719), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39041] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1731), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1733), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39095] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1751), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1753), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39149] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1761), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1763), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39203] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1805), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1807), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39257] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1815), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1817), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39311] = 4, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4110), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39367] = 4, + ACTIONS(4701), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4699), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4703), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39423] = 4, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1675), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39479] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1769), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1767), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39533] = 19, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [39619] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1799), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1797), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39673] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1705), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1703), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39727] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1691), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1689), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39781] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1781), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1779), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39835] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1769), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1767), 32, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [39889] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1799), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1797), 32, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [39943] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1791), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1789), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [39997] = 19, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [40083] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40137] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40191] = 12, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4709), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4707), 23, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + anon_sym_satisfies, + [40263] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4716), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 21, + 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, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + [40341] = 19, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [40427] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4719), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [40537] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4721), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4723), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40591] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4725), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4727), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40645] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4733), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4729), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4731), 25, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [40715] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4651), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40769] = 19, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [40855] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4112), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4736), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4110), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [40912] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [40991] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4701), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4741), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4699), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4703), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [41048] = 7, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 27, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [41109] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1781), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1779), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [41162] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41239] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41318] = 4, + ACTIONS(4750), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1781), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1779), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [41373] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1677), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4752), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1675), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [41430] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1791), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1789), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [41483] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1787), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1785), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [41536] = 17, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4755), 1, + anon_sym_STAR, + ACTIONS(4757), 1, + anon_sym_LBRACE, + ACTIONS(4759), 1, + anon_sym_async, + ACTIONS(4763), 1, + anon_sym_readonly, + ACTIONS(4767), 1, + sym__automatic_semicolon, + STATE(2668), 1, + sym_statement_block, + STATE(2764), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4765), 2, + anon_sym_get, + anon_sym_set, + STATE(3033), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 8, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41617] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1705), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1703), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [41670] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4772), 1, + anon_sym_static, + ACTIONS(4774), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_abstract, + ACTIONS(4778), 1, + anon_sym_accessor, + STATE(2705), 1, + sym_accessibility_modifier, + STATE(2785), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4770), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3462), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [41749] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1691), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1689), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [41802] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4780), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [41911] = 8, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4510), 1, + anon_sym_LT, + ACTIONS(4782), 1, + anon_sym_DOT, + STATE(1870), 1, + sym_arguments, + STATE(1871), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3425), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [41974] = 4, + ACTIONS(4784), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1673), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1671), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [42029] = 7, + ACTIONS(4510), 1, + anon_sym_LT, + ACTIONS(4786), 1, + anon_sym_DOT, + ACTIONS(4788), 1, + anon_sym_is, + STATE(2026), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4016), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3499), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [42090] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42167] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42246] = 8, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4510), 1, + anon_sym_LT, + ACTIONS(4790), 1, + anon_sym_DOT, + STATE(1872), 1, + sym_arguments, + STATE(1873), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4008), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4010), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [42309] = 8, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4510), 1, + anon_sym_LT, + ACTIONS(4792), 1, + anon_sym_DOT, + STATE(1874), 1, + sym_arguments, + STATE(1875), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4004), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [42372] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42449] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, + anon_sym_LBRACK, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42528] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4796), 1, + anon_sym_static, + ACTIONS(4798), 1, + anon_sym_readonly, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4802), 1, + anon_sym_accessor, + STATE(2707), 1, + sym_accessibility_modifier, + STATE(2768), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4794), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3456), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42607] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1795), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1793), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [42660] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42737] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42816] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [42893] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4470), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [43001] = 18, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_satisfies, + [43083] = 13, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4862), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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_LT_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, + anon_sym_satisfies, + [43155] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4601), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [43263] = 4, + ACTIONS(4869), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4865), 16, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4867), 26, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + 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, + [43317] = 25, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [43413] = 26, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [43511] = 16, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4862), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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_LT_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, + anon_sym_satisfies, + [43589] = 22, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 12, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_satisfies, + [43679] = 23, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 12, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_satisfies, + [43771] = 24, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [43865] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4414), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [43973] = 15, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4862), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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_LT_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, + anon_sym_satisfies, + [44049] = 16, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4862), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 18, + 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_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, + [44127] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4889), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + STATE(5863), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44243] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4891), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + STATE(5643), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44359] = 12, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4893), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4707), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [44429] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44501] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4528), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [44609] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3586), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3584), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [44667] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4898), 1, + anon_sym_static, + ACTIONS(4900), 1, + anon_sym_readonly, + ACTIONS(4902), 1, + anon_sym_abstract, + ACTIONS(4904), 1, + anon_sym_accessor, + STATE(2817), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4896), 2, + sym_number, + sym_private_property_identifier, + STATE(3309), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44741] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4906), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + STATE(5581), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44857] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3182), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3184), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [44909] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44981] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4613), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45089] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4693), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45197] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4569), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45305] = 16, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + STATE(2745), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [45383] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4593), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45491] = 4, + ACTIONS(4788), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4040), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4042), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [45545] = 4, + ACTIONS(4908), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4022), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4024), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [45599] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4615), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [45707] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4468), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [45815] = 20, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_satisfies, + [45901] = 27, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46001] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4470), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [46109] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [46181] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46235] = 4, + ACTIONS(4788), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4044), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4046), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [46289] = 11, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4916), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4729), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4731), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46357] = 13, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4919), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + anon_sym_satisfies, + [46429] = 12, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4922), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4707), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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_BQUOTE, + anon_sym_satisfies, + [46499] = 15, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4925), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 19, + 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_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + [46575] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4719), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [46683] = 11, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4928), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4729), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4731), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + 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, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46751] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4164), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46805] = 25, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [46901] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3188), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3190), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [46953] = 6, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3541), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47011] = 26, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47109] = 16, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4919), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [47187] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4567), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [47295] = 6, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4931), 1, + anon_sym_DOT, + STATE(2048), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4028), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4030), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [47353] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4112), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4933), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4110), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47409] = 23, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 12, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47501] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4569), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [47609] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4701), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4935), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4699), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4703), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47665] = 18, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47747] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1677), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4937), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(1675), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47803] = 7, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(2338), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4100), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4103), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1675), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47863] = 8, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4116), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4939), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4122), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4110), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [47925] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4480), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [48033] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4593), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [48141] = 24, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [48235] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4480), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [48343] = 7, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4168), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [48403] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4601), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [48511] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4567), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [48619] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4414), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [48727] = 4, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [48781] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [48853] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4613), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [48961] = 15, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4919), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [49037] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_static, + ACTIONS(4947), 1, + anon_sym_readonly, + ACTIONS(4949), 1, + anon_sym_abstract, + ACTIONS(4951), 1, + anon_sym_accessor, + STATE(2794), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4943), 2, + sym_number, + sym_private_property_identifier, + STATE(3434), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [49111] = 16, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4919), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + [49189] = 7, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4100), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4103), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1675), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49249] = 7, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4116), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4122), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4119), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4110), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49309] = 7, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4122), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4116), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4119), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4110), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49369] = 9, + ACTIONS(87), 1, + anon_sym_BQUOTE, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_QMARK_DOT, + STATE(2194), 1, + sym_template_string, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_satisfies, + [49433] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4615), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [49541] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4719), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [49649] = 6, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49707] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4468), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [49815] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4693), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [49923] = 8, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4100), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4953), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2338), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1675), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [49985] = 35, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4957), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + STATE(5874), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50101] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4036), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4038), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [50153] = 15, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4959), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [50229] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [50301] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4524), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [50409] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4871), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4528), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [50517] = 27, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [50617] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3170), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3172), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [50669] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1657), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1655), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [50721] = 6, + ACTIONS(4510), 1, + anon_sym_LT, + ACTIONS(4786), 1, + anon_sym_DOT, + STATE(2026), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4016), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3499), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [50779] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4524), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [50887] = 5, + ACTIONS(4510), 1, + anon_sym_LT, + STATE(2046), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4022), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4024), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [50943] = 20, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51029] = 22, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 12, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51119] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4204), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [51170] = 9, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(3557), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4168), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51233] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4374), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4376), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [51284] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4962), 1, + anon_sym_STAR, + ACTIONS(4964), 1, + anon_sym_async, + ACTIONS(4968), 1, + anon_sym_readonly, + STATE(2752), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4966), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4970), 2, + anon_sym_get, + anon_sym_set, + STATE(3094), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51357] = 9, + ACTIONS(4042), 1, + anon_sym_extends, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(4976), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4972), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4974), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51420] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(4979), 1, + anon_sym_COMMA, + ACTIONS(4982), 1, + anon_sym_RBRACE, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4524), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51531] = 4, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51584] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(4984), 1, + anon_sym_COMMA, + ACTIONS(4987), 1, + anon_sym_RBRACE, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4524), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51695] = 9, + ACTIONS(4042), 1, + anon_sym_extends, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(4993), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4989), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4991), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51758] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(4982), 1, + anon_sym_RBRACE, + ACTIONS(4996), 1, + anon_sym_COMMA, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4999), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51869] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, + ACTIONS(5007), 1, + anon_sym_readonly, + STATE(2758), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5005), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + STATE(3013), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [51942] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4164), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [51995] = 10, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(2338), 1, + anon_sym_extends, + ACTIONS(2340), 1, + anon_sym_QMARK, + ACTIONS(4100), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4953), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1675), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [52060] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, + ACTIONS(5013), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5011), 2, + sym_number, + sym_private_property_identifier, + STATE(3014), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [52129] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2344), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2342), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52180] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4162), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4164), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52231] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4270), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4272), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52282] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4274), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4276), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52333] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4278), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4280), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52384] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4282), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4284), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52435] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4286), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4288), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52486] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4290), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4292), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52537] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4294), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4296), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52588] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5015), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [52695] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4298), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4300), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52746] = 4, + ACTIONS(4306), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4302), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4304), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52799] = 10, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4116), 1, + anon_sym_LBRACK, + ACTIONS(4122), 1, + anon_sym_extends, + ACTIONS(4220), 1, + anon_sym_QMARK, + ACTIONS(4933), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4939), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4110), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [52864] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3640), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3417), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52915] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3644), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3449), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [52966] = 4, + ACTIONS(4313), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4302), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4304), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53019] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4316), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4318), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53070] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4316), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4318), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [53127] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4320), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4322), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53178] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4324), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4326), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53229] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4328), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4330), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53280] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4332), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4334), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53331] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4336), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4338), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53382] = 4, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4344), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4346), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53435] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4348), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4350), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53486] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4106), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4108), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53537] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4158), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4160), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53588] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4022), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4024), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53639] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(5023), 1, + anon_sym_COMMA, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4518), 1, + aux_sym_sequence_expression_repeat1, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5025), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53750] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2328), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2326), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53801] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4352), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4354), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53852] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4362), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4364), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53903] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4378), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4380), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53954] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4382), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4384), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54005] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4378), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4380), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54056] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4382), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4384), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54107] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4386), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4388), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54158] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4390), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4392), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54209] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4386), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4388), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54260] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4390), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4392), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54311] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4394), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4396), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54362] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4062), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4064), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54413] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4394), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4396), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54464] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4062), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4064), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54515] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4398), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4400), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54566] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4402), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4404), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54617] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4406), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4408), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [54674] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4092), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4094), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54725] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4258), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4260), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54776] = 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4541), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4168), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [54833] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4258), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4260), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [54890] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4144), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4146), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54941] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4166), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4168), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [54992] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2336), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2334), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55043] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4076), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4078), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55094] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4082), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55145] = 14, + ACTIONS(165), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(5031), 1, + anon_sym_RBRACE, + STATE(4838), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5033), 2, + sym_number, + sym_private_property_identifier, + STATE(4835), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5027), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [55218] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4082), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55269] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4082), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55320] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4098), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55371] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4098), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55422] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4098), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55473] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(5023), 1, + anon_sym_COMMA, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4518), 1, + aux_sym_sequence_expression_repeat1, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5035), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55584] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4154), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4156), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55635] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4154), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4156), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55686] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4154), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4156), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55737] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4170), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4172), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55788] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4174), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4176), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55839] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4178), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4180), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55890] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2332), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2330), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55941] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4198), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4200), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [55992] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4204), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56043] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4204), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56094] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4311), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56145] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4311), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56196] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4311), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56247] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4340), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4342), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56298] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4340), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4342), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56349] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4340), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4342), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56400] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4366), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4368), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56451] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4040), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4042), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [56502] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4370), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4372), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [56559] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(5023), 1, + anon_sym_COMMA, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4518), 1, + aux_sym_sequence_expression_repeat1, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5037), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [56670] = 5, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4784), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1673), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1671), 27, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [56725] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4739), 1, + anon_sym_LBRACK, + ACTIONS(4755), 1, + anon_sym_STAR, + ACTIONS(4759), 1, + anon_sym_async, + ACTIONS(4778), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4765), 2, + anon_sym_get, + anon_sym_set, + STATE(3033), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [56794] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [56847] = 14, + ACTIONS(165), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(5041), 1, + anon_sym_RBRACE, + STATE(4815), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5033), 2, + sym_number, + sym_private_property_identifier, + STATE(4634), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5039), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [56920] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2194), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [56975] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(2763), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57058] = 4, + ACTIONS(5045), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4182), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4184), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [57111] = 12, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4748), 2, + anon_sym_get, + anon_sym_set, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57180] = 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4658), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4655), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4234), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4651), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57237] = 13, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4739), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57308] = 6, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4550), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57365] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(2763), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57448] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4188), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4190), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [57499] = 4, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1675), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57552] = 32, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4850), 1, + anon_sym_GT_GT, + ACTIONS(4856), 1, + anon_sym_PERCENT, + ACTIONS(4858), 1, + anon_sym_STAR_STAR, + ACTIONS(4860), 1, + anon_sym_LT, + ACTIONS(4871), 1, + anon_sym_GT, + ACTIONS(4873), 1, + anon_sym_AMP3, + ACTIONS(4875), 1, + anon_sym_CARET, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4912), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4914), 1, + sym__ternary_qmark, + ACTIONS(5051), 1, + anon_sym_in, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4848), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4854), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4881), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4879), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5049), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [57661] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(2763), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57744] = 4, + ACTIONS(4164), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57797] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(2763), 1, + sym_override_modifier, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57880] = 4, + ACTIONS(5054), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4188), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4190), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [57933] = 9, + ACTIONS(2338), 1, + anon_sym_extends, + ACTIONS(4100), 1, + anon_sym_LBRACK, + ACTIONS(5056), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1677), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4937), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1675), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57996] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4194), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4196), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [58047] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2340), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2338), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [58098] = 9, + ACTIONS(4116), 1, + anon_sym_LBRACK, + ACTIONS(4122), 1, + anon_sym_extends, + ACTIONS(5059), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4112), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4933), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4110), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58161] = 7, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58220] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4044), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4046), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [58271] = 4, + ACTIONS(4782), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3425), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [58324] = 4, + ACTIONS(4024), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4066), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4068), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58377] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4066), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4068), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58434] = 32, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4982), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5062), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58543] = 5, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2339), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4358), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4360), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58598] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4136), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4138), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58655] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4140), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4142), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58712] = 4, + ACTIONS(5064), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4210), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4212), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [58765] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4216), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4218), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [58816] = 33, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + ACTIONS(4982), 1, + anon_sym_RBRACE, + ACTIONS(4996), 1, + anon_sym_COMMA, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4470), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58927] = 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4547), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4042), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58984] = 4, + ACTIONS(4701), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4699), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4703), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59037] = 9, + ACTIONS(4042), 1, + anon_sym_extends, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(5069), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4989), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5066), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59100] = 9, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(3544), 1, + anon_sym_QMARK, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3541), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4168), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59163] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(2763), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [59246] = 5, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2138), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4088), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4090), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [59301] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4468), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [59408] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4470), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [59515] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4480), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [59622] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4524), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [59729] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4528), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [59836] = 18, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [59917] = 13, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + anon_sym_satisfies, + anon_sym_implements, + [59988] = 25, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60083] = 26, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60180] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + anon_sym_implements, + [60257] = 22, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60346] = 23, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60437] = 24, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60530] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + anon_sym_implements, + [60605] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5111), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + anon_sym_implements, + [60682] = 6, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [60739] = 20, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60824] = 27, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [60923] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4567), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61030] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4569), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61137] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4593), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61244] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4601), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61351] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4414), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61458] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4613), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61565] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4615), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61672] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4220), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4122), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [61723] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4693), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [61830] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR, + ACTIONS(5116), 1, + anon_sym_async, + ACTIONS(5120), 1, + anon_sym_readonly, + STATE(2749), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5118), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5122), 2, + anon_sym_get, + anon_sym_set, + STATE(3018), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [61903] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4224), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4226), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [61954] = 4, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4228), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4230), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62007] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4951), 1, + anon_sym_abstract, + ACTIONS(5114), 1, + anon_sym_STAR, + ACTIONS(5116), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5118), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5122), 2, + anon_sym_get, + anon_sym_set, + STATE(3018), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62076] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4126), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4124), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62127] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4232), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4234), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62178] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4236), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4238), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62229] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4240), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4242), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62286] = 6, + ACTIONS(4190), 1, + anon_sym_extends, + ACTIONS(5054), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4188), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4244), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4246), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62343] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR, + ACTIONS(5126), 1, + anon_sym_async, + ACTIONS(5130), 1, + anon_sym_readonly, + STATE(2755), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5128), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5132), 2, + anon_sym_get, + anon_sym_set, + STATE(3120), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62416] = 7, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3429), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + 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, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62475] = 4, + ACTIONS(5134), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4248), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4250), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62528] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(5142), 1, + anon_sym_readonly, + STATE(2751), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5140), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5144), 2, + anon_sym_get, + anon_sym_set, + STATE(3024), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62601] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(5148), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5144), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5146), 2, + sym_number, + sym_private_property_identifier, + STATE(3025), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [62670] = 7, + ACTIONS(3481), 1, + anon_sym_DOT, + ACTIONS(3483), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3425), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62729] = 4, + ACTIONS(5054), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4254), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4256), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62782] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4126), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4124), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62837] = 6, + ACTIONS(4655), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4234), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4658), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4651), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62894] = 9, + ACTIONS(2338), 1, + anon_sym_extends, + ACTIONS(4100), 1, + anon_sym_LBRACK, + ACTIONS(4953), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1677), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4752), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1675), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [62957] = 6, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(1681), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1671), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1675), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63014] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4124), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4126), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63069] = 6, + ACTIONS(4234), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4655), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4658), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4651), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63126] = 9, + ACTIONS(4116), 1, + anon_sym_LBRACK, + ACTIONS(4122), 1, + anon_sym_extends, + ACTIONS(4939), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4112), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4736), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4110), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63189] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4132), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4134), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [63240] = 4, + ACTIONS(4134), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63293] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63346] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4262), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4264), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [63397] = 6, + ACTIONS(4168), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63454] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4266), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4268), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [63505] = 19, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(2763), 1, + sym_override_modifier, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63588] = 6, + ACTIONS(4042), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4547), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4550), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63645] = 7, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [63704] = 12, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5152), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4707), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [63773] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5155), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 18, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_implements, + [63848] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4719), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_implements, + [63955] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5158), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4729), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4731), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [64022] = 6, + ACTIONS(5017), 1, + anon_sym_AMP3, + ACTIONS(5019), 1, + anon_sym_PIPE, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4084), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4086), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64079] = 4, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4110), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64132] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5161), 1, + anon_sym_STAR, + ACTIONS(5163), 1, + anon_sym_async, + ACTIONS(5167), 1, + anon_sym_readonly, + STATE(2753), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5165), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5169), 2, + anon_sym_get, + anon_sym_set, + STATE(3113), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [64205] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4695), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4697), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64255] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5171), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5173), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64309] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4721), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4723), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64359] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5175), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5177), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5179), 2, + anon_sym_get, + anon_sym_set, + STATE(3889), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [64423] = 7, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4116), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4122), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4119), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4110), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64481] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4575), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4577), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64531] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5181), 1, + anon_sym_STAR, + ACTIONS(5183), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5185), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5187), 2, + anon_sym_get, + anon_sym_set, + STATE(3119), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [64597] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5189), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4719), 1, + aux_sym_array_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64707] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [64781] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5191), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64891] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4526), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4528), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [64941] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65017] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4565), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4567), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65067] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4599), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4601), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65117] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5193), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + STATE(4918), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65227] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1693), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1697), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1699), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65279] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65353] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4480), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65459] = 5, + ACTIONS(1701), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1693), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1697), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1699), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65513] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4524), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65619] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65683] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4472), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4474), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65733] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5231), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65843] = 7, + ACTIONS(4166), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4541), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65901] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4725), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4727), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [65951] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4681), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4683), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66001] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4528), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66107] = 21, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(1932), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5237), 1, + anon_sym_RBRACE, + ACTIONS(5239), 1, + anon_sym_async, + ACTIONS(5243), 1, + anon_sym_static, + ACTIONS(5245), 1, + anon_sym_readonly, + ACTIONS(5251), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + STATE(5156), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5241), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5247), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5249), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3732), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5155), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5233), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [66193] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5253), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5255), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5257), 2, + anon_sym_get, + anon_sym_set, + STATE(3852), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [66257] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4462), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4464), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66307] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4458), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4460), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66357] = 5, + ACTIONS(1755), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1747), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1751), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1753), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66411] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5161), 1, + anon_sym_STAR, + ACTIONS(5163), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5165), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5169), 2, + anon_sym_get, + anon_sym_set, + STATE(3113), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [66477] = 5, + ACTIONS(1765), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1757), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1761), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1763), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66531] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [66605] = 12, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5259), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4707), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66673] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1821), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1825), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1827), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66725] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1831), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1835), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1837), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66777] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5262), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 17, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [66851] = 8, + ACTIONS(3523), 1, + anon_sym_EQ, + ACTIONS(4166), 1, + anon_sym_QMARK, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4168), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66911] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4989), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5066), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66965] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5265), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5267), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67019] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67125] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4486), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4488), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67175] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5269), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5271), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67229] = 5, + ACTIONS(5273), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1851), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1855), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1857), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67283] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5269), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5271), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67337] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4617), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4619), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67387] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4623), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67437] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67513] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5275), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4729), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4731), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67579] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5278), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5280), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5282), 2, + anon_sym_get, + anon_sym_set, + STATE(3858), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67643] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_STAR, + ACTIONS(5286), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5288), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5290), 2, + anon_sym_get, + anon_sym_set, + STATE(3026), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67709] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4625), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4627), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67759] = 5, + ACTIONS(1829), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1821), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1825), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1827), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67813] = 5, + ACTIONS(1839), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1831), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1835), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1837), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67867] = 18, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67947] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4623), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67997] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5292), 1, + anon_sym_STAR, + ACTIONS(5294), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5296), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5298), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68063] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4490), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4492), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68113] = 7, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3425), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68171] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5300), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5302), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68225] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [68301] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4629), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4631), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68351] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4126), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4124), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68405] = 7, + ACTIONS(4232), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4234), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4658), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4655), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4651), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68463] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5304), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4766), 1, + aux_sym_array_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68573] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4633), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4635), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68623] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5269), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5271), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68677] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5306), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + STATE(5219), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68787] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5308), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68897] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4623), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68947] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4553), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4555), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68997] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1737), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1741), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1743), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69049] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1845), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69101] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4476), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4478), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69151] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5310), 2, + sym_number, + sym_private_property_identifier, + STATE(3041), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69217] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4496), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69267] = 5, + ACTIONS(5312), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1713), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1717), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1719), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69321] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4534), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4536), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69371] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5314), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4737), 1, + aux_sym_array_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69481] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5171), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5173), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69535] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5316), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4766), 1, + aux_sym_array_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69645] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [69707] = 13, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5318), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + anon_sym_satisfies, + [69777] = 5, + ACTIONS(5321), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1727), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1731), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1733), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69831] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4498), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4500), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69881] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4468), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69987] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4470), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70093] = 25, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70187] = 26, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70283] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5359), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70393] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5318), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [70469] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4583), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4585), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70519] = 22, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70607] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4780), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70713] = 23, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70803] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1747), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1751), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1753), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70855] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5361), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70965] = 24, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71057] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1757), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1761), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1763), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71109] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5363), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [71215] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5161), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5365), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5367), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71279] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1845), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71329] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4480), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71435] = 5, + ACTIONS(5369), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1801), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1805), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1807), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71489] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71551] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1811), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1815), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1817), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71603] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1717), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1719), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71653] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1731), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1733), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71703] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5371), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71813] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5175), 1, + anon_sym_STAR, + ACTIONS(5373), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5375), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5377), 2, + anon_sym_get, + anon_sym_set, + STATE(3123), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71879] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5379), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71989] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5318), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [72063] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5318), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + [72139] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5381), 1, + anon_sym_STAR, + ACTIONS(5383), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5385), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5387), 2, + anon_sym_get, + anon_sym_set, + STATE(3089), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72205] = 20, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72289] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5389), 1, + anon_sym_RBRACE, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72399] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1751), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1753), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72449] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72523] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_STAR, + ACTIONS(5286), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5290), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5391), 2, + sym_number, + sym_private_property_identifier, + STATE(3039), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72589] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5393), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4658), 1, + aux_sym_array_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72699] = 27, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72797] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4567), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72903] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4569), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73009] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73083] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4593), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73189] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73265] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1761), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1763), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73315] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5395), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [73421] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4524), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73527] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4528), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73633] = 18, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73713] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5397), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + STATE(4989), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73823] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4601), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73929] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [73979] = 13, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + anon_sym_satisfies, + [74049] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5402), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74159] = 25, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74253] = 26, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74349] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4414), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74455] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4613), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74561] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4603), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4414), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74611] = 4, + ACTIONS(5404), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4865), 16, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4867), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [74663] = 16, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [74739] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5406), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74849] = 22, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74937] = 23, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75027] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(4755), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5408), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5410), 2, + anon_sym_get, + anon_sym_set, + STATE(3791), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75091] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4615), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75197] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4693), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75303] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5412), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5414), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5416), 2, + anon_sym_get, + anon_sym_set, + STATE(3857), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75367] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75443] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75505] = 5, + ACTIONS(1809), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1801), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1805), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1807), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75559] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4587), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4589), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75609] = 5, + ACTIONS(1819), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1811), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1815), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1817), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75663] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1805), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1807), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75713] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4571), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4573), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75763] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4605), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4607), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75813] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5079), 1, + anon_sym_AMP_AMP, + ACTIONS(5081), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5083), 1, + anon_sym_GT_GT, + ACTIONS(5087), 1, + anon_sym_AMP3, + ACTIONS(5089), 1, + anon_sym_CARET, + ACTIONS(5091), 1, + anon_sym_PIPE, + ACTIONS(5095), 1, + anon_sym_PERCENT, + ACTIONS(5097), 1, + anon_sym_STAR_STAR, + ACTIONS(5099), 1, + anon_sym_LT, + ACTIONS(5107), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5109), 1, + sym__ternary_qmark, + STATE(1611), 1, + sym_arguments, + STATE(2544), 1, + sym_type_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5077), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5103), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5105), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5101), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5418), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [75919] = 15, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [75993] = 16, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + [76069] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5420), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5422), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5424), 2, + anon_sym_get, + anon_sym_set, + STATE(3771), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [76133] = 4, + ACTIONS(5404), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4865), 17, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4867), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [76185] = 7, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4541), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [76243] = 5, + ACTIONS(1849), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1845), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1847), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76297] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5426), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5428), 2, + anon_sym_get, + anon_sym_set, + STATE(3915), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [76361] = 15, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5430), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [76435] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4561), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4563), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76485] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5433), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76595] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76701] = 7, + ACTIONS(3576), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76759] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR, + ACTIONS(5116), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5118), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5122), 2, + anon_sym_get, + anon_sym_set, + STATE(3018), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [76825] = 11, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5435), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4729), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4731), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76891] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5438), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77001] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1815), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1817), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77051] = 12, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5440), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4707), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77119] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [77181] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(4962), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5443), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5445), 2, + anon_sym_get, + anon_sym_set, + STATE(3803), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [77245] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4591), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4593), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77295] = 7, + ACTIONS(5447), 1, + anon_sym_LPAREN, + ACTIONS(5450), 1, + anon_sym_COLON, + ACTIONS(5452), 1, + anon_sym_LT, + ACTIONS(5455), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77353] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5457), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77463] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4512), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4514), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77513] = 9, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_COLON, + ACTIONS(4168), 1, + anon_sym_extends, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5459), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77575] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1697), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1699), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77625] = 7, + ACTIONS(3546), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77683] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4482), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4484), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77733] = 20, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 12, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77817] = 27, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77915] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5463), 1, + anon_sym_RBRACE, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78025] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4567), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78131] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4569), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78237] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5381), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5465), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5467), 2, + anon_sym_get, + anon_sym_set, + STATE(3936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78301] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5469), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + STATE(5142), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78411] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78461] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [78567] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78629] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78691] = 8, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3584), 1, + anon_sym_COLON, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4168), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [78751] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5471), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5473), 2, + anon_sym_get, + anon_sym_set, + STATE(3769), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78815] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4593), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78921] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4601), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79027] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4414), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79133] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4613), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79239] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4615), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79345] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5475), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5477), 2, + anon_sym_get, + anon_sym_set, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79409] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5479), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5481), 2, + anon_sym_get, + anon_sym_set, + STATE(3850), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79473] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5483), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79583] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5485), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79693] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5487), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79803] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5489), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79913] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5491), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80023] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5493), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5495), 2, + anon_sym_get, + anon_sym_set, + STATE(3828), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80087] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4579), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4581), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80137] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5292), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5497), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5499), 2, + anon_sym_get, + anon_sym_set, + STATE(3942), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80201] = 5, + ACTIONS(1745), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1737), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1741), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1743), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80255] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5501), 2, + sym_number, + sym_private_property_identifier, + STATE(3007), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80321] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5503), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80431] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5505), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80541] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_STAR, + ACTIONS(5286), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5290), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5507), 2, + sym_number, + sym_private_property_identifier, + STATE(3006), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80607] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4468), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80713] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5509), 1, + anon_sym_RBRACE, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80823] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80873] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5511), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80983] = 32, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4470), 1, + anon_sym_COMMA, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4812), 1, + anon_sym_AMP_AMP, + ACTIONS(4814), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4816), 1, + anon_sym_GT_GT, + ACTIONS(4820), 1, + anon_sym_AMP3, + ACTIONS(4822), 1, + anon_sym_CARET, + ACTIONS(4824), 1, + anon_sym_PIPE, + ACTIONS(4828), 1, + anon_sym_PERCENT, + ACTIONS(4830), 1, + anon_sym_STAR_STAR, + ACTIONS(4832), 1, + anon_sym_LT, + ACTIONS(4840), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(4846), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4818), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4826), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4836), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4838), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4999), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4834), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81091] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4470), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81197] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5513), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81307] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5515), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81417] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4739), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR, + ACTIONS(5126), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5128), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5132), 2, + anon_sym_get, + anon_sym_set, + STATE(3120), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [81483] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5517), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81593] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4693), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81699] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5519), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81809] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [81859] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5521), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81969] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5523), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82079] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5525), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5527), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5529), 2, + anon_sym_get, + anon_sym_set, + STATE(3907), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82143] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5171), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5173), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82197] = 4, + ACTIONS(3503), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82249] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5531), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82359] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5533), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82469] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5535), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82579] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4661), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4663), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82629] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4665), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4667), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82679] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4669), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4671), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82729] = 6, + ACTIONS(4234), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4658), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4655), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4651), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82785] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5537), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5539), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5541), 2, + anon_sym_get, + anon_sym_set, + STATE(3944), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82849] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4989), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4991), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [82903] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4962), 1, + anon_sym_STAR, + ACTIONS(4964), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4966), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4970), 2, + anon_sym_get, + anon_sym_set, + STATE(3094), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82969] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5543), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83079] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4466), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4468), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83129] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5545), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83239] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4685), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4687), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83289] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4689), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4691), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83339] = 5, + ACTIONS(1721), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1713), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1717), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1719), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83393] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4673), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4675), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83443] = 7, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4100), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4103), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1675), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83501] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4677), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4679), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83551] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5547), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83661] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83723] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4516), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4518), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83773] = 7, + ACTIONS(5549), 1, + anon_sym_LPAREN, + ACTIONS(5552), 1, + anon_sym_COLON, + ACTIONS(5554), 1, + anon_sym_LT, + ACTIONS(5557), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4482), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4484), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83831] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5559), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5561), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83885] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5563), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5565), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83939] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84001] = 6, + ACTIONS(4168), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4541), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84057] = 8, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4100), 1, + anon_sym_LBRACK, + ACTIONS(4937), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(2338), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(1675), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84117] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5567), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5569), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5571), 2, + anon_sym_get, + anon_sym_set, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84181] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4972), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4974), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84235] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5567), 1, + anon_sym_STAR, + ACTIONS(5573), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5575), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5577), 2, + anon_sym_get, + anon_sym_set, + STATE(3038), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84301] = 5, + ACTIONS(1735), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1727), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1731), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1733), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84355] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5253), 1, + anon_sym_STAR, + ACTIONS(5579), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5581), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5583), 2, + anon_sym_get, + anon_sym_set, + STATE(3022), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84421] = 8, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4116), 1, + anon_sym_LBRACK, + ACTIONS(4933), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4122), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4110), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84481] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4557), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4559), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84531] = 15, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84605] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5585), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84715] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5412), 1, + anon_sym_STAR, + ACTIONS(5587), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5589), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5591), 2, + anon_sym_get, + anon_sym_set, + STATE(3021), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84781] = 4, + ACTIONS(3521), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84833] = 16, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84909] = 5, + ACTIONS(1859), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1851), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1855), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1857), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84963] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4609), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4611), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85013] = 12, + ACTIONS(165), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(3886), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5033), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5595), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5479), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5586), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5778), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5593), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85081] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4595), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4597), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85131] = 33, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(5597), 1, + anon_sym_RPAREN, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4690), 1, + aux_sym_array_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85241] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85303] = 9, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85365] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5049), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [85471] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5181), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5599), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5601), 2, + anon_sym_get, + anon_sym_set, + STATE(3961), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85535] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1825), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1827), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85585] = 33, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(5603), 1, + anon_sym_SEMI, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(3623), 1, + aux_sym_sequence_expression_repeat1, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85695] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1835), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1837), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85745] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1855), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1857), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85795] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1741), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1743), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85845] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4651), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85895] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4520), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4522), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85945] = 24, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86037] = 7, + ACTIONS(3604), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86094] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5605), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86199] = 16, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(2763), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86274] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5475), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86333] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86384] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86453] = 5, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3635), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [86506] = 19, + ACTIONS(231), 1, + anon_sym_STAR, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(1932), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5614), 1, + anon_sym_async, + ACTIONS(5616), 1, + anon_sym_static, + ACTIONS(5618), 1, + anon_sym_readonly, + ACTIONS(5624), 1, + anon_sym_override, + STATE(2720), 1, + sym_accessibility_modifier, + STATE(2744), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5241), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5612), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5620), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5622), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3732), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5493), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5610), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86587] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4943), 2, + sym_number, + sym_private_property_identifier, + STATE(3434), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86646] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5626), 2, + sym_number, + sym_private_property_identifier, + STATE(3938), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86705] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5479), 2, + sym_number, + sym_private_property_identifier, + STATE(3850), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86764] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5426), 2, + sym_number, + sym_private_property_identifier, + STATE(3915), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86823] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86892] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5493), 2, + sym_number, + sym_private_property_identifier, + STATE(3828), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86951] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5471), 2, + sym_number, + sym_private_property_identifier, + STATE(3769), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87010] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5414), 2, + sym_number, + sym_private_property_identifier, + STATE(3857), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87069] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5569), 2, + sym_number, + sym_private_property_identifier, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87128] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5628), 2, + sym_number, + sym_private_property_identifier, + STATE(3960), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87187] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5443), 2, + sym_number, + sym_private_property_identifier, + STATE(3803), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87246] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5280), 2, + sym_number, + sym_private_property_identifier, + STATE(3858), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87305] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5255), 2, + sym_number, + sym_private_property_identifier, + STATE(3852), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87364] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5177), 2, + sym_number, + sym_private_property_identifier, + STATE(3889), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87423] = 6, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [87478] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5527), 2, + sym_number, + sym_private_property_identifier, + STATE(3907), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87537] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5599), 2, + sym_number, + sym_private_property_identifier, + STATE(3961), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87596] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5422), 2, + sym_number, + sym_private_property_identifier, + STATE(3771), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87655] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1771), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [87706] = 32, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + ACTIONS(5630), 1, + anon_sym_SEMI, + ACTIONS(5632), 1, + sym__automatic_semicolon, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87813] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87882] = 4, + ACTIONS(4869), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4865), 17, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(4867), 22, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [87933] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4982), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88038] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4422), 1, + anon_sym_AMP_AMP, + ACTIONS(4424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4426), 1, + anon_sym_GT_GT, + ACTIONS(4430), 1, + anon_sym_AMP3, + ACTIONS(4432), 1, + anon_sym_CARET, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4438), 1, + anon_sym_PERCENT, + ACTIONS(4440), 1, + anon_sym_STAR_STAR, + ACTIONS(4442), 1, + anon_sym_LT, + ACTIONS(4450), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4456), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4410), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4418), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4428), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4446), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4448), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4444), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88143] = 17, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(2763), 1, + sym_override_modifier, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88220] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5408), 2, + sym_number, + sym_private_property_identifier, + STATE(3791), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88279] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88348] = 23, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(3752), 1, + anon_sym_AT, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5636), 1, + anon_sym_STAR, + ACTIONS(5638), 1, + anon_sym_async, + ACTIONS(5642), 1, + anon_sym_static, + ACTIONS(5644), 1, + anon_sym_readonly, + ACTIONS(5648), 1, + anon_sym_declare, + ACTIONS(5650), 1, + anon_sym_abstract, + ACTIONS(5652), 1, + anon_sym_accessor, + STATE(2656), 1, + sym_method_definition, + STATE(2685), 1, + sym_accessibility_modifier, + STATE(2702), 1, + aux_sym_export_statement_repeat1, + STATE(2756), 1, + sym_decorator, + STATE(2761), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5640), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5646), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3015), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88437] = 7, + ACTIONS(4040), 1, + anon_sym_QMARK, + ACTIONS(4042), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4547), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88494] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5654), 2, + sym_number, + sym_private_property_identifier, + STATE(3319), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88553] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88604] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4164), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88655] = 6, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4933), 1, + anon_sym_of, + ACTIONS(5656), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4110), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88710] = 6, + ACTIONS(4701), 1, + anon_sym_EQ, + ACTIONS(4935), 1, + anon_sym_of, + ACTIONS(5659), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4699), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4703), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88765] = 6, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4937), 1, + anon_sym_of, + ACTIONS(5662), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1675), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88820] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88889] = 6, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4550), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88944] = 7, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(4168), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4541), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89001] = 7, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3425), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89058] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4126), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4124), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89111] = 13, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89180] = 6, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89235] = 6, + ACTIONS(4655), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4234), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4658), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4651), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89290] = 6, + ACTIONS(4701), 1, + anon_sym_EQ, + ACTIONS(4935), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4741), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4699), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4703), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89345] = 7, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(2338), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4100), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4103), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(1675), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89402] = 7, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4122), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4116), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4119), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4110), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89459] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5665), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89564] = 32, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + ACTIONS(5667), 1, + anon_sym_SEMI, + ACTIONS(5669), 1, + sym__automatic_semicolon, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89671] = 4, + ACTIONS(3567), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [89722] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5365), 2, + sym_number, + sym_private_property_identifier, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89781] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5465), 2, + sym_number, + sym_private_property_identifier, + STATE(3936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89840] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5497), 2, + sym_number, + sym_private_property_identifier, + STATE(3942), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89899] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5539), 2, + sym_number, + sym_private_property_identifier, + STATE(3944), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89958] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5062), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90063] = 31, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4806), 1, + anon_sym_as, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4844), 1, + anon_sym_satisfies, + ACTIONS(5327), 1, + anon_sym_AMP_AMP, + ACTIONS(5329), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5331), 1, + anon_sym_GT_GT, + ACTIONS(5335), 1, + anon_sym_AMP3, + ACTIONS(5337), 1, + anon_sym_CARET, + ACTIONS(5339), 1, + anon_sym_PIPE, + ACTIONS(5343), 1, + anon_sym_PERCENT, + ACTIONS(5345), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_LT, + ACTIONS(5355), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5357), 1, + sym__ternary_qmark, + STATE(1992), 1, + sym_type_arguments, + STATE(2282), 1, + sym_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4842), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5323), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5325), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5333), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5341), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5351), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5353), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5671), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5349), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90168] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4468), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90273] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1771), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [90324] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4480), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90429] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4524), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90534] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4528), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90639] = 18, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [90718] = 13, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5709), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + anon_sym_satisfies, + [90787] = 25, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [90880] = 26, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [90975] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5709), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [91050] = 22, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91137] = 23, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91226] = 24, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91317] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5709), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [91390] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5709), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 15, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + [91465] = 20, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91548] = 27, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91645] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4567), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91750] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4569), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91855] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4593), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91960] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4601), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92065] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4414), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92170] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4613), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92275] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4615), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92380] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4693), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92485] = 12, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5712), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4707), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92552] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5715), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 16, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [92625] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4719), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92730] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5718), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4729), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4731), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92795] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4468), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92900] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4470), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93005] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4480), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93110] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4524), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93215] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4528), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93320] = 18, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93399] = 13, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5757), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + anon_sym_satisfies, + [93468] = 25, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93561] = 26, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93656] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5757), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [93731] = 22, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93818] = 23, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93907] = 24, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93998] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5757), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [94071] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5757), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 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, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [94146] = 20, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94229] = 27, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94326] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4567), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94431] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4569), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94536] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4593), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94641] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4601), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94746] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4414), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94851] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4613), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94956] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4615), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95061] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4693), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95166] = 12, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5760), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4707), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95233] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5763), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 16, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [95306] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4719), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5723), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95411] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5766), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4729), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4731), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95476] = 7, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95533] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4470), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95638] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4528), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95742] = 26, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95836] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5805), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [95910] = 22, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4532), 3, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95996] = 23, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96084] = 24, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96174] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5805), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4532), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, + anon_sym_satisfies, + [96246] = 16, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5805), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 14, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + [96320] = 20, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4532), 5, + anon_sym_BANG, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96402] = 27, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96498] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4567), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96602] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4569), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96706] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4593), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96810] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4601), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96914] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4414), 1, + anon_sym_BQUOTE, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97018] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4613), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97122] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4615), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97226] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4693), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97330] = 12, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97396] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5808), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97500] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5812), 1, + anon_sym_readonly, + STATE(2793), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5810), 2, + sym_number, + sym_private_property_identifier, + STATE(3366), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97564] = 9, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5816), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5814), 2, + sym_number, + sym_private_property_identifier, + STATE(3368), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97624] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5820), 1, + anon_sym_readonly, + STATE(2813), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5818), 2, + sym_number, + sym_private_property_identifier, + STATE(3379), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97688] = 9, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5824), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5822), 2, + sym_number, + sym_private_property_identifier, + STATE(3294), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97748] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5015), 1, + anon_sym_RBRACE, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97852] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1743), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5826), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5829), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97902] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1817), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5832), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5835), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97952] = 12, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5838), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4705), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4707), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98018] = 15, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5841), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4712), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4714), 15, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [98090] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98194] = 11, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5844), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4729), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4731), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98258] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5847), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98362] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5849), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98466] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4675), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5851), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5854), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98516] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4679), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5857), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5860), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98566] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4573), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5863), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5866), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98616] = 32, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5049), 1, + anon_sym_of, + ACTIONS(5723), 1, + anon_sym_GT, + ACTIONS(5725), 1, + anon_sym_AMP_AMP, + ACTIONS(5727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5729), 1, + anon_sym_GT_GT, + ACTIONS(5733), 1, + anon_sym_AMP3, + ACTIONS(5735), 1, + anon_sym_CARET, + ACTIONS(5737), 1, + anon_sym_PIPE, + ACTIONS(5741), 1, + anon_sym_PERCENT, + ACTIONS(5743), 1, + anon_sym_STAR_STAR, + ACTIONS(5745), 1, + anon_sym_LT, + ACTIONS(5753), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5755), 1, + sym__ternary_qmark, + ACTIONS(5869), 1, + anon_sym_in, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5721), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5731), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5739), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5747), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98722] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_readonly, + STATE(2794), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4943), 2, + sym_number, + sym_private_property_identifier, + STATE(3434), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98786] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5874), 1, + anon_sym_readonly, + STATE(2773), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5654), 2, + sym_number, + sym_private_property_identifier, + STATE(3319), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98850] = 9, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5876), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5654), 2, + sym_number, + sym_private_property_identifier, + STATE(3319), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98910] = 9, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4951), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4943), 2, + sym_number, + sym_private_property_identifier, + STATE(3434), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98970] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5880), 1, + anon_sym_readonly, + STATE(2795), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5878), 2, + sym_number, + sym_private_property_identifier, + STATE(3381), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99034] = 25, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4532), 1, + anon_sym_BANG, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4530), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99126] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99194] = 6, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99248] = 6, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99302] = 15, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + STATE(2763), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99374] = 6, + ACTIONS(3541), 1, + anon_sym_RBRACK, + ACTIONS(3560), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99428] = 6, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_RBRACK, + ACTIONS(4933), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4110), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4114), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99482] = 6, + ACTIONS(4701), 1, + anon_sym_EQ, + ACTIONS(4741), 1, + anon_sym_RBRACK, + ACTIONS(4935), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4699), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4703), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99536] = 6, + ACTIONS(1677), 1, + anon_sym_EQ, + ACTIONS(4752), 1, + anon_sym_RBRACK, + ACTIONS(4937), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1675), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1679), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99590] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3172), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_AMP3, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3170), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [99638] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5884), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99742] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5886), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99846] = 4, + ACTIONS(3576), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99896] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5888), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100000] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5890), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100104] = 6, + ACTIONS(4547), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4042), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100158] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3190), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_AMP3, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3188), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [100206] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100256] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3184), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_AMP3, + anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3182), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [100304] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4164), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4128), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4130), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100354] = 7, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4544), 3, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100410] = 6, + ACTIONS(4042), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4547), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4550), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100464] = 6, + ACTIONS(4541), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4544), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4168), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3419), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100518] = 6, + ACTIONS(4655), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4658), 2, + anon_sym_AMP3, + anon_sym_PIPE, + ACTIONS(4234), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4651), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4653), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100572] = 6, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1635), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5892), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4088), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4090), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [100626] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + ACTIONS(5894), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100730] = 13, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100798] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5896), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100902] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5677), 1, + anon_sym_AMP_AMP, + ACTIONS(5679), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5681), 1, + anon_sym_GT_GT, + ACTIONS(5685), 1, + anon_sym_AMP3, + ACTIONS(5687), 1, + anon_sym_CARET, + ACTIONS(5689), 1, + anon_sym_PIPE, + ACTIONS(5693), 1, + anon_sym_PERCENT, + ACTIONS(5695), 1, + anon_sym_STAR_STAR, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5705), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5707), 1, + sym__ternary_qmark, + ACTIONS(5898), 1, + anon_sym_RBRACK, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5673), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5675), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5683), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5691), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5701), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5703), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5699), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101006] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1753), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5900), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5903), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101056] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1763), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5906), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5909), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101106] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4697), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5912), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5915), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101156] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4468), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101260] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4470), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101364] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4480), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101468] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4524), 1, + anon_sym_BQUOTE, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101572] = 14, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101642] = 18, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4532), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101720] = 31, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5199), 1, + anon_sym_AMP_AMP, + ACTIONS(5201), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5203), 1, + anon_sym_GT_GT, + ACTIONS(5207), 1, + anon_sym_AMP3, + ACTIONS(5209), 1, + anon_sym_CARET, + ACTIONS(5211), 1, + anon_sym_PIPE, + ACTIONS(5215), 1, + anon_sym_PERCENT, + ACTIONS(5217), 1, + anon_sym_STAR_STAR, + ACTIONS(5219), 1, + anon_sym_LT, + ACTIONS(5227), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5229), 1, + sym__ternary_qmark, + ACTIONS(5918), 1, + anon_sym_COLON, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5195), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5205), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5213), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5223), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5225), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5221), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101824] = 4, + ACTIONS(3546), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101874] = 13, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5805), 1, + anon_sym_LT, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4532), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4530), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, + anon_sym_satisfies, + [101942] = 9, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5922), 1, + anon_sym_abstract, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5920), 2, + sym_number, + sym_private_property_identifier, + STATE(3474), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102002] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5924), 2, + sym_number, + sym_private_property_identifier, + STATE(3439), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102059] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5926), 2, + sym_number, + sym_private_property_identifier, + STATE(3374), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102116] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5928), 2, + sym_number, + sym_private_property_identifier, + STATE(3355), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102173] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102232] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102291] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102350] = 12, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102415] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5930), 2, + sym_number, + sym_private_property_identifier, + STATE(3429), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102472] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5932), 2, + sym_number, + sym_private_property_identifier, + STATE(3386), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102529] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5934), 2, + sym_number, + sym_private_property_identifier, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102586] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5936), 2, + sym_number, + sym_private_property_identifier, + STATE(3435), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102643] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102702] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102761] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102822] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5938), 2, + sym_number, + sym_private_property_identifier, + STATE(3438), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102879] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5940), 2, + sym_number, + sym_private_property_identifier, + STATE(3357), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102936] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5942), 2, + sym_number, + sym_private_property_identifier, + STATE(3450), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102993] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103052] = 30, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3940), 1, + anon_sym_LBRACK, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4416), 1, + anon_sym_BANG, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(1493), 1, + sym_type_arguments, + STATE(1611), 1, + sym_arguments, + STATE(4886), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103153] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103212] = 4, + ACTIONS(4869), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4865), 17, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_of, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4867), 20, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [103261] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5944), 2, + sym_number, + sym_private_property_identifier, + STATE(3441), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103318] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5946), 2, + sym_number, + sym_private_property_identifier, + STATE(3460), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103375] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103434] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103493] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103552] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5948), 2, + sym_number, + sym_private_property_identifier, + STATE(3461), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103609] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103668] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5950), 2, + sym_number, + sym_private_property_identifier, + STATE(3361), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103725] = 9, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103784] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5952), 2, + sym_number, + sym_private_property_identifier, + STATE(3365), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103841] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103904] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103967] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5954), 2, + sym_number, + sym_private_property_identifier, + STATE(3422), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [104024] = 6, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3623), 1, + anon_sym_in, + ACTIONS(3626), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104077] = 4, + ACTIONS(3592), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104126] = 4, + ACTIONS(3604), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104175] = 30, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4454), 1, + anon_sym_satisfies, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4504), 1, + anon_sym_LBRACK, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(5773), 1, + anon_sym_AMP_AMP, + ACTIONS(5775), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5777), 1, + anon_sym_GT_GT, + ACTIONS(5781), 1, + anon_sym_AMP3, + ACTIONS(5783), 1, + anon_sym_CARET, + ACTIONS(5785), 1, + anon_sym_PIPE, + ACTIONS(5789), 1, + anon_sym_PERCENT, + ACTIONS(5791), 1, + anon_sym_STAR_STAR, + ACTIONS(5793), 1, + anon_sym_LT, + ACTIONS(5801), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5803), 1, + sym__ternary_qmark, + STATE(2282), 1, + sym_arguments, + STATE(2667), 1, + sym_type_arguments, + STATE(4965), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4452), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5769), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5771), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5779), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5797), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5795), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104276] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5956), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104322] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1779), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1781), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104368] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5960), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104414] = 4, + ACTIONS(5964), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1671), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1673), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104462] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1789), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1791), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104508] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5968), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5966), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104554] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5972), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5970), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104600] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5976), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5974), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104646] = 4, + ACTIONS(3720), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104694] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5956), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104740] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5978), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104786] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5972), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5970), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104832] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5972), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5970), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104878] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5960), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [104924] = 5, + ACTIONS(87), 1, + anon_sym_BQUOTE, + STATE(2194), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1775), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1777), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [104974] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5972), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5970), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105020] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5976), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5974), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105066] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5984), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5982), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105112] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5988), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5986), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105158] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5992), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5990), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105204] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5992), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5990), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105250] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5996), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5994), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105296] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6000), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5998), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105342] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6004), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6002), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105388] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6008), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6006), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105434] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5984), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5982), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105480] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5984), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5982), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105526] = 4, + ACTIONS(3716), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105574] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5978), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105620] = 4, + ACTIONS(6010), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1779), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1781), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105668] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5988), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5986), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105714] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5978), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105760] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5956), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105806] = 4, + ACTIONS(6012), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1779), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1781), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105854] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5960), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105900] = 4, + ACTIONS(3714), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [105948] = 5, + ACTIONS(6018), 1, + anon_sym_SEMI, + ACTIONS(6021), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6016), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6014), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [105998] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5960), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106044] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5960), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106090] = 4, + ACTIONS(3718), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106138] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5972), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5970), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106184] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5976), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5974), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106230] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6025), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6023), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106276] = 4, + ACTIONS(3722), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106324] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5972), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5970), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106370] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5976), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5974), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106416] = 4, + ACTIONS(3724), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106464] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5978), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106510] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5956), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106556] = 4, + ACTIONS(3732), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106604] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5978), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106650] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5978), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106696] = 4, + ACTIONS(3688), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106744] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5972), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5970), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106790] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [106848] = 4, + ACTIONS(6027), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1671), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1673), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106896] = 5, + ACTIONS(6033), 1, + anon_sym_SEMI, + ACTIONS(6036), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6031), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6029), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106946] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5984), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5982), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [106992] = 4, + ACTIONS(3736), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3423), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107040] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5956), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107086] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5976), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5974), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107132] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6038), 1, + anon_sym_LPAREN, + ACTIONS(6040), 1, + anon_sym_DOT, + STATE(2759), 1, + sym_arguments, + STATE(5279), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3515), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3513), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107188] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5978), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107234] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5984), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(5982), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107280] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1789), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1791), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107325] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6044), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6042), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107370] = 14, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6046), 1, + anon_sym_STAR, + ACTIONS(6048), 1, + anon_sym_async, + ACTIONS(6052), 1, + anon_sym_readonly, + STATE(2766), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6050), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3877), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107437] = 5, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2138), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4088), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4090), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [107486] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6058), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6056), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107531] = 6, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107582] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1779), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1781), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107627] = 7, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107680] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6062), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6060), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107725] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6066), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6064), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107770] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6062), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6060), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [107815] = 6, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107866] = 7, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107919] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6046), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6050), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3877), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107977] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3582), 9, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LT, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3580), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_DOT, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [108021] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6046), 1, + anon_sym_STAR, + ACTIONS(6048), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6050), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3877), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108081] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6068), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6070), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6072), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3898), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108139] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6068), 1, + anon_sym_STAR, + ACTIONS(6074), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6070), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6072), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3898), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108199] = 17, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4755), 1, + anon_sym_STAR, + ACTIONS(4759), 1, + anon_sym_async, + ACTIONS(4778), 1, + anon_sym_accessor, + ACTIONS(6076), 1, + anon_sym_static, + ACTIONS(6078), 1, + anon_sym_readonly, + ACTIONS(6080), 1, + anon_sym_declare, + ACTIONS(6082), 1, + anon_sym_abstract, + STATE(2764), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4765), 2, + anon_sym_get, + anon_sym_set, + STATE(3033), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108271] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6084), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6086), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6088), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3836), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108329] = 10, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6090), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6092), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6094), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3831), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108387] = 17, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(6098), 1, + anon_sym_static, + ACTIONS(6100), 1, + anon_sym_readonly, + ACTIONS(6102), 1, + anon_sym_declare, + ACTIONS(6104), 1, + anon_sym_abstract, + ACTIONS(6106), 1, + anon_sym_accessor, + STATE(2747), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5144), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6096), 2, + sym_number, + sym_private_property_identifier, + STATE(3035), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108459] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108507] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1938), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1936), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108555] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6084), 1, + anon_sym_STAR, + ACTIONS(6108), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6086), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6088), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3836), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108615] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6110), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6050), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3877), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108671] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5527), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3907), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108724] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5422), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3771), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108777] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6112), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3903), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108830] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5365), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108883] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5465), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108936] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5497), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3942), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108989] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6114), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3830), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109042] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5539), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3944), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109095] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6116), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3945), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109148] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6092), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3831), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109201] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5426), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3915), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109254] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5599), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3961), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109307] = 6, + ACTIONS(6118), 1, + anon_sym_AT, + STATE(2702), 1, + aux_sym_export_statement_repeat1, + STATE(2756), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3552), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3550), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [109356] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6086), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3836), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109409] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5569), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109462] = 13, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_static, + ACTIONS(4947), 1, + anon_sym_readonly, + ACTIONS(4949), 1, + anon_sym_abstract, + ACTIONS(4951), 1, + anon_sym_accessor, + STATE(2794), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4943), 2, + sym_number, + sym_private_property_identifier, + STATE(3434), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109525] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5628), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3960), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109578] = 13, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6123), 1, + anon_sym_static, + ACTIONS(6125), 1, + anon_sym_readonly, + ACTIONS(6127), 1, + anon_sym_abstract, + ACTIONS(6129), 1, + anon_sym_accessor, + STATE(2804), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6121), 2, + sym_number, + sym_private_property_identifier, + STATE(3447), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109641] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5255), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3852), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109694] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6131), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3767), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109747] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6133), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3864), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109800] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5475), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109853] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5479), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3850), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109906] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5414), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3857), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [109959] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5280), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3858), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110012] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6135), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3860), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110065] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5443), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3803), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110118] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6050), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3877), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110171] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6070), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3898), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110224] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5177), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3889), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110277] = 14, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(2322), 1, + anon_sym_override, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(6137), 1, + anon_sym_static, + STATE(2763), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110341] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2238), 1, + anon_sym_namespace, + ACTIONS(2242), 1, + anon_sym_import, + ACTIONS(2244), 1, + anon_sym_var, + ACTIONS(2246), 1, + anon_sym_let, + ACTIONS(2248), 1, + anon_sym_const, + ACTIONS(2253), 1, + anon_sym_class, + ACTIONS(2255), 1, + anon_sym_async, + ACTIONS(2257), 1, + anon_sym_function, + ACTIONS(2262), 1, + anon_sym_declare, + ACTIONS(2264), 1, + anon_sym_module, + ACTIONS(2266), 1, + anon_sym_abstract, + ACTIONS(2268), 1, + anon_sym_interface, + ACTIONS(2270), 1, + anon_sym_enum, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(6139), 1, + anon_sym_default, + STATE(831), 1, + sym_declaration, + STATE(877), 1, + sym_internal_module, + STATE(1282), 1, + sym_decorator, + STATE(4008), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(887), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [110421] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110475] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6145), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110529] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6147), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110583] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_type, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2366), 1, + anon_sym_module, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2370), 1, + anon_sym_global, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + STATE(1282), 1, + sym_decorator, + STATE(4073), 1, + sym_internal_module, + STATE(4194), 1, + sym_declaration, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [110663] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2242), 1, + anon_sym_import, + ACTIONS(2244), 1, + anon_sym_var, + ACTIONS(2246), 1, + anon_sym_let, + ACTIONS(2248), 1, + anon_sym_const, + ACTIONS(2253), 1, + anon_sym_class, + ACTIONS(2255), 1, + anon_sym_async, + ACTIONS(2257), 1, + anon_sym_function, + ACTIONS(2266), 1, + anon_sym_abstract, + ACTIONS(2268), 1, + anon_sym_interface, + ACTIONS(2270), 1, + anon_sym_enum, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(2300), 1, + anon_sym_global, + ACTIONS(2306), 1, + anon_sym_namespace, + ACTIONS(2308), 1, + anon_sym_declare, + ACTIONS(2324), 1, + anon_sym_module, + STATE(864), 1, + sym_declaration, + STATE(877), 1, + sym_internal_module, + STATE(1282), 1, + sym_decorator, + STATE(4008), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(887), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [110743] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6149), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110797] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6151), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110851] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + ACTIONS(6153), 1, + anon_sym_static, + STATE(2745), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110915] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6155), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110969] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2238), 1, + anon_sym_namespace, + ACTIONS(2242), 1, + anon_sym_import, + ACTIONS(2244), 1, + anon_sym_var, + ACTIONS(2246), 1, + anon_sym_let, + ACTIONS(2248), 1, + anon_sym_const, + ACTIONS(2253), 1, + anon_sym_class, + ACTIONS(2255), 1, + anon_sym_async, + ACTIONS(2257), 1, + anon_sym_function, + ACTIONS(2262), 1, + anon_sym_declare, + ACTIONS(2266), 1, + anon_sym_abstract, + ACTIONS(2268), 1, + anon_sym_interface, + ACTIONS(2270), 1, + anon_sym_enum, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(2298), 1, + anon_sym_module, + ACTIONS(2300), 1, + anon_sym_global, + STATE(864), 1, + sym_declaration, + STATE(877), 1, + sym_internal_module, + STATE(1282), 1, + sym_decorator, + STATE(4008), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(887), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [111049] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6161), 1, + anon_sym_readonly, + STATE(2742), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6159), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6163), 2, + anon_sym_get, + anon_sym_set, + STATE(3011), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111109] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_type, + ACTIONS(2348), 1, + anon_sym_namespace, + ACTIONS(2350), 1, + anon_sym_import, + ACTIONS(2352), 1, + anon_sym_var, + ACTIONS(2354), 1, + anon_sym_let, + ACTIONS(2356), 1, + anon_sym_const, + ACTIONS(2358), 1, + anon_sym_class, + ACTIONS(2360), 1, + anon_sym_async, + ACTIONS(2362), 1, + anon_sym_function, + ACTIONS(2364), 1, + anon_sym_declare, + ACTIONS(2368), 1, + anon_sym_abstract, + ACTIONS(2372), 1, + anon_sym_interface, + ACTIONS(2374), 1, + anon_sym_enum, + ACTIONS(3788), 1, + anon_sym_module, + ACTIONS(6165), 1, + anon_sym_default, + STATE(1282), 1, + sym_decorator, + STATE(4073), 1, + sym_internal_module, + STATE(4283), 1, + aux_sym_export_statement_repeat1, + STATE(4419), 1, + sym_declaration, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4060), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [111189] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2238), 1, + anon_sym_namespace, + ACTIONS(2242), 1, + anon_sym_import, + ACTIONS(2244), 1, + anon_sym_var, + ACTIONS(2246), 1, + anon_sym_let, + ACTIONS(2248), 1, + anon_sym_const, + ACTIONS(2253), 1, + anon_sym_class, + ACTIONS(2255), 1, + anon_sym_async, + ACTIONS(2257), 1, + anon_sym_function, + ACTIONS(2262), 1, + anon_sym_declare, + ACTIONS(2264), 1, + anon_sym_module, + ACTIONS(2266), 1, + anon_sym_abstract, + ACTIONS(2268), 1, + anon_sym_interface, + ACTIONS(2270), 1, + anon_sym_enum, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(6167), 1, + anon_sym_default, + STATE(831), 1, + sym_declaration, + STATE(877), 1, + sym_internal_module, + STATE(1282), 1, + sym_decorator, + STATE(4008), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(887), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [111269] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6169), 1, + anon_sym_RBRACE, + STATE(4988), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6171), 2, + sym_number, + sym_private_property_identifier, + STATE(4307), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111323] = 22, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(2242), 1, + anon_sym_import, + ACTIONS(2244), 1, + anon_sym_var, + ACTIONS(2246), 1, + anon_sym_let, + ACTIONS(2248), 1, + anon_sym_const, + ACTIONS(2253), 1, + anon_sym_class, + ACTIONS(2255), 1, + anon_sym_async, + ACTIONS(2257), 1, + anon_sym_function, + ACTIONS(2266), 1, + anon_sym_abstract, + ACTIONS(2268), 1, + anon_sym_interface, + ACTIONS(2270), 1, + anon_sym_enum, + ACTIONS(2296), 1, + anon_sym_type, + ACTIONS(2306), 1, + anon_sym_namespace, + ACTIONS(2308), 1, + anon_sym_declare, + ACTIONS(2310), 1, + anon_sym_module, + ACTIONS(6173), 1, + anon_sym_default, + STATE(831), 1, + sym_declaration, + STATE(877), 1, + sym_internal_module, + STATE(1282), 1, + sym_decorator, + STATE(4008), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(887), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [111403] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_readonly, + ACTIONS(6175), 1, + anon_sym_STAR, + STATE(2750), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6177), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6179), 2, + anon_sym_get, + anon_sym_set, + STATE(3023), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111463] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6181), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111517] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + anon_sym_override, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR, + ACTIONS(5126), 1, + anon_sym_async, + ACTIONS(5130), 1, + anon_sym_readonly, + ACTIONS(6183), 1, + anon_sym_static, + STATE(2755), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5128), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5132), 2, + anon_sym_get, + anon_sym_set, + STATE(3120), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111581] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6185), 1, + anon_sym_RBRACE, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111635] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6187), 1, + anon_sym_RBRACE, + STATE(5132), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6189), 2, + sym_number, + sym_private_property_identifier, + STATE(4465), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111689] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6175), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5626), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6191), 2, + anon_sym_get, + anon_sym_set, + STATE(3938), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111742] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3515), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3513), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [111783] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(2316), 1, + anon_sym_async, + ACTIONS(2318), 1, + anon_sym_readonly, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5043), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2320), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111840] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5161), 1, + anon_sym_STAR, + ACTIONS(5163), 1, + anon_sym_async, + ACTIONS(5167), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5165), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5169), 2, + anon_sym_get, + anon_sym_set, + STATE(3113), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111897] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1956), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1954), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111940] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, + ACTIONS(6195), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6193), 2, + sym_number, + sym_private_property_identifier, + STATE(3017), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111997] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4637), 1, + anon_sym_STAR, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4643), 1, + anon_sym_async, + ACTIONS(4647), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4645), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4649), 2, + anon_sym_get, + anon_sym_set, + STATE(3059), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112054] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5567), 1, + anon_sym_STAR, + ACTIONS(5573), 1, + anon_sym_async, + ACTIONS(6197), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5575), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5577), 2, + anon_sym_get, + anon_sym_set, + STATE(3038), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112111] = 9, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6199), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5628), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6201), 2, + anon_sym_get, + anon_sym_set, + STATE(3960), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112164] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5001), 1, + anon_sym_STAR, + ACTIONS(5003), 1, + anon_sym_async, + ACTIONS(6205), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5009), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6203), 2, + sym_number, + sym_private_property_identifier, + STATE(3009), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112221] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5175), 1, + anon_sym_STAR, + ACTIONS(5373), 1, + anon_sym_async, + ACTIONS(6207), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5375), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5377), 2, + anon_sym_get, + anon_sym_set, + STATE(3123), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112278] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5381), 1, + anon_sym_STAR, + ACTIONS(5383), 1, + anon_sym_async, + ACTIONS(6209), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5385), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5387), 2, + anon_sym_get, + anon_sym_set, + STATE(3089), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112335] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4755), 1, + anon_sym_STAR, + ACTIONS(4759), 1, + anon_sym_async, + ACTIONS(4763), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4761), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4765), 2, + anon_sym_get, + anon_sym_set, + STATE(3033), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112392] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(4962), 1, + anon_sym_STAR, + ACTIONS(4964), 1, + anon_sym_async, + ACTIONS(4968), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4966), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4970), 2, + anon_sym_get, + anon_sym_set, + STATE(3094), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112449] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3613), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3611), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [112490] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + STATE(5374), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + STATE(4546), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112541] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_STAR, + ACTIONS(5286), 1, + anon_sym_async, + ACTIONS(6213), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5290), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6211), 2, + sym_number, + sym_private_property_identifier, + STATE(3040), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112598] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3602), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3600), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [112639] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3590), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3588), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [112680] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5136), 1, + anon_sym_STAR, + ACTIONS(5138), 1, + anon_sym_async, + ACTIONS(6217), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5144), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6215), 2, + sym_number, + sym_private_property_identifier, + STATE(3036), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112737] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3621), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3619), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [112778] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6046), 1, + anon_sym_STAR, + ACTIONS(6048), 1, + anon_sym_async, + ACTIONS(6052), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6050), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6054), 2, + anon_sym_get, + anon_sym_set, + STATE(3877), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112835] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5114), 1, + anon_sym_STAR, + ACTIONS(5116), 1, + anon_sym_async, + ACTIONS(5120), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5118), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5122), 2, + anon_sym_get, + anon_sym_set, + STATE(3018), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112892] = 11, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5124), 1, + anon_sym_STAR, + ACTIONS(5126), 1, + anon_sym_async, + ACTIONS(5130), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5128), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5132), 2, + anon_sym_get, + anon_sym_set, + STATE(3120), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112949] = 11, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(6084), 1, + anon_sym_STAR, + ACTIONS(6108), 1, + anon_sym_async, + ACTIONS(6219), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6086), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6088), 2, + anon_sym_get, + anon_sym_set, + STATE(3836), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113006] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6050), 2, + sym_number, + sym_private_property_identifier, + STATE(3877), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113054] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6223), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6221), 2, + sym_number, + sym_private_property_identifier, + STATE(3465), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113104] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6092), 2, + sym_number, + sym_private_property_identifier, + STATE(3831), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113152] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5497), 2, + sym_number, + sym_private_property_identifier, + STATE(3942), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113200] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5599), 2, + sym_number, + sym_private_property_identifier, + STATE(3961), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113248] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5408), 2, + sym_number, + sym_private_property_identifier, + STATE(3791), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113296] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6225), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5940), 2, + sym_number, + sym_private_property_identifier, + STATE(3357), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113346] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5940), 2, + sym_number, + sym_private_property_identifier, + STATE(3357), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113394] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6131), 2, + sym_number, + sym_private_property_identifier, + STATE(3767), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113442] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6086), 2, + sym_number, + sym_private_property_identifier, + STATE(3836), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113490] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4943), 2, + sym_number, + sym_private_property_identifier, + STATE(3434), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113538] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6133), 2, + sym_number, + sym_private_property_identifier, + STATE(3864), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113586] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6229), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6227), 2, + sym_number, + sym_private_property_identifier, + STATE(3312), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113636] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4746), 2, + sym_number, + sym_private_property_identifier, + STATE(3917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113684] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5493), 2, + sym_number, + sym_private_property_identifier, + STATE(3828), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113732] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5465), 2, + sym_number, + sym_private_property_identifier, + STATE(3936), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113780] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5527), 2, + sym_number, + sym_private_property_identifier, + STATE(3907), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113828] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5475), 2, + sym_number, + sym_private_property_identifier, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113876] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4943), 2, + sym_number, + sym_private_property_identifier, + STATE(3434), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113926] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6231), 2, + sym_number, + sym_private_property_identifier, + STATE(3313), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113974] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5479), 2, + sym_number, + sym_private_property_identifier, + STATE(3850), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114022] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5414), 2, + sym_number, + sym_private_property_identifier, + STATE(3857), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114070] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5569), 2, + sym_number, + sym_private_property_identifier, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114118] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5280), 2, + sym_number, + sym_private_property_identifier, + STATE(3858), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114166] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5426), 2, + sym_number, + sym_private_property_identifier, + STATE(3915), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114214] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6135), 2, + sym_number, + sym_private_property_identifier, + STATE(3860), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114262] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6235), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6233), 2, + sym_number, + sym_private_property_identifier, + STATE(3436), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114312] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5874), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5654), 2, + sym_number, + sym_private_property_identifier, + STATE(3319), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114362] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6239), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6237), 2, + sym_number, + sym_private_property_identifier, + STATE(3363), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114412] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6241), 2, + sym_number, + sym_private_property_identifier, + STATE(3364), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114460] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5654), 2, + sym_number, + sym_private_property_identifier, + STATE(3319), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114508] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5443), 2, + sym_number, + sym_private_property_identifier, + STATE(3803), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114556] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6112), 2, + sym_number, + sym_private_property_identifier, + STATE(3903), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114604] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6243), 2, + sym_number, + sym_private_property_identifier, + STATE(3437), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114652] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5628), 2, + sym_number, + sym_private_property_identifier, + STATE(3960), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114700] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6247), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6245), 2, + sym_number, + sym_private_property_identifier, + STATE(3370), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114750] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6249), 2, + sym_number, + sym_private_property_identifier, + STATE(3371), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114798] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6253), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6251), 2, + sym_number, + sym_private_property_identifier, + STATE(3373), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114848] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5539), 2, + sym_number, + sym_private_property_identifier, + STATE(3944), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114896] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6070), 2, + sym_number, + sym_private_property_identifier, + STATE(3898), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114944] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2292), 2, + sym_number, + sym_private_property_identifier, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114992] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4770), 2, + sym_number, + sym_private_property_identifier, + STATE(3462), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115040] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6257), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6255), 2, + sym_number, + sym_private_property_identifier, + STATE(3458), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115090] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6259), 2, + sym_number, + sym_private_property_identifier, + STATE(3459), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115138] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6261), 2, + sym_number, + sym_private_property_identifier, + STATE(3377), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115186] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5365), 2, + sym_number, + sym_private_property_identifier, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115234] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6265), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6263), 2, + sym_number, + sym_private_property_identifier, + STATE(3444), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115284] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6267), 2, + sym_number, + sym_private_property_identifier, + STATE(3445), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115332] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6271), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6269), 2, + sym_number, + sym_private_property_identifier, + STATE(3382), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115382] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6273), 2, + sym_number, + sym_private_property_identifier, + STATE(3383), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115430] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6277), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6275), 2, + sym_number, + sym_private_property_identifier, + STATE(3385), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115480] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5471), 2, + sym_number, + sym_private_property_identifier, + STATE(3769), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115528] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6114), 2, + sym_number, + sym_private_property_identifier, + STATE(3830), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115576] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6279), 2, + sym_number, + sym_private_property_identifier, + STATE(3351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115624] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5255), 2, + sym_number, + sym_private_property_identifier, + STATE(3852), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115672] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5177), 2, + sym_number, + sym_private_property_identifier, + STATE(3889), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115720] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6116), 2, + sym_number, + sym_private_property_identifier, + STATE(3945), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115768] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(6283), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6281), 2, + sym_number, + sym_private_property_identifier, + STATE(3401), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115818] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5422), 2, + sym_number, + sym_private_property_identifier, + STATE(3771), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115866] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(4641), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6285), 2, + sym_number, + sym_private_property_identifier, + STATE(3405), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3646), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115914] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5626), 2, + sym_number, + sym_private_property_identifier, + STATE(3938), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2314), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115962] = 4, + ACTIONS(6287), 1, + sym_identifier, + STATE(5608), 1, + sym_mapped_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6289), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115997] = 9, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3425), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [116038] = 9, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6293), 1, + anon_sym_DOT, + ACTIONS(6295), 1, + anon_sym_QMARK_DOT, + STATE(2875), 1, + sym_arguments, + STATE(2942), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4008), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4010), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [116079] = 9, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6297), 1, + anon_sym_DOT, + ACTIONS(6299), 1, + anon_sym_QMARK_DOT, + STATE(2879), 1, + sym_arguments, + STATE(2900), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4002), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4004), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [116120] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4340), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4342), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116148] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4311), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116176] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4340), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4342), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116204] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4340), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4342), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116232] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4076), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4078), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116260] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4082), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116288] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4082), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116316] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4080), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4082), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116344] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4098), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116372] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4098), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116400] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4096), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4098), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116428] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4154), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4156), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116456] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4311), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116484] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4154), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4156), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116512] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4352), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4354), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116540] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4362), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4364), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116568] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4378), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4380), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116596] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4382), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4384), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116624] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4378), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4380), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116652] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4382), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4384), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116680] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4386), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4388), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116708] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4390), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4392), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116736] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4386), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4388), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116764] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4390), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4392), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116792] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4394), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4396), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116820] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4062), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4064), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116848] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4394), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4396), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116876] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4062), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4064), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116904] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4198), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4200), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116932] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4204), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116960] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4204), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [116988] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4202), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4204), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [117016] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4309), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4311), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [117044] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4154), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4156), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [117072] = 3, + ACTIONS(1725), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1723), 17, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117099] = 3, + ACTIONS(1709), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1707), 17, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_assert, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117126] = 18, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_EQ, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6307), 1, + anon_sym_COMMA, + ACTIONS(6309), 1, + anon_sym_COLON, + ACTIONS(6311), 1, + anon_sym_GT, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6318), 1, + anon_sym_SLASH_GT, + ACTIONS(6320), 1, + anon_sym_extends, + STATE(3410), 1, + sym_type_arguments, + STATE(3411), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + STATE(4603), 1, + sym_constraint, + STATE(5495), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [117183] = 6, + ACTIONS(4016), 1, + anon_sym_EQ, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6322), 1, + anon_sym_DOT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117216] = 18, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6303), 1, + anon_sym_EQ, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6307), 1, + anon_sym_COMMA, + ACTIONS(6309), 1, + anon_sym_COLON, + ACTIONS(6311), 1, + anon_sym_GT, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6320), 1, + anon_sym_extends, + ACTIONS(6324), 1, + anon_sym_SLASH_GT, + STATE(3442), 1, + sym_type_arguments, + STATE(3443), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + STATE(4603), 1, + sym_constraint, + STATE(5495), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [117273] = 3, + ACTIONS(3640), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117299] = 5, + ACTIONS(6326), 1, + anon_sym_DOT, + ACTIONS(6328), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4210), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4212), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [117329] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4162), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4164), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [117355] = 3, + ACTIONS(4324), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4326), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117381] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4274), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4276), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [117407] = 3, + ACTIONS(4328), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4330), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117433] = 3, + ACTIONS(4332), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4334), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117459] = 7, + ACTIONS(4016), 1, + anon_sym_EQ, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6322), 1, + anon_sym_DOT, + ACTIONS(6330), 1, + anon_sym_is, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [117493] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4282), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4284), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [117519] = 4, + ACTIONS(1797), 1, + anon_sym_DOT, + ACTIONS(4302), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4304), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [117547] = 9, + ACTIONS(3429), 1, + anon_sym_PIPE, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(3481), 1, + anon_sym_DOT, + ACTIONS(3483), 1, + anon_sym_QMARK_DOT, + ACTIONS(6332), 1, + anon_sym_LT, + STATE(3101), 1, + sym_arguments, + STATE(3220), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117585] = 5, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3429), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3425), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [117615] = 4, + ACTIONS(1767), 1, + anon_sym_DOT, + ACTIONS(4302), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4304), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [117643] = 3, + ACTIONS(3644), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117669] = 15, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(6334), 1, + sym_identifier, + ACTIONS(6336), 1, + anon_sym_STAR, + ACTIONS(6338), 1, + anon_sym_type, + ACTIONS(6340), 1, + anon_sym_LBRACE, + ACTIONS(6342), 1, + anon_sym_typeof, + ACTIONS(6346), 1, + anon_sym_DOT, + STATE(4189), 1, + sym_string, + STATE(4200), 1, + sym_import_require_clause, + STATE(5470), 1, + sym_import_clause, + STATE(5490), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5763), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [117719] = 5, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2903), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117749] = 9, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_PIPE, + ACTIONS(6332), 1, + anon_sym_LT, + ACTIONS(6348), 1, + anon_sym_DOT, + ACTIONS(6350), 1, + anon_sym_QMARK_DOT, + STATE(3104), 1, + sym_arguments, + STATE(3221), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4010), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117787] = 9, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(4002), 1, + anon_sym_PIPE, + ACTIONS(6332), 1, + anon_sym_LT, + ACTIONS(6352), 1, + anon_sym_DOT, + ACTIONS(6354), 1, + anon_sym_QMARK_DOT, + STATE(3106), 1, + sym_arguments, + STATE(3222), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4004), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117825] = 3, + ACTIONS(4320), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4322), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117851] = 6, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(4028), 1, + anon_sym_EQ, + ACTIONS(6356), 1, + anon_sym_DOT, + STATE(2896), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4030), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [117882] = 4, + ACTIONS(4182), 1, + anon_sym_EQ, + ACTIONS(6358), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4184), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117909] = 3, + ACTIONS(4132), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117934] = 3, + ACTIONS(1657), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1655), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_is, + [117959] = 3, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4146), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [117984] = 3, + ACTIONS(4036), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4038), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_is, + [118009] = 3, + ACTIONS(4266), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4268), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118034] = 3, + ACTIONS(4106), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4108), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118059] = 3, + ACTIONS(4374), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4376), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118084] = 3, + ACTIONS(4174), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4176), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118108] = 3, + ACTIONS(4286), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4288), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118132] = 3, + ACTIONS(4290), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4292), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118156] = 3, + ACTIONS(4294), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4296), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118180] = 3, + ACTIONS(4262), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4264), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118204] = 3, + ACTIONS(4298), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4300), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118228] = 8, + ACTIONS(6360), 1, + anon_sym_LPAREN, + ACTIONS(6362), 1, + anon_sym_DOT, + ACTIONS(6364), 1, + anon_sym_QMARK_DOT, + ACTIONS(6366), 1, + anon_sym_LT, + STATE(3255), 1, + sym_arguments, + STATE(3463), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [118262] = 8, + ACTIONS(6360), 1, + anon_sym_LPAREN, + ACTIONS(6366), 1, + anon_sym_LT, + ACTIONS(6368), 1, + anon_sym_DOT, + ACTIONS(6370), 1, + anon_sym_QMARK_DOT, + STATE(3188), 1, + sym_arguments, + STATE(3299), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4010), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [118296] = 8, + ACTIONS(6360), 1, + anon_sym_LPAREN, + ACTIONS(6366), 1, + anon_sym_LT, + ACTIONS(6372), 1, + anon_sym_DOT, + ACTIONS(6374), 1, + anon_sym_QMARK_DOT, + STATE(3189), 1, + sym_arguments, + STATE(3328), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4004), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [118330] = 3, + ACTIONS(4316), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118354] = 3, + ACTIONS(4336), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4338), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118378] = 3, + ACTIONS(4348), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4350), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118402] = 3, + ACTIONS(4188), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118426] = 4, + ACTIONS(4188), 1, + anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118452] = 3, + ACTIONS(4194), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4196), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118476] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6378), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [118498] = 3, + ACTIONS(4044), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4046), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118522] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + sym_number, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5706), 2, + sym_string, + sym_predefined_type, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118554] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6386), 1, + sym_number, + STATE(5719), 1, + sym_string, + STATE(5720), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118588] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6388), 1, + sym_number, + STATE(5726), 1, + sym_string, + STATE(5727), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118622] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6390), 1, + sym_number, + STATE(5738), 1, + sym_string, + STATE(5739), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118656] = 3, + ACTIONS(4398), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4400), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118680] = 3, + ACTIONS(4402), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4404), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118704] = 3, + ACTIONS(4092), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4094), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118728] = 3, + ACTIONS(4258), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118752] = 3, + ACTIONS(4270), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4272), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [118776] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6392), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5670), 2, + sym_string, + sym_predefined_type, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118808] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6394), 1, + sym_number, + STATE(5672), 1, + sym_string, + STATE(5675), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118842] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6396), 1, + sym_number, + STATE(5679), 1, + sym_string, + STATE(5681), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118876] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6398), 1, + sym_number, + STATE(5685), 1, + sym_string, + STATE(5686), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [118910] = 3, + ACTIONS(4352), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4354), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [118934] = 3, + ACTIONS(4362), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4364), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [118958] = 3, + ACTIONS(4378), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4380), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [118982] = 3, + ACTIONS(4382), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4384), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119006] = 3, + ACTIONS(4378), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4380), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119030] = 3, + ACTIONS(4382), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4384), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119054] = 3, + ACTIONS(4386), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4388), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119078] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6400), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [119100] = 3, + ACTIONS(4390), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4392), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119124] = 3, + ACTIONS(4386), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4388), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119148] = 3, + ACTIONS(4390), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4392), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119172] = 3, + ACTIONS(4394), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4396), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119196] = 3, + ACTIONS(4062), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4064), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119220] = 3, + ACTIONS(4278), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4280), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [119244] = 3, + ACTIONS(4062), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4064), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119268] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6402), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5737), 2, + sym_string, + sym_predefined_type, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [119300] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6404), 1, + sym_number, + STATE(5755), 1, + sym_string, + STATE(5757), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [119334] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6406), 1, + sym_number, + STATE(5767), 1, + sym_string, + STATE(5787), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [119368] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6408), 1, + sym_number, + STATE(5790), 1, + sym_string, + STATE(5807), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [119402] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6410), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [119424] = 3, + ACTIONS(4076), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4078), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119448] = 3, + ACTIONS(4080), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4082), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119472] = 3, + ACTIONS(4080), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4082), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119496] = 3, + ACTIONS(4080), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4082), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119520] = 3, + ACTIONS(4096), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4098), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119544] = 3, + ACTIONS(4096), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4098), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119568] = 3, + ACTIONS(4096), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4098), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119592] = 3, + ACTIONS(4154), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119616] = 3, + ACTIONS(4154), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119640] = 3, + ACTIONS(4154), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119664] = 3, + ACTIONS(4198), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4200), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119688] = 3, + ACTIONS(4202), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4204), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119712] = 3, + ACTIONS(4202), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4204), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119736] = 3, + ACTIONS(4202), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4204), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119760] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4311), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119784] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4311), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119808] = 3, + ACTIONS(4309), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4311), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119832] = 3, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4342), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119856] = 3, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4342), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119880] = 3, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4342), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119904] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6412), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5604), 2, + sym_string, + sym_predefined_type, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [119936] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6414), 1, + sym_number, + STATE(5611), 1, + sym_string, + STATE(5703), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [119970] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6416), 1, + sym_number, + STATE(5714), 1, + sym_string, + STATE(5724), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120004] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6418), 1, + sym_number, + STATE(5732), 1, + sym_string, + STATE(5747), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120038] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6420), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120060] = 3, + ACTIONS(4170), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4172), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120084] = 3, + ACTIONS(4366), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4368), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120108] = 3, + ACTIONS(4178), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4180), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120132] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6422), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120154] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6424), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5855), 2, + sym_string, + sym_predefined_type, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120186] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6426), 1, + sym_number, + STATE(5871), 1, + sym_string, + STATE(5873), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120220] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6428), 1, + sym_number, + STATE(5879), 1, + sym_string, + STATE(5894), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120254] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(6384), 1, + anon_sym_unique, + ACTIONS(6430), 1, + sym_number, + STATE(5897), 1, + sym_string, + STATE(5898), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6380), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120288] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6432), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120310] = 7, + ACTIONS(4016), 1, + anon_sym_PIPE, + ACTIONS(6332), 1, + anon_sym_LT, + ACTIONS(6434), 1, + anon_sym_DOT, + ACTIONS(6436), 1, + anon_sym_is, + STATE(3212), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120342] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6438), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120364] = 3, + ACTIONS(4158), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4160), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120388] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6440), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120410] = 3, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4218), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120434] = 3, + ACTIONS(4220), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4122), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120458] = 3, + ACTIONS(4224), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4226), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120482] = 3, + ACTIONS(4126), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4124), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120506] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6442), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [120528] = 3, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120552] = 3, + ACTIONS(4232), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4234), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120576] = 3, + ACTIONS(4236), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4238), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120600] = 5, + ACTIONS(4244), 1, + anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4246), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [120628] = 3, + ACTIONS(4166), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120652] = 4, + ACTIONS(4254), 1, + anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4256), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120678] = 3, + ACTIONS(4040), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [120702] = 3, + ACTIONS(4394), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4396), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120726] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(2915), 1, + sym_type_predicate, + STATE(5687), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6444), 2, + sym_identifier, + sym_this, + ACTIONS(215), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120755] = 4, + ACTIONS(4040), 1, + anon_sym_EQ, + ACTIONS(6330), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [120780] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(2915), 1, + sym_type_predicate, + STATE(5810), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6446), 2, + sym_identifier, + sym_this, + ACTIONS(215), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120809] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(2915), 1, + sym_type_predicate, + STATE(5754), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6448), 2, + sym_identifier, + sym_this, + ACTIONS(215), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [120838] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6454), 1, + anon_sym_BANG, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6460), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3832), 1, + sym__call_signature, + STATE(4027), 1, + sym_type_annotation, + STATE(4750), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [120881] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(3754), 1, + sym_formal_parameters, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5486), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [120920] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6464), 1, + anon_sym_BANG, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6468), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4437), 1, + sym_type_annotation, + STATE(5198), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5535), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [120963] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6472), 1, + anon_sym_BANG, + ACTIONS(6474), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4093), 1, + sym_type_annotation, + STATE(4879), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5537), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121006] = 4, + ACTIONS(4022), 1, + anon_sym_EQ, + ACTIONS(6476), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [121031] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, + anon_sym_BANG, + ACTIONS(6480), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4097), 1, + sym_type_annotation, + STATE(4884), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5553), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121074] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(1976), 1, + sym_type_predicate, + STATE(5982), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6482), 2, + sym_identifier, + sym_this, + ACTIONS(215), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121103] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6486), 1, + anon_sym_BANG, + ACTIONS(6488), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4317), 1, + sym_type_annotation, + STATE(5037), 1, + sym__call_signature, + STATE(5040), 1, + sym__initializer, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121146] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(3754), 1, + sym_formal_parameters, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5486), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [121185] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_BANG, + ACTIONS(6492), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4149), 1, + sym_type_annotation, + STATE(4935), 1, + sym__initializer, + STATE(5270), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121228] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6494), 1, + anon_sym_BANG, + ACTIONS(6496), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4155), 1, + sym_type_annotation, + STATE(4938), 1, + sym__initializer, + STATE(5274), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121271] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6500), 1, + anon_sym_BANG, + ACTIONS(6502), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4454), 1, + sym_type_annotation, + STATE(5096), 1, + sym__initializer, + STATE(5239), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6498), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121314] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(3254), 1, + sym_type_predicate, + STATE(5696), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6504), 2, + sym_identifier, + sym_this, + ACTIONS(215), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121343] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6506), 1, + anon_sym_BANG, + ACTIONS(6508), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4180), 1, + sym_type_annotation, + STATE(4957), 1, + sym__initializer, + STATE(5291), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121386] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6512), 1, + anon_sym_BANG, + ACTIONS(6514), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3939), 1, + sym__call_signature, + STATE(4381), 1, + sym_type_annotation, + STATE(5067), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6510), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121429] = 6, + ACTIONS(4016), 1, + anon_sym_PIPE, + ACTIONS(6332), 1, + anon_sym_LT, + ACTIONS(6434), 1, + anon_sym_DOT, + STATE(3212), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121458] = 6, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(4028), 1, + anon_sym_PIPE, + ACTIONS(6516), 1, + anon_sym_DOT, + STATE(3132), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4030), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121487] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6520), 1, + anon_sym_BANG, + ACTIONS(6522), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4119), 1, + sym_type_annotation, + STATE(4723), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5575), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121530] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6526), 1, + anon_sym_BANG, + ACTIONS(6528), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3911), 1, + sym__call_signature, + STATE(4263), 1, + sym_type_annotation, + STATE(5023), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6524), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121573] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6512), 1, + anon_sym_BANG, + ACTIONS(6530), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4381), 1, + sym_type_annotation, + STATE(5146), 1, + sym__call_signature, + STATE(5147), 1, + sym__initializer, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6510), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121616] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6534), 1, + anon_sym_BANG, + ACTIONS(6536), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4463), 1, + sym_type_annotation, + STATE(5151), 1, + sym__initializer, + STATE(5506), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121659] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6538), 1, + anon_sym_BANG, + ACTIONS(6540), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4079), 1, + sym_type_annotation, + STATE(5159), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5510), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121702] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6542), 1, + anon_sym_BANG, + ACTIONS(6544), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4274), 1, + sym_type_annotation, + STATE(5033), 1, + sym__initializer, + STATE(5399), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [121745] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(1504), 1, + sym_type_predicate, + STATE(5750), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6546), 2, + sym_identifier, + sym_this, + ACTIONS(215), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121774] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(3754), 1, + sym_formal_parameters, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5486), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [121813] = 14, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(6336), 1, + anon_sym_STAR, + ACTIONS(6340), 1, + anon_sym_LBRACE, + ACTIONS(6548), 1, + sym_identifier, + ACTIONS(6550), 1, + anon_sym_type, + ACTIONS(6552), 1, + anon_sym_COMMA, + ACTIONS(6554), 1, + anon_sym_from, + STATE(4068), 1, + sym_string, + STATE(4072), 1, + sym_import_require_clause, + STATE(5397), 1, + sym_import_clause, + STATE(5490), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5763), 2, + sym_namespace_import, + sym_named_imports, + [121858] = 9, + ACTIONS(4016), 1, + anon_sym_extends, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6322), 1, + anon_sym_DOT, + ACTIONS(6556), 1, + sym_identifier, + ACTIONS(6560), 1, + anon_sym_GT, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6558), 3, + anon_sym_LBRACE, + sym_jsx_identifier, + anon_sym_SLASH_GT, + ACTIONS(3499), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + [121893] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(3754), 1, + sym_formal_parameters, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5486), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [121932] = 6, + ACTIONS(213), 1, + anon_sym_unique, + STATE(3471), 1, + sym_type_predicate, + STATE(5780), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6563), 2, + sym_identifier, + sym_this, + ACTIONS(215), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121961] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6486), 1, + anon_sym_BANG, + ACTIONS(6565), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3923), 1, + sym__call_signature, + STATE(4317), 1, + sym_type_annotation, + STATE(4995), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [122004] = 4, + ACTIONS(4044), 1, + anon_sym_EQ, + ACTIONS(6330), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4046), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [122029] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6567), 1, + anon_sym_BANG, + ACTIONS(6569), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4168), 1, + sym_type_annotation, + STATE(4667), 1, + sym__initializer, + STATE(5342), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [122072] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6571), 1, + anon_sym_BANG, + ACTIONS(6573), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4208), 1, + sym_type_annotation, + STATE(4674), 1, + sym__initializer, + STATE(5386), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [122115] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(3754), 1, + sym_formal_parameters, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + STATE(5486), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [122154] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6577), 1, + anon_sym_BANG, + ACTIONS(6579), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3859), 1, + sym__call_signature, + STATE(4080), 1, + sym_type_annotation, + STATE(4862), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6575), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [122197] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6581), 1, + anon_sym_BANG, + ACTIONS(6583), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4359), 1, + sym_type_annotation, + STATE(5125), 1, + sym__initializer, + STATE(5478), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [122240] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6585), 1, + anon_sym_BANG, + ACTIONS(6587), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4366), 1, + sym_type_annotation, + STATE(5131), 1, + sym__initializer, + STATE(5487), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [122283] = 13, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(6589), 1, + anon_sym_BANG, + ACTIONS(6591), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(4183), 1, + sym_type_annotation, + STATE(4958), 1, + sym__initializer, + STATE(5295), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [122326] = 4, + ACTIONS(1797), 1, + anon_sym_DOT, + ACTIONS(4302), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4304), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122350] = 3, + ACTIONS(4320), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4322), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122372] = 3, + ACTIONS(4324), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4326), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122394] = 13, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(6595), 1, + anon_sym_GT, + ACTIONS(6597), 1, + anon_sym_SLASH_GT, + STATE(3395), 1, + sym_type_arguments, + STATE(3397), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [122436] = 3, + ACTIONS(4328), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4330), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122458] = 3, + ACTIONS(4332), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4334), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [122480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4311), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122500] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4311), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122520] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4342), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122540] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4342), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122560] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4342), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122580] = 4, + ACTIONS(4344), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4346), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [122604] = 6, + ACTIONS(4316), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [122632] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6607), 1, + anon_sym_COLON, + ACTIONS(6609), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3576), 1, + sym__call_signature, + STATE(4112), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6605), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [122668] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4354), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122688] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6615), 1, + anon_sym_LT_SLASH, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + STATE(1614), 1, + sym_jsx_closing_element, + STATE(3075), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6613), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3062), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [122722] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4364), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122742] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6623), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3542), 1, + sym__call_signature, + STATE(4334), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6621), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [122778] = 6, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4138), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [122806] = 6, + ACTIONS(4140), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4142), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [122834] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6615), 1, + anon_sym_LT_SLASH, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + STATE(1651), 1, + sym_jsx_closing_element, + STATE(3075), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6625), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [122868] = 13, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(6595), 1, + anon_sym_GT, + ACTIONS(6627), 1, + anon_sym_SLASH_GT, + STATE(3301), 1, + sym_type_arguments, + STATE(3302), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [122910] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4380), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122930] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + ACTIONS(6631), 1, + anon_sym_LT_SLASH, + STATE(2088), 1, + sym_jsx_closing_element, + STATE(3075), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6629), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3091), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [122964] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4384), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [122984] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4380), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123004] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4384), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123024] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4388), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123044] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4392), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123064] = 5, + ACTIONS(4022), 1, + anon_sym_PIPE, + ACTIONS(6332), 1, + anon_sym_LT, + STATE(3218), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123090] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4388), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123110] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4392), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123130] = 6, + ACTIONS(6366), 1, + anon_sym_LT, + ACTIONS(6633), 1, + anon_sym_DOT, + ACTIONS(6635), 1, + anon_sym_is, + STATE(3358), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [123158] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + ACTIONS(6639), 1, + anon_sym_LT_SLASH, + STATE(3075), 1, + sym_jsx_opening_element, + STATE(3796), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6637), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3078), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [123192] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4396), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123212] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4064), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123232] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + ACTIONS(6639), 1, + anon_sym_LT_SLASH, + STATE(3075), 1, + sym_jsx_opening_element, + STATE(3817), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6625), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [123266] = 5, + ACTIONS(3429), 1, + anon_sym_PIPE, + ACTIONS(3481), 1, + anon_sym_DOT, + ACTIONS(3483), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123292] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6643), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3594), 1, + sym__call_signature, + STATE(3969), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6641), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [123328] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4396), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123348] = 5, + ACTIONS(4210), 1, + anon_sym_PIPE, + ACTIONS(6645), 1, + anon_sym_DOT, + ACTIONS(6647), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4212), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123374] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4064), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123394] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + ACTIONS(6651), 1, + anon_sym_LT_SLASH, + STATE(3075), 1, + sym_jsx_opening_element, + STATE(4213), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6649), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3085), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [123428] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + ACTIONS(6651), 1, + anon_sym_LT_SLASH, + STATE(3075), 1, + sym_jsx_opening_element, + STATE(4273), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6625), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [123462] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4078), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123482] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4082), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123502] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4082), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123522] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6655), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3525), 1, + sym__call_signature, + STATE(4456), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6653), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [123558] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4082), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123578] = 9, + ACTIONS(6611), 1, + anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_AMP, + ACTIONS(6619), 1, + anon_sym_LT, + ACTIONS(6631), 1, + anon_sym_LT_SLASH, + STATE(2228), 1, + sym_jsx_closing_element, + STATE(3075), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6625), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [123612] = 3, + ACTIONS(3170), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3172), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123634] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4098), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123654] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6659), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4214), 1, + sym__call_signature, + STATE(4215), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6657), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [123690] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4098), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123710] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4098), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123730] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123750] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123770] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6661), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4111), 1, + sym__call_signature, + STATE(4112), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6605), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [123806] = 3, + ACTIONS(3188), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3190), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123828] = 3, + ACTIONS(4162), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4164), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123850] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4156), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123870] = 6, + ACTIONS(4370), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4372), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [123898] = 3, + ACTIONS(4274), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4276), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123920] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4200), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [123940] = 3, + ACTIONS(4282), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4284), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123962] = 6, + ACTIONS(4406), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [123990] = 4, + ACTIONS(4228), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4230), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [124014] = 3, + ACTIONS(3182), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3184), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124036] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4204), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [124056] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4204), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [124076] = 6, + ACTIONS(4258), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [124104] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6663), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3577), 1, + sym__call_signature, + STATE(4215), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6657), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124140] = 4, + ACTIONS(1767), 1, + anon_sym_DOT, + ACTIONS(4302), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4304), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124164] = 6, + ACTIONS(4240), 1, + anon_sym_EQ, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4242), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [124192] = 3, + ACTIONS(3640), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124214] = 3, + ACTIONS(3644), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124236] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4204), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [124256] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6665), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3969), 1, + sym_type_annotation, + STATE(4181), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6641), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124292] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6667), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4332), 1, + sym__call_signature, + STATE(4334), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6621), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124328] = 4, + ACTIONS(4248), 1, + anon_sym_EQ, + ACTIONS(6669), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4250), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP3, + anon_sym_PIPE, + [124352] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4311), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [124372] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6671), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4455), 1, + sym__call_signature, + STATE(4456), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6653), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124408] = 4, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(6436), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4046), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124431] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(3588), 1, + sym__call_signature, + STATE(3970), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6673), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124464] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(4450), 1, + sym__call_signature, + STATE(4452), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6675), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124497] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4185), 1, + sym_type_annotation, + STATE(4961), 1, + sym__initializer, + STATE(5299), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124534] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(3754), 1, + sym_formal_parameters, + STATE(5486), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [124565] = 3, + ACTIONS(4132), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124586] = 7, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3790), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [124615] = 3, + ACTIONS(1657), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1655), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [124636] = 3, + ACTIONS(4266), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4268), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124657] = 7, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [124686] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3389), 1, + sym_formal_parameters, + STATE(3922), 1, + sym__call_signature, + STATE(4166), 1, + sym_type_annotation, + STATE(5157), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6679), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124723] = 4, + ACTIONS(4040), 1, + anon_sym_PIPE, + ACTIONS(6436), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124746] = 4, + ACTIONS(4022), 1, + anon_sym_PIPE, + ACTIONS(6681), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124769] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(3972), 1, + sym_type_annotation, + STATE(4896), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5543), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124806] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(4216), 1, + sym__call_signature, + STATE(4217), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6685), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [124839] = 12, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(6336), 1, + anon_sym_STAR, + ACTIONS(6340), 1, + anon_sym_LBRACE, + ACTIONS(6548), 1, + sym_identifier, + ACTIONS(6550), 1, + anon_sym_type, + STATE(4068), 1, + sym_string, + STATE(4072), 1, + sym_import_require_clause, + STATE(5397), 1, + sym_import_clause, + STATE(5490), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5763), 2, + sym_namespace_import, + sym_named_imports, + [124878] = 12, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6687), 1, + anon_sym_GT, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(6691), 1, + anon_sym_SLASH_GT, + STATE(3412), 1, + sym_type_arguments, + STATE(3416), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [124917] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3389), 1, + sym_formal_parameters, + STATE(3943), 1, + sym__call_signature, + STATE(4384), 1, + sym_type_annotation, + STATE(5077), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [124954] = 8, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6297), 1, + anon_sym_DOT, + ACTIONS(6299), 1, + anon_sym_QMARK_DOT, + ACTIONS(6695), 1, + anon_sym_LPAREN, + STATE(2879), 1, + sym_arguments, + STATE(2900), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4004), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [124985] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4082), 1, + sym_type_annotation, + STATE(4653), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5514), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125022] = 4, + ACTIONS(4182), 1, + anon_sym_PIPE, + ACTIONS(6697), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4184), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [125045] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4124), 1, + sym_type_annotation, + STATE(4735), 1, + sym__initializer, + STATE(5249), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125082] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(3598), 1, + sym__call_signature, + STATE(4368), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6699), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [125115] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4296), 1, + sym_type_annotation, + STATE(4709), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5531), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125152] = 7, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3872), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [125181] = 3, + ACTIONS(4374), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4376), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [125202] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(4384), 1, + sym_type_annotation, + STATE(5134), 1, + sym__call_signature, + STATE(5141), 1, + sym__initializer, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125239] = 8, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6293), 1, + anon_sym_DOT, + ACTIONS(6295), 1, + anon_sym_QMARK_DOT, + ACTIONS(6695), 1, + anon_sym_LPAREN, + STATE(2875), 1, + sym_arguments, + STATE(2942), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4010), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [125270] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(3719), 1, + sym__call_signature, + STATE(4452), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6675), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [125303] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(4054), 1, + sym_type_annotation, + STATE(4876), 1, + sym__call_signature, + STATE(4877), 1, + sym__initializer, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6703), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125340] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(4005), 1, + sym__call_signature, + STATE(4018), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6705), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [125373] = 12, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6687), 1, + anon_sym_GT, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(6707), 1, + anon_sym_SLASH_GT, + STATE(3448), 1, + sym_type_arguments, + STATE(3449), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [125412] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4095), 1, + sym_type_annotation, + STATE(4881), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5544), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125449] = 5, + ACTIONS(6360), 1, + anon_sym_LPAREN, + ACTIONS(6709), 1, + anon_sym_DOT, + STATE(3262), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4030), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [125474] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(3722), 1, + sym__call_signature, + STATE(4018), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6705), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [125507] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4361), 1, + sym_type_annotation, + STATE(5127), 1, + sym__initializer, + STATE(5482), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125544] = 8, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6322), 1, + anon_sym_DOT, + ACTIONS(6713), 1, + anon_sym_QMARK, + STATE(2994), 1, + sym_type_arguments, + STATE(5530), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [125575] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4102), 1, + sym_type_annotation, + STATE(4891), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5569), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125612] = 12, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6687), 1, + anon_sym_GT, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(6716), 1, + anon_sym_SLASH_GT, + STATE(3398), 1, + sym_type_arguments, + STATE(3399), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [125651] = 8, + ACTIONS(6718), 1, + anon_sym_LBRACE, + ACTIONS(6724), 1, + anon_sym_LT_SLASH, + ACTIONS(6726), 1, + anon_sym_AMP, + ACTIONS(6729), 1, + anon_sym_LT, + STATE(3075), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6721), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(3163), 5, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_lone_ampersand, + aux_sym_jsx_element_repeat1, + [125682] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4022), 1, + sym_type_annotation, + STATE(4629), 1, + sym__initializer, + STATE(5314), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6732), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125719] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4372), 1, + sym_type_annotation, + STATE(5138), 1, + sym__initializer, + STATE(5492), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125756] = 3, + ACTIONS(4106), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4108), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [125777] = 7, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [125806] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4272), 1, + sym_type_annotation, + STATE(5028), 1, + sym__initializer, + STATE(5396), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125843] = 7, + ACTIONS(3780), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [125872] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4406), 1, + sym_type_annotation, + STATE(5047), 1, + sym__initializer, + STATE(5409), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [125909] = 4, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1635), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4272), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [125932] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(3582), 1, + sym__call_signature, + STATE(4217), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6685), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [125965] = 8, + ACTIONS(3431), 1, + anon_sym_DOT, + ACTIONS(3435), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6695), 1, + anon_sym_LPAREN, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [125996] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3389), 1, + sym_formal_parameters, + STATE(3854), 1, + sym__call_signature, + STATE(4054), 1, + sym_type_annotation, + STATE(4842), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6703), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126033] = 12, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6687), 1, + anon_sym_GT, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(6734), 1, + anon_sym_SLASH_GT, + STATE(3303), 1, + sym_type_arguments, + STATE(3304), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [126072] = 5, + ACTIONS(6366), 1, + anon_sym_LT, + ACTIONS(6633), 1, + anon_sym_DOT, + STATE(3358), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126097] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4440), 1, + sym_type_annotation, + STATE(5201), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5538), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126134] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(3970), 1, + sym_type_annotation, + STATE(4430), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6673), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [126167] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4445), 1, + sym_type_annotation, + STATE(5207), 1, + sym__initializer, + STATE(5509), 1, + sym_type_parameters, + STATE(5545), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126204] = 3, + ACTIONS(4144), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4146), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126225] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4276), 1, + sym_type_annotation, + STATE(5036), 1, + sym__initializer, + STATE(5403), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126262] = 3, + ACTIONS(4036), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4038), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [126283] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(4175), 1, + sym_type_annotation, + STATE(4953), 1, + sym__initializer, + STATE(5287), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126320] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3389), 1, + sym_formal_parameters, + STATE(3950), 1, + sym__call_signature, + STATE(4403), 1, + sym_type_annotation, + STATE(5057), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6736), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126357] = 9, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_formal_parameters, + STATE(4348), 1, + sym__call_signature, + STATE(4368), 1, + sym_type_annotation, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6699), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [126390] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3389), 1, + sym_formal_parameters, + STATE(3908), 1, + sym__call_signature, + STATE(4258), 1, + sym_type_annotation, + STATE(5012), 1, + sym__initializer, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6738), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [126427] = 3, + ACTIONS(4348), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4350), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126447] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4276), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126465] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4284), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126483] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5552), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [126501] = 3, + ACTIONS(4022), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126521] = 3, + ACTIONS(4166), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126541] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126559] = 3, + ACTIONS(4040), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126579] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3449), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126597] = 3, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126617] = 4, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(6740), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126639] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4322), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126657] = 3, + ACTIONS(4194), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4196), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126677] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4326), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126695] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4330), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126713] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4334), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126731] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3184), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126749] = 3, + ACTIONS(2340), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126769] = 3, + ACTIONS(4216), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4218), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126789] = 3, + ACTIONS(4220), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4122), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126809] = 3, + ACTIONS(4224), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4226), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126829] = 4, + ACTIONS(4228), 1, + anon_sym_PIPE, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4230), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126851] = 3, + ACTIONS(4126), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4124), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126871] = 3, + ACTIONS(4232), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4234), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126891] = 4, + ACTIONS(6366), 1, + anon_sym_LT, + STATE(3359), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [126913] = 3, + ACTIONS(4236), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4238), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126933] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4242), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [126957] = 5, + ACTIONS(4188), 1, + anon_sym_PIPE, + ACTIONS(6740), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 2, + anon_sym_AMP3, + anon_sym_extends, + ACTIONS(4246), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [126981] = 4, + ACTIONS(4248), 1, + anon_sym_PIPE, + ACTIONS(6748), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4250), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE_RBRACE, + [127003] = 4, + ACTIONS(4254), 1, + anon_sym_PIPE, + ACTIONS(6740), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4256), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127025] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3172), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [127043] = 3, + ACTIONS(4262), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4264), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127063] = 3, + ACTIONS(2344), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2342), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127083] = 3, + ACTIONS(4270), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4272), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127103] = 3, + ACTIONS(4278), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4280), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127123] = 3, + ACTIONS(4286), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4288), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127143] = 4, + ACTIONS(6362), 1, + anon_sym_DOT, + ACTIONS(6364), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3425), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [127165] = 3, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4292), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127185] = 3, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4296), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127205] = 3, + ACTIONS(4298), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4300), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127225] = 4, + ACTIONS(6750), 1, + anon_sym_DOT, + ACTIONS(6752), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4212), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [127247] = 3, + ACTIONS(4316), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127267] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [127291] = 3, + ACTIONS(4336), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4338), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127311] = 4, + ACTIONS(4344), 1, + anon_sym_PIPE, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4346), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127333] = 3, + ACTIONS(2328), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2326), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127353] = 3, + ACTIONS(1767), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4304), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [127373] = 3, + ACTIONS(1797), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4304), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [127393] = 3, + ACTIONS(4398), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4400), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127413] = 3, + ACTIONS(4402), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4404), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127433] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [127457] = 3, + ACTIONS(4092), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4094), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127477] = 3, + ACTIONS(4258), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127497] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [127521] = 3, + ACTIONS(2336), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2334), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127541] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4270), 1, + anon_sym_PIPE, + STATE(1635), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4272), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127565] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3190), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [127583] = 3, + ACTIONS(4170), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4172), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127603] = 3, + ACTIONS(4174), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4176), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127623] = 3, + ACTIONS(4178), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4180), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127643] = 3, + ACTIONS(2332), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2330), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127663] = 11, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6754), 1, + sym_identifier, + ACTIONS(6756), 1, + anon_sym_type, + ACTIONS(6758), 1, + anon_sym_COMMA, + ACTIONS(6760), 1, + anon_sym_RBRACE, + ACTIONS(6762), 1, + anon_sym_typeof, + STATE(4834), 1, + sym_import_specifier, + STATE(5480), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5759), 2, + sym__module_export_name, + sym_string, + [127699] = 3, + ACTIONS(4366), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4368), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127719] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4372), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [127743] = 6, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6322), 1, + anon_sym_DOT, + ACTIONS(6764), 1, + anon_sym_is, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [127769] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3754), 1, + sym_formal_parameters, + STATE(5486), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [127795] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [127813] = 3, + ACTIONS(4044), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4046), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127833] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4164), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [127851] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4138), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [127875] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4142), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [127899] = 3, + ACTIONS(4158), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4160), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127919] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6766), 1, + sym_identifier, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + STATE(2061), 1, + sym_class_body, + STATE(3660), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5458), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [127954] = 3, + ACTIONS(6774), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [127973] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4134), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [127990] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4268), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [128007] = 8, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6776), 1, + anon_sym_EQ, + ACTIONS(6780), 1, + anon_sym_BANG, + STATE(4209), 1, + sym__initializer, + STATE(4233), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6778), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128036] = 6, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6322), 1, + anon_sym_DOT, + ACTIONS(6784), 1, + anon_sym_is, + STATE(2994), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [128061] = 10, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6318), 1, + anon_sym_SLASH_GT, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(6595), 1, + anon_sym_GT, + STATE(3407), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128094] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6786), 1, + sym_identifier, + STATE(2061), 1, + sym_class_body, + STATE(3660), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5458), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128129] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6788), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [128152] = 10, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6754), 1, + sym_identifier, + ACTIONS(6756), 1, + anon_sym_type, + ACTIONS(6762), 1, + anon_sym_typeof, + ACTIONS(6790), 1, + anon_sym_RBRACE, + STATE(5439), 1, + sym_import_specifier, + STATE(5480), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5759), 2, + sym__module_export_name, + sym_string, + [128185] = 4, + ACTIONS(6794), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3820), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6792), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [128206] = 10, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(6595), 1, + anon_sym_GT, + ACTIONS(6597), 1, + anon_sym_SLASH_GT, + STATE(3393), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128239] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1655), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [128256] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1721), 1, + sym_class_body, + STATE(3587), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5517), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128291] = 9, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6780), 1, + anon_sym_BANG, + ACTIONS(6800), 1, + sym__automatic_semicolon, + STATE(4233), 1, + sym_type_annotation, + STATE(4979), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6778), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + [128322] = 4, + ACTIONS(6794), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3797), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6803), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [128343] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4038), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [128360] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6805), 1, + sym_identifier, + STATE(2061), 1, + sym_class_body, + STATE(3660), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5458), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128395] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6807), 1, + sym_identifier, + STATE(2217), 1, + sym_class_body, + STATE(3602), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5350), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128430] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6809), 1, + sym_identifier, + STATE(1655), 1, + sym_class_body, + STATE(3735), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5307), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128465] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6811), 1, + sym_identifier, + STATE(2061), 1, + sym_class_body, + STATE(3660), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5458), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128500] = 9, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6754), 1, + sym_identifier, + ACTIONS(6813), 1, + anon_sym_type, + ACTIONS(6815), 1, + anon_sym_as, + STATE(5449), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6552), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5705), 2, + sym__module_export_name, + sym_string, + [128531] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6817), 1, + sym_identifier, + STATE(2217), 1, + sym_class_body, + STATE(3602), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5350), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128566] = 9, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6819), 1, + sym_identifier, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6825), 1, + anon_sym_RBRACE, + STATE(4816), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6821), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4818), 2, + sym__module_export_name, + sym_string, + [128597] = 10, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6754), 1, + sym_identifier, + ACTIONS(6756), 1, + anon_sym_type, + ACTIONS(6762), 1, + anon_sym_typeof, + ACTIONS(6827), 1, + anon_sym_RBRACE, + STATE(5439), 1, + sym_import_specifier, + STATE(5480), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5759), 2, + sym__module_export_name, + sym_string, + [128630] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6829), 1, + sym_identifier, + STATE(2217), 1, + sym_class_body, + STATE(3602), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5350), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128665] = 4, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3998), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [128686] = 10, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(6595), 1, + anon_sym_GT, + ACTIONS(6627), 1, + anon_sym_SLASH_GT, + STATE(3300), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128719] = 3, + ACTIONS(6831), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4184), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [128738] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6833), 1, + sym_identifier, + STATE(2217), 1, + sym_class_body, + STATE(3602), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5350), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128773] = 3, + ACTIONS(6635), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [128792] = 11, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6770), 1, + anon_sym_extends, + ACTIONS(6772), 1, + anon_sym_implements, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + sym_identifier, + STATE(2513), 1, + sym_class_body, + STATE(3729), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5388), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [128827] = 5, + ACTIONS(6038), 1, + anon_sym_LPAREN, + ACTIONS(6356), 1, + anon_sym_DOT, + STATE(2896), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4030), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [128850] = 3, + ACTIONS(6635), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4046), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [128869] = 10, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6324), 1, + anon_sym_SLASH_GT, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(6595), 1, + anon_sym_GT, + STATE(3440), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128902] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6837), 1, + anon_sym_BANG, + ACTIONS(6839), 1, + anon_sym_QMARK, + STATE(4405), 1, + sym_type_annotation, + STATE(5148), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128930] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4168), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [128946] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6595), 1, + anon_sym_GT, + ACTIONS(6627), 1, + anon_sym_SLASH_GT, + STATE(3305), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [128976] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [128992] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4300), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129008] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4280), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129024] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6841), 1, + anon_sym_GT, + ACTIONS(6843), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129054] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6845), 1, + anon_sym_GT, + ACTIONS(6847), 1, + anon_sym_SLASH_GT, + STATE(3307), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129084] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6849), 1, + anon_sym_GT, + ACTIONS(6851), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129114] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6853), 1, + anon_sym_GT, + ACTIONS(6855), 1, + anon_sym_SLASH_GT, + STATE(3308), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129144] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6857), 1, + anon_sym_GT, + ACTIONS(6859), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129174] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6861), 1, + anon_sym_GT, + ACTIONS(6863), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129204] = 8, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6819), 1, + sym_identifier, + ACTIONS(6865), 1, + anon_sym_RBRACE, + STATE(5389), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6821), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4818), 2, + sym__module_export_name, + sym_string, + [129232] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6867), 1, + anon_sym_GT, + ACTIONS(6869), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129262] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6871), 1, + anon_sym_GT, + ACTIONS(6873), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129292] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6875), 1, + anon_sym_BANG, + ACTIONS(6877), 1, + anon_sym_QMARK, + STATE(4167), 1, + sym_type_annotation, + STATE(4946), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [129320] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129336] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [129358] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6885), 1, + anon_sym_BANG, + ACTIONS(6887), 1, + anon_sym_QMARK, + STATE(4171), 1, + sym_type_annotation, + STATE(4950), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [129386] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6889), 1, + anon_sym_BANG, + ACTIONS(6891), 1, + anon_sym_QMARK, + STATE(4173), 1, + sym_type_annotation, + STATE(4951), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [129414] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129430] = 3, + ACTIONS(6893), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129448] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4196), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129464] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4400), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4404), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129496] = 7, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4080), 1, + sym_type_annotation, + STATE(4867), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6577), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6575), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [129522] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [129544] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4094), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129560] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129576] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [129598] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4146), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129614] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2334), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129630] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6318), 1, + anon_sym_SLASH_GT, + ACTIONS(6595), 1, + anon_sym_GT, + STATE(3423), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [129660] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6895), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [129676] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4288), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129692] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4292), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129708] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4296), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129724] = 7, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6897), 1, + anon_sym_DQUOTE, + ACTIONS(6899), 1, + anon_sym_SQUOTE, + ACTIONS(6901), 1, + anon_sym_LT, + STATE(3084), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4084), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [129750] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129766] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4172), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129782] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4176), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129798] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4338), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129814] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4180), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129830] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2330), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129846] = 3, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4346), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [129864] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4218), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129880] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4350), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129896] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4122), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129912] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4226), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129928] = 3, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4230), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [129946] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4124), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129962] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4234), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [129978] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4242), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [130000] = 4, + ACTIONS(6893), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4246), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [130020] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4368), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [130036] = 3, + ACTIONS(6903), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4250), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + [130054] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [130080] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6905), 1, + anon_sym_BANG, + ACTIONS(6907), 1, + anon_sym_QMARK, + STATE(4100), 1, + sym_type_annotation, + STATE(4887), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130108] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4372), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [130130] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6909), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(229), 1, + sym_class_body, + STATE(3654), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5335), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [130162] = 3, + ACTIONS(6893), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4256), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [130180] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6917), 1, + anon_sym_BANG, + ACTIONS(6919), 1, + anon_sym_QMARK, + STATE(4390), 1, + sym_type_annotation, + STATE(4731), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6915), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130208] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4108), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [130224] = 7, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4263), 1, + sym_type_annotation, + STATE(5016), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6526), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6524), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130250] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4238), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [130266] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4264), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [130282] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6871), 1, + anon_sym_GT, + ACTIONS(6921), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130312] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6923), 1, + anon_sym_BANG, + ACTIONS(6925), 1, + anon_sym_QMARK, + STATE(4291), 1, + sym_type_annotation, + STATE(5051), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130340] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2074), 1, + sym_class_body, + STATE(3532), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5521), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [130372] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6927), 1, + anon_sym_BANG, + ACTIONS(6929), 1, + anon_sym_QMARK, + STATE(4297), 1, + sym_type_annotation, + STATE(5055), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130400] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6931), 1, + anon_sym_BANG, + ACTIONS(6933), 1, + anon_sym_QMARK, + STATE(4302), 1, + sym_type_annotation, + STATE(5058), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130428] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6935), 1, + anon_sym_BANG, + ACTIONS(6937), 1, + anon_sym_QMARK, + STATE(4316), 1, + sym_type_annotation, + STATE(5072), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130456] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6939), 1, + anon_sym_BANG, + ACTIONS(6941), 1, + anon_sym_QMARK, + STATE(4333), 1, + sym_type_annotation, + STATE(5090), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130484] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1707), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [130500] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6943), 1, + anon_sym_BANG, + ACTIONS(6945), 1, + anon_sym_QMARK, + STATE(4337), 1, + sym_type_annotation, + STATE(5094), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130528] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2503), 1, + sym_class_body, + STATE(3584), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5288), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [130560] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6947), 1, + anon_sym_BANG, + ACTIONS(6949), 1, + anon_sym_QMARK, + STATE(4340), 1, + sym_type_annotation, + STATE(5097), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130588] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6951), 1, + anon_sym_BANG, + ACTIONS(6953), 1, + anon_sym_QMARK, + STATE(4343), 1, + sym_type_annotation, + STATE(5100), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130616] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6595), 1, + anon_sym_GT, + ACTIONS(6597), 1, + anon_sym_SLASH_GT, + STATE(3400), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [130646] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6955), 1, + anon_sym_BANG, + ACTIONS(6957), 1, + anon_sym_QMARK, + STATE(4349), 1, + sym_type_annotation, + STATE(5107), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130674] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6959), 1, + anon_sym_BANG, + ACTIONS(6961), 1, + anon_sym_QMARK, + STATE(4352), 1, + sym_type_annotation, + STATE(5110), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130702] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5150), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [130728] = 5, + ACTIONS(6356), 1, + anon_sym_DOT, + ACTIONS(6695), 1, + anon_sym_LPAREN, + STATE(2896), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4030), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [130750] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6963), 1, + anon_sym_BANG, + ACTIONS(6965), 1, + anon_sym_QMARK, + STATE(4370), 1, + sym_type_annotation, + STATE(5135), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130778] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6800), 1, + sym__automatic_semicolon, + STATE(4233), 1, + sym_type_annotation, + STATE(4985), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6778), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + [130806] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6967), 1, + anon_sym_BANG, + ACTIONS(6969), 1, + anon_sym_QMARK, + STATE(4379), 1, + sym_type_annotation, + STATE(5143), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130834] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1723), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [130850] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6971), 1, + anon_sym_BANG, + ACTIONS(6973), 1, + anon_sym_QMARK, + STATE(4106), 1, + sym_type_annotation, + STATE(4897), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130878] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6975), 1, + anon_sym_BANG, + ACTIONS(6977), 1, + anon_sym_QMARK, + STATE(4409), 1, + sym_type_annotation, + STATE(5165), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130906] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6979), 1, + anon_sym_BANG, + ACTIONS(6981), 1, + anon_sym_QMARK, + STATE(4413), 1, + sym_type_annotation, + STATE(5167), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130934] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6983), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [130950] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6985), 1, + anon_sym_BANG, + ACTIONS(6987), 1, + anon_sym_QMARK, + STATE(4423), 1, + sym_type_annotation, + STATE(5177), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [130978] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6989), 1, + anon_sym_BANG, + ACTIONS(6991), 1, + anon_sym_QMARK, + STATE(4425), 1, + sym_type_annotation, + STATE(5179), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131006] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6867), 1, + anon_sym_GT, + ACTIONS(6993), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131036] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_class_body, + STATE(3657), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5485), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131068] = 4, + ACTIONS(6997), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4232), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6803), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [131088] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(3611), 1, + sym_type_parameters, + STATE(4346), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5406), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131120] = 7, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6897), 1, + anon_sym_DQUOTE, + ACTIONS(6899), 1, + anon_sym_SQUOTE, + ACTIONS(6901), 1, + anon_sym_LT, + STATE(3084), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4086), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [131146] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2326), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [131162] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6841), 1, + anon_sym_GT, + ACTIONS(6999), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131192] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(775), 1, + sym_class_body, + STATE(3595), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5528), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131224] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6845), 1, + anon_sym_GT, + ACTIONS(7001), 1, + anon_sym_SLASH_GT, + STATE(3428), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131254] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4376), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [131270] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6849), 1, + anon_sym_GT, + ACTIONS(7003), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131300] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6853), 1, + anon_sym_GT, + ACTIONS(7005), 1, + anon_sym_SLASH_GT, + STATE(3431), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131330] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6857), 1, + anon_sym_GT, + ACTIONS(7007), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131360] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6861), 1, + anon_sym_GT, + ACTIONS(7009), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131390] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7011), 1, + anon_sym_BANG, + ACTIONS(7013), 1, + anon_sym_QMARK, + STATE(4118), 1, + sym_type_annotation, + STATE(4903), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131418] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5047), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131444] = 8, + ACTIONS(7015), 1, + sym_identifier, + ACTIONS(7018), 1, + anon_sym_LBRACE, + ACTIONS(7023), 1, + sym_jsx_identifier, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7021), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131472] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4138), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [131494] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7026), 1, + anon_sym_BANG, + ACTIONS(7028), 1, + anon_sym_QMARK, + STATE(4121), 1, + sym_type_annotation, + STATE(4907), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131522] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4142), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [131544] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6841), 1, + anon_sym_GT, + ACTIONS(7030), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131574] = 7, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6776), 1, + anon_sym_EQ, + STATE(4210), 1, + sym__initializer, + STATE(4233), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6778), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131600] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [131626] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6845), 1, + anon_sym_GT, + ACTIONS(7032), 1, + anon_sym_SLASH_GT, + STATE(3387), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131656] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6849), 1, + anon_sym_GT, + ACTIONS(7034), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131686] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6853), 1, + anon_sym_GT, + ACTIONS(7036), 1, + anon_sym_SLASH_GT, + STATE(3360), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131716] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2244), 1, + sym_class_body, + STATE(3596), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5401), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131748] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2077), 1, + sym_class_body, + STATE(3681), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5252), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131780] = 6, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7038), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6788), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [131804] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6857), 1, + anon_sym_GT, + ACTIONS(7040), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131834] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6909), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(236), 1, + sym_class_body, + STATE(3618), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5240), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131866] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2351), 1, + sym_class_body, + STATE(3743), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5339), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131898] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2132), 1, + sym_class_body, + STATE(3663), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5573), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131930] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6324), 1, + anon_sym_SLASH_GT, + ACTIONS(6595), 1, + anon_sym_GT, + STATE(3451), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [131960] = 8, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6819), 1, + sym_identifier, + ACTIONS(7042), 1, + anon_sym_RBRACE, + STATE(5389), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6821), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4818), 2, + sym__module_export_name, + sym_string, + [131988] = 7, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4222), 1, + sym_type_annotation, + STATE(5075), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7046), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7044), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132014] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6861), 1, + anon_sym_GT, + ACTIONS(7048), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132044] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2342), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [132060] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7050), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132076] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(3739), 1, + sym_type_parameters, + STATE(3968), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5310), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132108] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(1658), 1, + sym_class_body, + STATE(3746), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5315), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132140] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6867), 1, + anon_sym_GT, + ACTIONS(7052), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132170] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7054), 1, + anon_sym_BANG, + ACTIONS(7056), 1, + anon_sym_QMARK, + STATE(4109), 1, + sym_type_annotation, + STATE(5093), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132198] = 4, + ACTIONS(6997), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4404), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6792), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [132218] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6871), 1, + anon_sym_GT, + ACTIONS(7058), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132248] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4160), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [132264] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7060), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132280] = 7, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4381), 1, + sym_type_annotation, + STATE(5118), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6512), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6510), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132306] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7062), 1, + anon_sym_BANG, + ACTIONS(7064), 1, + anon_sym_QMARK, + STATE(4196), 1, + sym_type_annotation, + STATE(4856), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132334] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7066), 1, + anon_sym_BANG, + ACTIONS(7068), 1, + anon_sym_QMARK, + STATE(4407), 1, + sym_type_annotation, + STATE(4937), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132362] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7070), 1, + anon_sym_BANG, + ACTIONS(7072), 1, + anon_sym_QMARK, + STATE(4003), 1, + sym_type_annotation, + STATE(4969), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132390] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7074), 1, + anon_sym_BANG, + ACTIONS(7076), 1, + anon_sym_QMARK, + STATE(4051), 1, + sym_type_annotation, + STATE(5017), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132418] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7078), 1, + anon_sym_BANG, + ACTIONS(7080), 1, + anon_sym_QMARK, + STATE(3992), 1, + sym_type_annotation, + STATE(5129), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132446] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6841), 1, + anon_sym_GT, + ACTIONS(7082), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132476] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7084), 1, + anon_sym_BANG, + ACTIONS(7086), 1, + anon_sym_QMARK, + STATE(4153), 1, + sym_type_annotation, + STATE(4803), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132504] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6845), 1, + anon_sym_GT, + ACTIONS(7088), 1, + anon_sym_SLASH_GT, + STATE(3472), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132534] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6849), 1, + anon_sym_GT, + ACTIONS(7090), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132564] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7092), 1, + anon_sym_BANG, + ACTIONS(7094), 1, + anon_sym_QMARK, + STATE(3963), 1, + sym_type_annotation, + STATE(4898), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132592] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7096), 1, + anon_sym_BANG, + ACTIONS(7098), 1, + anon_sym_QMARK, + STATE(4198), 1, + sym_type_annotation, + STATE(4911), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132620] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(803), 1, + sym_class_body, + STATE(3590), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5508), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132652] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7102), 1, + anon_sym_BANG, + ACTIONS(7104), 1, + anon_sym_QMARK, + STATE(4131), 1, + sym_type_annotation, + STATE(4917), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132680] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6853), 1, + anon_sym_GT, + ACTIONS(7106), 1, + anon_sym_SLASH_GT, + STATE(3473), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132710] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6857), 1, + anon_sym_GT, + ACTIONS(7108), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132740] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7110), 1, + anon_sym_BANG, + ACTIONS(7112), 1, + anon_sym_QMARK, + STATE(4133), 1, + sym_type_annotation, + STATE(4643), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6915), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132768] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6861), 1, + anon_sym_GT, + ACTIONS(7114), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [132798] = 9, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6754), 1, + sym_identifier, + ACTIONS(6756), 1, + anon_sym_type, + ACTIONS(6762), 1, + anon_sym_typeof, + STATE(5439), 1, + sym_import_specifier, + STATE(5480), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5759), 2, + sym__module_export_name, + sym_string, + [132828] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(3756), 1, + sym_type_parameters, + STATE(4125), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5224), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132860] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7116), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [132876] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [132902] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7118), 1, + anon_sym_BANG, + ACTIONS(7120), 1, + anon_sym_QMARK, + STATE(4341), 1, + sym_type_annotation, + STATE(5208), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132930] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(881), 1, + sym_class_body, + STATE(3630), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5463), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132962] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7122), 1, + anon_sym_BANG, + ACTIONS(7124), 1, + anon_sym_QMARK, + STATE(4001), 1, + sym_type_annotation, + STATE(4621), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132990] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7126), 1, + anon_sym_BANG, + ACTIONS(7128), 1, + anon_sym_QMARK, + STATE(4015), 1, + sym_type_annotation, + STATE(4622), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133018] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7130), 1, + anon_sym_BANG, + ACTIONS(7132), 1, + anon_sym_QMARK, + STATE(4228), 1, + sym_type_annotation, + STATE(4940), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133046] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7134), 1, + anon_sym_BANG, + ACTIONS(7136), 1, + anon_sym_QMARK, + STATE(4395), 1, + sym_type_annotation, + STATE(4993), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133074] = 7, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4317), 1, + sym_type_annotation, + STATE(5008), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6486), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6484), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133100] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4272), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [133116] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2275), 1, + sym_class_body, + STATE(3760), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5349), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133148] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7138), 1, + anon_sym_BANG, + ACTIONS(7140), 1, + anon_sym_QMARK, + STATE(4134), 1, + sym_type_annotation, + STATE(4922), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133176] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7142), 1, + anon_sym_BANG, + ACTIONS(7144), 1, + anon_sym_QMARK, + STATE(4137), 1, + sym_type_annotation, + STATE(4923), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133204] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(3762), 1, + sym_type_parameters, + STATE(4179), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5361), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133236] = 10, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(1689), 1, + sym_class_body, + STATE(3763), 1, + sym_type_parameters, + STATE(5098), 1, + sym_extends_clause, + STATE(5376), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133268] = 7, + ACTIONS(237), 1, + anon_sym_COMMA, + ACTIONS(722), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_EQ, + STATE(4947), 1, + aux_sym_object_repeat1, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [133294] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [133310] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4046), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [133326] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6867), 1, + anon_sym_GT, + ACTIONS(7146), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [133356] = 9, + ACTIONS(6301), 1, + sym_identifier, + ACTIONS(6305), 1, + anon_sym_LBRACE, + ACTIONS(6314), 1, + sym_jsx_identifier, + ACTIONS(6871), 1, + anon_sym_GT, + ACTIONS(7148), 1, + anon_sym_SLASH_GT, + STATE(3403), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(3888), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4178), 2, + sym_jsx_expression, + sym_jsx_attribute, + [133386] = 8, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7150), 1, + anon_sym_BANG, + ACTIONS(7152), 1, + anon_sym_QMARK, + STATE(4114), 1, + sym_type_annotation, + STATE(4901), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133414] = 7, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6819), 1, + sym_identifier, + STATE(5389), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6821), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4818), 2, + sym__module_export_name, + sym_string, + [133439] = 6, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3995), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133462] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1723), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [133477] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3172), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [133492] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1799), 2, + anon_sym_while, + sym_identifier, + ACTIONS(1797), 6, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + [133509] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7162), 1, + anon_sym_BQUOTE, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133534] = 4, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2138), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4272), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [133553] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7168), 1, + sym_identifier, + ACTIONS(7170), 1, + sym_this, + STATE(1747), 1, + sym__type_query_member_expression, + STATE(1748), 1, + sym__type_query_subscript_expression, + STATE(1984), 1, + sym__type_query_call_expression, + STATE(1985), 1, + sym__type_query_instantiation_expression, + STATE(4512), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133582] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1769), 2, + anon_sym_while, + sym_identifier, + ACTIONS(1767), 6, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + [133599] = 7, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(6780), 1, + anon_sym_BANG, + STATE(4233), 1, + sym_type_annotation, + STATE(4979), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6778), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133624] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7172), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133649] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7174), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133674] = 6, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4083), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133697] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7176), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [133722] = 6, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4252), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133745] = 6, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4253), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133768] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3190), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [133783] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3184), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [133798] = 6, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3998), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [133821] = 5, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(7180), 1, + anon_sym_DOT, + STATE(3966), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1665), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [133842] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7182), 1, + sym_identifier, + ACTIONS(7184), 1, + sym_this, + STATE(2830), 1, + sym__type_query_member_expression, + STATE(2831), 1, + sym__type_query_subscript_expression, + STATE(2872), 1, + sym__type_query_call_expression, + STATE(2987), 1, + sym__type_query_instantiation_expression, + STATE(4600), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133871] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7186), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [133892] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7188), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [133913] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7190), 1, + sym_identifier, + ACTIONS(7192), 1, + sym_this, + STATE(2887), 1, + sym__type_query_member_expression, + STATE(2888), 1, + sym__type_query_subscript_expression, + STATE(3082), 1, + sym__type_query_call_expression, + STATE(3205), 1, + sym__type_query_instantiation_expression, + STATE(4497), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133942] = 3, + ACTIONS(6764), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4046), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [133959] = 5, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6788), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [133980] = 6, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4089), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134003] = 6, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4090), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134026] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7194), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134051] = 6, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4254), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134074] = 5, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(7196), 1, + anon_sym_DOT, + STATE(3966), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1665), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134095] = 7, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7198), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4290), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134120] = 9, + ACTIONS(7200), 1, + sym_identifier, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(7204), 1, + anon_sym_GT, + ACTIONS(7206), 1, + sym_jsx_identifier, + ACTIONS(7208), 1, + anon_sym_SLASH_GT, + STATE(3155), 1, + sym_nested_identifier, + STATE(3420), 1, + sym_jsx_namespace_name, + STATE(4771), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134149] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7210), 1, + sym_identifier, + ACTIONS(7212), 1, + sym_this, + STATE(2906), 1, + sym__type_query_member_expression, + STATE(2907), 1, + sym__type_query_subscript_expression, + STATE(3227), 1, + sym__type_query_call_expression, + STATE(3339), 1, + sym__type_query_instantiation_expression, + STATE(4604), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134178] = 7, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7214), 1, + anon_sym_enum, + STATE(4473), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134203] = 7, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7216), 1, + sym_escape_sequence, + ACTIONS(7218), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3893), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134228] = 6, + ACTIONS(6458), 1, + anon_sym_COLON, + ACTIONS(7154), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7156), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7158), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4335), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134251] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7220), 1, + sym_identifier, + ACTIONS(7222), 1, + sym_this, + STATE(1465), 1, + sym__type_query_subscript_expression, + STATE(1466), 1, + sym__type_query_member_expression, + STATE(1535), 1, + sym__type_query_call_expression, + STATE(1536), 1, + sym__type_query_instantiation_expression, + STATE(4530), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134280] = 7, + ACTIONS(7164), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7166), 1, + sym__template_chars, + ACTIONS(7216), 1, + sym_escape_sequence, + ACTIONS(7224), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3893), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134305] = 9, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(7204), 1, + anon_sym_GT, + ACTIONS(7226), 1, + sym_identifier, + ACTIONS(7228), 1, + sym_jsx_identifier, + ACTIONS(7230), 1, + anon_sym_SLASH_GT, + STATE(3140), 1, + sym_nested_identifier, + STATE(3326), 1, + sym_jsx_namespace_name, + STATE(4771), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134334] = 9, + ACTIONS(1499), 1, + anon_sym_import, + ACTIONS(7184), 1, + sym_this, + ACTIONS(7232), 1, + sym_identifier, + STATE(2872), 1, + sym__type_query_call_expression, + STATE(2987), 1, + sym__type_query_instantiation_expression, + STATE(3142), 1, + sym__type_query_subscript_expression, + STATE(3151), 1, + sym__type_query_member_expression, + STATE(4568), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134363] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1707), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [134378] = 7, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7234), 1, + anon_sym_enum, + STATE(4602), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134403] = 3, + ACTIONS(6764), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134420] = 3, + ACTIONS(7236), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134437] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6744), 1, + anon_sym_PIPE, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7238), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134458] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3979), 1, + sym_type_annotation, + STATE(4743), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134480] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4431), 1, + sym_type_annotation, + STATE(5186), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134502] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4432), 1, + sym_type_annotation, + STATE(5188), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134524] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + sym_identifier, + STATE(4601), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134546] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5566), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7242), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134564] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4438), 1, + sym_type_annotation, + STATE(5199), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134586] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4935), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [134600] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4443), 1, + sym_type_annotation, + STATE(5204), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134622] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4174), 1, + sym_type_annotation, + STATE(5223), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134644] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4033), 1, + sym_type_annotation, + STATE(5175), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7244), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134666] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4248), 1, + sym_type_annotation, + STATE(4686), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134688] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2096), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5550), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134714] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4403), 1, + sym_type_annotation, + STATE(5045), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6736), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134736] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4937), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [134750] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4933), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [134764] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7246), 1, + sym_identifier, + ACTIONS(7248), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5400), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134790] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [134810] = 3, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4346), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134826] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4138), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [134846] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4227), 1, + sym_type_annotation, + STATE(4669), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134868] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4142), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [134888] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5445), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134906] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4159), 1, + sym_type_annotation, + STATE(4648), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134928] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + sym_identifier, + STATE(5161), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134950] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + sym_identifier, + STATE(4602), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134972] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4101), 1, + sym_type_annotation, + STATE(4889), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134994] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4054), 1, + sym_type_annotation, + STATE(4839), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6703), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135016] = 4, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4224), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7258), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135034] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4029), 1, + sym_type_annotation, + STATE(4849), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7260), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135056] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7262), 1, + sym_identifier, + ACTIONS(7264), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5520), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135082] = 5, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACE, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [135102] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + STATE(1611), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135128] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5227), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7266), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135146] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135166] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4258), 1, + sym_type_annotation, + STATE(5011), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6738), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135188] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5574), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135206] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5352), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7268), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135224] = 6, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(4475), 1, + sym_constraint, + STATE(5346), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7270), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(7272), 2, + anon_sym_COLON, + anon_sym_extends, + [135246] = 5, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(7274), 1, + sym_identifier, + ACTIONS(7276), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7278), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [135266] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135286] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5354), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7280), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135304] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5229), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7282), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135322] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4122), 1, + sym_type_annotation, + STATE(4908), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135344] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6983), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [135358] = 4, + ACTIONS(7178), 1, + anon_sym_LBRACE, + STATE(3966), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1665), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135376] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7284), 1, + sym_identifier, + ACTIONS(7286), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5525), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135402] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4123), 1, + sym_type_annotation, + STATE(4910), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135424] = 4, + ACTIONS(7288), 1, + anon_sym_COMMA, + STATE(3568), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4780), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [135442] = 4, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4457), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7291), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135460] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7060), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [135474] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4420), 1, + sym_type_annotation, + STATE(4736), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135496] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4372), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [135516] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4142), 1, + sym_type_annotation, + STATE(4645), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135538] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(7293), 1, + anon_sym_DOT, + STATE(1793), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135564] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4030), 1, + sym_type_annotation, + STATE(4852), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7260), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135586] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5393), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7295), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135604] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5502), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7282), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135622] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3978), 1, + sym_type_annotation, + STATE(4741), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135644] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4246), 1, + sym_type_annotation, + STATE(4684), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135666] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3980), 1, + sym_type_annotation, + STATE(4748), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135688] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3981), 1, + sym_type_annotation, + STATE(4752), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135710] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5503), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7266), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135728] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1767), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [135742] = 8, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2550), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5332), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135768] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5400), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135794] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1797), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [135808] = 8, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(1624), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5267), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135834] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5230), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7268), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135852] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(7301), 1, + anon_sym_DOT, + STATE(2537), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135878] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(825), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5407), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135904] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3989), 1, + sym_type_annotation, + STATE(4764), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135926] = 8, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(6332), 1, + anon_sym_LT, + STATE(1866), 1, + sym_arguments, + STATE(3242), 1, + sym_type_arguments, + STATE(5549), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [135952] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4271), 1, + sym_type_annotation, + STATE(5026), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135974] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5243), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7280), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [135992] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5554), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136018] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2349), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5318), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136044] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4211), 1, + sym_type_annotation, + STATE(4657), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136066] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5305), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7303), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [136084] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4275), 1, + sym_type_annotation, + STATE(5034), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136106] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6895), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [136120] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7305), 1, + sym_identifier, + STATE(4554), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3408), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136142] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2316), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5259), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136168] = 3, + ACTIONS(7307), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136184] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4279), 1, + sym_type_annotation, + STATE(5039), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136206] = 8, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(7310), 1, + sym_identifier, + ACTIONS(7312), 1, + anon_sym_DOT, + STATE(3494), 1, + sym_nested_identifier, + STATE(3565), 1, + sym_string, + STATE(4195), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136232] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(3990), 1, + sym_type_annotation, + STATE(4767), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136254] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4285), 1, + sym_type_annotation, + STATE(5042), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136276] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7314), 1, + sym_identifier, + STATE(4473), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3378), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136298] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4166), 1, + sym_type_annotation, + STATE(4900), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6679), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136320] = 8, + ACTIONS(1017), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, + anon_sym_LBRACE, + ACTIONS(7316), 1, + anon_sym_LT, + ACTIONS(7318), 1, + anon_sym_extends, + STATE(4041), 1, + sym_object_type, + STATE(4249), 1, + sym_type_parameters, + STATE(4942), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136346] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4186), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5431), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136372] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4292), 1, + sym_type_annotation, + STATE(5052), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136394] = 6, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1649), 1, + sym_arguments, + STATE(5300), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7320), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [136416] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4293), 1, + sym_type_annotation, + STATE(5053), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136438] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4184), 1, + sym_type_annotation, + STATE(4960), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136460] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136474] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4411), 1, + sym_type_annotation, + STATE(4807), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136496] = 8, + ACTIONS(6909), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(238), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5505), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136522] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4338), 1, + sym_type_annotation, + STATE(4722), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136544] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7322), 1, + sym_identifier, + ACTIONS(7324), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5525), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136570] = 6, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(4603), 1, + sym_constraint, + STATE(5495), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6307), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(7272), 2, + anon_sym_COLON, + anon_sym_extends, + [136592] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4026), 1, + sym_type_annotation, + STATE(4814), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7260), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136614] = 4, + ACTIONS(4887), 1, + anon_sym_COMMA, + STATE(3568), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7326), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [136632] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4304), 1, + sym_type_annotation, + STATE(5061), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136654] = 3, + ACTIONS(7328), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136670] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4056), 1, + sym_type_annotation, + STATE(5216), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136692] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7331), 1, + sym_identifier, + ACTIONS(7333), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5400), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136718] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4362), 1, + sym_type_annotation, + STATE(4976), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136740] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4383), 1, + sym_type_annotation, + STATE(4994), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136762] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(790), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5384), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136788] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7335), 1, + sym_identifier, + ACTIONS(7337), 1, + anon_sym_DOT, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, + STATE(4482), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136814] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4305), 1, + sym_type_annotation, + STATE(5064), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136836] = 8, + ACTIONS(7339), 1, + anon_sym_LBRACE, + ACTIONS(7341), 1, + anon_sym_COMMA, + ACTIONS(7343), 1, + anon_sym_DOT, + ACTIONS(7345), 1, + anon_sym_LT, + ACTIONS(7347), 1, + anon_sym_LBRACE_PIPE, + STATE(4468), 1, + aux_sym_extends_type_clause_repeat1, + STATE(4630), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [136862] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4117), 1, + sym_type_annotation, + STATE(5128), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136884] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4130), 1, + sym_type_annotation, + STATE(5145), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136906] = 3, + ACTIONS(7349), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3584), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [136922] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4071), 1, + sym_type_annotation, + STATE(5218), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136944] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4144), 1, + sym_type_annotation, + STATE(5217), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136966] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4146), 1, + sym_type_annotation, + STATE(4660), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136988] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7351), 1, + sym_identifier, + ACTIONS(7353), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5525), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137014] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(7355), 1, + anon_sym_DOT, + STATE(1503), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137040] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4152), 1, + sym_type_annotation, + STATE(4725), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137062] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4164), 1, + sym_type_annotation, + STATE(4738), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137084] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5552), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [137098] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4323), 1, + sym_type_annotation, + STATE(5076), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137120] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4328), 1, + sym_type_annotation, + STATE(5080), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137142] = 8, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(1968), 1, + sym_arguments, + STATE(3481), 1, + sym_type_arguments, + STATE(5415), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137168] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4329), 1, + sym_type_annotation, + STATE(5082), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137190] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4384), 1, + sym_type_annotation, + STATE(5069), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137212] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + sym_identifier, + STATE(4554), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [137234] = 3, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4230), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [137250] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4242), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [137270] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4141), 1, + sym_type_annotation, + STATE(4929), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137292] = 8, + ACTIONS(6909), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(250), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5394), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137318] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4330), 1, + sym_type_annotation, + STATE(5084), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137340] = 8, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7337), 1, + anon_sym_DOT, + ACTIONS(7357), 1, + sym_identifier, + STATE(752), 1, + sym_nested_identifier, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137366] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(780), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5473), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137392] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7359), 1, + sym_identifier, + ACTIONS(7361), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5268), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137418] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(1801), 1, + sym_arguments, + STATE(3171), 1, + sym_type_arguments, + STATE(5549), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137444] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2118), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5321), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137470] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4197), 1, + sym_type_annotation, + STATE(4883), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137492] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4219), 1, + sym_type_annotation, + STATE(4899), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137514] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2159), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5250), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137540] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7116), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [137554] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4028), 1, + sym_type_annotation, + STATE(4820), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7260), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137576] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4075), 1, + sym_type_annotation, + STATE(4982), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137598] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4103), 1, + sym_type_annotation, + STATE(4992), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137620] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7363), 1, + anon_sym_COLON, + ACTIONS(7365), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5312), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137646] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4113), 1, + sym_type_annotation, + STATE(5048), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137668] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4116), 1, + sym_type_annotation, + STATE(5066), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137690] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4261), 1, + sym_type_annotation, + STATE(5083), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137712] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4310), 1, + sym_type_annotation, + STATE(5091), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137734] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7367), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [137748] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4052), 1, + sym_type_annotation, + STATE(5136), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137770] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4064), 1, + sym_type_annotation, + STATE(5153), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137792] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4066), 1, + sym_type_annotation, + STATE(5187), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137814] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4067), 1, + sym_type_annotation, + STATE(5190), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137836] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4074), 1, + sym_type_annotation, + STATE(4644), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137858] = 4, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5607), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [137876] = 7, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(6754), 1, + sym_identifier, + ACTIONS(6813), 1, + anon_sym_type, + STATE(5449), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5705), 2, + sym__module_export_name, + sym_string, + [137900] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2114), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5320), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137926] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4120), 1, + sym_type_annotation, + STATE(4729), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137948] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4350), 1, + sym_type_annotation, + STATE(4724), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [137970] = 6, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7240), 1, + sym_identifier, + STATE(4473), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3716), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [137992] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4132), 1, + sym_type_annotation, + STATE(4751), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138014] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4143), 1, + sym_type_annotation, + STATE(4765), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138036] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4344), 1, + sym_type_annotation, + STATE(5101), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138058] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4345), 1, + sym_type_annotation, + STATE(5103), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138080] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4207), 1, + sym_type_annotation, + STATE(4651), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138102] = 8, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2394), 1, + sym_arguments, + STATE(3481), 1, + sym_type_arguments, + STATE(5415), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138128] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4094), 1, + sym_type_annotation, + STATE(4880), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138150] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4160), 1, + sym_type_annotation, + STATE(4819), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138172] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4162), 1, + sym_type_annotation, + STATE(4850), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138194] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_DOT, + STATE(2044), 1, + sym_arguments, + STATE(5415), 1, + sym_optional_chain, + STATE(5426), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138220] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4353), 1, + sym_type_annotation, + STATE(5112), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138242] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4354), 1, + sym_type_annotation, + STATE(5113), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138264] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4202), 1, + sym_type_annotation, + STATE(4914), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138286] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4205), 1, + sym_type_annotation, + STATE(4921), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138308] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4355), 1, + sym_type_annotation, + STATE(5115), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138330] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4356), 1, + sym_type_annotation, + STATE(5117), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138352] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4099), 1, + sym_type_annotation, + STATE(4626), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138374] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4221), 1, + sym_type_annotation, + STATE(4666), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138396] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7371), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [138410] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4108), 1, + sym_type_annotation, + STATE(4628), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138432] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4360), 1, + sym_type_annotation, + STATE(5126), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138454] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4289), 1, + sym_type_annotation, + STATE(4707), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138476] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5422), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7373), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138494] = 3, + ACTIONS(6784), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4042), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [138510] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5417), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7375), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138528] = 7, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(7377), 1, + anon_sym_EQ, + ACTIONS(7381), 1, + anon_sym_QMARK, + STATE(4567), 1, + sym_type_annotation, + STATE(5246), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7379), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [138552] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5496), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7383), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138570] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5257), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7385), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138588] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7050), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [138602] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4371), 1, + sym_type_annotation, + STATE(5137), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138624] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5419), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7242), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138642] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4233), 1, + sym_type_annotation, + STATE(4985), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6778), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138664] = 3, + ACTIONS(7387), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4024), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [138680] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(7389), 1, + anon_sym_DOT, + STATE(2045), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138706] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5558), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7375), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138724] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(4506), 1, + anon_sym_DOT, + STATE(2282), 1, + sym_arguments, + STATE(5415), 1, + sym_optional_chain, + STATE(5426), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138750] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(7293), 1, + anon_sym_DOT, + STATE(1503), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138776] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5364), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7383), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [138794] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4020), 1, + sym_type_annotation, + STATE(4624), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6732), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138816] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(7391), 1, + anon_sym_DOT, + STATE(1793), 1, + sym_arguments, + STATE(5549), 1, + sym_optional_chain, + STATE(5551), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138842] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4236), 1, + sym_type_annotation, + STATE(4949), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138864] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4287), 1, + sym_type_annotation, + STATE(4968), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138886] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4301), 1, + sym_type_annotation, + STATE(4974), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138908] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4306), 1, + sym_type_annotation, + STATE(4980), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138930] = 8, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2512), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5293), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [138956] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4396), 1, + sym_type_annotation, + STATE(4996), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138978] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4397), 1, + sym_type_annotation, + STATE(4999), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139000] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7365), 1, + anon_sym_QMARK, + ACTIONS(7393), 1, + anon_sym_COLON, + STATE(3954), 1, + sym_formal_parameters, + STATE(5312), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139026] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4412), 1, + sym_type_annotation, + STATE(4734), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139048] = 6, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2131), 1, + sym_arguments, + STATE(5436), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7320), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [139070] = 8, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(1685), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5351), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139096] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4398), 1, + sym_type_annotation, + STATE(5004), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139118] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4399), 1, + sym_type_annotation, + STATE(5007), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139140] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7395), 1, + sym_identifier, + ACTIONS(7397), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5525), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139166] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4177), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5355), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139192] = 8, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7399), 1, + sym_identifier, + ACTIONS(7401), 1, + anon_sym_STAR, + STATE(3954), 1, + sym_formal_parameters, + STATE(5400), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139218] = 8, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(7403), 1, + anon_sym_DOT, + STATE(2393), 1, + sym_arguments, + STATE(5415), 1, + sym_optional_chain, + STATE(5426), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139244] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7405), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [139258] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2187), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5255), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139284] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4402), 1, + sym_type_annotation, + STATE(5035), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139306] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4138), 1, + sym_type_annotation, + STATE(4924), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139328] = 8, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(1687), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5366), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139354] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4414), 1, + sym_type_annotation, + STATE(5169), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139376] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4139), 1, + sym_type_annotation, + STATE(4925), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139398] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4415), 1, + sym_type_annotation, + STATE(5171), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139420] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5491), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7407), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139438] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2539), 1, + sym_arguments, + STATE(3171), 1, + sym_type_arguments, + STATE(5549), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139464] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7409), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [139478] = 4, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4192), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7411), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139496] = 4, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4288), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7413), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139514] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4426), 1, + sym_type_annotation, + STATE(5180), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139536] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4278), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5392), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139562] = 8, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(4420), 1, + anon_sym_QMARK_DOT, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(1519), 1, + sym_arguments, + STATE(3171), 1, + sym_type_arguments, + STATE(5549), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139588] = 3, + ACTIONS(6784), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4046), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [139604] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5498), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7415), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [139622] = 8, + ACTIONS(6768), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(2092), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5405), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139648] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4428), 1, + sym_type_annotation, + STATE(5181), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6711), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139670] = 8, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4367), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5410), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139696] = 8, + ACTIONS(6798), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + anon_sym_extends, + ACTIONS(6913), 1, + anon_sym_implements, + STATE(1699), 1, + sym_class_body, + STATE(5098), 1, + sym_extends_clause, + STATE(5416), 1, + sym_class_heritage, + STATE(5745), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139722] = 8, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + ACTIONS(7316), 1, + anon_sym_LT, + ACTIONS(7318), 1, + anon_sym_extends, + STATE(810), 1, + sym_object_type, + STATE(4267), 1, + sym_type_parameters, + STATE(4956), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139748] = 6, + ACTIONS(6450), 1, + anon_sym_EQ, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(4140), 1, + sym_type_annotation, + STATE(4928), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6677), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139770] = 3, + ACTIONS(7417), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4250), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_QMARK, + [139786] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(7419), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3786), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139809] = 5, + ACTIONS(7421), 1, + anon_sym_BQUOTE, + ACTIONS(7423), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7216), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3893), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [139828] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7425), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4239), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139851] = 4, + STATE(3801), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3712), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7427), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139868] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7429), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4000), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139891] = 5, + ACTIONS(7431), 1, + anon_sym_default, + ACTIONS(7433), 1, + anon_sym_RBRACE, + ACTIONS(7435), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3894), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [139910] = 3, + ACTIONS(4374), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4376), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [139925] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3712), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7427), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139942] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7437), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5423), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139965] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7439), 1, + anon_sym_COMMA, + ACTIONS(7441), 1, + anon_sym_GT, + STATE(5221), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [139988] = 5, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(7443), 1, + sym_identifier, + ACTIONS(7445), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4535), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140007] = 4, + STATE(3781), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7449), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7447), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140024] = 5, + ACTIONS(3370), 1, + anon_sym_LBRACE, + ACTIONS(3372), 1, + anon_sym_LBRACK, + ACTIONS(7451), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4943), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140043] = 4, + STATE(3782), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3734), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140060] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3734), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7453), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140077] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3738), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140094] = 6, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(7377), 1, + anon_sym_EQ, + STATE(4498), 1, + sym_type_annotation, + STATE(5373), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7457), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [140115] = 7, + ACTIONS(7204), 1, + anon_sym_GT, + ACTIONS(7459), 1, + sym_identifier, + ACTIONS(7461), 1, + sym_jsx_identifier, + ACTIONS(7463), 1, + anon_sym_SLASH_GT, + STATE(3162), 1, + sym_nested_identifier, + STATE(3372), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140138] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2622), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7407), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140155] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2623), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7415), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140172] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7467), 1, + anon_sym_COMMA, + ACTIONS(7469), 1, + anon_sym_GT, + STATE(4659), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140195] = 5, + ACTIONS(3238), 1, + anon_sym_LBRACE, + ACTIONS(7445), 1, + anon_sym_LBRACK, + ACTIONS(7471), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4971), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140214] = 4, + STATE(3793), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7475), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7473), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140231] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7479), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7477), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140246] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(7481), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3910), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140269] = 4, + STATE(3794), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7483), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140286] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3690), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7483), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140303] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3692), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7485), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140320] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4725), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4727), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140335] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4462), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4464), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140350] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7487), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140363] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7489), 1, + anon_sym_COMMA, + ACTIONS(7491), 1, + anon_sym_GT, + STATE(4692), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140386] = 4, + STATE(3802), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7495), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7493), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140403] = 4, + STATE(3804), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3696), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140420] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3702), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7499), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140437] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3696), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7497), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140454] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7501), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4191), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140477] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3698), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7503), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140494] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7507), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7505), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140509] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7509), 1, + anon_sym_COMMA, + ACTIONS(7511), 1, + anon_sym_GT, + STATE(4721), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140532] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7516), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7513), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140549] = 4, + STATE(3811), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7520), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7518), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140566] = 4, + STATE(3812), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3704), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140583] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7524), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_GT, + [140602] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3704), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7522), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140619] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3706), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140636] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7528), 1, + anon_sym_COMMA, + ACTIONS(7530), 1, + anon_sym_GT, + STATE(4739), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140659] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4512), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4514), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140674] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4516), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4518), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140689] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4557), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4559), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140704] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4561), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4563), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [140719] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7532), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140732] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7534), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140745] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7536), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [140758] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7538), 1, + anon_sym_export, + ACTIONS(7540), 1, + anon_sym_class, + ACTIONS(7542), 1, + anon_sym_abstract, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140781] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6792), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [140798] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7357), 1, + sym_identifier, + STATE(752), 1, + sym_nested_identifier, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140821] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7546), 1, + sym_html_character_reference, + ACTIONS(7548), 1, + anon_sym_DQUOTE, + ACTIONS(7550), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(7552), 1, + anon_sym_AMP2, + STATE(3900), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [140844] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7548), 1, + anon_sym_SQUOTE, + ACTIONS(7554), 1, + sym_html_character_reference, + ACTIONS(7556), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(7558), 1, + anon_sym_AMP2, + STATE(3901), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [140867] = 6, + ACTIONS(7343), 1, + anon_sym_DOT, + ACTIONS(7345), 1, + anon_sym_LT, + ACTIONS(7560), 1, + anon_sym_LBRACE, + STATE(4630), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7562), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [140888] = 3, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4146), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [140903] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7564), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5313), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140926] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7566), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5271), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140949] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7568), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4046), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140972] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7570), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5357), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140995] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2642), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7295), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141012] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7367), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [141025] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7572), 1, + anon_sym_LBRACE, + ACTIONS(7574), 1, + anon_sym_COMMA, + STATE(4966), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141048] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2624), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7373), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141065] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7576), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5234), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141088] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7580), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7578), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141103] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7582), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5365), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141126] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7584), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5334), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141149] = 3, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4230), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [141164] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4242), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141183] = 3, + ACTIONS(7592), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4250), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + [141198] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4623), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141213] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4625), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4627), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141228] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4623), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141243] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4629), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4631), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141258] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4633), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4635), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141273] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4623), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141288] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7375), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141305] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7594), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5413), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141328] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2616), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7242), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141345] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(7596), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3905), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141368] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7598), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5423), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141391] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7375), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141408] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4665), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4667), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141423] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4669), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4671), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141438] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7600), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5435), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141461] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5443), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141484] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2645), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7242), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141501] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7604), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5448), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141524] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7552), 1, + anon_sym_AMP2, + ACTIONS(7606), 1, + sym_html_character_reference, + ACTIONS(7608), 1, + anon_sym_DQUOTE, + ACTIONS(7610), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(3824), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [141547] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7558), 1, + anon_sym_AMP2, + ACTIONS(7608), 1, + anon_sym_SQUOTE, + ACTIONS(7612), 1, + sym_html_character_reference, + ACTIONS(7614), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(3825), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [141570] = 4, + STATE(3774), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7618), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7616), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141587] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7620), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(5025), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141610] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7624), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7622), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141625] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2338), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [141638] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [141651] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4685), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4687), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141666] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4689), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(4691), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141681] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7628), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7626), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141696] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2342), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [141709] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7405), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [141722] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2326), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [141735] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7630), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5298), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141758] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7634), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7632), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [141773] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2330), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [141786] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7636), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5241), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141809] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7638), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5317), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141832] = 6, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(7642), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7640), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [141853] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5882), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3786), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [141868] = 3, + ACTIONS(4106), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4108), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [141883] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7542), 1, + anon_sym_abstract, + ACTIONS(7644), 1, + anon_sym_export, + ACTIONS(7646), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141906] = 5, + ACTIONS(7423), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7648), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7160), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3895), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [141925] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2620), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7383), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141942] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(7310), 1, + sym_identifier, + STATE(3494), 1, + sym_nested_identifier, + STATE(3565), 1, + sym_string, + STATE(4385), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141965] = 7, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + ACTIONS(7310), 1, + sym_identifier, + STATE(3494), 1, + sym_nested_identifier, + STATE(3565), 1, + sym_string, + STATE(4195), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141988] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7652), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7650), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [142003] = 4, + ACTIONS(7654), 1, + sym_identifier, + ACTIONS(7656), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7658), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [142020] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7660), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4449), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142043] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7664), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7662), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [142058] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7409), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [142071] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7666), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5317), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142094] = 5, + ACTIONS(7423), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7670), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7668), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3899), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142113] = 5, + ACTIONS(7672), 1, + anon_sym_default, + ACTIONS(7675), 1, + anon_sym_RBRACE, + ACTIONS(7677), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3894), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142132] = 5, + ACTIONS(7423), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7680), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7668), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3899), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142151] = 7, + ACTIONS(7204), 1, + anon_sym_GT, + ACTIONS(7682), 1, + sym_identifier, + ACTIONS(7684), 1, + sym_jsx_identifier, + ACTIONS(7686), 1, + anon_sym_SLASH_GT, + STATE(3175), 1, + sym_nested_identifier, + STATE(3296), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142174] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7357), 1, + sym_identifier, + STATE(752), 1, + sym_nested_identifier, + STATE(759), 1, + sym_string, + STATE(850), 1, + sym__module, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142197] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7688), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5576), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142220] = 5, + ACTIONS(7693), 1, + anon_sym_BQUOTE, + ACTIONS(7695), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7690), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3899), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142239] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7698), 1, + sym_html_character_reference, + ACTIONS(7701), 1, + anon_sym_DQUOTE, + ACTIONS(7703), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(7706), 1, + anon_sym_AMP2, + STATE(3900), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat1, + [142262] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7709), 1, + sym_html_character_reference, + ACTIONS(7712), 1, + anon_sym_SQUOTE, + ACTIONS(7714), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(7717), 1, + anon_sym_AMP2, + STATE(3901), 2, + sym__jsx_string_lone_ampersand, + aux_sym__jsx_string_repeat2, + [142285] = 7, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(7720), 1, + anon_sym_RPAREN, + ACTIONS(7722), 1, + anon_sym_DOT, + STATE(1273), 1, + sym_arguments, + STATE(5286), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142308] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7724), 1, + anon_sym_QMARK, + STATE(3954), 1, + sym_formal_parameters, + STATE(5454), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142331] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2617), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7268), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142348] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2618), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7280), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142365] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7726), 1, + anon_sym_COMMA, + ACTIONS(7728), 1, + anon_sym_GT, + STATE(4990), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142388] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(7730), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3951), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142411] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2657), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7268), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142428] = 7, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3519), 1, + anon_sym_LT, + ACTIONS(7722), 1, + anon_sym_DOT, + ACTIONS(7732), 1, + anon_sym_RPAREN, + STATE(1273), 1, + sym_arguments, + STATE(5286), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142451] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2602), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142468] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7280), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142485] = 3, + ACTIONS(6556), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6558), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [142500] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7335), 1, + sym_identifier, + STATE(759), 1, + sym_string, + STATE(850), 1, + sym__module, + STATE(4482), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142523] = 7, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7335), 1, + sym_identifier, + STATE(759), 1, + sym_string, + STATE(865), 1, + sym__module, + STATE(4482), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142546] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(7734), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3930), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142569] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7736), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5423), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142592] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7738), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3556), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142615] = 4, + STATE(3927), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7742), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7740), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142632] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7746), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7744), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [142647] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7748), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5317), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142670] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2609), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7266), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142687] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2619), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7383), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142704] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2613), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142721] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7750), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3562), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142744] = 4, + STATE(3937), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3726), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7752), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142761] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7754), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [142780] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3726), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7752), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142797] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4318), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [142816] = 3, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4346), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [142831] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2610), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7282), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142848] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7758), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7756), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [142863] = 5, + ACTIONS(7431), 1, + anon_sym_default, + ACTIONS(7435), 1, + anon_sym_case, + ACTIONS(7760), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3772), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [142882] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4138), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [142901] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4142), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [142920] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + ACTIONS(7762), 1, + anon_sym_QMARK, + STATE(3389), 1, + sym_formal_parameters, + STATE(3851), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142943] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7764), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3715), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142966] = 4, + STATE(3807), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3728), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7766), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [142983] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7768), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(5133), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143006] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2631), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7282), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143023] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4408), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [143042] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4260), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [143061] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7770), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3561), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143084] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2632), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7266), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143101] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7772), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3712), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143124] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7774), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(3759), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143147] = 5, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4372), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [143166] = 7, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(7776), 1, + anon_sym_COMMA, + ACTIONS(7778), 1, + anon_sym_GT, + STATE(5162), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143189] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7746), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7744), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [143204] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7782), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7780), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [143219] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7303), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143236] = 4, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2621), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7385), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143253] = 7, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7540), 1, + anon_sym_class, + ACTIONS(7542), 1, + anon_sym_abstract, + ACTIONS(7784), 1, + anon_sym_export, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143276] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7788), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7786), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [143291] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6803), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [143308] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7746), 2, + anon_sym_AMP, + anon_sym_LT, + ACTIONS(7744), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [143323] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7371), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [143336] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7790), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5423), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143359] = 7, + ACTIONS(7341), 1, + anon_sym_COMMA, + ACTIONS(7345), 1, + anon_sym_LT, + ACTIONS(7792), 1, + anon_sym_LBRACE, + ACTIONS(7794), 1, + anon_sym_LBRACE_PIPE, + STATE(4607), 1, + aux_sym_extends_type_clause_repeat1, + STATE(4635), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143382] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + ACTIONS(7796), 1, + sym_identifier, + STATE(3954), 1, + sym_formal_parameters, + STATE(5317), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143405] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7798), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4871), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143428] = 7, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + ACTIONS(7800), 1, + anon_sym_QMARK, + STATE(3274), 1, + sym_formal_parameters, + STATE(4154), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143451] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2334), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [143464] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4740), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143480] = 6, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(7804), 1, + anon_sym_SEMI, + ACTIONS(7806), 1, + sym__automatic_semicolon, + ACTIONS(7808), 1, + sym__function_signature_automatic_semicolon, + STATE(762), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143500] = 4, + ACTIONS(1797), 1, + anon_sym_DOT, + ACTIONS(4302), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4304), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [143516] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1689), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143528] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2728), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143540] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1693), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143552] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7810), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143564] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7812), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143576] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143588] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5197), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143604] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7816), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [143622] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5267), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [143634] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143646] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143658] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143670] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4863), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143686] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4864), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143702] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4869), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143718] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4870), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143734] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4240), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143754] = 3, + ACTIONS(7822), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7824), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [143768] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7826), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [143786] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5497), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143806] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7828), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [143824] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(7830), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5848), 2, + sym__module_export_name, + sym_string, + [143842] = 5, + ACTIONS(7345), 1, + anon_sym_LT, + ACTIONS(7832), 1, + anon_sym_LBRACE, + STATE(4635), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7834), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [143860] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4872), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143876] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4873), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143892] = 4, + ACTIONS(6346), 1, + anon_sym_DOT, + ACTIONS(7836), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [143908] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4693), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143924] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7540), 1, + anon_sym_class, + ACTIONS(7542), 1, + anon_sym_abstract, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143944] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4281), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143964] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7838), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143976] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7383), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [143988] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5228), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144008] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7840), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144020] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(4040), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144040] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7385), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144052] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4927), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7842), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144068] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5316), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144088] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4661), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144104] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4935), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [144116] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7383), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144128] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2750), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144140] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4298), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144160] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7542), 1, + anon_sym_abstract, + ACTIONS(7844), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144180] = 5, + ACTIONS(7846), 1, + sym_identifier, + ACTIONS(7848), 1, + anon_sym_LPAREN, + STATE(1217), 1, + sym_decorator_member_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1293), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [144198] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5337), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144218] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2754), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144230] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7542), 1, + anon_sym_abstract, + ACTIONS(7646), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144250] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5353), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144270] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2758), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144282] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4930), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7842), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144298] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(7850), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144314] = 5, + ACTIONS(3084), 1, + anon_sym_DQUOTE, + ACTIONS(3086), 1, + anon_sym_SQUOTE, + ACTIONS(7853), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5002), 2, + sym__module_export_name, + sym_string, + [144332] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7855), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144344] = 4, + ACTIONS(3530), 1, + anon_sym_COLON, + STATE(5530), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + [144360] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4931), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7857), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144376] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4322), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144396] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4932), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7857), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144412] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5363), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144432] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5369), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144452] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5375), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144472] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4885), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7859), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144488] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5059), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7861), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144504] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4892), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7859), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144520] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4893), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7859), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144536] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4895), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7859), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144552] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(7863), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [144568] = 5, + ACTIONS(7866), 1, + anon_sym_BQUOTE, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7870), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4290), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [144586] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4805), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7872), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144602] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5391), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144622] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5271), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [144634] = 6, + ACTIONS(7874), 1, + sym_identifier, + ACTIONS(7876), 1, + anon_sym_GT, + ACTIONS(7878), 1, + sym_jsx_identifier, + STATE(5533), 1, + sym_nested_identifier, + STATE(5926), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144654] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(3835), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144674] = 6, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_SEMI, + ACTIONS(7882), 1, + sym__automatic_semicolon, + ACTIONS(7884), 1, + sym__function_signature_automatic_semicolon, + STATE(2104), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144694] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2590), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144706] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7407), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144718] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2594), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144730] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5412), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144750] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2598), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144762] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5414), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144782] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(4047), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144802] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7415), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144814] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7373), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144826] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5248), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144846] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(3904), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144866] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7886), 1, + anon_sym_BQUOTE, + ACTIONS(7888), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4098), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [144884] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4675), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144900] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4695), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144916] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5271), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [144928] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5010), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7890), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144944] = 4, + ACTIONS(6376), 1, + anon_sym_LBRACK, + ACTIONS(7892), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [144960] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4809), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144976] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5433), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144996] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5271), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145008] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(3964), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145028] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1771), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145040] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5501), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145060] = 6, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(7894), 1, + anon_sym_SEMI, + ACTIONS(7896), 1, + sym__automatic_semicolon, + ACTIONS(7898), 1, + sym__function_signature_automatic_semicolon, + STATE(764), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145080] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4991), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145092] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4700), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145108] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5421), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145128] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4702), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145144] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4703), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145160] = 4, + STATE(5428), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7902), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [145176] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2762), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145188] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5442), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145208] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4810), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145224] = 4, + STATE(5437), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7904), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [145240] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1771), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145252] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4704), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145268] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4664), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145284] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5447), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145304] = 5, + ACTIONS(7906), 1, + anon_sym_BQUOTE, + ACTIONS(7908), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7911), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145322] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7914), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [145340] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4894), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7842), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145356] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5014), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7916), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145372] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5450), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145392] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4706), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145408] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7918), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145420] = 3, + ACTIONS(7920), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7922), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [145434] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(5020), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145454] = 3, + ACTIONS(7924), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7926), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [145468] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5565), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [145480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7928), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145492] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7930), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145504] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7932), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145516] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5570), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145536] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(7934), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [145552] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5029), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145568] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5030), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145584] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5031), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145600] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2826), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145612] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5038), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145628] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7941), 1, + anon_sym_BQUOTE, + ACTIONS(7943), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [145646] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4811), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145662] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5044), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145678] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5046), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145694] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5049), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145710] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4665), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145726] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5390), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145746] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2826), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145758] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5054), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145774] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2826), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145786] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4813), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145802] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4613), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145818] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7945), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [145830] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7295), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145842] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7947), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145854] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4676), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145870] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5065), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145886] = 6, + ACTIONS(7949), 1, + sym_identifier, + ACTIONS(7951), 1, + anon_sym_GT, + ACTIONS(7953), 1, + sym_jsx_identifier, + STATE(5542), 1, + sym_nested_identifier, + STATE(5930), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [145906] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4681), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145922] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4615), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145938] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5081), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145954] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4713), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145970] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4716), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145986] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5085), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146002] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5086), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146018] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5087), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146034] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4717), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146050] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2830), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146062] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2834), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146074] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2838), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146086] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2842), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146098] = 5, + ACTIONS(7955), 1, + anon_sym_SEMI, + ACTIONS(7957), 1, + sym__automatic_semicolon, + STATE(5477), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + [146116] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4616), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146132] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5105), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146148] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4718), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146164] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4822), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7959), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146180] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5114), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146196] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4038), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146216] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4231), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146236] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5119), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146252] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5120), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146268] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5121), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146284] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5122), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146300] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5123), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146316] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4825), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146332] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4720), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146348] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4617), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146364] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7961), 1, + anon_sym_class, + ACTIONS(7963), 1, + anon_sym_abstract, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146384] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4618), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146400] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7943), 1, + sym__template_chars, + ACTIONS(7965), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [146418] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4342), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146438] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5130), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146454] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5567), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146474] = 3, + ACTIONS(7479), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7477), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [146488] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4619), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146504] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4726), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146520] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7280), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146532] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5140), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146548] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5225), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146568] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5331), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146588] = 6, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(7894), 1, + anon_sym_SEMI, + ACTIONS(7896), 1, + sym__automatic_semicolon, + ACTIONS(7898), 1, + sym__function_signature_automatic_semicolon, + STATE(252), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146608] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4826), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146624] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4727), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146640] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4974), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146652] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4728), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146668] = 5, + ACTIONS(7967), 1, + sym_identifier, + ACTIONS(7969), 1, + anon_sym_LPAREN, + STATE(2661), 1, + sym_decorator_member_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2743), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [146686] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4623), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146702] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2850), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146714] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5166), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7971), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146730] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5173), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146746] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4954), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7842), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146762] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2854), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146774] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2854), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146786] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5185), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146802] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2858), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146814] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5191), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146830] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5192), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146846] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5194), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146862] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1821), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146874] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1831), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146886] = 3, + ACTIONS(7973), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7975), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [146900] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1737), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146912] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5203), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146928] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7280), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146940] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2862), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146952] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5209), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7937), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146968] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5210), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146984] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5212), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147000] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2652), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147012] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7266), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147024] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(7977), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [147040] = 4, + STATE(5294), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7980), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [147056] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(4446), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147076] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7282), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147088] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7982), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147100] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4158), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147120] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2778), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147132] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2782), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147144] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4633), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147160] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4637), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147176] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4745), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147192] = 3, + ACTIONS(4834), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5450), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [147206] = 4, + STATE(5306), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + ACTIONS(7984), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [147222] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2878), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147234] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4746), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147250] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5323), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147270] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5333), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147290] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4747), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147306] = 5, + ACTIONS(7986), 1, + anon_sym_SEMI, + ACTIONS(7988), 1, + sym__automatic_semicolon, + STATE(5348), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7900), 2, + anon_sym_with, + anon_sym_assert, + [147324] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4827), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147340] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4962), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7842), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147356] = 4, + ACTIONS(7992), 1, + anon_sym_in, + ACTIONS(7994), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7990), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147372] = 4, + ACTIONS(7996), 1, + anon_sym_in, + ACTIONS(7998), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7990), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147388] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4828), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147404] = 3, + ACTIONS(4725), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4727), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147418] = 3, + ACTIONS(4462), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4464), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147432] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7282), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147444] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8000), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147456] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7266), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147468] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8002), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8004), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [147492] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4640), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147508] = 6, + ACTIONS(8006), 1, + sym_identifier, + ACTIONS(8008), 1, + anon_sym_GT, + ACTIONS(8010), 1, + sym_jsx_identifier, + STATE(5304), 1, + sym_nested_identifier, + STATE(5960), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147528] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4829), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147544] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5178), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8012), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147560] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8014), 1, + anon_sym_BQUOTE, + ACTIONS(8016), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4259), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147578] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8018), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147590] = 6, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8020), 1, + anon_sym_RBRACE, + STATE(4904), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147610] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5418), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147630] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4830), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147646] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4754), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147662] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5378), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147682] = 6, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8022), 1, + anon_sym_RBRACE, + STATE(4964), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147702] = 6, + ACTIONS(1669), 1, + anon_sym_LBRACE, + ACTIONS(7804), 1, + anon_sym_SEMI, + ACTIONS(7806), 1, + sym__automatic_semicolon, + ACTIONS(7808), 1, + sym__function_signature_automatic_semicolon, + STATE(233), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147722] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7487), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [147734] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5152), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8024), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147750] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5302), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [147762] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8026), 1, + anon_sym_BQUOTE, + ACTIONS(8028), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4294), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [147780] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4755), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147796] = 3, + ACTIONS(8030), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8032), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [147810] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(4187), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147830] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147842] = 6, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(7894), 1, + anon_sym_SEMI, + ACTIONS(7896), 1, + sym__automatic_semicolon, + ACTIONS(7898), 1, + sym__function_signature_automatic_semicolon, + STATE(2338), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147862] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(4062), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147882] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2522), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147894] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5173), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [147906] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5457), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [147926] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2522), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [147938] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4831), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147954] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5173), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [147966] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4832), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147982] = 6, + ACTIONS(1017), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, + anon_sym_LBRACE, + ACTIONS(7318), 1, + anon_sym_extends, + STATE(4127), 1, + sym_object_type, + STATE(4986), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148002] = 3, + ACTIONS(4512), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4514), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148016] = 3, + ACTIONS(4516), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4518), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148030] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8034), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148042] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8036), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148054] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8038), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148066] = 3, + ACTIONS(7580), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7578), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148080] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(3884), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148100] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2680), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148112] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5124), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8040), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148128] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7943), 1, + sym__template_chars, + ACTIONS(8042), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [148146] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2522), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148158] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4682), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148174] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2526), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148186] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4991), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8044), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148202] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(3921), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148222] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2684), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148234] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8046), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148250] = 6, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + ACTIONS(7318), 1, + anon_sym_extends, + STATE(883), 1, + sym_object_type, + STATE(5108), 1, + sym_extends_type_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148270] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2688), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148282] = 3, + ACTIONS(4557), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4559), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148296] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(4668), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148316] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4730), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148332] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4742), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148348] = 3, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4563), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [148362] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4913), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148378] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4920), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148394] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4939), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148410] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2530), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148422] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2534), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148434] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4948), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148450] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2538), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148462] = 6, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(7880), 1, + anon_sym_SEMI, + ACTIONS(7882), 1, + sym__automatic_semicolon, + ACTIONS(7884), 1, + sym__function_signature_automatic_semicolon, + STATE(4325), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148482] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2542), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148494] = 6, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(7963), 1, + anon_sym_abstract, + ACTIONS(8053), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148514] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8055), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [148532] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4955), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148548] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2546), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148560] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4760), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148576] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8057), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148588] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4843), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148604] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7943), 1, + sym__template_chars, + ACTIONS(8059), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [148622] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5006), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148638] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5041), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148654] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5050), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148670] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7943), 1, + sym__template_chars, + ACTIONS(8061), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4077), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [148688] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2656), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148700] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4844), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148716] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5189), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148732] = 6, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(7804), 1, + anon_sym_SEMI, + ACTIONS(7806), 1, + sym__automatic_semicolon, + ACTIONS(7808), 1, + sym__function_signature_automatic_semicolon, + STATE(2313), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148752] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2668), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [148764] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5561), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [148776] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4761), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148792] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4687), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148808] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8063), 2, + anon_sym_COMMA, + anon_sym_GT, + [148826] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4708), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148842] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4712), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148858] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4763), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148874] = 6, + ACTIONS(7377), 1, + anon_sym_EQ, + ACTIONS(8065), 1, + anon_sym_COMMA, + ACTIONS(8067), 1, + anon_sym_RBRACE, + STATE(5022), 1, + aux_sym_enum_body_repeat1, + STATE(5404), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148894] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(3785), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148914] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8069), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148930] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4683), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148946] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8072), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148962] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148978] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5474), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [148998] = 6, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, + ACTIONS(8078), 1, + anon_sym_as, + ACTIONS(8080), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149018] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(8082), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5522), 2, + sym__module_export_name, + sym_string, + [149036] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4753), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149052] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5089), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8084), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149068] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8086), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5297), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149084] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8089), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149100] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5494), 1, + sym__call_signature, + STATE(5509), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149120] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2558), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149132] = 6, + ACTIONS(7178), 1, + anon_sym_LBRACE, + ACTIONS(8092), 1, + anon_sym_SEMI, + ACTIONS(8094), 1, + sym__automatic_semicolon, + ACTIONS(8096), 1, + sym__function_signature_automatic_semicolon, + STATE(4357), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149152] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4769), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149168] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8098), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149184] = 3, + ACTIONS(5273), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1851), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149198] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8101), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [149216] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2558), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149228] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4796), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149244] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4800), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149260] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4801), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149276] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(3553), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149296] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7256), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149308] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4909), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149324] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8103), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149336] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8105), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149348] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3389), 1, + sym_formal_parameters, + STATE(3849), 1, + sym__call_signature, + STATE(5452), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149368] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4997), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149384] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4845), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149400] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7516), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149412] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5079), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149428] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4912), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7842), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149444] = 6, + ACTIONS(4206), 1, + anon_sym_LBRACE, + ACTIONS(8092), 1, + anon_sym_SEMI, + ACTIONS(8094), 1, + sym__automatic_semicolon, + ACTIONS(8096), 1, + sym__function_signature_automatic_semicolon, + STATE(2137), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149464] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5095), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149480] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5099), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149496] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5111), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149512] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2574), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149524] = 4, + ACTIONS(7544), 1, + anon_sym_COLON, + ACTIONS(8107), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5347), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [149540] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7303), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149552] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5176), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149568] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4846), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149584] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1841), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149596] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5220), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149612] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4627), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149628] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4632), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149644] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4641), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149660] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4642), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149676] = 3, + ACTIONS(5312), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1713), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149690] = 3, + ACTIONS(5321), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1727), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149704] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4673), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149720] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4685), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149736] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4705), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149752] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5205), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149768] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1747), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149780] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(3709), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149800] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2692), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149812] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4744), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149828] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1757), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149840] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8110), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149852] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2578), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149864] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4789), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149880] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4792), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149896] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4799), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149912] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7532), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [149924] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2700), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149936] = 5, + ACTIONS(7868), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8112), 1, + anon_sym_BQUOTE, + ACTIONS(8114), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4147), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149954] = 5, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8116), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [149972] = 3, + ACTIONS(4621), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4623), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [149986] = 3, + ACTIONS(4625), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4627), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150000] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4878), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150016] = 3, + ACTIONS(5369), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1801), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150030] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4847), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8118), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150046] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(3557), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150066] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5206), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150082] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4848), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8120), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150098] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1703), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150110] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(3711), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150130] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7534), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [150142] = 3, + ACTIONS(4621), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4623), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150156] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(3750), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150176] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4859), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7959), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150192] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(3707), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150212] = 3, + ACTIONS(4629), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4631), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150226] = 3, + ACTIONS(4633), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4635), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150240] = 3, + ACTIONS(4621), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4623), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150254] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4772), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150270] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4774), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150286] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4775), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150302] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150318] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4786), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150334] = 3, + ACTIONS(4665), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4667), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150348] = 3, + ACTIONS(4669), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4671), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150362] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4787), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150378] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5144), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8122), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150394] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7536), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [150406] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4926), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150422] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4790), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150438] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4649), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7802), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150454] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1811), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150466] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4970), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150482] = 6, + ACTIONS(8124), 1, + sym_identifier, + ACTIONS(8126), 1, + anon_sym_GT, + ACTIONS(8128), 1, + sym_jsx_identifier, + STATE(5467), 1, + sym_nested_identifier, + STATE(5744), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150502] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5193), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7814), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150518] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4860), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150534] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4983), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150550] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4984), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150566] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4987), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150582] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7268), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150594] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4937), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [150606] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4933), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [150618] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2676), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150630] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4861), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7820), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150646] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150658] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2806), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150670] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5000), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150686] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8130), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [150698] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5018), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150714] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5019), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150730] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2810), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150742] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5021), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150758] = 3, + ACTIONS(8132), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3584), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [150772] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7268), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150784] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5024), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150800] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5032), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150816] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2716), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150828] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3954), 1, + sym_formal_parameters, + STATE(5509), 1, + sym_type_parameters, + STATE(5524), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150848] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(4868), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150868] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(3996), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150888] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5056), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8051), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150904] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5060), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150920] = 3, + ACTIONS(4685), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4687), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150934] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5068), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150950] = 3, + ACTIONS(4689), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4691), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [150964] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2612), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [150976] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5074), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150992] = 4, + ACTIONS(1767), 1, + anon_sym_DOT, + ACTIONS(4302), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4304), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [151008] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(5078), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151024] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7375), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151036] = 6, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_formal_parameters, + STATE(4416), 1, + sym__call_signature, + STATE(5499), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151056] = 4, + ACTIONS(6346), 1, + anon_sym_DOT, + ACTIONS(8134), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [151072] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7242), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151084] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7375), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151096] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2616), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151108] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8136), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151120] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2720), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151132] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4631), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8138), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151148] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7242), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151160] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8140), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151172] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8142), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151184] = 5, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + ACTIONS(8144), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5446), 2, + sym__module_export_name, + sym_string, + [151202] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2620), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151214] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2624), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151226] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2628), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151238] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2632), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151250] = 4, + ACTIONS(6450), 1, + anon_sym_EQ, + STATE(4882), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7842), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151266] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2636), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151278] = 6, + ACTIONS(7377), 1, + anon_sym_EQ, + ACTIONS(8146), 1, + anon_sym_COMMA, + ACTIONS(8148), 1, + anon_sym_RBRACE, + STATE(4802), 1, + aux_sym_enum_body_repeat1, + STATE(5404), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151298] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2648), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [151310] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5173), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [151322] = 5, + ACTIONS(7341), 1, + anon_sym_COMMA, + ACTIONS(8150), 1, + anon_sym_LBRACE, + ACTIONS(8152), 1, + anon_sym_LBRACE_PIPE, + STATE(4501), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151339] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8154), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [151350] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8156), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151367] = 5, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8158), 1, + anon_sym_EQ, + ACTIONS(8160), 1, + anon_sym_RBRACK, + STATE(4919), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151384] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8162), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8164), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151401] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4557), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8168), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151416] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8162), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151433] = 4, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(5256), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8172), 2, + anon_sym_COMMA, + anon_sym_GT, + [151448] = 5, + ACTIONS(8174), 1, + sym_identifier, + STATE(3958), 1, + sym_nested_type_identifier, + STATE(4561), 1, + sym_generic_type, + STATE(5816), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151465] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151482] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8178), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8164), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151499] = 4, + ACTIONS(8180), 1, + anon_sym_COMMA, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7524), 2, + anon_sym_LBRACE, + anon_sym_GT, + [151514] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8178), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151531] = 5, + ACTIONS(1665), 1, + anon_sym_while, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(6316), 1, + anon_sym_DOT, + STATE(867), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151548] = 5, + ACTIONS(1665), 1, + anon_sym_while, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(6689), 1, + anon_sym_DOT, + STATE(867), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151565] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5277), 1, + sym_type_parameters, + STATE(5973), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151582] = 3, + ACTIONS(8183), 1, + sym_escape_sequence, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8185), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [151595] = 4, + ACTIONS(8188), 1, + anon_sym_COMMA, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5395), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [151610] = 4, + ACTIONS(8191), 1, + anon_sym_COMMA, + STATE(4486), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4780), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151625] = 4, + ACTIONS(8196), 1, + anon_sym_COMMA, + STATE(4487), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8194), 2, + anon_sym_LBRACE, + anon_sym_implements, + [151640] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8199), 1, + anon_sym_SQUOTE, + STATE(4528), 1, + aux_sym_string_repeat2, + ACTIONS(8201), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151657] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8203), 1, + anon_sym_DQUOTE, + STATE(4472), 1, + aux_sym_string_repeat1, + ACTIONS(8205), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151674] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8203), 1, + anon_sym_SQUOTE, + STATE(4474), 1, + aux_sym_string_repeat2, + ACTIONS(8207), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151691] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5456), 1, + sym_type_parameters, + STATE(5630), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8209), 1, + anon_sym_DQUOTE, + STATE(4537), 1, + aux_sym_string_repeat1, + ACTIONS(8211), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151725] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8213), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151742] = 3, + ACTIONS(6346), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [151755] = 5, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + ACTIONS(8217), 1, + anon_sym_GT, + STATE(5455), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151772] = 4, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5370), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8221), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151787] = 5, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(6332), 1, + anon_sym_LT, + STATE(3101), 1, + sym_arguments, + STATE(3220), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151804] = 4, + ACTIONS(7377), 1, + anon_sym_EQ, + STATE(5285), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8223), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [151819] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8225), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151836] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8227), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151853] = 5, + ACTIONS(8229), 1, + anon_sym_LBRACE, + ACTIONS(8231), 1, + anon_sym_COMMA, + ACTIONS(8234), 1, + anon_sym_LBRACE_PIPE, + STATE(4501), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151870] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5326), 1, + sym_type_parameters, + STATE(5805), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151887] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5432), 1, + sym_type_parameters, + STATE(5603), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151904] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8236), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151921] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5327), 1, + sym_type_parameters, + STATE(5618), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151938] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8238), 1, + anon_sym_export, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151955] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8240), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151972] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8242), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151989] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8244), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152006] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8246), 1, + anon_sym_DQUOTE, + STATE(4520), 1, + aux_sym_string_repeat1, + ACTIONS(8248), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152023] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8250), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8164), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152040] = 5, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(8252), 1, + anon_sym_LT, + STATE(1870), 1, + sym_arguments, + STATE(1871), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152057] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8254), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152074] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8256), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152091] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8258), 1, + anon_sym_DQUOTE, + STATE(4478), 1, + aux_sym_string_repeat1, + ACTIONS(8260), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8246), 1, + anon_sym_SQUOTE, + STATE(4524), 1, + aux_sym_string_repeat2, + ACTIONS(8262), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152125] = 4, + ACTIONS(6336), 1, + anon_sym_STAR, + ACTIONS(6340), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5781), 2, + sym_namespace_import, + sym_named_imports, + [152140] = 4, + ACTIONS(5023), 1, + anon_sym_COMMA, + STATE(4486), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7326), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152155] = 5, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8158), 1, + anon_sym_EQ, + ACTIONS(8264), 1, + anon_sym_RBRACK, + STATE(4770), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152172] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8266), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8164), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152189] = 4, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5308), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5062), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152204] = 4, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5233), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8268), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152219] = 4, + ACTIONS(3786), 1, + anon_sym_COLON, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8270), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [152234] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8266), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152251] = 4, + ACTIONS(8274), 1, + anon_sym_COMMA, + STATE(4487), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8272), 2, + anon_sym_LBRACE, + anon_sym_implements, + [152266] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8258), 1, + anon_sym_SQUOTE, + STATE(4480), 1, + aux_sym_string_repeat2, + ACTIONS(8276), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152283] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8278), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8250), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152317] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8280), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152334] = 5, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(8282), 1, + anon_sym_LT, + STATE(1555), 1, + sym_arguments, + STATE(1556), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152351] = 5, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + ACTIONS(8284), 1, + anon_sym_GT, + STATE(5455), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152368] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5440), 1, + sym_type_parameters, + STATE(5721), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152385] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4558), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8286), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152400] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4558), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8288), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152415] = 4, + ACTIONS(8290), 1, + anon_sym_EQ, + STATE(5330), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + [152430] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8292), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152447] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8294), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8164), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152464] = 5, + ACTIONS(8296), 1, + sym_identifier, + STATE(3988), 1, + sym_nested_type_identifier, + STATE(4779), 1, + sym_generic_type, + STATE(5816), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152481] = 3, + ACTIONS(8298), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [152494] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8300), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152511] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8294), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152528] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8302), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152545] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8304), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152562] = 3, + ACTIONS(8306), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [152575] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8308), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152592] = 4, + ACTIONS(7377), 1, + anon_sym_EQ, + STATE(5404), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8310), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [152607] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8312), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152624] = 5, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + ACTIONS(8314), 1, + anon_sym_GT, + STATE(5455), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152641] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8316), 1, + anon_sym_DQUOTE, + STATE(4582), 1, + aux_sym_string_repeat1, + ACTIONS(8318), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152658] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8320), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152669] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5444), 1, + sym_type_parameters, + STATE(5775), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152686] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8322), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152703] = 4, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5371), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4999), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152718] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4556), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8324), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152733] = 5, + ACTIONS(7341), 1, + anon_sym_COMMA, + ACTIONS(8326), 1, + anon_sym_LBRACE, + ACTIONS(8328), 1, + anon_sym_LBRACE_PIPE, + STATE(4501), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152750] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4558), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8330), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152765] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4558), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8332), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152780] = 4, + ACTIONS(8334), 1, + anon_sym_COMMA, + STATE(4558), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8337), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152795] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8244), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8164), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152812] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(8339), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152829] = 5, + ACTIONS(7341), 1, + anon_sym_COMMA, + ACTIONS(7792), 1, + anon_sym_LBRACE, + ACTIONS(7794), 1, + anon_sym_LBRACE_PIPE, + STATE(4555), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152846] = 5, + ACTIONS(97), 1, + anon_sym_AT, + ACTIONS(8341), 1, + anon_sym_class, + STATE(1227), 1, + aux_sym_export_statement_repeat1, + STATE(1282), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152863] = 3, + ACTIONS(6110), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3786), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [152876] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(8343), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152893] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6021), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152904] = 4, + ACTIONS(8274), 1, + anon_sym_COMMA, + STATE(4525), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8345), 2, + anon_sym_LBRACE, + anon_sym_implements, + [152919] = 4, + ACTIONS(7377), 1, + anon_sym_EQ, + STATE(5387), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8347), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [152934] = 5, + ACTIONS(6291), 1, + anon_sym_LT, + ACTIONS(6695), 1, + anon_sym_LPAREN, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152951] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(8349), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152968] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8351), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152985] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8355), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(8353), 3, + sym_html_character_reference, + anon_sym_DQUOTE, + anon_sym_AMP2, + [153000] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5358), 1, + sym_type_parameters, + STATE(5700), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153017] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5359), 1, + sym_type_parameters, + STATE(5799), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153034] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(8357), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153051] = 5, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + ACTIONS(8359), 1, + anon_sym_GT, + STATE(5455), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8316), 1, + anon_sym_SQUOTE, + STATE(4589), 1, + aux_sym_string_repeat2, + ACTIONS(8361), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153085] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8363), 1, + anon_sym_DQUOTE, + STATE(4559), 1, + aux_sym_string_repeat1, + ACTIONS(8365), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [153102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8363), 1, + anon_sym_SQUOTE, + STATE(4509), 1, + aux_sym_string_repeat2, + ACTIONS(8367), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153119] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8369), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8371), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8373), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [153153] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8376), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8378), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153170] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8381), 1, + anon_sym_DQUOTE, + STATE(4580), 1, + aux_sym_string_repeat1, + ACTIONS(8164), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [153187] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5557), 1, + sym_type_parameters, + STATE(5676), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153204] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5560), 1, + sym_type_parameters, + STATE(5695), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153221] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(8383), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153238] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(8385), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153255] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8209), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym_string_repeat2, + ACTIONS(8387), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153272] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3548), 1, + sym_formal_parameters, + STATE(5561), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153289] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8381), 1, + anon_sym_SQUOTE, + STATE(4581), 1, + aux_sym_string_repeat2, + ACTIONS(8170), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [153306] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8389), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [153317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8355), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(8353), 3, + sym_html_character_reference, + anon_sym_SQUOTE, + anon_sym_AMP2, + [153332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8199), 1, + anon_sym_DQUOTE, + STATE(4511), 1, + aux_sym_string_repeat1, + ACTIONS(8391), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [153349] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8393), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153366] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5488), 1, + sym_type_parameters, + STATE(5935), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153383] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5275), 1, + sym_type_parameters, + STATE(5952), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153400] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8395), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153417] = 3, + ACTIONS(7892), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4190), 3, + anon_sym_AMP3, + anon_sym_PIPE, + anon_sym_extends, + [153430] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8397), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153447] = 5, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(8399), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153464] = 5, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(6291), 1, + anon_sym_LT, + STATE(2873), 1, + sym_arguments, + STATE(2924), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153481] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4533), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8401), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153496] = 4, + ACTIONS(8166), 1, + anon_sym_COMMA, + STATE(4534), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8403), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [153511] = 4, + ACTIONS(6303), 1, + anon_sym_EQ, + STATE(5427), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8405), 2, + anon_sym_COMMA, + anon_sym_GT, + [153526] = 5, + ACTIONS(6360), 1, + anon_sym_LPAREN, + ACTIONS(6366), 1, + anon_sym_LT, + STATE(3255), 1, + sym_arguments, + STATE(3463), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153543] = 5, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153560] = 5, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5523), 1, + sym_type_parameters, + STATE(5883), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153577] = 5, + ACTIONS(7341), 1, + anon_sym_COMMA, + ACTIONS(8326), 1, + anon_sym_LBRACE, + ACTIONS(8328), 1, + anon_sym_LBRACE_PIPE, + STATE(4501), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153594] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5397), 1, + anon_sym_RPAREN, + STATE(4989), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153608] = 4, + ACTIONS(8409), 1, + sym_identifier, + ACTIONS(8411), 1, + anon_sym_LBRACK, + ACTIONS(8413), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153622] = 4, + ACTIONS(8415), 1, + sym_identifier, + ACTIONS(8417), 1, + anon_sym_LBRACK, + ACTIONS(8419), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153636] = 4, + ACTIONS(8421), 1, + sym_identifier, + ACTIONS(8423), 1, + anon_sym_LBRACK, + ACTIONS(8425), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153650] = 4, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8429), 1, + anon_sym_LBRACK, + ACTIONS(8431), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153664] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153674] = 4, + ACTIONS(2550), 1, + anon_sym_RBRACK, + ACTIONS(8435), 1, + anon_sym_COMMA, + STATE(4759), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153688] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153698] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153708] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153718] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153728] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153738] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7367), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [153748] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153758] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153768] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153778] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8441), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153788] = 4, + ACTIONS(8443), 1, + anon_sym_COMMA, + ACTIONS(8446), 1, + anon_sym_RPAREN, + STATE(4625), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153802] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153812] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153822] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153832] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8441), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153842] = 3, + ACTIONS(4236), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4238), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [153854] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153864] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153874] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153884] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8454), 1, + anon_sym_RBRACE, + STATE(4652), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153898] = 3, + ACTIONS(4262), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4264), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [153910] = 3, + ACTIONS(8456), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8004), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [153922] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153932] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8458), 1, + anon_sym_RBRACE, + STATE(4663), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153946] = 4, + ACTIONS(3938), 1, + anon_sym_LPAREN, + ACTIONS(8460), 1, + anon_sym_DOT, + STATE(1609), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153960] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153970] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153980] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153990] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154000] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154010] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154020] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5393), 1, + anon_sym_RPAREN, + STATE(4658), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154034] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5393), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154048] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154058] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154068] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8466), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154082] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154092] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8468), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154106] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154116] = 4, + ACTIONS(8470), 1, + anon_sym_COMMA, + ACTIONS(8472), 1, + anon_sym_RBRACK, + STATE(4662), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154130] = 4, + ACTIONS(2444), 1, + anon_sym_LBRACE, + ACTIONS(8474), 1, + anon_sym_LPAREN, + STATE(771), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154144] = 4, + ACTIONS(4074), 1, + anon_sym_extends, + ACTIONS(8476), 1, + anon_sym_AMP3, + ACTIONS(8478), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154158] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154168] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8480), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154182] = 4, + ACTIONS(3174), 1, + anon_sym_GT, + ACTIONS(8482), 1, + anon_sym_COMMA, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154196] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154206] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154216] = 4, + ACTIONS(2566), 1, + anon_sym_RBRACK, + ACTIONS(8484), 1, + anon_sym_COMMA, + STATE(4759), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154230] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8486), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154244] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154254] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154264] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154274] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154284] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8488), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154294] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154304] = 4, + ACTIONS(8490), 1, + anon_sym_COMMA, + ACTIONS(8493), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154318] = 4, + ACTIONS(8495), 1, + anon_sym_COMMA, + ACTIONS(8498), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154332] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8500), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [154342] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154352] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154362] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154372] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154382] = 4, + ACTIONS(6360), 1, + anon_sym_LPAREN, + ACTIONS(8504), 1, + anon_sym_DOT, + STATE(3261), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154396] = 4, + ACTIONS(8506), 1, + anon_sym_COMMA, + ACTIONS(8509), 1, + anon_sym_RBRACE, + STATE(4678), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154410] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5597), 1, + anon_sym_RPAREN, + STATE(4690), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154424] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5597), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154438] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154448] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154458] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154468] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154478] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154488] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154498] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154508] = 4, + ACTIONS(8511), 1, + anon_sym_COMMA, + ACTIONS(8513), 1, + anon_sym_RBRACK, + STATE(4701), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154522] = 4, + ACTIONS(6879), 1, + anon_sym_AMP3, + ACTIONS(6881), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154536] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8515), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154550] = 3, + ACTIONS(8517), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8519), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [154562] = 4, + ACTIONS(3164), 1, + anon_sym_GT, + ACTIONS(8521), 1, + anon_sym_COMMA, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154576] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154586] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8458), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154600] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154610] = 4, + ACTIONS(8523), 1, + sym_identifier, + ACTIONS(8525), 1, + anon_sym_LBRACK, + ACTIONS(8527), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154624] = 4, + ACTIONS(8529), 1, + sym_identifier, + ACTIONS(8531), 1, + anon_sym_LBRACK, + ACTIONS(8533), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154638] = 4, + ACTIONS(8535), 1, + sym_identifier, + ACTIONS(8537), 1, + anon_sym_LBRACK, + ACTIONS(8539), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154652] = 4, + ACTIONS(8541), 1, + sym_identifier, + ACTIONS(8543), 1, + anon_sym_LBRACK, + ACTIONS(8545), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154666] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154676] = 4, + ACTIONS(2582), 1, + anon_sym_RBRACK, + ACTIONS(8547), 1, + anon_sym_COMMA, + STATE(4759), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154690] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154700] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154710] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154720] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154730] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154740] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154750] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154760] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154770] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7405), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [154780] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5395), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [154790] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154800] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154810] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5189), 1, + anon_sym_RPAREN, + STATE(4719), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154824] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5189), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154838] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154848] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154858] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154868] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8549), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154882] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154892] = 4, + ACTIONS(3208), 1, + anon_sym_GT, + ACTIONS(8551), 1, + anon_sym_COMMA, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154906] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154916] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154926] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154936] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154946] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154956] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154966] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154976] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154986] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154996] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8462), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155006] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5314), 1, + anon_sym_RPAREN, + STATE(4737), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155020] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5314), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155034] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155044] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155054] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155064] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8555), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155078] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155088] = 4, + ACTIONS(3206), 1, + anon_sym_GT, + ACTIONS(8557), 1, + anon_sym_COMMA, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155102] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155112] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155122] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155132] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155142] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155152] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155162] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155172] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155182] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155192] = 4, + ACTIONS(8559), 1, + anon_sym_LPAREN, + ACTIONS(8561), 1, + anon_sym_await, + STATE(47), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155206] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155216] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155226] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155236] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155246] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155256] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155266] = 3, + ACTIONS(8158), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8565), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [155278] = 4, + ACTIONS(8219), 1, + anon_sym_from, + ACTIONS(8567), 1, + anon_sym_as, + STATE(5226), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155292] = 4, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(8569), 1, + sym_identifier, + STATE(4521), 1, + sym_export_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155306] = 4, + ACTIONS(8571), 1, + anon_sym_COMMA, + ACTIONS(8574), 1, + anon_sym_RBRACK, + STATE(4759), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155320] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155330] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155340] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8576), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [155350] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155360] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155370] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155380] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8578), 1, + anon_sym_RBRACK, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155394] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155404] = 4, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + STATE(4874), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155418] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155428] = 4, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8580), 1, + anon_sym_RBRACK, + STATE(4776), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155442] = 4, + ACTIONS(8582), 1, + anon_sym_COMMA, + ACTIONS(8584), 1, + anon_sym_GT, + STATE(4890), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155456] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155466] = 4, + ACTIONS(8586), 1, + sym_identifier, + STATE(3902), 1, + sym_decorator_member_expression, + STATE(5669), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155490] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155500] = 4, + ACTIONS(8565), 1, + anon_sym_RBRACK, + ACTIONS(8588), 1, + anon_sym_COMMA, + STATE(4776), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155514] = 4, + ACTIONS(6550), 1, + anon_sym_type, + ACTIONS(8591), 1, + sym_identifier, + STATE(5265), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155528] = 4, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + STATE(5455), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155542] = 3, + ACTIONS(7832), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7834), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [155554] = 4, + ACTIONS(1593), 1, + anon_sym_DQUOTE, + ACTIONS(1595), 1, + anon_sym_SQUOTE, + STATE(4590), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155568] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155578] = 4, + ACTIONS(6550), 1, + anon_sym_type, + ACTIONS(8593), 1, + sym_identifier, + STATE(5276), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155592] = 4, + ACTIONS(8595), 1, + anon_sym_COMMA, + ACTIONS(8598), 1, + anon_sym_RBRACE, + STATE(4783), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155606] = 3, + ACTIONS(4374), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4376), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [155618] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7320), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [155628] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155638] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155648] = 3, + ACTIONS(4106), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4108), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [155660] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155670] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155680] = 3, + ACTIONS(4144), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4146), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [155692] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155702] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6552), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [155712] = 3, + ACTIONS(8600), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8602), 2, + anon_sym_COMMA, + anon_sym_from, + [155724] = 4, + ACTIONS(2476), 1, + anon_sym_while, + ACTIONS(8604), 1, + anon_sym_else, + STATE(861), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155738] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155748] = 4, + ACTIONS(6038), 1, + anon_sym_LPAREN, + ACTIONS(8606), 1, + anon_sym_DOT, + STATE(2892), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155762] = 3, + ACTIONS(8608), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8610), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [155774] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155784] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155794] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155804] = 4, + ACTIONS(8612), 1, + anon_sym_COMMA, + ACTIONS(8614), 1, + anon_sym_RBRACE, + STATE(4783), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155818] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155828] = 4, + ACTIONS(8616), 1, + anon_sym_COMMA, + ACTIONS(8618), 1, + anon_sym_RBRACE, + STATE(4783), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155842] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8620), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155852] = 4, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(8622), 1, + anon_sym_EQ, + STATE(5758), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155866] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155876] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8624), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [155886] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155896] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155906] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155916] = 4, + ACTIONS(8628), 1, + anon_sym_COMMA, + ACTIONS(8631), 1, + anon_sym_RBRACE, + STATE(4812), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155930] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155940] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8633), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155950] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8454), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155964] = 4, + ACTIONS(8635), 1, + anon_sym_COMMA, + ACTIONS(8637), 1, + anon_sym_RBRACE, + STATE(5213), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155978] = 4, + ACTIONS(1505), 1, + anon_sym_DQUOTE, + ACTIONS(1507), 1, + anon_sym_SQUOTE, + STATE(5704), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155992] = 3, + ACTIONS(8639), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8641), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [156004] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156014] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8633), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156024] = 4, + ACTIONS(7586), 1, + anon_sym_AMP3, + ACTIONS(7588), 1, + anon_sym_PIPE, + ACTIONS(7590), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156038] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8643), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156048] = 3, + ACTIONS(8645), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8602), 2, + anon_sym_COMMA, + anon_sym_from, + [156060] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8647), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156074] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156084] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156094] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156104] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156114] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156124] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156134] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156144] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156154] = 3, + ACTIONS(8649), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8602), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [156166] = 4, + ACTIONS(8651), 1, + anon_sym_COMMA, + ACTIONS(8653), 1, + anon_sym_RBRACE, + STATE(5104), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156180] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8655), 1, + anon_sym_RBRACE, + STATE(4905), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156194] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8657), 1, + anon_sym_RBRACE, + STATE(4906), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156208] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8657), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156222] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8655), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156236] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8659), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156246] = 4, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8264), 1, + anon_sym_RBRACK, + STATE(4770), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156260] = 3, + ACTIONS(8661), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8130), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [156272] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8659), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156282] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156292] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156302] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156312] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156322] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8663), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156332] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156342] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8633), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156352] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156362] = 4, + ACTIONS(8667), 1, + anon_sym_COMMA, + ACTIONS(8669), 1, + anon_sym_RPAREN, + STATE(4916), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156376] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8633), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156386] = 4, + ACTIONS(8671), 1, + sym_identifier, + ACTIONS(8673), 1, + anon_sym_require, + STATE(5109), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156400] = 4, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8160), 1, + anon_sym_RBRACK, + STATE(4919), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156414] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5193), 1, + anon_sym_RBRACK, + STATE(4918), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156428] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156438] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5193), 1, + anon_sym_RBRACK, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156452] = 4, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8160), 1, + anon_sym_RBRACK, + STATE(4776), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156466] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8643), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156476] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156486] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156496] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8675), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156506] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156516] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156526] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8677), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [156536] = 4, + ACTIONS(8679), 1, + anon_sym_COMMA, + ACTIONS(8681), 1, + anon_sym_RBRACK, + STATE(5211), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156550] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8675), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156560] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156570] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156580] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156590] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8685), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156600] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156610] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156620] = 4, + ACTIONS(8687), 1, + anon_sym_COMMA, + ACTIONS(8689), 1, + anon_sym_GT, + STATE(4941), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156634] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_RBRACK, + STATE(4766), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156648] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8683), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156658] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8659), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156668] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156678] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156688] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156698] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156708] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8695), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156718] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156728] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156738] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8697), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156748] = 4, + ACTIONS(8699), 1, + sym_identifier, + ACTIONS(8701), 1, + anon_sym_LBRACK, + ACTIONS(8703), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156762] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156772] = 4, + ACTIONS(6599), 1, + anon_sym_AMP3, + ACTIONS(6601), 1, + anon_sym_PIPE, + ACTIONS(6603), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156786] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156796] = 4, + ACTIONS(8217), 1, + anon_sym_GT, + ACTIONS(8705), 1, + anon_sym_COMMA, + STATE(5092), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156810] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156820] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8697), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156830] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8697), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156840] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8695), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156850] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8697), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156860] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156870] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156880] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156890] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156900] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156910] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156920] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8709), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156934] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156944] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8711), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156958] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8713), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156972] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8715), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156986] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156996] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157006] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157016] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157026] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157036] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8695), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157046] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157056] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157066] = 4, + ACTIONS(8219), 1, + anon_sym_from, + ACTIONS(8567), 1, + anon_sym_as, + STATE(5377), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157080] = 4, + ACTIONS(1645), 1, + anon_sym_RPAREN, + ACTIONS(8717), 1, + anon_sym_COMMA, + STATE(4625), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157094] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157104] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8719), 1, + anon_sym_RBRACK, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157118] = 4, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8721), 1, + anon_sym_RBRACK, + STATE(4776), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157132] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157142] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157152] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157162] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157172] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157182] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157192] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157202] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8695), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157212] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157222] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157232] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8695), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157242] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157252] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8723), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157262] = 4, + ACTIONS(4502), 1, + anon_sym_LPAREN, + ACTIONS(8725), 1, + anon_sym_DOT, + STATE(2043), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157276] = 4, + ACTIONS(6695), 1, + anon_sym_LPAREN, + ACTIONS(8606), 1, + anon_sym_DOT, + STATE(2892), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157290] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157300] = 4, + ACTIONS(8727), 1, + sym_identifier, + STATE(3909), 1, + sym_decorator_member_expression, + STATE(5768), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157314] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157324] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157334] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157344] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157354] = 4, + ACTIONS(8359), 1, + anon_sym_GT, + ACTIONS(8729), 1, + anon_sym_COMMA, + STATE(5092), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157368] = 4, + ACTIONS(1017), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, + anon_sym_LBRACE, + STATE(4126), 1, + sym_object_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157382] = 3, + ACTIONS(8731), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6782), 2, + anon_sym_in, + anon_sym_of, + [157394] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7409), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [157404] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5397), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157418] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157428] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8733), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157442] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157452] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157462] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157472] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157482] = 4, + ACTIONS(1643), 1, + anon_sym_RPAREN, + ACTIONS(8735), 1, + anon_sym_COMMA, + STATE(4625), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157496] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157506] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8695), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157516] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157526] = 4, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(882), 1, + sym_object_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157540] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157550] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8691), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157560] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6021), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157570] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157580] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157590] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8695), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157600] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8737), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157614] = 4, + ACTIONS(5029), 1, + anon_sym_COMMA, + ACTIONS(8739), 1, + anon_sym_RBRACE, + STATE(4671), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157628] = 4, + ACTIONS(8741), 1, + sym_identifier, + ACTIONS(8743), 1, + anon_sym_LBRACK, + ACTIONS(8745), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157642] = 4, + ACTIONS(7574), 1, + anon_sym_COMMA, + ACTIONS(8747), 1, + anon_sym_LBRACE, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157656] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_RBRACK, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157670] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157680] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157690] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157700] = 4, + ACTIONS(3530), 1, + anon_sym_COLON, + ACTIONS(8749), 1, + anon_sym_RPAREN, + STATE(5740), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157714] = 3, + ACTIONS(7196), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8751), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [157726] = 3, + ACTIONS(7180), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8751), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [157738] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157748] = 4, + ACTIONS(1869), 1, + anon_sym_COMMA, + ACTIONS(8264), 1, + anon_sym_RBRACK, + STATE(4776), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157762] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157772] = 4, + ACTIONS(8753), 1, + anon_sym_COMMA, + ACTIONS(8755), 1, + anon_sym_RBRACK, + STATE(5013), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157786] = 4, + ACTIONS(5021), 1, + anon_sym_extends, + ACTIONS(8757), 1, + anon_sym_AMP3, + ACTIONS(8759), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157800] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7990), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157810] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157820] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5469), 1, + anon_sym_RPAREN, + STATE(5142), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157834] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157844] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157854] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157864] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7990), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157874] = 4, + ACTIONS(1017), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1585), 1, + anon_sym_LBRACE, + STATE(4280), 1, + sym_object_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157888] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157898] = 4, + ACTIONS(8761), 1, + anon_sym_COMMA, + ACTIONS(8763), 1, + anon_sym_RBRACE, + STATE(5027), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157912] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8765), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157926] = 4, + ACTIONS(3194), 1, + anon_sym_GT, + ACTIONS(8767), 1, + anon_sym_COMMA, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157940] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8769), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157950] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157960] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157970] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157980] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8771), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157990] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158000] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158010] = 3, + ACTIONS(8773), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7945), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [158022] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158032] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158042] = 4, + ACTIONS(8775), 1, + anon_sym_COMMA, + ACTIONS(8777), 1, + anon_sym_RPAREN, + STATE(4952), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158056] = 3, + ACTIONS(8779), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8781), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [158068] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8783), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [158078] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158088] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5469), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158102] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158112] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158122] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8771), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158132] = 3, + ACTIONS(8158), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8785), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [158144] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8787), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158154] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8789), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158164] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8789), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158174] = 4, + ACTIONS(2918), 1, + anon_sym_RBRACK, + ACTIONS(8791), 1, + anon_sym_COMMA, + STATE(4759), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158188] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8793), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158198] = 4, + ACTIONS(7202), 1, + anon_sym_const, + ACTIONS(8215), 1, + sym_identifier, + STATE(4771), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158212] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8795), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158222] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158232] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158242] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158252] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8797), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158262] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158272] = 4, + ACTIONS(8799), 1, + anon_sym_COMMA, + ACTIONS(8801), 1, + anon_sym_RBRACE, + STATE(4783), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158286] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8795), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158296] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158306] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8803), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158316] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158326] = 4, + ACTIONS(8807), 1, + anon_sym_COMMA, + ACTIONS(8809), 1, + anon_sym_RBRACE, + STATE(4783), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158340] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158350] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158360] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158370] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158380] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158390] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158400] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158410] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158420] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158430] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8817), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158440] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158450] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158460] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8771), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158470] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158490] = 4, + ACTIONS(2470), 1, + anon_sym_LT, + ACTIONS(8819), 1, + anon_sym_EQ, + STATE(5636), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158504] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158514] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8821), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158524] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158534] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158544] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158554] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158564] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158574] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158584] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158594] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158604] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158614] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158624] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158634] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8821), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158644] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158654] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8823), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158664] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158674] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158684] = 3, + ACTIONS(7349), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3626), 2, + anon_sym_in, + anon_sym_of, + [158696] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6344), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LT, + [158706] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158716] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158726] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158736] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8825), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158746] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158756] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158766] = 3, + ACTIONS(8829), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6552), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [158778] = 4, + ACTIONS(6550), 1, + anon_sym_type, + ACTIONS(8831), 1, + sym_identifier, + STATE(5362), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158792] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158802] = 4, + ACTIONS(7250), 1, + anon_sym_AMP3, + ACTIONS(7252), 1, + anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158816] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158826] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8833), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158836] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158846] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158856] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158866] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158876] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158886] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158896] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158906] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158916] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158926] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158936] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158946] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158956] = 4, + ACTIONS(6550), 1, + anon_sym_type, + ACTIONS(8835), 1, + sym_identifier, + STATE(5395), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158970] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8837), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158980] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158990] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159000] = 4, + ACTIONS(8839), 1, + anon_sym_COMMA, + ACTIONS(8842), 1, + anon_sym_GT, + STATE(5092), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159014] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159024] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159034] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159044] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8844), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159054] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159064] = 4, + ACTIONS(6913), 1, + anon_sym_implements, + ACTIONS(8846), 1, + anon_sym_LBRACE, + STATE(5827), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159078] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159088] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159098] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159108] = 4, + ACTIONS(2240), 1, + anon_sym_LBRACE, + ACTIONS(8848), 1, + sym_identifier, + STATE(4553), 1, + sym_export_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159122] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159132] = 4, + ACTIONS(6827), 1, + anon_sym_RBRACE, + ACTIONS(8850), 1, + anon_sym_COMMA, + STATE(4812), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159146] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159156] = 3, + ACTIONS(7196), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8852), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159168] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159178] = 4, + ACTIONS(217), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1495), 1, + anon_sym_LBRACE, + STATE(791), 1, + sym_object_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159192] = 3, + ACTIONS(7180), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8852), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159204] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159214] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8450), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159224] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159234] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159244] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159254] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159264] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8854), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [159274] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159284] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8825), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159294] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159304] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159314] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159324] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159334] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159344] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8856), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159354] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159364] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159374] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159384] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159394] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159404] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159414] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159424] = 4, + ACTIONS(8858), 1, + anon_sym_COMMA, + ACTIONS(8860), 1, + anon_sym_RBRACE, + STATE(4804), 1, + aux_sym_enum_body_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159438] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8862), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159448] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159458] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159468] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159478] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159488] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159498] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159508] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159518] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159528] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8868), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159542] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159552] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8870), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159562] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159572] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8862), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159582] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8825), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159592] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159602] = 4, + ACTIONS(8872), 1, + sym_identifier, + ACTIONS(8874), 1, + anon_sym_LBRACK, + ACTIONS(8876), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159616] = 4, + ACTIONS(8878), 1, + sym_identifier, + ACTIONS(8880), 1, + anon_sym_LBRACK, + ACTIONS(8882), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159630] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159640] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8884), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159650] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159660] = 4, + ACTIONS(8886), 1, + sym_identifier, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(8890), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159674] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, + anon_sym_RBRACE, + STATE(5172), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159688] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8892), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159702] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159712] = 4, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8896), 1, + anon_sym_RPAREN, + STATE(5174), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159726] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159736] = 4, + ACTIONS(8898), 1, + sym_identifier, + ACTIONS(8900), 1, + anon_sym_LBRACK, + ACTIONS(8902), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159750] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8337), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159760] = 4, + ACTIONS(3196), 1, + anon_sym_GT, + ACTIONS(8904), 1, + anon_sym_COMMA, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159774] = 3, + ACTIONS(8132), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3626), 2, + anon_sym_in, + anon_sym_of, + [159786] = 4, + ACTIONS(8906), 1, + anon_sym_LPAREN, + ACTIONS(8908), 1, + anon_sym_await, + STATE(74), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159800] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159810] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8910), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159820] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159830] = 4, + ACTIONS(2476), 1, + anon_sym_while, + ACTIONS(8912), 1, + anon_sym_else, + STATE(861), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159844] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159854] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8914), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159868] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159878] = 4, + ACTIONS(5235), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_RBRACE, + STATE(4670), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159892] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159902] = 4, + ACTIONS(1635), 1, + anon_sym_RPAREN, + ACTIONS(8918), 1, + anon_sym_COMMA, + STATE(4625), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [159916] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8920), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159926] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159936] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159946] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8922), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159956] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159966] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159976] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159986] = 4, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(8924), 1, + anon_sym_DOT, + STATE(3129), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160000] = 3, + ACTIONS(8926), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3560), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [160012] = 4, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(8606), 1, + anon_sym_DOT, + STATE(2892), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160026] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160036] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160046] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160056] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160066] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160076] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160086] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160096] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160106] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160116] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160126] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5306), 1, + anon_sym_RPAREN, + STATE(5219), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160140] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(5306), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160154] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160164] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8815), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160174] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160184] = 4, + ACTIONS(8929), 1, + anon_sym_LPAREN, + ACTIONS(8931), 1, + anon_sym_await, + STATE(38), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160198] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160208] = 4, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8933), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160222] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160232] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160242] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160252] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160262] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8805), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160272] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160282] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160292] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160302] = 4, + ACTIONS(2732), 1, + anon_sym_RBRACK, + ACTIONS(8935), 1, + anon_sym_COMMA, + STATE(4759), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160316] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160326] = 4, + ACTIONS(7042), 1, + anon_sym_RBRACE, + ACTIONS(8937), 1, + anon_sym_COMMA, + STATE(4678), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160340] = 4, + ACTIONS(8939), 1, + anon_sym_COMMA, + ACTIONS(8941), 1, + anon_sym_RBRACK, + STATE(4614), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160354] = 4, + ACTIONS(6742), 1, + anon_sym_AMP3, + ACTIONS(6746), 1, + anon_sym_extends, + ACTIONS(7818), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160368] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160378] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8464), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160388] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160398] = 4, + ACTIONS(1928), 1, + anon_sym_COMMA, + ACTIONS(8943), 1, + anon_sym_RPAREN, + STATE(4485), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160412] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160422] = 4, + ACTIONS(3186), 1, + anon_sym_GT, + ACTIONS(8945), 1, + anon_sym_COMMA, + STATE(4479), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160436] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7371), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [160446] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8693), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160456] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4277), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160467] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2164), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160478] = 3, + ACTIONS(8947), 1, + anon_sym_SEMI, + ACTIONS(8949), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160489] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160498] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5417), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160509] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160518] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5984), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160527] = 3, + ACTIONS(8951), 1, + sym_identifier, + ACTIONS(8953), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160538] = 3, + ACTIONS(8955), 1, + anon_sym_SEMI, + ACTIONS(8957), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160549] = 3, + ACTIONS(8959), 1, + anon_sym_SEMI, + ACTIONS(8961), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160560] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5419), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160571] = 3, + ACTIONS(8963), 1, + sym_identifier, + ACTIONS(8965), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160582] = 3, + ACTIONS(8967), 1, + sym_identifier, + ACTIONS(8969), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160593] = 3, + ACTIONS(8971), 1, + sym_identifier, + ACTIONS(8973), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160604] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8446), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160613] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2642), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160624] = 3, + ACTIONS(6909), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160635] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5229), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160646] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4474), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160655] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160664] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(870), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160675] = 3, + ACTIONS(8975), 1, + anon_sym_LBRACE, + STATE(4014), 1, + sym_enum_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160686] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8977), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160695] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5582), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160706] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2216), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160717] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2626), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160728] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2166), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160739] = 3, + ACTIONS(8979), 1, + sym_identifier, + ACTIONS(8981), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160750] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2113), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160761] = 3, + ACTIONS(8983), 1, + sym_identifier, + ACTIONS(8985), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160772] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8987), 2, + anon_sym_in, + anon_sym_of, + [160781] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2235), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160792] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8989), 2, + anon_sym_COMMA, + anon_sym_GT, + [160801] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5996), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160810] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8991), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160819] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2059), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160830] = 3, + ACTIONS(8993), 1, + sym_identifier, + ACTIONS(8995), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160841] = 3, + ACTIONS(8997), 1, + sym_identifier, + ACTIONS(8999), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160852] = 3, + ACTIONS(9001), 1, + sym_identifier, + ACTIONS(9003), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160863] = 3, + ACTIONS(9005), 1, + sym_identifier, + ACTIONS(9007), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160874] = 3, + ACTIONS(9009), 1, + sym_identifier, + ACTIONS(9011), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160885] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9013), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160894] = 3, + ACTIONS(9015), 1, + sym_identifier, + ACTIONS(9017), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160905] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1661), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160916] = 3, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1664), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160927] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5970), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160938] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2650), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160949] = 3, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1668), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160960] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9019), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160969] = 3, + ACTIONS(9021), 1, + anon_sym_LBRACE, + STATE(5481), 1, + sym_object, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160980] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2651), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160991] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5577), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161002] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161011] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5666), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161022] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(5319), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161033] = 3, + ACTIONS(6038), 1, + anon_sym_LPAREN, + STATE(2760), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161044] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161055] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5037), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161064] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(46), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161075] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4703), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161084] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161095] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9027), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161104] = 3, + ACTIONS(3427), 1, + anon_sym_LPAREN, + STATE(1255), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161115] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2659), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161126] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(2549), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161137] = 3, + ACTIONS(9029), 1, + sym_identifier, + ACTIONS(9031), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161148] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9033), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [161157] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2662), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161168] = 3, + ACTIONS(9035), 1, + sym_identifier, + ACTIONS(9037), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161179] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(2551), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161190] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9039), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161199] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2628), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161210] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8574), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [161219] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7487), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [161228] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5574), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161239] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2600), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161250] = 3, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1681), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161261] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(716), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161272] = 3, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8737), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161283] = 3, + ACTIONS(9041), 1, + sym_identifier, + ACTIONS(9043), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161294] = 3, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(9045), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161305] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161314] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7904), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161323] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1684), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161334] = 3, + ACTIONS(9047), 1, + anon_sym_SEMI, + ACTIONS(9049), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161345] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9051), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161354] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4176), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161365] = 3, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5232), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161376] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5393), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161387] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2602), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161398] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2605), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161409] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1686), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161420] = 3, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1688), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161431] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2084), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161442] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2162), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161453] = 3, + ACTIONS(9053), 1, + anon_sym_LBRACE, + STATE(876), 1, + sym_switch_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161464] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2225), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161475] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2214), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161486] = 3, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(5139), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161497] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2167), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161508] = 3, + ACTIONS(9055), 1, + sym_identifier, + ACTIONS(9057), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161519] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5797), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161530] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5605), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161541] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5588), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161552] = 3, + ACTIONS(9059), 1, + sym_identifier, + ACTIONS(9061), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161563] = 3, + ACTIONS(9063), 1, + sym_identifier, + ACTIONS(9065), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161574] = 3, + ACTIONS(7992), 1, + anon_sym_in, + ACTIONS(7994), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161585] = 3, + ACTIONS(1669), 1, + anon_sym_LBRACE, + STATE(235), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161596] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(2504), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161607] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2168), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161618] = 3, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1690), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161629] = 3, + ACTIONS(6909), 1, + anon_sym_LBRACE, + STATE(249), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161640] = 3, + ACTIONS(9067), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161651] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2329), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161662] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(782), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161673] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2177), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161684] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5025), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161693] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7532), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [161702] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2637), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161713] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7534), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [161722] = 3, + ACTIONS(9069), 1, + sym_identifier, + ACTIONS(9071), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161733] = 3, + ACTIONS(9073), 1, + anon_sym_LBRACE, + STATE(859), 1, + sym_enum_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161744] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9075), 2, + anon_sym_COMMA, + anon_sym_GT, + [161753] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7536), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [161762] = 3, + ACTIONS(9077), 1, + anon_sym_SEMI, + ACTIONS(9079), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161773] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2090), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161784] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2314), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161795] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1694), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161806] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5984), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161815] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5496), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161826] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5988), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161835] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4351), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161846] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5730), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161857] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5257), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161868] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5796), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161879] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5847), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161890] = 3, + ACTIONS(9081), 1, + sym_identifier, + STATE(5109), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161901] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4363), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161912] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9083), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161921] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2609), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161932] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161941] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2610), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161952] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1695), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161963] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161974] = 3, + ACTIONS(9085), 1, + anon_sym_SEMI, + ACTIONS(9087), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161985] = 3, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1696), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161996] = 3, + ACTIONS(9089), 1, + anon_sym_SEMI, + ACTIONS(9091), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162007] = 3, + ACTIONS(9093), 1, + anon_sym_SEMI, + ACTIONS(9095), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162018] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9097), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162027] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9099), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162036] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9101), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162045] = 3, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1697), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162056] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1698), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162067] = 3, + ACTIONS(9103), 1, + anon_sym_SEMI, + ACTIONS(9105), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162078] = 3, + ACTIONS(1669), 1, + anon_sym_LBRACE, + STATE(247), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162089] = 3, + ACTIONS(8219), 1, + anon_sym_from, + STATE(5368), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162100] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8785), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162109] = 3, + ACTIONS(9107), 1, + sym_identifier, + ACTIONS(9109), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162120] = 3, + ACTIONS(9111), 1, + sym_identifier, + ACTIONS(9113), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162131] = 3, + ACTIONS(9115), 1, + sym_identifier, + ACTIONS(9117), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162142] = 3, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(817), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162153] = 3, + ACTIONS(9119), 1, + sym_identifier, + ACTIONS(9121), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162164] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2638), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162175] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9123), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162184] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(2511), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162195] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8509), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162204] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5305), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162215] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2213), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162226] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4459), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162237] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6025), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162246] = 3, + ACTIONS(6909), 1, + anon_sym_LBRACE, + STATE(251), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162257] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9125), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162266] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162277] = 3, + ACTIONS(8219), 1, + anon_sym_from, + STATE(4206), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162288] = 3, + ACTIONS(9127), 1, + anon_sym_in, + ACTIONS(9129), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162299] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2645), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162310] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2341), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162321] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2347), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162332] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5677), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162343] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2640), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162354] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9131), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162363] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2215), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162374] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4466), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162385] = 3, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(837), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162396] = 3, + ACTIONS(4757), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162407] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2663), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162418] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4408), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162429] = 3, + ACTIONS(9133), 1, + sym_identifier, + ACTIONS(9135), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162440] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2615), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162451] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2616), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162462] = 3, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1700), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162473] = 3, + ACTIONS(8741), 1, + sym_identifier, + ACTIONS(8745), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162484] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1701), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162495] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5972), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162504] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5352), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162515] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5976), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162524] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(86), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162535] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2350), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162546] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162555] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2218), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162566] = 3, + ACTIONS(9137), 1, + sym_identifier, + ACTIONS(9139), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162577] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(4092), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162588] = 3, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2138), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162599] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9141), 2, + anon_sym_COMMA, + anon_sym_GT, + [162608] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9143), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162617] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(4312), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162628] = 3, + ACTIONS(9145), 1, + sym_identifier, + ACTIONS(9147), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162639] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(4374), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162650] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5607), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162661] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2617), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162672] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5736), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162683] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2618), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162694] = 3, + ACTIONS(4502), 1, + anon_sym_LPAREN, + STATE(2301), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162705] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9149), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162714] = 3, + ACTIONS(9151), 1, + sym_identifier, + ACTIONS(9153), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162725] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8631), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162734] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5774), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162745] = 3, + ACTIONS(9155), 1, + sym_identifier, + STATE(4973), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162756] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2620), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162767] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2621), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162778] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5829), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162789] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162798] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9157), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162807] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2622), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162818] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2623), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162829] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9159), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162838] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2624), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162849] = 3, + ACTIONS(9161), 1, + sym_identifier, + ACTIONS(9163), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162860] = 3, + ACTIONS(6456), 1, + anon_sym_LPAREN, + STATE(3430), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162871] = 3, + ACTIONS(9165), 1, + sym_identifier, + ACTIONS(9167), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162882] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5498), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162893] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8842), 2, + anon_sym_COMMA, + anon_sym_GT, + [162902] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5934), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162913] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5491), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162924] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2102), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162935] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1679), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162944] = 3, + ACTIONS(9169), 1, + sym_identifier, + ACTIONS(9171), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162955] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(44), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162966] = 3, + ACTIONS(9173), 1, + sym_identifier, + ACTIONS(9175), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162977] = 3, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(789), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162988] = 3, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8647), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162999] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(809), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163010] = 3, + ACTIONS(3200), 1, + sym_jsx_identifier, + ACTIONS(9177), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163021] = 3, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(9179), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163032] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(767), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163043] = 3, + ACTIONS(9067), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163054] = 3, + ACTIONS(8219), 1, + anon_sym_from, + STATE(4129), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163065] = 3, + ACTIONS(9181), 1, + sym_identifier, + ACTIONS(9183), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163076] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(4347), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163087] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(768), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163098] = 3, + ACTIONS(7178), 1, + anon_sym_LBRACE, + STATE(4358), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163109] = 3, + ACTIONS(8523), 1, + sym_identifier, + ACTIONS(8527), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163120] = 3, + ACTIONS(9185), 1, + sym_identifier, + ACTIONS(9187), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163131] = 3, + ACTIONS(9189), 1, + anon_sym_SEMI, + ACTIONS(9191), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163142] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163153] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8498), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163162] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9193), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163171] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9195), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163180] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2653), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163191] = 3, + ACTIONS(9197), 1, + sym_identifier, + ACTIONS(9199), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163202] = 3, + ACTIONS(9201), 1, + anon_sym_LPAREN, + STATE(755), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163213] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(763), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163224] = 3, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3753), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163235] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2660), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163246] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5645), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163257] = 3, + ACTIONS(9203), 1, + sym_identifier, + ACTIONS(9205), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163268] = 3, + ACTIONS(9207), 1, + anon_sym_COMMA, + ACTIONS(9209), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163279] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6000), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163288] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2606), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163299] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8493), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163308] = 3, + ACTIONS(7178), 1, + anon_sym_LBRACE, + STATE(4380), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163319] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9211), 2, + anon_sym_COMMA, + anon_sym_GT, + [163328] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5992), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163337] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5422), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163348] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6004), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163357] = 3, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3269), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163368] = 3, + ACTIONS(8872), 1, + sym_identifier, + ACTIONS(8876), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163379] = 3, + ACTIONS(7178), 1, + anon_sym_LBRACE, + STATE(781), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163390] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5980), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163399] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5958), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163408] = 3, + ACTIONS(9213), 1, + sym_identifier, + ACTIONS(9215), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163419] = 3, + ACTIONS(6909), 1, + anon_sym_LBRACE, + STATE(248), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163430] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2613), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163441] = 3, + ACTIONS(9217), 1, + sym_identifier, + ACTIONS(9219), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163452] = 3, + ACTIONS(7100), 1, + anon_sym_LBRACE, + STATE(824), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163463] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(3822), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163474] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2634), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163485] = 3, + ACTIONS(9221), 1, + sym_identifier, + ACTIONS(9223), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163496] = 3, + ACTIONS(9073), 1, + anon_sym_LBRACE, + STATE(811), 1, + sym_enum_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163507] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(73), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163518] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2625), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163529] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163540] = 3, + ACTIONS(9225), 1, + sym_identifier, + ACTIONS(9227), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163551] = 3, + ACTIONS(6798), 1, + anon_sym_LBRACE, + STATE(1623), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163562] = 3, + ACTIONS(9067), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163573] = 3, + ACTIONS(3530), 1, + anon_sym_COLON, + STATE(5530), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163584] = 3, + ACTIONS(4148), 1, + anon_sym_LBRACE, + STATE(1625), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163595] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2095), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163606] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9229), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163615] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5947), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163626] = 3, + ACTIONS(7178), 1, + anon_sym_LBRACE, + STATE(776), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163637] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2136), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163648] = 3, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8466), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163659] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(4188), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163670] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(761), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163681] = 3, + ACTIONS(3530), 1, + anon_sym_COLON, + STATE(5290), 1, + sym_type_annotation, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163692] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9231), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163701] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2619), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163712] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8565), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163721] = 3, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(9233), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163732] = 3, + ACTIONS(7178), 1, + anon_sym_LBRACE, + STATE(4039), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163743] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2607), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163754] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9235), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [163763] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2631), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163774] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2611), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163785] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4577), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163794] = 3, + ACTIONS(8975), 1, + anon_sym_LBRACE, + STATE(4043), 1, + sym_enum_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163805] = 3, + ACTIONS(6593), 1, + anon_sym_COLON, + ACTIONS(8933), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163816] = 3, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(9237), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163827] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2657), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163838] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2632), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163849] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2612), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163860] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4581), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [163869] = 3, + ACTIONS(9239), 1, + sym_identifier, + ACTIONS(9241), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163880] = 3, + ACTIONS(9243), 1, + sym_identifier, + ACTIONS(9245), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163891] = 3, + ACTIONS(8699), 1, + sym_identifier, + ACTIONS(8703), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163902] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2133), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163913] = 3, + ACTIONS(3938), 1, + anon_sym_LPAREN, + STATE(1635), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163924] = 3, + ACTIONS(8409), 1, + sym_identifier, + ACTIONS(8413), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163935] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2647), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163946] = 3, + ACTIONS(6995), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163957] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5683), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163968] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(4319), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163979] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5694), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163990] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5972), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [163999] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(4324), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164010] = 3, + ACTIONS(6466), 1, + anon_sym_LPAREN, + STATE(5701), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164021] = 3, + ACTIONS(3244), 1, + anon_sym_LPAREN, + STATE(3569), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164032] = 3, + ACTIONS(9247), 1, + sym_identifier, + ACTIONS(9249), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164043] = 3, + ACTIONS(9251), 1, + sym_identifier, + ACTIONS(9253), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164054] = 3, + ACTIONS(9255), 1, + sym_identifier, + ACTIONS(9257), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164065] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5035), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [164074] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5976), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164083] = 3, + ACTIONS(4206), 1, + anon_sym_LBRACE, + STATE(2144), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164094] = 3, + ACTIONS(9025), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164105] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2648), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164116] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5227), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164127] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(9259), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [164136] = 3, + ACTIONS(9261), 1, + sym_identifier, + ACTIONS(9263), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164147] = 3, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(2156), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164158] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5962), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [164167] = 3, + ACTIONS(7465), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164178] = 3, + ACTIONS(2444), 1, + anon_sym_LBRACE, + STATE(5354), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164189] = 2, + ACTIONS(9265), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164197] = 2, + ACTIONS(9267), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164205] = 2, + ACTIONS(9269), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164213] = 2, + ACTIONS(9271), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164221] = 2, + ACTIONS(9273), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164229] = 2, + ACTIONS(9275), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164237] = 2, + ACTIONS(5389), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164245] = 2, + ACTIONS(9277), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164253] = 2, + ACTIONS(9279), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164261] = 2, + ACTIONS(9281), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164269] = 2, + ACTIONS(9283), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164277] = 2, + ACTIONS(9285), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164285] = 2, + ACTIONS(9287), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164293] = 2, + ACTIONS(9289), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164301] = 2, + ACTIONS(9291), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164309] = 2, + ACTIONS(9293), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164317] = 2, + ACTIONS(5349), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164325] = 2, + ACTIONS(9295), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164333] = 2, + ACTIONS(9297), 1, + anon_sym_class, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164341] = 2, + ACTIONS(9299), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164349] = 2, + ACTIONS(9301), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9303), 1, + anon_sym_SLASH2, + [164367] = 2, + ACTIONS(9305), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164375] = 2, + ACTIONS(9307), 1, + anon_sym_namespace, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164383] = 2, + ACTIONS(9309), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164391] = 2, + ACTIONS(5438), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164399] = 2, + ACTIONS(9311), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164407] = 2, + ACTIONS(9313), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164415] = 2, + ACTIONS(9315), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164423] = 2, + ACTIONS(5547), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164431] = 2, + ACTIONS(9317), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164439] = 2, + ACTIONS(9319), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9321), 1, + sym_regex_pattern, + [164457] = 2, + ACTIONS(9323), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164465] = 2, + ACTIONS(9325), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164473] = 2, + ACTIONS(9327), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164481] = 2, + ACTIONS(9329), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164489] = 2, + ACTIONS(9331), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164497] = 2, + ACTIONS(9333), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164505] = 2, + ACTIONS(9335), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164513] = 2, + ACTIONS(8755), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164521] = 2, + ACTIONS(9337), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164529] = 2, + ACTIONS(9339), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164537] = 2, + ACTIONS(9341), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164545] = 2, + ACTIONS(8653), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164553] = 2, + ACTIONS(9343), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164561] = 2, + ACTIONS(9345), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164569] = 2, + ACTIONS(9347), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164577] = 2, + ACTIONS(9349), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164585] = 2, + ACTIONS(9351), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164593] = 2, + ACTIONS(8569), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164601] = 2, + ACTIONS(9353), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164609] = 2, + ACTIONS(9355), 1, + anon_sym_class, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164617] = 2, + ACTIONS(9357), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164625] = 2, + ACTIONS(9359), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164633] = 2, + ACTIONS(9361), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164641] = 2, + ACTIONS(9363), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164649] = 2, + ACTIONS(9365), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9367), 1, + sym_regex_pattern, + [164667] = 2, + ACTIONS(9369), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164675] = 2, + ACTIONS(9371), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164683] = 2, + ACTIONS(9373), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164691] = 2, + ACTIONS(9375), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164699] = 2, + ACTIONS(9377), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164707] = 2, + ACTIONS(9379), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164715] = 2, + ACTIONS(9381), 1, + anon_sym_require, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164723] = 2, + ACTIONS(9383), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164731] = 2, + ACTIONS(9385), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164739] = 2, + ACTIONS(9387), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164747] = 2, + ACTIONS(9389), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164755] = 2, + ACTIONS(9391), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164763] = 2, + ACTIONS(9393), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164771] = 2, + ACTIONS(8637), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164779] = 2, + ACTIONS(9395), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164787] = 2, + ACTIONS(9397), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164795] = 2, + ACTIONS(9399), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164803] = 2, + ACTIONS(9401), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164811] = 2, + ACTIONS(9403), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164819] = 2, + ACTIONS(9405), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164827] = 2, + ACTIONS(9407), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164835] = 2, + ACTIONS(9409), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164843] = 2, + ACTIONS(9411), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164851] = 2, + ACTIONS(9413), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164859] = 2, + ACTIONS(9415), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164867] = 2, + ACTIONS(9417), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164875] = 2, + ACTIONS(9419), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164883] = 2, + ACTIONS(9421), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164891] = 2, + ACTIONS(5519), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164899] = 2, + ACTIONS(9423), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164907] = 2, + ACTIONS(9425), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164915] = 2, + ACTIONS(9427), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164923] = 2, + ACTIONS(9429), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164931] = 2, + ACTIONS(7720), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164939] = 2, + ACTIONS(9431), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164947] = 2, + ACTIONS(9433), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164955] = 2, + ACTIONS(9435), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164963] = 2, + ACTIONS(9437), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164971] = 2, + ACTIONS(5371), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164979] = 2, + ACTIONS(9439), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164987] = 2, + ACTIONS(9441), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164995] = 2, + ACTIONS(9443), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165003] = 2, + ACTIONS(9445), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165011] = 2, + ACTIONS(9447), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165019] = 2, + ACTIONS(9449), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165027] = 2, + ACTIONS(9451), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165035] = 2, + ACTIONS(9453), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165043] = 2, + ACTIONS(9455), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165051] = 2, + ACTIONS(9457), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165059] = 2, + ACTIONS(9459), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165067] = 2, + ACTIONS(9461), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165075] = 2, + ACTIONS(7236), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165083] = 2, + ACTIONS(5795), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165091] = 2, + ACTIONS(4444), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165099] = 2, + ACTIONS(5531), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165107] = 2, + ACTIONS(9463), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165115] = 2, + ACTIONS(5379), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165123] = 2, + ACTIONS(9465), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165131] = 2, + ACTIONS(9467), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165139] = 2, + ACTIONS(9469), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165147] = 2, + ACTIONS(6681), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165155] = 2, + ACTIONS(8513), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165163] = 2, + ACTIONS(5535), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165171] = 2, + ACTIONS(9471), 1, + anon_sym_class, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165179] = 2, + ACTIONS(9473), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165187] = 2, + ACTIONS(9475), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165195] = 2, + ACTIONS(9477), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165203] = 2, + ACTIONS(9479), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165211] = 2, + ACTIONS(9481), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165219] = 2, + ACTIONS(9483), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165227] = 2, + ACTIONS(9485), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165235] = 2, + ACTIONS(9487), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165243] = 2, + ACTIONS(9489), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165251] = 2, + ACTIONS(9491), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165259] = 2, + ACTIONS(7349), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165267] = 2, + ACTIONS(9493), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165275] = 2, + ACTIONS(5509), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165283] = 2, + ACTIONS(9495), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165291] = 2, + ACTIONS(9497), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165299] = 2, + ACTIONS(9499), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165307] = 2, + ACTIONS(9501), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165315] = 2, + ACTIONS(9503), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165323] = 2, + ACTIONS(9505), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165331] = 2, + ACTIONS(9507), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165339] = 2, + ACTIONS(9509), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165347] = 2, + ACTIONS(9511), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165355] = 2, + ACTIONS(9505), 1, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165363] = 2, + ACTIONS(9513), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165371] = 2, + ACTIONS(9515), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165379] = 2, + ACTIONS(9517), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165387] = 2, + ACTIONS(9519), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165395] = 2, + ACTIONS(9521), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165403] = 2, + ACTIONS(9523), 1, + anon_sym_class, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165411] = 2, + ACTIONS(9525), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165419] = 2, + ACTIONS(9527), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165427] = 2, + ACTIONS(9529), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165435] = 2, + ACTIONS(9531), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165443] = 2, + ACTIONS(9533), 1, + anon_sym_symbol, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165451] = 2, + ACTIONS(5433), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165459] = 2, + ACTIONS(9535), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165467] = 2, + ACTIONS(9537), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165475] = 2, + ACTIONS(9539), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165483] = 2, + ACTIONS(9541), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165491] = 2, + ACTIONS(9543), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165499] = 2, + ACTIONS(9545), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165507] = 2, + ACTIONS(9547), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165515] = 2, + ACTIONS(9549), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165523] = 2, + ACTIONS(9551), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165531] = 2, + ACTIONS(8647), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165539] = 2, + ACTIONS(8846), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165547] = 2, + ACTIONS(9553), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165555] = 2, + ACTIONS(9555), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165563] = 2, + ACTIONS(9557), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165571] = 2, + ACTIONS(9559), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165579] = 2, + ACTIONS(4026), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165587] = 2, + ACTIONS(9561), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165595] = 2, + ACTIONS(9563), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165603] = 2, + ACTIONS(9565), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165611] = 2, + ACTIONS(7387), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165619] = 2, + ACTIONS(9567), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165627] = 2, + ACTIONS(9569), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165635] = 2, + ACTIONS(9571), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165643] = 2, + ACTIONS(9573), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165651] = 2, + ACTIONS(9575), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165659] = 2, + ACTIONS(9577), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165667] = 2, + ACTIONS(5457), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165675] = 2, + ACTIONS(9579), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165683] = 2, + ACTIONS(9209), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165691] = 2, + ACTIONS(7836), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165699] = 2, + ACTIONS(5402), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165707] = 2, + ACTIONS(5483), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165715] = 2, + ACTIONS(9581), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165723] = 2, + ACTIONS(7732), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165731] = 2, + ACTIONS(9583), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165739] = 2, + ACTIONS(5699), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165747] = 2, + ACTIONS(9585), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165755] = 2, + ACTIONS(9587), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165763] = 2, + ACTIONS(9589), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165771] = 2, + ACTIONS(9591), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165779] = 2, + ACTIONS(9593), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165787] = 2, + ACTIONS(9595), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165795] = 2, + ACTIONS(9597), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165803] = 2, + ACTIONS(9599), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165811] = 2, + ACTIONS(9601), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165819] = 2, + ACTIONS(6774), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165827] = 2, + ACTIONS(9603), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165835] = 2, + ACTIONS(5101), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165843] = 2, + ACTIONS(9605), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165851] = 2, + ACTIONS(9607), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165859] = 2, + ACTIONS(9609), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165867] = 2, + ACTIONS(9611), 1, + anon_sym_function, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165875] = 2, + ACTIONS(9613), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165883] = 2, + ACTIONS(9615), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165891] = 2, + ACTIONS(9617), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165899] = 2, + ACTIONS(9619), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165907] = 2, + ACTIONS(9621), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165915] = 2, + ACTIONS(9623), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165923] = 2, + ACTIONS(9625), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165931] = 2, + ACTIONS(9627), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165939] = 2, + ACTIONS(8848), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165947] = 2, + ACTIONS(9629), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165955] = 2, + ACTIONS(9631), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165963] = 2, + ACTIONS(9633), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165971] = 2, + ACTIONS(9635), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165979] = 2, + ACTIONS(9637), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165987] = 2, + ACTIONS(9639), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165995] = 2, + ACTIONS(5406), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166003] = 2, + ACTIONS(6110), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166011] = 2, + ACTIONS(9641), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166019] = 2, + ACTIONS(9643), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166027] = 2, + ACTIONS(9645), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166035] = 2, + ACTIONS(9647), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166043] = 2, + ACTIONS(9649), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166051] = 2, + ACTIONS(5485), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166059] = 2, + ACTIONS(6476), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166067] = 2, + ACTIONS(4891), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166075] = 2, + ACTIONS(5487), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166083] = 2, + ACTIONS(9651), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166091] = 2, + ACTIONS(9653), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166099] = 2, + ACTIONS(9655), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166107] = 2, + ACTIONS(9657), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166115] = 2, + ACTIONS(9659), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166123] = 2, + ACTIONS(9661), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166131] = 2, + ACTIONS(9663), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166139] = 2, + ACTIONS(9665), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166147] = 2, + ACTIONS(9667), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166155] = 2, + ACTIONS(4906), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166163] = 2, + ACTIONS(9669), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166171] = 2, + ACTIONS(9671), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166179] = 2, + ACTIONS(9673), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9675), 1, + sym_regex_pattern, + [166197] = 2, + ACTIONS(9677), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166205] = 2, + ACTIONS(9679), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166213] = 2, + ACTIONS(9681), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9683), 1, + sym_regex_pattern, + [166231] = 2, + ACTIONS(9685), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166239] = 2, + ACTIONS(4889), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166247] = 2, + ACTIONS(9687), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166255] = 2, + ACTIONS(9689), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166263] = 2, + ACTIONS(9691), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166271] = 2, + ACTIONS(9693), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166279] = 2, + ACTIONS(9695), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9697), 1, + anon_sym_SLASH2, + [166297] = 2, + ACTIONS(8681), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166305] = 2, + ACTIONS(9699), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166313] = 2, + ACTIONS(9701), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166321] = 2, + ACTIONS(8132), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166329] = 2, + ACTIONS(9703), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166337] = 2, + ACTIONS(5533), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166345] = 2, + ACTIONS(9705), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166353] = 2, + ACTIONS(5523), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166361] = 2, + ACTIONS(9707), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166369] = 2, + ACTIONS(9709), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166377] = 2, + ACTIONS(8298), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166385] = 2, + ACTIONS(9711), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166393] = 2, + ACTIONS(9713), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166401] = 2, + ACTIONS(9715), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166409] = 2, + ACTIONS(9717), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166417] = 2, + ACTIONS(9719), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166425] = 2, + ACTIONS(9721), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166433] = 2, + ACTIONS(5359), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166441] = 2, + ACTIONS(9723), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166449] = 2, + ACTIONS(5511), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166457] = 2, + ACTIONS(9725), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166465] = 2, + ACTIONS(9727), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166473] = 2, + ACTIONS(5308), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166481] = 2, + ACTIONS(5513), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166489] = 2, + ACTIONS(9729), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166497] = 2, + ACTIONS(5515), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166505] = 2, + ACTIONS(9731), 1, + anon_sym_namespace, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166513] = 2, + ACTIONS(9617), 1, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166521] = 2, + ACTIONS(5517), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166529] = 2, + ACTIONS(9733), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166537] = 2, + ACTIONS(4957), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166545] = 2, + ACTIONS(9735), 1, + anon_sym_while, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166553] = 2, + ACTIONS(9737), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166561] = 2, + ACTIONS(9739), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166569] = 2, + ACTIONS(9741), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166577] = 2, + ACTIONS(9743), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166585] = 2, + ACTIONS(9745), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166593] = 2, + ACTIONS(9747), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166601] = 2, + ACTIONS(9749), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166609] = 2, + ACTIONS(9751), 1, + anon_sym_symbol, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166617] = 2, + ACTIONS(9753), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166625] = 2, + ACTIONS(9755), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166633] = 2, + ACTIONS(4879), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166641] = 2, + ACTIONS(9757), 1, + anon_sym_symbol, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166649] = 2, + ACTIONS(9759), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166657] = 2, + ACTIONS(9761), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166665] = 2, + ACTIONS(9763), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166673] = 2, + ACTIONS(9765), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166681] = 2, + ACTIONS(9767), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166689] = 2, + ACTIONS(9769), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166697] = 2, + ACTIONS(9771), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166705] = 2, + ACTIONS(9773), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166713] = 2, + ACTIONS(9775), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166721] = 2, + ACTIONS(9777), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166729] = 2, + ACTIONS(9779), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166737] = 2, + ACTIONS(9781), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9783), 1, + anon_sym_SLASH2, + [166755] = 2, + ACTIONS(9785), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166763] = 2, + ACTIONS(9787), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166771] = 2, + ACTIONS(9789), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166779] = 2, + ACTIONS(9791), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166787] = 2, + ACTIONS(5361), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166795] = 2, + ACTIONS(9793), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166803] = 2, + ACTIONS(9795), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166811] = 2, + ACTIONS(9797), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166819] = 2, + ACTIONS(9799), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166827] = 2, + ACTIONS(9801), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166835] = 2, + ACTIONS(9803), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166843] = 2, + ACTIONS(5463), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166851] = 2, + ACTIONS(5543), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166859] = 2, + ACTIONS(9805), 1, + anon_sym_symbol, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9807), 1, + anon_sym_SLASH2, + [166877] = 2, + ACTIONS(5545), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166885] = 2, + ACTIONS(9809), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166893] = 2, + ACTIONS(5221), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166901] = 2, + ACTIONS(9811), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166909] = 2, + ACTIONS(9813), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9815), 1, + anon_sym_SLASH2, + [166927] = 2, + ACTIONS(9817), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166935] = 2, + ACTIONS(9819), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166943] = 2, + ACTIONS(9821), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166951] = 2, + ACTIONS(9823), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166959] = 2, + ACTIONS(9825), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166967] = 2, + ACTIONS(9827), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166975] = 2, + ACTIONS(9829), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166983] = 2, + ACTIONS(9831), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166991] = 2, + ACTIONS(9833), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [166999] = 2, + ACTIONS(8466), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167007] = 2, + ACTIONS(9835), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167015] = 2, + ACTIONS(9837), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167023] = 2, + ACTIONS(9839), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167031] = 2, + ACTIONS(8933), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167039] = 2, + ACTIONS(9841), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167047] = 2, + ACTIONS(9843), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167055] = 2, + ACTIONS(9845), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167063] = 2, + ACTIONS(9847), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167071] = 2, + ACTIONS(9849), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167079] = 2, + ACTIONS(9851), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167087] = 2, + ACTIONS(9853), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167095] = 2, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167103] = 2, + ACTIONS(9855), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167111] = 2, + ACTIONS(9857), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167119] = 2, + ACTIONS(9859), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167127] = 2, + ACTIONS(9861), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167135] = 2, + ACTIONS(9863), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167143] = 2, + ACTIONS(8134), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167151] = 2, + ACTIONS(9865), 1, + anon_sym_function, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167159] = 2, + ACTIONS(9867), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167167] = 2, + ACTIONS(9869), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167175] = 2, + ACTIONS(8941), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167183] = 2, + ACTIONS(9871), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167191] = 2, + ACTIONS(9873), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167199] = 2, + ACTIONS(5585), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167207] = 2, + ACTIONS(9875), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167215] = 2, + ACTIONS(9877), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167223] = 2, + ACTIONS(9879), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167231] = 2, + ACTIONS(9881), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167239] = 2, + ACTIONS(9883), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167247] = 2, + ACTIONS(9885), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167255] = 2, + ACTIONS(9887), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167263] = 2, + ACTIONS(9889), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167271] = 2, + ACTIONS(8737), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167279] = 2, + ACTIONS(9891), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167287] = 2, + ACTIONS(9893), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167295] = 2, + ACTIONS(5521), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167303] = 2, + ACTIONS(5191), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167311] = 2, + ACTIONS(9895), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167319] = 2, + ACTIONS(9897), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167327] = 2, + ACTIONS(9899), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167335] = 2, + ACTIONS(9901), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167343] = 2, + ACTIONS(9903), 1, + sym_number, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167351] = 2, + ACTIONS(9905), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167359] = 2, + ACTIONS(9907), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167367] = 2, + ACTIONS(4834), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167375] = 2, + ACTIONS(9909), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167383] = 2, + ACTIONS(8472), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167391] = 2, + ACTIONS(9911), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167399] = 2, + ACTIONS(5231), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167407] = 2, + ACTIONS(9913), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167415] = 2, + ACTIONS(9915), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167423] = 2, + ACTIONS(9917), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167431] = 2, + ACTIONS(5603), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167439] = 2, + ACTIONS(9919), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167447] = 2, + ACTIONS(4908), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167455] = 2, + ACTIONS(9921), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167463] = 2, + ACTIONS(9923), 1, + anon_sym_new, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167471] = 2, + ACTIONS(9925), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167479] = 2, + ACTIONS(9927), 1, + anon_sym_symbol, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167487] = 2, + ACTIONS(9929), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [167495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9931), 1, + sym_regex_pattern, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(1167)] = 0, + [SMALL_STATE(1168)] = 93, + [SMALL_STATE(1169)] = 186, + [SMALL_STATE(1170)] = 277, + [SMALL_STATE(1171)] = 370, + [SMALL_STATE(1172)] = 443, + [SMALL_STATE(1173)] = 536, + [SMALL_STATE(1174)] = 607, + [SMALL_STATE(1175)] = 702, + [SMALL_STATE(1176)] = 775, + [SMALL_STATE(1177)] = 868, + [SMALL_STATE(1178)] = 957, + [SMALL_STATE(1179)] = 1028, + [SMALL_STATE(1180)] = 1099, + [SMALL_STATE(1181)] = 1170, + [SMALL_STATE(1182)] = 1259, + [SMALL_STATE(1183)] = 1330, + [SMALL_STATE(1184)] = 1401, + [SMALL_STATE(1185)] = 1472, + [SMALL_STATE(1186)] = 1560, + [SMALL_STATE(1187)] = 1630, + [SMALL_STATE(1188)] = 1720, + [SMALL_STATE(1189)] = 1810, + [SMALL_STATE(1190)] = 1900, + [SMALL_STATE(1191)] = 1990, + [SMALL_STATE(1192)] = 2080, + [SMALL_STATE(1193)] = 2166, + [SMALL_STATE(1194)] = 2254, + [SMALL_STATE(1195)] = 2344, + [SMALL_STATE(1196)] = 2432, + [SMALL_STATE(1197)] = 2520, + [SMALL_STATE(1198)] = 2612, + [SMALL_STATE(1199)] = 2704, + [SMALL_STATE(1200)] = 2792, + [SMALL_STATE(1201)] = 2880, + [SMALL_STATE(1202)] = 2968, + [SMALL_STATE(1203)] = 3056, + [SMALL_STATE(1204)] = 3126, + [SMALL_STATE(1205)] = 3212, + [SMALL_STATE(1206)] = 3300, + [SMALL_STATE(1207)] = 3390, + [SMALL_STATE(1208)] = 3464, + [SMALL_STATE(1209)] = 3554, + [SMALL_STATE(1210)] = 3645, + [SMALL_STATE(1211)] = 3732, + [SMALL_STATE(1212)] = 3823, + [SMALL_STATE(1213)] = 3904, + [SMALL_STATE(1214)] = 3991, + [SMALL_STATE(1215)] = 4078, + [SMALL_STATE(1216)] = 4167, + [SMALL_STATE(1217)] = 4258, + [SMALL_STATE(1218)] = 4337, + [SMALL_STATE(1219)] = 4428, + [SMALL_STATE(1220)] = 4523, + [SMALL_STATE(1221)] = 4610, + [SMALL_STATE(1222)] = 4699, + [SMALL_STATE(1223)] = 4777, + [SMALL_STATE(1224)] = 4869, + [SMALL_STATE(1225)] = 4955, + [SMALL_STATE(1226)] = 5033, + [SMALL_STATE(1227)] = 5123, + [SMALL_STATE(1228)] = 5197, + [SMALL_STATE(1229)] = 5283, + [SMALL_STATE(1230)] = 5361, + [SMALL_STATE(1231)] = 5453, + [SMALL_STATE(1232)] = 5539, + [SMALL_STATE(1233)] = 5625, + [SMALL_STATE(1234)] = 5711, + [SMALL_STATE(1235)] = 5785, + [SMALL_STATE(1236)] = 5871, + [SMALL_STATE(1237)] = 5961, + [SMALL_STATE(1238)] = 6041, + [SMALL_STATE(1239)] = 6119, + [SMALL_STATE(1240)] = 6205, + [SMALL_STATE(1241)] = 6291, + [SMALL_STATE(1242)] = 6377, + [SMALL_STATE(1243)] = 6463, + [SMALL_STATE(1244)] = 6537, + [SMALL_STATE(1245)] = 6627, + [SMALL_STATE(1246)] = 6701, + [SMALL_STATE(1247)] = 6787, + [SMALL_STATE(1248)] = 6855, + [SMALL_STATE(1249)] = 6945, + [SMALL_STATE(1250)] = 7031, + [SMALL_STATE(1251)] = 7105, + [SMALL_STATE(1252)] = 7191, + [SMALL_STATE(1253)] = 7269, + [SMALL_STATE(1254)] = 7347, + [SMALL_STATE(1255)] = 7418, + [SMALL_STATE(1256)] = 7485, + [SMALL_STATE(1257)] = 7570, + [SMALL_STATE(1258)] = 7639, + [SMALL_STATE(1259)] = 7728, + [SMALL_STATE(1260)] = 7817, + [SMALL_STATE(1261)] = 7906, + [SMALL_STATE(1262)] = 7981, + [SMALL_STATE(1263)] = 8056, + [SMALL_STATE(1264)] = 8135, + [SMALL_STATE(1265)] = 8214, + [SMALL_STATE(1266)] = 8283, + [SMALL_STATE(1267)] = 8368, + [SMALL_STATE(1268)] = 8445, + [SMALL_STATE(1269)] = 8528, + [SMALL_STATE(1270)] = 8597, + [SMALL_STATE(1271)] = 8674, + [SMALL_STATE(1272)] = 8743, + [SMALL_STATE(1273)] = 8812, + [SMALL_STATE(1274)] = 8879, + [SMALL_STATE(1275)] = 8954, + [SMALL_STATE(1276)] = 9031, + [SMALL_STATE(1277)] = 9120, + [SMALL_STATE(1278)] = 9195, + [SMALL_STATE(1279)] = 9282, + [SMALL_STATE(1280)] = 9365, + [SMALL_STATE(1281)] = 9434, + [SMALL_STATE(1282)] = 9519, + [SMALL_STATE(1283)] = 9585, + [SMALL_STATE(1284)] = 9661, + [SMALL_STATE(1285)] = 9745, + [SMALL_STATE(1286)] = 9823, + [SMALL_STATE(1287)] = 9895, + [SMALL_STATE(1288)] = 9983, + [SMALL_STATE(1289)] = 10049, + [SMALL_STATE(1290)] = 10123, + [SMALL_STATE(1291)] = 10197, + [SMALL_STATE(1292)] = 10263, + [SMALL_STATE(1293)] = 10337, + [SMALL_STATE(1294)] = 10403, + [SMALL_STATE(1295)] = 10477, + [SMALL_STATE(1296)] = 10555, + [SMALL_STATE(1297)] = 10627, + [SMALL_STATE(1298)] = 10699, + [SMALL_STATE(1299)] = 10765, + [SMALL_STATE(1300)] = 10839, + [SMALL_STATE(1301)] = 10921, + [SMALL_STATE(1302)] = 10987, + [SMALL_STATE(1303)] = 11053, + [SMALL_STATE(1304)] = 11125, + [SMALL_STATE(1305)] = 11197, + [SMALL_STATE(1306)] = 11281, + [SMALL_STATE(1307)] = 11347, + [SMALL_STATE(1308)] = 11431, + [SMALL_STATE(1309)] = 11509, + [SMALL_STATE(1310)] = 11581, + [SMALL_STATE(1311)] = 11647, + [SMALL_STATE(1312)] = 11721, + [SMALL_STATE(1313)] = 11793, + [SMALL_STATE(1314)] = 11859, + [SMALL_STATE(1315)] = 11939, + [SMALL_STATE(1316)] = 12019, + [SMALL_STATE(1317)] = 12089, + [SMALL_STATE(1318)] = 12155, + [SMALL_STATE(1319)] = 12227, + [SMALL_STATE(1320)] = 12315, + [SMALL_STATE(1321)] = 12381, + [SMALL_STATE(1322)] = 12452, + [SMALL_STATE(1323)] = 12519, + [SMALL_STATE(1324)] = 12596, + [SMALL_STATE(1325)] = 12673, + [SMALL_STATE(1326)] = 12744, + [SMALL_STATE(1327)] = 12815, + [SMALL_STATE(1328)] = 12890, + [SMALL_STATE(1329)] = 12961, + [SMALL_STATE(1330)] = 13040, + [SMALL_STATE(1331)] = 13113, + [SMALL_STATE(1332)] = 13190, + [SMALL_STATE(1333)] = 13265, + [SMALL_STATE(1334)] = 13338, + [SMALL_STATE(1335)] = 13407, + [SMALL_STATE(1336)] = 13480, + [SMALL_STATE(1337)] = 13549, + [SMALL_STATE(1338)] = 13616, + [SMALL_STATE(1339)] = 13689, + [SMALL_STATE(1340)] = 13766, + [SMALL_STATE(1341)] = 13849, + [SMALL_STATE(1342)] = 13918, + [SMALL_STATE(1343)] = 13987, + [SMALL_STATE(1344)] = 14055, + [SMALL_STATE(1345)] = 14121, + [SMALL_STATE(1346)] = 14187, + [SMALL_STATE(1347)] = 14307, + [SMALL_STATE(1348)] = 14379, + [SMALL_STATE(1349)] = 14499, + [SMALL_STATE(1350)] = 14619, + [SMALL_STATE(1351)] = 14739, + [SMALL_STATE(1352)] = 14859, + [SMALL_STATE(1353)] = 14931, + [SMALL_STATE(1354)] = 15001, + [SMALL_STATE(1355)] = 15075, + [SMALL_STATE(1356)] = 15145, + [SMALL_STATE(1357)] = 15215, + [SMALL_STATE(1358)] = 15289, + [SMALL_STATE(1359)] = 15359, + [SMALL_STATE(1360)] = 15433, + [SMALL_STATE(1361)] = 15553, + [SMALL_STATE(1362)] = 15629, + [SMALL_STATE(1363)] = 15699, + [SMALL_STATE(1364)] = 15769, + [SMALL_STATE(1365)] = 15841, + [SMALL_STATE(1366)] = 15915, + [SMALL_STATE(1367)] = 15985, + [SMALL_STATE(1368)] = 16055, + [SMALL_STATE(1369)] = 16128, + [SMALL_STATE(1370)] = 16195, + [SMALL_STATE(1371)] = 16264, + [SMALL_STATE(1372)] = 16335, + [SMALL_STATE(1373)] = 16404, + [SMALL_STATE(1374)] = 16477, + [SMALL_STATE(1375)] = 16548, + [SMALL_STATE(1376)] = 16617, + [SMALL_STATE(1377)] = 16684, + [SMALL_STATE(1378)] = 16753, + [SMALL_STATE(1379)] = 16822, + [SMALL_STATE(1380)] = 16891, + [SMALL_STATE(1381)] = 16960, + [SMALL_STATE(1382)] = 17029, + [SMALL_STATE(1383)] = 17097, + [SMALL_STATE(1384)] = 17213, + [SMALL_STATE(1385)] = 17329, + [SMALL_STATE(1386)] = 17445, + [SMALL_STATE(1387)] = 17561, + [SMALL_STATE(1388)] = 17677, + [SMALL_STATE(1389)] = 17793, + [SMALL_STATE(1390)] = 17909, + [SMALL_STATE(1391)] = 18025, + [SMALL_STATE(1392)] = 18141, + [SMALL_STATE(1393)] = 18257, + [SMALL_STATE(1394)] = 18325, + [SMALL_STATE(1395)] = 18441, + [SMALL_STATE(1396)] = 18557, + [SMALL_STATE(1397)] = 18625, + [SMALL_STATE(1398)] = 18693, + [SMALL_STATE(1399)] = 18761, + [SMALL_STATE(1400)] = 18829, + [SMALL_STATE(1401)] = 18897, + [SMALL_STATE(1402)] = 18965, + [SMALL_STATE(1403)] = 19031, + [SMALL_STATE(1404)] = 19099, + [SMALL_STATE(1405)] = 19167, + [SMALL_STATE(1406)] = 19235, + [SMALL_STATE(1407)] = 19303, + [SMALL_STATE(1408)] = 19371, + [SMALL_STATE(1409)] = 19487, + [SMALL_STATE(1410)] = 19603, + [SMALL_STATE(1411)] = 19719, + [SMALL_STATE(1412)] = 19787, + [SMALL_STATE(1413)] = 19855, + [SMALL_STATE(1414)] = 19923, + [SMALL_STATE(1415)] = 19993, + [SMALL_STATE(1416)] = 20109, + [SMALL_STATE(1417)] = 20177, + [SMALL_STATE(1418)] = 20245, + [SMALL_STATE(1419)] = 20313, + [SMALL_STATE(1420)] = 20429, + [SMALL_STATE(1421)] = 20497, + [SMALL_STATE(1422)] = 20563, + [SMALL_STATE(1423)] = 20679, + [SMALL_STATE(1424)] = 20747, + [SMALL_STATE(1425)] = 20812, + [SMALL_STATE(1426)] = 20877, + [SMALL_STATE(1427)] = 20942, + [SMALL_STATE(1428)] = 21007, + [SMALL_STATE(1429)] = 21072, + [SMALL_STATE(1430)] = 21137, + [SMALL_STATE(1431)] = 21202, + [SMALL_STATE(1432)] = 21267, + [SMALL_STATE(1433)] = 21332, + [SMALL_STATE(1434)] = 21444, + [SMALL_STATE(1435)] = 21556, + [SMALL_STATE(1436)] = 21668, + [SMALL_STATE(1437)] = 21780, + [SMALL_STATE(1438)] = 21892, + [SMALL_STATE(1439)] = 22004, + [SMALL_STATE(1440)] = 22116, + [SMALL_STATE(1441)] = 22227, + [SMALL_STATE(1442)] = 22338, + [SMALL_STATE(1443)] = 22449, + [SMALL_STATE(1444)] = 22568, + [SMALL_STATE(1445)] = 22687, + [SMALL_STATE(1446)] = 22798, + [SMALL_STATE(1447)] = 22917, + [SMALL_STATE(1448)] = 23028, + [SMALL_STATE(1449)] = 23139, + [SMALL_STATE(1450)] = 23250, + [SMALL_STATE(1451)] = 23361, + [SMALL_STATE(1452)] = 23472, + [SMALL_STATE(1453)] = 23583, + [SMALL_STATE(1454)] = 23702, + [SMALL_STATE(1455)] = 23821, + [SMALL_STATE(1456)] = 23932, + [SMALL_STATE(1457)] = 24034, + [SMALL_STATE(1458)] = 24136, + [SMALL_STATE(1459)] = 24238, + [SMALL_STATE(1460)] = 24316, + [SMALL_STATE(1461)] = 24418, + [SMALL_STATE(1462)] = 24520, + [SMALL_STATE(1463)] = 24622, + [SMALL_STATE(1464)] = 24689, + [SMALL_STATE(1465)] = 24800, + [SMALL_STATE(1466)] = 24867, + [SMALL_STATE(1467)] = 24934, + [SMALL_STATE(1468)] = 25043, + [SMALL_STATE(1469)] = 25100, + [SMALL_STATE(1470)] = 25165, + [SMALL_STATE(1471)] = 25222, + [SMALL_STATE(1472)] = 25280, + [SMALL_STATE(1473)] = 25342, + [SMALL_STATE(1474)] = 25398, + [SMALL_STATE(1475)] = 25454, + [SMALL_STATE(1476)] = 25516, + [SMALL_STATE(1477)] = 25576, + [SMALL_STATE(1478)] = 25636, + [SMALL_STATE(1479)] = 25692, + [SMALL_STATE(1480)] = 25748, + [SMALL_STATE(1481)] = 25804, + [SMALL_STATE(1482)] = 25860, + [SMALL_STATE(1483)] = 25928, + [SMALL_STATE(1484)] = 25984, + [SMALL_STATE(1485)] = 26042, + [SMALL_STATE(1486)] = 26100, + [SMALL_STATE(1487)] = 26194, + [SMALL_STATE(1488)] = 26249, + [SMALL_STATE(1489)] = 26310, + [SMALL_STATE(1490)] = 26365, + [SMALL_STATE(1491)] = 26420, + [SMALL_STATE(1492)] = 26481, + [SMALL_STATE(1493)] = 26536, + [SMALL_STATE(1494)] = 26595, + [SMALL_STATE(1495)] = 26650, + [SMALL_STATE(1496)] = 26705, + [SMALL_STATE(1497)] = 26760, + [SMALL_STATE(1498)] = 26815, + [SMALL_STATE(1499)] = 26878, + [SMALL_STATE(1500)] = 26933, + [SMALL_STATE(1501)] = 26996, + [SMALL_STATE(1502)] = 27059, + [SMALL_STATE(1503)] = 27118, + [SMALL_STATE(1504)] = 27177, + [SMALL_STATE(1505)] = 27232, + [SMALL_STATE(1506)] = 27293, + [SMALL_STATE(1507)] = 27354, + [SMALL_STATE(1508)] = 27409, + [SMALL_STATE(1509)] = 27470, + [SMALL_STATE(1510)] = 27531, + [SMALL_STATE(1511)] = 27590, + [SMALL_STATE(1512)] = 27645, + [SMALL_STATE(1513)] = 27702, + [SMALL_STATE(1514)] = 27757, + [SMALL_STATE(1515)] = 27814, + [SMALL_STATE(1516)] = 27869, + [SMALL_STATE(1517)] = 27924, + [SMALL_STATE(1518)] = 27979, + [SMALL_STATE(1519)] = 28034, + [SMALL_STATE(1520)] = 28093, + [SMALL_STATE(1521)] = 28148, + [SMALL_STATE(1522)] = 28203, + [SMALL_STATE(1523)] = 28258, + [SMALL_STATE(1524)] = 28313, + [SMALL_STATE(1525)] = 28368, + [SMALL_STATE(1526)] = 28423, + [SMALL_STATE(1527)] = 28480, + [SMALL_STATE(1528)] = 28535, + [SMALL_STATE(1529)] = 28592, + [SMALL_STATE(1530)] = 28647, + [SMALL_STATE(1531)] = 28702, + [SMALL_STATE(1532)] = 28757, + [SMALL_STATE(1533)] = 28814, + [SMALL_STATE(1534)] = 28869, + [SMALL_STATE(1535)] = 28930, + [SMALL_STATE(1536)] = 28987, + [SMALL_STATE(1537)] = 29042, + [SMALL_STATE(1538)] = 29097, + [SMALL_STATE(1539)] = 29158, + [SMALL_STATE(1540)] = 29213, + [SMALL_STATE(1541)] = 29270, + [SMALL_STATE(1542)] = 29325, + [SMALL_STATE(1543)] = 29384, + [SMALL_STATE(1544)] = 29439, + [SMALL_STATE(1545)] = 29494, + [SMALL_STATE(1546)] = 29549, + [SMALL_STATE(1547)] = 29610, + [SMALL_STATE(1548)] = 29671, + [SMALL_STATE(1549)] = 29728, + [SMALL_STATE(1550)] = 29785, + [SMALL_STATE(1551)] = 29840, + [SMALL_STATE(1552)] = 29901, + [SMALL_STATE(1553)] = 29956, + [SMALL_STATE(1554)] = 30011, + [SMALL_STATE(1555)] = 30066, + [SMALL_STATE(1556)] = 30121, + [SMALL_STATE(1557)] = 30176, + [SMALL_STATE(1558)] = 30231, + [SMALL_STATE(1559)] = 30286, + [SMALL_STATE(1560)] = 30341, + [SMALL_STATE(1561)] = 30396, + [SMALL_STATE(1562)] = 30451, + [SMALL_STATE(1563)] = 30506, + [SMALL_STATE(1564)] = 30561, + [SMALL_STATE(1565)] = 30618, + [SMALL_STATE(1566)] = 30673, + [SMALL_STATE(1567)] = 30728, + [SMALL_STATE(1568)] = 30783, + [SMALL_STATE(1569)] = 30840, + [SMALL_STATE(1570)] = 30895, + [SMALL_STATE(1571)] = 30956, + [SMALL_STATE(1572)] = 31011, + [SMALL_STATE(1573)] = 31070, + [SMALL_STATE(1574)] = 31125, + [SMALL_STATE(1575)] = 31180, + [SMALL_STATE(1576)] = 31235, + [SMALL_STATE(1577)] = 31290, + [SMALL_STATE(1578)] = 31345, + [SMALL_STATE(1579)] = 31400, + [SMALL_STATE(1580)] = 31455, + [SMALL_STATE(1581)] = 31512, + [SMALL_STATE(1582)] = 31567, + [SMALL_STATE(1583)] = 31622, + [SMALL_STATE(1584)] = 31677, + [SMALL_STATE(1585)] = 31732, + [SMALL_STATE(1586)] = 31787, + [SMALL_STATE(1587)] = 31844, + [SMALL_STATE(1588)] = 31903, + [SMALL_STATE(1589)] = 31958, + [SMALL_STATE(1590)] = 32013, + [SMALL_STATE(1591)] = 32074, + [SMALL_STATE(1592)] = 32129, + [SMALL_STATE(1593)] = 32184, + [SMALL_STATE(1594)] = 32239, + [SMALL_STATE(1595)] = 32294, + [SMALL_STATE(1596)] = 32349, + [SMALL_STATE(1597)] = 32404, + [SMALL_STATE(1598)] = 32459, + [SMALL_STATE(1599)] = 32514, + [SMALL_STATE(1600)] = 32569, + [SMALL_STATE(1601)] = 32624, + [SMALL_STATE(1602)] = 32679, + [SMALL_STATE(1603)] = 32734, + [SMALL_STATE(1604)] = 32789, + [SMALL_STATE(1605)] = 32844, + [SMALL_STATE(1606)] = 32899, + [SMALL_STATE(1607)] = 32954, + [SMALL_STATE(1608)] = 33011, + [SMALL_STATE(1609)] = 33072, + [SMALL_STATE(1610)] = 33127, + [SMALL_STATE(1611)] = 33237, + [SMALL_STATE(1612)] = 33291, + [SMALL_STATE(1613)] = 33345, + [SMALL_STATE(1614)] = 33399, + [SMALL_STATE(1615)] = 33453, + [SMALL_STATE(1616)] = 33507, + [SMALL_STATE(1617)] = 33617, + [SMALL_STATE(1618)] = 33727, + [SMALL_STATE(1619)] = 33781, + [SMALL_STATE(1620)] = 33835, + [SMALL_STATE(1621)] = 33945, + [SMALL_STATE(1622)] = 33999, + [SMALL_STATE(1623)] = 34053, + [SMALL_STATE(1624)] = 34107, + [SMALL_STATE(1625)] = 34161, + [SMALL_STATE(1626)] = 34215, + [SMALL_STATE(1627)] = 34269, + [SMALL_STATE(1628)] = 34343, + [SMALL_STATE(1629)] = 34397, + [SMALL_STATE(1630)] = 34451, + [SMALL_STATE(1631)] = 34505, + [SMALL_STATE(1632)] = 34615, + [SMALL_STATE(1633)] = 34669, + [SMALL_STATE(1634)] = 34779, + [SMALL_STATE(1635)] = 34863, + [SMALL_STATE(1636)] = 34917, + [SMALL_STATE(1637)] = 34991, + [SMALL_STATE(1638)] = 35089, + [SMALL_STATE(1639)] = 35189, + [SMALL_STATE(1640)] = 35269, + [SMALL_STATE(1641)] = 35361, + [SMALL_STATE(1642)] = 35455, + [SMALL_STATE(1643)] = 35551, + [SMALL_STATE(1644)] = 35629, + [SMALL_STATE(1645)] = 35709, + [SMALL_STATE(1646)] = 35769, + [SMALL_STATE(1647)] = 35829, + [SMALL_STATE(1648)] = 35917, + [SMALL_STATE(1649)] = 36019, + [SMALL_STATE(1650)] = 36073, + [SMALL_STATE(1651)] = 36127, + [SMALL_STATE(1652)] = 36181, + [SMALL_STATE(1653)] = 36235, + [SMALL_STATE(1654)] = 36345, + [SMALL_STATE(1655)] = 36455, + [SMALL_STATE(1656)] = 36509, + [SMALL_STATE(1657)] = 36563, + [SMALL_STATE(1658)] = 36617, + [SMALL_STATE(1659)] = 36671, + [SMALL_STATE(1660)] = 36725, + [SMALL_STATE(1661)] = 36779, + [SMALL_STATE(1662)] = 36833, + [SMALL_STATE(1663)] = 36887, + [SMALL_STATE(1664)] = 36997, + [SMALL_STATE(1665)] = 37051, + [SMALL_STATE(1666)] = 37105, + [SMALL_STATE(1667)] = 37215, + [SMALL_STATE(1668)] = 37269, + [SMALL_STATE(1669)] = 37323, + [SMALL_STATE(1670)] = 37377, + [SMALL_STATE(1671)] = 37487, + [SMALL_STATE(1672)] = 37597, + [SMALL_STATE(1673)] = 37651, + [SMALL_STATE(1674)] = 37705, + [SMALL_STATE(1675)] = 37759, + [SMALL_STATE(1676)] = 37813, + [SMALL_STATE(1677)] = 37867, + [SMALL_STATE(1678)] = 37921, + [SMALL_STATE(1679)] = 37975, + [SMALL_STATE(1680)] = 38061, + [SMALL_STATE(1681)] = 38121, + [SMALL_STATE(1682)] = 38175, + [SMALL_STATE(1683)] = 38229, + [SMALL_STATE(1684)] = 38283, + [SMALL_STATE(1685)] = 38337, + [SMALL_STATE(1686)] = 38391, + [SMALL_STATE(1687)] = 38445, + [SMALL_STATE(1688)] = 38499, + [SMALL_STATE(1689)] = 38553, + [SMALL_STATE(1690)] = 38607, + [SMALL_STATE(1691)] = 38661, + [SMALL_STATE(1692)] = 38715, + [SMALL_STATE(1693)] = 38769, + [SMALL_STATE(1694)] = 38879, + [SMALL_STATE(1695)] = 38933, + [SMALL_STATE(1696)] = 38987, + [SMALL_STATE(1697)] = 39041, + [SMALL_STATE(1698)] = 39095, + [SMALL_STATE(1699)] = 39149, + [SMALL_STATE(1700)] = 39203, + [SMALL_STATE(1701)] = 39257, + [SMALL_STATE(1702)] = 39311, + [SMALL_STATE(1703)] = 39367, + [SMALL_STATE(1704)] = 39423, + [SMALL_STATE(1705)] = 39479, + [SMALL_STATE(1706)] = 39533, + [SMALL_STATE(1707)] = 39619, + [SMALL_STATE(1708)] = 39673, + [SMALL_STATE(1709)] = 39727, + [SMALL_STATE(1710)] = 39781, + [SMALL_STATE(1711)] = 39835, + [SMALL_STATE(1712)] = 39889, + [SMALL_STATE(1713)] = 39943, + [SMALL_STATE(1714)] = 39997, + [SMALL_STATE(1715)] = 40083, + [SMALL_STATE(1716)] = 40137, + [SMALL_STATE(1717)] = 40191, + [SMALL_STATE(1718)] = 40263, + [SMALL_STATE(1719)] = 40341, + [SMALL_STATE(1720)] = 40427, + [SMALL_STATE(1721)] = 40537, + [SMALL_STATE(1722)] = 40591, + [SMALL_STATE(1723)] = 40645, + [SMALL_STATE(1724)] = 40715, + [SMALL_STATE(1725)] = 40769, + [SMALL_STATE(1726)] = 40855, + [SMALL_STATE(1727)] = 40912, + [SMALL_STATE(1728)] = 40991, + [SMALL_STATE(1729)] = 41048, + [SMALL_STATE(1730)] = 41109, + [SMALL_STATE(1731)] = 41162, + [SMALL_STATE(1732)] = 41239, + [SMALL_STATE(1733)] = 41318, + [SMALL_STATE(1734)] = 41373, + [SMALL_STATE(1735)] = 41430, + [SMALL_STATE(1736)] = 41483, + [SMALL_STATE(1737)] = 41536, + [SMALL_STATE(1738)] = 41617, + [SMALL_STATE(1739)] = 41670, + [SMALL_STATE(1740)] = 41749, + [SMALL_STATE(1741)] = 41802, + [SMALL_STATE(1742)] = 41911, + [SMALL_STATE(1743)] = 41974, + [SMALL_STATE(1744)] = 42029, + [SMALL_STATE(1745)] = 42090, + [SMALL_STATE(1746)] = 42167, + [SMALL_STATE(1747)] = 42246, + [SMALL_STATE(1748)] = 42309, + [SMALL_STATE(1749)] = 42372, + [SMALL_STATE(1750)] = 42449, + [SMALL_STATE(1751)] = 42528, + [SMALL_STATE(1752)] = 42607, + [SMALL_STATE(1753)] = 42660, + [SMALL_STATE(1754)] = 42737, + [SMALL_STATE(1755)] = 42816, + [SMALL_STATE(1756)] = 42893, + [SMALL_STATE(1757)] = 43001, + [SMALL_STATE(1758)] = 43083, + [SMALL_STATE(1759)] = 43155, + [SMALL_STATE(1760)] = 43263, + [SMALL_STATE(1761)] = 43317, + [SMALL_STATE(1762)] = 43413, + [SMALL_STATE(1763)] = 43511, + [SMALL_STATE(1764)] = 43589, + [SMALL_STATE(1765)] = 43679, + [SMALL_STATE(1766)] = 43771, + [SMALL_STATE(1767)] = 43865, + [SMALL_STATE(1768)] = 43973, + [SMALL_STATE(1769)] = 44049, + [SMALL_STATE(1770)] = 44127, + [SMALL_STATE(1771)] = 44243, + [SMALL_STATE(1772)] = 44359, + [SMALL_STATE(1773)] = 44429, + [SMALL_STATE(1774)] = 44501, + [SMALL_STATE(1775)] = 44609, + [SMALL_STATE(1776)] = 44667, + [SMALL_STATE(1777)] = 44741, + [SMALL_STATE(1778)] = 44857, + [SMALL_STATE(1779)] = 44909, + [SMALL_STATE(1780)] = 44981, + [SMALL_STATE(1781)] = 45089, + [SMALL_STATE(1782)] = 45197, + [SMALL_STATE(1783)] = 45305, + [SMALL_STATE(1784)] = 45383, + [SMALL_STATE(1785)] = 45491, + [SMALL_STATE(1786)] = 45545, + [SMALL_STATE(1787)] = 45599, + [SMALL_STATE(1788)] = 45707, + [SMALL_STATE(1789)] = 45815, + [SMALL_STATE(1790)] = 45901, + [SMALL_STATE(1791)] = 46001, + [SMALL_STATE(1792)] = 46109, + [SMALL_STATE(1793)] = 46181, + [SMALL_STATE(1794)] = 46235, + [SMALL_STATE(1795)] = 46289, + [SMALL_STATE(1796)] = 46357, + [SMALL_STATE(1797)] = 46429, + [SMALL_STATE(1798)] = 46499, + [SMALL_STATE(1799)] = 46575, + [SMALL_STATE(1800)] = 46683, + [SMALL_STATE(1801)] = 46751, + [SMALL_STATE(1802)] = 46805, + [SMALL_STATE(1803)] = 46901, + [SMALL_STATE(1804)] = 46953, + [SMALL_STATE(1805)] = 47011, + [SMALL_STATE(1806)] = 47109, + [SMALL_STATE(1807)] = 47187, + [SMALL_STATE(1808)] = 47295, + [SMALL_STATE(1809)] = 47353, + [SMALL_STATE(1810)] = 47409, + [SMALL_STATE(1811)] = 47501, + [SMALL_STATE(1812)] = 47609, + [SMALL_STATE(1813)] = 47665, + [SMALL_STATE(1814)] = 47747, + [SMALL_STATE(1815)] = 47803, + [SMALL_STATE(1816)] = 47863, + [SMALL_STATE(1817)] = 47925, + [SMALL_STATE(1818)] = 48033, + [SMALL_STATE(1819)] = 48141, + [SMALL_STATE(1820)] = 48235, + [SMALL_STATE(1821)] = 48343, + [SMALL_STATE(1822)] = 48403, + [SMALL_STATE(1823)] = 48511, + [SMALL_STATE(1824)] = 48619, + [SMALL_STATE(1825)] = 48727, + [SMALL_STATE(1826)] = 48781, + [SMALL_STATE(1827)] = 48853, + [SMALL_STATE(1828)] = 48961, + [SMALL_STATE(1829)] = 49037, + [SMALL_STATE(1830)] = 49111, + [SMALL_STATE(1831)] = 49189, + [SMALL_STATE(1832)] = 49249, + [SMALL_STATE(1833)] = 49309, + [SMALL_STATE(1834)] = 49369, + [SMALL_STATE(1835)] = 49433, + [SMALL_STATE(1836)] = 49541, + [SMALL_STATE(1837)] = 49649, + [SMALL_STATE(1838)] = 49707, + [SMALL_STATE(1839)] = 49815, + [SMALL_STATE(1840)] = 49923, + [SMALL_STATE(1841)] = 49985, + [SMALL_STATE(1842)] = 50101, + [SMALL_STATE(1843)] = 50153, + [SMALL_STATE(1844)] = 50229, + [SMALL_STATE(1845)] = 50301, + [SMALL_STATE(1846)] = 50409, + [SMALL_STATE(1847)] = 50517, + [SMALL_STATE(1848)] = 50617, + [SMALL_STATE(1849)] = 50669, + [SMALL_STATE(1850)] = 50721, + [SMALL_STATE(1851)] = 50779, + [SMALL_STATE(1852)] = 50887, + [SMALL_STATE(1853)] = 50943, + [SMALL_STATE(1854)] = 51029, + [SMALL_STATE(1855)] = 51119, + [SMALL_STATE(1856)] = 51170, + [SMALL_STATE(1857)] = 51233, + [SMALL_STATE(1858)] = 51284, + [SMALL_STATE(1859)] = 51357, + [SMALL_STATE(1860)] = 51420, + [SMALL_STATE(1861)] = 51531, + [SMALL_STATE(1862)] = 51584, + [SMALL_STATE(1863)] = 51695, + [SMALL_STATE(1864)] = 51758, + [SMALL_STATE(1865)] = 51869, + [SMALL_STATE(1866)] = 51942, + [SMALL_STATE(1867)] = 51995, + [SMALL_STATE(1868)] = 52060, + [SMALL_STATE(1869)] = 52129, + [SMALL_STATE(1870)] = 52180, + [SMALL_STATE(1871)] = 52231, + [SMALL_STATE(1872)] = 52282, + [SMALL_STATE(1873)] = 52333, + [SMALL_STATE(1874)] = 52384, + [SMALL_STATE(1875)] = 52435, + [SMALL_STATE(1876)] = 52486, + [SMALL_STATE(1877)] = 52537, + [SMALL_STATE(1878)] = 52588, + [SMALL_STATE(1879)] = 52695, + [SMALL_STATE(1880)] = 52746, + [SMALL_STATE(1881)] = 52799, + [SMALL_STATE(1882)] = 52864, + [SMALL_STATE(1883)] = 52915, + [SMALL_STATE(1884)] = 52966, + [SMALL_STATE(1885)] = 53019, + [SMALL_STATE(1886)] = 53070, + [SMALL_STATE(1887)] = 53127, + [SMALL_STATE(1888)] = 53178, + [SMALL_STATE(1889)] = 53229, + [SMALL_STATE(1890)] = 53280, + [SMALL_STATE(1891)] = 53331, + [SMALL_STATE(1892)] = 53382, + [SMALL_STATE(1893)] = 53435, + [SMALL_STATE(1894)] = 53486, + [SMALL_STATE(1895)] = 53537, + [SMALL_STATE(1896)] = 53588, + [SMALL_STATE(1897)] = 53639, + [SMALL_STATE(1898)] = 53750, + [SMALL_STATE(1899)] = 53801, + [SMALL_STATE(1900)] = 53852, + [SMALL_STATE(1901)] = 53903, + [SMALL_STATE(1902)] = 53954, + [SMALL_STATE(1903)] = 54005, + [SMALL_STATE(1904)] = 54056, + [SMALL_STATE(1905)] = 54107, + [SMALL_STATE(1906)] = 54158, + [SMALL_STATE(1907)] = 54209, + [SMALL_STATE(1908)] = 54260, + [SMALL_STATE(1909)] = 54311, + [SMALL_STATE(1910)] = 54362, + [SMALL_STATE(1911)] = 54413, + [SMALL_STATE(1912)] = 54464, + [SMALL_STATE(1913)] = 54515, + [SMALL_STATE(1914)] = 54566, + [SMALL_STATE(1915)] = 54617, + [SMALL_STATE(1916)] = 54674, + [SMALL_STATE(1917)] = 54725, + [SMALL_STATE(1918)] = 54776, + [SMALL_STATE(1919)] = 54833, + [SMALL_STATE(1920)] = 54890, + [SMALL_STATE(1921)] = 54941, + [SMALL_STATE(1922)] = 54992, + [SMALL_STATE(1923)] = 55043, + [SMALL_STATE(1924)] = 55094, + [SMALL_STATE(1925)] = 55145, + [SMALL_STATE(1926)] = 55218, + [SMALL_STATE(1927)] = 55269, + [SMALL_STATE(1928)] = 55320, + [SMALL_STATE(1929)] = 55371, + [SMALL_STATE(1930)] = 55422, + [SMALL_STATE(1931)] = 55473, + [SMALL_STATE(1932)] = 55584, + [SMALL_STATE(1933)] = 55635, + [SMALL_STATE(1934)] = 55686, + [SMALL_STATE(1935)] = 55737, + [SMALL_STATE(1936)] = 55788, + [SMALL_STATE(1937)] = 55839, + [SMALL_STATE(1938)] = 55890, + [SMALL_STATE(1939)] = 55941, + [SMALL_STATE(1940)] = 55992, + [SMALL_STATE(1941)] = 56043, + [SMALL_STATE(1942)] = 56094, + [SMALL_STATE(1943)] = 56145, + [SMALL_STATE(1944)] = 56196, + [SMALL_STATE(1945)] = 56247, + [SMALL_STATE(1946)] = 56298, + [SMALL_STATE(1947)] = 56349, + [SMALL_STATE(1948)] = 56400, + [SMALL_STATE(1949)] = 56451, + [SMALL_STATE(1950)] = 56502, + [SMALL_STATE(1951)] = 56559, + [SMALL_STATE(1952)] = 56670, + [SMALL_STATE(1953)] = 56725, + [SMALL_STATE(1954)] = 56794, + [SMALL_STATE(1955)] = 56847, + [SMALL_STATE(1956)] = 56920, + [SMALL_STATE(1957)] = 56975, + [SMALL_STATE(1958)] = 57058, + [SMALL_STATE(1959)] = 57111, + [SMALL_STATE(1960)] = 57180, + [SMALL_STATE(1961)] = 57237, + [SMALL_STATE(1962)] = 57308, + [SMALL_STATE(1963)] = 57365, + [SMALL_STATE(1964)] = 57448, + [SMALL_STATE(1965)] = 57499, + [SMALL_STATE(1966)] = 57552, + [SMALL_STATE(1967)] = 57661, + [SMALL_STATE(1968)] = 57744, + [SMALL_STATE(1969)] = 57797, + [SMALL_STATE(1970)] = 57880, + [SMALL_STATE(1971)] = 57933, + [SMALL_STATE(1972)] = 57996, + [SMALL_STATE(1973)] = 58047, + [SMALL_STATE(1974)] = 58098, + [SMALL_STATE(1975)] = 58161, + [SMALL_STATE(1976)] = 58220, + [SMALL_STATE(1977)] = 58271, + [SMALL_STATE(1978)] = 58324, + [SMALL_STATE(1979)] = 58377, + [SMALL_STATE(1980)] = 58434, + [SMALL_STATE(1981)] = 58543, + [SMALL_STATE(1982)] = 58598, + [SMALL_STATE(1983)] = 58655, + [SMALL_STATE(1984)] = 58712, + [SMALL_STATE(1985)] = 58765, + [SMALL_STATE(1986)] = 58816, + [SMALL_STATE(1987)] = 58927, + [SMALL_STATE(1988)] = 58984, + [SMALL_STATE(1989)] = 59037, + [SMALL_STATE(1990)] = 59100, + [SMALL_STATE(1991)] = 59163, + [SMALL_STATE(1992)] = 59246, + [SMALL_STATE(1993)] = 59301, + [SMALL_STATE(1994)] = 59408, + [SMALL_STATE(1995)] = 59515, + [SMALL_STATE(1996)] = 59622, + [SMALL_STATE(1997)] = 59729, + [SMALL_STATE(1998)] = 59836, + [SMALL_STATE(1999)] = 59917, + [SMALL_STATE(2000)] = 59988, + [SMALL_STATE(2001)] = 60083, + [SMALL_STATE(2002)] = 60180, + [SMALL_STATE(2003)] = 60257, + [SMALL_STATE(2004)] = 60346, + [SMALL_STATE(2005)] = 60437, + [SMALL_STATE(2006)] = 60530, + [SMALL_STATE(2007)] = 60605, + [SMALL_STATE(2008)] = 60682, + [SMALL_STATE(2009)] = 60739, + [SMALL_STATE(2010)] = 60824, + [SMALL_STATE(2011)] = 60923, + [SMALL_STATE(2012)] = 61030, + [SMALL_STATE(2013)] = 61137, + [SMALL_STATE(2014)] = 61244, + [SMALL_STATE(2015)] = 61351, + [SMALL_STATE(2016)] = 61458, + [SMALL_STATE(2017)] = 61565, + [SMALL_STATE(2018)] = 61672, + [SMALL_STATE(2019)] = 61723, + [SMALL_STATE(2020)] = 61830, + [SMALL_STATE(2021)] = 61903, + [SMALL_STATE(2022)] = 61954, + [SMALL_STATE(2023)] = 62007, + [SMALL_STATE(2024)] = 62076, + [SMALL_STATE(2025)] = 62127, + [SMALL_STATE(2026)] = 62178, + [SMALL_STATE(2027)] = 62229, + [SMALL_STATE(2028)] = 62286, + [SMALL_STATE(2029)] = 62343, + [SMALL_STATE(2030)] = 62416, + [SMALL_STATE(2031)] = 62475, + [SMALL_STATE(2032)] = 62528, + [SMALL_STATE(2033)] = 62601, + [SMALL_STATE(2034)] = 62670, + [SMALL_STATE(2035)] = 62729, + [SMALL_STATE(2036)] = 62782, + [SMALL_STATE(2037)] = 62837, + [SMALL_STATE(2038)] = 62894, + [SMALL_STATE(2039)] = 62957, + [SMALL_STATE(2040)] = 63014, + [SMALL_STATE(2041)] = 63069, + [SMALL_STATE(2042)] = 63126, + [SMALL_STATE(2043)] = 63189, + [SMALL_STATE(2044)] = 63240, + [SMALL_STATE(2045)] = 63293, + [SMALL_STATE(2046)] = 63346, + [SMALL_STATE(2047)] = 63397, + [SMALL_STATE(2048)] = 63454, + [SMALL_STATE(2049)] = 63505, + [SMALL_STATE(2050)] = 63588, + [SMALL_STATE(2051)] = 63645, + [SMALL_STATE(2052)] = 63704, + [SMALL_STATE(2053)] = 63773, + [SMALL_STATE(2054)] = 63848, + [SMALL_STATE(2055)] = 63955, + [SMALL_STATE(2056)] = 64022, + [SMALL_STATE(2057)] = 64079, + [SMALL_STATE(2058)] = 64132, + [SMALL_STATE(2059)] = 64205, + [SMALL_STATE(2060)] = 64255, + [SMALL_STATE(2061)] = 64309, + [SMALL_STATE(2062)] = 64359, + [SMALL_STATE(2063)] = 64423, + [SMALL_STATE(2064)] = 64481, + [SMALL_STATE(2065)] = 64531, + [SMALL_STATE(2066)] = 64597, + [SMALL_STATE(2067)] = 64707, + [SMALL_STATE(2068)] = 64781, + [SMALL_STATE(2069)] = 64891, + [SMALL_STATE(2070)] = 64941, + [SMALL_STATE(2071)] = 65017, + [SMALL_STATE(2072)] = 65067, + [SMALL_STATE(2073)] = 65117, + [SMALL_STATE(2074)] = 65227, + [SMALL_STATE(2075)] = 65279, + [SMALL_STATE(2076)] = 65353, + [SMALL_STATE(2077)] = 65459, + [SMALL_STATE(2078)] = 65513, + [SMALL_STATE(2079)] = 65619, + [SMALL_STATE(2080)] = 65683, + [SMALL_STATE(2081)] = 65733, + [SMALL_STATE(2082)] = 65843, + [SMALL_STATE(2083)] = 65901, + [SMALL_STATE(2084)] = 65951, + [SMALL_STATE(2085)] = 66001, + [SMALL_STATE(2086)] = 66107, + [SMALL_STATE(2087)] = 66193, + [SMALL_STATE(2088)] = 66257, + [SMALL_STATE(2089)] = 66307, + [SMALL_STATE(2090)] = 66357, + [SMALL_STATE(2091)] = 66411, + [SMALL_STATE(2092)] = 66477, + [SMALL_STATE(2093)] = 66531, + [SMALL_STATE(2094)] = 66605, + [SMALL_STATE(2095)] = 66673, + [SMALL_STATE(2096)] = 66725, + [SMALL_STATE(2097)] = 66777, + [SMALL_STATE(2098)] = 66851, + [SMALL_STATE(2099)] = 66911, + [SMALL_STATE(2100)] = 66965, + [SMALL_STATE(2101)] = 67019, + [SMALL_STATE(2102)] = 67125, + [SMALL_STATE(2103)] = 67175, + [SMALL_STATE(2104)] = 67229, + [SMALL_STATE(2105)] = 67283, + [SMALL_STATE(2106)] = 67337, + [SMALL_STATE(2107)] = 67387, + [SMALL_STATE(2108)] = 67437, + [SMALL_STATE(2109)] = 67513, + [SMALL_STATE(2110)] = 67579, + [SMALL_STATE(2111)] = 67643, + [SMALL_STATE(2112)] = 67709, + [SMALL_STATE(2113)] = 67759, + [SMALL_STATE(2114)] = 67813, + [SMALL_STATE(2115)] = 67867, + [SMALL_STATE(2116)] = 67947, + [SMALL_STATE(2117)] = 67997, + [SMALL_STATE(2118)] = 68063, + [SMALL_STATE(2119)] = 68113, + [SMALL_STATE(2120)] = 68171, + [SMALL_STATE(2121)] = 68225, + [SMALL_STATE(2122)] = 68301, + [SMALL_STATE(2123)] = 68351, + [SMALL_STATE(2124)] = 68405, + [SMALL_STATE(2125)] = 68463, + [SMALL_STATE(2126)] = 68573, + [SMALL_STATE(2127)] = 68623, + [SMALL_STATE(2128)] = 68677, + [SMALL_STATE(2129)] = 68787, + [SMALL_STATE(2130)] = 68897, + [SMALL_STATE(2131)] = 68947, + [SMALL_STATE(2132)] = 68997, + [SMALL_STATE(2133)] = 69049, + [SMALL_STATE(2134)] = 69101, + [SMALL_STATE(2135)] = 69151, + [SMALL_STATE(2136)] = 69217, + [SMALL_STATE(2137)] = 69267, + [SMALL_STATE(2138)] = 69321, + [SMALL_STATE(2139)] = 69371, + [SMALL_STATE(2140)] = 69481, + [SMALL_STATE(2141)] = 69535, + [SMALL_STATE(2142)] = 69645, + [SMALL_STATE(2143)] = 69707, + [SMALL_STATE(2144)] = 69777, + [SMALL_STATE(2145)] = 69831, + [SMALL_STATE(2146)] = 69881, + [SMALL_STATE(2147)] = 69987, + [SMALL_STATE(2148)] = 70093, + [SMALL_STATE(2149)] = 70187, + [SMALL_STATE(2150)] = 70283, + [SMALL_STATE(2151)] = 70393, + [SMALL_STATE(2152)] = 70469, + [SMALL_STATE(2153)] = 70519, + [SMALL_STATE(2154)] = 70607, + [SMALL_STATE(2155)] = 70713, + [SMALL_STATE(2156)] = 70803, + [SMALL_STATE(2157)] = 70855, + [SMALL_STATE(2158)] = 70965, + [SMALL_STATE(2159)] = 71057, + [SMALL_STATE(2160)] = 71109, + [SMALL_STATE(2161)] = 71215, + [SMALL_STATE(2162)] = 71279, + [SMALL_STATE(2163)] = 71329, + [SMALL_STATE(2164)] = 71435, + [SMALL_STATE(2165)] = 71489, + [SMALL_STATE(2166)] = 71551, + [SMALL_STATE(2167)] = 71603, + [SMALL_STATE(2168)] = 71653, + [SMALL_STATE(2169)] = 71703, + [SMALL_STATE(2170)] = 71813, + [SMALL_STATE(2171)] = 71879, + [SMALL_STATE(2172)] = 71989, + [SMALL_STATE(2173)] = 72063, + [SMALL_STATE(2174)] = 72139, + [SMALL_STATE(2175)] = 72205, + [SMALL_STATE(2176)] = 72289, + [SMALL_STATE(2177)] = 72399, + [SMALL_STATE(2178)] = 72449, + [SMALL_STATE(2179)] = 72523, + [SMALL_STATE(2180)] = 72589, + [SMALL_STATE(2181)] = 72699, + [SMALL_STATE(2182)] = 72797, + [SMALL_STATE(2183)] = 72903, + [SMALL_STATE(2184)] = 73009, + [SMALL_STATE(2185)] = 73083, + [SMALL_STATE(2186)] = 73189, + [SMALL_STATE(2187)] = 73265, + [SMALL_STATE(2188)] = 73315, + [SMALL_STATE(2189)] = 73421, + [SMALL_STATE(2190)] = 73527, + [SMALL_STATE(2191)] = 73633, + [SMALL_STATE(2192)] = 73713, + [SMALL_STATE(2193)] = 73823, + [SMALL_STATE(2194)] = 73929, + [SMALL_STATE(2195)] = 73979, + [SMALL_STATE(2196)] = 74049, + [SMALL_STATE(2197)] = 74159, + [SMALL_STATE(2198)] = 74253, + [SMALL_STATE(2199)] = 74349, + [SMALL_STATE(2200)] = 74455, + [SMALL_STATE(2201)] = 74561, + [SMALL_STATE(2202)] = 74611, + [SMALL_STATE(2203)] = 74663, + [SMALL_STATE(2204)] = 74739, + [SMALL_STATE(2205)] = 74849, + [SMALL_STATE(2206)] = 74937, + [SMALL_STATE(2207)] = 75027, + [SMALL_STATE(2208)] = 75091, + [SMALL_STATE(2209)] = 75197, + [SMALL_STATE(2210)] = 75303, + [SMALL_STATE(2211)] = 75367, + [SMALL_STATE(2212)] = 75443, + [SMALL_STATE(2213)] = 75505, + [SMALL_STATE(2214)] = 75559, + [SMALL_STATE(2215)] = 75609, + [SMALL_STATE(2216)] = 75663, + [SMALL_STATE(2217)] = 75713, + [SMALL_STATE(2218)] = 75763, + [SMALL_STATE(2219)] = 75813, + [SMALL_STATE(2220)] = 75919, + [SMALL_STATE(2221)] = 75993, + [SMALL_STATE(2222)] = 76069, + [SMALL_STATE(2223)] = 76133, + [SMALL_STATE(2224)] = 76185, + [SMALL_STATE(2225)] = 76243, + [SMALL_STATE(2226)] = 76297, + [SMALL_STATE(2227)] = 76361, + [SMALL_STATE(2228)] = 76435, + [SMALL_STATE(2229)] = 76485, + [SMALL_STATE(2230)] = 76595, + [SMALL_STATE(2231)] = 76701, + [SMALL_STATE(2232)] = 76759, + [SMALL_STATE(2233)] = 76825, + [SMALL_STATE(2234)] = 76891, + [SMALL_STATE(2235)] = 77001, + [SMALL_STATE(2236)] = 77051, + [SMALL_STATE(2237)] = 77119, + [SMALL_STATE(2238)] = 77181, + [SMALL_STATE(2239)] = 77245, + [SMALL_STATE(2240)] = 77295, + [SMALL_STATE(2241)] = 77353, + [SMALL_STATE(2242)] = 77463, + [SMALL_STATE(2243)] = 77513, + [SMALL_STATE(2244)] = 77575, + [SMALL_STATE(2245)] = 77625, + [SMALL_STATE(2246)] = 77683, + [SMALL_STATE(2247)] = 77733, + [SMALL_STATE(2248)] = 77817, + [SMALL_STATE(2249)] = 77915, + [SMALL_STATE(2250)] = 78025, + [SMALL_STATE(2251)] = 78131, + [SMALL_STATE(2252)] = 78237, + [SMALL_STATE(2253)] = 78301, + [SMALL_STATE(2254)] = 78411, + [SMALL_STATE(2255)] = 78461, + [SMALL_STATE(2256)] = 78567, + [SMALL_STATE(2257)] = 78629, + [SMALL_STATE(2258)] = 78691, + [SMALL_STATE(2259)] = 78751, + [SMALL_STATE(2260)] = 78815, + [SMALL_STATE(2261)] = 78921, + [SMALL_STATE(2262)] = 79027, + [SMALL_STATE(2263)] = 79133, + [SMALL_STATE(2264)] = 79239, + [SMALL_STATE(2265)] = 79345, + [SMALL_STATE(2266)] = 79409, + [SMALL_STATE(2267)] = 79473, + [SMALL_STATE(2268)] = 79583, + [SMALL_STATE(2269)] = 79693, + [SMALL_STATE(2270)] = 79803, + [SMALL_STATE(2271)] = 79913, + [SMALL_STATE(2272)] = 80023, + [SMALL_STATE(2273)] = 80087, + [SMALL_STATE(2274)] = 80137, + [SMALL_STATE(2275)] = 80201, + [SMALL_STATE(2276)] = 80255, + [SMALL_STATE(2277)] = 80321, + [SMALL_STATE(2278)] = 80431, + [SMALL_STATE(2279)] = 80541, + [SMALL_STATE(2280)] = 80607, + [SMALL_STATE(2281)] = 80713, + [SMALL_STATE(2282)] = 80823, + [SMALL_STATE(2283)] = 80873, + [SMALL_STATE(2284)] = 80983, + [SMALL_STATE(2285)] = 81091, + [SMALL_STATE(2286)] = 81197, + [SMALL_STATE(2287)] = 81307, + [SMALL_STATE(2288)] = 81417, + [SMALL_STATE(2289)] = 81483, + [SMALL_STATE(2290)] = 81593, + [SMALL_STATE(2291)] = 81699, + [SMALL_STATE(2292)] = 81809, + [SMALL_STATE(2293)] = 81859, + [SMALL_STATE(2294)] = 81969, + [SMALL_STATE(2295)] = 82079, + [SMALL_STATE(2296)] = 82143, + [SMALL_STATE(2297)] = 82197, + [SMALL_STATE(2298)] = 82249, + [SMALL_STATE(2299)] = 82359, + [SMALL_STATE(2300)] = 82469, + [SMALL_STATE(2301)] = 82579, + [SMALL_STATE(2302)] = 82629, + [SMALL_STATE(2303)] = 82679, + [SMALL_STATE(2304)] = 82729, + [SMALL_STATE(2305)] = 82785, + [SMALL_STATE(2306)] = 82849, + [SMALL_STATE(2307)] = 82903, + [SMALL_STATE(2308)] = 82969, + [SMALL_STATE(2309)] = 83079, + [SMALL_STATE(2310)] = 83129, + [SMALL_STATE(2311)] = 83239, + [SMALL_STATE(2312)] = 83289, + [SMALL_STATE(2313)] = 83339, + [SMALL_STATE(2314)] = 83393, + [SMALL_STATE(2315)] = 83443, + [SMALL_STATE(2316)] = 83501, + [SMALL_STATE(2317)] = 83551, + [SMALL_STATE(2318)] = 83661, + [SMALL_STATE(2319)] = 83723, + [SMALL_STATE(2320)] = 83773, + [SMALL_STATE(2321)] = 83831, + [SMALL_STATE(2322)] = 83885, + [SMALL_STATE(2323)] = 83939, + [SMALL_STATE(2324)] = 84001, + [SMALL_STATE(2325)] = 84057, + [SMALL_STATE(2326)] = 84117, + [SMALL_STATE(2327)] = 84181, + [SMALL_STATE(2328)] = 84235, + [SMALL_STATE(2329)] = 84301, + [SMALL_STATE(2330)] = 84355, + [SMALL_STATE(2331)] = 84421, + [SMALL_STATE(2332)] = 84481, + [SMALL_STATE(2333)] = 84531, + [SMALL_STATE(2334)] = 84605, + [SMALL_STATE(2335)] = 84715, + [SMALL_STATE(2336)] = 84781, + [SMALL_STATE(2337)] = 84833, + [SMALL_STATE(2338)] = 84909, + [SMALL_STATE(2339)] = 84963, + [SMALL_STATE(2340)] = 85013, + [SMALL_STATE(2341)] = 85081, + [SMALL_STATE(2342)] = 85131, + [SMALL_STATE(2343)] = 85241, + [SMALL_STATE(2344)] = 85303, + [SMALL_STATE(2345)] = 85365, + [SMALL_STATE(2346)] = 85471, + [SMALL_STATE(2347)] = 85535, + [SMALL_STATE(2348)] = 85585, + [SMALL_STATE(2349)] = 85695, + [SMALL_STATE(2350)] = 85745, + [SMALL_STATE(2351)] = 85795, + [SMALL_STATE(2352)] = 85845, + [SMALL_STATE(2353)] = 85895, + [SMALL_STATE(2354)] = 85945, + [SMALL_STATE(2355)] = 86037, + [SMALL_STATE(2356)] = 86094, + [SMALL_STATE(2357)] = 86199, + [SMALL_STATE(2358)] = 86274, + [SMALL_STATE(2359)] = 86333, + [SMALL_STATE(2360)] = 86384, + [SMALL_STATE(2361)] = 86453, + [SMALL_STATE(2362)] = 86506, + [SMALL_STATE(2363)] = 86587, + [SMALL_STATE(2364)] = 86646, + [SMALL_STATE(2365)] = 86705, + [SMALL_STATE(2366)] = 86764, + [SMALL_STATE(2367)] = 86823, + [SMALL_STATE(2368)] = 86892, + [SMALL_STATE(2369)] = 86951, + [SMALL_STATE(2370)] = 87010, + [SMALL_STATE(2371)] = 87069, + [SMALL_STATE(2372)] = 87128, + [SMALL_STATE(2373)] = 87187, + [SMALL_STATE(2374)] = 87246, + [SMALL_STATE(2375)] = 87305, + [SMALL_STATE(2376)] = 87364, + [SMALL_STATE(2377)] = 87423, + [SMALL_STATE(2378)] = 87478, + [SMALL_STATE(2379)] = 87537, + [SMALL_STATE(2380)] = 87596, + [SMALL_STATE(2381)] = 87655, + [SMALL_STATE(2382)] = 87706, + [SMALL_STATE(2383)] = 87813, + [SMALL_STATE(2384)] = 87882, + [SMALL_STATE(2385)] = 87933, + [SMALL_STATE(2386)] = 88038, + [SMALL_STATE(2387)] = 88143, + [SMALL_STATE(2388)] = 88220, + [SMALL_STATE(2389)] = 88279, + [SMALL_STATE(2390)] = 88348, + [SMALL_STATE(2391)] = 88437, + [SMALL_STATE(2392)] = 88494, + [SMALL_STATE(2393)] = 88553, + [SMALL_STATE(2394)] = 88604, + [SMALL_STATE(2395)] = 88655, + [SMALL_STATE(2396)] = 88710, + [SMALL_STATE(2397)] = 88765, + [SMALL_STATE(2398)] = 88820, + [SMALL_STATE(2399)] = 88889, + [SMALL_STATE(2400)] = 88944, + [SMALL_STATE(2401)] = 89001, + [SMALL_STATE(2402)] = 89058, + [SMALL_STATE(2403)] = 89111, + [SMALL_STATE(2404)] = 89180, + [SMALL_STATE(2405)] = 89235, + [SMALL_STATE(2406)] = 89290, + [SMALL_STATE(2407)] = 89345, + [SMALL_STATE(2408)] = 89402, + [SMALL_STATE(2409)] = 89459, + [SMALL_STATE(2410)] = 89564, + [SMALL_STATE(2411)] = 89671, + [SMALL_STATE(2412)] = 89722, + [SMALL_STATE(2413)] = 89781, + [SMALL_STATE(2414)] = 89840, + [SMALL_STATE(2415)] = 89899, + [SMALL_STATE(2416)] = 89958, + [SMALL_STATE(2417)] = 90063, + [SMALL_STATE(2418)] = 90168, + [SMALL_STATE(2419)] = 90273, + [SMALL_STATE(2420)] = 90324, + [SMALL_STATE(2421)] = 90429, + [SMALL_STATE(2422)] = 90534, + [SMALL_STATE(2423)] = 90639, + [SMALL_STATE(2424)] = 90718, + [SMALL_STATE(2425)] = 90787, + [SMALL_STATE(2426)] = 90880, + [SMALL_STATE(2427)] = 90975, + [SMALL_STATE(2428)] = 91050, + [SMALL_STATE(2429)] = 91137, + [SMALL_STATE(2430)] = 91226, + [SMALL_STATE(2431)] = 91317, + [SMALL_STATE(2432)] = 91390, + [SMALL_STATE(2433)] = 91465, + [SMALL_STATE(2434)] = 91548, + [SMALL_STATE(2435)] = 91645, + [SMALL_STATE(2436)] = 91750, + [SMALL_STATE(2437)] = 91855, + [SMALL_STATE(2438)] = 91960, + [SMALL_STATE(2439)] = 92065, + [SMALL_STATE(2440)] = 92170, + [SMALL_STATE(2441)] = 92275, + [SMALL_STATE(2442)] = 92380, + [SMALL_STATE(2443)] = 92485, + [SMALL_STATE(2444)] = 92552, + [SMALL_STATE(2445)] = 92625, + [SMALL_STATE(2446)] = 92730, + [SMALL_STATE(2447)] = 92795, + [SMALL_STATE(2448)] = 92900, + [SMALL_STATE(2449)] = 93005, + [SMALL_STATE(2450)] = 93110, + [SMALL_STATE(2451)] = 93215, + [SMALL_STATE(2452)] = 93320, + [SMALL_STATE(2453)] = 93399, + [SMALL_STATE(2454)] = 93468, + [SMALL_STATE(2455)] = 93561, + [SMALL_STATE(2456)] = 93656, + [SMALL_STATE(2457)] = 93731, + [SMALL_STATE(2458)] = 93818, + [SMALL_STATE(2459)] = 93907, + [SMALL_STATE(2460)] = 93998, + [SMALL_STATE(2461)] = 94071, + [SMALL_STATE(2462)] = 94146, + [SMALL_STATE(2463)] = 94229, + [SMALL_STATE(2464)] = 94326, + [SMALL_STATE(2465)] = 94431, + [SMALL_STATE(2466)] = 94536, + [SMALL_STATE(2467)] = 94641, + [SMALL_STATE(2468)] = 94746, + [SMALL_STATE(2469)] = 94851, + [SMALL_STATE(2470)] = 94956, + [SMALL_STATE(2471)] = 95061, + [SMALL_STATE(2472)] = 95166, + [SMALL_STATE(2473)] = 95233, + [SMALL_STATE(2474)] = 95306, + [SMALL_STATE(2475)] = 95411, + [SMALL_STATE(2476)] = 95476, + [SMALL_STATE(2477)] = 95533, + [SMALL_STATE(2478)] = 95638, + [SMALL_STATE(2479)] = 95742, + [SMALL_STATE(2480)] = 95836, + [SMALL_STATE(2481)] = 95910, + [SMALL_STATE(2482)] = 95996, + [SMALL_STATE(2483)] = 96084, + [SMALL_STATE(2484)] = 96174, + [SMALL_STATE(2485)] = 96246, + [SMALL_STATE(2486)] = 96320, + [SMALL_STATE(2487)] = 96402, + [SMALL_STATE(2488)] = 96498, + [SMALL_STATE(2489)] = 96602, + [SMALL_STATE(2490)] = 96706, + [SMALL_STATE(2491)] = 96810, + [SMALL_STATE(2492)] = 96914, + [SMALL_STATE(2493)] = 97018, + [SMALL_STATE(2494)] = 97122, + [SMALL_STATE(2495)] = 97226, + [SMALL_STATE(2496)] = 97330, + [SMALL_STATE(2497)] = 97396, + [SMALL_STATE(2498)] = 97500, + [SMALL_STATE(2499)] = 97564, + [SMALL_STATE(2500)] = 97624, + [SMALL_STATE(2501)] = 97688, + [SMALL_STATE(2502)] = 97748, + [SMALL_STATE(2503)] = 97852, + [SMALL_STATE(2504)] = 97902, + [SMALL_STATE(2505)] = 97952, + [SMALL_STATE(2506)] = 98018, + [SMALL_STATE(2507)] = 98090, + [SMALL_STATE(2508)] = 98194, + [SMALL_STATE(2509)] = 98258, + [SMALL_STATE(2510)] = 98362, + [SMALL_STATE(2511)] = 98466, + [SMALL_STATE(2512)] = 98516, + [SMALL_STATE(2513)] = 98566, + [SMALL_STATE(2514)] = 98616, + [SMALL_STATE(2515)] = 98722, + [SMALL_STATE(2516)] = 98786, + [SMALL_STATE(2517)] = 98850, + [SMALL_STATE(2518)] = 98910, + [SMALL_STATE(2519)] = 98970, + [SMALL_STATE(2520)] = 99034, + [SMALL_STATE(2521)] = 99126, + [SMALL_STATE(2522)] = 99194, + [SMALL_STATE(2523)] = 99248, + [SMALL_STATE(2524)] = 99302, + [SMALL_STATE(2525)] = 99374, + [SMALL_STATE(2526)] = 99428, + [SMALL_STATE(2527)] = 99482, + [SMALL_STATE(2528)] = 99536, + [SMALL_STATE(2529)] = 99590, + [SMALL_STATE(2530)] = 99638, + [SMALL_STATE(2531)] = 99742, + [SMALL_STATE(2532)] = 99846, + [SMALL_STATE(2533)] = 99896, + [SMALL_STATE(2534)] = 100000, + [SMALL_STATE(2535)] = 100104, + [SMALL_STATE(2536)] = 100158, + [SMALL_STATE(2537)] = 100206, + [SMALL_STATE(2538)] = 100256, + [SMALL_STATE(2539)] = 100304, + [SMALL_STATE(2540)] = 100354, + [SMALL_STATE(2541)] = 100410, + [SMALL_STATE(2542)] = 100464, + [SMALL_STATE(2543)] = 100518, + [SMALL_STATE(2544)] = 100572, + [SMALL_STATE(2545)] = 100626, + [SMALL_STATE(2546)] = 100730, + [SMALL_STATE(2547)] = 100798, + [SMALL_STATE(2548)] = 100902, + [SMALL_STATE(2549)] = 101006, + [SMALL_STATE(2550)] = 101056, + [SMALL_STATE(2551)] = 101106, + [SMALL_STATE(2552)] = 101156, + [SMALL_STATE(2553)] = 101260, + [SMALL_STATE(2554)] = 101364, + [SMALL_STATE(2555)] = 101468, + [SMALL_STATE(2556)] = 101572, + [SMALL_STATE(2557)] = 101642, + [SMALL_STATE(2558)] = 101720, + [SMALL_STATE(2559)] = 101824, + [SMALL_STATE(2560)] = 101874, + [SMALL_STATE(2561)] = 101942, + [SMALL_STATE(2562)] = 102002, + [SMALL_STATE(2563)] = 102059, + [SMALL_STATE(2564)] = 102116, + [SMALL_STATE(2565)] = 102173, + [SMALL_STATE(2566)] = 102232, + [SMALL_STATE(2567)] = 102291, + [SMALL_STATE(2568)] = 102350, + [SMALL_STATE(2569)] = 102415, + [SMALL_STATE(2570)] = 102472, + [SMALL_STATE(2571)] = 102529, + [SMALL_STATE(2572)] = 102586, + [SMALL_STATE(2573)] = 102643, + [SMALL_STATE(2574)] = 102702, + [SMALL_STATE(2575)] = 102761, + [SMALL_STATE(2576)] = 102822, + [SMALL_STATE(2577)] = 102879, + [SMALL_STATE(2578)] = 102936, + [SMALL_STATE(2579)] = 102993, + [SMALL_STATE(2580)] = 103052, + [SMALL_STATE(2581)] = 103153, + [SMALL_STATE(2582)] = 103212, + [SMALL_STATE(2583)] = 103261, + [SMALL_STATE(2584)] = 103318, + [SMALL_STATE(2585)] = 103375, + [SMALL_STATE(2586)] = 103434, + [SMALL_STATE(2587)] = 103493, + [SMALL_STATE(2588)] = 103552, + [SMALL_STATE(2589)] = 103609, + [SMALL_STATE(2590)] = 103668, + [SMALL_STATE(2591)] = 103725, + [SMALL_STATE(2592)] = 103784, + [SMALL_STATE(2593)] = 103841, + [SMALL_STATE(2594)] = 103904, + [SMALL_STATE(2595)] = 103967, + [SMALL_STATE(2596)] = 104024, + [SMALL_STATE(2597)] = 104077, + [SMALL_STATE(2598)] = 104126, + [SMALL_STATE(2599)] = 104175, + [SMALL_STATE(2600)] = 104276, + [SMALL_STATE(2601)] = 104322, + [SMALL_STATE(2602)] = 104368, + [SMALL_STATE(2603)] = 104414, + [SMALL_STATE(2604)] = 104462, + [SMALL_STATE(2605)] = 104508, + [SMALL_STATE(2606)] = 104554, + [SMALL_STATE(2607)] = 104600, + [SMALL_STATE(2608)] = 104646, + [SMALL_STATE(2609)] = 104694, + [SMALL_STATE(2610)] = 104740, + [SMALL_STATE(2611)] = 104786, + [SMALL_STATE(2612)] = 104832, + [SMALL_STATE(2613)] = 104878, + [SMALL_STATE(2614)] = 104924, + [SMALL_STATE(2615)] = 104974, + [SMALL_STATE(2616)] = 105020, + [SMALL_STATE(2617)] = 105066, + [SMALL_STATE(2618)] = 105112, + [SMALL_STATE(2619)] = 105158, + [SMALL_STATE(2620)] = 105204, + [SMALL_STATE(2621)] = 105250, + [SMALL_STATE(2622)] = 105296, + [SMALL_STATE(2623)] = 105342, + [SMALL_STATE(2624)] = 105388, + [SMALL_STATE(2625)] = 105434, + [SMALL_STATE(2626)] = 105480, + [SMALL_STATE(2627)] = 105526, + [SMALL_STATE(2628)] = 105574, + [SMALL_STATE(2629)] = 105620, + [SMALL_STATE(2630)] = 105668, + [SMALL_STATE(2631)] = 105714, + [SMALL_STATE(2632)] = 105760, + [SMALL_STATE(2633)] = 105806, + [SMALL_STATE(2634)] = 105854, + [SMALL_STATE(2635)] = 105900, + [SMALL_STATE(2636)] = 105948, + [SMALL_STATE(2637)] = 105998, + [SMALL_STATE(2638)] = 106044, + [SMALL_STATE(2639)] = 106090, + [SMALL_STATE(2640)] = 106138, + [SMALL_STATE(2641)] = 106184, + [SMALL_STATE(2642)] = 106230, + [SMALL_STATE(2643)] = 106276, + [SMALL_STATE(2644)] = 106324, + [SMALL_STATE(2645)] = 106370, + [SMALL_STATE(2646)] = 106416, + [SMALL_STATE(2647)] = 106464, + [SMALL_STATE(2648)] = 106510, + [SMALL_STATE(2649)] = 106556, + [SMALL_STATE(2650)] = 106604, + [SMALL_STATE(2651)] = 106650, + [SMALL_STATE(2652)] = 106696, + [SMALL_STATE(2653)] = 106744, + [SMALL_STATE(2654)] = 106790, + [SMALL_STATE(2655)] = 106848, + [SMALL_STATE(2656)] = 106896, + [SMALL_STATE(2657)] = 106946, + [SMALL_STATE(2658)] = 106992, + [SMALL_STATE(2659)] = 107040, + [SMALL_STATE(2660)] = 107086, + [SMALL_STATE(2661)] = 107132, + [SMALL_STATE(2662)] = 107188, + [SMALL_STATE(2663)] = 107234, + [SMALL_STATE(2664)] = 107280, + [SMALL_STATE(2665)] = 107325, + [SMALL_STATE(2666)] = 107370, + [SMALL_STATE(2667)] = 107437, + [SMALL_STATE(2668)] = 107486, + [SMALL_STATE(2669)] = 107531, + [SMALL_STATE(2670)] = 107582, + [SMALL_STATE(2671)] = 107627, + [SMALL_STATE(2672)] = 107680, + [SMALL_STATE(2673)] = 107725, + [SMALL_STATE(2674)] = 107770, + [SMALL_STATE(2675)] = 107815, + [SMALL_STATE(2676)] = 107866, + [SMALL_STATE(2677)] = 107919, + [SMALL_STATE(2678)] = 107977, + [SMALL_STATE(2679)] = 108021, + [SMALL_STATE(2680)] = 108081, + [SMALL_STATE(2681)] = 108139, + [SMALL_STATE(2682)] = 108199, + [SMALL_STATE(2683)] = 108271, + [SMALL_STATE(2684)] = 108329, + [SMALL_STATE(2685)] = 108387, + [SMALL_STATE(2686)] = 108459, + [SMALL_STATE(2687)] = 108507, + [SMALL_STATE(2688)] = 108555, + [SMALL_STATE(2689)] = 108615, + [SMALL_STATE(2690)] = 108671, + [SMALL_STATE(2691)] = 108724, + [SMALL_STATE(2692)] = 108777, + [SMALL_STATE(2693)] = 108830, + [SMALL_STATE(2694)] = 108883, + [SMALL_STATE(2695)] = 108936, + [SMALL_STATE(2696)] = 108989, + [SMALL_STATE(2697)] = 109042, + [SMALL_STATE(2698)] = 109095, + [SMALL_STATE(2699)] = 109148, + [SMALL_STATE(2700)] = 109201, + [SMALL_STATE(2701)] = 109254, + [SMALL_STATE(2702)] = 109307, + [SMALL_STATE(2703)] = 109356, + [SMALL_STATE(2704)] = 109409, + [SMALL_STATE(2705)] = 109462, + [SMALL_STATE(2706)] = 109525, + [SMALL_STATE(2707)] = 109578, + [SMALL_STATE(2708)] = 109641, + [SMALL_STATE(2709)] = 109694, + [SMALL_STATE(2710)] = 109747, + [SMALL_STATE(2711)] = 109800, + [SMALL_STATE(2712)] = 109853, + [SMALL_STATE(2713)] = 109906, + [SMALL_STATE(2714)] = 109959, + [SMALL_STATE(2715)] = 110012, + [SMALL_STATE(2716)] = 110065, + [SMALL_STATE(2717)] = 110118, + [SMALL_STATE(2718)] = 110171, + [SMALL_STATE(2719)] = 110224, + [SMALL_STATE(2720)] = 110277, + [SMALL_STATE(2721)] = 110341, + [SMALL_STATE(2722)] = 110421, + [SMALL_STATE(2723)] = 110475, + [SMALL_STATE(2724)] = 110529, + [SMALL_STATE(2725)] = 110583, + [SMALL_STATE(2726)] = 110663, + [SMALL_STATE(2727)] = 110743, + [SMALL_STATE(2728)] = 110797, + [SMALL_STATE(2729)] = 110851, + [SMALL_STATE(2730)] = 110915, + [SMALL_STATE(2731)] = 110969, + [SMALL_STATE(2732)] = 111049, + [SMALL_STATE(2733)] = 111109, + [SMALL_STATE(2734)] = 111189, + [SMALL_STATE(2735)] = 111269, + [SMALL_STATE(2736)] = 111323, + [SMALL_STATE(2737)] = 111403, + [SMALL_STATE(2738)] = 111463, + [SMALL_STATE(2739)] = 111517, + [SMALL_STATE(2740)] = 111581, + [SMALL_STATE(2741)] = 111635, + [SMALL_STATE(2742)] = 111689, + [SMALL_STATE(2743)] = 111742, + [SMALL_STATE(2744)] = 111783, + [SMALL_STATE(2745)] = 111840, + [SMALL_STATE(2746)] = 111897, + [SMALL_STATE(2747)] = 111940, + [SMALL_STATE(2748)] = 111997, + [SMALL_STATE(2749)] = 112054, + [SMALL_STATE(2750)] = 112111, + [SMALL_STATE(2751)] = 112164, + [SMALL_STATE(2752)] = 112221, + [SMALL_STATE(2753)] = 112278, + [SMALL_STATE(2754)] = 112335, + [SMALL_STATE(2755)] = 112392, + [SMALL_STATE(2756)] = 112449, + [SMALL_STATE(2757)] = 112490, + [SMALL_STATE(2758)] = 112541, + [SMALL_STATE(2759)] = 112598, + [SMALL_STATE(2760)] = 112639, + [SMALL_STATE(2761)] = 112680, + [SMALL_STATE(2762)] = 112737, + [SMALL_STATE(2763)] = 112778, + [SMALL_STATE(2764)] = 112835, + [SMALL_STATE(2765)] = 112892, + [SMALL_STATE(2766)] = 112949, + [SMALL_STATE(2767)] = 113006, + [SMALL_STATE(2768)] = 113054, + [SMALL_STATE(2769)] = 113104, + [SMALL_STATE(2770)] = 113152, + [SMALL_STATE(2771)] = 113200, + [SMALL_STATE(2772)] = 113248, + [SMALL_STATE(2773)] = 113296, + [SMALL_STATE(2774)] = 113346, + [SMALL_STATE(2775)] = 113394, + [SMALL_STATE(2776)] = 113442, + [SMALL_STATE(2777)] = 113490, + [SMALL_STATE(2778)] = 113538, + [SMALL_STATE(2779)] = 113586, + [SMALL_STATE(2780)] = 113636, + [SMALL_STATE(2781)] = 113684, + [SMALL_STATE(2782)] = 113732, + [SMALL_STATE(2783)] = 113780, + [SMALL_STATE(2784)] = 113828, + [SMALL_STATE(2785)] = 113876, + [SMALL_STATE(2786)] = 113926, + [SMALL_STATE(2787)] = 113974, + [SMALL_STATE(2788)] = 114022, + [SMALL_STATE(2789)] = 114070, + [SMALL_STATE(2790)] = 114118, + [SMALL_STATE(2791)] = 114166, + [SMALL_STATE(2792)] = 114214, + [SMALL_STATE(2793)] = 114262, + [SMALL_STATE(2794)] = 114312, + [SMALL_STATE(2795)] = 114362, + [SMALL_STATE(2796)] = 114412, + [SMALL_STATE(2797)] = 114460, + [SMALL_STATE(2798)] = 114508, + [SMALL_STATE(2799)] = 114556, + [SMALL_STATE(2800)] = 114604, + [SMALL_STATE(2801)] = 114652, + [SMALL_STATE(2802)] = 114700, + [SMALL_STATE(2803)] = 114750, + [SMALL_STATE(2804)] = 114798, + [SMALL_STATE(2805)] = 114848, + [SMALL_STATE(2806)] = 114896, + [SMALL_STATE(2807)] = 114944, + [SMALL_STATE(2808)] = 114992, + [SMALL_STATE(2809)] = 115040, + [SMALL_STATE(2810)] = 115090, + [SMALL_STATE(2811)] = 115138, + [SMALL_STATE(2812)] = 115186, + [SMALL_STATE(2813)] = 115234, + [SMALL_STATE(2814)] = 115284, + [SMALL_STATE(2815)] = 115332, + [SMALL_STATE(2816)] = 115382, + [SMALL_STATE(2817)] = 115430, + [SMALL_STATE(2818)] = 115480, + [SMALL_STATE(2819)] = 115528, + [SMALL_STATE(2820)] = 115576, + [SMALL_STATE(2821)] = 115624, + [SMALL_STATE(2822)] = 115672, + [SMALL_STATE(2823)] = 115720, + [SMALL_STATE(2824)] = 115768, + [SMALL_STATE(2825)] = 115818, + [SMALL_STATE(2826)] = 115866, + [SMALL_STATE(2827)] = 115914, + [SMALL_STATE(2828)] = 115962, + [SMALL_STATE(2829)] = 115997, + [SMALL_STATE(2830)] = 116038, + [SMALL_STATE(2831)] = 116079, + [SMALL_STATE(2832)] = 116120, + [SMALL_STATE(2833)] = 116148, + [SMALL_STATE(2834)] = 116176, + [SMALL_STATE(2835)] = 116204, + [SMALL_STATE(2836)] = 116232, + [SMALL_STATE(2837)] = 116260, + [SMALL_STATE(2838)] = 116288, + [SMALL_STATE(2839)] = 116316, + [SMALL_STATE(2840)] = 116344, + [SMALL_STATE(2841)] = 116372, + [SMALL_STATE(2842)] = 116400, + [SMALL_STATE(2843)] = 116428, + [SMALL_STATE(2844)] = 116456, + [SMALL_STATE(2845)] = 116484, + [SMALL_STATE(2846)] = 116512, + [SMALL_STATE(2847)] = 116540, + [SMALL_STATE(2848)] = 116568, + [SMALL_STATE(2849)] = 116596, + [SMALL_STATE(2850)] = 116624, + [SMALL_STATE(2851)] = 116652, + [SMALL_STATE(2852)] = 116680, + [SMALL_STATE(2853)] = 116708, + [SMALL_STATE(2854)] = 116736, + [SMALL_STATE(2855)] = 116764, + [SMALL_STATE(2856)] = 116792, + [SMALL_STATE(2857)] = 116820, + [SMALL_STATE(2858)] = 116848, + [SMALL_STATE(2859)] = 116876, + [SMALL_STATE(2860)] = 116904, + [SMALL_STATE(2861)] = 116932, + [SMALL_STATE(2862)] = 116960, + [SMALL_STATE(2863)] = 116988, + [SMALL_STATE(2864)] = 117016, + [SMALL_STATE(2865)] = 117044, + [SMALL_STATE(2866)] = 117072, + [SMALL_STATE(2867)] = 117099, + [SMALL_STATE(2868)] = 117126, + [SMALL_STATE(2869)] = 117183, + [SMALL_STATE(2870)] = 117216, + [SMALL_STATE(2871)] = 117273, + [SMALL_STATE(2872)] = 117299, + [SMALL_STATE(2873)] = 117329, + [SMALL_STATE(2874)] = 117355, + [SMALL_STATE(2875)] = 117381, + [SMALL_STATE(2876)] = 117407, + [SMALL_STATE(2877)] = 117433, + [SMALL_STATE(2878)] = 117459, + [SMALL_STATE(2879)] = 117493, + [SMALL_STATE(2880)] = 117519, + [SMALL_STATE(2881)] = 117547, + [SMALL_STATE(2882)] = 117585, + [SMALL_STATE(2883)] = 117615, + [SMALL_STATE(2884)] = 117643, + [SMALL_STATE(2885)] = 117669, + [SMALL_STATE(2886)] = 117719, + [SMALL_STATE(2887)] = 117749, + [SMALL_STATE(2888)] = 117787, + [SMALL_STATE(2889)] = 117825, + [SMALL_STATE(2890)] = 117851, + [SMALL_STATE(2891)] = 117882, + [SMALL_STATE(2892)] = 117909, + [SMALL_STATE(2893)] = 117934, + [SMALL_STATE(2894)] = 117959, + [SMALL_STATE(2895)] = 117984, + [SMALL_STATE(2896)] = 118009, + [SMALL_STATE(2897)] = 118034, + [SMALL_STATE(2898)] = 118059, + [SMALL_STATE(2899)] = 118084, + [SMALL_STATE(2900)] = 118108, + [SMALL_STATE(2901)] = 118132, + [SMALL_STATE(2902)] = 118156, + [SMALL_STATE(2903)] = 118180, + [SMALL_STATE(2904)] = 118204, + [SMALL_STATE(2905)] = 118228, + [SMALL_STATE(2906)] = 118262, + [SMALL_STATE(2907)] = 118296, + [SMALL_STATE(2908)] = 118330, + [SMALL_STATE(2909)] = 118354, + [SMALL_STATE(2910)] = 118378, + [SMALL_STATE(2911)] = 118402, + [SMALL_STATE(2912)] = 118426, + [SMALL_STATE(2913)] = 118452, + [SMALL_STATE(2914)] = 118476, + [SMALL_STATE(2915)] = 118498, + [SMALL_STATE(2916)] = 118522, + [SMALL_STATE(2917)] = 118554, + [SMALL_STATE(2918)] = 118588, + [SMALL_STATE(2919)] = 118622, + [SMALL_STATE(2920)] = 118656, + [SMALL_STATE(2921)] = 118680, + [SMALL_STATE(2922)] = 118704, + [SMALL_STATE(2923)] = 118728, + [SMALL_STATE(2924)] = 118752, + [SMALL_STATE(2925)] = 118776, + [SMALL_STATE(2926)] = 118808, + [SMALL_STATE(2927)] = 118842, + [SMALL_STATE(2928)] = 118876, + [SMALL_STATE(2929)] = 118910, + [SMALL_STATE(2930)] = 118934, + [SMALL_STATE(2931)] = 118958, + [SMALL_STATE(2932)] = 118982, + [SMALL_STATE(2933)] = 119006, + [SMALL_STATE(2934)] = 119030, + [SMALL_STATE(2935)] = 119054, + [SMALL_STATE(2936)] = 119078, + [SMALL_STATE(2937)] = 119100, + [SMALL_STATE(2938)] = 119124, + [SMALL_STATE(2939)] = 119148, + [SMALL_STATE(2940)] = 119172, + [SMALL_STATE(2941)] = 119196, + [SMALL_STATE(2942)] = 119220, + [SMALL_STATE(2943)] = 119244, + [SMALL_STATE(2944)] = 119268, + [SMALL_STATE(2945)] = 119300, + [SMALL_STATE(2946)] = 119334, + [SMALL_STATE(2947)] = 119368, + [SMALL_STATE(2948)] = 119402, + [SMALL_STATE(2949)] = 119424, + [SMALL_STATE(2950)] = 119448, + [SMALL_STATE(2951)] = 119472, + [SMALL_STATE(2952)] = 119496, + [SMALL_STATE(2953)] = 119520, + [SMALL_STATE(2954)] = 119544, + [SMALL_STATE(2955)] = 119568, + [SMALL_STATE(2956)] = 119592, + [SMALL_STATE(2957)] = 119616, + [SMALL_STATE(2958)] = 119640, + [SMALL_STATE(2959)] = 119664, + [SMALL_STATE(2960)] = 119688, + [SMALL_STATE(2961)] = 119712, + [SMALL_STATE(2962)] = 119736, + [SMALL_STATE(2963)] = 119760, + [SMALL_STATE(2964)] = 119784, + [SMALL_STATE(2965)] = 119808, + [SMALL_STATE(2966)] = 119832, + [SMALL_STATE(2967)] = 119856, + [SMALL_STATE(2968)] = 119880, + [SMALL_STATE(2969)] = 119904, + [SMALL_STATE(2970)] = 119936, + [SMALL_STATE(2971)] = 119970, + [SMALL_STATE(2972)] = 120004, + [SMALL_STATE(2973)] = 120038, + [SMALL_STATE(2974)] = 120060, + [SMALL_STATE(2975)] = 120084, + [SMALL_STATE(2976)] = 120108, + [SMALL_STATE(2977)] = 120132, + [SMALL_STATE(2978)] = 120154, + [SMALL_STATE(2979)] = 120186, + [SMALL_STATE(2980)] = 120220, + [SMALL_STATE(2981)] = 120254, + [SMALL_STATE(2982)] = 120288, + [SMALL_STATE(2983)] = 120310, + [SMALL_STATE(2984)] = 120342, + [SMALL_STATE(2985)] = 120364, + [SMALL_STATE(2986)] = 120388, + [SMALL_STATE(2987)] = 120410, + [SMALL_STATE(2988)] = 120434, + [SMALL_STATE(2989)] = 120458, + [SMALL_STATE(2990)] = 120482, + [SMALL_STATE(2991)] = 120506, + [SMALL_STATE(2992)] = 120528, + [SMALL_STATE(2993)] = 120552, + [SMALL_STATE(2994)] = 120576, + [SMALL_STATE(2995)] = 120600, + [SMALL_STATE(2996)] = 120628, + [SMALL_STATE(2997)] = 120652, + [SMALL_STATE(2998)] = 120678, + [SMALL_STATE(2999)] = 120702, + [SMALL_STATE(3000)] = 120726, + [SMALL_STATE(3001)] = 120755, + [SMALL_STATE(3002)] = 120780, + [SMALL_STATE(3003)] = 120809, + [SMALL_STATE(3004)] = 120838, + [SMALL_STATE(3005)] = 120881, + [SMALL_STATE(3006)] = 120920, + [SMALL_STATE(3007)] = 120963, + [SMALL_STATE(3008)] = 121006, + [SMALL_STATE(3009)] = 121031, + [SMALL_STATE(3010)] = 121074, + [SMALL_STATE(3011)] = 121103, + [SMALL_STATE(3012)] = 121146, + [SMALL_STATE(3013)] = 121185, + [SMALL_STATE(3014)] = 121228, + [SMALL_STATE(3015)] = 121271, + [SMALL_STATE(3016)] = 121314, + [SMALL_STATE(3017)] = 121343, + [SMALL_STATE(3018)] = 121386, + [SMALL_STATE(3019)] = 121429, + [SMALL_STATE(3020)] = 121458, + [SMALL_STATE(3021)] = 121487, + [SMALL_STATE(3022)] = 121530, + [SMALL_STATE(3023)] = 121573, + [SMALL_STATE(3024)] = 121616, + [SMALL_STATE(3025)] = 121659, + [SMALL_STATE(3026)] = 121702, + [SMALL_STATE(3027)] = 121745, + [SMALL_STATE(3028)] = 121774, + [SMALL_STATE(3029)] = 121813, + [SMALL_STATE(3030)] = 121858, + [SMALL_STATE(3031)] = 121893, + [SMALL_STATE(3032)] = 121932, + [SMALL_STATE(3033)] = 121961, + [SMALL_STATE(3034)] = 122004, + [SMALL_STATE(3035)] = 122029, + [SMALL_STATE(3036)] = 122072, + [SMALL_STATE(3037)] = 122115, + [SMALL_STATE(3038)] = 122154, + [SMALL_STATE(3039)] = 122197, + [SMALL_STATE(3040)] = 122240, + [SMALL_STATE(3041)] = 122283, + [SMALL_STATE(3042)] = 122326, + [SMALL_STATE(3043)] = 122350, + [SMALL_STATE(3044)] = 122372, + [SMALL_STATE(3045)] = 122394, + [SMALL_STATE(3046)] = 122436, + [SMALL_STATE(3047)] = 122458, + [SMALL_STATE(3048)] = 122480, + [SMALL_STATE(3049)] = 122500, + [SMALL_STATE(3050)] = 122520, + [SMALL_STATE(3051)] = 122540, + [SMALL_STATE(3052)] = 122560, + [SMALL_STATE(3053)] = 122580, + [SMALL_STATE(3054)] = 122604, + [SMALL_STATE(3055)] = 122632, + [SMALL_STATE(3056)] = 122668, + [SMALL_STATE(3057)] = 122688, + [SMALL_STATE(3058)] = 122722, + [SMALL_STATE(3059)] = 122742, + [SMALL_STATE(3060)] = 122778, + [SMALL_STATE(3061)] = 122806, + [SMALL_STATE(3062)] = 122834, + [SMALL_STATE(3063)] = 122868, + [SMALL_STATE(3064)] = 122910, + [SMALL_STATE(3065)] = 122930, + [SMALL_STATE(3066)] = 122964, + [SMALL_STATE(3067)] = 122984, + [SMALL_STATE(3068)] = 123004, + [SMALL_STATE(3069)] = 123024, + [SMALL_STATE(3070)] = 123044, + [SMALL_STATE(3071)] = 123064, + [SMALL_STATE(3072)] = 123090, + [SMALL_STATE(3073)] = 123110, + [SMALL_STATE(3074)] = 123130, + [SMALL_STATE(3075)] = 123158, + [SMALL_STATE(3076)] = 123192, + [SMALL_STATE(3077)] = 123212, + [SMALL_STATE(3078)] = 123232, + [SMALL_STATE(3079)] = 123266, + [SMALL_STATE(3080)] = 123292, + [SMALL_STATE(3081)] = 123328, + [SMALL_STATE(3082)] = 123348, + [SMALL_STATE(3083)] = 123374, + [SMALL_STATE(3084)] = 123394, + [SMALL_STATE(3085)] = 123428, + [SMALL_STATE(3086)] = 123462, + [SMALL_STATE(3087)] = 123482, + [SMALL_STATE(3088)] = 123502, + [SMALL_STATE(3089)] = 123522, + [SMALL_STATE(3090)] = 123558, + [SMALL_STATE(3091)] = 123578, + [SMALL_STATE(3092)] = 123612, + [SMALL_STATE(3093)] = 123634, + [SMALL_STATE(3094)] = 123654, + [SMALL_STATE(3095)] = 123690, + [SMALL_STATE(3096)] = 123710, + [SMALL_STATE(3097)] = 123730, + [SMALL_STATE(3098)] = 123750, + [SMALL_STATE(3099)] = 123770, + [SMALL_STATE(3100)] = 123806, + [SMALL_STATE(3101)] = 123828, + [SMALL_STATE(3102)] = 123850, + [SMALL_STATE(3103)] = 123870, + [SMALL_STATE(3104)] = 123898, + [SMALL_STATE(3105)] = 123920, + [SMALL_STATE(3106)] = 123940, + [SMALL_STATE(3107)] = 123962, + [SMALL_STATE(3108)] = 123990, + [SMALL_STATE(3109)] = 124014, + [SMALL_STATE(3110)] = 124036, + [SMALL_STATE(3111)] = 124056, + [SMALL_STATE(3112)] = 124076, + [SMALL_STATE(3113)] = 124104, + [SMALL_STATE(3114)] = 124140, + [SMALL_STATE(3115)] = 124164, + [SMALL_STATE(3116)] = 124192, + [SMALL_STATE(3117)] = 124214, + [SMALL_STATE(3118)] = 124236, + [SMALL_STATE(3119)] = 124256, + [SMALL_STATE(3120)] = 124292, + [SMALL_STATE(3121)] = 124328, + [SMALL_STATE(3122)] = 124352, + [SMALL_STATE(3123)] = 124372, + [SMALL_STATE(3124)] = 124408, + [SMALL_STATE(3125)] = 124431, + [SMALL_STATE(3126)] = 124464, + [SMALL_STATE(3127)] = 124497, + [SMALL_STATE(3128)] = 124534, + [SMALL_STATE(3129)] = 124565, + [SMALL_STATE(3130)] = 124586, + [SMALL_STATE(3131)] = 124615, + [SMALL_STATE(3132)] = 124636, + [SMALL_STATE(3133)] = 124657, + [SMALL_STATE(3134)] = 124686, + [SMALL_STATE(3135)] = 124723, + [SMALL_STATE(3136)] = 124746, + [SMALL_STATE(3137)] = 124769, + [SMALL_STATE(3138)] = 124806, + [SMALL_STATE(3139)] = 124839, + [SMALL_STATE(3140)] = 124878, + [SMALL_STATE(3141)] = 124917, + [SMALL_STATE(3142)] = 124954, + [SMALL_STATE(3143)] = 124985, + [SMALL_STATE(3144)] = 125022, + [SMALL_STATE(3145)] = 125045, + [SMALL_STATE(3146)] = 125082, + [SMALL_STATE(3147)] = 125115, + [SMALL_STATE(3148)] = 125152, + [SMALL_STATE(3149)] = 125181, + [SMALL_STATE(3150)] = 125202, + [SMALL_STATE(3151)] = 125239, + [SMALL_STATE(3152)] = 125270, + [SMALL_STATE(3153)] = 125303, + [SMALL_STATE(3154)] = 125340, + [SMALL_STATE(3155)] = 125373, + [SMALL_STATE(3156)] = 125412, + [SMALL_STATE(3157)] = 125449, + [SMALL_STATE(3158)] = 125474, + [SMALL_STATE(3159)] = 125507, + [SMALL_STATE(3160)] = 125544, + [SMALL_STATE(3161)] = 125575, + [SMALL_STATE(3162)] = 125612, + [SMALL_STATE(3163)] = 125651, + [SMALL_STATE(3164)] = 125682, + [SMALL_STATE(3165)] = 125719, + [SMALL_STATE(3166)] = 125756, + [SMALL_STATE(3167)] = 125777, + [SMALL_STATE(3168)] = 125806, + [SMALL_STATE(3169)] = 125843, + [SMALL_STATE(3170)] = 125872, + [SMALL_STATE(3171)] = 125909, + [SMALL_STATE(3172)] = 125932, + [SMALL_STATE(3173)] = 125965, + [SMALL_STATE(3174)] = 125996, + [SMALL_STATE(3175)] = 126033, + [SMALL_STATE(3176)] = 126072, + [SMALL_STATE(3177)] = 126097, + [SMALL_STATE(3178)] = 126134, + [SMALL_STATE(3179)] = 126167, + [SMALL_STATE(3180)] = 126204, + [SMALL_STATE(3181)] = 126225, + [SMALL_STATE(3182)] = 126262, + [SMALL_STATE(3183)] = 126283, + [SMALL_STATE(3184)] = 126320, + [SMALL_STATE(3185)] = 126357, + [SMALL_STATE(3186)] = 126390, + [SMALL_STATE(3187)] = 126427, + [SMALL_STATE(3188)] = 126447, + [SMALL_STATE(3189)] = 126465, + [SMALL_STATE(3190)] = 126483, + [SMALL_STATE(3191)] = 126501, + [SMALL_STATE(3192)] = 126521, + [SMALL_STATE(3193)] = 126541, + [SMALL_STATE(3194)] = 126559, + [SMALL_STATE(3195)] = 126579, + [SMALL_STATE(3196)] = 126597, + [SMALL_STATE(3197)] = 126617, + [SMALL_STATE(3198)] = 126639, + [SMALL_STATE(3199)] = 126657, + [SMALL_STATE(3200)] = 126677, + [SMALL_STATE(3201)] = 126695, + [SMALL_STATE(3202)] = 126713, + [SMALL_STATE(3203)] = 126731, + [SMALL_STATE(3204)] = 126749, + [SMALL_STATE(3205)] = 126769, + [SMALL_STATE(3206)] = 126789, + [SMALL_STATE(3207)] = 126809, + [SMALL_STATE(3208)] = 126829, + [SMALL_STATE(3209)] = 126851, + [SMALL_STATE(3210)] = 126871, + [SMALL_STATE(3211)] = 126891, + [SMALL_STATE(3212)] = 126913, + [SMALL_STATE(3213)] = 126933, + [SMALL_STATE(3214)] = 126957, + [SMALL_STATE(3215)] = 126981, + [SMALL_STATE(3216)] = 127003, + [SMALL_STATE(3217)] = 127025, + [SMALL_STATE(3218)] = 127043, + [SMALL_STATE(3219)] = 127063, + [SMALL_STATE(3220)] = 127083, + [SMALL_STATE(3221)] = 127103, + [SMALL_STATE(3222)] = 127123, + [SMALL_STATE(3223)] = 127143, + [SMALL_STATE(3224)] = 127165, + [SMALL_STATE(3225)] = 127185, + [SMALL_STATE(3226)] = 127205, + [SMALL_STATE(3227)] = 127225, + [SMALL_STATE(3228)] = 127247, + [SMALL_STATE(3229)] = 127267, + [SMALL_STATE(3230)] = 127291, + [SMALL_STATE(3231)] = 127311, + [SMALL_STATE(3232)] = 127333, + [SMALL_STATE(3233)] = 127353, + [SMALL_STATE(3234)] = 127373, + [SMALL_STATE(3235)] = 127393, + [SMALL_STATE(3236)] = 127413, + [SMALL_STATE(3237)] = 127433, + [SMALL_STATE(3238)] = 127457, + [SMALL_STATE(3239)] = 127477, + [SMALL_STATE(3240)] = 127497, + [SMALL_STATE(3241)] = 127521, + [SMALL_STATE(3242)] = 127541, + [SMALL_STATE(3243)] = 127565, + [SMALL_STATE(3244)] = 127583, + [SMALL_STATE(3245)] = 127603, + [SMALL_STATE(3246)] = 127623, + [SMALL_STATE(3247)] = 127643, + [SMALL_STATE(3248)] = 127663, + [SMALL_STATE(3249)] = 127699, + [SMALL_STATE(3250)] = 127719, + [SMALL_STATE(3251)] = 127743, + [SMALL_STATE(3252)] = 127769, + [SMALL_STATE(3253)] = 127795, + [SMALL_STATE(3254)] = 127813, + [SMALL_STATE(3255)] = 127833, + [SMALL_STATE(3256)] = 127851, + [SMALL_STATE(3257)] = 127875, + [SMALL_STATE(3258)] = 127899, + [SMALL_STATE(3259)] = 127919, + [SMALL_STATE(3260)] = 127954, + [SMALL_STATE(3261)] = 127973, + [SMALL_STATE(3262)] = 127990, + [SMALL_STATE(3263)] = 128007, + [SMALL_STATE(3264)] = 128036, + [SMALL_STATE(3265)] = 128061, + [SMALL_STATE(3266)] = 128094, + [SMALL_STATE(3267)] = 128129, + [SMALL_STATE(3268)] = 128152, + [SMALL_STATE(3269)] = 128185, + [SMALL_STATE(3270)] = 128206, + [SMALL_STATE(3271)] = 128239, + [SMALL_STATE(3272)] = 128256, + [SMALL_STATE(3273)] = 128291, + [SMALL_STATE(3274)] = 128322, + [SMALL_STATE(3275)] = 128343, + [SMALL_STATE(3276)] = 128360, + [SMALL_STATE(3277)] = 128395, + [SMALL_STATE(3278)] = 128430, + [SMALL_STATE(3279)] = 128465, + [SMALL_STATE(3280)] = 128500, + [SMALL_STATE(3281)] = 128531, + [SMALL_STATE(3282)] = 128566, + [SMALL_STATE(3283)] = 128597, + [SMALL_STATE(3284)] = 128630, + [SMALL_STATE(3285)] = 128665, + [SMALL_STATE(3286)] = 128686, + [SMALL_STATE(3287)] = 128719, + [SMALL_STATE(3288)] = 128738, + [SMALL_STATE(3289)] = 128773, + [SMALL_STATE(3290)] = 128792, + [SMALL_STATE(3291)] = 128827, + [SMALL_STATE(3292)] = 128850, + [SMALL_STATE(3293)] = 128869, + [SMALL_STATE(3294)] = 128902, + [SMALL_STATE(3295)] = 128930, + [SMALL_STATE(3296)] = 128946, + [SMALL_STATE(3297)] = 128976, + [SMALL_STATE(3298)] = 128992, + [SMALL_STATE(3299)] = 129008, + [SMALL_STATE(3300)] = 129024, + [SMALL_STATE(3301)] = 129054, + [SMALL_STATE(3302)] = 129084, + [SMALL_STATE(3303)] = 129114, + [SMALL_STATE(3304)] = 129144, + [SMALL_STATE(3305)] = 129174, + [SMALL_STATE(3306)] = 129204, + [SMALL_STATE(3307)] = 129232, + [SMALL_STATE(3308)] = 129262, + [SMALL_STATE(3309)] = 129292, + [SMALL_STATE(3310)] = 129320, + [SMALL_STATE(3311)] = 129336, + [SMALL_STATE(3312)] = 129358, + [SMALL_STATE(3313)] = 129386, + [SMALL_STATE(3314)] = 129414, + [SMALL_STATE(3315)] = 129430, + [SMALL_STATE(3316)] = 129448, + [SMALL_STATE(3317)] = 129464, + [SMALL_STATE(3318)] = 129480, + [SMALL_STATE(3319)] = 129496, + [SMALL_STATE(3320)] = 129522, + [SMALL_STATE(3321)] = 129544, + [SMALL_STATE(3322)] = 129560, + [SMALL_STATE(3323)] = 129576, + [SMALL_STATE(3324)] = 129598, + [SMALL_STATE(3325)] = 129614, + [SMALL_STATE(3326)] = 129630, + [SMALL_STATE(3327)] = 129660, + [SMALL_STATE(3328)] = 129676, + [SMALL_STATE(3329)] = 129692, + [SMALL_STATE(3330)] = 129708, + [SMALL_STATE(3331)] = 129724, + [SMALL_STATE(3332)] = 129750, + [SMALL_STATE(3333)] = 129766, + [SMALL_STATE(3334)] = 129782, + [SMALL_STATE(3335)] = 129798, + [SMALL_STATE(3336)] = 129814, + [SMALL_STATE(3337)] = 129830, + [SMALL_STATE(3338)] = 129846, + [SMALL_STATE(3339)] = 129864, + [SMALL_STATE(3340)] = 129880, + [SMALL_STATE(3341)] = 129896, + [SMALL_STATE(3342)] = 129912, + [SMALL_STATE(3343)] = 129928, + [SMALL_STATE(3344)] = 129946, + [SMALL_STATE(3345)] = 129962, + [SMALL_STATE(3346)] = 129978, + [SMALL_STATE(3347)] = 130000, + [SMALL_STATE(3348)] = 130020, + [SMALL_STATE(3349)] = 130036, + [SMALL_STATE(3350)] = 130054, + [SMALL_STATE(3351)] = 130080, + [SMALL_STATE(3352)] = 130108, + [SMALL_STATE(3353)] = 130130, + [SMALL_STATE(3354)] = 130162, + [SMALL_STATE(3355)] = 130180, + [SMALL_STATE(3356)] = 130208, + [SMALL_STATE(3357)] = 130224, + [SMALL_STATE(3358)] = 130250, + [SMALL_STATE(3359)] = 130266, + [SMALL_STATE(3360)] = 130282, + [SMALL_STATE(3361)] = 130312, + [SMALL_STATE(3362)] = 130340, + [SMALL_STATE(3363)] = 130372, + [SMALL_STATE(3364)] = 130400, + [SMALL_STATE(3365)] = 130428, + [SMALL_STATE(3366)] = 130456, + [SMALL_STATE(3367)] = 130484, + [SMALL_STATE(3368)] = 130500, + [SMALL_STATE(3369)] = 130528, + [SMALL_STATE(3370)] = 130560, + [SMALL_STATE(3371)] = 130588, + [SMALL_STATE(3372)] = 130616, + [SMALL_STATE(3373)] = 130646, + [SMALL_STATE(3374)] = 130674, + [SMALL_STATE(3375)] = 130702, + [SMALL_STATE(3376)] = 130728, + [SMALL_STATE(3377)] = 130750, + [SMALL_STATE(3378)] = 130778, + [SMALL_STATE(3379)] = 130806, + [SMALL_STATE(3380)] = 130834, + [SMALL_STATE(3381)] = 130850, + [SMALL_STATE(3382)] = 130878, + [SMALL_STATE(3383)] = 130906, + [SMALL_STATE(3384)] = 130934, + [SMALL_STATE(3385)] = 130950, + [SMALL_STATE(3386)] = 130978, + [SMALL_STATE(3387)] = 131006, + [SMALL_STATE(3388)] = 131036, + [SMALL_STATE(3389)] = 131068, + [SMALL_STATE(3390)] = 131088, + [SMALL_STATE(3391)] = 131120, + [SMALL_STATE(3392)] = 131146, + [SMALL_STATE(3393)] = 131162, + [SMALL_STATE(3394)] = 131192, + [SMALL_STATE(3395)] = 131224, + [SMALL_STATE(3396)] = 131254, + [SMALL_STATE(3397)] = 131270, + [SMALL_STATE(3398)] = 131300, + [SMALL_STATE(3399)] = 131330, + [SMALL_STATE(3400)] = 131360, + [SMALL_STATE(3401)] = 131390, + [SMALL_STATE(3402)] = 131418, + [SMALL_STATE(3403)] = 131444, + [SMALL_STATE(3404)] = 131472, + [SMALL_STATE(3405)] = 131494, + [SMALL_STATE(3406)] = 131522, + [SMALL_STATE(3407)] = 131544, + [SMALL_STATE(3408)] = 131574, + [SMALL_STATE(3409)] = 131600, + [SMALL_STATE(3410)] = 131626, + [SMALL_STATE(3411)] = 131656, + [SMALL_STATE(3412)] = 131686, + [SMALL_STATE(3413)] = 131716, + [SMALL_STATE(3414)] = 131748, + [SMALL_STATE(3415)] = 131780, + [SMALL_STATE(3416)] = 131804, + [SMALL_STATE(3417)] = 131834, + [SMALL_STATE(3418)] = 131866, + [SMALL_STATE(3419)] = 131898, + [SMALL_STATE(3420)] = 131930, + [SMALL_STATE(3421)] = 131960, + [SMALL_STATE(3422)] = 131988, + [SMALL_STATE(3423)] = 132014, + [SMALL_STATE(3424)] = 132044, + [SMALL_STATE(3425)] = 132060, + [SMALL_STATE(3426)] = 132076, + [SMALL_STATE(3427)] = 132108, + [SMALL_STATE(3428)] = 132140, + [SMALL_STATE(3429)] = 132170, + [SMALL_STATE(3430)] = 132198, + [SMALL_STATE(3431)] = 132218, + [SMALL_STATE(3432)] = 132248, + [SMALL_STATE(3433)] = 132264, + [SMALL_STATE(3434)] = 132280, + [SMALL_STATE(3435)] = 132306, + [SMALL_STATE(3436)] = 132334, + [SMALL_STATE(3437)] = 132362, + [SMALL_STATE(3438)] = 132390, + [SMALL_STATE(3439)] = 132418, + [SMALL_STATE(3440)] = 132446, + [SMALL_STATE(3441)] = 132476, + [SMALL_STATE(3442)] = 132504, + [SMALL_STATE(3443)] = 132534, + [SMALL_STATE(3444)] = 132564, + [SMALL_STATE(3445)] = 132592, + [SMALL_STATE(3446)] = 132620, + [SMALL_STATE(3447)] = 132652, + [SMALL_STATE(3448)] = 132680, + [SMALL_STATE(3449)] = 132710, + [SMALL_STATE(3450)] = 132740, + [SMALL_STATE(3451)] = 132768, + [SMALL_STATE(3452)] = 132798, + [SMALL_STATE(3453)] = 132828, + [SMALL_STATE(3454)] = 132860, + [SMALL_STATE(3455)] = 132876, + [SMALL_STATE(3456)] = 132902, + [SMALL_STATE(3457)] = 132930, + [SMALL_STATE(3458)] = 132962, + [SMALL_STATE(3459)] = 132990, + [SMALL_STATE(3460)] = 133018, + [SMALL_STATE(3461)] = 133046, + [SMALL_STATE(3462)] = 133074, + [SMALL_STATE(3463)] = 133100, + [SMALL_STATE(3464)] = 133116, + [SMALL_STATE(3465)] = 133148, + [SMALL_STATE(3466)] = 133176, + [SMALL_STATE(3467)] = 133204, + [SMALL_STATE(3468)] = 133236, + [SMALL_STATE(3469)] = 133268, + [SMALL_STATE(3470)] = 133294, + [SMALL_STATE(3471)] = 133310, + [SMALL_STATE(3472)] = 133326, + [SMALL_STATE(3473)] = 133356, + [SMALL_STATE(3474)] = 133386, + [SMALL_STATE(3475)] = 133414, + [SMALL_STATE(3476)] = 133439, + [SMALL_STATE(3477)] = 133462, + [SMALL_STATE(3478)] = 133477, + [SMALL_STATE(3479)] = 133492, + [SMALL_STATE(3480)] = 133509, + [SMALL_STATE(3481)] = 133534, + [SMALL_STATE(3482)] = 133553, + [SMALL_STATE(3483)] = 133582, + [SMALL_STATE(3484)] = 133599, + [SMALL_STATE(3485)] = 133624, + [SMALL_STATE(3486)] = 133649, + [SMALL_STATE(3487)] = 133674, + [SMALL_STATE(3488)] = 133697, + [SMALL_STATE(3489)] = 133722, + [SMALL_STATE(3490)] = 133745, + [SMALL_STATE(3491)] = 133768, + [SMALL_STATE(3492)] = 133783, + [SMALL_STATE(3493)] = 133798, + [SMALL_STATE(3494)] = 133821, + [SMALL_STATE(3495)] = 133842, + [SMALL_STATE(3496)] = 133871, + [SMALL_STATE(3497)] = 133892, + [SMALL_STATE(3498)] = 133913, + [SMALL_STATE(3499)] = 133942, + [SMALL_STATE(3500)] = 133959, + [SMALL_STATE(3501)] = 133980, + [SMALL_STATE(3502)] = 134003, + [SMALL_STATE(3503)] = 134026, + [SMALL_STATE(3504)] = 134051, + [SMALL_STATE(3505)] = 134074, + [SMALL_STATE(3506)] = 134095, + [SMALL_STATE(3507)] = 134120, + [SMALL_STATE(3508)] = 134149, + [SMALL_STATE(3509)] = 134178, + [SMALL_STATE(3510)] = 134203, + [SMALL_STATE(3511)] = 134228, + [SMALL_STATE(3512)] = 134251, + [SMALL_STATE(3513)] = 134280, + [SMALL_STATE(3514)] = 134305, + [SMALL_STATE(3515)] = 134334, + [SMALL_STATE(3516)] = 134363, + [SMALL_STATE(3517)] = 134378, + [SMALL_STATE(3518)] = 134403, + [SMALL_STATE(3519)] = 134420, + [SMALL_STATE(3520)] = 134437, + [SMALL_STATE(3521)] = 134458, + [SMALL_STATE(3522)] = 134480, + [SMALL_STATE(3523)] = 134502, + [SMALL_STATE(3524)] = 134524, + [SMALL_STATE(3525)] = 134546, + [SMALL_STATE(3526)] = 134564, + [SMALL_STATE(3527)] = 134586, + [SMALL_STATE(3528)] = 134600, + [SMALL_STATE(3529)] = 134622, + [SMALL_STATE(3530)] = 134644, + [SMALL_STATE(3531)] = 134666, + [SMALL_STATE(3532)] = 134688, + [SMALL_STATE(3533)] = 134714, + [SMALL_STATE(3534)] = 134736, + [SMALL_STATE(3535)] = 134750, + [SMALL_STATE(3536)] = 134764, + [SMALL_STATE(3537)] = 134790, + [SMALL_STATE(3538)] = 134810, + [SMALL_STATE(3539)] = 134826, + [SMALL_STATE(3540)] = 134846, + [SMALL_STATE(3541)] = 134868, + [SMALL_STATE(3542)] = 134888, + [SMALL_STATE(3543)] = 134906, + [SMALL_STATE(3544)] = 134928, + [SMALL_STATE(3545)] = 134950, + [SMALL_STATE(3546)] = 134972, + [SMALL_STATE(3547)] = 134994, + [SMALL_STATE(3548)] = 135016, + [SMALL_STATE(3549)] = 135034, + [SMALL_STATE(3550)] = 135056, + [SMALL_STATE(3551)] = 135082, + [SMALL_STATE(3552)] = 135102, + [SMALL_STATE(3553)] = 135128, + [SMALL_STATE(3554)] = 135146, + [SMALL_STATE(3555)] = 135166, + [SMALL_STATE(3556)] = 135188, + [SMALL_STATE(3557)] = 135206, + [SMALL_STATE(3558)] = 135224, + [SMALL_STATE(3559)] = 135246, + [SMALL_STATE(3560)] = 135266, + [SMALL_STATE(3561)] = 135286, + [SMALL_STATE(3562)] = 135304, + [SMALL_STATE(3563)] = 135322, + [SMALL_STATE(3564)] = 135344, + [SMALL_STATE(3565)] = 135358, + [SMALL_STATE(3566)] = 135376, + [SMALL_STATE(3567)] = 135402, + [SMALL_STATE(3568)] = 135424, + [SMALL_STATE(3569)] = 135442, + [SMALL_STATE(3570)] = 135460, + [SMALL_STATE(3571)] = 135474, + [SMALL_STATE(3572)] = 135496, + [SMALL_STATE(3573)] = 135516, + [SMALL_STATE(3574)] = 135538, + [SMALL_STATE(3575)] = 135564, + [SMALL_STATE(3576)] = 135586, + [SMALL_STATE(3577)] = 135604, + [SMALL_STATE(3578)] = 135622, + [SMALL_STATE(3579)] = 135644, + [SMALL_STATE(3580)] = 135666, + [SMALL_STATE(3581)] = 135688, + [SMALL_STATE(3582)] = 135710, + [SMALL_STATE(3583)] = 135728, + [SMALL_STATE(3584)] = 135742, + [SMALL_STATE(3585)] = 135768, + [SMALL_STATE(3586)] = 135794, + [SMALL_STATE(3587)] = 135808, + [SMALL_STATE(3588)] = 135834, + [SMALL_STATE(3589)] = 135852, + [SMALL_STATE(3590)] = 135878, + [SMALL_STATE(3591)] = 135904, + [SMALL_STATE(3592)] = 135926, + [SMALL_STATE(3593)] = 135952, + [SMALL_STATE(3594)] = 135974, + [SMALL_STATE(3595)] = 135992, + [SMALL_STATE(3596)] = 136018, + [SMALL_STATE(3597)] = 136044, + [SMALL_STATE(3598)] = 136066, + [SMALL_STATE(3599)] = 136084, + [SMALL_STATE(3600)] = 136106, + [SMALL_STATE(3601)] = 136120, + [SMALL_STATE(3602)] = 136142, + [SMALL_STATE(3603)] = 136168, + [SMALL_STATE(3604)] = 136184, + [SMALL_STATE(3605)] = 136206, + [SMALL_STATE(3606)] = 136232, + [SMALL_STATE(3607)] = 136254, + [SMALL_STATE(3608)] = 136276, + [SMALL_STATE(3609)] = 136298, + [SMALL_STATE(3610)] = 136320, + [SMALL_STATE(3611)] = 136346, + [SMALL_STATE(3612)] = 136372, + [SMALL_STATE(3613)] = 136394, + [SMALL_STATE(3614)] = 136416, + [SMALL_STATE(3615)] = 136438, + [SMALL_STATE(3616)] = 136460, + [SMALL_STATE(3617)] = 136474, + [SMALL_STATE(3618)] = 136496, + [SMALL_STATE(3619)] = 136522, + [SMALL_STATE(3620)] = 136544, + [SMALL_STATE(3621)] = 136570, + [SMALL_STATE(3622)] = 136592, + [SMALL_STATE(3623)] = 136614, + [SMALL_STATE(3624)] = 136632, + [SMALL_STATE(3625)] = 136654, + [SMALL_STATE(3626)] = 136670, + [SMALL_STATE(3627)] = 136692, + [SMALL_STATE(3628)] = 136718, + [SMALL_STATE(3629)] = 136740, + [SMALL_STATE(3630)] = 136762, + [SMALL_STATE(3631)] = 136788, + [SMALL_STATE(3632)] = 136814, + [SMALL_STATE(3633)] = 136836, + [SMALL_STATE(3634)] = 136862, + [SMALL_STATE(3635)] = 136884, + [SMALL_STATE(3636)] = 136906, + [SMALL_STATE(3637)] = 136922, + [SMALL_STATE(3638)] = 136944, + [SMALL_STATE(3639)] = 136966, + [SMALL_STATE(3640)] = 136988, + [SMALL_STATE(3641)] = 137014, + [SMALL_STATE(3642)] = 137040, + [SMALL_STATE(3643)] = 137062, + [SMALL_STATE(3644)] = 137084, + [SMALL_STATE(3645)] = 137098, + [SMALL_STATE(3646)] = 137120, + [SMALL_STATE(3647)] = 137142, + [SMALL_STATE(3648)] = 137168, + [SMALL_STATE(3649)] = 137190, + [SMALL_STATE(3650)] = 137212, + [SMALL_STATE(3651)] = 137234, + [SMALL_STATE(3652)] = 137250, + [SMALL_STATE(3653)] = 137270, + [SMALL_STATE(3654)] = 137292, + [SMALL_STATE(3655)] = 137318, + [SMALL_STATE(3656)] = 137340, + [SMALL_STATE(3657)] = 137366, + [SMALL_STATE(3658)] = 137392, + [SMALL_STATE(3659)] = 137418, + [SMALL_STATE(3660)] = 137444, + [SMALL_STATE(3661)] = 137470, + [SMALL_STATE(3662)] = 137492, + [SMALL_STATE(3663)] = 137514, + [SMALL_STATE(3664)] = 137540, + [SMALL_STATE(3665)] = 137554, + [SMALL_STATE(3666)] = 137576, + [SMALL_STATE(3667)] = 137598, + [SMALL_STATE(3668)] = 137620, + [SMALL_STATE(3669)] = 137646, + [SMALL_STATE(3670)] = 137668, + [SMALL_STATE(3671)] = 137690, + [SMALL_STATE(3672)] = 137712, + [SMALL_STATE(3673)] = 137734, + [SMALL_STATE(3674)] = 137748, + [SMALL_STATE(3675)] = 137770, + [SMALL_STATE(3676)] = 137792, + [SMALL_STATE(3677)] = 137814, + [SMALL_STATE(3678)] = 137836, + [SMALL_STATE(3679)] = 137858, + [SMALL_STATE(3680)] = 137876, + [SMALL_STATE(3681)] = 137900, + [SMALL_STATE(3682)] = 137926, + [SMALL_STATE(3683)] = 137948, + [SMALL_STATE(3684)] = 137970, + [SMALL_STATE(3685)] = 137992, + [SMALL_STATE(3686)] = 138014, + [SMALL_STATE(3687)] = 138036, + [SMALL_STATE(3688)] = 138058, + [SMALL_STATE(3689)] = 138080, + [SMALL_STATE(3690)] = 138102, + [SMALL_STATE(3691)] = 138128, + [SMALL_STATE(3692)] = 138150, + [SMALL_STATE(3693)] = 138172, + [SMALL_STATE(3694)] = 138194, + [SMALL_STATE(3695)] = 138220, + [SMALL_STATE(3696)] = 138242, + [SMALL_STATE(3697)] = 138264, + [SMALL_STATE(3698)] = 138286, + [SMALL_STATE(3699)] = 138308, + [SMALL_STATE(3700)] = 138330, + [SMALL_STATE(3701)] = 138352, + [SMALL_STATE(3702)] = 138374, + [SMALL_STATE(3703)] = 138396, + [SMALL_STATE(3704)] = 138410, + [SMALL_STATE(3705)] = 138432, + [SMALL_STATE(3706)] = 138454, + [SMALL_STATE(3707)] = 138476, + [SMALL_STATE(3708)] = 138494, + [SMALL_STATE(3709)] = 138510, + [SMALL_STATE(3710)] = 138528, + [SMALL_STATE(3711)] = 138552, + [SMALL_STATE(3712)] = 138570, + [SMALL_STATE(3713)] = 138588, + [SMALL_STATE(3714)] = 138602, + [SMALL_STATE(3715)] = 138624, + [SMALL_STATE(3716)] = 138642, + [SMALL_STATE(3717)] = 138664, + [SMALL_STATE(3718)] = 138680, + [SMALL_STATE(3719)] = 138706, + [SMALL_STATE(3720)] = 138724, + [SMALL_STATE(3721)] = 138750, + [SMALL_STATE(3722)] = 138776, + [SMALL_STATE(3723)] = 138794, + [SMALL_STATE(3724)] = 138816, + [SMALL_STATE(3725)] = 138842, + [SMALL_STATE(3726)] = 138864, + [SMALL_STATE(3727)] = 138886, + [SMALL_STATE(3728)] = 138908, + [SMALL_STATE(3729)] = 138930, + [SMALL_STATE(3730)] = 138956, + [SMALL_STATE(3731)] = 138978, + [SMALL_STATE(3732)] = 139000, + [SMALL_STATE(3733)] = 139026, + [SMALL_STATE(3734)] = 139048, + [SMALL_STATE(3735)] = 139070, + [SMALL_STATE(3736)] = 139096, + [SMALL_STATE(3737)] = 139118, + [SMALL_STATE(3738)] = 139140, + [SMALL_STATE(3739)] = 139166, + [SMALL_STATE(3740)] = 139192, + [SMALL_STATE(3741)] = 139218, + [SMALL_STATE(3742)] = 139244, + [SMALL_STATE(3743)] = 139258, + [SMALL_STATE(3744)] = 139284, + [SMALL_STATE(3745)] = 139306, + [SMALL_STATE(3746)] = 139328, + [SMALL_STATE(3747)] = 139354, + [SMALL_STATE(3748)] = 139376, + [SMALL_STATE(3749)] = 139398, + [SMALL_STATE(3750)] = 139420, + [SMALL_STATE(3751)] = 139438, + [SMALL_STATE(3752)] = 139464, + [SMALL_STATE(3753)] = 139478, + [SMALL_STATE(3754)] = 139496, + [SMALL_STATE(3755)] = 139514, + [SMALL_STATE(3756)] = 139536, + [SMALL_STATE(3757)] = 139562, + [SMALL_STATE(3758)] = 139588, + [SMALL_STATE(3759)] = 139604, + [SMALL_STATE(3760)] = 139622, + [SMALL_STATE(3761)] = 139648, + [SMALL_STATE(3762)] = 139670, + [SMALL_STATE(3763)] = 139696, + [SMALL_STATE(3764)] = 139722, + [SMALL_STATE(3765)] = 139748, + [SMALL_STATE(3766)] = 139770, + [SMALL_STATE(3767)] = 139786, + [SMALL_STATE(3768)] = 139809, + [SMALL_STATE(3769)] = 139828, + [SMALL_STATE(3770)] = 139851, + [SMALL_STATE(3771)] = 139868, + [SMALL_STATE(3772)] = 139891, + [SMALL_STATE(3773)] = 139910, + [SMALL_STATE(3774)] = 139925, + [SMALL_STATE(3775)] = 139942, + [SMALL_STATE(3776)] = 139965, + [SMALL_STATE(3777)] = 139988, + [SMALL_STATE(3778)] = 140007, + [SMALL_STATE(3779)] = 140024, + [SMALL_STATE(3780)] = 140043, + [SMALL_STATE(3781)] = 140060, + [SMALL_STATE(3782)] = 140077, + [SMALL_STATE(3783)] = 140094, + [SMALL_STATE(3784)] = 140115, + [SMALL_STATE(3785)] = 140138, + [SMALL_STATE(3786)] = 140155, + [SMALL_STATE(3787)] = 140172, + [SMALL_STATE(3788)] = 140195, + [SMALL_STATE(3789)] = 140214, + [SMALL_STATE(3790)] = 140231, + [SMALL_STATE(3791)] = 140246, + [SMALL_STATE(3792)] = 140269, + [SMALL_STATE(3793)] = 140286, + [SMALL_STATE(3794)] = 140303, + [SMALL_STATE(3795)] = 140320, + [SMALL_STATE(3796)] = 140335, + [SMALL_STATE(3797)] = 140350, + [SMALL_STATE(3798)] = 140363, + [SMALL_STATE(3799)] = 140386, + [SMALL_STATE(3800)] = 140403, + [SMALL_STATE(3801)] = 140420, + [SMALL_STATE(3802)] = 140437, + [SMALL_STATE(3803)] = 140454, + [SMALL_STATE(3804)] = 140477, + [SMALL_STATE(3805)] = 140494, + [SMALL_STATE(3806)] = 140509, + [SMALL_STATE(3807)] = 140532, + [SMALL_STATE(3808)] = 140549, + [SMALL_STATE(3809)] = 140566, + [SMALL_STATE(3810)] = 140583, + [SMALL_STATE(3811)] = 140602, + [SMALL_STATE(3812)] = 140619, + [SMALL_STATE(3813)] = 140636, + [SMALL_STATE(3814)] = 140659, + [SMALL_STATE(3815)] = 140674, + [SMALL_STATE(3816)] = 140689, + [SMALL_STATE(3817)] = 140704, + [SMALL_STATE(3818)] = 140719, + [SMALL_STATE(3819)] = 140732, + [SMALL_STATE(3820)] = 140745, + [SMALL_STATE(3821)] = 140758, + [SMALL_STATE(3822)] = 140781, + [SMALL_STATE(3823)] = 140798, + [SMALL_STATE(3824)] = 140821, + [SMALL_STATE(3825)] = 140844, + [SMALL_STATE(3826)] = 140867, + [SMALL_STATE(3827)] = 140888, + [SMALL_STATE(3828)] = 140903, + [SMALL_STATE(3829)] = 140926, + [SMALL_STATE(3830)] = 140949, + [SMALL_STATE(3831)] = 140972, + [SMALL_STATE(3832)] = 140995, + [SMALL_STATE(3833)] = 141012, + [SMALL_STATE(3834)] = 141025, + [SMALL_STATE(3835)] = 141048, + [SMALL_STATE(3836)] = 141065, + [SMALL_STATE(3837)] = 141088, + [SMALL_STATE(3838)] = 141103, + [SMALL_STATE(3839)] = 141126, + [SMALL_STATE(3840)] = 141149, + [SMALL_STATE(3841)] = 141164, + [SMALL_STATE(3842)] = 141183, + [SMALL_STATE(3843)] = 141198, + [SMALL_STATE(3844)] = 141213, + [SMALL_STATE(3845)] = 141228, + [SMALL_STATE(3846)] = 141243, + [SMALL_STATE(3847)] = 141258, + [SMALL_STATE(3848)] = 141273, + [SMALL_STATE(3849)] = 141288, + [SMALL_STATE(3850)] = 141305, + [SMALL_STATE(3851)] = 141328, + [SMALL_STATE(3852)] = 141345, + [SMALL_STATE(3853)] = 141368, + [SMALL_STATE(3854)] = 141391, + [SMALL_STATE(3855)] = 141408, + [SMALL_STATE(3856)] = 141423, + [SMALL_STATE(3857)] = 141438, + [SMALL_STATE(3858)] = 141461, + [SMALL_STATE(3859)] = 141484, + [SMALL_STATE(3860)] = 141501, + [SMALL_STATE(3861)] = 141524, + [SMALL_STATE(3862)] = 141547, + [SMALL_STATE(3863)] = 141570, + [SMALL_STATE(3864)] = 141587, + [SMALL_STATE(3865)] = 141610, + [SMALL_STATE(3866)] = 141625, + [SMALL_STATE(3867)] = 141638, + [SMALL_STATE(3868)] = 141651, + [SMALL_STATE(3869)] = 141666, + [SMALL_STATE(3870)] = 141681, + [SMALL_STATE(3871)] = 141696, + [SMALL_STATE(3872)] = 141709, + [SMALL_STATE(3873)] = 141722, + [SMALL_STATE(3874)] = 141735, + [SMALL_STATE(3875)] = 141758, + [SMALL_STATE(3876)] = 141773, + [SMALL_STATE(3877)] = 141786, + [SMALL_STATE(3878)] = 141809, + [SMALL_STATE(3879)] = 141832, + [SMALL_STATE(3880)] = 141853, + [SMALL_STATE(3881)] = 141868, + [SMALL_STATE(3882)] = 141883, + [SMALL_STATE(3883)] = 141906, + [SMALL_STATE(3884)] = 141925, + [SMALL_STATE(3885)] = 141942, + [SMALL_STATE(3886)] = 141965, + [SMALL_STATE(3887)] = 141988, + [SMALL_STATE(3888)] = 142003, + [SMALL_STATE(3889)] = 142020, + [SMALL_STATE(3890)] = 142043, + [SMALL_STATE(3891)] = 142058, + [SMALL_STATE(3892)] = 142071, + [SMALL_STATE(3893)] = 142094, + [SMALL_STATE(3894)] = 142113, + [SMALL_STATE(3895)] = 142132, + [SMALL_STATE(3896)] = 142151, + [SMALL_STATE(3897)] = 142174, + [SMALL_STATE(3898)] = 142197, + [SMALL_STATE(3899)] = 142220, + [SMALL_STATE(3900)] = 142239, + [SMALL_STATE(3901)] = 142262, + [SMALL_STATE(3902)] = 142285, + [SMALL_STATE(3903)] = 142308, + [SMALL_STATE(3904)] = 142331, + [SMALL_STATE(3905)] = 142348, + [SMALL_STATE(3906)] = 142365, + [SMALL_STATE(3907)] = 142388, + [SMALL_STATE(3908)] = 142411, + [SMALL_STATE(3909)] = 142428, + [SMALL_STATE(3910)] = 142451, + [SMALL_STATE(3911)] = 142468, + [SMALL_STATE(3912)] = 142485, + [SMALL_STATE(3913)] = 142500, + [SMALL_STATE(3914)] = 142523, + [SMALL_STATE(3915)] = 142546, + [SMALL_STATE(3916)] = 142569, + [SMALL_STATE(3917)] = 142592, + [SMALL_STATE(3918)] = 142615, + [SMALL_STATE(3919)] = 142632, + [SMALL_STATE(3920)] = 142647, + [SMALL_STATE(3921)] = 142670, + [SMALL_STATE(3922)] = 142687, + [SMALL_STATE(3923)] = 142704, + [SMALL_STATE(3924)] = 142721, + [SMALL_STATE(3925)] = 142744, + [SMALL_STATE(3926)] = 142761, + [SMALL_STATE(3927)] = 142780, + [SMALL_STATE(3928)] = 142797, + [SMALL_STATE(3929)] = 142816, + [SMALL_STATE(3930)] = 142831, + [SMALL_STATE(3931)] = 142848, + [SMALL_STATE(3932)] = 142863, + [SMALL_STATE(3933)] = 142882, + [SMALL_STATE(3934)] = 142901, + [SMALL_STATE(3935)] = 142920, + [SMALL_STATE(3936)] = 142943, + [SMALL_STATE(3937)] = 142966, + [SMALL_STATE(3938)] = 142983, + [SMALL_STATE(3939)] = 143006, + [SMALL_STATE(3940)] = 143023, + [SMALL_STATE(3941)] = 143042, + [SMALL_STATE(3942)] = 143061, + [SMALL_STATE(3943)] = 143084, + [SMALL_STATE(3944)] = 143101, + [SMALL_STATE(3945)] = 143124, + [SMALL_STATE(3946)] = 143147, + [SMALL_STATE(3947)] = 143166, + [SMALL_STATE(3948)] = 143189, + [SMALL_STATE(3949)] = 143204, + [SMALL_STATE(3950)] = 143219, + [SMALL_STATE(3951)] = 143236, + [SMALL_STATE(3952)] = 143253, + [SMALL_STATE(3953)] = 143276, + [SMALL_STATE(3954)] = 143291, + [SMALL_STATE(3955)] = 143308, + [SMALL_STATE(3956)] = 143323, + [SMALL_STATE(3957)] = 143336, + [SMALL_STATE(3958)] = 143359, + [SMALL_STATE(3959)] = 143382, + [SMALL_STATE(3960)] = 143405, + [SMALL_STATE(3961)] = 143428, + [SMALL_STATE(3962)] = 143451, + [SMALL_STATE(3963)] = 143464, + [SMALL_STATE(3964)] = 143480, + [SMALL_STATE(3965)] = 143500, + [SMALL_STATE(3966)] = 143516, + [SMALL_STATE(3967)] = 143528, + [SMALL_STATE(3968)] = 143540, + [SMALL_STATE(3969)] = 143552, + [SMALL_STATE(3970)] = 143564, + [SMALL_STATE(3971)] = 143576, + [SMALL_STATE(3972)] = 143588, + [SMALL_STATE(3973)] = 143604, + [SMALL_STATE(3974)] = 143622, + [SMALL_STATE(3975)] = 143634, + [SMALL_STATE(3976)] = 143646, + [SMALL_STATE(3977)] = 143658, + [SMALL_STATE(3978)] = 143670, + [SMALL_STATE(3979)] = 143686, + [SMALL_STATE(3980)] = 143702, + [SMALL_STATE(3981)] = 143718, + [SMALL_STATE(3982)] = 143734, + [SMALL_STATE(3983)] = 143754, + [SMALL_STATE(3984)] = 143768, + [SMALL_STATE(3985)] = 143786, + [SMALL_STATE(3986)] = 143806, + [SMALL_STATE(3987)] = 143824, + [SMALL_STATE(3988)] = 143842, + [SMALL_STATE(3989)] = 143860, + [SMALL_STATE(3990)] = 143876, + [SMALL_STATE(3991)] = 143892, + [SMALL_STATE(3992)] = 143908, + [SMALL_STATE(3993)] = 143924, + [SMALL_STATE(3994)] = 143944, + [SMALL_STATE(3995)] = 143964, + [SMALL_STATE(3996)] = 143976, + [SMALL_STATE(3997)] = 143988, + [SMALL_STATE(3998)] = 144008, + [SMALL_STATE(3999)] = 144020, + [SMALL_STATE(4000)] = 144040, + [SMALL_STATE(4001)] = 144052, + [SMALL_STATE(4002)] = 144068, + [SMALL_STATE(4003)] = 144088, + [SMALL_STATE(4004)] = 144104, + [SMALL_STATE(4005)] = 144116, + [SMALL_STATE(4006)] = 144128, + [SMALL_STATE(4007)] = 144140, + [SMALL_STATE(4008)] = 144160, + [SMALL_STATE(4009)] = 144180, + [SMALL_STATE(4010)] = 144198, + [SMALL_STATE(4011)] = 144218, + [SMALL_STATE(4012)] = 144230, + [SMALL_STATE(4013)] = 144250, + [SMALL_STATE(4014)] = 144270, + [SMALL_STATE(4015)] = 144282, + [SMALL_STATE(4016)] = 144298, + [SMALL_STATE(4017)] = 144314, + [SMALL_STATE(4018)] = 144332, + [SMALL_STATE(4019)] = 144344, + [SMALL_STATE(4020)] = 144360, + [SMALL_STATE(4021)] = 144376, + [SMALL_STATE(4022)] = 144396, + [SMALL_STATE(4023)] = 144412, + [SMALL_STATE(4024)] = 144432, + [SMALL_STATE(4025)] = 144452, + [SMALL_STATE(4026)] = 144472, + [SMALL_STATE(4027)] = 144488, + [SMALL_STATE(4028)] = 144504, + [SMALL_STATE(4029)] = 144520, + [SMALL_STATE(4030)] = 144536, + [SMALL_STATE(4031)] = 144552, + [SMALL_STATE(4032)] = 144568, + [SMALL_STATE(4033)] = 144586, + [SMALL_STATE(4034)] = 144602, + [SMALL_STATE(4035)] = 144622, + [SMALL_STATE(4036)] = 144634, + [SMALL_STATE(4037)] = 144654, + [SMALL_STATE(4038)] = 144674, + [SMALL_STATE(4039)] = 144694, + [SMALL_STATE(4040)] = 144706, + [SMALL_STATE(4041)] = 144718, + [SMALL_STATE(4042)] = 144730, + [SMALL_STATE(4043)] = 144750, + [SMALL_STATE(4044)] = 144762, + [SMALL_STATE(4045)] = 144782, + [SMALL_STATE(4046)] = 144802, + [SMALL_STATE(4047)] = 144814, + [SMALL_STATE(4048)] = 144826, + [SMALL_STATE(4049)] = 144846, + [SMALL_STATE(4050)] = 144866, + [SMALL_STATE(4051)] = 144884, + [SMALL_STATE(4052)] = 144900, + [SMALL_STATE(4053)] = 144916, + [SMALL_STATE(4054)] = 144928, + [SMALL_STATE(4055)] = 144944, + [SMALL_STATE(4056)] = 144960, + [SMALL_STATE(4057)] = 144976, + [SMALL_STATE(4058)] = 144996, + [SMALL_STATE(4059)] = 145008, + [SMALL_STATE(4060)] = 145028, + [SMALL_STATE(4061)] = 145040, + [SMALL_STATE(4062)] = 145060, + [SMALL_STATE(4063)] = 145080, + [SMALL_STATE(4064)] = 145092, + [SMALL_STATE(4065)] = 145108, + [SMALL_STATE(4066)] = 145128, + [SMALL_STATE(4067)] = 145144, + [SMALL_STATE(4068)] = 145160, + [SMALL_STATE(4069)] = 145176, + [SMALL_STATE(4070)] = 145188, + [SMALL_STATE(4071)] = 145208, + [SMALL_STATE(4072)] = 145224, + [SMALL_STATE(4073)] = 145240, + [SMALL_STATE(4074)] = 145252, + [SMALL_STATE(4075)] = 145268, + [SMALL_STATE(4076)] = 145284, + [SMALL_STATE(4077)] = 145304, + [SMALL_STATE(4078)] = 145322, + [SMALL_STATE(4079)] = 145340, + [SMALL_STATE(4080)] = 145356, + [SMALL_STATE(4081)] = 145372, + [SMALL_STATE(4082)] = 145392, + [SMALL_STATE(4083)] = 145408, + [SMALL_STATE(4084)] = 145420, + [SMALL_STATE(4085)] = 145434, + [SMALL_STATE(4086)] = 145454, + [SMALL_STATE(4087)] = 145468, + [SMALL_STATE(4088)] = 145480, + [SMALL_STATE(4089)] = 145492, + [SMALL_STATE(4090)] = 145504, + [SMALL_STATE(4091)] = 145516, + [SMALL_STATE(4092)] = 145536, + [SMALL_STATE(4093)] = 145552, + [SMALL_STATE(4094)] = 145568, + [SMALL_STATE(4095)] = 145584, + [SMALL_STATE(4096)] = 145600, + [SMALL_STATE(4097)] = 145612, + [SMALL_STATE(4098)] = 145628, + [SMALL_STATE(4099)] = 145646, + [SMALL_STATE(4100)] = 145662, + [SMALL_STATE(4101)] = 145678, + [SMALL_STATE(4102)] = 145694, + [SMALL_STATE(4103)] = 145710, + [SMALL_STATE(4104)] = 145726, + [SMALL_STATE(4105)] = 145746, + [SMALL_STATE(4106)] = 145758, + [SMALL_STATE(4107)] = 145774, + [SMALL_STATE(4108)] = 145786, + [SMALL_STATE(4109)] = 145802, + [SMALL_STATE(4110)] = 145818, + [SMALL_STATE(4111)] = 145830, + [SMALL_STATE(4112)] = 145842, + [SMALL_STATE(4113)] = 145854, + [SMALL_STATE(4114)] = 145870, + [SMALL_STATE(4115)] = 145886, + [SMALL_STATE(4116)] = 145906, + [SMALL_STATE(4117)] = 145922, + [SMALL_STATE(4118)] = 145938, + [SMALL_STATE(4119)] = 145954, + [SMALL_STATE(4120)] = 145970, + [SMALL_STATE(4121)] = 145986, + [SMALL_STATE(4122)] = 146002, + [SMALL_STATE(4123)] = 146018, + [SMALL_STATE(4124)] = 146034, + [SMALL_STATE(4125)] = 146050, + [SMALL_STATE(4126)] = 146062, + [SMALL_STATE(4127)] = 146074, + [SMALL_STATE(4128)] = 146086, + [SMALL_STATE(4129)] = 146098, + [SMALL_STATE(4130)] = 146116, + [SMALL_STATE(4131)] = 146132, + [SMALL_STATE(4132)] = 146148, + [SMALL_STATE(4133)] = 146164, + [SMALL_STATE(4134)] = 146180, + [SMALL_STATE(4135)] = 146196, + [SMALL_STATE(4136)] = 146216, + [SMALL_STATE(4137)] = 146236, + [SMALL_STATE(4138)] = 146252, + [SMALL_STATE(4139)] = 146268, + [SMALL_STATE(4140)] = 146284, + [SMALL_STATE(4141)] = 146300, + [SMALL_STATE(4142)] = 146316, + [SMALL_STATE(4143)] = 146332, + [SMALL_STATE(4144)] = 146348, + [SMALL_STATE(4145)] = 146364, + [SMALL_STATE(4146)] = 146384, + [SMALL_STATE(4147)] = 146400, + [SMALL_STATE(4148)] = 146418, + [SMALL_STATE(4149)] = 146438, + [SMALL_STATE(4150)] = 146454, + [SMALL_STATE(4151)] = 146474, + [SMALL_STATE(4152)] = 146488, + [SMALL_STATE(4153)] = 146504, + [SMALL_STATE(4154)] = 146520, + [SMALL_STATE(4155)] = 146532, + [SMALL_STATE(4156)] = 146548, + [SMALL_STATE(4157)] = 146568, + [SMALL_STATE(4158)] = 146588, + [SMALL_STATE(4159)] = 146608, + [SMALL_STATE(4160)] = 146624, + [SMALL_STATE(4161)] = 146640, + [SMALL_STATE(4162)] = 146652, + [SMALL_STATE(4163)] = 146668, + [SMALL_STATE(4164)] = 146686, + [SMALL_STATE(4165)] = 146702, + [SMALL_STATE(4166)] = 146714, + [SMALL_STATE(4167)] = 146730, + [SMALL_STATE(4168)] = 146746, + [SMALL_STATE(4169)] = 146762, + [SMALL_STATE(4170)] = 146774, + [SMALL_STATE(4171)] = 146786, + [SMALL_STATE(4172)] = 146802, + [SMALL_STATE(4173)] = 146814, + [SMALL_STATE(4174)] = 146830, + [SMALL_STATE(4175)] = 146846, + [SMALL_STATE(4176)] = 146862, + [SMALL_STATE(4177)] = 146874, + [SMALL_STATE(4178)] = 146886, + [SMALL_STATE(4179)] = 146900, + [SMALL_STATE(4180)] = 146912, + [SMALL_STATE(4181)] = 146928, + [SMALL_STATE(4182)] = 146940, + [SMALL_STATE(4183)] = 146952, + [SMALL_STATE(4184)] = 146968, + [SMALL_STATE(4185)] = 146984, + [SMALL_STATE(4186)] = 147000, + [SMALL_STATE(4187)] = 147012, + [SMALL_STATE(4188)] = 147024, + [SMALL_STATE(4189)] = 147040, + [SMALL_STATE(4190)] = 147056, + [SMALL_STATE(4191)] = 147076, + [SMALL_STATE(4192)] = 147088, + [SMALL_STATE(4193)] = 147100, + [SMALL_STATE(4194)] = 147120, + [SMALL_STATE(4195)] = 147132, + [SMALL_STATE(4196)] = 147144, + [SMALL_STATE(4197)] = 147160, + [SMALL_STATE(4198)] = 147176, + [SMALL_STATE(4199)] = 147192, + [SMALL_STATE(4200)] = 147206, + [SMALL_STATE(4201)] = 147222, + [SMALL_STATE(4202)] = 147234, + [SMALL_STATE(4203)] = 147250, + [SMALL_STATE(4204)] = 147270, + [SMALL_STATE(4205)] = 147290, + [SMALL_STATE(4206)] = 147306, + [SMALL_STATE(4207)] = 147324, + [SMALL_STATE(4208)] = 147340, + [SMALL_STATE(4209)] = 147356, + [SMALL_STATE(4210)] = 147372, + [SMALL_STATE(4211)] = 147388, + [SMALL_STATE(4212)] = 147404, + [SMALL_STATE(4213)] = 147418, + [SMALL_STATE(4214)] = 147432, + [SMALL_STATE(4215)] = 147444, + [SMALL_STATE(4216)] = 147456, + [SMALL_STATE(4217)] = 147468, + [SMALL_STATE(4218)] = 147480, + [SMALL_STATE(4219)] = 147492, + [SMALL_STATE(4220)] = 147508, + [SMALL_STATE(4221)] = 147528, + [SMALL_STATE(4222)] = 147544, + [SMALL_STATE(4223)] = 147560, + [SMALL_STATE(4224)] = 147578, + [SMALL_STATE(4225)] = 147590, + [SMALL_STATE(4226)] = 147610, + [SMALL_STATE(4227)] = 147630, + [SMALL_STATE(4228)] = 147646, + [SMALL_STATE(4229)] = 147662, + [SMALL_STATE(4230)] = 147682, + [SMALL_STATE(4231)] = 147702, + [SMALL_STATE(4232)] = 147722, + [SMALL_STATE(4233)] = 147734, + [SMALL_STATE(4234)] = 147750, + [SMALL_STATE(4235)] = 147762, + [SMALL_STATE(4236)] = 147780, + [SMALL_STATE(4237)] = 147796, + [SMALL_STATE(4238)] = 147810, + [SMALL_STATE(4239)] = 147830, + [SMALL_STATE(4240)] = 147842, + [SMALL_STATE(4241)] = 147862, + [SMALL_STATE(4242)] = 147882, + [SMALL_STATE(4243)] = 147894, + [SMALL_STATE(4244)] = 147906, + [SMALL_STATE(4245)] = 147926, + [SMALL_STATE(4246)] = 147938, + [SMALL_STATE(4247)] = 147954, + [SMALL_STATE(4248)] = 147966, + [SMALL_STATE(4249)] = 147982, + [SMALL_STATE(4250)] = 148002, + [SMALL_STATE(4251)] = 148016, + [SMALL_STATE(4252)] = 148030, + [SMALL_STATE(4253)] = 148042, + [SMALL_STATE(4254)] = 148054, + [SMALL_STATE(4255)] = 148066, + [SMALL_STATE(4256)] = 148080, + [SMALL_STATE(4257)] = 148100, + [SMALL_STATE(4258)] = 148112, + [SMALL_STATE(4259)] = 148128, + [SMALL_STATE(4260)] = 148146, + [SMALL_STATE(4261)] = 148158, + [SMALL_STATE(4262)] = 148174, + [SMALL_STATE(4263)] = 148186, + [SMALL_STATE(4264)] = 148202, + [SMALL_STATE(4265)] = 148222, + [SMALL_STATE(4266)] = 148234, + [SMALL_STATE(4267)] = 148250, + [SMALL_STATE(4268)] = 148270, + [SMALL_STATE(4269)] = 148282, + [SMALL_STATE(4270)] = 148296, + [SMALL_STATE(4271)] = 148316, + [SMALL_STATE(4272)] = 148332, + [SMALL_STATE(4273)] = 148348, + [SMALL_STATE(4274)] = 148362, + [SMALL_STATE(4275)] = 148378, + [SMALL_STATE(4276)] = 148394, + [SMALL_STATE(4277)] = 148410, + [SMALL_STATE(4278)] = 148422, + [SMALL_STATE(4279)] = 148434, + [SMALL_STATE(4280)] = 148450, + [SMALL_STATE(4281)] = 148462, + [SMALL_STATE(4282)] = 148482, + [SMALL_STATE(4283)] = 148494, + [SMALL_STATE(4284)] = 148514, + [SMALL_STATE(4285)] = 148532, + [SMALL_STATE(4286)] = 148548, + [SMALL_STATE(4287)] = 148560, + [SMALL_STATE(4288)] = 148576, + [SMALL_STATE(4289)] = 148588, + [SMALL_STATE(4290)] = 148604, + [SMALL_STATE(4291)] = 148622, + [SMALL_STATE(4292)] = 148638, + [SMALL_STATE(4293)] = 148654, + [SMALL_STATE(4294)] = 148670, + [SMALL_STATE(4295)] = 148688, + [SMALL_STATE(4296)] = 148700, + [SMALL_STATE(4297)] = 148716, + [SMALL_STATE(4298)] = 148732, + [SMALL_STATE(4299)] = 148752, + [SMALL_STATE(4300)] = 148764, + [SMALL_STATE(4301)] = 148776, + [SMALL_STATE(4302)] = 148792, + [SMALL_STATE(4303)] = 148808, + [SMALL_STATE(4304)] = 148826, + [SMALL_STATE(4305)] = 148842, + [SMALL_STATE(4306)] = 148858, + [SMALL_STATE(4307)] = 148874, + [SMALL_STATE(4308)] = 148894, + [SMALL_STATE(4309)] = 148914, + [SMALL_STATE(4310)] = 148930, + [SMALL_STATE(4311)] = 148946, + [SMALL_STATE(4312)] = 148962, + [SMALL_STATE(4313)] = 148978, + [SMALL_STATE(4314)] = 148998, + [SMALL_STATE(4315)] = 149018, + [SMALL_STATE(4316)] = 149036, + [SMALL_STATE(4317)] = 149052, + [SMALL_STATE(4318)] = 149068, + [SMALL_STATE(4319)] = 149084, + [SMALL_STATE(4320)] = 149100, + [SMALL_STATE(4321)] = 149120, + [SMALL_STATE(4322)] = 149132, + [SMALL_STATE(4323)] = 149152, + [SMALL_STATE(4324)] = 149168, + [SMALL_STATE(4325)] = 149184, + [SMALL_STATE(4326)] = 149198, + [SMALL_STATE(4327)] = 149216, + [SMALL_STATE(4328)] = 149228, + [SMALL_STATE(4329)] = 149244, + [SMALL_STATE(4330)] = 149260, + [SMALL_STATE(4331)] = 149276, + [SMALL_STATE(4332)] = 149296, + [SMALL_STATE(4333)] = 149308, + [SMALL_STATE(4334)] = 149324, + [SMALL_STATE(4335)] = 149336, + [SMALL_STATE(4336)] = 149348, + [SMALL_STATE(4337)] = 149368, + [SMALL_STATE(4338)] = 149384, + [SMALL_STATE(4339)] = 149400, + [SMALL_STATE(4340)] = 149412, + [SMALL_STATE(4341)] = 149428, + [SMALL_STATE(4342)] = 149444, + [SMALL_STATE(4343)] = 149464, + [SMALL_STATE(4344)] = 149480, + [SMALL_STATE(4345)] = 149496, + [SMALL_STATE(4346)] = 149512, + [SMALL_STATE(4347)] = 149524, + [SMALL_STATE(4348)] = 149540, + [SMALL_STATE(4349)] = 149552, + [SMALL_STATE(4350)] = 149568, + [SMALL_STATE(4351)] = 149584, + [SMALL_STATE(4352)] = 149596, + [SMALL_STATE(4353)] = 149612, + [SMALL_STATE(4354)] = 149628, + [SMALL_STATE(4355)] = 149644, + [SMALL_STATE(4356)] = 149660, + [SMALL_STATE(4357)] = 149676, + [SMALL_STATE(4358)] = 149690, + [SMALL_STATE(4359)] = 149704, + [SMALL_STATE(4360)] = 149720, + [SMALL_STATE(4361)] = 149736, + [SMALL_STATE(4362)] = 149752, + [SMALL_STATE(4363)] = 149768, + [SMALL_STATE(4364)] = 149780, + [SMALL_STATE(4365)] = 149800, + [SMALL_STATE(4366)] = 149812, + [SMALL_STATE(4367)] = 149828, + [SMALL_STATE(4368)] = 149840, + [SMALL_STATE(4369)] = 149852, + [SMALL_STATE(4370)] = 149864, + [SMALL_STATE(4371)] = 149880, + [SMALL_STATE(4372)] = 149896, + [SMALL_STATE(4373)] = 149912, + [SMALL_STATE(4374)] = 149924, + [SMALL_STATE(4375)] = 149936, + [SMALL_STATE(4376)] = 149954, + [SMALL_STATE(4377)] = 149972, + [SMALL_STATE(4378)] = 149986, + [SMALL_STATE(4379)] = 150000, + [SMALL_STATE(4380)] = 150016, + [SMALL_STATE(4381)] = 150030, + [SMALL_STATE(4382)] = 150046, + [SMALL_STATE(4383)] = 150066, + [SMALL_STATE(4384)] = 150082, + [SMALL_STATE(4385)] = 150098, + [SMALL_STATE(4386)] = 150110, + [SMALL_STATE(4387)] = 150130, + [SMALL_STATE(4388)] = 150142, + [SMALL_STATE(4389)] = 150156, + [SMALL_STATE(4390)] = 150176, + [SMALL_STATE(4391)] = 150192, + [SMALL_STATE(4392)] = 150212, + [SMALL_STATE(4393)] = 150226, + [SMALL_STATE(4394)] = 150240, + [SMALL_STATE(4395)] = 150254, + [SMALL_STATE(4396)] = 150270, + [SMALL_STATE(4397)] = 150286, + [SMALL_STATE(4398)] = 150302, + [SMALL_STATE(4399)] = 150318, + [SMALL_STATE(4400)] = 150334, + [SMALL_STATE(4401)] = 150348, + [SMALL_STATE(4402)] = 150362, + [SMALL_STATE(4403)] = 150378, + [SMALL_STATE(4404)] = 150394, + [SMALL_STATE(4405)] = 150406, + [SMALL_STATE(4406)] = 150422, + [SMALL_STATE(4407)] = 150438, + [SMALL_STATE(4408)] = 150454, + [SMALL_STATE(4409)] = 150466, + [SMALL_STATE(4410)] = 150482, + [SMALL_STATE(4411)] = 150502, + [SMALL_STATE(4412)] = 150518, + [SMALL_STATE(4413)] = 150534, + [SMALL_STATE(4414)] = 150550, + [SMALL_STATE(4415)] = 150566, + [SMALL_STATE(4416)] = 150582, + [SMALL_STATE(4417)] = 150594, + [SMALL_STATE(4418)] = 150606, + [SMALL_STATE(4419)] = 150618, + [SMALL_STATE(4420)] = 150630, + [SMALL_STATE(4421)] = 150646, + [SMALL_STATE(4422)] = 150658, + [SMALL_STATE(4423)] = 150670, + [SMALL_STATE(4424)] = 150686, + [SMALL_STATE(4425)] = 150698, + [SMALL_STATE(4426)] = 150714, + [SMALL_STATE(4427)] = 150730, + [SMALL_STATE(4428)] = 150742, + [SMALL_STATE(4429)] = 150758, + [SMALL_STATE(4430)] = 150772, + [SMALL_STATE(4431)] = 150784, + [SMALL_STATE(4432)] = 150800, + [SMALL_STATE(4433)] = 150816, + [SMALL_STATE(4434)] = 150828, + [SMALL_STATE(4435)] = 150848, + [SMALL_STATE(4436)] = 150868, + [SMALL_STATE(4437)] = 150888, + [SMALL_STATE(4438)] = 150904, + [SMALL_STATE(4439)] = 150920, + [SMALL_STATE(4440)] = 150934, + [SMALL_STATE(4441)] = 150950, + [SMALL_STATE(4442)] = 150964, + [SMALL_STATE(4443)] = 150976, + [SMALL_STATE(4444)] = 150992, + [SMALL_STATE(4445)] = 151008, + [SMALL_STATE(4446)] = 151024, + [SMALL_STATE(4447)] = 151036, + [SMALL_STATE(4448)] = 151056, + [SMALL_STATE(4449)] = 151072, + [SMALL_STATE(4450)] = 151084, + [SMALL_STATE(4451)] = 151096, + [SMALL_STATE(4452)] = 151108, + [SMALL_STATE(4453)] = 151120, + [SMALL_STATE(4454)] = 151132, + [SMALL_STATE(4455)] = 151148, + [SMALL_STATE(4456)] = 151160, + [SMALL_STATE(4457)] = 151172, + [SMALL_STATE(4458)] = 151184, + [SMALL_STATE(4459)] = 151202, + [SMALL_STATE(4460)] = 151214, + [SMALL_STATE(4461)] = 151226, + [SMALL_STATE(4462)] = 151238, + [SMALL_STATE(4463)] = 151250, + [SMALL_STATE(4464)] = 151266, + [SMALL_STATE(4465)] = 151278, + [SMALL_STATE(4466)] = 151298, + [SMALL_STATE(4467)] = 151310, + [SMALL_STATE(4468)] = 151322, + [SMALL_STATE(4469)] = 151339, + [SMALL_STATE(4470)] = 151350, + [SMALL_STATE(4471)] = 151367, + [SMALL_STATE(4472)] = 151384, + [SMALL_STATE(4473)] = 151401, + [SMALL_STATE(4474)] = 151416, + [SMALL_STATE(4475)] = 151433, + [SMALL_STATE(4476)] = 151448, + [SMALL_STATE(4477)] = 151465, + [SMALL_STATE(4478)] = 151482, + [SMALL_STATE(4479)] = 151499, + [SMALL_STATE(4480)] = 151514, + [SMALL_STATE(4481)] = 151531, + [SMALL_STATE(4482)] = 151548, + [SMALL_STATE(4483)] = 151565, + [SMALL_STATE(4484)] = 151582, + [SMALL_STATE(4485)] = 151595, + [SMALL_STATE(4486)] = 151610, + [SMALL_STATE(4487)] = 151625, + [SMALL_STATE(4488)] = 151640, + [SMALL_STATE(4489)] = 151657, + [SMALL_STATE(4490)] = 151674, + [SMALL_STATE(4491)] = 151691, + [SMALL_STATE(4492)] = 151708, + [SMALL_STATE(4493)] = 151725, + [SMALL_STATE(4494)] = 151742, + [SMALL_STATE(4495)] = 151755, + [SMALL_STATE(4496)] = 151772, + [SMALL_STATE(4497)] = 151787, + [SMALL_STATE(4498)] = 151804, + [SMALL_STATE(4499)] = 151819, + [SMALL_STATE(4500)] = 151836, + [SMALL_STATE(4501)] = 151853, + [SMALL_STATE(4502)] = 151870, + [SMALL_STATE(4503)] = 151887, + [SMALL_STATE(4504)] = 151904, + [SMALL_STATE(4505)] = 151921, + [SMALL_STATE(4506)] = 151938, + [SMALL_STATE(4507)] = 151955, + [SMALL_STATE(4508)] = 151972, + [SMALL_STATE(4509)] = 151989, + [SMALL_STATE(4510)] = 152006, + [SMALL_STATE(4511)] = 152023, + [SMALL_STATE(4512)] = 152040, + [SMALL_STATE(4513)] = 152057, + [SMALL_STATE(4514)] = 152074, + [SMALL_STATE(4515)] = 152091, + [SMALL_STATE(4516)] = 152108, + [SMALL_STATE(4517)] = 152125, + [SMALL_STATE(4518)] = 152140, + [SMALL_STATE(4519)] = 152155, + [SMALL_STATE(4520)] = 152172, + [SMALL_STATE(4521)] = 152189, + [SMALL_STATE(4522)] = 152204, + [SMALL_STATE(4523)] = 152219, + [SMALL_STATE(4524)] = 152234, + [SMALL_STATE(4525)] = 152251, + [SMALL_STATE(4526)] = 152266, + [SMALL_STATE(4527)] = 152283, + [SMALL_STATE(4528)] = 152300, + [SMALL_STATE(4529)] = 152317, + [SMALL_STATE(4530)] = 152334, + [SMALL_STATE(4531)] = 152351, + [SMALL_STATE(4532)] = 152368, + [SMALL_STATE(4533)] = 152385, + [SMALL_STATE(4534)] = 152400, + [SMALL_STATE(4535)] = 152415, + [SMALL_STATE(4536)] = 152430, + [SMALL_STATE(4537)] = 152447, + [SMALL_STATE(4538)] = 152464, + [SMALL_STATE(4539)] = 152481, + [SMALL_STATE(4540)] = 152494, + [SMALL_STATE(4541)] = 152511, + [SMALL_STATE(4542)] = 152528, + [SMALL_STATE(4543)] = 152545, + [SMALL_STATE(4544)] = 152562, + [SMALL_STATE(4545)] = 152575, + [SMALL_STATE(4546)] = 152592, + [SMALL_STATE(4547)] = 152607, + [SMALL_STATE(4548)] = 152624, + [SMALL_STATE(4549)] = 152641, + [SMALL_STATE(4550)] = 152658, + [SMALL_STATE(4551)] = 152669, + [SMALL_STATE(4552)] = 152686, + [SMALL_STATE(4553)] = 152703, + [SMALL_STATE(4554)] = 152718, + [SMALL_STATE(4555)] = 152733, + [SMALL_STATE(4556)] = 152750, + [SMALL_STATE(4557)] = 152765, + [SMALL_STATE(4558)] = 152780, + [SMALL_STATE(4559)] = 152795, + [SMALL_STATE(4560)] = 152812, + [SMALL_STATE(4561)] = 152829, + [SMALL_STATE(4562)] = 152846, + [SMALL_STATE(4563)] = 152863, + [SMALL_STATE(4564)] = 152876, + [SMALL_STATE(4565)] = 152893, + [SMALL_STATE(4566)] = 152904, + [SMALL_STATE(4567)] = 152919, + [SMALL_STATE(4568)] = 152934, + [SMALL_STATE(4569)] = 152951, + [SMALL_STATE(4570)] = 152968, + [SMALL_STATE(4571)] = 152985, + [SMALL_STATE(4572)] = 153000, + [SMALL_STATE(4573)] = 153017, + [SMALL_STATE(4574)] = 153034, + [SMALL_STATE(4575)] = 153051, + [SMALL_STATE(4576)] = 153068, + [SMALL_STATE(4577)] = 153085, + [SMALL_STATE(4578)] = 153102, + [SMALL_STATE(4579)] = 153119, + [SMALL_STATE(4580)] = 153136, + [SMALL_STATE(4581)] = 153153, + [SMALL_STATE(4582)] = 153170, + [SMALL_STATE(4583)] = 153187, + [SMALL_STATE(4584)] = 153204, + [SMALL_STATE(4585)] = 153221, + [SMALL_STATE(4586)] = 153238, + [SMALL_STATE(4587)] = 153255, + [SMALL_STATE(4588)] = 153272, + [SMALL_STATE(4589)] = 153289, + [SMALL_STATE(4590)] = 153306, + [SMALL_STATE(4591)] = 153317, + [SMALL_STATE(4592)] = 153332, + [SMALL_STATE(4593)] = 153349, + [SMALL_STATE(4594)] = 153366, + [SMALL_STATE(4595)] = 153383, + [SMALL_STATE(4596)] = 153400, + [SMALL_STATE(4597)] = 153417, + [SMALL_STATE(4598)] = 153430, + [SMALL_STATE(4599)] = 153447, + [SMALL_STATE(4600)] = 153464, + [SMALL_STATE(4601)] = 153481, + [SMALL_STATE(4602)] = 153496, + [SMALL_STATE(4603)] = 153511, + [SMALL_STATE(4604)] = 153526, + [SMALL_STATE(4605)] = 153543, + [SMALL_STATE(4606)] = 153560, + [SMALL_STATE(4607)] = 153577, + [SMALL_STATE(4608)] = 153594, + [SMALL_STATE(4609)] = 153608, + [SMALL_STATE(4610)] = 153622, + [SMALL_STATE(4611)] = 153636, + [SMALL_STATE(4612)] = 153650, + [SMALL_STATE(4613)] = 153664, + [SMALL_STATE(4614)] = 153674, + [SMALL_STATE(4615)] = 153688, + [SMALL_STATE(4616)] = 153698, + [SMALL_STATE(4617)] = 153708, + [SMALL_STATE(4618)] = 153718, + [SMALL_STATE(4619)] = 153728, + [SMALL_STATE(4620)] = 153738, + [SMALL_STATE(4621)] = 153748, + [SMALL_STATE(4622)] = 153758, + [SMALL_STATE(4623)] = 153768, + [SMALL_STATE(4624)] = 153778, + [SMALL_STATE(4625)] = 153788, + [SMALL_STATE(4626)] = 153802, + [SMALL_STATE(4627)] = 153812, + [SMALL_STATE(4628)] = 153822, + [SMALL_STATE(4629)] = 153832, + [SMALL_STATE(4630)] = 153842, + [SMALL_STATE(4631)] = 153854, + [SMALL_STATE(4632)] = 153864, + [SMALL_STATE(4633)] = 153874, + [SMALL_STATE(4634)] = 153884, + [SMALL_STATE(4635)] = 153898, + [SMALL_STATE(4636)] = 153910, + [SMALL_STATE(4637)] = 153922, + [SMALL_STATE(4638)] = 153932, + [SMALL_STATE(4639)] = 153946, + [SMALL_STATE(4640)] = 153960, + [SMALL_STATE(4641)] = 153970, + [SMALL_STATE(4642)] = 153980, + [SMALL_STATE(4643)] = 153990, + [SMALL_STATE(4644)] = 154000, + [SMALL_STATE(4645)] = 154010, + [SMALL_STATE(4646)] = 154020, + [SMALL_STATE(4647)] = 154034, + [SMALL_STATE(4648)] = 154048, + [SMALL_STATE(4649)] = 154058, + [SMALL_STATE(4650)] = 154068, + [SMALL_STATE(4651)] = 154082, + [SMALL_STATE(4652)] = 154092, + [SMALL_STATE(4653)] = 154106, + [SMALL_STATE(4654)] = 154116, + [SMALL_STATE(4655)] = 154130, + [SMALL_STATE(4656)] = 154144, + [SMALL_STATE(4657)] = 154158, + [SMALL_STATE(4658)] = 154168, + [SMALL_STATE(4659)] = 154182, + [SMALL_STATE(4660)] = 154196, + [SMALL_STATE(4661)] = 154206, + [SMALL_STATE(4662)] = 154216, + [SMALL_STATE(4663)] = 154230, + [SMALL_STATE(4664)] = 154244, + [SMALL_STATE(4665)] = 154254, + [SMALL_STATE(4666)] = 154264, + [SMALL_STATE(4667)] = 154274, + [SMALL_STATE(4668)] = 154284, + [SMALL_STATE(4669)] = 154294, + [SMALL_STATE(4670)] = 154304, + [SMALL_STATE(4671)] = 154318, + [SMALL_STATE(4672)] = 154332, + [SMALL_STATE(4673)] = 154342, + [SMALL_STATE(4674)] = 154352, + [SMALL_STATE(4675)] = 154362, + [SMALL_STATE(4676)] = 154372, + [SMALL_STATE(4677)] = 154382, + [SMALL_STATE(4678)] = 154396, + [SMALL_STATE(4679)] = 154410, + [SMALL_STATE(4680)] = 154424, + [SMALL_STATE(4681)] = 154438, + [SMALL_STATE(4682)] = 154448, + [SMALL_STATE(4683)] = 154458, + [SMALL_STATE(4684)] = 154468, + [SMALL_STATE(4685)] = 154478, + [SMALL_STATE(4686)] = 154488, + [SMALL_STATE(4687)] = 154498, + [SMALL_STATE(4688)] = 154508, + [SMALL_STATE(4689)] = 154522, + [SMALL_STATE(4690)] = 154536, + [SMALL_STATE(4691)] = 154550, + [SMALL_STATE(4692)] = 154562, + [SMALL_STATE(4693)] = 154576, + [SMALL_STATE(4694)] = 154586, + [SMALL_STATE(4695)] = 154600, + [SMALL_STATE(4696)] = 154610, + [SMALL_STATE(4697)] = 154624, + [SMALL_STATE(4698)] = 154638, + [SMALL_STATE(4699)] = 154652, + [SMALL_STATE(4700)] = 154666, + [SMALL_STATE(4701)] = 154676, + [SMALL_STATE(4702)] = 154690, + [SMALL_STATE(4703)] = 154700, + [SMALL_STATE(4704)] = 154710, + [SMALL_STATE(4705)] = 154720, + [SMALL_STATE(4706)] = 154730, + [SMALL_STATE(4707)] = 154740, + [SMALL_STATE(4708)] = 154750, + [SMALL_STATE(4709)] = 154760, + [SMALL_STATE(4710)] = 154770, + [SMALL_STATE(4711)] = 154780, + [SMALL_STATE(4712)] = 154790, + [SMALL_STATE(4713)] = 154800, + [SMALL_STATE(4714)] = 154810, + [SMALL_STATE(4715)] = 154824, + [SMALL_STATE(4716)] = 154838, + [SMALL_STATE(4717)] = 154848, + [SMALL_STATE(4718)] = 154858, + [SMALL_STATE(4719)] = 154868, + [SMALL_STATE(4720)] = 154882, + [SMALL_STATE(4721)] = 154892, + [SMALL_STATE(4722)] = 154906, + [SMALL_STATE(4723)] = 154916, + [SMALL_STATE(4724)] = 154926, + [SMALL_STATE(4725)] = 154936, + [SMALL_STATE(4726)] = 154946, + [SMALL_STATE(4727)] = 154956, + [SMALL_STATE(4728)] = 154966, + [SMALL_STATE(4729)] = 154976, + [SMALL_STATE(4730)] = 154986, + [SMALL_STATE(4731)] = 154996, + [SMALL_STATE(4732)] = 155006, + [SMALL_STATE(4733)] = 155020, + [SMALL_STATE(4734)] = 155034, + [SMALL_STATE(4735)] = 155044, + [SMALL_STATE(4736)] = 155054, + [SMALL_STATE(4737)] = 155064, + [SMALL_STATE(4738)] = 155078, + [SMALL_STATE(4739)] = 155088, + [SMALL_STATE(4740)] = 155102, + [SMALL_STATE(4741)] = 155112, + [SMALL_STATE(4742)] = 155122, + [SMALL_STATE(4743)] = 155132, + [SMALL_STATE(4744)] = 155142, + [SMALL_STATE(4745)] = 155152, + [SMALL_STATE(4746)] = 155162, + [SMALL_STATE(4747)] = 155172, + [SMALL_STATE(4748)] = 155182, + [SMALL_STATE(4749)] = 155192, + [SMALL_STATE(4750)] = 155206, + [SMALL_STATE(4751)] = 155216, + [SMALL_STATE(4752)] = 155226, + [SMALL_STATE(4753)] = 155236, + [SMALL_STATE(4754)] = 155246, + [SMALL_STATE(4755)] = 155256, + [SMALL_STATE(4756)] = 155266, + [SMALL_STATE(4757)] = 155278, + [SMALL_STATE(4758)] = 155292, + [SMALL_STATE(4759)] = 155306, + [SMALL_STATE(4760)] = 155320, + [SMALL_STATE(4761)] = 155330, + [SMALL_STATE(4762)] = 155340, + [SMALL_STATE(4763)] = 155350, + [SMALL_STATE(4764)] = 155360, + [SMALL_STATE(4765)] = 155370, + [SMALL_STATE(4766)] = 155380, + [SMALL_STATE(4767)] = 155394, + [SMALL_STATE(4768)] = 155404, + [SMALL_STATE(4769)] = 155418, + [SMALL_STATE(4770)] = 155428, + [SMALL_STATE(4771)] = 155442, + [SMALL_STATE(4772)] = 155456, + [SMALL_STATE(4773)] = 155466, + [SMALL_STATE(4774)] = 155480, + [SMALL_STATE(4775)] = 155490, + [SMALL_STATE(4776)] = 155500, + [SMALL_STATE(4777)] = 155514, + [SMALL_STATE(4778)] = 155528, + [SMALL_STATE(4779)] = 155542, + [SMALL_STATE(4780)] = 155554, + [SMALL_STATE(4781)] = 155568, + [SMALL_STATE(4782)] = 155578, + [SMALL_STATE(4783)] = 155592, + [SMALL_STATE(4784)] = 155606, + [SMALL_STATE(4785)] = 155618, + [SMALL_STATE(4786)] = 155628, + [SMALL_STATE(4787)] = 155638, + [SMALL_STATE(4788)] = 155648, + [SMALL_STATE(4789)] = 155660, + [SMALL_STATE(4790)] = 155670, + [SMALL_STATE(4791)] = 155680, + [SMALL_STATE(4792)] = 155692, + [SMALL_STATE(4793)] = 155702, + [SMALL_STATE(4794)] = 155712, + [SMALL_STATE(4795)] = 155724, + [SMALL_STATE(4796)] = 155738, + [SMALL_STATE(4797)] = 155748, + [SMALL_STATE(4798)] = 155762, + [SMALL_STATE(4799)] = 155774, + [SMALL_STATE(4800)] = 155784, + [SMALL_STATE(4801)] = 155794, + [SMALL_STATE(4802)] = 155804, + [SMALL_STATE(4803)] = 155818, + [SMALL_STATE(4804)] = 155828, + [SMALL_STATE(4805)] = 155842, + [SMALL_STATE(4806)] = 155852, + [SMALL_STATE(4807)] = 155866, + [SMALL_STATE(4808)] = 155876, + [SMALL_STATE(4809)] = 155886, + [SMALL_STATE(4810)] = 155896, + [SMALL_STATE(4811)] = 155906, + [SMALL_STATE(4812)] = 155916, + [SMALL_STATE(4813)] = 155930, + [SMALL_STATE(4814)] = 155940, + [SMALL_STATE(4815)] = 155950, + [SMALL_STATE(4816)] = 155964, + [SMALL_STATE(4817)] = 155978, + [SMALL_STATE(4818)] = 155992, + [SMALL_STATE(4819)] = 156004, + [SMALL_STATE(4820)] = 156014, + [SMALL_STATE(4821)] = 156024, + [SMALL_STATE(4822)] = 156038, + [SMALL_STATE(4823)] = 156048, + [SMALL_STATE(4824)] = 156060, + [SMALL_STATE(4825)] = 156074, + [SMALL_STATE(4826)] = 156084, + [SMALL_STATE(4827)] = 156094, + [SMALL_STATE(4828)] = 156104, + [SMALL_STATE(4829)] = 156114, + [SMALL_STATE(4830)] = 156124, + [SMALL_STATE(4831)] = 156134, + [SMALL_STATE(4832)] = 156144, + [SMALL_STATE(4833)] = 156154, + [SMALL_STATE(4834)] = 156166, + [SMALL_STATE(4835)] = 156180, + [SMALL_STATE(4836)] = 156194, + [SMALL_STATE(4837)] = 156208, + [SMALL_STATE(4838)] = 156222, + [SMALL_STATE(4839)] = 156236, + [SMALL_STATE(4840)] = 156246, + [SMALL_STATE(4841)] = 156260, + [SMALL_STATE(4842)] = 156272, + [SMALL_STATE(4843)] = 156282, + [SMALL_STATE(4844)] = 156292, + [SMALL_STATE(4845)] = 156302, + [SMALL_STATE(4846)] = 156312, + [SMALL_STATE(4847)] = 156322, + [SMALL_STATE(4848)] = 156332, + [SMALL_STATE(4849)] = 156342, + [SMALL_STATE(4850)] = 156352, + [SMALL_STATE(4851)] = 156362, + [SMALL_STATE(4852)] = 156376, + [SMALL_STATE(4853)] = 156386, + [SMALL_STATE(4854)] = 156400, + [SMALL_STATE(4855)] = 156414, + [SMALL_STATE(4856)] = 156428, + [SMALL_STATE(4857)] = 156438, + [SMALL_STATE(4858)] = 156452, + [SMALL_STATE(4859)] = 156466, + [SMALL_STATE(4860)] = 156476, + [SMALL_STATE(4861)] = 156486, + [SMALL_STATE(4862)] = 156496, + [SMALL_STATE(4863)] = 156506, + [SMALL_STATE(4864)] = 156516, + [SMALL_STATE(4865)] = 156526, + [SMALL_STATE(4866)] = 156536, + [SMALL_STATE(4867)] = 156550, + [SMALL_STATE(4868)] = 156560, + [SMALL_STATE(4869)] = 156570, + [SMALL_STATE(4870)] = 156580, + [SMALL_STATE(4871)] = 156590, + [SMALL_STATE(4872)] = 156600, + [SMALL_STATE(4873)] = 156610, + [SMALL_STATE(4874)] = 156620, + [SMALL_STATE(4875)] = 156634, + [SMALL_STATE(4876)] = 156648, + [SMALL_STATE(4877)] = 156658, + [SMALL_STATE(4878)] = 156668, + [SMALL_STATE(4879)] = 156678, + [SMALL_STATE(4880)] = 156688, + [SMALL_STATE(4881)] = 156698, + [SMALL_STATE(4882)] = 156708, + [SMALL_STATE(4883)] = 156718, + [SMALL_STATE(4884)] = 156728, + [SMALL_STATE(4885)] = 156738, + [SMALL_STATE(4886)] = 156748, + [SMALL_STATE(4887)] = 156762, + [SMALL_STATE(4888)] = 156772, + [SMALL_STATE(4889)] = 156786, + [SMALL_STATE(4890)] = 156796, + [SMALL_STATE(4891)] = 156810, + [SMALL_STATE(4892)] = 156820, + [SMALL_STATE(4893)] = 156830, + [SMALL_STATE(4894)] = 156840, + [SMALL_STATE(4895)] = 156850, + [SMALL_STATE(4896)] = 156860, + [SMALL_STATE(4897)] = 156870, + [SMALL_STATE(4898)] = 156880, + [SMALL_STATE(4899)] = 156890, + [SMALL_STATE(4900)] = 156900, + [SMALL_STATE(4901)] = 156910, + [SMALL_STATE(4902)] = 156920, + [SMALL_STATE(4903)] = 156934, + [SMALL_STATE(4904)] = 156944, + [SMALL_STATE(4905)] = 156958, + [SMALL_STATE(4906)] = 156972, + [SMALL_STATE(4907)] = 156986, + [SMALL_STATE(4908)] = 156996, + [SMALL_STATE(4909)] = 157006, + [SMALL_STATE(4910)] = 157016, + [SMALL_STATE(4911)] = 157026, + [SMALL_STATE(4912)] = 157036, + [SMALL_STATE(4913)] = 157046, + [SMALL_STATE(4914)] = 157056, + [SMALL_STATE(4915)] = 157066, + [SMALL_STATE(4916)] = 157080, + [SMALL_STATE(4917)] = 157094, + [SMALL_STATE(4918)] = 157104, + [SMALL_STATE(4919)] = 157118, + [SMALL_STATE(4920)] = 157132, + [SMALL_STATE(4921)] = 157142, + [SMALL_STATE(4922)] = 157152, + [SMALL_STATE(4923)] = 157162, + [SMALL_STATE(4924)] = 157172, + [SMALL_STATE(4925)] = 157182, + [SMALL_STATE(4926)] = 157192, + [SMALL_STATE(4927)] = 157202, + [SMALL_STATE(4928)] = 157212, + [SMALL_STATE(4929)] = 157222, + [SMALL_STATE(4930)] = 157232, + [SMALL_STATE(4931)] = 157242, + [SMALL_STATE(4932)] = 157252, + [SMALL_STATE(4933)] = 157262, + [SMALL_STATE(4934)] = 157276, + [SMALL_STATE(4935)] = 157290, + [SMALL_STATE(4936)] = 157300, + [SMALL_STATE(4937)] = 157314, + [SMALL_STATE(4938)] = 157324, + [SMALL_STATE(4939)] = 157334, + [SMALL_STATE(4940)] = 157344, + [SMALL_STATE(4941)] = 157354, + [SMALL_STATE(4942)] = 157368, + [SMALL_STATE(4943)] = 157382, + [SMALL_STATE(4944)] = 157394, + [SMALL_STATE(4945)] = 157404, + [SMALL_STATE(4946)] = 157418, + [SMALL_STATE(4947)] = 157428, + [SMALL_STATE(4948)] = 157442, + [SMALL_STATE(4949)] = 157452, + [SMALL_STATE(4950)] = 157462, + [SMALL_STATE(4951)] = 157472, + [SMALL_STATE(4952)] = 157482, + [SMALL_STATE(4953)] = 157496, + [SMALL_STATE(4954)] = 157506, + [SMALL_STATE(4955)] = 157516, + [SMALL_STATE(4956)] = 157526, + [SMALL_STATE(4957)] = 157540, + [SMALL_STATE(4958)] = 157550, + [SMALL_STATE(4959)] = 157560, + [SMALL_STATE(4960)] = 157570, + [SMALL_STATE(4961)] = 157580, + [SMALL_STATE(4962)] = 157590, + [SMALL_STATE(4963)] = 157600, + [SMALL_STATE(4964)] = 157614, + [SMALL_STATE(4965)] = 157628, + [SMALL_STATE(4966)] = 157642, + [SMALL_STATE(4967)] = 157656, + [SMALL_STATE(4968)] = 157670, + [SMALL_STATE(4969)] = 157680, + [SMALL_STATE(4970)] = 157690, + [SMALL_STATE(4971)] = 157700, + [SMALL_STATE(4972)] = 157714, + [SMALL_STATE(4973)] = 157726, + [SMALL_STATE(4974)] = 157738, + [SMALL_STATE(4975)] = 157748, + [SMALL_STATE(4976)] = 157762, + [SMALL_STATE(4977)] = 157772, + [SMALL_STATE(4978)] = 157786, + [SMALL_STATE(4979)] = 157800, + [SMALL_STATE(4980)] = 157810, + [SMALL_STATE(4981)] = 157820, + [SMALL_STATE(4982)] = 157834, + [SMALL_STATE(4983)] = 157844, + [SMALL_STATE(4984)] = 157854, + [SMALL_STATE(4985)] = 157864, + [SMALL_STATE(4986)] = 157874, + [SMALL_STATE(4987)] = 157888, + [SMALL_STATE(4988)] = 157898, + [SMALL_STATE(4989)] = 157912, + [SMALL_STATE(4990)] = 157926, + [SMALL_STATE(4991)] = 157940, + [SMALL_STATE(4992)] = 157950, + [SMALL_STATE(4993)] = 157960, + [SMALL_STATE(4994)] = 157970, + [SMALL_STATE(4995)] = 157980, + [SMALL_STATE(4996)] = 157990, + [SMALL_STATE(4997)] = 158000, + [SMALL_STATE(4998)] = 158010, + [SMALL_STATE(4999)] = 158022, + [SMALL_STATE(5000)] = 158032, + [SMALL_STATE(5001)] = 158042, + [SMALL_STATE(5002)] = 158056, + [SMALL_STATE(5003)] = 158068, + [SMALL_STATE(5004)] = 158078, + [SMALL_STATE(5005)] = 158088, + [SMALL_STATE(5006)] = 158102, + [SMALL_STATE(5007)] = 158112, + [SMALL_STATE(5008)] = 158122, + [SMALL_STATE(5009)] = 158132, + [SMALL_STATE(5010)] = 158144, + [SMALL_STATE(5011)] = 158154, + [SMALL_STATE(5012)] = 158164, + [SMALL_STATE(5013)] = 158174, + [SMALL_STATE(5014)] = 158188, + [SMALL_STATE(5015)] = 158198, + [SMALL_STATE(5016)] = 158212, + [SMALL_STATE(5017)] = 158222, + [SMALL_STATE(5018)] = 158232, + [SMALL_STATE(5019)] = 158242, + [SMALL_STATE(5020)] = 158252, + [SMALL_STATE(5021)] = 158262, + [SMALL_STATE(5022)] = 158272, + [SMALL_STATE(5023)] = 158286, + [SMALL_STATE(5024)] = 158296, + [SMALL_STATE(5025)] = 158306, + [SMALL_STATE(5026)] = 158316, + [SMALL_STATE(5027)] = 158326, + [SMALL_STATE(5028)] = 158340, + [SMALL_STATE(5029)] = 158350, + [SMALL_STATE(5030)] = 158360, + [SMALL_STATE(5031)] = 158370, + [SMALL_STATE(5032)] = 158380, + [SMALL_STATE(5033)] = 158390, + [SMALL_STATE(5034)] = 158400, + [SMALL_STATE(5035)] = 158410, + [SMALL_STATE(5036)] = 158420, + [SMALL_STATE(5037)] = 158430, + [SMALL_STATE(5038)] = 158440, + [SMALL_STATE(5039)] = 158450, + [SMALL_STATE(5040)] = 158460, + [SMALL_STATE(5041)] = 158470, + [SMALL_STATE(5042)] = 158480, + [SMALL_STATE(5043)] = 158490, + [SMALL_STATE(5044)] = 158504, + [SMALL_STATE(5045)] = 158514, + [SMALL_STATE(5046)] = 158524, + [SMALL_STATE(5047)] = 158534, + [SMALL_STATE(5048)] = 158544, + [SMALL_STATE(5049)] = 158554, + [SMALL_STATE(5050)] = 158564, + [SMALL_STATE(5051)] = 158574, + [SMALL_STATE(5052)] = 158584, + [SMALL_STATE(5053)] = 158594, + [SMALL_STATE(5054)] = 158604, + [SMALL_STATE(5055)] = 158614, + [SMALL_STATE(5056)] = 158624, + [SMALL_STATE(5057)] = 158634, + [SMALL_STATE(5058)] = 158644, + [SMALL_STATE(5059)] = 158654, + [SMALL_STATE(5060)] = 158664, + [SMALL_STATE(5061)] = 158674, + [SMALL_STATE(5062)] = 158684, + [SMALL_STATE(5063)] = 158696, + [SMALL_STATE(5064)] = 158706, + [SMALL_STATE(5065)] = 158716, + [SMALL_STATE(5066)] = 158726, + [SMALL_STATE(5067)] = 158736, + [SMALL_STATE(5068)] = 158746, + [SMALL_STATE(5069)] = 158756, + [SMALL_STATE(5070)] = 158766, + [SMALL_STATE(5071)] = 158778, + [SMALL_STATE(5072)] = 158792, + [SMALL_STATE(5073)] = 158802, + [SMALL_STATE(5074)] = 158816, + [SMALL_STATE(5075)] = 158826, + [SMALL_STATE(5076)] = 158836, + [SMALL_STATE(5077)] = 158846, + [SMALL_STATE(5078)] = 158856, + [SMALL_STATE(5079)] = 158866, + [SMALL_STATE(5080)] = 158876, + [SMALL_STATE(5081)] = 158886, + [SMALL_STATE(5082)] = 158896, + [SMALL_STATE(5083)] = 158906, + [SMALL_STATE(5084)] = 158916, + [SMALL_STATE(5085)] = 158926, + [SMALL_STATE(5086)] = 158936, + [SMALL_STATE(5087)] = 158946, + [SMALL_STATE(5088)] = 158956, + [SMALL_STATE(5089)] = 158970, + [SMALL_STATE(5090)] = 158980, + [SMALL_STATE(5091)] = 158990, + [SMALL_STATE(5092)] = 159000, + [SMALL_STATE(5093)] = 159014, + [SMALL_STATE(5094)] = 159024, + [SMALL_STATE(5095)] = 159034, + [SMALL_STATE(5096)] = 159044, + [SMALL_STATE(5097)] = 159054, + [SMALL_STATE(5098)] = 159064, + [SMALL_STATE(5099)] = 159078, + [SMALL_STATE(5100)] = 159088, + [SMALL_STATE(5101)] = 159098, + [SMALL_STATE(5102)] = 159108, + [SMALL_STATE(5103)] = 159122, + [SMALL_STATE(5104)] = 159132, + [SMALL_STATE(5105)] = 159146, + [SMALL_STATE(5106)] = 159156, + [SMALL_STATE(5107)] = 159168, + [SMALL_STATE(5108)] = 159178, + [SMALL_STATE(5109)] = 159192, + [SMALL_STATE(5110)] = 159204, + [SMALL_STATE(5111)] = 159214, + [SMALL_STATE(5112)] = 159224, + [SMALL_STATE(5113)] = 159234, + [SMALL_STATE(5114)] = 159244, + [SMALL_STATE(5115)] = 159254, + [SMALL_STATE(5116)] = 159264, + [SMALL_STATE(5117)] = 159274, + [SMALL_STATE(5118)] = 159284, + [SMALL_STATE(5119)] = 159294, + [SMALL_STATE(5120)] = 159304, + [SMALL_STATE(5121)] = 159314, + [SMALL_STATE(5122)] = 159324, + [SMALL_STATE(5123)] = 159334, + [SMALL_STATE(5124)] = 159344, + [SMALL_STATE(5125)] = 159354, + [SMALL_STATE(5126)] = 159364, + [SMALL_STATE(5127)] = 159374, + [SMALL_STATE(5128)] = 159384, + [SMALL_STATE(5129)] = 159394, + [SMALL_STATE(5130)] = 159404, + [SMALL_STATE(5131)] = 159414, + [SMALL_STATE(5132)] = 159424, + [SMALL_STATE(5133)] = 159438, + [SMALL_STATE(5134)] = 159448, + [SMALL_STATE(5135)] = 159458, + [SMALL_STATE(5136)] = 159468, + [SMALL_STATE(5137)] = 159478, + [SMALL_STATE(5138)] = 159488, + [SMALL_STATE(5139)] = 159498, + [SMALL_STATE(5140)] = 159508, + [SMALL_STATE(5141)] = 159518, + [SMALL_STATE(5142)] = 159528, + [SMALL_STATE(5143)] = 159542, + [SMALL_STATE(5144)] = 159552, + [SMALL_STATE(5145)] = 159562, + [SMALL_STATE(5146)] = 159572, + [SMALL_STATE(5147)] = 159582, + [SMALL_STATE(5148)] = 159592, + [SMALL_STATE(5149)] = 159602, + [SMALL_STATE(5150)] = 159616, + [SMALL_STATE(5151)] = 159630, + [SMALL_STATE(5152)] = 159640, + [SMALL_STATE(5153)] = 159650, + [SMALL_STATE(5154)] = 159660, + [SMALL_STATE(5155)] = 159674, + [SMALL_STATE(5156)] = 159688, + [SMALL_STATE(5157)] = 159702, + [SMALL_STATE(5158)] = 159712, + [SMALL_STATE(5159)] = 159726, + [SMALL_STATE(5160)] = 159736, + [SMALL_STATE(5161)] = 159750, + [SMALL_STATE(5162)] = 159760, + [SMALL_STATE(5163)] = 159774, + [SMALL_STATE(5164)] = 159786, + [SMALL_STATE(5165)] = 159800, + [SMALL_STATE(5166)] = 159810, + [SMALL_STATE(5167)] = 159820, + [SMALL_STATE(5168)] = 159830, + [SMALL_STATE(5169)] = 159844, + [SMALL_STATE(5170)] = 159854, + [SMALL_STATE(5171)] = 159868, + [SMALL_STATE(5172)] = 159878, + [SMALL_STATE(5173)] = 159892, + [SMALL_STATE(5174)] = 159902, + [SMALL_STATE(5175)] = 159916, + [SMALL_STATE(5176)] = 159926, + [SMALL_STATE(5177)] = 159936, + [SMALL_STATE(5178)] = 159946, + [SMALL_STATE(5179)] = 159956, + [SMALL_STATE(5180)] = 159966, + [SMALL_STATE(5181)] = 159976, + [SMALL_STATE(5182)] = 159986, + [SMALL_STATE(5183)] = 160000, + [SMALL_STATE(5184)] = 160012, + [SMALL_STATE(5185)] = 160026, + [SMALL_STATE(5186)] = 160036, + [SMALL_STATE(5187)] = 160046, + [SMALL_STATE(5188)] = 160056, + [SMALL_STATE(5189)] = 160066, + [SMALL_STATE(5190)] = 160076, + [SMALL_STATE(5191)] = 160086, + [SMALL_STATE(5192)] = 160096, + [SMALL_STATE(5193)] = 160106, + [SMALL_STATE(5194)] = 160116, + [SMALL_STATE(5195)] = 160126, + [SMALL_STATE(5196)] = 160140, + [SMALL_STATE(5197)] = 160154, + [SMALL_STATE(5198)] = 160164, + [SMALL_STATE(5199)] = 160174, + [SMALL_STATE(5200)] = 160184, + [SMALL_STATE(5201)] = 160198, + [SMALL_STATE(5202)] = 160208, + [SMALL_STATE(5203)] = 160222, + [SMALL_STATE(5204)] = 160232, + [SMALL_STATE(5205)] = 160242, + [SMALL_STATE(5206)] = 160252, + [SMALL_STATE(5207)] = 160262, + [SMALL_STATE(5208)] = 160272, + [SMALL_STATE(5209)] = 160282, + [SMALL_STATE(5210)] = 160292, + [SMALL_STATE(5211)] = 160302, + [SMALL_STATE(5212)] = 160316, + [SMALL_STATE(5213)] = 160326, + [SMALL_STATE(5214)] = 160340, + [SMALL_STATE(5215)] = 160354, + [SMALL_STATE(5216)] = 160368, + [SMALL_STATE(5217)] = 160378, + [SMALL_STATE(5218)] = 160388, + [SMALL_STATE(5219)] = 160398, + [SMALL_STATE(5220)] = 160412, + [SMALL_STATE(5221)] = 160422, + [SMALL_STATE(5222)] = 160436, + [SMALL_STATE(5223)] = 160446, + [SMALL_STATE(5224)] = 160456, + [SMALL_STATE(5225)] = 160467, + [SMALL_STATE(5226)] = 160478, + [SMALL_STATE(5227)] = 160489, + [SMALL_STATE(5228)] = 160498, + [SMALL_STATE(5229)] = 160509, + [SMALL_STATE(5230)] = 160518, + [SMALL_STATE(5231)] = 160527, + [SMALL_STATE(5232)] = 160538, + [SMALL_STATE(5233)] = 160549, + [SMALL_STATE(5234)] = 160560, + [SMALL_STATE(5235)] = 160571, + [SMALL_STATE(5236)] = 160582, + [SMALL_STATE(5237)] = 160593, + [SMALL_STATE(5238)] = 160604, + [SMALL_STATE(5239)] = 160613, + [SMALL_STATE(5240)] = 160624, + [SMALL_STATE(5241)] = 160635, + [SMALL_STATE(5242)] = 160646, + [SMALL_STATE(5243)] = 160655, + [SMALL_STATE(5244)] = 160664, + [SMALL_STATE(5245)] = 160675, + [SMALL_STATE(5246)] = 160686, + [SMALL_STATE(5247)] = 160695, + [SMALL_STATE(5248)] = 160706, + [SMALL_STATE(5249)] = 160717, + [SMALL_STATE(5250)] = 160728, + [SMALL_STATE(5251)] = 160739, + [SMALL_STATE(5252)] = 160750, + [SMALL_STATE(5253)] = 160761, + [SMALL_STATE(5254)] = 160772, + [SMALL_STATE(5255)] = 160781, + [SMALL_STATE(5256)] = 160792, + [SMALL_STATE(5257)] = 160801, + [SMALL_STATE(5258)] = 160810, + [SMALL_STATE(5259)] = 160819, + [SMALL_STATE(5260)] = 160830, + [SMALL_STATE(5261)] = 160841, + [SMALL_STATE(5262)] = 160852, + [SMALL_STATE(5263)] = 160863, + [SMALL_STATE(5264)] = 160874, + [SMALL_STATE(5265)] = 160885, + [SMALL_STATE(5266)] = 160894, + [SMALL_STATE(5267)] = 160905, + [SMALL_STATE(5268)] = 160916, + [SMALL_STATE(5269)] = 160927, + [SMALL_STATE(5270)] = 160938, + [SMALL_STATE(5271)] = 160949, + [SMALL_STATE(5272)] = 160960, + [SMALL_STATE(5273)] = 160969, + [SMALL_STATE(5274)] = 160980, + [SMALL_STATE(5275)] = 160991, + [SMALL_STATE(5276)] = 161002, + [SMALL_STATE(5277)] = 161011, + [SMALL_STATE(5278)] = 161022, + [SMALL_STATE(5279)] = 161033, + [SMALL_STATE(5280)] = 161044, + [SMALL_STATE(5281)] = 161055, + [SMALL_STATE(5282)] = 161064, + [SMALL_STATE(5283)] = 161075, + [SMALL_STATE(5284)] = 161084, + [SMALL_STATE(5285)] = 161095, + [SMALL_STATE(5286)] = 161104, + [SMALL_STATE(5287)] = 161115, + [SMALL_STATE(5288)] = 161126, + [SMALL_STATE(5289)] = 161137, + [SMALL_STATE(5290)] = 161148, + [SMALL_STATE(5291)] = 161157, + [SMALL_STATE(5292)] = 161168, + [SMALL_STATE(5293)] = 161179, + [SMALL_STATE(5294)] = 161190, + [SMALL_STATE(5295)] = 161199, + [SMALL_STATE(5296)] = 161210, + [SMALL_STATE(5297)] = 161219, + [SMALL_STATE(5298)] = 161228, + [SMALL_STATE(5299)] = 161239, + [SMALL_STATE(5300)] = 161250, + [SMALL_STATE(5301)] = 161261, + [SMALL_STATE(5302)] = 161272, + [SMALL_STATE(5303)] = 161283, + [SMALL_STATE(5304)] = 161294, + [SMALL_STATE(5305)] = 161305, + [SMALL_STATE(5306)] = 161314, + [SMALL_STATE(5307)] = 161323, + [SMALL_STATE(5308)] = 161334, + [SMALL_STATE(5309)] = 161345, + [SMALL_STATE(5310)] = 161354, + [SMALL_STATE(5311)] = 161365, + [SMALL_STATE(5312)] = 161376, + [SMALL_STATE(5313)] = 161387, + [SMALL_STATE(5314)] = 161398, + [SMALL_STATE(5315)] = 161409, + [SMALL_STATE(5316)] = 161420, + [SMALL_STATE(5317)] = 161431, + [SMALL_STATE(5318)] = 161442, + [SMALL_STATE(5319)] = 161453, + [SMALL_STATE(5320)] = 161464, + [SMALL_STATE(5321)] = 161475, + [SMALL_STATE(5322)] = 161486, + [SMALL_STATE(5323)] = 161497, + [SMALL_STATE(5324)] = 161508, + [SMALL_STATE(5325)] = 161519, + [SMALL_STATE(5326)] = 161530, + [SMALL_STATE(5327)] = 161541, + [SMALL_STATE(5328)] = 161552, + [SMALL_STATE(5329)] = 161563, + [SMALL_STATE(5330)] = 161574, + [SMALL_STATE(5331)] = 161585, + [SMALL_STATE(5332)] = 161596, + [SMALL_STATE(5333)] = 161607, + [SMALL_STATE(5334)] = 161618, + [SMALL_STATE(5335)] = 161629, + [SMALL_STATE(5336)] = 161640, + [SMALL_STATE(5337)] = 161651, + [SMALL_STATE(5338)] = 161662, + [SMALL_STATE(5339)] = 161673, + [SMALL_STATE(5340)] = 161684, + [SMALL_STATE(5341)] = 161693, + [SMALL_STATE(5342)] = 161702, + [SMALL_STATE(5343)] = 161713, + [SMALL_STATE(5344)] = 161722, + [SMALL_STATE(5345)] = 161733, + [SMALL_STATE(5346)] = 161744, + [SMALL_STATE(5347)] = 161753, + [SMALL_STATE(5348)] = 161762, + [SMALL_STATE(5349)] = 161773, + [SMALL_STATE(5350)] = 161784, + [SMALL_STATE(5351)] = 161795, + [SMALL_STATE(5352)] = 161806, + [SMALL_STATE(5353)] = 161815, + [SMALL_STATE(5354)] = 161826, + [SMALL_STATE(5355)] = 161835, + [SMALL_STATE(5356)] = 161846, + [SMALL_STATE(5357)] = 161857, + [SMALL_STATE(5358)] = 161868, + [SMALL_STATE(5359)] = 161879, + [SMALL_STATE(5360)] = 161890, + [SMALL_STATE(5361)] = 161901, + [SMALL_STATE(5362)] = 161912, + [SMALL_STATE(5363)] = 161921, + [SMALL_STATE(5364)] = 161932, + [SMALL_STATE(5365)] = 161941, + [SMALL_STATE(5366)] = 161952, + [SMALL_STATE(5367)] = 161963, + [SMALL_STATE(5368)] = 161974, + [SMALL_STATE(5369)] = 161985, + [SMALL_STATE(5370)] = 161996, + [SMALL_STATE(5371)] = 162007, + [SMALL_STATE(5372)] = 162018, + [SMALL_STATE(5373)] = 162027, + [SMALL_STATE(5374)] = 162036, + [SMALL_STATE(5375)] = 162045, + [SMALL_STATE(5376)] = 162056, + [SMALL_STATE(5377)] = 162067, + [SMALL_STATE(5378)] = 162078, + [SMALL_STATE(5379)] = 162089, + [SMALL_STATE(5380)] = 162100, + [SMALL_STATE(5381)] = 162109, + [SMALL_STATE(5382)] = 162120, + [SMALL_STATE(5383)] = 162131, + [SMALL_STATE(5384)] = 162142, + [SMALL_STATE(5385)] = 162153, + [SMALL_STATE(5386)] = 162164, + [SMALL_STATE(5387)] = 162175, + [SMALL_STATE(5388)] = 162184, + [SMALL_STATE(5389)] = 162195, + [SMALL_STATE(5390)] = 162204, + [SMALL_STATE(5391)] = 162215, + [SMALL_STATE(5392)] = 162226, + [SMALL_STATE(5393)] = 162237, + [SMALL_STATE(5394)] = 162246, + [SMALL_STATE(5395)] = 162257, + [SMALL_STATE(5396)] = 162266, + [SMALL_STATE(5397)] = 162277, + [SMALL_STATE(5398)] = 162288, + [SMALL_STATE(5399)] = 162299, + [SMALL_STATE(5400)] = 162310, + [SMALL_STATE(5401)] = 162321, + [SMALL_STATE(5402)] = 162332, + [SMALL_STATE(5403)] = 162343, + [SMALL_STATE(5404)] = 162354, + [SMALL_STATE(5405)] = 162363, + [SMALL_STATE(5406)] = 162374, + [SMALL_STATE(5407)] = 162385, + [SMALL_STATE(5408)] = 162396, + [SMALL_STATE(5409)] = 162407, + [SMALL_STATE(5410)] = 162418, + [SMALL_STATE(5411)] = 162429, + [SMALL_STATE(5412)] = 162440, + [SMALL_STATE(5413)] = 162451, + [SMALL_STATE(5414)] = 162462, + [SMALL_STATE(5415)] = 162473, + [SMALL_STATE(5416)] = 162484, + [SMALL_STATE(5417)] = 162495, + [SMALL_STATE(5418)] = 162504, + [SMALL_STATE(5419)] = 162515, + [SMALL_STATE(5420)] = 162524, + [SMALL_STATE(5421)] = 162535, + [SMALL_STATE(5422)] = 162546, + [SMALL_STATE(5423)] = 162555, + [SMALL_STATE(5424)] = 162566, + [SMALL_STATE(5425)] = 162577, + [SMALL_STATE(5426)] = 162588, + [SMALL_STATE(5427)] = 162599, + [SMALL_STATE(5428)] = 162608, + [SMALL_STATE(5429)] = 162617, + [SMALL_STATE(5430)] = 162628, + [SMALL_STATE(5431)] = 162639, + [SMALL_STATE(5432)] = 162650, + [SMALL_STATE(5433)] = 162661, + [SMALL_STATE(5434)] = 162672, + [SMALL_STATE(5435)] = 162683, + [SMALL_STATE(5436)] = 162694, + [SMALL_STATE(5437)] = 162705, + [SMALL_STATE(5438)] = 162714, + [SMALL_STATE(5439)] = 162725, + [SMALL_STATE(5440)] = 162734, + [SMALL_STATE(5441)] = 162745, + [SMALL_STATE(5442)] = 162756, + [SMALL_STATE(5443)] = 162767, + [SMALL_STATE(5444)] = 162778, + [SMALL_STATE(5445)] = 162789, + [SMALL_STATE(5446)] = 162798, + [SMALL_STATE(5447)] = 162807, + [SMALL_STATE(5448)] = 162818, + [SMALL_STATE(5449)] = 162829, + [SMALL_STATE(5450)] = 162838, + [SMALL_STATE(5451)] = 162849, + [SMALL_STATE(5452)] = 162860, + [SMALL_STATE(5453)] = 162871, + [SMALL_STATE(5454)] = 162882, + [SMALL_STATE(5455)] = 162893, + [SMALL_STATE(5456)] = 162902, + [SMALL_STATE(5457)] = 162913, + [SMALL_STATE(5458)] = 162924, + [SMALL_STATE(5459)] = 162935, + [SMALL_STATE(5460)] = 162944, + [SMALL_STATE(5461)] = 162955, + [SMALL_STATE(5462)] = 162966, + [SMALL_STATE(5463)] = 162977, + [SMALL_STATE(5464)] = 162988, + [SMALL_STATE(5465)] = 162999, + [SMALL_STATE(5466)] = 163010, + [SMALL_STATE(5467)] = 163021, + [SMALL_STATE(5468)] = 163032, + [SMALL_STATE(5469)] = 163043, + [SMALL_STATE(5470)] = 163054, + [SMALL_STATE(5471)] = 163065, + [SMALL_STATE(5472)] = 163076, + [SMALL_STATE(5473)] = 163087, + [SMALL_STATE(5474)] = 163098, + [SMALL_STATE(5475)] = 163109, + [SMALL_STATE(5476)] = 163120, + [SMALL_STATE(5477)] = 163131, + [SMALL_STATE(5478)] = 163142, + [SMALL_STATE(5479)] = 163153, + [SMALL_STATE(5480)] = 163162, + [SMALL_STATE(5481)] = 163171, + [SMALL_STATE(5482)] = 163180, + [SMALL_STATE(5483)] = 163191, + [SMALL_STATE(5484)] = 163202, + [SMALL_STATE(5485)] = 163213, + [SMALL_STATE(5486)] = 163224, + [SMALL_STATE(5487)] = 163235, + [SMALL_STATE(5488)] = 163246, + [SMALL_STATE(5489)] = 163257, + [SMALL_STATE(5490)] = 163268, + [SMALL_STATE(5491)] = 163279, + [SMALL_STATE(5492)] = 163288, + [SMALL_STATE(5493)] = 163299, + [SMALL_STATE(5494)] = 163308, + [SMALL_STATE(5495)] = 163319, + [SMALL_STATE(5496)] = 163328, + [SMALL_STATE(5497)] = 163337, + [SMALL_STATE(5498)] = 163348, + [SMALL_STATE(5499)] = 163357, + [SMALL_STATE(5500)] = 163368, + [SMALL_STATE(5501)] = 163379, + [SMALL_STATE(5502)] = 163390, + [SMALL_STATE(5503)] = 163399, + [SMALL_STATE(5504)] = 163408, + [SMALL_STATE(5505)] = 163419, + [SMALL_STATE(5506)] = 163430, + [SMALL_STATE(5507)] = 163441, + [SMALL_STATE(5508)] = 163452, + [SMALL_STATE(5509)] = 163463, + [SMALL_STATE(5510)] = 163474, + [SMALL_STATE(5511)] = 163485, + [SMALL_STATE(5512)] = 163496, + [SMALL_STATE(5513)] = 163507, + [SMALL_STATE(5514)] = 163518, + [SMALL_STATE(5515)] = 163529, + [SMALL_STATE(5516)] = 163540, + [SMALL_STATE(5517)] = 163551, + [SMALL_STATE(5518)] = 163562, + [SMALL_STATE(5519)] = 163573, + [SMALL_STATE(5520)] = 163584, + [SMALL_STATE(5521)] = 163595, + [SMALL_STATE(5522)] = 163606, + [SMALL_STATE(5523)] = 163615, + [SMALL_STATE(5524)] = 163626, + [SMALL_STATE(5525)] = 163637, + [SMALL_STATE(5526)] = 163648, + [SMALL_STATE(5527)] = 163659, + [SMALL_STATE(5528)] = 163670, + [SMALL_STATE(5529)] = 163681, + [SMALL_STATE(5530)] = 163692, + [SMALL_STATE(5531)] = 163701, + [SMALL_STATE(5532)] = 163712, + [SMALL_STATE(5533)] = 163721, + [SMALL_STATE(5534)] = 163732, + [SMALL_STATE(5535)] = 163743, + [SMALL_STATE(5536)] = 163754, + [SMALL_STATE(5537)] = 163763, + [SMALL_STATE(5538)] = 163774, + [SMALL_STATE(5539)] = 163785, + [SMALL_STATE(5540)] = 163794, + [SMALL_STATE(5541)] = 163805, + [SMALL_STATE(5542)] = 163816, + [SMALL_STATE(5543)] = 163827, + [SMALL_STATE(5544)] = 163838, + [SMALL_STATE(5545)] = 163849, + [SMALL_STATE(5546)] = 163860, + [SMALL_STATE(5547)] = 163869, + [SMALL_STATE(5548)] = 163880, + [SMALL_STATE(5549)] = 163891, + [SMALL_STATE(5550)] = 163902, + [SMALL_STATE(5551)] = 163913, + [SMALL_STATE(5552)] = 163924, + [SMALL_STATE(5553)] = 163935, + [SMALL_STATE(5554)] = 163946, + [SMALL_STATE(5555)] = 163957, + [SMALL_STATE(5556)] = 163968, + [SMALL_STATE(5557)] = 163979, + [SMALL_STATE(5558)] = 163990, + [SMALL_STATE(5559)] = 163999, + [SMALL_STATE(5560)] = 164010, + [SMALL_STATE(5561)] = 164021, + [SMALL_STATE(5562)] = 164032, + [SMALL_STATE(5563)] = 164043, + [SMALL_STATE(5564)] = 164054, + [SMALL_STATE(5565)] = 164065, + [SMALL_STATE(5566)] = 164074, + [SMALL_STATE(5567)] = 164083, + [SMALL_STATE(5568)] = 164094, + [SMALL_STATE(5569)] = 164105, + [SMALL_STATE(5570)] = 164116, + [SMALL_STATE(5571)] = 164127, + [SMALL_STATE(5572)] = 164136, + [SMALL_STATE(5573)] = 164147, + [SMALL_STATE(5574)] = 164158, + [SMALL_STATE(5575)] = 164167, + [SMALL_STATE(5576)] = 164178, + [SMALL_STATE(5577)] = 164189, + [SMALL_STATE(5578)] = 164197, + [SMALL_STATE(5579)] = 164205, + [SMALL_STATE(5580)] = 164213, + [SMALL_STATE(5581)] = 164221, + [SMALL_STATE(5582)] = 164229, + [SMALL_STATE(5583)] = 164237, + [SMALL_STATE(5584)] = 164245, + [SMALL_STATE(5585)] = 164253, + [SMALL_STATE(5586)] = 164261, + [SMALL_STATE(5587)] = 164269, + [SMALL_STATE(5588)] = 164277, + [SMALL_STATE(5589)] = 164285, + [SMALL_STATE(5590)] = 164293, + [SMALL_STATE(5591)] = 164301, + [SMALL_STATE(5592)] = 164309, + [SMALL_STATE(5593)] = 164317, + [SMALL_STATE(5594)] = 164325, + [SMALL_STATE(5595)] = 164333, + [SMALL_STATE(5596)] = 164341, + [SMALL_STATE(5597)] = 164349, + [SMALL_STATE(5598)] = 164357, + [SMALL_STATE(5599)] = 164367, + [SMALL_STATE(5600)] = 164375, + [SMALL_STATE(5601)] = 164383, + [SMALL_STATE(5602)] = 164391, + [SMALL_STATE(5603)] = 164399, + [SMALL_STATE(5604)] = 164407, + [SMALL_STATE(5605)] = 164415, + [SMALL_STATE(5606)] = 164423, + [SMALL_STATE(5607)] = 164431, + [SMALL_STATE(5608)] = 164439, + [SMALL_STATE(5609)] = 164447, + [SMALL_STATE(5610)] = 164457, + [SMALL_STATE(5611)] = 164465, + [SMALL_STATE(5612)] = 164473, + [SMALL_STATE(5613)] = 164481, + [SMALL_STATE(5614)] = 164489, + [SMALL_STATE(5615)] = 164497, + [SMALL_STATE(5616)] = 164505, + [SMALL_STATE(5617)] = 164513, + [SMALL_STATE(5618)] = 164521, + [SMALL_STATE(5619)] = 164529, + [SMALL_STATE(5620)] = 164537, + [SMALL_STATE(5621)] = 164545, + [SMALL_STATE(5622)] = 164553, + [SMALL_STATE(5623)] = 164561, + [SMALL_STATE(5624)] = 164569, + [SMALL_STATE(5625)] = 164577, + [SMALL_STATE(5626)] = 164585, + [SMALL_STATE(5627)] = 164593, + [SMALL_STATE(5628)] = 164601, + [SMALL_STATE(5629)] = 164609, + [SMALL_STATE(5630)] = 164617, + [SMALL_STATE(5631)] = 164625, + [SMALL_STATE(5632)] = 164633, + [SMALL_STATE(5633)] = 164641, + [SMALL_STATE(5634)] = 164649, + [SMALL_STATE(5635)] = 164657, + [SMALL_STATE(5636)] = 164667, + [SMALL_STATE(5637)] = 164675, + [SMALL_STATE(5638)] = 164683, + [SMALL_STATE(5639)] = 164691, + [SMALL_STATE(5640)] = 164699, + [SMALL_STATE(5641)] = 164707, + [SMALL_STATE(5642)] = 164715, + [SMALL_STATE(5643)] = 164723, + [SMALL_STATE(5644)] = 164731, + [SMALL_STATE(5645)] = 164739, + [SMALL_STATE(5646)] = 164747, + [SMALL_STATE(5647)] = 164755, + [SMALL_STATE(5648)] = 164763, + [SMALL_STATE(5649)] = 164771, + [SMALL_STATE(5650)] = 164779, + [SMALL_STATE(5651)] = 164787, + [SMALL_STATE(5652)] = 164795, + [SMALL_STATE(5653)] = 164803, + [SMALL_STATE(5654)] = 164811, + [SMALL_STATE(5655)] = 164819, + [SMALL_STATE(5656)] = 164827, + [SMALL_STATE(5657)] = 164835, + [SMALL_STATE(5658)] = 164843, + [SMALL_STATE(5659)] = 164851, + [SMALL_STATE(5660)] = 164859, + [SMALL_STATE(5661)] = 164867, + [SMALL_STATE(5662)] = 164875, + [SMALL_STATE(5663)] = 164883, + [SMALL_STATE(5664)] = 164891, + [SMALL_STATE(5665)] = 164899, + [SMALL_STATE(5666)] = 164907, + [SMALL_STATE(5667)] = 164915, + [SMALL_STATE(5668)] = 164923, + [SMALL_STATE(5669)] = 164931, + [SMALL_STATE(5670)] = 164939, + [SMALL_STATE(5671)] = 164947, + [SMALL_STATE(5672)] = 164955, + [SMALL_STATE(5673)] = 164963, + [SMALL_STATE(5674)] = 164971, + [SMALL_STATE(5675)] = 164979, + [SMALL_STATE(5676)] = 164987, + [SMALL_STATE(5677)] = 164995, + [SMALL_STATE(5678)] = 165003, + [SMALL_STATE(5679)] = 165011, + [SMALL_STATE(5680)] = 165019, + [SMALL_STATE(5681)] = 165027, + [SMALL_STATE(5682)] = 165035, + [SMALL_STATE(5683)] = 165043, + [SMALL_STATE(5684)] = 165051, + [SMALL_STATE(5685)] = 165059, + [SMALL_STATE(5686)] = 165067, + [SMALL_STATE(5687)] = 165075, + [SMALL_STATE(5688)] = 165083, + [SMALL_STATE(5689)] = 165091, + [SMALL_STATE(5690)] = 165099, + [SMALL_STATE(5691)] = 165107, + [SMALL_STATE(5692)] = 165115, + [SMALL_STATE(5693)] = 165123, + [SMALL_STATE(5694)] = 165131, + [SMALL_STATE(5695)] = 165139, + [SMALL_STATE(5696)] = 165147, + [SMALL_STATE(5697)] = 165155, + [SMALL_STATE(5698)] = 165163, + [SMALL_STATE(5699)] = 165171, + [SMALL_STATE(5700)] = 165179, + [SMALL_STATE(5701)] = 165187, + [SMALL_STATE(5702)] = 165195, + [SMALL_STATE(5703)] = 165203, + [SMALL_STATE(5704)] = 165211, + [SMALL_STATE(5705)] = 165219, + [SMALL_STATE(5706)] = 165227, + [SMALL_STATE(5707)] = 165235, + [SMALL_STATE(5708)] = 165243, + [SMALL_STATE(5709)] = 165251, + [SMALL_STATE(5710)] = 165259, + [SMALL_STATE(5711)] = 165267, + [SMALL_STATE(5712)] = 165275, + [SMALL_STATE(5713)] = 165283, + [SMALL_STATE(5714)] = 165291, + [SMALL_STATE(5715)] = 165299, + [SMALL_STATE(5716)] = 165307, + [SMALL_STATE(5717)] = 165315, + [SMALL_STATE(5718)] = 165323, + [SMALL_STATE(5719)] = 165331, + [SMALL_STATE(5720)] = 165339, + [SMALL_STATE(5721)] = 165347, + [SMALL_STATE(5722)] = 165355, + [SMALL_STATE(5723)] = 165363, + [SMALL_STATE(5724)] = 165371, + [SMALL_STATE(5725)] = 165379, + [SMALL_STATE(5726)] = 165387, + [SMALL_STATE(5727)] = 165395, + [SMALL_STATE(5728)] = 165403, + [SMALL_STATE(5729)] = 165411, + [SMALL_STATE(5730)] = 165419, + [SMALL_STATE(5731)] = 165427, + [SMALL_STATE(5732)] = 165435, + [SMALL_STATE(5733)] = 165443, + [SMALL_STATE(5734)] = 165451, + [SMALL_STATE(5735)] = 165459, + [SMALL_STATE(5736)] = 165467, + [SMALL_STATE(5737)] = 165475, + [SMALL_STATE(5738)] = 165483, + [SMALL_STATE(5739)] = 165491, + [SMALL_STATE(5740)] = 165499, + [SMALL_STATE(5741)] = 165507, + [SMALL_STATE(5742)] = 165515, + [SMALL_STATE(5743)] = 165523, + [SMALL_STATE(5744)] = 165531, + [SMALL_STATE(5745)] = 165539, + [SMALL_STATE(5746)] = 165547, + [SMALL_STATE(5747)] = 165555, + [SMALL_STATE(5748)] = 165563, + [SMALL_STATE(5749)] = 165571, + [SMALL_STATE(5750)] = 165579, + [SMALL_STATE(5751)] = 165587, + [SMALL_STATE(5752)] = 165595, + [SMALL_STATE(5753)] = 165603, + [SMALL_STATE(5754)] = 165611, + [SMALL_STATE(5755)] = 165619, + [SMALL_STATE(5756)] = 165627, + [SMALL_STATE(5757)] = 165635, + [SMALL_STATE(5758)] = 165643, + [SMALL_STATE(5759)] = 165651, + [SMALL_STATE(5760)] = 165659, + [SMALL_STATE(5761)] = 165667, + [SMALL_STATE(5762)] = 165675, + [SMALL_STATE(5763)] = 165683, + [SMALL_STATE(5764)] = 165691, + [SMALL_STATE(5765)] = 165699, + [SMALL_STATE(5766)] = 165707, + [SMALL_STATE(5767)] = 165715, + [SMALL_STATE(5768)] = 165723, + [SMALL_STATE(5769)] = 165731, + [SMALL_STATE(5770)] = 165739, + [SMALL_STATE(5771)] = 165747, + [SMALL_STATE(5772)] = 165755, + [SMALL_STATE(5773)] = 165763, + [SMALL_STATE(5774)] = 165771, + [SMALL_STATE(5775)] = 165779, + [SMALL_STATE(5776)] = 165787, + [SMALL_STATE(5777)] = 165795, + [SMALL_STATE(5778)] = 165803, + [SMALL_STATE(5779)] = 165811, + [SMALL_STATE(5780)] = 165819, + [SMALL_STATE(5781)] = 165827, + [SMALL_STATE(5782)] = 165835, + [SMALL_STATE(5783)] = 165843, + [SMALL_STATE(5784)] = 165851, + [SMALL_STATE(5785)] = 165859, + [SMALL_STATE(5786)] = 165867, + [SMALL_STATE(5787)] = 165875, + [SMALL_STATE(5788)] = 165883, + [SMALL_STATE(5789)] = 165891, + [SMALL_STATE(5790)] = 165899, + [SMALL_STATE(5791)] = 165907, + [SMALL_STATE(5792)] = 165915, + [SMALL_STATE(5793)] = 165923, + [SMALL_STATE(5794)] = 165931, + [SMALL_STATE(5795)] = 165939, + [SMALL_STATE(5796)] = 165947, + [SMALL_STATE(5797)] = 165955, + [SMALL_STATE(5798)] = 165963, + [SMALL_STATE(5799)] = 165971, + [SMALL_STATE(5800)] = 165979, + [SMALL_STATE(5801)] = 165987, + [SMALL_STATE(5802)] = 165995, + [SMALL_STATE(5803)] = 166003, + [SMALL_STATE(5804)] = 166011, + [SMALL_STATE(5805)] = 166019, + [SMALL_STATE(5806)] = 166027, + [SMALL_STATE(5807)] = 166035, + [SMALL_STATE(5808)] = 166043, + [SMALL_STATE(5809)] = 166051, + [SMALL_STATE(5810)] = 166059, + [SMALL_STATE(5811)] = 166067, + [SMALL_STATE(5812)] = 166075, + [SMALL_STATE(5813)] = 166083, + [SMALL_STATE(5814)] = 166091, + [SMALL_STATE(5815)] = 166099, + [SMALL_STATE(5816)] = 166107, + [SMALL_STATE(5817)] = 166115, + [SMALL_STATE(5818)] = 166123, + [SMALL_STATE(5819)] = 166131, + [SMALL_STATE(5820)] = 166139, + [SMALL_STATE(5821)] = 166147, + [SMALL_STATE(5822)] = 166155, + [SMALL_STATE(5823)] = 166163, + [SMALL_STATE(5824)] = 166171, + [SMALL_STATE(5825)] = 166179, + [SMALL_STATE(5826)] = 166187, + [SMALL_STATE(5827)] = 166197, + [SMALL_STATE(5828)] = 166205, + [SMALL_STATE(5829)] = 166213, + [SMALL_STATE(5830)] = 166221, + [SMALL_STATE(5831)] = 166231, + [SMALL_STATE(5832)] = 166239, + [SMALL_STATE(5833)] = 166247, + [SMALL_STATE(5834)] = 166255, + [SMALL_STATE(5835)] = 166263, + [SMALL_STATE(5836)] = 166271, + [SMALL_STATE(5837)] = 166279, + [SMALL_STATE(5838)] = 166287, + [SMALL_STATE(5839)] = 166297, + [SMALL_STATE(5840)] = 166305, + [SMALL_STATE(5841)] = 166313, + [SMALL_STATE(5842)] = 166321, + [SMALL_STATE(5843)] = 166329, + [SMALL_STATE(5844)] = 166337, + [SMALL_STATE(5845)] = 166345, + [SMALL_STATE(5846)] = 166353, + [SMALL_STATE(5847)] = 166361, + [SMALL_STATE(5848)] = 166369, + [SMALL_STATE(5849)] = 166377, + [SMALL_STATE(5850)] = 166385, + [SMALL_STATE(5851)] = 166393, + [SMALL_STATE(5852)] = 166401, + [SMALL_STATE(5853)] = 166409, + [SMALL_STATE(5854)] = 166417, + [SMALL_STATE(5855)] = 166425, + [SMALL_STATE(5856)] = 166433, + [SMALL_STATE(5857)] = 166441, + [SMALL_STATE(5858)] = 166449, + [SMALL_STATE(5859)] = 166457, + [SMALL_STATE(5860)] = 166465, + [SMALL_STATE(5861)] = 166473, + [SMALL_STATE(5862)] = 166481, + [SMALL_STATE(5863)] = 166489, + [SMALL_STATE(5864)] = 166497, + [SMALL_STATE(5865)] = 166505, + [SMALL_STATE(5866)] = 166513, + [SMALL_STATE(5867)] = 166521, + [SMALL_STATE(5868)] = 166529, + [SMALL_STATE(5869)] = 166537, + [SMALL_STATE(5870)] = 166545, + [SMALL_STATE(5871)] = 166553, + [SMALL_STATE(5872)] = 166561, + [SMALL_STATE(5873)] = 166569, + [SMALL_STATE(5874)] = 166577, + [SMALL_STATE(5875)] = 166585, + [SMALL_STATE(5876)] = 166593, + [SMALL_STATE(5877)] = 166601, + [SMALL_STATE(5878)] = 166609, + [SMALL_STATE(5879)] = 166617, + [SMALL_STATE(5880)] = 166625, + [SMALL_STATE(5881)] = 166633, + [SMALL_STATE(5882)] = 166641, + [SMALL_STATE(5883)] = 166649, + [SMALL_STATE(5884)] = 166657, + [SMALL_STATE(5885)] = 166665, + [SMALL_STATE(5886)] = 166673, + [SMALL_STATE(5887)] = 166681, + [SMALL_STATE(5888)] = 166689, + [SMALL_STATE(5889)] = 166697, + [SMALL_STATE(5890)] = 166705, + [SMALL_STATE(5891)] = 166713, + [SMALL_STATE(5892)] = 166721, + [SMALL_STATE(5893)] = 166729, + [SMALL_STATE(5894)] = 166737, + [SMALL_STATE(5895)] = 166745, + [SMALL_STATE(5896)] = 166755, + [SMALL_STATE(5897)] = 166763, + [SMALL_STATE(5898)] = 166771, + [SMALL_STATE(5899)] = 166779, + [SMALL_STATE(5900)] = 166787, + [SMALL_STATE(5901)] = 166795, + [SMALL_STATE(5902)] = 166803, + [SMALL_STATE(5903)] = 166811, + [SMALL_STATE(5904)] = 166819, + [SMALL_STATE(5905)] = 166827, + [SMALL_STATE(5906)] = 166835, + [SMALL_STATE(5907)] = 166843, + [SMALL_STATE(5908)] = 166851, + [SMALL_STATE(5909)] = 166859, + [SMALL_STATE(5910)] = 166867, + [SMALL_STATE(5911)] = 166877, + [SMALL_STATE(5912)] = 166885, + [SMALL_STATE(5913)] = 166893, + [SMALL_STATE(5914)] = 166901, + [SMALL_STATE(5915)] = 166909, + [SMALL_STATE(5916)] = 166917, + [SMALL_STATE(5917)] = 166927, + [SMALL_STATE(5918)] = 166935, + [SMALL_STATE(5919)] = 166943, + [SMALL_STATE(5920)] = 166951, + [SMALL_STATE(5921)] = 166959, + [SMALL_STATE(5922)] = 166967, + [SMALL_STATE(5923)] = 166975, + [SMALL_STATE(5924)] = 166983, + [SMALL_STATE(5925)] = 166991, + [SMALL_STATE(5926)] = 166999, + [SMALL_STATE(5927)] = 167007, + [SMALL_STATE(5928)] = 167015, + [SMALL_STATE(5929)] = 167023, + [SMALL_STATE(5930)] = 167031, + [SMALL_STATE(5931)] = 167039, + [SMALL_STATE(5932)] = 167047, + [SMALL_STATE(5933)] = 167055, + [SMALL_STATE(5934)] = 167063, + [SMALL_STATE(5935)] = 167071, + [SMALL_STATE(5936)] = 167079, + [SMALL_STATE(5937)] = 167087, + [SMALL_STATE(5938)] = 167095, + [SMALL_STATE(5939)] = 167103, + [SMALL_STATE(5940)] = 167111, + [SMALL_STATE(5941)] = 167119, + [SMALL_STATE(5942)] = 167127, + [SMALL_STATE(5943)] = 167135, + [SMALL_STATE(5944)] = 167143, + [SMALL_STATE(5945)] = 167151, + [SMALL_STATE(5946)] = 167159, + [SMALL_STATE(5947)] = 167167, + [SMALL_STATE(5948)] = 167175, + [SMALL_STATE(5949)] = 167183, + [SMALL_STATE(5950)] = 167191, + [SMALL_STATE(5951)] = 167199, + [SMALL_STATE(5952)] = 167207, + [SMALL_STATE(5953)] = 167215, + [SMALL_STATE(5954)] = 167223, + [SMALL_STATE(5955)] = 167231, + [SMALL_STATE(5956)] = 167239, + [SMALL_STATE(5957)] = 167247, + [SMALL_STATE(5958)] = 167255, + [SMALL_STATE(5959)] = 167263, + [SMALL_STATE(5960)] = 167271, + [SMALL_STATE(5961)] = 167279, + [SMALL_STATE(5962)] = 167287, + [SMALL_STATE(5963)] = 167295, + [SMALL_STATE(5964)] = 167303, + [SMALL_STATE(5965)] = 167311, + [SMALL_STATE(5966)] = 167319, + [SMALL_STATE(5967)] = 167327, + [SMALL_STATE(5968)] = 167335, + [SMALL_STATE(5969)] = 167343, + [SMALL_STATE(5970)] = 167351, + [SMALL_STATE(5971)] = 167359, + [SMALL_STATE(5972)] = 167367, + [SMALL_STATE(5973)] = 167375, + [SMALL_STATE(5974)] = 167383, + [SMALL_STATE(5975)] = 167391, + [SMALL_STATE(5976)] = 167399, + [SMALL_STATE(5977)] = 167407, + [SMALL_STATE(5978)] = 167415, + [SMALL_STATE(5979)] = 167423, + [SMALL_STATE(5980)] = 167431, + [SMALL_STATE(5981)] = 167439, + [SMALL_STATE(5982)] = 167447, + [SMALL_STATE(5983)] = 167455, + [SMALL_STATE(5984)] = 167463, + [SMALL_STATE(5985)] = 167471, + [SMALL_STATE(5986)] = 167479, + [SMALL_STATE(5987)] = 167487, + [SMALL_STATE(5988)] = 167495, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(451), + [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(473), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5826), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(450), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(449), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1299), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1275), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5420), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3650), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5367), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5278), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5200), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5461), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(32), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5301), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4691), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4798), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5272), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4492), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4587), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3276), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5830), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3768), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5972), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5699), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5660), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5798), + [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 239), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 239), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 87), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 87), + [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 53), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 53), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(60), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(205), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(216), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3507), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3883), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(402), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(539), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 180), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 180), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 180), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 180), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 180), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 180), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 180), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 146), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 146), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 69), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 104), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 104), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 82), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 228), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 228), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 228), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 234), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 234), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 234), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 234), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 105), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 105), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 165), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 165), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 125), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 125), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 125), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 125), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1916] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3225), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [1922] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2902), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2767), + [2279] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(211), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(522), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [2288] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5015), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(211), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5015), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 99), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 99), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 93), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 279), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 279), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 244), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 244), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 179), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 179), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 125), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 125), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 184), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 188), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 188), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 59), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 59), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 192), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 192), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 146), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 146), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 196), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 198), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 149), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 149), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 67), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 67), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 68), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 68), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 203), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 203), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 165), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 165), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 180), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 180), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 180), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 229), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 59), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 59), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 231), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 231), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 233), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 233), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 241), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 241), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 243), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 243), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 78), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 78), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 228), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 270), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 270), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 231), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 231), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 233), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 233), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 234), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 234), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 271), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 276), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 276), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 277), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 277), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 278), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 278), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 80), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 80), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 308), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 308), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 86), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 86), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 80), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 80), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 90), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 90), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 91), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 91), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 92), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 92), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 100), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 100), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 124), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 124), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 138), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 141), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 141), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 145), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 145), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 149), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 149), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 151), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 149), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 149), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 86), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 86), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 80), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 80), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 99), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 99), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 105), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 105), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 274), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 274), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 275), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 275), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 201), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 240), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 240), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 143), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 143), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 190), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 190), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5914), + [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1006), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(501), + [3526] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5529), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5961), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1030), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4009), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(453), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 48), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(263), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 69), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 73), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3596] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 48), REDUCE(sym_rest_pattern, 2, 0, 0), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3278), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3615] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(403), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(541), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 69), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1486), + [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1728), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1988), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1703), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3253), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2772), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), + [3818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1450), + [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(358), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4577), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4578), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2207), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5923), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3004), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4163), + [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1737), + [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1953), + [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2388), + [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1739), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1954), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2359), + [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2732), + [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2808), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1812), + [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2406), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [3998] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 110), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 110), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 48), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 50), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 50), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 116), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 116), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 143), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266), + [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 88), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 88), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 191), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 191), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 267), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 268), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 268), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 269), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 269), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 52), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 52), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 301), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 302), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 114), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 114), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 115), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 115), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 227), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 227), + [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 117), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 117), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 118), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 118), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 170), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 69), REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 303), + [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 82), REDUCE(sym_nested_type_identifier, 3, 0, 172), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 173), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 173), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 174), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177), + [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 304), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 69), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57), + [4362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 305), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 305), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 326), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 326), + [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 174), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), + [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 226), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 226), + [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 115), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 115), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 55), + [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 55), + [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 56), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 56), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [4512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 59), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 63), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 64), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 65), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 65), + [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 66), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), + [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 73), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 73), + [4538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(167), + [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [4550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 75), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 75), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 76), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 76), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 66), + [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 79), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 79), + [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), + [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), + [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 122), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 122), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 121), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 121), + [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 126), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 126), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 127), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 129), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 129), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 136), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [4651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 144), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 144), + [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 59), + [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), + [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 63), + [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), + [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 178), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 178), + [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 182), + [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 189), + [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195), + [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), + [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), + [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(167), + [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(167), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(167), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5408), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(165), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(164), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(164), + [4919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(164), + [4922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(165), + [4925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(165), + [4928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(165), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [4939] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [4953] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(164), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), + [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), + [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 64), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), + [4984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), REDUCE(sym_assignment_expression, 3, 0, 64), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 64), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 49), + [4996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 83), REDUCE(sym_assignment_expression, 3, 0, 22), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 87), + [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(480), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [5069] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 49), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(172), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(172), + [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(172), + [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(172), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), + [5262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), + [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 94), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 94), + [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 98), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 98), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [5275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [5300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 154), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 154), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(162), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 64), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(166), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 46), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(166), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(166), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [5440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(166), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [5455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5459] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 204), + [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 204), + [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 84), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(168), + [5712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(168), + [5715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(168), + [5718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(168), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(171), + [5760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(171), + [5763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(171), + [5766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(171), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 66), SHIFT(169), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [5826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), + [5829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 146), + [5832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), + [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 165), REDUCE(sym_class, 6, 0, 234), + [5838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(169), + [5841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(169), + [5844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(169), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), + [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), REDUCE(sym_class, 4, 0, 147), + [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), + [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148), + [5863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), + [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 79), + [5869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 87), SHIFT(573), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 107), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), + [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 105), REDUCE(sym_class, 5, 0, 193), + [5906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), + [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194), + [5912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), + [5915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 119), REDUCE(sym_class, 5, 0, 195), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 199), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 199), + [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 125), + [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 125), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 152), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 152), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 237), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 237), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 228), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 228), + [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 180), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 180), + [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 273), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 273), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 306), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 306), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 307), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 307), + [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 327), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 327), + [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 328), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 328), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 343), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 343), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2665), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [6023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 85), + [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 85), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), + [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), + [6033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 102), SHIFT_REPEAT(2674), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 102), + [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 53), + [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 53), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4163), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(3887), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 59), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 103), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 299), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 59), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 254), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 213), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 157), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 213), + [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 157), + [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 162), + [6679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 254), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 260), + [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 59), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 59), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), + [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 157), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 254), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 215), + [6713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 48), SHIFT(5529), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [6718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [6721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [6726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [6729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3784), + [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 103), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [6738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [6788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5254), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 325), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [7015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3559), + [7018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(292), + [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), + [7023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 133), SHIFT_REPEAT(3559), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [7038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [7060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 246), + [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 124), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223), + [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 205), + [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 284), + [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 58), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 285), + [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 179), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(526), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 264), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 101), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 161), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [7307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(501), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [7328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(453), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [7339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 139), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 139), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 345), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 309), + [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 310), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [7407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 331), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), + [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 167), + [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 336), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [7479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [7513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 77), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 139), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [7580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), + [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 182), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), + [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_lone_ampersand, 1, 0, 0), + [7634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_lone_ampersand, 1, 0, 0), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), + [7652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 59), + [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), + [7664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 63), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5915), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), + [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [7695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [7698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), + [7701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [7703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), + [7706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4571), + [7709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(3901), + [7712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [7714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(3901), + [7717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4591), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [7746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [7758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), + [7782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 136), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), + [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [7792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140), + [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 324), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 291), + [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 288), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 321), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 339), + [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [7832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), + [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 329), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 330), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [7850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(918), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 315), + [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 348), + [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), + [7863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(995), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), + [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4077), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 253), + [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [7924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 109), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 312), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 313), + [7934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(917), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [7945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), + [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 342), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 60), + [7977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(974), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 262), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 280), + [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 282), + [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 283), + [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [8046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(920), + [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 298), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [8069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(928), + [8072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1026), + [8075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(921), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 206), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [8086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1080), + [8089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(933), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [8098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1085), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 207), + [8107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1029), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 88), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 88), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 248), + [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 252), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 300), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [8150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 186), + [8152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 186), + [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 238), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [8180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), + [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [8185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [8188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [8191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), + [8196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 166), SHIFT_REPEAT(332), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), + [8231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), SHIFT_REPEAT(4538), + [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 230), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 108), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 59), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [8334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [8337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string_lone_ampersand, 1, 0, 0), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string_lone_ampersand, 1, 0, 0), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [8371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [8373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4580), + [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [8378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4581), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [8389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 281), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [8405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 340), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 337), + [8439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [8443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 338), + [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319), + [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [8456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 341), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 320), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 309), + [8490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), + [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [8495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2340), + [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 322), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [8506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 323), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [8588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [8595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), SHIFT_REPEAT(2757), + [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 232), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 344), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 346), + [8628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), + [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 347), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 349), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), + [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 246), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), + [8697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 350), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 261), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), + [8773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 59), + [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 84), + [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 284), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 285), + [8805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), + [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 297), + [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 124), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [8821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [8833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [8839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4778), + [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), + [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 179), + [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 205), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 88), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [8884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), + [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [8926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(541), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [8977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 181), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 200), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [9023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 197), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 155), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [9033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 88), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 130), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 153), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 95), + [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 97), + [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 150), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 135), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [9157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 150), + [9159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 59), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [9195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [9209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [9211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [9229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 197), + [9231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [9235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [9341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [9361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [9603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [9677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [9821] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__automatic_semicolon = 0, + ts_external_token__template_chars = 1, + ts_external_token__ternary_qmark = 2, + ts_external_token_html_comment = 3, + ts_external_token_PIPE_PIPE = 4, + ts_external_token_escape_sequence = 5, + ts_external_token_regex_pattern = 6, + ts_external_token_jsx_text = 7, + ts_external_token__function_signature_automatic_semicolon = 8, + ts_external_token___error_recovery = 9, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__automatic_semicolon] = sym__automatic_semicolon, + [ts_external_token__template_chars] = sym__template_chars, + [ts_external_token__ternary_qmark] = sym__ternary_qmark, + [ts_external_token_html_comment] = sym_html_comment, + [ts_external_token_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [ts_external_token_escape_sequence] = sym_escape_sequence, + [ts_external_token_regex_pattern] = sym_regex_pattern, + [ts_external_token_jsx_text] = sym_jsx_text, + [ts_external_token__function_signature_automatic_semicolon] = sym__function_signature_automatic_semicolon, + [ts_external_token___error_recovery] = sym___error_recovery, +}; + +static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__template_chars] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_escape_sequence] = true, + [ts_external_token_jsx_text] = true, + [ts_external_token__function_signature_automatic_semicolon] = true, + [ts_external_token___error_recovery] = true, + }, + [2] = { + [ts_external_token_html_comment] = true, + }, + [3] = { + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + }, + [4] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + }, + [5] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + }, + [6] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + [ts_external_token__function_signature_automatic_semicolon] = true, + }, + [7] = { + [ts_external_token_html_comment] = true, + [ts_external_token_jsx_text] = true, + }, + [8] = { + [ts_external_token__template_chars] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [9] = { + [ts_external_token__template_chars] = true, + [ts_external_token_html_comment] = true, + }, + [10] = { + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [11] = { + [ts_external_token_html_comment] = true, + [ts_external_token_regex_pattern] = true, + }, +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_tsx_external_scanner_create(void); +void tree_sitter_tsx_external_scanner_destroy(void *); +bool tree_sitter_tsx_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_tsx_external_scanner_serialize(void *, char *); +void tree_sitter_tsx_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) +#endif + +TS_PUBLIC const TSLanguage *tree_sitter_tsx(void) { + static const TSLanguage language = { + .abi_version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .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 = (const void*)ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_identifier, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_tsx_external_scanner_create, + tree_sitter_tsx_external_scanner_destroy, + tree_sitter_tsx_external_scanner_scan, + tree_sitter_tsx_external_scanner_serialize, + tree_sitter_tsx_external_scanner_deserialize, + }, + .primary_state_ids = ts_primary_state_ids, + .name = "tsx", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 2, + }, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/tools/tree-sitter-tsx/src/scanner.c b/tools/tree-sitter-tsx/src/scanner.c new file mode 100644 index 000000000..787c3fb2e --- /dev/null +++ b/tools/tree-sitter-tsx/src/scanner.c @@ -0,0 +1,13 @@ +#include "_common_scanner.h" + +void *tree_sitter_tsx_external_scanner_create() { return NULL; } + +void tree_sitter_tsx_external_scanner_destroy(void *payload) {} + +unsigned tree_sitter_tsx_external_scanner_serialize(void *payload, char *buffer) { return 0; } + +void tree_sitter_tsx_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) {} + +bool tree_sitter_tsx_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + return external_scanner_scan(payload, lexer, valid_symbols); +} diff --git a/tools/tree-sitter-tsx/src/tree_sitter/alloc.h b/tools/tree-sitter-tsx/src/tree_sitter/alloc.h new file mode 100644 index 000000000..1abdd1201 --- /dev/null +++ b/tools/tree-sitter-tsx/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/tools/tree-sitter-tsx/src/tree_sitter/array.h b/tools/tree-sitter-tsx/src/tree_sitter/array.h new file mode 100644 index 000000000..a17a574f0 --- /dev/null +++ b/tools/tree-sitter-tsx/src/tree_sitter/array.h @@ -0,0 +1,291 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(pop) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/tools/tree-sitter-tsx/src/tree_sitter/parser.h b/tools/tree-sitter-tsx/src/tree_sitter/parser.h new file mode 100644 index 000000000..858107deb --- /dev/null +++ b/tools/tree-sitter-tsx/src/tree_sitter/parser.h @@ -0,0 +1,286 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +// Used to index the field and supertype maps. +typedef struct { + uint16_t index; + uint16_t length; +} TSMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + +struct TSLanguage { + uint32_t abi_version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const 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 TSLexerMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; + 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(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; + const TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + const TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + +/* + * Lexer Macros + */ + +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + UNUSED \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value) \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value), \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/tools/tree-sitter-tsx/test/corpus/jsx_ampersand.txt b/tools/tree-sitter-tsx/test/corpus/jsx_ampersand.txt new file mode 100644 index 000000000..290f7d4bb --- /dev/null +++ b/tools/tree-sitter-tsx/test/corpus/jsx_ampersand.txt @@ -0,0 +1,140 @@ +================================================================================ +JSX attribute: lone ampersand in a double-quoted string (#1736) +================================================================================ + +; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_self_closing_element + (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (string_fragment) + (string_fragment)))))) + +================================================================================ +JSX attribute: lone ampersand in a single-quoted string (#1736) +================================================================================ + +; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_self_closing_element + (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (string_fragment) + (string_fragment)))))) + +================================================================================ +JSX attribute: ampersand before the closing quote (#1736) +================================================================================ + +

; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_self_closing_element + (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (string_fragment))) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (string_fragment)))))) + +================================================================================ +JSX text: lone ampersand (#1736) +================================================================================ + +

Tom &Jerry, Tom & Jerry, x &1 y, a&

; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_element + (jsx_opening_element + (identifier)) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_text) + (jsx_closing_element + (identifier))))) + +================================================================================ +JSX: character references still parse as references +================================================================================ + +

A&B & C &

; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_element + (jsx_opening_element + (identifier) + (jsx_attribute + (property_identifier) + (string + (string_fragment) + (html_character_reference) + (string_fragment) + (html_character_reference) + (string_fragment)))) + (jsx_text) + (html_character_reference) + (jsx_text) + (html_character_reference) + (jsx_text) + (html_character_reference) + (jsx_closing_element + (identifier))))) + +================================================================================ +JSX: bitwise and logical and in expressions are unaffected +================================================================================ + +{a && b}; + +-------------------------------------------------------------------------------- + +(program + (expression_statement + (jsx_element + (jsx_opening_element + (identifier) + (jsx_attribute + (property_identifier) + (jsx_expression + (binary_expression + (identifier) + (identifier))))) + (jsx_expression + (binary_expression + (identifier) + (identifier))) + (jsx_closing_element + (identifier))))) diff --git a/tools/tree-sitter-tsx/tree-sitter.json b/tools/tree-sitter-tsx/tree-sitter.json new file mode 100644 index 000000000..aafe421a3 --- /dev/null +++ b/tools/tree-sitter-tsx/tree-sitter.json @@ -0,0 +1,16 @@ +{ + "grammars": [ + { + "name": "tsx", + "camelcase": "TSX", + "scope": "source.tsx", + "path": ".", + "file-types": ["tsx"] + } + ], + "metadata": { + "version": "0.23.2-cbm.1", + "license": "MIT", + "description": "cbm fork of tree-sitter-typescript's tsx dialect @ 75b3874 (JSX lone-ampersand fix)" + } +}